mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 02:38:53 +00:00
Added Turkish translation (#20)
* Create tr.lua * Update __resource.lua * Create tr_esx_realestateagentjob.sql Co-authored-by: Samuel <samo_kol@hotmail.com>
This commit is contained in:
@@ -13,6 +13,7 @@ server_scripts {
|
||||
'locales/fi.lua',
|
||||
'locales/fr.lua',
|
||||
'locales/sv.lua',
|
||||
'locales/tr.lua',
|
||||
'locales/cs.lua',
|
||||
'config.lua',
|
||||
'server/main.lua'
|
||||
@@ -26,6 +27,7 @@ client_scripts {
|
||||
'locales/fi.lua',
|
||||
'locales/fr.lua',
|
||||
'locales/sv.lua',
|
||||
'locales/tr.lua',
|
||||
'locales/cs.lua',
|
||||
'config.lua',
|
||||
'client/main.lua'
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
Locales['tr'] = {
|
||||
['properties'] = 'Mülkler',
|
||||
['clients'] = 'Müşteriler',
|
||||
['realtor'] = 'Emlak Bürosu',
|
||||
['amount_withdraw'] = 'Çekilecek miktar',
|
||||
['invalid_amount'] = 'Geçersiz miktar',
|
||||
['press_to_access'] = 'Menüye erişmek için ~INPUT_CONTEXT~ tuşuna basın.',
|
||||
['amount'] = 'Miktar',
|
||||
['no_play_near'] = 'Yakında kimse yok,
|
||||
['realtors'] = 'Emlak Bürosu çalışanları',
|
||||
['boss_action'] = 'Patron eylemleri',
|
||||
['client_poor'] = 'Müşterinin bunu ödeyecek kadar parası yok.',
|
||||
|
||||
-- Property menu
|
||||
['property_name'] = 'Mülk',
|
||||
['property_actions'] = 'Eylemler',
|
||||
['property_actionbuttons'] = '{{İşlem [Sat]|sell}} {{İşlem [Kirala]|rent}} {{GPS|gps}}',
|
||||
|
||||
-- Customer menu
|
||||
['customer_client'] = 'Müşteri',
|
||||
['customer_property'] = 'Mülk',
|
||||
['customer_agreement'] = 'Sözleşme',
|
||||
['customer_actions'] = 'Eylemler',
|
||||
['customer_contractbuttons'] = '{{Sözleşmeyi iptal et|revoke}} {{GPS|gps}}',
|
||||
['customer_rent'] = 'Kiralandı',
|
||||
['customer_sell'] = 'Satıldı',
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
USE `essentialmode`;
|
||||
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_realestateagent','Emlak Bürosu',1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('realestateagent','Emlak Bürosu')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('realestateagent',0,'location','Eleman',10,'{}','{}'),
|
||||
('realestateagent',1,'vendeur','Sekreter',25,'{}','{}'),
|
||||
('realestateagent',2,'gestion','Asistan',40,'{}','{}'),
|
||||
('realestateagent',3,'boss','Patron',0,'{}','{}')
|
||||
;
|
||||
Reference in New Issue
Block a user