From e7be3c2f87f2d2881a39470544a26601e6518bd1 Mon Sep 17 00:00:00 2001 From: ali-exacute Date: Mon, 10 Jan 2022 18:22:18 +0330 Subject: [PATCH] Create fa.lua Added Persian Language Translation (aka. Farsi) --- locale/fa.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/fa.lua diff --git a/locale/fa.lua b/locale/fa.lua new file mode 100644 index 0000000..616554e --- /dev/null +++ b/locale/fa.lua @@ -0,0 +1,25 @@ +local Translations = { + error = { + not_online = 'Player online nist !', + wrong_format = 'Vorodi sahih nist !', + missing_args = 'Vorodi naghes ast (x, y, z)', + missing_args2 = 'Tamam vorodi hara vared konid !', + no_access = 'Shoma dastresi nadarid !', + company_too_poor = 'Sherkat shoma, pul kafi baraye hoghogh dadan nadarad !', + item_exist = 'In item vojod nadarad', + too_heavy = 'Inventory kheyli sangin ast !' + }, + success = {}, + info = { + received_paycheck = 'Hoghogh shoma variz shod : $%{value}', + job_info = 'Shoghl: %{value} | Daraje: %{value2} | Dar hal kar: %{value3}', + gang_info = 'Gang: %{value} | Daraje: %{value2}', + on_duty = 'Shoma dar hal kar hastid (on-duty)!', + off_duty = 'Shoma az kar kharej shodid (off-duty)!' + } +} + +Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true +})