Set english as default language (#2465)

* Set english as default language

* Add changelog entry

* Adjust acceptance test
This commit is contained in:
Juan Pablo Villafañez
2021-09-06 16:20:13 +02:00
committed by GitHub
parent bb1b50c8e4
commit 2ef33dc608
3 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
Bugfix: Set English as default language in the dropdown in the settings page
The language dropdown didn't have a default language selected, and it was showing an empty value. Now it shows English instead.
https://github.com/owncloud/ocis/pull/2465

View File

@@ -128,6 +128,7 @@ var languageSetting = settings.Setting_SingleChoiceValue{
},
},
DisplayValue: "English",
Default: true,
},
{
Value: &settings.ListOptionValue{

View File

@@ -13,7 +13,7 @@ Feature: Set user specific settings
Scenario: Check the default settings
Given user "user1" has logged in using the webUI
And the user browses to the settings page
Then the setting "Language" should not have any value
Then the setting "Language" should have value "English"
When the user browses to the files page
Then the files menu should be listed in language "English"