Skip to content

Commit a6ac14a

Browse files
Bahadir67claude
authored andcommitted
feat(ui): add Turkish language to settings popup
Added Turkish (Türkçe) to the language selection dropdown in SettingsPopup.svelte. Turkish translation files already exist in the codebase (lang/tr.json files). Signed-off-by: Bahadır Atılgan <gokcel.bahadir@gmail.com> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8da34ee commit a6ac14a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/ui/src/components/internal/SettingsPopup.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@
7979
{ id: 'it', label: ui.string.Italian, logo: '&#x1F1EE;&#x1F1F9;' },
8080
{ id: 'cs', label: ui.string.Czech, logo: '&#x1F1E8;&#x1F1FF;' },
8181
{ id: 'de', label: ui.string.German, logo: '&#x1F1E9;&#x1F1EA;' },
82-
{ id: 'ja', label: ui.string.Japanese, logo: '&#x1F1EF;&#x1F1F5;' }
82+
{ id: 'ja', label: ui.string.Japanese, logo: '&#x1F1EF;&#x1F1F5;' },
83+
{ id: 'tr', label: ui.string.Turkish, logo: '&#x1F1F9;&#x1F1F7;' }
8384
].filter((lang) => uiLangs.has(lang.id))
8485
8586
if (langs.findIndex((l) => l.id === $currentLanguage) < 0 && langs.length !== 0) {

0 commit comments

Comments
 (0)