feat(i18n): add support for Turkish (Türkçe) language (tr) (#110)

* feat(index.ts): Turkish language support

* feat(tr.json): Turkish language support
This commit is contained in:
Devrim Mazlum
2023-04-16 20:14:34 +03:00
committed by GitHub
parent b4f1bbdfe0
commit 801f6a9e7a
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -15,6 +15,7 @@ import nl from '../i18n/nl.json' assert { type: 'json' };
import ru from '../i18n/ru.json' assert { type: 'json' };
import id_ID from '../i18n/id_ID.json' assert { type: 'json' };
import pl from '../i18n/pl.json' assert { type: 'json' };
import tr from '../i18n/tr.json' assert { type: 'json' };
import th from '../i18n/th.json' assert { type: 'json' };
export enum I18nLocals {
@@ -34,6 +35,7 @@ export enum I18nLocals {
'ru' = 'ru',
'id_ID' = 'id_ID',
'pl' = 'pl',
'tr' = 'tr',
'th' = 'th',
}
@@ -55,6 +57,7 @@ export const i18n = {
nl,
ru,
pl,
tr,
th
};
@@ -76,6 +79,7 @@ export const I18N_CONFIG_ALIAS: { [key: string]: string[] } = {
ru: ['ru', 'Russian', 'русский'],
id_ID: ['id_ID', 'Bahasa', 'bahasa'],
pl: ['pl', 'Polish', 'Polski'],
tr: ['tr', 'Turkish', 'Turkish'],
th: ['th', 'Thai', 'ไทย']
};
+6
View File
@@ -0,0 +1,6 @@
{
"localLanguage": "Turkish",
"commitFix": "fix(server.ts): port değişkeni küçük harfli porttan büyük harfli PORT'a değiştirildi",
"commitFeat": "feat(server.ts): process.env.PORT ortam değişkeni için destek eklendi.",
"commitDescription": "Bağlantı noktası değişkeni artık PORT olarak adlandırıldı ve PORT bir sabit değişken olduğu için bu adlandırma tutarlılığı artırır. Ortam değişkeni desteği, artık process.env.PORT ortam değişkeni aracılığıyla belirtilen herhangi bir kullanılabilir bağlantı noktasında çalışabileceğinden uygulamanın daha esnek olmasını sağlar."
}