Bolodefchoco_LUAXML

[Translation] #powers 2.0

Jun 15th, 2020
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.05 KB | None | 0 0
  1. translations.en = {
  2.     greeting = "<FC>Welcome to <B>#powers</B>! Press <B>H</B> or type <B>!help</B> to learn more.",
  3.  
  4.     mentionWinner = "<FC>%s<FC> won the round!", -- Bolo won the round
  5.     noWinner = "<FC>No one won the round. :(",
  6.  
  7.     minPlayers = "At least <B>2</B> players must be in the room for the game to start.",
  8.  
  9.     powers = {
  10.         lightSpeed = "Light Speed",
  11.         laserBeam = "Laser Beam",
  12.         wormHole = "Worm Hole",
  13.         doubleJump = "Double Jump",
  14.         helix = "Helix",
  15.         dome = "Dome",
  16.         lightning = "Lightning",
  17.         superNova = "Supernova",
  18.         meteorSmash = "Meteor Smash",
  19.         gravitationalAnomaly = "Gravitational Anomaly",
  20.         deathRay = "Death Ray",
  21.         atomic = "Atomic",
  22.         judgmentDay = "Judgment Day"
  23.     },
  24.     powersDescriptions = {
  25.         lightSpeed = "Moves your mouse in the light speed, pushing all enemies around.",
  26.         laserBeam = "Shoots a laser beam so strong that enemies can feel it.",
  27.         wormHole = "Teleports your mouse ahead through a Worm Hole.",
  28.         doubleJump = "Performs an auxiliar and high double jump.",
  29.         helix = "Speeds up your mouse diagonally with a powerful helix.",
  30.         dome = "Creates a protector dome that pushes all enemies around.",
  31.         lightning = "Summons a potent lightning that electrifies the enemies.",
  32.         superNova = "Starts a supernova that destroys all enemies around.",
  33.         meteorSmash = "Smashes the enemies like a meteor crash.",
  34.         gravitationalAnomaly = "Starts a gravitational anomaly.",
  35.         deathRay = "Toasts the enemies with the powerful and mysterious death ray.",
  36.         atomic = "Randomly changes all players' size.",
  37.         judgmentDay = "Revives all dead enemies, them all linked to each other."
  38.     },
  39.  
  40.     unlockPower = "<FC>[<J>•<FC>] You have unlocked the following power(s): %s", -- %s = names
  41.  
  42.     levelName = {
  43.         [000] = "Mutant",
  44.         [010] = "Necromancer",
  45.         [020] = "Scientist",
  46.         [030] = "Titan",
  47.         [040] = { "Wizard", "Wizardess" },
  48.         [050] = "Reality Controller",
  49.         [060] = { "Lord of Spells", "Lady of Spells" },
  50.         [070] = "Shamanic Summoner",
  51.         [080] = "The Pestilence Horseman",
  52.         [090] = "The Famine Horseman",
  53.         [100] = "The War Horseman",
  54.         [110] = "The Death Horseman",
  55.         [120] = "The Void"
  56.     },
  57.  
  58.     newLevel = "<FC>%s<FC> just reached level <B>%d</B>!", -- Bolo just reached level 10
  59.     level = "Level %d", -- Level 10
  60.  
  61.     helpTitles = {
  62.         [1] = "Powers!",
  63.         [2] = "Commands",
  64.         [3] = "Contribute",
  65.         [4] = "What's new?"
  66.     },
  67.     helpContent = {
  68.         [1] = "<FC><p align='center'>#POWERS!</p>\n\n" ..
  69.             "<J>Your goal in this module is to survive from opponents' attacks.\n\n" ..
  70.             "<N>There are a variety of powers <font size='12'>- which are unlocked by reaching " ..
  71.                 "higher levels -</font> to attack and defend.\n" ..
  72.             "Type <FC><B>!powers</B><N> to learn more about the powers you have unlocked so far!" ..
  73.                 "\n\n" ..
  74.             "%s\n\n" .. -- IGNORE
  75.             "This module has been developed by %s" -- by Bolo...
  76.         ,
  77.         [2] = "<FC><p align='center'>GENERAL COMMANDS</p><N>\n\n<font size='12'>", -- commands
  78.         [3] = "<FC><p align='center'>CONTRIBUTE<N>\n\n" ..
  79.             "We love Open Source <font color='#E91E63'>♥</font>! You can view and modify " ..
  80.                 "the source code of this module on <a href='event:print_" ..
  81.                 "github.com/a801-luadev/powers'><font color='#087ECC'>Github</font></a>.\n\n" ..
  82.             "Maintaining the module is strictly voluntary, so any help regarding " ..
  83.                 "<V>Code<N>, <V>bugfix and reports<N>, <V>suggestions and feature" ..
  84.                 " enhancements<N>, <V>map making <N>is welcome and very well appreciated.\n" ..
  85.             "<p align='left'>• You can <FC>report bugs <N>or <FC>suggest <N>on " ..
  86.                 "<a href='event:print_discord.gg/quch83R'><font color='#087ECC'>" ..
  87.                 "Discord</font></a> and/or on <a href='event:print_" ..
  88.                 "github.com/a801-luadev/powers'><font color='#087ECC'>Github</font></a>.\n" ..
  89.             "• You can <FC>submit maps <N>in our <a href='event:print_" ..
  90.                 "atelier801.com/topic?f=5&t=918371'><font color='#087ECC'>Map Submissions " ..
  91.                 "Thread on Forums</font></a>.\n\n" ..
  92.             "<p align='center'>You can also <FC>donate</FC> any amount <a href='event:print_" ..
  93.                 "a801-luadev.github.io/?redirect=powers'><font color='#087ECC'>here</font></a>" ..
  94.                 " to help maintaining the module. All funds obtained through the link are going" ..
  95.                 " to be invested in constant module updates and general improvements.</p>"
  96.         ,
  97.         [4] = "<FC><p align='center'>WHAT'S NEW?</p><N>\n\n" ..
  98.             "• Module became official.\n" ..
  99.             "• Module has been entirely rewritten."
  100.     },
  101.  
  102.     commandDescriptions = {
  103.         help = "Opens this menu.",
  104.         powers = "Opens a menu that lists all powers and their info.",
  105.         profile = "Opens your or someone's profile.",
  106.         leaderboard = "Opens the global leaderboard.",
  107.  
  108.         pw = "Protects the room with a password. Send empty to remove it.",
  109.  
  110.         mapEditQueue = "Manages the map rotation of the game.",
  111.         mapSaveQueue = "Saves the map rotation of the game.",
  112.         review = "Enables the review mode.",
  113.         np = "Loads a new map.",
  114.         npp = "Schedules the next map to be loaded.",
  115.  
  116.         msg = "Sends a message to the room.",
  117.         ban = "Bans a player from the game.",
  118.         unban = "Unbans a player from the game.",
  119.         permban = "Bans permanently a player from the game.",
  120.  
  121.         promote = "Promotes a player to a specific role or gives them specific permissions.",
  122.         demote = "Demotes a player from a specific role or removes specific permissions from them."
  123.     },
  124.     commandsParameters = {
  125.         profile = "[player_name] ",
  126.  
  127.         pw = "[password] ",
  128.  
  129.         mapEditQueue = "[add|rem]<R>*</R> [@map ...]<R>*</R> ",
  130.         mapSaveQueue = "[save]<R>*</R> ",
  131.         np = "[@map]<R>*</R> ",
  132.         npp = "[@map]<R>*</R> ",
  133.  
  134.         msg = "[message]<R>*</R> ",
  135.         ban = "[player_name]<R>*</R> [ban_time] [reason] ",
  136.         unban = "[player_name]<R>*</R> ",
  137.  
  138.         permban = "[player_name]<R>*</R> [reason] ",
  139.         promote = "[player_name]<R>*</R> [permission_name|role_name ...]<R>*</R> ",
  140.         demote = "[player_name]<R>*</R> [permission_name|role_name ...]<R>*</R> "
  141.     },
  142.     ["or"] = "or",
  143.  
  144.     profileData = {
  145.         rounds = "Rounds",
  146.         victories = "Victories",
  147.         kills = "Kills",
  148.         xp = "Experience",
  149.         badges = "Badges"
  150.     },
  151.  
  152.     leaderboard = "Leaderboard",
  153.     leaderboardIsLoading = "<BL>[<VI>•<BL>] The leaderboard is still loading. Try again in " ..
  154.         "a few seconds.",
  155.  
  156.     addMap = "<BV>[<FC>•<BV>] The map <J>@%s</J> was added to the local map queue.",
  157.     remMap = "<BV>[<FC>•<BV>] The map <J>@%s</J> was removed from the local map queue.",
  158.     listMaps = "<BV>[<FC>•<BV>] Maps (<J>#%s</J>): %s", -- Maps (#1000): @1, @2, ...
  159.  
  160.     enableParticles = "<ROSE>Do NOT forget to ENABLE the special effects/particles in order to " ..
  161.         "see the game properly. (In 'Menu' → 'Options', next to the 'Room List')</ROSE>",
  162.  
  163.     ban = "%s <ROSE>has been banned from #powers by %s <ROSE>for %d hours. Reason: %s",
  164.     unban = "<ROSE>You have been unbanned by %s",
  165.     isBanned = "<ROSE>You are banned from #powers until GMT+2 %s (%d hours to go).", -- until 10/10/10 (10 hours...
  166.     permBan = "%s <ROSE>has been banned permanently from #powers by %s<ROSE>. Reason: %s",
  167.     cantPermUnban = "<BL>[<VI>•<BL>] You cannot unban a user that is banned permanently.",
  168.  
  169.     playerGetPermissions = "<BL>[<VI>•<BL>] %s <BL>has now the following permissions: <B>%s</B>",
  170.     playerLosePermissions = "<BL>[<VI>•<BL>] %s <BL>had the following permissions removed: " ..
  171.         "<B>%s</B>",
  172.     playerGetRole = "<FC>%s <FC>has been promoted to <font color='#%x'>%s</font>!", -- promoted to mod
  173.     playerLoseRole = "<FC>%s <FC>is not <font color='#%x'>%s</font> anymore.", -- is not mod anymore
  174.  
  175.     enableReviewMode = "<BV>[<FC>•<BV>] The <FC>Map Review Mode<BV> is enabled. Next rounds " ..
  176.         "will <B>not</B> count stats and the maps that appear are in test for the map rotation " ..
  177.         "of the module. All powers have been enabled and divine powers are more likely to happen!",
  178.     disableReviewMode = "<BV>[<FC>•<BV>] The <FC>Map Review Mode<BV> has been disabled and " ..
  179.         "everything will be back to normal in the next round!",
  180.  
  181.     getBadge = "<FC>%s<FC> just unlocked a new #powers badge!",
  182.  
  183.     setPassword = "<BL>[<VI>•<BL>] %s <BL>has set the password to %q.",
  184.     removePassword = "<BL>[<VI>•<BL>] %s <BL>has removed the password of the room."
  185. }
Add Comment
Please, Sign In to add comment