mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-01 09:53:05 -05:00
Add Romanian language option (#1485)
This commit is contained in:
committed by
Leendert de Borst
parent
4d691bf133
commit
4c02656c84
@@ -13,6 +13,7 @@ import itTranslations from './locales/it.json';
|
||||
import nlTranslations from './locales/nl.json';
|
||||
import plTranslations from './locales/pl.json';
|
||||
import ptTranslations from './locales/pt.json';
|
||||
import roTranslations from './locales/ro.json';
|
||||
import ruTranslations from './locales/ru.json';
|
||||
import ukTranslations from './locales/uk.json';
|
||||
import zhTranslations from './locales/zh.json';
|
||||
@@ -52,6 +53,9 @@ export const LANGUAGE_RESOURCES = {
|
||||
pt: {
|
||||
translation: ptTranslations
|
||||
},
|
||||
ro: {
|
||||
translation: roTranslations
|
||||
},
|
||||
ru: {
|
||||
translation: ruTranslations
|
||||
},
|
||||
@@ -128,6 +132,12 @@ export const AVAILABLE_LANGUAGES: ILanguageConfig[] = [
|
||||
nativeName: 'Português Brasileiro',
|
||||
flag: '🇧🇷'
|
||||
},
|
||||
{
|
||||
code: 'ro',
|
||||
name: 'Romanian',
|
||||
nativeName: 'Română',
|
||||
flag: '🇷🇴'
|
||||
},
|
||||
{
|
||||
code: 'ru',
|
||||
name: 'Russian',
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<locale android:name="nl" />
|
||||
<locale android:name="pl" />
|
||||
<locale android:name="pt" />
|
||||
<locale android:name="ro" />
|
||||
<locale android:name="ru" />
|
||||
<locale android:name="uk" />
|
||||
<locale android:name="zh" />
|
||||
|
||||
@@ -12,6 +12,7 @@ import it from './locales/it.json';
|
||||
import nl from './locales/nl.json';
|
||||
import pl from './locales/pl.json';
|
||||
import pt from './locales/pt.json';
|
||||
import ro from './locales/ro.json';
|
||||
import ru from './locales/ru.json';
|
||||
import uk from './locales/uk.json';
|
||||
import zh from './locales/zh.json';
|
||||
@@ -27,6 +28,7 @@ const resources = {
|
||||
it: { translation: it },
|
||||
pl: { translation: pl },
|
||||
pt: { translation: pt },
|
||||
ro: { translation: ro },
|
||||
ru: { translation: ru },
|
||||
uk: { translation: uk },
|
||||
zh: { translation: zh },
|
||||
|
||||
@@ -922,6 +922,7 @@
|
||||
sv,
|
||||
tr,
|
||||
ca,
|
||||
ro,
|
||||
);
|
||||
mainGroup = 83CBB9F61A601CBA00E9B192;
|
||||
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
<string>nl</string>
|
||||
<string>pl</string>
|
||||
<string>pt</string>
|
||||
<string>ro</string>
|
||||
<string>uk</string>
|
||||
<string>ru</string>
|
||||
<string>zh</string>
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
<string>nl</string>
|
||||
<string>pl</string>
|
||||
<string>pt</string>
|
||||
<string>ru</string>
|
||||
<string>ro</string>
|
||||
<string>ru</string>
|
||||
<string>uk</string>
|
||||
<string>zh</string>
|
||||
</array>
|
||||
|
||||
@@ -40,6 +40,7 @@ public class LanguageService(
|
||||
new LanguageConfig("nl", "Nederlands", "🇳🇱"),
|
||||
new LanguageConfig("pl", "Polski", "🇵🇱"),
|
||||
new LanguageConfig("pt", "Português Brasileiro", "🇧🇷"),
|
||||
new LanguageConfig("ro", "Română", "🇷🇴"),
|
||||
new LanguageConfig("ru", "Русский", "🇷🇺"),
|
||||
new LanguageConfig("uk", "Українська", "🇺🇦"),
|
||||
new LanguageConfig("zh", "简体中文", "🇨🇳"),
|
||||
|
||||
@@ -21,6 +21,7 @@ AliasVault is currently available in the following languages. See how complete e
|
||||
- 🇮🇹 Italian
|
||||
- 🇵🇱 Polish
|
||||
- 🇧🇷 Portuguese (Brazilian)
|
||||
- 🇷🇴 Romanian
|
||||
- 🇷🇺 Russian
|
||||
- 🇪🇸 Spanish
|
||||
- 🇺🇦 Ukrainian
|
||||
|
||||
Reference in New Issue
Block a user