Prepare IDE beta 6 with Turkish native dialogs and map errors

This commit is contained in:
2026-09-06 05:34:34 +03:00
parent 7724d65e92
commit 75afd01b4b
15 changed files with 265 additions and 57 deletions
+9 -1
View File
@@ -97,5 +97,13 @@ export const EN_SURFACES = {
permanentMemory: 'This memory is removed permanently.',
timeline: 'Timeline scrubber',
pause: 'Pause',
playTimeline: 'Play timeline'
playTimeline: 'Play timeline',
mapErrors: {
invalid: "That doesn't look like a map code.",
short: 'Map code is too short to be valid.',
corrupted: 'Map code looks corrupted (checksum mismatch).',
malformed: 'Map code is malformed.',
version: (actual: number, expected: number) => `Map code is version ${actual}; this build reads version ${expected}.`,
unknown: 'Could not read that map code.'
}
}
+9 -1
View File
@@ -76,5 +76,13 @@ export const TR_SURFACES: typeof EN_SURFACES = {
permanentMemory: 'Bu bellek kalıcı olarak silinir.',
timeline: 'Zaman çizelgesinde gezin',
pause: 'Duraklat',
playTimeline: 'Zaman çizelgesini oynat'
playTimeline: 'Zaman çizelgesini oynat',
mapErrors: {
invalid: 'Bu metin bir harita koduna benzemiyor.',
short: 'Harita kodu geçerli olamayacak kadar kısa.',
corrupted: 'Harita kodu bozulmuş görünüyor; sağlama toplamı eşleşmiyor.',
malformed: 'Harita kodunun biçimi geçersiz.',
version: (actual: number, expected: number) => `Harita kodunun sürümü ${actual}; bu uygulama ${expected} sürümünü okuyabiliyor.`,
unknown: 'Harita kodu okunamadı.'
}
}