1 |
efrain |
1 |
@core @core_calendar
|
|
|
2 |
Feature: Verify that the day and month names are displayed using UTF-8
|
|
|
3 |
In order to be able to use the calendar using different languages
|
|
|
4 |
As a user
|
|
|
5 |
I need to see the day and month names displayed properly
|
|
|
6 |
|
|
|
7 |
Background:
|
|
|
8 |
Given remote langimport tests are enabled
|
|
|
9 |
|
|
|
10 |
Scenario Outline: View the calendar for December 2012 with correct UTF-8
|
|
|
11 |
Given the following "language pack" exists:
|
|
|
12 |
| language | <lang> |
|
|
|
13 |
And I log in as "admin"
|
|
|
14 |
And I follow "Preferences" in the user menu
|
|
|
15 |
And I follow "Preferred language"
|
|
|
16 |
And I set the field "Preferred language" to "<lang>"
|
|
|
17 |
And I press "Save changes"
|
|
|
18 |
When I view the calendar for "12" "2022"
|
|
|
19 |
Then I should see "<month>"
|
|
|
20 |
And I should see "<day>"
|
|
|
21 |
|
|
|
22 |
Examples:
|
|
|
23 |
| lang | month | day |
|
|
|
24 |
| en_ar | December | Sat |
|
|
|
25 |
| es | diciembre | Sáb |
|
|
|
26 |
| fr | décembre | Sa |
|
|
|
27 |
| ru | декабря | Сб |
|