Change languages to be listed under standard instead of native name in admin UI (#17485)
This commit is contained in:
parent
fd3a45e348
commit
3aebe711fd
9 changed files with 29 additions and 13 deletions
|
@ -9,9 +9,15 @@ describe LanguagesHelper do
|
|||
end
|
||||
end
|
||||
|
||||
describe 'human_locale' do
|
||||
it 'finds the human readable local description from a key' do
|
||||
expect(helper.human_locale(:en)).to eq('English')
|
||||
describe 'native_locale_name' do
|
||||
it 'finds the human readable native name from a key' do
|
||||
expect(helper.native_locale_name(:en)).to eq('English')
|
||||
end
|
||||
end
|
||||
|
||||
describe 'standard_locale_name' do
|
||||
it 'finds the human readable standard name from a key' do
|
||||
expect(helper.standard_locale_name(:de)).to eq('German')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue