-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathtr.lua
36 lines (35 loc) · 1.22 KB
/
tr.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
local Translations = {
error = {
["invalid_job"] = "Burada çalıştığımı sanmıyorum...",
["invalid_items"] = "Doğru itemlere sahip değilsin!",
["no_items"] = "Herhangi bir iteminiz yok!",
},
progress = {
["pick_grapes"] = "Üzüm toplanıyor ..",
["process_grapes"] = "Üzüm İşleniyor ..",
},
task = {
["start_task"] = "[E] Başla",
["load_ingrediants"] = "[E] Malzemeleri Yükle",
["wine_process"] = "[E] Şarap İşlemeye Başla",
["get_wine"] = "[E] Şarap Al",
["make_grape_juice"] = "[E] Üzüm Suyu Yap",
["countdown"] = "Kalan süre %{time}s",
['cancel_task'] = "Görevi iptal ettiniz"
},
text = {
["start_shift"] = "Bağda mesaiye başladın!",
["end_shift"] = "Bağdaki vardiyanız sona erdi!",
["valid_zone"] = "Geçerli Bölge!",
["invalid_zone"] = "Geçersiz Bölge!",
["zone_entered"] = "%{zone} Bölgesine Girildi",
["zone_exited"] = "%{zone} Bölgesinden Çıkıldı",
}
}
if GetConvar('qb_locale', 'en') == 'tr' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end