Advertisement
TheDenVxUA

Untitled

Jan 28th, 2020
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 14.04 KB | None | 0 0
  1. CookingMod.Lang = {}
  2. CookingMod.Lang.Config = {}
  3. CookingMod.Lang.Config.Sentences = {}
  4. CookingMod.Lang.Config.GuideText = {}
  5.  
  6.  
  7. CookingMod.Lang.Config.Lang = "en"
  8.  
  9.  
  10. CookingMod.Lang.Config.GuideText["fr"] = {
  11.         {
  12.             "Comment cuisiner?",
  13.             25
  14.         },
  15.             {
  16.             [[
  17.             Accédez à la liste des recettes dans la catégorie « recettes », et à votre gazinière ainsi que les récipients dans la catégorie « entités ». Chaque recette doit être exécute dans le récipient adéquat. Mettez les différents ingrédients dans le récipient, mettez le récipient sur un des emplacements de la gazinière et surveillez la cuisson.
  18.             ]],
  19.             20
  20.         },
  21.         {
  22.             "Comment utiliser l'écran et le terminal?",
  23.             25
  24.         },
  25.         {
  26.             [[
  27.             Pour être utilisables, les écrans et les terminaux doivent appartenir à un cuisinier. En tant que cuisinier, il suffit d’appuyer sur la touche utiliser ( E ) sur un terminal ou un écran libre afin qu’il vous appartienne. Votre nom sera alors affiché au dessus et il sera utilisable.
  28.             ]],
  29.             20
  30.         },
  31.         {
  32.             "Comment prévenir un client que sa commande est prête?",
  33.             25
  34.         },
  35.         {
  36.             [[
  37.             Lorsque vous appuyer sur "Fini" sur l'écran des commandes, le client reçoit automatiquement une notification.
  38.            ]],
  39.            20
  40.        },
  41. }
  42. CookingMod.Lang.Config.GuideText["en"] = {
  43.        {
  44.            "How to cook?",
  45.            25
  46.        },
  47.        {
  48.            [[
  49.            You have access to the list of recipes in the category "recipes", and you can buy your stove and containers in the category "entities". Each recipe must be done in the proper container ( tray, pan.. ). Put all ingredients in the container, put the container on one of the locations of the stove and pay attention to the cooking time.
  50.            ]],
  51.            20
  52.        },
  53.        {
  54.            "How to use terminals and screens?",
  55.            25
  56.        },
  57.        {
  58.            [[
  59.            To be able to be used, terminals and screens have to be owned by a cook. When you are a cook, you just have to press your use key ( E ) on a terminal or a screen to own it ( if it is not owned by another cook ). Your name will appear above, and players will be able to use it.
  60.            ]],
  61.            20
  62.        },
  63.        {
  64.            "How to inform a customer that his order is ready?",
  65.            25
  66.        },
  67.        {
  68.            [[
  69.            When you press "Finish" on the cook screen, the customer automatically receives a notification.
  70.            ]],
  71.            20
  72.        },
  73. }
  74.  
  75. CookingMod.Lang.Config.GuideText["ru"] = {
  76.        {
  77.            "Как готовить?",
  78.            25
  79.        },
  80.        {
  81.            [[
  82.            У вас есть доступ к списку рецептов в категории «Рецепты», и вы можете купить свою плиту и контейнеры в категории «сущности». Каждый рецепт должен быть сделан в соответствующем контейнере (поднос, кастрюля ..). Поместите все ингредиенты в контейнер, поместите контейнер в одно из мест на плите и обратите внимание на время приготовления.
  83.            ]],
  84.            20
  85.        },
  86.        {
  87.            "Как использовать терминалы и экраны?",
  88.            25
  89.        },
  90.        {
  91.            [[
  92.            Для возможности использования терминалы и экраны должны принадлежать повару. Когда вы готовите, вам просто нужно нажать клавишу использования (E) на терминале или на экране, чтобы владеть им (если он не принадлежит другому повару). Ваше имя появится выше, и игроки смогут его использовать.
  93.            ]],
  94.            20
  95.        },
  96.        {
  97.            "Как сообщить клиенту, что его заказ готов?",
  98.            25
  99.        },
  100.        {
  101.            [[
  102.            Когда вы нажимаете «Готово» на экране готовки, клиент автоматически получает уведомление.
  103.            ]],
  104.            20
  105.        },
  106. }
  107.  
  108. CookingMod.Lang.Config.GuideText["es"] = {
  109.        {
  110.            "Cómo cocinar?",
  111.            25
  112.        },
  113.        {
  114.            [[
  115.            Tienes acceso a las recetas en la categoría "recetas", puedes comprar los fogones y cacerolas en la categoría "entidades". Cada receta se tiene que hacer en el contenedor correspondiente ( sartén, cacerola.. ). Pon todos los ingredientes en el contenedor, pon el contenedor con los ingredientes en el fogón y presta atención al tiempo.
  116.            ]],
  117.            20
  118.        },
  119.        {
  120.            "Cómo usar las terminales y pantallas?",
  121.            25
  122.        },
  123.        {
  124.            [[
  125.            Para que puedan ser usadas, las terminales y pantallas tienen que ser propiedad de un cocinero. Cuando eres un cocinero, tan solo pulsa la letra de usar ( por defecto la E ) en una terminal/pantalla para poseerla ( si no es propiedad de otro cocinero). Tu nombre aparecerá encima de esta y los jugadores podrán utilizarla.
  126.            ]],
  127.            20
  128.        },
  129.        {
  130.            "Como informar a un cliente de que su pedido está listo?",
  131.            25
  132.        },
  133.        {
  134.            [[
  135.            Cuando pulsas “Finalizar” en la pantalla del cocinero, el cliente es automáticamente notificado.
  136.            ]],
  137.            20
  138.        },
  139. }
  140. CookingMod.Lang.Config.GuideText["cn"] = {
  141.        {
  142.            "如果烹饪?",
  143.            25
  144.        },
  145.        {
  146.            [[
  147.            您可以访问"食谱"类别中的食谱列表,也可以购买"实体"类别中的炉子和容器.每个配方必须在适当的容器中完成(托盘·平底锅等).将所有配料放入容器中,将容器放在炉子的一个位置上,注意烹饪时间.
  148.            ]],
  149.            20
  150.        },
  151.        {
  152.            "如何使用终端和屏幕?",
  153.            25
  154.        },
  155.        {
  156.            [[
  157.            为了能够使用,终端和屏幕必须由厨师拥有.当你是厨师时,你只需在终端或屏幕上按使用键(e)就可以拥有它(如果它不属于另一个厨师).你的名字会出现在上面,玩家可以使用它.
  158.            ]],
  159.            20
  160.        },
  161.        {
  162.            "如何通知客户他的订单已准备好?",
  163.            25
  164.        },
  165.        {
  166.            [[
  167.            当您在烹饪屏幕上按"完成"时,客户会自动收到通知.
  168.            ]],
  169.            20
  170.        },
  171. }
  172.  
  173. CookingMod.Lang.Config.Sentences["Buy"] = {
  174.     ["en"] = "Buy",
  175.     ["ru"] = "Купить",
  176.     ["es"] = "Comprar",
  177.     ["fr"] = "Acheter",
  178.     ["cn"] = "购买",
  179. }
  180. CookingMod.Lang.Config.Sentences["Name"] = {
  181.     ["en"] = "Name",
  182.     ["ru"] = "Имя",
  183.     ["es"] = "Nombre",
  184.     ["fr"] = "Nom",
  185.     ["cn"] = "名字",
  186. }
  187. CookingMod.Lang.Config.Sentences["Price"] = {
  188.     ["en"] = "Price",
  189.     ["ru"] = "Цена",
  190.     ["es"] = "Precio",
  191.     ["fr"] = "Prix",
  192.     ["cn"] = "价格",
  193. }
  194. CookingMod.Lang.Config.Sentences["Ingredients"] = {
  195.     ["en"] = "Ingredients",
  196.     ["ru"] = "Ингридиенты",
  197.     ["es"] = "Ingredientes",
  198.     ["fr"] = "Ingrédients",
  199.     ["cn"] = "原料",
  200. }
  201. CookingMod.Lang.Config.Sentences["Entities"] = {
  202.     ["en"] = "Entities",
  203.     ["ru"] = "Ентити",
  204.     ["es"] = "Entidades",
  205.     ["fr"] = "Entités",
  206.     ["cn"] = "实体",
  207. }
  208. CookingMod.Lang.Config.Sentences["Guide"] = {
  209.     ["en"] = "Guide",
  210.     ["ru"] = "Гайд",
  211.     ["es"] = "Guía",
  212.     ["fr"] = "Guide",
  213.     ["cn"] = "指南",
  214. }
  215. CookingMod.Lang.Config.Sentences["Recipes"] = {
  216.     ["en"] = "Recipes",
  217.     ["ru"] = "Рецепты",
  218.     ["es"] = "Recetas",
  219.     ["fr"] = "Recettes",
  220.     ["cn"] = "食谱",
  221. }
  222. CookingMod.Lang.Config.Sentences["Container"] = {
  223.     ["en"] = "Container",
  224.     ["ru"] = "Контейнер",
  225.     ["es"] = "Contenedor",
  226.     ["fr"] = "Conteneur",
  227.     ["cn"] = "容器",
  228. }
  229. CookingMod.Lang.Config.Sentences["Cook"] = {
  230.     ["en"] = "Cook",
  231.     ["ru"] = "Готовить",
  232.     ["es"] = "Cocinero",
  233.     ["fr"] = "Cuisinier",
  234.     ["cn"] = "烹饪",
  235. }
  236. CookingMod.Lang.Config.Sentences["Frying pan"] = {
  237.     ["en"] = "Frying pan",
  238.     ["ru"] = "Сковорода",
  239.     ["es"] = "Sartén",
  240.     ["fr"] = "Poële",
  241.     ["cn"] = "煎锅",
  242. }
  243. CookingMod.Lang.Config.Sentences["Pan"] = {
  244.     ["en"] = "Pan",
  245.     ["ru"] = "Кастрюля",
  246.     ["es"] = "Cacerola",
  247.     ["fr"] = "Casserole",
  248.     ["cn"] = "锅",
  249. }
  250. CookingMod.Lang.Config.Sentences["Tray"] = {
  251.     ["en"] = "Tray",
  252.     ["ru"] = "Лоток",
  253.     ["es"] = "Bandeja",
  254.     ["fr"] = "Plateau",
  255.     ["cn"] = "托盘",
  256. }
  257. CookingMod.Lang.Config.Sentences["You are not a cook"] = {
  258.     ["en"] = "You are not a cook",
  259.     ["ru"] = "Ты не повар",
  260.     ["es"] = "No eres un cocinero",
  261.     ["fr"] = "Tu n'es pas un cuisinier",
  262.     ["cn"] = "你不是厨师",
  263. }
  264. CookingMod.Lang.Config.Sentences["You have reached the limit of"] = {
  265.     ["en"] = "You have reached the limit of",
  266.     ["ru"] = "Вы достигли предела",
  267.     ["es"] = "Has llegado al límite de",
  268.     ["fr"] = "Vous avez atteint la limite de",
  269.     ["cn"] = "你已经达到了",
  270. }
  271. CookingMod.Lang.Config.Sentences["You have bought"] = {
  272.     ["en"] = "You have bought",
  273.     ["ru"] = "Вы купили",
  274.     ["es"] = "Has comprado",
  275.     ["fr"] = "Vous avez acheté",
  276.     ["cn"] = "你已经买了",
  277. }
  278. CookingMod.Lang.Config.Sentences["You are now a cook, get help with"] = {
  279.     ["en"] = "You are now a cook, get help with",
  280.     ["ru"] = "Вы теперь повар, получите помощь с",
  281.     ["es"] = "Ahora eres un cocinero, obtén ayuda con",
  282.     ["fr"] = "Vous êtes maintenant un cuisinier, obtenez de l'aide avec",
  283.     ["cn"] = "你现在是一个厨师,寻求帮助",
  284. }
  285. CookingMod.Lang.Config.Sentences["Your command has been sent to the cook"] = {
  286.     ["en"] = "Your command has been sent to the cook",
  287.     ["ru"] = "Ваша команда была отправлена повару",
  288.     ["es"] = "Tu pedido se ha enviado al cocinero",
  289.     ["fr"] = "Votre commande à été envoyée au cuisinier",
  290.     ["cn"] = "你的命令已经发送给厨师了",
  291. }
  292. CookingMod.Lang.Config.Sentences["Your command is ready"] = {
  293.     ["en"] = "Your command is ready",
  294.     ["ru"] = "Ваша команда готова",
  295.     ["es"] = "Tu pedido está listo",
  296.     ["fr"] = "Votre commande est prête",
  297.     ["cn"] = "你的命令已经准备就绪",
  298. }
  299.  
  300. CookingMod.Lang.Config.Sentences["Terminal"] = {
  301.     ["en"] = "Terminal",
  302.     ["ru"] = "Терминал",
  303.     ["es"] = "Terminal",
  304.     ["fr"] = "Borne de commande",
  305.     ["cn"] = "终端",
  306. }
  307.  
  308. CookingMod.Lang.Config.Sentences["Remove"] = {
  309.     ["en"] = "Remove",
  310.     ["ru"] = "Удалить",
  311.     ["es"] = "Eliminar",
  312.     ["fr"] = "Supprimer",
  313.     ["cn"] = "删除",
  314. }
  315.  
  316. CookingMod.Lang.Config.Sentences["Buy"] = {
  317.     ["en"] = "Buy",
  318.     ["ru"] = "Купить",
  319.     ["es"] = "Comprar",
  320.     ["fr"] = "Acheter",
  321.     ["cn"] = "购买",
  322. }
  323.  
  324. CookingMod.Lang.Config.Sentences["Continue"] = {
  325.     ["en"] = "Continue",
  326.     ["ru"] = "Продолжить",
  327.     ["es"] = "Continuar",
  328.     ["fr"] = "Continuer",
  329.     ["cn"] = "继续",
  330. }
  331.  
  332. CookingMod.Lang.Config.Sentences["Add"] = {
  333.     ["en"] = "Add",
  334.     ["ru"] = "Добавить",
  335.     ["es"] = "Añadir",
  336.     ["fr"] = "Ajouter",
  337.     ["cn"] = "添加",
  338. }
  339.  
  340. CookingMod.Lang.Config.Sentences["added to the order"] = {
  341.     ["en"] = "added to the order",
  342.     ["ru"] = "добавлен в заказ",
  343.     ["es"] = "Añadir a la cesta",
  344.     ["fr"] = "ajouté à la commande",
  345.     ["cn"] = "添加到订单中",
  346. }
  347.  
  348. CookingMod.Lang.Config.Sentences["Order"] = {
  349.     ["en"] = "Order",
  350.     ["ru"] = "Заказ",
  351.     ["es"] = "Cesta",
  352.     ["fr"] = "Commande",
  353.     ["cn"] = "订购",
  354. }
  355.  
  356. CookingMod.Lang.Config.Sentences["The terminal is too far"] = {
  357.     ["en"] = "The terminal is too far",
  358.     ["ru"] = "Терминал слишком далеко",
  359.     ["es"] = "Este terminal esta demasiado lejos",
  360.     ["fr"] = "La borne de commande est trop loin",
  361.     ["cn"] = "终端太远了",
  362. }
  363.  
  364. CookingMod.Lang.Config.Sentences["You don't have enough money"] = {
  365.     ["en"] = "You don't have enough money",
  366.     ["ru"] = "Вам не хватает денег",
  367.     ["es"] = "No tienes suficiente dinero",
  368.     ["fr"] = "Tu n'as pas assez d'argent",
  369.     ["cn"] = "你没有足够的钱",
  370. }
  371.  
  372. CookingMod.Lang.Config.Sentences["thirst"] = {
  373.     ["en"] = "thirst",
  374.     ["ru"] = "жажда",
  375.     ["es"] = "Sed",
  376.     ["fr"] = "soif",
  377.     ["cn"] = "口渴",
  378. }
  379.  
  380. CookingMod.Lang.Config.Sentences["energy"] = {
  381.     ["en"] = "energy",
  382.     ["ru"] = "энергия",
  383.     ["es"] = "Hambre",
  384.     ["fr"] = "faim",
  385.     ["cn"] = "饥饿",
  386. }
  387.  
  388. CookingMod.Lang.Config.Sentences["Time"] = {
  389.     ["en"] = "Time",
  390.     ["ru"] = "Время",
  391.     ["es"] = "Tiempo",
  392.     ["fr"] = "Temps",
  393.     ["cn"] = "时间",
  394. }
  395.  
  396. CookingMod.Lang.Config.Sentences["Order number"] = {
  397.     ["en"] = "Order number",
  398.     ["ru"] = "Номер заказа",
  399.     ["es"] = "Numero de orden",
  400.     ["fr"] = "Numéro de commande",
  401.     ["cn"] = "顺序数",
  402. }
  403.  
  404. CookingMod.Lang.Config.Sentences["Finish"] = {
  405.     ["en"] = "Finish",
  406.     ["ru"] = "Конец",
  407.     ["es"] = "Finalizar",
  408.     ["fr"] = "Finir",
  409.     ["cn"] = "结束",
  410.  
  411. }
  412.  
  413. CookingMod.Lang.Config.Sentences["Press +USE"] = {
  414.     ["en"] = "Press +USE",
  415.     ["ru"] = "Нажмите Е",
  416.     ["es"] = "Apretar la tecla de utilizar(por defecto la E)",
  417.     ["fr"] = "Appuyer sur +UTILISER",
  418.     ["cn"] = "按E授权",
  419. }
  420.  
  421. CookingMod.Lang.Config.Sentences["This terminal is off, a cook needs to power it on."] = {
  422.     ["en"] = "This terminal is off, a cook has to put it on.",
  423.     ["ru"] = "Этот терминал выключен, повар должен включить его.",
  424.     ["es"] = "Esta terminal esta apagada, un cocinero tiene que encenderla.",
  425.     ["fr"] = "Cette borne est éteinte, un cuisinier doit l'allumer.",
  426.     ["cn"] = "这个终端关了,厨师必须把它打开.",
  427. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement