-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Romanian localization #6456
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
Romanian localization #6456
Changes from all commits
b14b5cd
a97f300
01ead83
38f6480
c3a7ecf
02b8501
016b175
f2163c4
8c379d1
58c6c93
dfa7a5b
c8dafca
29f6471
8c4ef29
e1ca9c3
0a50b93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -113,6 +113,7 @@ module.exports = function (config) { | |
| 'nl', | ||
| 'pl', | ||
| 'pt-BR', | ||
| 'ro', | ||
| 'ru', | ||
| 'th', | ||
| 'tr', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,7 @@ module.exports = { | |
| 'nl', | ||
| 'pl', | ||
| 'pt-BR', | ||
| 'ro', | ||
| 'ru', | ||
| 'th', | ||
| 'tr', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ export enum AppLanguage { | |
| nl = 'nl', | ||
| pl = 'pl', | ||
| pt_BR = 'pt-BR', | ||
| ro = 'ro', | ||
| ru = 'ru', | ||
| th = 'th', | ||
| tr = 'tr', | ||
|
|
@@ -61,6 +62,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ | |
| {code2: AppLanguage.nl, name: 'Nederlands – Dutch'}, | ||
| {code2: AppLanguage.pl, name: 'Polski – Polish'}, | ||
| {code2: AppLanguage.pt_BR, name: 'Português (BR) – Portuguese (BR)'}, | ||
| {code2: AppLanguage.ro, name: 'Română – Romanian'}, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have a tiny suggested tweak here: would it be possible to keep the languages in alphabetical order by
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. Thanks |
||
| {code2: AppLanguage.ru, name: 'Русский – Russian'}, | ||
| {code2: AppLanguage.th, name: 'ภาษาไทย – Thai'}, | ||
| {code2: AppLanguage.tr, name: 'Türkçe – Turkish'}, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.