Advertisement
Slawer

NightClub - English

Jul 16th, 2019
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.57 KB | None | 0 0
  1. local LANGUAGE = {
  2.     logged_in_as = "Logged in as : %s",
  3.  
  4.     dashboard = "Dashboard",
  5.     upgrades = "Upgrades",
  6.     employees = "Employees",
  7.     collect_funds = "Collect funds",
  8.  
  9.     press_use_to_leave_edit_mode = "Press USE to leave the edit mode",
  10.  
  11.     invalid_employee = "Invalid employee",
  12.     employee_already_employed = "This employee has already been employed",
  13.     employee_successfully_employed = "Employee successfully employed",
  14.     employee_already_has_this_status = "This employee already has this status",
  15.     employee_status_updated = "The status of this employee has been updated",
  16.  
  17.     shop = "Shop",
  18.     price = "Price: %s",
  19.     available = "Available: %i",
  20.  
  21.     not_access = "You don't have access to this",
  22.     not_enough_funds = "You don't have the necessary funds",
  23.     not_enough_money = "You don't have enough money",
  24.     not_enough_storage = "You don't have enough storage to do this",
  25.     not_enough_energy = "This employee doesn't have enough energy to work",
  26.     wait_before_redoing_this = "Please wait before redoing this action",
  27.     no_available_podiums = "There are no more podiums available",
  28.     invalid_invest = "You must invest between 0 and 99,999,999,999",
  29.     cannot_exceed_balance_limit = "You cannot exceed the balance limit",
  30.     invalid_resale_price = "Invalid resale price (from 0 to 99,999,999,999)",
  31.     reached_maximum_step_for_this_upgrade = "You have reached the maximum step for this upgrade",
  32.     has_already_dj = "There is already a DJ working",
  33.  
  34.     funds_collected = "You collected the funds from the nightclub",
  35.     invested_in_nightclub = "You have successfully invested in the nightclub",
  36.     successfully_purchased = "Successfully purchased",
  37.    
  38.     reset_performed = "Reset performed",
  39.  
  40.     balance_available = "Balance available",
  41.     balance_limit = "Balance limit",
  42.     number_of_employees = "Number of employees",
  43.     quota_of_employees = "Quota of employees",
  44.     storage = "Storage",
  45.     employees = "Employees",
  46.     recruit = "Recruit",
  47.     energy_amount = "%i%% of energy",
  48.     give_a_vacation = "Give a vacation",
  49.     make_work = "Make work",
  50.     recruit_employees = "Recruit employees",
  51.     employ_for = "Employ for %s",
  52.     invest_funds = "Invest funds",
  53.     amount_to_invest = "Amount to invest",
  54.     confirm = "Confirm",
  55.     manage_night_club = "Manage the nightclub",
  56.     unit_price = "Unit price: %s",
  57.     in_stock = "In stock: %i",
  58.     total_price = "Total price: %s",
  59.     quantity = "Quantity",
  60.     resale_price = "Resale price",
  61.     max = "Maximum",
  62. }
  63.  
  64. NightClub:AddLanguage("en",LANGUAGE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement