Merge pull request #21760 from nextcloud/fix/20453/get-plural
Fix parsing of language code
This commit is contained in:
commit
e18e4511d0
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -168,7 +168,7 @@ const L10n = {
|
|||
*/
|
||||
_getPlural: function(number) {
|
||||
let language = OC.getLanguage()
|
||||
if (language === 'pt_BR') {
|
||||
if (language === 'pt-BR') {
|
||||
// temporary set a locale for brazilian
|
||||
language = 'xbr'
|
||||
}
|
||||
|
@ -178,7 +178,7 @@ const L10n = {
|
|||
}
|
||||
|
||||
if (language.length > 3) {
|
||||
language = language.substring(0, language.lastIndexOf('_'))
|
||||
language = language.substring(0, language.lastIndexOf('-'))
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue