Advertisement
taka_qiao

Untitled

Jul 17th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.41 KB | None | 0 0
  1. local LANGUAGE = {
  2.     logged_in_as = "已登录 : %s",
  3.  
  4.  
  5.     dashboard = "仪表盘",
  6.     upgrades = "升级",
  7.     employees = "员工",
  8.     collect_funds = "收集资金",
  9.  
  10.  
  11.     press_use_to_leave_edit_mode = "按'使用键'来离开编辑模式",
  12.  
  13.  
  14.     invalid_employee = "无效员工",
  15.     employee_already_employed = "这个员工已经被雇佣",
  16.     employee_successfully_employed = "成功雇佣员工",
  17.     employee_already_has_this_status = "这个员工已经处于这个状态",
  18.     employee_status_updated = "这个员工的状态已更新",
  19.  
  20.  
  21.     shop = "商店",
  22.     price = "价格: %s",
  23.     available = "可用的: %i",
  24.  
  25.  
  26.     not_access = "你没有权限",
  27.     not_enough_funds = "你没有足够的资金",
  28.     not_enough_money = "你没有足够的钱",
  29.     not_enough_storage = "您没有足够的储存空间来执行此操作",
  30.     not_enough_energy = "这个员工没有足够的能量来工作",
  31.     wait_before_redoing_this = "在重做这个行为之前请稍等",
  32.     no_available_podiums = "没有更多的指挥台可供选择",
  33.     invalid_invest = "你只能在 0 到 99,999,999,999范围内进行投资",
  34.     cannot_exceed_balance_limit = "您不能超过余额限额",
  35.     invalid_resale_price = "无效转售价格 (从 0 到 99,999,999,999)",
  36.     reached_maximum_step_for_this_upgrade = "这个升级已满",
  37.     has_already_dj = "已经有一个DJ在工作了",
  38.  
  39.  
  40.     funds_collected = "你从夜店收集了资金",
  41.     invested_in_nightclub = "您已成功投资夜店",
  42.     successfully_purchased = "购买成功",
  43.    
  44.     reset_performed = "重置已执行的操作",
  45.  
  46.  
  47.     balance_available = "可用余额",
  48.     balance_limit = "余额限制",
  49.     number_of_employees = "员工数量",
  50.     quota_of_employees = "员工配额",
  51.     storage = "存储空间",
  52.     employees = "员工",
  53.     recruit = "招募",
  54.     energy_amount = "%i%% 能量",
  55.     give_a_vacation = "给予假期",
  56.     make_work = "工作",
  57.     recruit_employees = "招募员工",
  58.     employ_for = "花 %s 雇佣",
  59.     invest_funds = "投资资金",
  60.     amount_to_invest = "投资金额",
  61.     confirm = "确认",
  62.     manage_night_club = "管理夜店",
  63.     unit_price = "单价: %s",
  64.     in_stock = "库存: %i",
  65.     total_price = "总价: %s",
  66.     quantity = "数量",
  67.     resale_price = "转售价格",
  68.     max = "最大",
  69.     balance = "余额",
  70. }
  71.  
  72.  
  73. NightClub:AddLanguage("cn",LANGUAGE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement