Skip to content

Commit a4a9f10

Browse files
committed
i18n: Add comments naming each supported language
1 parent 145a208 commit a4a9f10

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/i18n/i18n.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ export const initializeI18n = async () => {
2525
returnEmptyString: false, // Use fallback language if i18next-parser put in empty value for untranslated text
2626
resources: {
2727
// alphabetical order:
28-
be: { translation: be },
29-
en: { translation: en },
30-
ru: { translation: ru },
31-
uk: { translation: uk },
32-
zh: { translation: zh_cn },
28+
be: { translation: be }, // Belarusian
29+
en: { translation: en }, // English
30+
ru: { translation: ru }, // Russian
31+
uk: { translation: uk }, // Ukrainian
32+
zh: { translation: zh_cn }, // Chinese (Simplified)
3333
},
3434
interpolation: {
3535
escapeValue: false, // Disable escaping of strings, like '&' -> '&'

0 commit comments

Comments
 (0)