-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: turkish localization for prompts messages
- Loading branch information
1 parent
24e36ab
commit 3066a4c
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"projectName": { | ||
"message": "Proje adı:" | ||
}, | ||
"shouldOverwrite": { | ||
"dirForPrompts": { | ||
"current": "Geçerli dizin", | ||
"target": "Hedef dizin" | ||
}, | ||
"message": "boş değil. Varolan dosyalar silinip devam edilsin mi?" | ||
}, | ||
"packageName": { | ||
"message": "Paket adı:", | ||
"invalidMessage": "Geçersiz package.json adı" | ||
}, | ||
"needsTypeScript": { | ||
"message": "TypeScript Eklensin mi?" | ||
}, | ||
"needsJsx": { | ||
"message": "JSX Desteği Eklensin mi?" | ||
}, | ||
"needsRouter": { | ||
"message": "Tek Sayfa Uygulama geliştirilmesi için Vue Router eklensin mi?" | ||
}, | ||
"needsPinia": { | ||
"message": "Durum yönetimi için Pinia eklensin mi?" | ||
}, | ||
"needsVitest": { | ||
"message": "Birim Testi için Vitest eklensin mi?" | ||
}, | ||
"needsE2eTesting": { | ||
"message": "Uçtan Uca Test Çözümü Eklensin mi?", | ||
"hint": "- Ok tuşlarını kullan. Gönderime geri dön.", | ||
"selectOptions": { | ||
"negative": { "title": "Hayır" }, | ||
"cypress": { | ||
"title": "Cypress", | ||
"desc": "ayrıca Cypress Bileşen Testi ile birim testini de destekler" | ||
}, | ||
"nightwatch": { | ||
"title": "Nightwatch", | ||
"desc": "ayrıca Nightwatch Bileşen Testi ile birim testini de destekler" | ||
}, | ||
"playwright": { "title": "Playwright" } | ||
} | ||
}, | ||
"needsEslint": { | ||
"message": "Kod kalitesi için ESLint eklensin mi?" | ||
}, | ||
"needsPrettier": { | ||
"message": "Kod formatlama için Prettier eklensin mi?" | ||
}, | ||
"errors": { | ||
"operationCancelled": "İşlem iptal edildi" | ||
}, | ||
"defaultToggleOptions": { | ||
"active": "Evet", | ||
"inactive": "Hayır" | ||
}, | ||
"infos": { | ||
"scaffolding": "İskele projesi", | ||
"done": "Tamamlandı. Şimdi bunu çalıştır:" | ||
} | ||
} |