forked from Simnation/Main
81 lines
4.4 KiB
Lua
81 lines
4.4 KiB
Lua
![]() |
local Translations = {
|
||
|
error = {},
|
||
|
success = {},
|
||
|
info = {
|
||
|
['openphone'] = 'Otwórz telefon',
|
||
|
['nophone'] = 'Nie masz telefonu.',
|
||
|
['noroadpods'] = 'You do not own roadpods.',
|
||
|
['day_saturday'] = 'Sobota',
|
||
|
['day_sunday'] = 'niedziela',
|
||
|
['day_monday'] = 'Poniedziałek',
|
||
|
['day_tuesday'] = 'wtorek',
|
||
|
['day_wednesday'] = 'Środa',
|
||
|
['day_thursday'] = 'Czwartek',
|
||
|
['day_friday'] = 'Piątek',
|
||
|
['radiojoined'] = 'Wszedłeś do radia %{value}',
|
||
|
['fixphone'] = 'Jeśli ta wiadomość nie zniknie w ciągu kilku sekund, wpisz /fixphone.',
|
||
|
['message_app_new_message'] = 'Nowa wiadomość od %{value}',
|
||
|
["message_app_new_groupmessage"] = "Nowa wiadomość do grupy",
|
||
|
['mail_received'] = "wysłał Ci wiadomość e-mail.",
|
||
|
["billing_paid"] = "Rachunek został zapłacony $",
|
||
|
["billing_notmoney"] = "Nie masz wystarczającej ilości pieniędzy.",
|
||
|
['bill_paid'] = 'Rachunek ',
|
||
|
['bill_paid2'] = '$ zostało zapłacone.',
|
||
|
['society_bill_paid'] = 'Jeden z twoich rachunków ',
|
||
|
['society_bill_paid2'] = '$ zostało zapłacone.',
|
||
|
['valet_car_delivered'] = "Samochód dostarczony",
|
||
|
['valet_car_delivered_2'] = "dostarczono mu samochód za %{value} $",
|
||
|
['messages_app_newgroup_name'] = "Nowa grupa",
|
||
|
["command_required_information"] = "Nie wpisałeś wymaganych informacji",
|
||
|
['wave_verify'] = "Zweryfikowałeś gracza",
|
||
|
['wave_remove_verify'] = "Gracz nie jest już zweryfikowany",
|
||
|
['connect_verify'] = "Zweryfikowałeś gracza",
|
||
|
['connect_remove_verify'] = "Odtwarzacz nie jest już zweryfikowany",
|
||
|
['crypto_error_buymore'] = "Kup Crypto warte więcej niż 1$",
|
||
|
['crypto_error_sellmore'] = "Sprzedaj krypto warte więcej niż 1 $",
|
||
|
['crypto_error_nomoney'] = "Nie masz wystarczającej ilości pieniędzy, aby kupić Crypto.",
|
||
|
['crypto_error_nocrypto'] = "Nie masz wystarczającej ilości kryptowalut do sprzedaży.",
|
||
|
['crypto_please_wait_sell'] = "Proszę zaczekać przed ponowną sprzedażą kryptowaluty.",
|
||
|
['crypto_please_wait_buy'] = "Zaczekaj, zanim ponownie kupisz kryptowalutę.",
|
||
|
['bank_money_transaction'] = "Pieniądze wysłane do %{value}.",
|
||
|
['control_center_already_in_use'] = "This number is already in use!",
|
||
|
['control_center_leave'] = "You left the control center for the %{value}!",
|
||
|
['control_center_take_control'] = "Press E to take over the control center for the %{value}.",
|
||
|
['control_center_taken_control'] = "You have taken over the control center for the %{value} !",
|
||
|
['control_center_cannot_leave'] = "You cannot currently leave the control center.",
|
||
|
['messages_groupchat_added'] = "You have been added to the %{value} group.",
|
||
|
['voice_memos_default_name'] = "New Recording",
|
||
|
['message_app_already_in_group'] = "You are already in this group.",
|
||
|
['taxi_app_canceled'] = "Cancelled",
|
||
|
['taxi_app_canceled_text'] = "The taxi driver has cancelled your ride",
|
||
|
['taxi_app_finished'] = "Finished",
|
||
|
['taxi_app_finished_text'] = "You are at your destination",
|
||
|
['taxi_app_finished_text_driver'] = "You left the customer at the location",
|
||
|
['taxi_app_pickedup'] = "Picked Up",
|
||
|
['taxi_app_pickedup_text'] = "Taxi driver picked you up from your location",
|
||
|
['taxi_app_driver_on_way'] = "Driver on the way",
|
||
|
['taxi_app_driver_on_way_text'] = "Taxi driver is on the way",
|
||
|
['taxi_app_driver_got_job'] = "Got the job!",
|
||
|
['taxi_app_driver_got_job_text'] = "Lets drive to the customer!",
|
||
|
['taxi_app_new_job'] = "New Job!",
|
||
|
['taxi_app_new_job_text'] = "New job available!",
|
||
|
['taxi_app_bank_transaction'] = "Taxi earnings",
|
||
|
['taxi_app_customer_not_in_vehicle'] = "Not in Vehicle",
|
||
|
['taxi_app_customer_not_in_vehicle_text'] = "The customer is not in your vehicle",
|
||
|
['taxi_app_driver_not_in_car'] = "Not in Car",
|
||
|
['taxi_app_driver_not_in_car_text'] = "You must be in a car to accept a job",
|
||
|
['taxi_app_salary'] = "Salary",
|
||
|
['taxi_app_salary_text'] = "You got %{value} $ for the cab ride.",
|
||
|
['bank_app_received_money_text'] = "You have received %{value} $.",
|
||
|
['bank_app_sent_money_text'] = "You have sent %{value} $.",
|
||
|
['call_already_blocked'] = "Person is already blocked.",
|
||
|
['messages_cannot_send_blocked'] = "You cannot send messages to people you have blocked.",
|
||
|
['system_mail'] = "System@cloud.org"
|
||
|
},
|
||
|
text = {},
|
||
|
}
|
||
|
|
||
|
Lang = Locale:new({
|
||
|
phrases = Translations,
|
||
|
warnOnMissing = true
|
||
|
})
|