Advertisement
Deadman69330

Untitled

Oct 23rd, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. SDCryptoLanguage = {} -- Don't Touch it
  2.  
  3. SDCryptoLanguage.SelectLang = "FR"
  4.  
  5.  
  6. SDCryptoLanguage.Lang = {}
  7. SDCryptoLanguage.Lang["FR"] = {
  8. Currency = "€",
  9. Seconds = "secondes",
  10. PerSeconds = "par secondes",
  11. Yes = "Oui",
  12. No = "Non",
  13. NotEnoughServer = "Il n'y a pas assez de serveurs dans l'armoire pour démarrer le minage !",
  14. NotGoodCurrency = "Vous n'avez pas entré une valeur existante !",
  15. NotEnoughMoney = "Il n'y a pas d'argent dans les serveurs !",
  16. YouHaveReceived = "Vous avez reçu ",
  17. WelcomeToTheServer = "Bienvenue sur le CryptOS",
  18. SayHelp = "Ecrivez '?cryptos help' pour obtenir l'aide",
  19. CommandNotDefined = "Cette commande n'existe pas, utilisez '?cryptos help'",
  20. CommandHelp = "Vous pouvez utiliser ces commandes:",
  21. CommandList = "Vous pouvez utiliser ces cryptomonnaies:",
  22. CommandMustDefine = "Vous devez définir une monnaie avec '?cryptos define'",
  23. CommandMissArgument = "Il manque un argument dans votre commande !",
  24. CommandCurrencyDontFind = "Ce code de monnaie n'existe pas ! Utilisez '?cryptos list'",
  25. CommandCurrencyFind = "Vous avez choisis la monnaie :",
  26. CommandMiningStarted = "Le minage a démarrer !",
  27. CommandServerStopped = "Le minage c'est arrêté",
  28. CommandWithdrawNotEnough = "Il n'y a pas assez d'argent dans les serveurs !",
  29. CommandWithdrawSuccess = "Vous avez reçu votre argent",
  30. CommandStateIsrunning = "Le serveur est déjà en train de miner",
  31. CommandStateIsNotrunning = "Le serveur est éteint",
  32. CommandErrorBooting = "Erreur au lancement du serveur !",
  33. CommandServerAlreadyStop = "Le serveur est déjà éteint !",
  34. MustShutDown = "Vous devez éteindre votre serveur avant de changer la cryptomonnaie !",
  35.  
  36. CurrencyText = "Cryptomonnaie:",
  37. TimeToOneUnit = "Temps pour produire une unité de",
  38. RunningTime = "Temps d'utilisation:",
  39. MoneyStored = "Argent produit:",
  40. NotDefined = "NON DEFINI",
  41. ServerIsRunning = "Le serveur est allumé:",
  42.  
  43. CoolerIsInstalled = "Refroidisseur installé:",
  44. CoolerLife = "Résistance du refroidisseur:",
  45. CoolerTemperature = "Température du serveur:",
  46. CoolerDegreesText = "degrées",
  47.  
  48. CoolerMustBeStopped = "Le serveur doit être éteins pour installer le refroidisseur !",
  49.  
  50. Tuto = "Première étape: ?cryptos list, puis choississez une cryptomonnaie\nDeuxième étape: ?cryptos define <code de la cryptomonnaie>\nTroisième étape: ?cryptos start\nQuatrième étape: ?cryptos state\nCinquième étape: ?cryptos exit"
  51.  
  52. }
  53.  
  54.  
  55. SDCryptoLanguage.Lang["EN"] = {
  56. Currency = "$",
  57. Seconds = "seconds",
  58. PerSeconds = "par secondes",
  59. Yes = "Yes",
  60. No = "No",
  61. NotEnoughServer = "There is not enough servers inside to start mining !",
  62. NotGoodCurrency = "This value doesn't exist !",
  63. NotEnoughMoney = "There is no money in the servers !",
  64. YouHaveReceived = "You have received ",
  65. WelcomeToTheServer = "Welcome the CryptOS",
  66. SayHelp = "Write '?cryptos help' to get help",
  67. CommandNotDefined = "This command doesn't exist, use '?cryptos help'",
  68. CommandHelp = "You can use theses commands:",
  69. CommandList = "You can use theses cryptocurrency:",
  70. CommandMustDefine = "You must define a currency with '?cryptos define'",
  71. CommandMissArgument = "Your command miss an argument !",
  72. CommandCurrencyDontFind = "This currency doesn't exist ! Use '?cryptos list'",
  73. CommandCurrencyFind = "You have choose the currency :",
  74. CommandMiningStarted = "The mining has started !",
  75. CommandServerStopped = "The mining has stopped",
  76. CommandWithdrawNotEnough = "There is not enough mponey on the servers !",
  77. CommandWithdrawSuccess = "You received your money",
  78. CommandStateIsrunning = "The server is already mining",
  79. CommandStateIsNotrunning = "The server is not running",
  80. CommandErrorBooting = "Error on server startup !",
  81. CommandServerAlreadyStop = "The server is already stopped !",
  82. MustShutDown = "You must shut down your server to change the cryptocurrency !",
  83.  
  84. CurrencyText = "Cryptocurrency:",
  85. TimeToOneUnit = "Time to produce one unit of",
  86. RunningTime = "Running time:",
  87. MoneyStored = "Money stored:",
  88. NotDefined = "UNDEFINED",
  89. ServerIsRunning = "Server is running:",
  90.  
  91. CoolerIsInstalled = "Cooler installed:",
  92. CoolerLife = "Cooler resistance:",
  93. CoolerTemperature = "Server temperature:",
  94. CoolerDegreesText = "degrees",
  95.  
  96. CoolerMustBeStopped = "The server must be off to install the cooler !",
  97.  
  98. Tuto = "First step: ?cryptos list, then choose a cryptocurrency\nSecond step: ?cryptos define <cryptocurrency code>\nThird step: ?cryptos start\nFourth step: ?cryptos state\nFifth Step: ?cryptos exit"
  99.  
  100.  
  101. }
  102.  
  103.  
  104. -- print(SDCryptoLanguage.Lang[SDCryptoLanguage.SelectLang].NotEnoughServer)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement