mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-14 17:04:41 +00:00
25 lines
842 B
Gherkin
25 lines
842 B
Gherkin
Feature: Internationalization
|
|
As a user who is not very fluent in English
|
|
I would like to see the user interface translated to my preferred language
|
|
In order to be able to understand the interface
|
|
|
|
Background:
|
|
Given I am on the "login" page
|
|
|
|
Scenario: Change the language
|
|
When I select "Deutsch" in the language menu
|
|
Then the whole user interface appears in "Deutsch"
|
|
|
|
When I select "Français" in the language menu
|
|
Then the whole user interface appears in "Français"
|
|
|
|
When I select "English" in the language menu
|
|
Then the whole user interface appears in "English"
|
|
|
|
Scenario: Keep preferred language after refresh
|
|
When I select "Deutsch" in the language menu
|
|
Then the whole user interface appears in "Deutsch"
|
|
|
|
And I refresh the page
|
|
Then the whole user interface appears in "Deutsch"
|