We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 145a208 commit a4a9f10Copy full SHA for a4a9f10
src/i18n/i18n.ts
@@ -25,11 +25,11 @@ export const initializeI18n = async () => {
25
returnEmptyString: false, // Use fallback language if i18next-parser put in empty value for untranslated text
26
resources: {
27
// alphabetical order:
28
- be: { translation: be },
29
- en: { translation: en },
30
- ru: { translation: ru },
31
- uk: { translation: uk },
32
- zh: { translation: zh_cn },
+ be: { translation: be }, // Belarusian
+ en: { translation: en }, // English
+ ru: { translation: ru }, // Russian
+ uk: { translation: uk }, // Ukrainian
+ zh: { translation: zh_cn }, // Chinese (Simplified)
33
},
34
interpolation: {
35
escapeValue: false, // Disable escaping of strings, like '&' -> '&'
0 commit comments