Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix naming #130

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ exports[`components/admin_console/SchemaAdminSettings should match snapshot with
Object {
"order": 2,
"text": "English Australian (Beta)",
"value": "en_AU",
"value": "en-AU",
},
Object {
"order": 3,
Expand Down Expand Up @@ -423,7 +423,7 @@ exports[`components/admin_console/SchemaAdminSettings should match snapshot with
Object {
"order": 2,
"text": "English Australian (Beta)",
"value": "en_AU",
"value": "en-AU",
},
Object {
"order": 3,
Expand Down
4 changes: 2 additions & 2 deletions i18n/i18n.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const languages = {
order: 1,
url: '',
},
en_AU: {
value: 'en_AU',
'en-AU': {
value: 'en-AU',
name: 'English Australian (Beta)',
order: 2,
url: enAU,
Expand Down