diff --git a/Translation.md b/Translation.md index 0a2cbdeb3..cd2f0bd91 100644 --- a/Translation.md +++ b/Translation.md @@ -37,7 +37,7 @@ - [x] Spanish (ES) - `SpanishES.json` [by @LucasB25](https://github.com/LucasB25) - [ ] Swedish - `Swedish.json` (Not Started) - [ ] Thai - `Thai.json` (Not Started) -- [ ] Turkish - `Turkish.json` (Not Started) +- [x] Turkish - `Turkish.json` [by @IlkayAksoy](https://github.com/IlkayAksoy) - [ ] Ukrainian - `Ukrainian.json` (Not Started) - [x] Vietnamese - `Vietnamese.json` [by @nhutlamm](https://github.com/nhutlamm) (Ai Translation - Not Accurate) diff --git a/package.json b/package.json index 0afac6d40..da939aa88 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/i18n": "^0.13.12", - "@types/node": "^22.7.9", + "@types/node": "^22.8.1", "@types/signale": "^1.4.7", "prisma": "^5.21.1", "tslib": "^2.8.0", diff --git a/src/types.ts b/src/types.ts index f1959e169..241aaaea5 100644 --- a/src/types.ts +++ b/src/types.ts @@ -38,7 +38,7 @@ export enum Language { SpanishES = 'SpanishES', // Swedish = "Swedish", // Thai = "Thai", - // Turkish = "Turkish", + Turkish = "Turkish", // Ukrainian = "Ukrainian", Vietnamese = 'Vietnamese', } @@ -71,7 +71,7 @@ export const LocaleFlags = { [Language.SpanishES]: 'πŸ‡ͺπŸ‡Έ', // [Language.Swedish]: "πŸ‡ΈπŸ‡ͺ", // [Language.Thai]: "πŸ‡ΉπŸ‡­", - // [Language.Turkish]: "πŸ‡ΉπŸ‡·", + [Language.Turkish]: "πŸ‡ΉπŸ‡·", // [Language.Ukrainian]: "πŸ‡ΊπŸ‡¦", [Language.Vietnamese]: 'πŸ‡»πŸ‡³', };