-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 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,21 @@ | ||
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" | ||
} | ||
} | ||
Lang = Locale:new({phrases = Translations, warnOnMissing = true}) |