pl translation

This commit is contained in:
MajorMarcin
2018-06-28 19:25:15 +02:00
parent 6b734e6fe0
commit 7df520f7cf
2 changed files with 66 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
USE `essentialmode`;
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('taxi', 'Taxi')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('taxi',0,'recrue','Tymczasowy',12,'{}','{}'),
('taxi',1,'novice','Nowy',24,'{}','{}'),
('taxi',2,'experimente','Etatowy',36,'{}','{}'),
('taxi',3,'uber','Uber',48,'{}','{}'),
('taxi',4,'boss','Właściciel',0,'{}','{}')
;