From 3c28b7bfae5422c8a62a39a160192e2b1482c21a Mon Sep 17 00:00:00 2001 From: Govindas Date: Wed, 12 Aug 2020 17:34:35 +0300 Subject: [PATCH] Remove unused messages & Remove breaking language file change --- !lang.sk | 122 +++--- LanguageDA.yml | 957 ++++++++++++++++++++--------------------------- LanguageEN.yml | 62 ++- LanguageES.yml | 837 +++++++++++++++++++++++++++++++++++++++++ LanguageIL.yml | 22 ++ LanguageLT.yml | 981 +++++++++++++++++++++--------------------------- LanguagePT.yml | 980 +++++++++++++++++++++--------------------------- LanguageRU.yml | 995 +++++++++++++++++++++---------------------------- 8 files changed, 2653 insertions(+), 2303 deletions(-) create mode 100644 LanguageES.yml create mode 100644 LanguageIL.yml diff --git a/!lang.sk b/!lang.sk index 29c94d3..91e67fa 100644 --- a/!lang.sk +++ b/!lang.sk @@ -29,70 +29,66 @@ on script load: delete {_deleted} send "FINISHED LOADING GLOBAL LANGUAGE FILES" to console -function translate(message: text, receivers: objects, returntype: integer = 1, variables: strings = "null") :: text: - loop {_receivers::*}: - - #support both UUIDS and player names for getting language of the player - - set {_uuid} to {uuid::%loop-value%} if {name::%loop-value%} is not set else loop-value - - #{_lang} variable is deleted because of multiple receivers, so if their language variable happens to be unset, they wouldn't inherit language from past player in the loop - delete {_lang} - set {_lang} to epic variable "%{_uuid}%::language" ? "EN" - if {langmsg::%{_lang}%::%{_message}%} is not set: - - #if somehow the player happens to be using a non-existent language, set it to english - if {languageslist::%{_lang}%} is not set: - set {_lang} to "EN" - - #format the index - set {_index} to convert string uncolored {_message} to lowercase - replace all ":" and "'" and """" and "." and " " and "[" and "]" and "," and "!" and "?" and "*" and "^" and "%%" and "##" and "@" and "(" and ")" and "-" and "_" and "+" and "=" and "`" and "~" and "$" and "|" and "{" and "}" and "<" and ">" with "" in {_index} +expression: + patterns: + translate %string% [for %player/string%] [with variables %-strings%] + translate %string% [with variables %-strings%] [for %player/string%] + get: + if expressions 3 is not set: + return translate(expression 1, expression 2) + else: + return translate(expression 1, expression 2, expressions 3) +function translate(message: text, treceiver: object, variables: strings = "null") :: text: - #detect if the message hasn't been added to YAML file, if so, auto add it! + #support both UUIDS and player names for getting language of the player + + set {_uuid} to {uuid::%{_treceiver}%} if {name::%{_treceiver}%} is not set else {_treceiver} + + set {_lang} to epic variable "%{_uuid}%::language" ? "EN" + if {langmsg::%{_lang}%::%{_message}%} is not set: - yaml value "%{_index}%" from "lang%{_lang}%" is not set: - loop {languageslist::*}: - #check if the message isn't present in any other languages, if it isn't present, add it! - - #one little issue about this, it results into double value check for current language, but I think optimizing that would be simply pointless (much less clean code) - yaml value "%{_index}%" from "lang%loop-value-2%" is not set: - set yaml value "%{_index}%" from "lang%loop-value-2%" to "%{_message}%" - save yaml "lang%loop-value-2%" - - #save the message to memory + CSV file that gets auto-loaded into memory on server startup (maybe I'll save this to mysql instead for future) - - set {langmsg::%{_lang}%::%{_message}%} to {_message} - - #if yaml value is present, but it is not loaded into memory, load it! - else: - set {langmsg::%{_lang}%::%{_message}%} to yaml value "%{_index}%" from "lang%{_lang}%" - - #since INDEX generation in my yaml files may not be always unique if the messages are extremely similar, but only with differing color codes, this unused code checks for index duplication - - #set {_msgc} to yaml value "%{_index}%" from "langEN" - #{_msgc} is not {_message}: - #send "LANGUAGE: %{_msgc}%&2 does not equal to &r%{_message}%&2 | this might be a bug of different colorcodes." to ops and console - #log "LANGUAGE: %{_msgc}% does not equal to %{_message}% | this might be a bug of different colorcodes." to "language-errors.log" - - #get the translated message which should be sent + #format the index + set {_index} to convert string uncolored {_message} to lowercase + replace all "-" and ":" and "'" and """" and "." and " " and "[" and "]" and "," and "!" and "?" and "*" and "^" and "%%" and "##" and "@" and "(" and ")" and "_" and "+" and "=" and "`" and "~" and "$" and "|" and "{" and "}" and "<" and ">" with "" in {_index} + + #detect if the message hasn't been added to YAML file, if so, auto add it! + yaml value "%{_index}%" from "lang%{_lang}%" is not set: + loop {languageslist::*}: + #check if the message isn't present in any other languages, if it isn't present, add it! + + #one little issue about this, it results into double value check for current language, but I think optimizing that would be simply pointless (much less clean code) + yaml value "%{_index}%" from "lang%loop-value-2%" is not set: + set yaml value "%{_index}%" from "lang%loop-value-2%" to "%{_message}%" + save yaml "lang%loop-value-2%" + + #save the message to memory + CSV file that gets auto-loaded into memory on server startup (maybe I'll save this to mysql instead for future) + + set {langmsg::%{_lang}%::%{_message}%} to {_message} + + #if yaml value is present, but it is not loaded into memory, load it! + else: + set {langmsg::%{_lang}%::%{_message}%} to yaml value "%{_index}%" from "lang%{_lang}%" + + #since INDEX generation in my yaml files may not be always unique if the messages are extremely similar, but only with differing color codes, this unused code checks for index duplication + + #set {_msgc} to yaml value "%{_index}%" from "langEN" + #{_msgc} is not {_message}: + #send "LANGUAGE: %{_msgc}%&2 does not equal to &r%{_message}%&2 | this might be a bug of different colorcodes." to ops and console + #log "LANGUAGE: %{_msgc}% does not equal to %{_message}% | this might be a bug of different colorcodes." to "language-errors.log" + + #get the translated message which should be sent + + + #replace $1$, $2$, etc. stuff into proper values (function provides arguments for it) + if {_variables::1} is not "null": set {_msg} to {langmsg::%{_lang}%::%{_message}%} - - - #replace $1$, $2$, etc. stuff into proper values (function providers arguments for it) - if {_variables::1} is not "null": - loop {_variables::*}: - {_msg} contains "$%loop-index-2%$": - replace "$%loop-index-2%$" with loop-value-2 in {_msg} - else: - exit loop - - #Translation Mode 1, return the message (MOST USEFUL!) - if {_returntype} is 1: - return {_msg} - - #Translation Mode 2, send the message in chat! - #not a good idea if trying to send a message to a separate server (as this one will work only on the same server) - else if {_returntype} is 2: - send {_msg} to loop-value + loop {_variables::*}: + {_msg} contains "$%loop-index%$": + replace "$%loop-index%$" with loop-value in {_msg} + else: + exit loop + return {_msg} + + #Translation Mode 1, return the message (MOST USEFUL!) + return {langmsg::%{_lang}%::%{_message}%} diff --git a/LanguageDA.yml b/LanguageDA.yml index b2032f5..efeecbd 100644 --- a/LanguageDA.yml +++ b/LanguageDA.yml @@ -1,942 +1,811 @@ -/chatpartytotogglepartychat: ' /chat party &2- &aFor at slå party-chat til.' +"/chatpartytotogglepartychat": " /chat party &2- &aFor at slå party-chat til." -/donateviewwaystodonatemoneytoourserver: ' /donate &2- &aView ways to donate money - to our server.' +"/donateviewwaystodonatemoneytoourserver": " /donate &2- &aView ways to donate money to our server." -/facceptacceptfriendrequests: ' /f accept &2-&a Accepter venneanmodninger.' +"/groupacceptacceptagroupinvitation": " /group accept &2- &aAccepter en gruppe-invitation." -/faddrequestsomeonetobeyourfriend: ' /f add &2-&a Spørg nogen om de vil være din - ven.' +"/groupchunksbrowseclaimedchunksofagroup": " /group chunks &2- &aGennemse gruppens dele." -/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aFå svar på ofte stillede - spørsmål.' +"/groupclaimclaimachunktoagroup": " /group claim &2- &aKræv en del til en gruppe." -/fdenydenyfriendrequests: ' /f deny &2-&a Sig nej til venneanmodninger.' +"/groupcreatecreateagroup": " /group create &2- &aLav en gruppe." -/flistlistallyourcurrentfriends: ' /f list &2-&a Liste med alle dine venner.' +"/groupdemotedemoteaplayerinagroup": " /group demote &2- &aDegrader en spiller i gruppen." -/fremoveremoveafriend: ' /f remove &2-&a Fjern en ven.' +"/groupinfoviewinformationaboutagroup": " /group info &2- &aSe information om en gruppe." -/frequestslistallfriendrequests: ' /f requests &2-&a Liste med alle dine venneanmodninger.' +"/groupinviteinviteaplayertoagroup": " /group invite &2- &aInviter en spiller til gruppen." -/friendviewfriendcommandshelp: ' /friend &2- &aSe venne-kommandoer hjælp.' +"/groupkickkickaplayerfromagroup": " /group kick &2- &aSmid en spiller ud af gruppen." -/fshowsthishelppage: ' /f &2-&a Viser denne hjælpe side.' +"/groupleaveleaveagroup": " /group leave &2- &aForlad en gruppe." -/groupacceptacceptagroupinvitation: ' /group accept &2- &aAccepter - en gruppe-invitation.' +"/grouplistlistthegroupsyouarein": " /group list &2- &aEn liste med grupperne du er i." -/groupchunksbrowseclaimedchunksofagroup: ' /group chunks &2- &aGennemse - gruppens dele.' +"/grouppromotepromoteaplayerinagroup": " /group promote &2- &aForfrem en spiller i gruppen." -/groupclaimclaimachunktoagroup: ' /group claim &2- &aKræv en del - til en gruppe.' +"/groupunclaimunclaimachunk": " /group unclaim &2- &aAfkræv et stykke." -/groupcreatecreateagroup: ' /group create &2- &aLav en gruppe.' +"/groupupgradeupgradeagroup": " /group upgrade &2- &aOpgrader en gruppe." -/groupdemotedemoteaplayerinagroup: ' /group demote - &2- &aDegrader en spiller i gruppen.' +"/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbynavn] &2- &aFor at joine et offentligt spil med en kommando, eller privat spil ved at oplyse lobby-navnet." -/groupinfoviewinformationaboutagroup: ' /group info &2- &aSe information - om en gruppe.' +"/listviewinformationaboutallonlineplayers": " /list &2- &aSe information om alle online Spillere." -/groupinviteinviteaplayertoagroup: ' /group invite - &2- &aInviter en spiller til gruppen.' +"/msgsendaprivatemessagetoaplayer": " /msg &2- &aSend en privat besked til en spiller." -/groupkickkickaplayerfromagroup: ' /group kick - &2- &aSmid en spiller ud af gruppen.' +"/partyaccepttoacceptanpartyinvite": " /party accept &2- &aFor at acceptere en party-invitation." -/groupleaveleaveagroup: ' /group leave &2- &aForlad en gruppe.' +"/partydisbandtodisbandyourparty": " /party disband &2- &aFor at opløse partyet." -/grouplistlistthegroupsyouarein: ' /group list &2- &aEn liste med grupperne du er - i.' +"/partyinvitetoinviteaplayertoparty": " /party invite &2- &aFor at invitere en spiller til partyet." -/grouppromotepromoteaplayerinagroup: ' /group promote - &2- &aForfrem en spiller i gruppen.' +"/partyjointojoinpublicpartyofaplayer": " /party join &2- &aFor at tilslutte sig et offentligt party." -/groupunclaimunclaimachunk: ' /group unclaim &2- &aAfkræv et stykke.' +"/partykicktokickaplayerfromyourparty": " /party kick &2- &aFor at smide en spiller ud af dit party." -/groupupgradeupgradeagroup: ' /group upgrade &2- &aOpgrader en gruppe.' +"/partyleavetoleaveaparty": " /party leave &2- &aFor at forlade partyet." -/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname: ' /join - [lobbynavn] &2- &aFor at joine et offentligt spil med en kommando, eller - privat spil ved at oplyse lobby-navnet.' +"/partylisttoviewmembersofyourpartylist": " /party list &2- &aFor at se alle der er med i dit party." -/listviewinformationaboutallonlineplayers: ' /list &2- &aSe information om alle - online Spillere.' +"/partyopentoopenyourpartyforpublicjoin": " /party open &2- &aFor at tillade alle at tilslutte sig partyet." -/msgsendaprivatemessagetoaplayer: ' /msg &2- &aSend en privat - besked til en spiller.' +"/partytransfertotransferpartyleadertoothermember": " /party transfer &2- &aFor at gøre en anden spiller til partyets leder." -/partyaccepttoacceptanpartyinvite: ' /party accept &2- &aFor at - acceptere en party-invitation.' +"/partyviewpartyhelp": " /party &2- &aSe party hjælp." -/partydisbandtodisbandyourparty: ' /party disband &2- &aFor at opløse partyet.' +"/partywarptowarpyourpartymemberstoyourgamelobby": " /party warp &2- &aFor at teleportere alle partyets medlemmer til lobbyen." -/partyinvitetoinviteaplayertoparty: ' /party invite &2- &aFor - at invitere en spiller til partyet.' +"/rulesreadserverrules": " /rules &2- &aLæs serverens regler." -/partyjointojoinpublicpartyofaplayer: ' /party join &2- &aFor - at tilslutte sig et offentligt party.' +"/spectateenterspectatemode": " /spectate &2- &aBliv tilskuer." -/partykicktokickaplayerfromyourparty: ' /party kick &2- &aFor - at smide en spiller ud af dit party.' +"/staffviewstafflist": " /staff &2- &aSe staff listen." -/partyleavetoleaveaparty: ' /party leave &2- &aFor at forlade partyet.' +"/statsviewplayersstats": " /stats &2- &aSe en spillers status." -/partylisttoviewmembersofyourpartylist: ' /party list &2- &aFor at se alle der er - med i dit party.' +"1arrowonknockout": "1 Pil når du knockouter!" -/partyopentoopenyourpartyforpublicjoin: ' /party open &2- &aFor at tillade alle - at tilslutte sig partyet.' +"1defeated2": "$1$ &cdefeated &6$2$" -/partytransfertotransferpartyleadertoothermember: ' /party transfer - &2- &aFor at gøre en anden spiller til partyets leder.' +"1flaghasbeendropped": "$1$ &eflag has been dropped!" -/partyviewpartyhelp: ' /party &2- &aSe party hjælp.' +"1gotfirstkillofthegame": "&a$1$ &eFik første drab i spillet!" -/partywarptowarpyourpartymemberstoyourgamelobby: ' /party warp &2- &aFor at teleportere - alle partyets medlemmer til lobbyen.' +"1hascaptured2flag": "$1$ &ehas captured $2$ &eflag!" -/rulesreadserverrules: ' /rules &2- &aLæs serverens regler.' +"1hasdisbandedtheparty": "$1$ &ehar opløst partyet!" -/spectateenterspectatemode: ' /spectate &2- &aBliv tilskuer.' +"1hasinvitedyouintoaparty": "$1$ &ehar inviteret dig til et party!" -/staffviewstafflist: ' /staff &2- &aSe staff listen.' +"1hasjoinedyourparty": "$1$ &ehar tilsluttet sig dit party!" -/statsviewplayersstats: ' /stats &2- &aSe en spillers status.' +"1hasjoined": "$1$ &ehar tilsluttet sig!" -1arrowonknockout: 1 Pil når du knockouter! +"1haslefttheparty": "$1$ &eher forladt partyet!" -1defeated2: $1$ &cdefeated &6$2$ +"1hasleft": "$1$ &cer gået!" -1flaghasbeendropped: $1$ &eflag has been dropped! +"1hasnotinvitedyouintoaparty": "$1$ &ehar ikke inviteret dig til et party!" -1gotfirstkillofthegame: '&a$1$ &eFik første drab i spillet!' +"1haspickedup2flag": "$1$ &ehas picked up $2$ &eflag!" -1hascaptured2flag: $1$ &ehas captured $2$ &eflag! +"1hasreachedthemaxsticklevel": "$1$ &ehar opnået det højeste pinde niveau!" -1hasdisbandedtheparty: $1$ &ehar opløst partyet! +"1hasreturned2flag": "$1$ &ehas returned $2$ &eflag!" -1hasinvitedyouintoaparty: $1$ &ehar inviteret dig til et party! +"1hasvotedfor2map": "$1$ &eher stemt på &b&l$2$ &ebanen!" -1hasjoinedyourparty: $1$ &ehar tilsluttet sig dit party! +"1hasvotedfor2mode": "$1$ &ehas voted for &b&l$2$ &emode!" -1hasjoined: $1$ &ehar tilsluttet sig! +"1hasvotedforbalancedteamsmodifier": "$1$ &ehar stemt på &b&lBalanceret Hold &emodifier!" -1haslefttheparty: $1$ &eher forladt partyet! +"1hasvotedfordoublejumpmodifier": "$1$ &ehar stemt på &b&lDobbelthop &emodifierer!" -1hasleft: $1$ &cer gået! +"1hasvotedforfastsnowballsmodifier": "$1$ &ehar stemt på &b&lHurtige Snebolde &emodifier!" -1hasnotinvitedyouintoaparty: $1$ &ehar ikke inviteret dig til et party! +"1hasvotedforinstakillsnowballsmodifier": "$1$ &ehar stemt på &b&Øjeblikkeligt Dræbende Snebolde &emodifier!" -1haspickedup2flag: $1$ &ehas picked up $2$ &eflag! +"1hasvotedfornocompassmodifier": "$1$ &ehar stemt på &b&lIntet Kompas &emodifier!" -1hasreachedthemaxsticklevel: $1$ &ehar opnået det højeste pinde niveau! +"1hasvotedforreflectsnowballsmodifier": "$1$ &ehar stemt på &b&lReflektere snebolde &emodifier!" -1hasreturned2flag: $1$ &ehas returned $2$ &eflag! +"1isalreadyinyourparty": "$1$ &cis already in your party!" -1hasvotedfor2map: $1$ &eher stemt på &b&l$2$ &ebanen! +"1isnotyourfriendadd1tofriendswith/fadd2": "$1$&c is not your friend! Add $1$&c to friends with &e/f add $2$" -1hasvotedfor2mode: $1$ &ehas voted for &b&l$2$ &emode! +"1ofplayersneedstovotetoenable": "$1$ &7af spillere skal stemme for at slå dette til" -1hasvotedforbalancedteamsmodifier: $1$ &ehar stemt på &b&lBalanceret Hold &emodifier! +"1teamisfull": "$1$ &chold er fuldt!" -1hasvotedfordoublejumpmodifier: $1$ &ehar stemt på &b&lDobbelthop &emodifierer! +"accept": "[ACCEPTER]" -1hasvotedforfastsnowballsmodifier: $1$ &ehar stemt på &b&lHurtige Snebolde &emodifier! +"achancetospawncreeperwhereyoursnowballlands": "En chance for at spawne en creeper, hvor din snebold lander." -1hasvotedforinstakillsnowballsmodifier: $1$ &ehar stemt på &b&Øjeblikkeligt Dræbende - Snebolde &emodifier! +"activatedmodifiers": "Aktiverede Modifiers" -1hasvotedfornocompassmodifier: $1$ &ehar stemt på &b&lIntet Kompas &emodifier! +"allowstodoublejumpbypressingthesneakbuttoninmidair": "Allows to double jump by pressing the sneak button in mid-air." -1hasvotedforreflectsnowballsmodifier: $1$ &ehar stemt på &b&lReflektere snebolde &emodifier! +"animationiscurrentlydisabled": "Animation er lige nu &c&lSLÅET FRA&e." -1isalreadyinyourparty: $1$ &cis already in your party! +"animationiscurrentlyenabled": "Animation er lige nu &a&lSLÅET TIL&e." -1isnotyourfriendadd1tofriendswith/fadd2: $1$&c is not your friend! Add $1$&c to friends - with &e/f add $2$ +"areyouseriouslygoingintoapartywithyourselfinvitesomeone": "Prøver du seriøst at tilslutte dig dit eget party? Inviter dog nogen!" -1ofplayersneedstovotetoenable: $1$ &7af spillere skal stemme for at slå dette til +"areyousureyouwanttoleavetype/qtoconfirm": "Er du sikker på at du vil gå? Skriv &e/q &6hvis du er sikker." -1teamisfull: $1$ &chold er fuldt! +"armor": "Rustning" -accept: '[ACCEPTER]' +"arrowaccuracy": "Pile Præcision" -achancetospawncreeperwhereyoursnowballlands: En chance for at spawne en creeper, hvor - din snebold lander. +"arrowbonusperk": "Pil Bonus Perk" -activatedmodifiers: Aktiverede Modifiers +"arrowsfired": "Affyrede Pile" -allowstodoublejumpbypressingthesneakbuttoninmidair: Allows to double jump by pressing - the sneak button in mid-air. +"arrowsleft": "Venstre pile" -animationiscurrentlydisabled: Animation er lige nu &c&lSLÅET FRA&e. +"asnowmanwhichshootsenemies": "En snemand som skyder fjender!" -animationiscurrentlyenabled: Animation er lige nu &a&lSLÅET TIL&e. +"averagerating": "Gennemsnitlig vurdering:" -areyouseriouslygoingintoapartywithyourselfinvitesomeone: Prøver du seriøst at tilslutte - dig dit eget party? Inviter dog nogen! +"balancedteamsmodifier": "Balancerede Hold Modifier" -areyousureyouwanttoleavetype/qtoconfirm: Er du sikker på at du vil gå? Skriv &e/q - &6hvis du er sikker. +"becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating": "&7&lFordi der er for mange aktiverede modifiers, vil dette spil ikke påvirke din status." -armor: Rustning +"bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin": "&e&lLed en kæmpe hær og overvind alle de fjendtlige konger med din hær for at vinde!" -arrowaccuracy: Pile Præcision +"bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports": "Beware of gravity! Always build supports to your mines and buildings with at least 8 blocks of distance between supports." -arrowbonusperk: Pil Bonus Perk +"blindnessperk": "Blindheds Perk" -arrowsfired: Affyrede Pile +"blockssnowballs50chancetobreakonfirsthit100onsecondhit": "Blokkerer snebolde. &e&l50% &7chance for at god i stykker på første slag, &e&l100% &på andet slag." -arrowsleft: Venstre pile +"blocks": "blokke" -asnowmanwhichshootsenemies: En snemand som skyder fjender! +"bombsfired": "Affyrede bomber" -averagerating: 'Gennemsnitlig vurdering:' +"bombsplaced": "Bomber placeret" -balancedteamsmodifier: Balancerede Hold Modifier +"bonussnowballsonknockout": "Bonus snebolde når du knockouter" -becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating: '&7&lFordi - der er for mange aktiverede modifiers, vil dette spil ikke påvirke din status.' +"burningstickperk": "Brændende pind Perk" -bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin: '&e&lLed en - kæmpe hær og overvind alle de fjendtlige konger med din hær for at vinde!' +"burns1oftargetssnowballs": "Brænder &e&l$1$ &7af målets snebolde." -bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports: Beware - of gravity! Always build supports to your mines and buildings with at least 8 - blocks of distance between supports. +"burnstargetonhit": "Brænder målet når du rammer." -blindnessperk: Blindheds Perk +"cantfindaplayerbythenameof1": "Kan ikke finde en spiller med navnet '$1$'." -blockssnowballs50chancetobreakonfirsthit100onsecondhit: Blokkerer snebolde. &e&l50% - &7chance for at god i stykker på første slag, &e&l100% &på andet slag. +"cantshootfarbecausesnowballsmeltintheair": "Kan ikke skyde langt fordi sneboldene smelter i luften." -blocks: blokke +"chanceofcreeperspawn": "Chance of creeper spawn" -bombsfired: Affyrede bomber +"chanceofdoubleexperience": "chance for dobbelt erfaring" -bombsplaced: Bomber placeret +"chanceofdoublemelons": "chance for dobbelt meloner." -bonussnowballsonknockout: Bonus snebolde når du knockouter +"chanceofenchantedsnowballgainafterkill": "chance for at få en &bEnchanted Snowball &7efter drab." -burningstickperk: Brændende pind Perk +"chanceofreflection": "chance for at reflektere." -burns1oftargetssnowballs: Brænder &e&l$1$ &7af målets snebolde. +"chancetoblindopponentonhit": "Chance for at blinde modstander når du rammer" -burnstargetonhit: Brænder målet når du rammer. +"chancetoburnopponentonhit": "Chance for at brænde modstander når du rammer" -cantfindaplayerbythenameof1: Kan ikke finde en spiller med navnet '$1$'. +"chancetonotlosealife": "Chance for ikke at miste et liv" -cantshootfarbecausesnowballsmeltintheair: Kan ikke skyde langt fordi sneboldene smelter - i luften. +"chancetoslowslowness1opponentonhit": "chance for at gøre din modstander langsom(Slowness $1$) når du rammer ham." -chanceofcreeperspawn: Chance of creeper spawn +"chancetoslowslownessiiopponentonhit": "Chance for at gøre din modstander langsom, når du rammer(Slowness II)" -chanceofdoubleexperience: chance for dobbelt erfaring +"checkersinminecraftlikethepopularboardgame": "Dam i Minecraft! ligesom det populære brætspil." -chanceofdoublemelons: chance for dobbelt meloner. +"checkers": "Brikker" -chanceofenchantedsnowballgainafterkill: chance for at få en &bEnchanted Snowball &7efter - drab. +"checkpoint": "Checkpoint" -chanceofreflection: chance for at reflektere. +"chestslooted": "Lootede kister" -chancetoblindopponentonhit: Chance for at blinde modstander når du rammer +"classes": "Klasser" -chancetoburnopponentonhit: Chance for at brænde modstander når du rammer +"clickheretojoin1": "Klik her for at tilslutte $1$!" -chancetonotlosealife: Chance for ikke at miste et liv +"clicktoacceptthepartyinvite": "Klik for at acceptere party invitationen!" -chancetoslowslowness1opponentonhit: chance for at gøre din modstander langsom(Slowness - $1$) når du rammer ham. +"clicktobuy": "Klik for at købe!" -chancetoslowslownessiiopponentonhit: Chance for at gøre din modstander langsom, når - du rammer(Slowness II) +"clicktojoin": "[KLIK FOR AT TILSLUTTE]" -checkersinminecraftlikethepopularboardgame: Dam i Minecraft! ligesom det populære - brætspil. +"clicktoopenmenu": "KLIK FOR AT ÅBNE MENUEN" -checkers: Brikker +"clicktoplay": "KLIK FOR AT SPILLE" -checkpoint: Checkpoint +"clicktoratethismap": "Click to rate this map" -chestslooted: Lootede kister +"clicktoundothisrating": "Klik for at fortryde din stemme!" -classes: Klasser +"clicktovotefor1mode": "Klik for at stemme på $1$ &amode!" -clickheretojoin1: Klik her for at tilslutte $1$! +"clicktovoteforthismap": "Klik for at stemme på denne bane!" -clicktoacceptthepartyinvite: Klik for at acceptere party invitationen! +"clicktovoteforthismode": "Klik for at stemme på dette mode!" -clicktobuy: Klik for at købe! +"clicktovoteforthismodifier": "Klik for at stemme på denne modifier!" -clicktojoin: '[KLIK FOR AT TILSLUTTE]' +"completeparkourracesearnprizesandcompeteinleaderboards": "Færdiggør parkour løb, vind priser og konkurer i leaderboardet!" -clicktoopenmenu: KLIK FOR AT ÅBNE MENUEN +"cooldown": "Nedkølning" -clicktoplay: KLIK FOR AT SPILLE +"crackedplayerscanjoinourservertheycanapplyat1tojoin": "Cracked players can join our server! They can apply at $1$ &rto join." -clicktoratethismap: Click to rate this map +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps" +: "Kreativ verden med en masse brugbare funktioner! WorldEdit, VoxelSniper, goBrush, goPaint, en stor kollektion af spillerhoveder og endda et brugerdefineret programmeringssprog, til at lave dine egne baner!" -clicktoundothisrating: Klik for at fortryde din stemme! +"creeperchanceperk": "Creeper Chance Perk" -clicktovotefor1mode: Klik for at stemme på $1$ &amode! +"crystal": "Krystaller" -clicktovoteforthismap: Klik for at stemme på denne bane! +"current": "Nuværende" -clicktovoteforthismode: Klik for at stemme på dette mode! +"damagedealt": "Skade Givet" -clicktovoteforthismodifier: Klik for at stemme på denne modifier! +"damagetaken": "Skade Taget" -completeparkourracesearnprizesandcompeteinleaderboards: Færdiggør parkour løb, vind - priser og konkurer i leaderboardet! +"day": "Dag" -cooldown: Nedkølning +"deaths": "Døde" -crackedplayerscanjoinourservertheycanapplyat1tojoin: Cracked players can join our - server! They can apply at $1$ &rto join. +"defeat": "DU TABTE" -? creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps -: Kreativ verden med en masse brugbare funktioner! WorldEdit, VoxelSniper, goBrush, - goPaint, en stor kollektion af spillerhoveder og endda et brugerdefineret programmeringssprog, - til at lave dine egne baner! +"defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander": "Beskyt dit slot, angrib andre slotte, led din hær og bliv den bedste kommandør!" -creeperchanceperk: Creeper Chance Perk +"destroyingotherplayercreationsorruiningtheminanywayisnotallowed": "Det er på ingen måde tilladt at ødelægge andre folks ting!" -crystal: Krystaller +"destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed": "Det er ikke tilladt at ødelægge terrænet, bygge 1x1 tårne eller gøre noget som helst andet, som får det til at se grimt ud." -current: Nuværende +"didyouknow": "Did you know?" -damagedealt: Skade Givet +? "differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin" +: "&e&lForskellige elementalklasser kæmper med hinanden i bueskydnings evner. Brug din klasses fascinerende evner til at besejre andre spillere og vinde!" -damagetaken: Skade Taget +"dissappearsafter10soflanding": "Forsvinder &e&l10s &7efter at den lander." -day: Dag +"doubleemeralds": "Dobbelt Smaragd" -deaths: Døde +"doublejumpmodifier": "Dobbelthop Modifier" -defeat: DU TABTE +"doublemelonsperk": "Dobbelt Meloner Perk" -defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander: Beskyt - dit slot, angrib andre slotte, led din hær og bliv den bedste kommandør! +"emeraldstotalearned": "Alle tjente smaragder" -destroyingotherplayercreationsorruiningtheminanywayisnotallowed: Det er på ingen måde - tilladt at ødelægge andre folks ting! +"emeralds": "Smaragder" -destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed: Det - er ikke tilladt at ødelægge terrænet, bygge 1x1 tårne eller gøre noget som helst - andet, som får det til at se grimt ud. +"emerald": "Smaragd" -didyouknow: Did you know? +"enchanteddiamondcannon": "&bFortryllet &b&lDiamant-Kanon" -? differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin -: '&e&lForskellige elementalklasser kæmper med hinanden i bueskydnings evner. Brug - din klasses fascinerende evner til at besejre andre spillere og vinde!' +"enchantedsnowballperk": "Fortryllet Snebold Perk" -dissappearsafter10soflanding: Forsvinder &e&l10s &7efter at den lander. +"enchantedstonecannon": "&bFortryllet &7Sten-Kanon" -doubleemeralds: Dobbelt Smaragd +"enchantedwoodcannon": "Fortryllet &aTræ-Kanon" -doublejumpmodifier: Dobbelthop Modifier +"enemyteam": "MODSTANDERENS HOLD" -doublemelonsperk: Dobbelt Meloner Perk +"everyplayergets3liveseliminateenemyteamtowin": "Alle spillere har 3 liv. Udslet modstander-holdene, for at vinde!" -emeraldstotalearned: Alle tjente smaragder +"everyplayergets3liveseliminateotherplayerstowin": "Alle spillere har 3 liv. Udslet modstanderne, for at vinde!" -emeralds: Smaragder +"experiencebonusperk": "Erfarings Bonus Perk" -emerald: Smaragd +"explodeyourwaytootherplayersandexplodethem": "Spræng din vej til andre spillere, og spræng dem!" -enchanteddiamondcannon: '&bFortryllet &b&lDiamant-Kanon' +"exploringthevoidmayrevealmysterioussecrets": "Exploring the void may reveal mysterious secrets!" -enchantedsnowballperk: Fortryllet Snebold Perk +"explosionradius": "Eksplosions-Radius" -enchantedstonecannon: '&bFortryllet &7Sten-Kanon' +"fallingblocksanimation": "Faldende Blokke Animation" -enchantedwoodcannon: Fortryllet &aTræ-Kanon +"fastsnowballsmodifier": "Hurtige Snebolde Modifier" -enemyteam: MODSTANDERENS HOLD +"feelfreetoinviteotherplayersbyusingthechat": "Du må gerne invitere andre spillere, ved hjælp af chatten." -everyplayergets3liveseliminateenemyteamtowin: Alle spillere har 3 liv. Udslet modstander-holdene, - for at vinde! +"finalkills": "Afsluttende Drab" -everyplayergets3liveseliminateotherplayerstowin: Alle spillere har 3 liv. Udslet modstanderne, - for at vinde! +"flamethrower": "Flammekaster" -experiencebonusperk: Erfarings Bonus Perk +"friendcommands": " &2&l--=-= &a&lVenne-Kommandoer &2&l=-=--" -explodeyourwaytootherplayersandexplodethem: Spræng din vej til andre spillere, og - spræng dem! +"friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore": "Venlig overlevelse med teknologi og magi! Udforsk mange dimensioner, gro smukke træer og mere!" -exploringthevoidmayrevealmysterioussecrets: Exploring the void may reveal mysterious - secrets! +"gameendedinadraw": "SPILLET BLEV UAFGJORDT" -explosionradius: Eksplosions-Radius +"gameend": "SPILLETS SLUTNING" -fallingblocksanimation: Faldende Blokke Animation +"gamehasstarted": "Spillet er startet!" -fastsnowballsmodifier: Hurtige Snebolde Modifier +"gameisstarting": "Spillet starter" -feelfreetoinviteotherplayersbyusingthechat: Du må gerne invitere andre spillere, ved - hjælp af chatten. +"gamestartsin1seconds": "Spillet starter om &e&l$1$ &esekunder" -finalkills: Afsluttende Drab +"gamestartsin": "Spillet starter om" -flamethrower: Flammekaster +"gamestatistics": "Spil Statistikker" -friendcommands: ' &2&l--=-= &a&lVenne-Kommandoer &2&l=-=--' +"gametime": "Spil-tid" -friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore: Venlig - overlevelse med teknologi og magi! Udforsk mange dimensioner, gro smukke træer - og mere! +"gamewillendin1minutes": "Spillet slutter om &e&l$1$ &eminutter." -gameendedinadraw: SPILLET BLEV UAFGJORDT +"gamewillendin1minute": "Game will end in &e&l$1$ &eminute." -gameend: SPILLETS SLUTNING +"gamewillstartin1seconds": "&eSpillet starter om &e&l$1$ &esekunder" -gamehasstarted: Spillet er startet! +"gamewillstartin1second": "&eSpillet starter om &e&l$1$ &esekunder" -gameisstarting: Spillet starter +"gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame": "Få ressourcer, gør dig klar til kamp, beskyt din Livskrystal, angrib andre krystaller og vind spillet!" -gamestartsin1seconds: Spillet starter om &e&l$1$ &esekunder +"gravityhasnoeffectonblocksheresoyoucanbuildinthesky": "Gravity has no effect on blocks here, so you can build in the sky!" -gamestartsin: Spillet starter om +"groupcommands": " &2&l --=-= &a&lGruppe-Kommandoer &2&l=-=--" -gamestatistics: Spil Statistikker +"havefun": "Hav det sjovt!" -gametime: Spil-tid +"health": "Helbred" -gamewillendin1minutes: Spillet slutter om &e&l$1$ &eminutter. +"hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends": "Her kan du finde spil som du både kan spille alene og sammen med dine venner!" -gamewillendin1minute: Game will end in &e&l$1$ &eminute. +"hereyoucanfindgameswhichcanbeplayedonlywithfriends": "Her kan du finde spil der kun kan spilles med venner!" -gamewillstartin1seconds: '&eSpillet starter om &e&l$1$ &esekunder' +"hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun": "Her kan du finde små GUI minigames, disse minigames i modsætnig til andre, er ikke lavet af os. Det er bare et downloadet plugin, men de er stadig sjove!" -gamewillstartin1second: '&eSpillet starter om &e&l$1$ &esekunder' +"hereyoucanusevariousabilitiestoexplodethemapandotherplayers": "Her kan du bruge forskellige evner til at sprænge banen og andre spillere!" -gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame: Få - ressourcer, gør dig klar til kamp, beskyt din Livskrystal, angrib andre krystaller - og vind spillet! +"hitstaken": "Slag Taget" -gravityhasnoeffectonblocksheresoyoucanbuildinthesky: Gravity has no effect on blocks - here, so you can build in the sky! +"hits": "Slag" -groupcommands: ' &2&l --=-= &a&lGruppe-Kommandoer &2&l=-=--' +"hittolevelupyourstickandknockotherplayersintothevoid": "Ram for at få din pind til at gå et niveau op, og skub andre spillere i the void!" -havefun: Hav det sjovt! +"hours": "timer" -health: Helbred +"howtoplay": "&b&lHvordan Spiller Man?" -hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends: Her kan du finde spil - som du både kan spille alene og sammen med dine venner! +"ifyouwanttogetoutofthespectatormodetype/q": "Hvis du vil ud af &eTilskuer-Mode &cskriv &e/q" -hereyoucanfindgameswhichcanbeplayedonlywithfriends: Her kan du finde spil der kun - kan spilles med venner! +"ifyouwanttoleavethegametype/q": "Hvis du vil forlade spillet, skriv &e/q&6." -hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun: Her - kan du finde små GUI minigames, disse minigames i modsætnig til andre, er ikke - lavet af os. Det er bare et downloadet plugin, men de er stadig sjove! +"ifyouwanttospectateotherplayertype/stp": "Hvis du vil kigge på andre spillere spille, skriv &e/stp " -hereyoucanusevariousabilitiestoexplodethemapandotherplayers: Her kan du bruge forskellige - evner til at sprænge banen og andre spillere! +"immortalityperk": "Udødeligheds Perk" -hitstaken: Slag Taget +"increasesthechancetoreflectasnowballto100": "Forøger chancen for at reflektere en snebold til 100%" -hits: Slag +"increasesthedamageofsnowballsto10hearts": "Forøg skaden for snebolde med 10 hjerter." -hittolevelupyourstickandknockotherplayersintothevoid: Ram for at få din pind til at - gå et niveau op, og skub andre spillere i the void! +"increasesyourspeedby1": "Gør dig $1$ gange hurtigere" -hours: timer +"instakillsnowballsmodifier": "Øjeblikkeligt dræbende Snebolde Modifier" -howtoplay: '&b&lHvordan Spiller Man?' +"invalidcode": "Invalid kode." -ifyouwanttogetoutofthespectatormodetype/q: Hvis du vil ud af &eTilskuer-Mode &cskriv - &e/q +"ironcannon": "&7&lJern-Kanon" -ifyouwanttoleavethegametype/q: Hvis du vil forlade spillet, skriv &e/q&6. +"itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater": "It's very hot in Mustafar, you gonna need to drink twice as much water." -ifyouwanttospectateotherplayertype/stp: Hvis du vil kigge på andre spillere - spille, skriv &e/stp +"jumps": "Hop" -immortalityperk: Udødeligheds Perk +"killer": "Morder" -increasesthechancetoreflectasnowballto100: Forøger chancen for at reflektere en snebold - til 100% +"killsanynormalopponentevenwitharmor": "Dræber alle normale modstandere, selv hvis de har rustning på." -increasesthedamageofsnowballsto10hearts: Forøg skaden for snebolde med 10 hjerter. +"killstreak": "Drabsserie" -increasesyourspeedby1: Gør dig $1$ gange hurtigere +"kills": "Drab" -instakillsnowballsmodifier: Øjeblikkeligt dræbende Snebolde Modifier +"king": "King" -invalidcode: Invalid kode. +"knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback": "&e&lSkub andre spillere ud over platformen. Hver gang du rammer en spiller, skubber du den lidt længere tilbage." -ironcannon: '&7&lJern-Kanon' +"level": "Niveau" -itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater: It's very hot in Mustafar, - you gonna need to drink twice as much water. +"listofgames": "Liste med spil" -jumps: Hop +"lives": "Liv" -killer: Morder +"lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs": "Loot kister, kæmp mod andre spillere, find tilfældigt genereret loot med interessante evnerog kast med mob-æg som pokeballs!" -killsanynormalopponentevenwitharmor: Dræber alle normale modstandere, selv hvis de - har rustning på. +"lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin": "&e&lLoot randomly generated chests with unique items. Use them to eliminate your enemies. Be the only survivor to win." -killstreak: Drabsserie +"losses": "Tab" -kills: Drab +"makesallofyoursnowballsburn": "Får alle dine snebolde til at brænde." -king: King +"makesyoursnowballssuperfast": "Gør dine snebolde super hurtige." -knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback: '&e&lSkub andre - spillere ud over platformen. Hver gang du rammer en spiller, skubber du den lidt - længere tilbage.' +"maxlevelreached": "Nået højeste niveau" -level: Niveau +"maxlevel": "HØJESTE NIVEAU:" -listofgames: Liste med spil +"melonsearned": "Optjente meloner" -lives: Liv +"melonsspent": "Brugte meloner" -lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs: Loot - kister, kæmp mod andre spillere, find tilfældigt genereret loot med interessante - evnerog kast med mob-æg som pokeballs! +"melons": "Meloner" -lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin: '&e&lLoot - randomly generated chests with unique items. Use them to eliminate your enemies. - Be the only survivor to win.' +"melon": "Melon" -losses: Tab +"mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves": "Udgrav malm, opgrader hakker, køb seje opgraderinger og opdag nye grotter!" -makesallofyoursnowballsburn: Får alle dine snebolde til at brænde. +"minutes": "minutter" -makesyoursnowballssuperfast: Gør dine snebolde super hurtige. +"mode": "Mode" -maxlevelreached: Nået højeste niveau +"movetimeleft": "Bevægelsestid tilbage" -maxlevel: 'HØJESTE NIVEAU:' +"mustbeatlowerfloor": "Skal være på nederste etage" -melonsearned: Optjente meloner +"mustnothaveanysuperjumps": "Må ikke have nogle Superhop" -melonsspent: Brugte meloner +"newrecord": "NY REKORD!" -melons: Meloner +"new": "NEW!" -melon: Melon +"nextsuperjumpin": "Næste Super Hop Om" -mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves: Udgrav malm, opgrader - hakker, køb seje opgraderinger og opdag nye grotter! +"next": "Næste" -minutes: minutter +"night": "Nat" -mode: Mode +"nocompassmodifier": "Intet Kompas Modifier" -movetimeleft: Bevægelsestid tilbage +"notenoughmelons": "Ikke nok meloner!" -mustbeatlowerfloor: Skal være på nederste etage +"note": "Note:" -mustnothaveanysuperjumps: Må ikke have nogle Superhop +"nowblockswillstartbreakingwhenyousteponthem": "Nu vil blokke gå i stykker, når du træder på dem!" -newrecord: NY REKORD! +"oldrecord": "Gamle Rekord" -new: NEW! +"parkourcourse": "Parkour Bane" -nextsuperjumpin: Næste Super Hop Om +"participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther": "&e&lDeltag i en kæmpe sneboldskamp, og brug powerups for at gøre din tilværelse lettere! At forsinke snebolde gør så du kan kaste dem længere." -next: Næste +"partycommands": " &2&l --=-= &a&lParty-Kommandoer &2&l=-=--" -night: Nat +"partyinvitefrom1hasexpired": "Party-invitation fra $1$ &eer udløbet." -nocompassmodifier: Intet Kompas Modifier +"partyleader": "Party Leder" -notenoughmelons: Ikke nok meloner! +"partymembers": "Party Medlemmer" -note: 'Note:' +"partyof1isnotopenforpublicjoin": "Partyet ejet af &a$1$ &cer ikke offentligt." -nowblockswillstartbreakingwhenyousteponthem: Nu vil blokke gå i stykker, når du træder - på dem! +"placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents": "&e&lPlacer bomber og spræng blokke rundt om dem i en + form. Brug powerups som fordele mod dine fjender." -oldrecord: Gamle Rekord +"playercommands": " &2&l --=-= &a&lSpiller Kommandoer&2&l=-=--" -parkourcourse: Parkour Bane +"playeriswaiting": "Spiller Venter" -participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther: '&e&lDeltag - i en kæmpe sneboldskamp, og brug powerups for at gøre din tilværelse lettere! - At forsinke snebolde gør så du kan kaste dem længere.' +"playernotfound": "Player not found." -partycommands: ' &2&l --=-= &a&lParty-Kommandoer &2&l=-=--' +"playersarewaiting": "Spillere venter" -partyinvitefrom1hasexpired: Party-invitation fra $1$ &eer udløbet. +"playersin": "Spillere på" -partyleader: Party Leder +"playersleft": "Spillere tilbage" -partymembers: Party Medlemmer +"playerswaiting": "Spillere Venter" -partyof1isnotopenforpublicjoin: Partyet ejet af &a$1$ &cer ikke offentligt. +"players": "Spillere" -placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents: '&e&lPlacer - bomber og spræng blokke rundt om dem i en + form. Brug powerups som fordele mod - dine fjender.' +"playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes": "Spil forskellige klasser, med forskellige evner og brug dine bue-evner,til at vinde i mange forskellige modes!" -playercommands: ' &2&l --=-= &a&lSpiller Kommandoer&2&l=-=--' +"pleaseratethismapbyclicking": "Please rate this map by clicking:" -playeriswaiting: Spiller Venter +"pleasespecifygroupname": "Skriv gruppenavnet!" -playernotfound: Player not found. +"pleasespecifyplayername": "Vær sød at skrive spillerens navn!" -playersarewaiting: Spillere venter +"plotname": "Plot Navn" -playersin: Spillere på +"plotowner": "Plot Ejer" -playersleft: Spillere tilbage +"points": "Point" -playerswaiting: Spillere Venter +"powerups": "Powerups" -players: Spillere +"price": "Pris:" -playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes: Spil - forskellige klasser, med forskellige evner og brug dine bue-evner,til at vinde - i mange forskellige modes! +"quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers": "Test dine skills hurtigt, ved at kæmpe mod andre spillere med en masse, forskellige modifiers!" -pleaseratethismapbyclicking: 'Please rate this map by clicking:' +"radarbreaker": "Radar Ødelægger" -pleasespecifygroupname: Skriv gruppenavnet! +"rainisabletorefillwatersources": "Rain is able to refill water sources." -pleasespecifyplayername: Vær sød at skrive spillerens navn! +"rapidfirepoweruphasspawnedatmiddleofthemap": "&6&lHurtige Skud &bpowerup er spawned I midten af mappet!" -plotname: Plot Navn +"rating": "Bedømmelse" -plotowner: Plot Ejer +"reflectionperk": "Reflektions Perk" -points: Point +"reflectsasnowballreducingdamagetakenby1": "Reflekterer en snebold, formindsker skaden med $1$." -powerups: Powerups +"reflectsnowballsmodifier": "Reflekter Snebolde Modifier" -price: 'Pris:' +"regeneratesyourhealth1": "Regenererer dit liv $1$" -quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers: Test dine skills - hurtigt, ved at kæmpe mod andre spillere med en masse, forskellige modifiers! +"regeneration": "Regenererer" -radarbreaker: Radar Ødelægger +"removescompassfromthegame": "Fjerner kompasset fra spillet." -rainisabletorefillwatersources: Rain is able to refill water sources. +"resources": "Ressourcer" -rapidfirepoweruphasspawnedatmiddleofthemap: '&6&lHurtige Skud &bpowerup er spawned - I midten af mappet!' +"respawningin": "Respawning in" -rating: Bedømmelse +"serverrulescanbereadin/rulesmakesuretofollowthem": "Serverens regler kan læses på &a/rules&e. Husk at overholde dem!" -reflectionperk: Reflektions Perk +"shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers": "&e&lSkyd kyllinger og få flest drab, for at vinde! Pas på: Dumme zombier og creepere!" -reflectsasnowballreducingdamagetakenby1: Reflekterer en snebold, formindsker skaden - med $1$. +"shootchickensasfastasyoucan": "Skyd kyllinger så hurtigt du kan!" -reflectsnowballsmodifier: Reflekter Snebolde Modifier +"shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes": "Skyd andre spillere med snebolde, køb powerups med meloner og spil i mange forskellige modes!" -regeneratesyourhealth1: Regenererer dit liv $1$ +"shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak": "&e&lSkyd TNT med din kanon og skub modstandere i void, eller spræng dem. Red dig selv fra farer ved hjælp af superhop. [Snig]" -regeneration: Regenererer +"slowballs": "Langsomme Snebolde" -removescompassfromthegame: Fjerner kompasset fra spillet. +"slownessionhit": "Slowness I på slag" -resources: Ressourcer +"slownessperk": "Langsomheds Perk" -respawningin: Respawning in +"sneaktouse": "Snig for at bruge" -serverrulescanbereadin/rulesmakesuretofollowthem: Serverens regler kan læses på &a/rules&e. - Husk at overholde dem! +"snowballaccuracy": "Sneboldspræcision" -shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers: '&e&lSkyd kyllinger - og få flest drab, for at vinde! Pas på: Dumme zombier og creepere!' +"snowballsfired": "Kastede snebolde" -shootchickensasfastasyoucan: Skyd kyllinger så hurtigt du kan! +"snowmanperk": "Snemands Perk" -shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes: Skyd - andre spillere med snebolde, køb powerups med meloner og spil i mange forskellige - modes! +"snowman": "Snemand" -shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak: '&e&lSkyd - TNT med din kanon og skub modstandere i void, eller spræng dem. Red dig selv fra - farer ved hjælp af superhop. [Snig]' +"sortsteamsbasedonkillscountforfairness": "Sorter hold baseret på drabsoptælling på grund af retfærdighed." -slowballs: Langsomme Snebolde +"spawnpointswitch": "Spawnpoint Switch" -slownessionhit: Slowness I på slag +"speed": "Fart" -slownessperk: Langsomheds Perk +"spleeftntspleentexplodeotherplayersintothevoid": "Spleef + TNT = Spleent! Spræng andre spillere i void!" -sneaktouse: Snig for at bruge +"statistics": "Statistikker" -snowballaccuracy: Sneboldspræcision +"stonecannon": "&7Sten-Kanon" -snowballsfired: Kastede snebolde +"succesfullysentpartyinviteto1": "Har succesfuldt sendt en party invitation til $1$!" -snowmanperk: Snemands Perk +"superjumps": "Super Hop" -snowman: Snemand +"superjump": "Superhop" -sortsteamsbasedonkillscountforfairness: Sorter hold baseret på drabsoptælling på grund - af retfærdighed. +"survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty": "Overlevelse baseret på Gammle Minecraft versioner mellem alpha 1.2 og beta 1.7.3.||&cAdvarsel: &7NOSTALGI GARANTERET." -spawnpointswitch: Spawnpoint Switch +"survivalrules": "Overlevelses Regler" -speed: Fart +"team": "Hold" -spleeftntspleentexplodeotherplayersintothevoid: Spleef + TNT = Spleent! Spræng andre - spillere i void! +"thankyouforratingthismap": "Tak for at stemme på denne bane" -statistics: Statistikker +"theknockbackstick": "Knockback Pind" -stonecannon: '&7Sten-Kanon' +"therearemanyspecialrecipescheckthemoutin/recipes": "There are many special recipes! Check them out in: &e/recipes&r" -succesfullysentpartyinviteto1: Har succesfuldt sendt en party invitation til $1$! +"thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1": "There is a custom programming language made for Creative World, with it you can create simple features for your plot! $1$" -superjumps: Super Hop +"thisgamecanbeplayedalone": "&aDette spil kan spilles &e&lalene&a." -superjump: Superhop +"thisgamecanbeplayedwith2players": "Dette spil kan blive spillet med &e&l2&a&l+ &aspillere." -survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty: 'Overlevelse - baseret på Gammle Minecraft versioner mellem alpha 1.2 og beta 1.7.3.||&cAdvarsel: - &7NOSTALGI GARANTERET.' +"thisgamecanbeplayedwithonly2players": "Dette spil kan kun spilles med &e&l2 &aspillere." -survivalrules: Overlevelses Regler +"thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players": "Dette spil starter tidligt. Du får ikke smaragder og din status, resultater tæller ikke, hvis spillet starter med mindre end &e&l$1$ &6spillere." -team: Hold +"thispowerupisalreadyactive": "This power-up is already active!" -thankyouforratingthismap: Tak for at stemme på denne bane +"thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges": "Denne runde 1v1, nåede ikke betingelserne for at vinde belønninger, og bedømmelses ændringer." -theknockbackstick: Knockback Pind +"throwablecobweb": "Kasteligt Edderkoppespind" -therearemanyspecialrecipescheckthemoutin/recipes: 'There are many special recipes! - Check them out in: &e/recipes&r' +"timeelapsed": "Tid gået" -thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1: There - is a custom programming language made for Creative World, with it you can create - simple features for your plot! $1$ +"timesincelastupdate": "Tid siden sidste opdatering" -thisgamecanbeplayedalone: '&aDette spil kan spilles &e&lalene&a.' +"totalplaytime": "Samlet spilletid" -thisgamecanbeplayedwith2players: Dette spil kan blive spillet med &e&l2&a&l+ &aspillere. +"troopsalive": "Levende tropper" -thisgamecanbeplayedwithonly2players: Dette spil kan kun spilles med &e&l2 &aspillere. +"troopskilled": "Tropper dræbt" -thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players: Dette - spil starter tidligt. Du får ikke smaragder og din status, resultater tæller ikke, - hvis spillet starter med mindre end &e&l$1$ &6spillere. +"troopslost": "Tabte tropper" -thispowerupisalreadyactive: This power-up is already active! +"troops": "Tropper" -thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges: Denne runde - 1v1, nåede ikke betingelserne for at vinde belønninger, og bedømmelses ændringer. +"turnsyoursnowballsintoslowballs": "Gør dine snebolde langsomme" -throwablecobweb: Kasteligt Edderkoppespind +"turn": "Tur" -timeelapsed: Tid gået +"unlocked": "Unlocked" -timesincelastupdate: Tid siden sidste opdatering +"use/agree1toagreewithsurvivalrules": "Skriv /agree $1$ for at acceptere overlevelses reglerne." -totalplaytime: Samlet spilletid +"usef5highfovtogetabetterviewofthegamefield": "Brug F5 + høj FOV for at få et bedre udsyn over spillebanen!" -troopsalive: Levende tropper +"utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory": "&e&lUdnyt forberedelses tiden, til at samle så mange ressourcer som muligt, forsvar din Livkrydstal og kæmp din vej til sejr." -troopskilled: Tropper dræbt +"victory": "DU VANDT" -troopslost: Tabte tropper +"votes": "Stemmer:" -troops: Tropper +"vote": "[STEM]" -turnsyoursnowballsintoslowballs: Gør dine snebolde langsomme +"waitingplayers": "Ventende Spillere" -turn: Tur +"waitingqueuestatus": "Afventer Kø Status" -unlocked: Unlocked +"warped1partymemberstoyourlocation": "Teleporterede &e&l$1$ &epartymedlemmer til din lokation!" -use/agree1toagreewithsurvivalrules: Skriv /agree $1$ for at acceptere overlevelses - reglerne. +"waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater": "Water is finite here, so you are going to need to build farms close to big sources of water." -usef5highfovtogetabetterviewofthegamefield: Brug F5 + høj FOV for at få et bedre udsyn - over spillebanen! +"winspercentage": "Sejr Procent" -utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory: '&e&lUdnyt - forberedelses tiden, til at samle så mange ressourcer som muligt, forsvar din - Livkrydstal og kæmp din vej til sejr.' +"wins": "Sejre" -victory: DU VANDT +"woodcannon": "Træ-Kanon" -votes: 'Stemmer:' +"youarealreadyinapartyof1": "Du er allerede i &a$1$&cs party!" -vote: '[STEM]' +"youarealreadyon1team": "Du er allerede på $1$ &chold!" -waitingplayers: Ventende Spillere +"youareleaderofapartyuse/partydisbandtobeabletodothis": "You are leader of a party, use &e/party disband &cto be able to do this." -waitingqueuestatus: Afventer Kø Status +"youarenowamemberof1team": "Du er nu medlem af $1$ &ehold!" -warped1partymemberstoyourlocation: Teleporterede &e&l$1$ &epartymedlemmer til din - lokation! +"youarenowjuggernaut": "Du er nu kæmpen!" -waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater: Water is - finite here, so you are going to need to build farms close to big sources of water. +"youarentinaparty": "Du er ikke en del af et party!" -winspercentage: Sejr Procent +"youarenttheleaderoftheparty": "Du er ikke leder af partyet!" -wins: Sejre +"youcanchatonlyonceevery15second": "You can chat only once every 1.5 second!" -woodcannon: Træ-Kanon +"youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor": "You can die from cold during night in &bHoth&r if you do not have leather armor." -youarealreadyinapartyof1: Du er allerede i &a$1$&cs party! +"youcanfindfriendlysurvivalwikiin1": "You can find Friendly Survival wiki in: $1$" -youarealreadyon1team: Du er allerede på $1$ &chold! +"youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone": "You can lock your containers and doors with signs, if you want to protect land you can join a group or create one." -youareleaderofapartyuse/partydisbandtobeabletodothis: You are leader of a party, use - &e/party disband &cto be able to do this. +"youcannothavemorethanonesnowmanininventoryatthesametime": "You cannot have more than one &fSnowman &cin inventory at the same time." -youarenowamemberof1team: Du er nu medlem af $1$ &ehold! +"youcannotpartywarpintothisgame": "You cannot party warp into this game!" -youarenowjuggernaut: Du er nu kæmpen! +"youcanonlybuythisingame": "Du kan kun købe det her i spillet!" -youarentinaparty: Du er ikke en del af et party! +"youcanonlyvotewhentheresenoughplayerstostartthegame": "Du kan først stemme når der er nok spillere til at starte spillet." -youarenttheleaderoftheparty: Du er ikke leder af partyet! +"youcansendcarepackagestosupportaliveplayerswith/carepackage": "Du kan sende hjælpepakker for at hjælpe spillere der er i live med &e&l/carepackage " -youcanchatonlyonceevery15second: You can chat only once every 1.5 second! +"youcantoggledisplayoftheanimationofftoreduceyourfpslag": "Du kan slå animations-display fra, for at formindske FPS lag!" -youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor: You can die from cold - during night in &bHoth&r if you do not have leather armor. +"youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions": "You can use &5Dimensional Warp&r to warp to many beautiful and interesting dimensions." -youcanfindfriendlysurvivalwikiin1: 'You can find Friendly Survival wiki in: $1$' +"youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave": "Du kunne ikke blive teleporteret til din partyleders lokation, fordi du er i gang med et spil. Skriv &e/q &cfor at afslutte." -youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone: You - can lock your containers and doors with signs, if you want to protect land you - can join a group or create one. +"youdonothaveenoughemeralds": "Du har ikke nok &aSmaragder&c!" -youcannothavemorethanonesnowmanininventoryatthesametime: You cannot have more than - one &fSnowman &cin inventory at the same time. +"youdonothaveenoughmelons": "You do not have enough melons!" -youcannotpartywarpintothisgame: You cannot party warp into this game! +"yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin": "Du får point for at \"\"fange flag\"\". Dit hold skal nå det nødvendige antal point for at vinde." -youcanonlybuythisingame: Du kan kun købe det her i spillet! +? "yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin" +: "Du får point for at dræbe. En spiller bliver valgt til at være kæmpen, og alle spiller er imod den. Hvis du dræber kæmpen bliver du selv til en kæmpe. Du skal nå det nødvendige antal point for at vinde." -youcanonlyvotewhentheresenoughplayerstostartthegame: Du kan først stemme når der er - nok spillere til at starte spillet. +"yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin": "Du får point for at dræbe. Du skal have nok point for at vinde!" -youcansendcarepackagestosupportaliveplayerswith/carepackage: Du kan sende - hjælpepakker for at hjælpe spillere der er i live med &e&l/carepackage +"yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin": "Du får point for at dræbe. Dit hold skal have nok point for at vinde!" -youcantoggledisplayoftheanimationofftoreduceyourfpslag: Du kan slå animations-display - fra, for at formindske FPS lag! +"youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay": "Du har accepteret overlevelsesreglerne. Følg dem, så skal alt nok gå!" -youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions: You can use - &5Dimensional Warp&r to warp to many beautiful and interesting dimensions. +"youhavealreadyinvited1intoyourparty": "Du har allerede inviteret $1$ &ctil dit party!" -youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave: Du - kunne ikke blive teleporteret til din partyleders lokation, fordi du er i gang - med et spil. Skriv &e/q &cfor at afslutte. +"youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday": "Du har allerade stemt på et map, i dette spil idag. Hjælp serveren ved at købe &a&lVIP &chvis du vil kunne stemme uendelig gange, hver dag." -youdonothaveenoughemeralds: Du har ikke nok &aSmaragder&c! +"youhavealreadyvotedforamode": "Du har allerede stemt på en mode!" -youdonothaveenoughmelons: You do not have enough melons! +"youhavealreadyvotedforthismodifier": "Du har allerade stemt på denne modifier!" -yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin: Du får - point for at ""fange flag"". Dit hold skal nå det nødvendige antal point for at - vinde. +"youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools": "You have FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint building tools!" -? yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin -: Du får point for at dræbe. En spiller bliver valgt til at være kæmpen, og alle spiller - er imod den. Hvis du dræber kæmpen bliver du selv til en kæmpe. Du skal nå det - nødvendige antal point for at vinde. +"youhavejoinedpartyof1": "Du har tilsluttet dig &a$1$&es party!" -yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin: Du får point for at - dræbe. Du skal have nok point for at vinde! +"youhaveleftpartyof1": "Du har forladt &a$1$&es party!" -yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin: Du får point - for at dræbe. Dit hold skal have nok point for at vinde! +"youhavereachedthelimitof1powerupspermatch": "You have reached the limit of &e&l$1$ &cpowerups per match!" -youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay: Du har accepteret - overlevelsesreglerne. Følg dem, så skal alt nok gå! +"youhavereachedthelimitofsnowballs": "You have reached the limit of snowballs!" -youhavealreadyinvited1intoyourparty: Du har allerede inviteret $1$ &ctil dit party! +"youhaveremovedyourlastratingofthismap": "Du har fjernet din bedømmelse af dette map." -youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday: Du - har allerade stemt på et map, i dette spil idag. Hjælp serveren ved at købe &a&lVIP - &chvis du vil kunne stemme uendelig gange, hver dag. +"youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules": "Du skal læse og acceptere overlevelsereglerne for at kunne ødelægge/sætte blokke. Skriv &e/survivalrules" -youhavealreadyvotedforamode: Du har allerede stemt på en mode! +"youhaveupgraded1to2": "Du har opgraderet &a$1$ &6til &a$2$&6!" -youhavealreadyvotedforthismodifier: Du har allerade stemt på denne modifier! +"youhaveupgraded1": "Du har opgraderet &a$1$&6!" -youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools: You have - FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint building tools! +"youmustbeleaderofapartytousethis": "Du skal være partyets leder for at bruge dette!" -youhavejoinedpartyof1: Du har tilsluttet dig &a$1$&es party! +"yourarmyisunderattack": "Din hær er under angreb!" -youhaveleftpartyof1: Du har forladt &a$1$&es party! +"youropponentisblindedbyyourperk": "Din modstander er blind, på grund af din perk!" -youhavereachedthelimitof1powerupspermatch: You have reached the limit of &e&l$1$ &cpowerups - per match! +"youropponentisignitedbyyourperk": "Din modstander er antændt, af din perk!" -youhavereachedthelimitofsnowballs: You have reached the limit of snowballs! +"youropponentisslowedbyyourperk": "Din modstander er blevet langsom, på grund af din perk!" -youhaveremovedyourlastratingofthismap: Du har fjernet din bedømmelse af dette map. +"yourpartyinviteto1hasexpired": "Din party-invitation til $1$ &eer udløbet." -youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules: Du - skal læse og acceptere overlevelsereglerne for at kunne ødelægge/sætte blokke. - Skriv &e/survivalrules +"yourpartyleaderhaswarpedyoutotheirlocation": "Din party leder har teleporteret dig til sin lokation!" -youhaveupgraded1to2: Du har opgraderet &a$1$ &6til &a$2$&6! +"yourradarbreakereffectisover": "Your Radar Breaker effect is over!" -youhaveupgraded1: Du har opgraderet &a$1$&6! +"yoursnowballhitboatof1": "Your snowball hit boat of $1$&f!" -youmustbeleaderofapartytousethis: Du skal være partyets leder for at bruge dette! +"yourteam": "DIT HOLD" -yourarmyisunderattack: Din hær er under angreb! +"1kicked2fromtheparty": "$1$ &ekicked $2$ &efrom the party!" -youropponentisblindedbyyourperk: Din modstander er blind, på grund af din perk! +"youhavealreadyusedthispowerupinthislife": "You have already used this power-up in this life!" -youropponentisignitedbyyourperk: Din modstander er antændt, af din perk! +"swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo": "Swearing is completely forbidden in our server, you will get an automatically issued punishment if you do." -youropponentisslowedbyyourperk: Din modstander er blevet langsom, på grund af din - perk! +"1hastransferredpartyleaderto2": "$1$ &ehas transferred party leader to $2$&e!" -yourpartyinviteto1hasexpired: Din party-invitation til $1$ &eer udløbet. +"1isnotinyourparty": "$1$ &cis not in your party!" -yourpartyleaderhaswarpedyoutotheirlocation: Din party leder har teleporteret dig til - sin lokation! +"youcanbuythisitemonlyonceperlife": "You can buy this item only once per life." -yourradarbreakereffectisover: Your Radar Breaker effect is over! +"youhavegainedextralifefromyourimmortalityperk": "You have gained extra life from your &aImmortality Perk&e!" -yoursnowballhitboatof1: Your snowball hit boat of $1$&f! +"rightclicktoactivategamemodifiers": "Right click to activate game modifiers!" -yourteam: DIT HOLD +"youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow": "You have logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged in a row." -1kicked2fromtheparty: $1$ &ekicked $2$ &efrom the party! +"locked": "LOCKED" -youhavealreadyusedthispowerupinthislife: You have already used this power-up in this - life! +"1hasgainedanextralifefromtheirimmortalityperk": "&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!" -swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo: Swearing - is completely forbidden in our server, you will get an automatically issued punishment - if you do. +"/msgplayersendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." -1hastransferredpartyleaderto2: $1$ &ehas transferred party leader to $2$&e! +"/statsplayerviewplayersstats": " /stats &2- &aView player's stats." -1isnotinyourparty: $1$ &cis not in your party! +"/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." -youcanbuythisitemonlyonceperlife: You can buy this item only once per life. +"/partyinviteplayertoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." -youhavegainedextralifefromyourimmortalityperk: You have gained extra life from your - &aImmortality Perk&e! +"/partyacceptplayertoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." -rightclicktoactivategamemodifiers: Right click to activate game modifiers! +"/partykickplayertokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." -youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow: You have - logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged - in a row. +"/partytransferplayertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." -locked: LOCKED +"/partyjoinplayertojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." -1hasgainedanextralifefromtheirimmortalityperk: '&a$1$ &ehas gained an extra life from - their &aImmortality Perk&e!' +"ifyouwanttospectateotherplayertype/stpplayer": "If you want to spectate other player type &e/stp " + +"yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit": "Your party is now open for public join! Other players can do &a/p join $1$ &eto join it!" + +"youcansendcarepackagestosupportaliveplayerswith/carepackageplayer": "You can send care packages to support alive players with &e&l/carepackage " + +"enchantedironcannon": "&bEnchanted &7&lIron Cannon" + +"castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers": "Castle Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, Checkers, Bomberman, Elemental Archers" + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even furniture to improve your builds!" diff --git a/LanguageEN.yml b/LanguageEN.yml index 2f49e17..8540014 100644 --- a/LanguageEN.yml +++ b/LanguageEN.yml @@ -3,25 +3,6 @@ /donateviewwaystodonatemoneytoourserver: ' /donate &2- &aView ways to donate money to our server.' -/facceptacceptfriendrequests: ' /f accept &2-&a Accept friend requests.' - -/faddrequestsomeonetobeyourfriend: ' /f add &2-&a Request someone to be your friend.' - -/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aGet answers to frequently - asked questions.' - -/fdenydenyfriendrequests: ' /f deny &2-&a Deny friend requests.' - -/flistlistallyourcurrentfriends: ' /f list &2-&a List all your current friends.' - -/fremoveremoveafriend: ' /f remove &2-&a Remove a friend.' - -/frequestslistallfriendrequests: ' /f requests &2-&a List all friend requests.' - -/friendviewfriendcommandshelp: ' /friend &2- &aView friend commands help.' - -/fshowsthishelppage: ' /f &2-&a Shows this help page.' - /groupacceptacceptagroupinvitation: ' /group accept &2- &aAccept a group invitation.' @@ -958,3 +939,46 @@ locked: LOCKED 1hasgainedanextralifefromtheirimmortalityperk: '&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!' + +/msgplayersendaprivatemessagetoaplayer: ' /msg &2- &aSend a private message + to a player.' + +/statsplayerviewplayersstats: ' /stats &2- &aView player''s stats.' + +/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname: ' /join + [lobbyname] &2- &aTo join a public game by a command or private game by + specifying lobby name.' + +/partyinviteplayertoinviteaplayertoparty: ' /party invite &2- &aTo invite + a player to party.' + +/partyacceptplayertoacceptanpartyinvite: ' /party accept &2- &aTo accept + an party invite.' + +/partykickplayertokickaplayerfromyourparty: ' /party kick &2- &aTo kick + a player from your party.' + +/partytransferplayertotransferpartyleadertoothermember: ' /party transfer + &2- &aTo transfer party leader to other member.' + +/partyjoinplayertojoinpublicpartyofaplayer: ' /party join &2- &aTo join + public party of a player.' + +ifyouwanttospectateotherplayertype/stpplayer: If you want to spectate other player + type &e/stp + +yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit: Your party is now + open for public join! Other players can do &a/p join $1$ &eto join it! + +youcansendcarepackagestosupportaliveplayerswith/carepackageplayer: You can send care + packages to support alive players with &e&l/carepackage + +enchantedironcannon: '&bEnchanted &7&lIron Cannon' + +castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers: Castle + Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, + Checkers, Bomberman, Elemental Archers + +? creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds +: Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, + a huge collection of player heads and even furniture to improve your builds! diff --git a/LanguageES.yml b/LanguageES.yml new file mode 100644 index 0000000..c81e583 --- /dev/null +++ b/LanguageES.yml @@ -0,0 +1,837 @@ +"/chatpartytotogglepartychat": " /chat party &2- &aTo toggle party chat." + +"/donateviewwaystodonatemoneytoourserver": " /donate &2- &aView ways to donate money to our server." + +"/groupacceptacceptagroupinvitation": " /group accept &2- &aAccept a group invitation." + +"/groupchunksbrowseclaimedchunksofagroup": " /group chunks &2- &aBrowse claimed chunks of a group." + +"/groupclaimclaimachunktoagroup": " /group claim &2- &aClaim a chunk to a group." + +"/groupcreatecreateagroup": " /group create &2- &aCreate a group." + +"/groupdemotedemoteaplayerinagroup": " /group demote &2- &aDemote a player in a group." + +"/groupinfoviewinformationaboutagroup": " /group info &2- &aView information about a group." + +"/groupinviteinviteaplayertoagroup": " /group invite &2- &aInvite a player to a group." + +"/groupkickkickaplayerfromagroup": " /group kick &2- &aKick a player from a group." + +"/groupleaveleaveagroup": " /group leave &2- &aLeave a group." + +"/grouplistlistthegroupsyouarein": " /group list &2- &aList the groups you are in." + +"/grouppromotepromoteaplayerinagroup": " /group promote &2- &aPromote a player in a group." + +"/groupunclaimunclaimachunk": " /group unclaim &2- &aUnclaim a chunk." + +"/groupupgradeupgradeagroup": " /group upgrade &2- &aUpgrade a group." + +"/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." + +"/listviewinformationaboutallonlineplayers": " /list &2- &aView information about all online players." + +"/msgsendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." + +"/partyaccepttoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." + +"/partydisbandtodisbandyourparty": " /party disband &2- &aTo disband your party." + +"/partyinvitetoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." + +"/partyjointojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." + +"/partykicktokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." + +"/partyleavetoleaveaparty": " /party leave &2- &aTo leave a party." + +"/partylisttoviewmembersofyourpartylist": " /party list &2- &aTo view members of your party list." + +"/partyopentoopenyourpartyforpublicjoin": " /party open &2- &aTo open your party for public join." + +"/partytransfertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." + +"/partyviewpartyhelp": " /party &2- &aView party help." + +"/partywarptowarpyourpartymemberstoyourgamelobby": " /party warp &2- &aTo warp your party members to your game lobby." + +"/rulesreadserverrules": " /rules &2- &aRead server rules." + +"/spectateenterspectatemode": " /spectate &2- &aEnter spectate mode." + +"/staffviewstafflist": " /staff &2- &aView staff list." + +"/statsviewplayersstats": " /stats &2- &aView player's stats." + +"1arrowonknockout": "1 arrow on knockout!" + +"1defeated2": "$1$ &cdefeated &6$2$" + +"1donated1snowballtoyou": "$1$ &edonated &e&l1 &fSnowball &eto you!" + +"1flaghasbeendropped": "$1$ &eflag has been dropped!" + +"1gotfirstkillofthegame": "&a$1$ &egot first kill of the game!" + +"1hascaptured2flag": "$1$ &ehas captured $2$ &eflag!" + +"1hasdisbandedtheparty": "$1$ &ehas disbanded the party!" + +"1hasinvitedyouintoaparty": "$1$ &ehas invited you into a party!" + +"1hasjoinedyourparty": "$1$ &ehas joined your party!" + +"1hasjoined": "$1$ &ehas joined!" + +"1haslefttheparty": "$1$ &ehas left the party!" + +"1hasleft": "$1$ &chas left!" + +"1hasnotinvitedyouintoaparty": "$1$ &ehas not invited you into a party!" + +"1haspickedup2flag": "$1$ &ehas picked up $2$ &eflag!" + +"1hasreachedthemaxsticklevel": "$1$ &ehas reached the max stick level!" + +"1hasreturned2flag": "$1$ &ehas returned $2$ &eflag!" + +"1hasvotedfor2map": "$1$ &ehas voted for &b&l$2$ &emap!" + +"1hasvotedfor2mode": "$1$ &ehas voted for &b&l$2$ &emode!" + +"1hasvotedforbalancedteamsmodifier": "$1$ &ehas voted for &b&lBalanced Teams &emodifier!" + +"1hasvotedfordoublejumpmodifier": "$1$ &ehas voted for &b&lDouble Jump &emodifier!" + +"1hasvotedforfastsnowballsmodifier": "$1$ &ehas voted for &b&lFast Snowballs &emodifier!" + +"1hasvotedforinstakillsnowballsmodifier": "$1$ &ehas voted for &b&lInstakill Snowballs &emodifier!" + +"1hasvotedfornocompassmodifier": "$1$ &ehas voted for &b&lNo Compass &emodifier!" + +"1hasvotedforreflectsnowballsmodifier": "$1$ &ehas voted for &b&lReflect Snowballs &emodifier!" + +"1isalreadyinyourparty": "$1$ &cis already in your party!" + +"1isnotyourfriendadd1tofriendswith/fadd2": "$1$&c is not your friend! Add $1$&c to friends with &e/f add $2$" + +"1ofplayersneedstovotetoenable": "$1$ &7of players needs to vote to enable" + +"1teamisfull": "$1$ &cteam is full!" + +"accept": "[ACCEPT]" + +"achancetospawncreeperwhereyoursnowballlands": "A chance to spawn creeper where your snowball lands." + +"activatedmodifiers": "Activated Modifiers" + +"allowstodoublejumpbypressingthesneakbuttoninmidair": "Allows to double jump by pressing the sneak button in mid-air." + +"animationiscurrentlydisabled": "Animation is currently &c&lDISABLED&e." + +"areyouseriouslygoingintoapartywithyourselfinvitesomeone": "Are you seriously going into a party with yourself? Invite someone!" + +"areyousureyouwanttoleavetype/qtoconfirm": "Are you sure you want to leave? Type &e/q &6to confirm." + +"armor": "Armor" + +"arrowaccuracy": "Arrow Accuracy" + +"arrowbonusperk": "Arrow Bonus Perk" + +"arrowsfired": "Arrows Fired" + +"arrowsleft": "Arrows left" + +"asnowmanwhichshootsenemies": "A snowman which shoots enemies!" + +"averagerating": "Average Rating:" + +"balancedteamsmodifier": "Balanced Teams Modifier" + +"becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating": "&7&lBecause of too much game changing modifiers activated this match will not affect your rating." + +"bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin": "&e&lBe the commander of a giant army and defeat all the enemy kings with your army to win!" + +"bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports": "Beware of gravity! Always build supports to your mines and buildings with at least 8 blocks of distance between supports." + +"blindnessperk": "Blindness Perk" + +"blockssnowballs50chancetobreakonfirsthit100onsecondhit": "Blocks snowballs. &e&l50% &7chance to break on first hit, &e&l100% &7on second hit." + +"blocks": "blocks" + +"bombsfired": "Bombs fired" + +"bombsplaced": "Bombs placed" + +"bonussnowballsonknockout": "Bonus snowballs on knockout" + +"burningstickperk": "Burning Stick Perk" + +"burns1oftargetssnowballs": "Burns &e&l$1$ &7of target's snowballs." + +"burnstargetonhit": "Burns target on hit." + +"cantfindaplayerbythenameof1": "Can't find a player by the name of '$1$'." + +"cantshootfarbecausesnowballsmeltintheair": "Can't shoot far because snowballs melt in the air." + +"chanceofcreeperspawn": "chance of creeper spawn" + +"chanceofdoubleexperience": "chance of double experience" + +"chanceofdoublemelons": "chance of double melons." + +"chanceofenchantedsnowballgainafterkill": "chance of &bEnchanted Snowball &7gain after kill." + +"chanceofreflection": "chance of reflection." + +"chancetoblindopponentonhit": "Chance to blind opponent on hit" + +"chancetoburnopponentonhit": "Chance to burn opponent on hit" + +"chancetonotlosealife": "Chance to not lose a life" + +"chancetoslowslowness1opponentonhit": "chance to slow(Slowness $1$) opponent on hit" + +"chancetoslowslownessiiopponentonhit": "Chance to slow(Slowness II) opponent on hit" + +"checkersinminecraftlikethepopularboardgame": "Checkers in Minecraft! Like the popular board game." + +"checkers": "Checkers" + +"checkpoint": "Checkpoint" + +"chestslooted": "Chests looted" + +"classes": "classes" + +"clickheretojoin1": "Click here to join $1$!" + +"clicktoacceptthepartyinvite": "Click to accept the party invite!" + +"clicktobuy": "Click to buy!" + +"clicktojoin": "[CLICK TO JOIN]" + +"clicktoopenmenu": "CLICK TO OPEN MENU" + +"clicktoplay": "CLICK TO PLAY" + +"clicktoratethismap": "Click to rate this map" + +"clicktoundothisrating": "Click to undo this rating!" + +"clicktovotefor1mode": "Click to vote for $1$ &amode!" + +"clicktovoteforthismap": "Click to vote for this map!" + +"clicktovoteforthismode": "Click to vote for this mode!" + +"clicktovoteforthismodifier": "Click to vote for this modifier!" + +"completeparkourracesearnprizesandcompeteinleaderboards": "Complete parkour races, earn prizes and compete in leaderboards!" + +"cooldown": "Cooldown" + +"crackedplayerscanjoinourservertheycanapplyat1tojoin": "Cracked players can join our server! They can apply at $1$ &rto join." + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even a custom programming language to create your own custom maps!" + +"creeperchanceperk": "Creeper Chance Perk" + +"crystal": "Crystal" + +"damagedealt": "Damage Dealt" + +"damagetaken": "Damage Taken" + +"day": "Day" + +"deaths": "Deaths" + +"defeat": "DEFEAT" + +"defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander": "Defend your castle, attack other castles, command your army and become the best commander!" + +"destroyingotherplayercreationsorruiningtheminanywayisnotallowed": "Destroying other player creations or ruining them in any way is not allowed!" + +"destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed": "Destroying the good look of terrain by making holes, 1x1 towers and any other way which makes it look bad is not allowed." + +"didyouknow": "Did you know?" + +? "differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin" +: "&e&lDifferent elemental classes compete with each other in bow-fighting abilities. Use fasciniting abilities of your class to defeat other players and win!" + +"dissappearsafter10soflanding": "Dissappears after &e&l10s &7of landing." + +"doubleemeralds": "Double Emeralds" + +"doublejumpmodifier": "Double Jump Modifier" + +"doublemelonsperk": "Double Melons Perk" + +"emeraldstotalearned": "Emeralds total earned" + +"emeralds": "Emeralds" + +"emerald": "Emerald" + +"enchanteddiamondcannon": "&bEnchanted &b&lDiamond Cannon" + +"enchantedsnowballperk": "Enchanted Snowball Perk" + +"enchantedstonecannon": "&bEnchanted &7Stone Cannon" + +"enchantedwoodcannon": "Enchanted &aWood Cannon" + +"enemyteam": "ENEMY TEAM" + +"everyplayergets3liveseliminateenemyteamtowin": "Every player gets 3 lives, eliminate enemy team to win." + +"everyplayergets3liveseliminateotherplayerstowin": "Every player gets 3 lives, eliminate other players to win." + +"experiencebonusperk": "Experience Bonus Perk" + +"explodeyourwaytootherplayersandexplodethem": "Explode your way to other players and explode them!" + +"exploringthevoidmayrevealmysterioussecrets": "Exploring the void may reveal mysterious secrets!" + +"explosionradius": "Explosion Radius" + +"fastsnowballsmodifier": "Fast Snowballs Modifier" + +"feelfreetoinviteotherplayersbyusingthechat": "Feel free to invite other players by using the chat." + +"finalkills": "Final Kills" + +"flamethrower": "Flamethrower" + +"free": "Free!" + +"friendcommands": " &2&l--=-= &a&lFriend Commands &2&l=-=--" + +"friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore": "Friendly survival with tech and magic! Explore many dimensions, grow beautiful trees and more!" + +"gameendedinadraw": "GAME ENDED IN A DRAW" + +"gameend": "GAME END" + +"gamehasstarted": "Game has started!" + +"gameisstarting": "Game is starting" + +"gamestartsin1seconds": "Game starts in &e&l$1$ &eseconds" + +"gamestartsin": "Game starts in" + +"gamestatistics": "Game Statistics" + +"gametime": "Game time" + +"gamewillendin1minutes": "Game will end in &e&l$1$ &eminutes." + +"gamewillendin1minute": "Game will end in &e&l$1$ &eminute." + +"gamewillstartin1seconds": "&eGame will start in &e&l$1$ &eseconds" + +"gamewillstartin1second": "&eGame will start in &e&l$1$ &esecond" + +"gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame": "Gather resources, prepare for fight, protect your Crystal of Life, attack other crystals and win the game!" + +"gravityhasnoeffectonblocksheresoyoucanbuildinthesky": "Gravity has no effect on blocks here, so you can build in the sky!" + +"groupcommands": " &2&l --=-= &a&lGroup Commands &2&l=-=--" + +"havefun": "Have fun!" + +"health": "Health" + +"hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends": "Here you can find games which can be played both alone and with friends!" + +"hereyoucanfindgameswhichcanbeplayedonlywithfriends": "Here you can find games which can be played only with friends!" + +"hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun": "Here you can find little GUI minigames, these minigames unlike others, aren't made by us, it's just a downloaded plugin, but they are still fun!" + +"hereyoucanusevariousabilitiestoexplodethemapandotherplayers": "Here you can use various abilities to explode the map and other players!" + +"hitstaken": "Hits Taken" + +"hits": "Hits" + +"hittolevelupyourstickandknockotherplayersintothevoid": "Hit to level up your stick and knock other players in to the void!" + +"hours": "hours" + +"howtoplay": "&b&lHow To Play" + +"ifyouwanttogetoutofthespectatormodetype/q": "If you want to get out of the &eSpectator Mode &ctype &e/q" + +"ifyouwanttoleavethegametype/q": "If you want to leave the game type &e/q&6." + +"ifyouwanttospectateotherplayertype/stp": "If you want to spectate other player type &e/stp " + +"immortalityperk": "Immortality Perk" + +"increasesthechancetoreflectasnowballto100": "Increases the chance to reflect a snowball to 100%" + +"increasesthedamageofsnowballsto10hearts": "Increases the damage of snowballs to 10 hearts." + +"increasesyourspeedby1": "Increases your speed by $1$" + +"instakillsnowballsmodifier": "Instakill Snowballs Modifier" + +"invalidcode": "Invalid code." + +"ironcannon": "&7&lIron Cannon" + +"itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater": "It's very hot in Mustafar, you gonna need to drink twice as much water." + +"jumps": "Jumps" + +"killer": "Killer" + +"killsanynormalopponentevenwitharmor": "Kills any normal opponent, even with armor." + +"killstreak": "Killstreak" + +"kills": "Kills" + +"king": "King" + +"knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback": "&e&lKnock other players off the platform. As you hit players, you deal more knockback." + +"level": "Level" + +"listofgames": "List of Games" + +"lives": "Lives" + +"lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs": "Loot chests, fight other players, find randomly generated loot with interesting abilities and throw mob eggs like pokeballs!" + +"lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin": "&e&lLoot randomly generated chests with unique items. Use them to eliminate your enemies. Be the only survivor to win." + +"losses": "Losses" + +"makesallofyoursnowballsburn": "Makes all of your snowballs burn." + +"makesyoursnowballssuperfast": "Makes your snowballs super fast." + +"melonsearned": "Melons earned" + +"melonsspent": "Melons spent" + +"melons": "Melons" + +"melon": "Melon" + +"mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves": "Mine ores, upgrade pickaxes, buy awesome upgrades and unlock new caves!" + +"minutes": "minutes" + +"mode": "Mode" + +"movetimeleft": "Move time left" + +"mustbeatlowerfloor": "Must be at lower floor" + +"mustnothaveanysuperjumps": "Must not have any Super Jumps" + +"newrating": "New Rating" + +"newrecord": "NEW RECORD!" + +"new": "NEW!" + +"nextsuperjumpin": "Next Super Jump In" + +"night": "Night" + +"nocompassmodifier": "No Compass Modifier" + +"notenoughmelons": "Not enough melons!" + +"note": "Note:" + +"nowblockswillstartbreakingwhenyousteponthem": "Now blocks will start breaking when you step on them!" + +"oldrecord": "Old Record" + +"parkourcourse": "Parkour Course" + +"participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther": "&e&lParticipate in a massive snowball fight and use powerups to ease your existence! Delaying snowballs allows to throw them further." + +"partycommands": " &2&l --=-= &a&lParty Commands &2&l=-=--" + +"partyinvitefrom1hasexpired": "Party invite from $1$ &ehas expired." + +"partyleader": "Party Leader" + +"partymembers": "Party Members" + +"partyof1isnotopenforpublicjoin": "Party of &a$1$ &cis not open for public join." + +"placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents": "&e&lPlace bombs and explode blocks around it in a + shape. Use powerups to take advantage over opponents." + +"playercommands": " &2&l --=-= &a&lPlayer Commands &2&l=-=--" + +"playerdied1timesinarowwithoutkills": "Player died $1$ times in a row without kills" + +"playeriswaiting": "Player is waiting" + +"playernotfound": "Player not found." + +"playersarewaiting": "Players are waiting" + +"playersin": "Players in" + +"playersleft": "Players left" + +"playerswaiting": "Players Waiting" + +"players": "Players" + +"playerwason1killstreak": "Player was on $1$ killstreak" + +"playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes": "Play various classes with different abilities and use your bow skills to win in many different modes!" + +"pleaseratethismapbyclicking": "Please rate this map by clicking:" + +"pleasespecifygroupname": "Please specify group name!" + +"pleasespecifyplayername": "Please specify player name!" + +"plotname": "Plot Name" + +"plotowner": "Plot Owner" + +"points": "Points" + +"powerups": "Powerups" + +"quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers": "Quickly test your skill by fighting other players with a huge variety of modifiers!" + +"radarbreaker": "Radar Breaker" + +"rainisabletorefillwatersources": "Rain is able to refill water sources." + +"rapidfirepoweruphasspawnedatmiddleofthemap": "&6&lRapid Fire &bpowerup has spawned at middle of the map!" + +"rating": "Rating" + +"reflectionperk": "Reflection Perk" + +"reflectsasnowballreducingdamagetakenby1": "Reflects a snowball, reducing damage taken by $1$." + +"reflectsnowballsmodifier": "Reflect Snowballs Modifier" + +"regeneratesyourhealth1": "Regenerates your health $1$" + +"regeneration": "Regeneration" + +"removescompassfromthegame": "Removes compass from the game." + +"resources": "Resources" + +"respawningin": "Respawning in" + +"serverrulescanbereadin/rulesmakesuretofollowthem": "Server rules can be read in &a/rules&e, make sure to follow them!" + +"shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers": "&e&lShoot chickens and get the most kills to win! Beware: filthy zombies and creepers!" + +"shootchickensasfastasyoucan": "Shoot chickens as fast as you can!" + +"shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes": "Shoot other players with snowballs, buy powerups with melons and play in many different modes!" + +"shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak": "&e&lShoot TNT with your cannon and knock opponents to the void, or explode them. Save yourself from hazards using Super Jumps. [Sneak]" + +"slowballs": "Slowballs" + +"slownessionhit": "Slowness I on hit" + +"slownessperk": "Slowness Perk" + +"sneaktouse": "Sneak to use" + +"snowballaccuracy": "Snowball Accuracy" + +"snowballsfired": "Snowballs fired" + +"snowmanperk": "Snowman Perk" + +"snowman": "Snowman" + +"sortsteamsbasedonkillscountforfairness": "Sorts teams based on kills count for fairness." + +"spawnpointswitch": "Spawnpoint Switch" + +"speed": "Speed" + +"spleeftntspleentexplodeotherplayersintothevoid": "Spleef + TNT = Spleent! Explode other players into the void!" + +"statistics": "Statistics" + +"stonecannon": "&7Stone Cannon" + +"succesfullysentpartyinviteto1": "Succesfully sent party invite to $1$!" + +"superjumps": "Super Jumps" + +"survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty": "Survival based on old Minecraft versions between alpha 1.2 and beta 1.7.3.||&cWARNING: &7NOSTALGIA IS A CERTAINTY." + +"survivalrules": "Survival Rules" + +"team": "Team" + +"thankyouforratingthismap": "Thank you for rating this map" + +"theknockbackstick": "The Knockback Stick" + +"therearemanyspecialrecipescheckthemoutin/recipes": "There are many special recipes! Check them out in: &e/recipes&r" + +"thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1": "There is a custom programming language made for Creative World, with it you can create simple features for your plot! $1$" + +"thisgamecanbeplayedalone": "&aThis game can be played &e&lalone&a." + +"thisgamecanbeplayedwith2players": "This game can be played with &e&l2&a&l+ &aplayers." + +"thisgamecanbeplayedwithonly2players": "This game can be played with only &e&l2 &aplayers." + +"thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players": "This game is starting early, You will not earn Emeralds and your stats, achievements won't count if it starts with less than &e&l$1$ &6players." + +"thispowerupisalreadyactive": "This power-up is already active!" + +"thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges": "This round of 1v1 did not meet the requirements for win rewards and rating changes." + +"throwablecobweb": "Throwable Cobweb" + +"timeelapsed": "Time elapsed" + +"timesincelastupdate": "Time since last update" + +"totalplaytime": "Total play time" + +"troopsalive": "Troops alive" + +"troopskilled": "Troops killed" + +"troopslost": "Troops lost" + +"troops": "Troops" + +"turnsyoursnowballsintoslowballs": "Turns your snowballs into slowballs." + +"turn": "Turn" + +"unlocked": "UNLOCKED" + +"use/agree1toagreewithsurvivalrules": "Use /agree $1$ to agree with survival rules." + +"usef5highfovtogetabetterviewofthegamefield": "Use F5 + high FOV to get a better view of the game field!" + +"utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory": "&e&lUtilise preparation time given to gather as much resources as possible, defend your Crystal of Life and fight your way to victory." + +"victory": "VICTORY" + +"votes": "Votes:" + +"vote": "[VOTE]" + +"waitingplayers": "Waiting Players" + +"waitingqueuestatus": "Waiting Queue Status" + +"warped1partymemberstoyourlocation": "Warped &e&l$1$ &eparty members to your location!" + +"waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater": "Water is finite here, so you are going to need to build farms close to big sources of water." + +"winspercentage": "Wins Percentage" + +"wins": "Wins" + +"woodcannon": "Wood Cannon" + +"youalreadyhavevotedforamap": "You already have voted for a map!" + +"youarealreadyinapartyof1": "You are already in a party of &a$1$&c!" + +"youarealreadyon1team": "You are already on $1$ &cteam!" + +"youareleaderofapartyuse/partydisbandtobeabletodothis": "You are leader of a party, use &e/party disband &cto be able to do this." + +"youarenowamemberof1team": "You are now a member of $1$ &eteam!" + +"youarenowjuggernaut": "You are now Juggernaut!" + +"youarentinaparty": "You aren't in a party!" + +"youarenttheleaderoftheparty": "You aren't the leader of the party!" + +"youcanchatonlyonceevery15second": "You can chat only once every 1.5 second!" + +"youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor": "You can die from cold during night in &bHoth&r if you do not have leather armor." + +"youcanfindfriendlysurvivalwikiin1": "You can find Friendly Survival wiki in: $1$" + +"youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone": "You can lock your containers and doors with signs, if you want to protect land you can join a group or create one." + +"youcannothavemorethanonesnowmanininventoryatthesametime": "You cannot have more than one &fSnowman &cin inventory at the same time." + +"youcannotpartywarpintothisgame": "You cannot party warp into this game!" + +"youcanonlybuythisingame": "You can only buy this in-game!" + +"youcanonlyvotewhentheresenoughplayerstostartthegame": "You can only vote when there's enough players to start the game." + +"youcansendcarepackagestosupportaliveplayerswith/carepackage": "You can send care packages to support alive players with &e&l/carepackage " + +"youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions": "You can use &5Dimensional Warp&r to warp to many beautiful and interesting dimensions." + +"youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave": "You could not be warped to your party leader's location, because you are in a game. Use &e/q &cto leave." + +"youdonated1snowballto1": "You donated &e&l1 &fSnowball &eto &a$1$&e!" + +"youdonothaveenoughemeralds": "You do not have enough &aEmeralds&c!" + +"youdonothaveenoughmelons": "You do not have enough melons!" + +"yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin": "You get points for flag captures, your team needs to reach the needed amount of points to win." + +? "yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin" +: "You get points for kills, one player is chosen to be juggernaut and then all the players are against them, if you kill the juggernaut - you will become the juggernaut. You need to reach the needed amount of points to win." + +"yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin": "You get points for kills, you need to reach the needed amount of points to win." + +"yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin": "You get points for kills, your team needs to reach the needed amount of points to win." + +"yougotaenchantedsnowballfromyourkill": "You got a &lEnchanted Snowball &bfrom your kill!" + +"youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay": "You have agreed with the survival rules, follow them and everything will be okay!" + +"youhavealreadyinvited1intoyourparty": "You have already invited $1$ &cinto your party!" + +"youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday": "You have already voted for a map in this game today, support the server by buying &a&lVIP &cif you want to vote unlimited amount of times per day." + +"youhavealreadyvotedforamode": "You have already voted for a mode!" + +"youhavealreadyvotedforthismodifier": "You have already voted for this modifier!" + +"youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools": "You have FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint building tools!" + +"youhavejoinedpartyof1": "You have joined party of &a$1$&e!" + +"youhaveleftpartyof1": "You have left party of &a$1$&e!" + +"youhavepurchased1": "You have purchased $1$&6!" + +"youhavereachedthelimitof1powerupspermatch": "You have reached the limit of &e&l$1$ &cpowerups per match!" + +"youhavereachedthelimitofsnowballs": "You have reached the limit of snowballs!" + +"youhavereceivedsnowmanforreachingkillstreakof5": "You have received &fSnowman &efor reaching killstreak of &e&l5&e!" + +"youhavereflectedsnowballof1": "You have reflected snowball of $1$&f!" + +"youhaveremovedyourlastratingofthismap": "You have removed your last rating of this map." + +"youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules": "You have to read and agree with the rules of survival to be able to break/place blocks, use &e/survivalrules" + +"youhaveupgraded1to2": "You have upgraded &a$1$ &6to &a$2$&6!" + +"youhaveupgraded1": "You have upgraded &a$1$&6!" + +"youmustbeleaderofapartytousethis": "You must be leader of a party to use this!" + +"yourarmyisunderattack": "Your army is under attack!" + +"youropponentisblindedbyyourperk": "Your opponent is blinded by your perk!" + +"youropponentisignitedbyyourperk": "Your opponent is ignited by your perk!" + +"youropponentisslowedbyyourperk": "Your opponent is slowed by your perk!" + +"yourpartyinviteto1hasexpired": "Your party invite to $1$ &ehas expired." + +"yourpartyleaderhaswarpedyoutotheirlocation": "Your party leader has warped you to their location!" + +"yourradarbreakereffectisover": "Your Radar Breaker effect is over!" + +"yoursnowballhit1": "Your snowball hit $1$&f!" + +"yoursnowballhitboatof1": "Your snowball hit boat of $1$&f!" + +"yoursnowmanssnowballhit1": "Your snowman's snowball hit $1$&f!" + +"yourteam": "YOUR TEAM" + +"1kicked2fromtheparty": "$1$ &ekicked $2$ &efrom the party!" + +"youhavealreadyusedthispowerupinthislife": "You have already used this power-up in this life!" + +"swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo": "Swearing is completely forbidden in our server, you will get an automatically issued punishment if you do." + +"1hastransferredpartyleaderto2": "$1$ &ehas transferred party leader to $2$&e!" + +"1isnotinyourparty": "$1$ &cis not in your party!" + +"price": "Price:" + +"maxlevel": "MAX LEVEL:" + +"current": "Current" + +"next": "Next" + +"maxlevelreached": "Max level reached" + +"superjump": "Super Jump" + +"youcantoggledisplayoftheanimationofftoreduceyourfpslag": "You can toggle display of the animation off to reduce your FPS lag!" + +"fallingblocksanimation": "Falling Blocks Animation" + +"animationiscurrentlyenabled": "Animation is currently &a&lENABLED&e." + +"youcanbuythisitemonlyonceperlife": "You can buy this item only once per life." + +"youhavegainedextralifefromyourimmortalityperk": "You have gained extra life from your &aImmortality Perk&e!" + +"rightclicktoactivategamemodifiers": "Right click to activate game modifiers!" + +"youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow": "You have logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged in a row." + +"locked": "LOCKED" + +"1hasgainedanextralifefromtheirimmortalityperk": "&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!" + +"/msgplayersendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." + +"/statsplayerviewplayersstats": " /stats &2- &aView player's stats." + +"/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." + +"/partyinviteplayertoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." + +"/partyacceptplayertoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." + +"/partykickplayertokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." + +"/partytransferplayertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." + +"/partyjoinplayertojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." + +"ifyouwanttospectateotherplayertype/stpplayer": "If you want to spectate other player type &e/stp " + +"yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit": "Your party is now open for public join! Other players can do &a/p join $1$ &eto join it!" + +"youcansendcarepackagestosupportaliveplayerswith/carepackageplayer": "You can send care packages to support alive players with &e&l/carepackage " + +"enchantedironcannon": "&bEnchanted &7&lIron Cannon" + +"castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers": "Castle Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, Checkers, Bomberman, Elemental Archers" + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even furniture to improve your builds!" diff --git a/LanguageIL.yml b/LanguageIL.yml new file mode 100644 index 0000000..8bc467a --- /dev/null +++ b/LanguageIL.yml @@ -0,0 +1,22 @@ +playercommands: ' &2&l --=-= &a&lPlayer Commands &2&l=-=--' + +/rulesreadserverrules: ' /rules &2- &aRead server rules.' + +/msgsendaprivatemessagetoaplayer: ' /msg &2- &aSend a private message + to a player.' + +/staffviewstafflist: ' /staff &2- &aView staff list.' + +/spectateenterspectatemode: ' /spectate &2- &aEnter spectate mode.' + +/statsviewplayersstats: ' /stats &2- &aView player''s stats.' + +/friendviewfriendcommandshelp: ' /friend &2- &aView friend commands help.' + +/listviewinformationaboutallonlineplayers: ' /list &2- &aView information about + all online players.' + +/partyviewpartyhelp: ' /party &2- &aView party help.' + +/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aGet answers to frequently + asked questions.' diff --git a/LanguageLT.yml b/LanguageLT.yml index e1fe4b0..3597501 100644 --- a/LanguageLT.yml +++ b/LanguageLT.yml @@ -1,967 +1,840 @@ -? '{yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin257=Jūs - gaunate taškus už nužudymus, vienas žaidėjas yra išrinktas būti Juggernaut ir - visi žaidėjai turi kovoti prieš jį, jei jūs nužudote Juggernaut - jūs tampate - Juggernaut. Jūs turite pasiekti tam tikra skaičiu taškų laimėjimui.}' +? "{yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin257=Jūs gaunate taškus už nužudymus, vienas žaidėjas yra išrinktas būti Juggernaut ir visi žaidėjai turi kovoti prieš jį, jei jūs nužudote Juggernaut - jūs tampate Juggernaut. Jūs turite pasiekti tam tikra skaičiu taškų laimėjimui.}" : -/chatpartytotogglepartychat: ' /chat party &2- &aPerjungti grupės chat''ą.' +"/chatpartytotogglepartychat": " /chat party &2- &aPerjungti grupės chat'ą." -/donateviewwaystodonatemoneytoourserver: ' /donate &2- &aView ways to donate money - to our server.' +"/donateviewwaystodonatemoneytoourserver": " /donate &2- &aView ways to donate money to our server." -/facceptacceptfriendrequests: ' /f accept &2-&a Priimti kvietimą į draugus.' +"/groupacceptacceptagroupinvitation": " /group accept &2- &aPriimti kvietimą į grupę." -/faddrequestsomeonetobeyourfriend: ' /f add &2-&a Prašyti žaidėją tapti tavo draugu.' +"/groupchunksbrowseclaimedchunksofagroup": " /group chunks &2- &aPeržiūrėti grupės žemes." -/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aGauti atsakymus į dažnai - užduodamus klausimus.' +"/groupclaimclaimachunktoagroup": " /group claim &2- &aUžimti žemės gabalą grupei." -/fdenydenyfriendrequests: ' /f deny &2-&a Atmesti kvietimą į draugus.' +"/groupcreatecreateagroup": " /group create &2- &aSukurti grupę." -/flistlistallyourcurrentfriends: ' /f list &2-&a Peržiūrėti visus tavo draugus.' +"/groupdemotedemoteaplayerinagroup": " /group demote &2- &aPažeminti žaidėją grupėje." -/fremoveremoveafriend: ' /f remove &2-&a Ištrinti draugą.' +"/groupinfoviewinformationaboutagroup": " /group info &2- &aPeržiūrėti grupės informaciją." -/frequestslistallfriendrequests: ' /f requests &2-&a Peržiūrėti visus kvietimus - į draugus.' +"/groupinviteinviteaplayertoagroup": " /group invite <žaidėjas> &2- &aPakviesti žaidėją į grupę." -/friendviewfriendcommandshelp: ' /friend &2- &aPeržiūrėti draugų komandas.' +"/groupkickkickaplayerfromagroup": " /group kick <žaidėjas> &2- &aIšmesti žaidėją iš grupės." -/fshowsthishelppage: ' /f &2-&a Rodo šį puslapį.' +"/groupleaveleaveagroup": " /group leave &2- &aIšeiti iš grupės." -/groupacceptacceptagroupinvitation: ' /group accept &2- &aPriimti - kvietimą į grupę.' +"/grouplistlistthegroupsyouarein": " /group list &2- &aPeržiūrėti grupių sąrašą kuriose esate." -/groupchunksbrowseclaimedchunksofagroup: ' /group chunks &2- &aPeržiūrėti - grupės žemes.' +"/grouppromotepromoteaplayerinagroup": " /group promote &2- &aPaaukštinti žaidėją grupėje." -/groupclaimclaimachunktoagroup: ' /group claim &2- &aUžimti žemės - gabalą grupei.' +"/groupunclaimunclaimachunk": " /group unclaim &2- &aApleisti žemės gabalą." -/groupcreatecreateagroup: ' /group create &2- &aSukurti grupę.' +"/groupupgradeupgradeagroup": " /group upgrade &2- &aPatobulinti grupę." -/groupdemotedemoteaplayerinagroup: ' /group demote - &2- &aPažeminti žaidėją grupėje.' +"/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join <žaidimas> [lobbypavadinimas] &2- &aKad ateiti į viešą žaidimą su komanda arba privatų žaidimą nurodant pavadinimą." -/groupinfoviewinformationaboutagroup: ' /group info &2- &aPeržiūrėti - grupės informaciją.' +"/listviewinformationaboutallonlineplayers": " /list &2- &aPeržiūrėti informaciją apie prisijungusius žaidėjus." -/groupinviteinviteaplayertoagroup: ' /group invite <žaidėjas> - &2- &aPakviesti žaidėją į grupę.' +"/msgsendaprivatemessagetoaplayer": " /msg <žaidėjas> &2- &aNusiųsti privačią žinutę žaidėjui." -/groupkickkickaplayerfromagroup: ' /group kick <žaidėjas> - &2- &aIšmesti žaidėją iš grupės.' +"/partyaccepttoacceptanpartyinvite": " /party accept &2- &aPriimti pakvietimą į grupę." -/groupleaveleaveagroup: ' /group leave &2- &aIšeiti iš grupės.' +"/partydisbandtodisbandyourparty": " /party disband &2- &aSunaikinti grupę." -/grouplistlistthegroupsyouarein: ' /group list &2- &aPeržiūrėti grupių sąrašą kuriose - esate.' +"/partyinvitetoinviteaplayertoparty": " /party invite &2- &aPakviesti žaidėja į savo grupę." -/grouppromotepromoteaplayerinagroup: ' /group promote - &2- &aPaaukštinti žaidėją grupėje.' +"/partyjointojoinpublicpartyofaplayer": " /party join &2- &aAteiti į viešą grupę." -/groupunclaimunclaimachunk: ' /group unclaim &2- &aApleisti žemės gabalą.' +"/partykicktokickaplayerfromyourparty": " /party kick &2- &aIšmesti žaidėją iš savo grupės." -/groupupgradeupgradeagroup: ' /group upgrade &2- &aPatobulinti grupę.' +"/partyleavetoleaveaparty": " /party leave &2- &aIšeiti iš grupės." -/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname: ' /join - <žaidimas> [lobbypavadinimas] &2- &aKad ateiti į viešą žaidimą su komanda arba - privatų žaidimą nurodant pavadinimą.' +"/partylisttoviewmembersofyourpartylist": " /party list &2- &aPeržiūrėti savo grupės narių sąrašą." -/listviewinformationaboutallonlineplayers: ' /list &2- &aPeržiūrėti informaciją - apie prisijungusius žaidėjus.' +"/partyopentoopenyourpartyforpublicjoin": " /party open &2- &aAtidaryti grupę viešam atėjimui." -/msgsendaprivatemessagetoaplayer: ' /msg <žaidėjas> &2- &aNusiųsti privačią - žinutę žaidėjui.' +"/partytransfertotransferpartyleadertoothermember": " /party transfer <žaidėjas> &2- &aKad perleisti lyderio pareigas kitam žaidėjui." -/partyaccepttoacceptanpartyinvite: ' /party accept &2- &aPriimti - pakvietimą į grupę.' +"/partyviewpartyhelp": " /party &2- &aPeržiūrėti grupių pagalbą." -/partydisbandtodisbandyourparty: ' /party disband &2- &aSunaikinti grupę.' +"/partywarptowarpyourpartymemberstoyourgamelobby": " /party warp &2- &aTeleportuoti savo grupės narius į savo žaidimą." -/partyinvitetoinviteaplayertoparty: ' /party invite &2- &aPakviesti - žaidėja į savo grupę.' +"/rulesreadserverrules": " /rules &2- &aPerskaityti serverio taisykles." -/partyjointojoinpublicpartyofaplayer: ' /party join &2- &aAteiti - į viešą grupę.' +"/spectateenterspectatemode": " /spectate &2- &aĮeiti į stebėjimo rėžimą." -/partykicktokickaplayerfromyourparty: ' /party kick &2- &aIšmesti - žaidėją iš savo grupės.' +"/staffviewstafflist": " /staff &2- &aPeržiūrėti administracijos sąrašą." -/partyleavetoleaveaparty: ' /party leave &2- &aIšeiti iš grupės.' +"/statsviewplayersstats": " /stats <žaidėjas> &2- &aPeržiūrėti žaidėjo statistiką." -/partylisttoviewmembersofyourpartylist: ' /party list &2- &aPeržiūrėti savo grupės - narių sąrašą.' +"1arrowonknockout": "1 strėlė numetus priešininką!" -/partyopentoopenyourpartyforpublicjoin: ' /party open &2- &aAtidaryti grupę viešam - atėjimui.' +"1defeated2": "$1$ &cdefeated &6$2$" -/partytransfertotransferpartyleadertoothermember: ' /party transfer <žaidėjas> - &2- &aKad perleisti lyderio pareigas kitam žaidėjui.' +"1donated1snowballtoyou": "$1$ &edonated &e&l1 &fSnowball &eto you!" -/partyviewpartyhelp: ' /party &2- &aPeržiūrėti grupių pagalbą.' +"1flaghasbeendropped": "$1$ &eflag has been dropped!" -/partywarptowarpyourpartymemberstoyourgamelobby: ' /party warp &2- &aTeleportuoti - savo grupės narius į savo žaidimą.' +"1gotfirstkillofthegame": "&a$1$ &egavo pirmą nužudymą žaidime!" -/rulesreadserverrules: ' /rules &2- &aPerskaityti serverio taisykles.' +"1hascaptured2flag": "$1$ &ehas captured $2$ &eflag!" -/spectateenterspectatemode: ' /spectate &2- &aĮeiti į stebėjimo rėžimą.' +"1hasdisbandedtheparty": "$1$ &esunaikino grupę!" -/staffviewstafflist: ' /staff &2- &aPeržiūrėti administracijos sąrašą.' +"1hasinvitedyouintoaparty": "$1$ &epakvietė tave į savo grupę!" -/statsviewplayersstats: ' /stats <žaidėjas> &2- &aPeržiūrėti žaidėjo statistiką.' +"1hasjoinedyourparty": "$1$ &eprisijungė prie jūsų grupės!" -1arrowonknockout: 1 strėlė numetus priešininką! +"1hasjoined": "$1$ &eatėjo!" -1defeated2: $1$ &cdefeated &6$2$ +"1haslefttheparty": "$1$ &eišėjo iš grupės!" -1donated1snowballtoyou: $1$ &edonated &e&l1 &fSnowball &eto you! +"1hasleft": "$1$ &cpaliko žaidimą!" -1flaghasbeendropped: $1$ &eflag has been dropped! +"1hasnotinvitedyouintoaparty": "$1$ &enėra pakvietęs jūsų į grupę." -1gotfirstkillofthegame: '&a$1$ &egavo pirmą nužudymą žaidime!' +"1haspickedup2flag": "$1$ &ehas picked up $2$ &eflag!" -1hascaptured2flag: $1$ &ehas captured $2$ &eflag! +"1hasreachedthemaxsticklevel": "$1$ &epasiekė maksimalų pagaliuko lygį!" -1hasdisbandedtheparty: $1$ &esunaikino grupę! +"1hasreturned2flag": "$1$ &ehas returned $2$ &eflag!" -1hasinvitedyouintoaparty: $1$ &epakvietė tave į savo grupę! +"1hasvotedfor2map": "$1$ &ebalsuoja už &b&l$2$ &ežemėlapį!" -1hasjoinedyourparty: $1$ &eprisijungė prie jūsų grupės! +"1hasvotedfor2mode": "$1$ &ehas voted for &b&l$2$ &emode!" -1hasjoined: $1$ &eatėjo! +"1hasvotedforbalancedteamsmodifier": "$1$ &ebalsuoja už &b&lBalansuotų Komandų &emodifikatorių!" -1haslefttheparty: $1$ &eišėjo iš grupės! +"1hasvotedfordoublejumpmodifier": "$1$ &ehas voted for &b&lDouble Jump &emodifier!" -1hasleft: $1$ &cpaliko žaidimą! +"1hasvotedforfastsnowballsmodifier": "$1$ &ehas voted for &b&lFast Snowballs &emodifier!" -1hasnotinvitedyouintoaparty: $1$ &enėra pakvietęs jūsų į grupę. +"1hasvotedforinstakillsnowballsmodifier": "$1$ &ebalsuoja už &b&lMomentinio Nžudymo Gniužčių &emodifikatorių!" -1haspickedup2flag: $1$ &ehas picked up $2$ &eflag! +"1hasvotedfornocompassmodifier": "$1$ &ehas voted for &b&lNo Compass &emodifier!" -1hasreachedthemaxsticklevel: $1$ &epasiekė maksimalų pagaliuko lygį! +"1hasvotedforreflectsnowballsmodifier": "$1$ &ebalsuoja už &b&lReflektyvių Gniužčių &emodifikatorių!" -1hasreturned2flag: $1$ &ehas returned $2$ &eflag! +"1isalreadyinyourparty": "$1$ &cis already in your party!" -1hasvotedfor2map: $1$ &ebalsuoja už &b&l$2$ &ežemėlapį! +"1isnotyourfriendadd1tofriendswith/fadd2": "$1$&c is not your friend! Add $1$&c to friends with &e/f add $2$" -1hasvotedfor2mode: $1$ &ehas voted for &b&l$2$ &emode! +"1ofplayersneedstovotetoenable": "$1$ &7žaidėjų turi prabalsuoti kad aktyvuoti" -1hasvotedforbalancedteamsmodifier: $1$ &ebalsuoja už &b&lBalansuotų Komandų &emodifikatorių! +"1teamisfull": "$1$ &ckomanda yra pilna!" -1hasvotedfordoublejumpmodifier: $1$ &ehas voted for &b&lDouble Jump &emodifier! +"accept": "[PRIIMTI]" -1hasvotedforfastsnowballsmodifier: $1$ &ehas voted for &b&lFast Snowballs &emodifier! +"achancetospawncreeperwhereyoursnowballlands": "Galimybė kad atsiras creeper ten kur tavo sniego gniūžtė pataikys." -1hasvotedforinstakillsnowballsmodifier: $1$ &ebalsuoja už &b&lMomentinio Nžudymo Gniužčių - &emodifikatorių! +"activatedmodifiers": "Aktyvūs Modifikatoriai" -1hasvotedfornocompassmodifier: $1$ &ehas voted for &b&lNo Compass &emodifier! +"allowstodoublejumpbypressingthesneakbuttoninmidair": "Allows to double jump by pressing the sneak button in mid-air." -1hasvotedforreflectsnowballsmodifier: $1$ &ebalsuoja už &b&lReflektyvių Gniužčių &emodifikatorių! +"animationiscurrentlydisabled": "Animacija šiuo metu yra &c&lIŠJUNGTA&e." -1isalreadyinyourparty: $1$ &cis already in your party! +"animationiscurrentlyenabled": "Animacija šiuo metu yra &a&lĮJUNGTA&e." -1isnotyourfriendadd1tofriendswith/fadd2: $1$&c is not your friend! Add $1$&c to friends - with &e/f add $2$ +"areyouseriouslygoingintoapartywithyourselfinvitesomeone": "Ar tu rimtai eini į grupę su savimi? Pakviesk ką nors!" -1ofplayersneedstovotetoenable: $1$ &7žaidėjų turi prabalsuoti kad aktyvuoti +"areyousureyouwanttoleavetype/qtoconfirm": "Ar jūs tikrai norite išeiti? Rašykite &e/q &6kad patvirtintumėte." -1teamisfull: $1$ &ckomanda yra pilna! +"armor": "Armor" -accept: '[PRIIMTI]' +"arrowaccuracy": "Strėlių Taiklumas" -achancetospawncreeperwhereyoursnowballlands: Galimybė kad atsiras creeper ten kur - tavo sniego gniūžtė pataikys. +"arrowbonusperk": "Strėlės Priedas" -activatedmodifiers: Aktyvūs Modifikatoriai +"arrowsfired": "Arrows Fired" -allowstodoublejumpbypressingthesneakbuttoninmidair: Allows to double jump by pressing - the sneak button in mid-air. +"arrowsleft": "Strėlių liko" -animationiscurrentlydisabled: Animacija šiuo metu yra &c&lIŠJUNGTA&e. +"asnowmanwhichshootsenemies": "A snowman which shoots enemies!" -animationiscurrentlyenabled: Animacija šiuo metu yra &a&lĮJUNGTA&e. +"averagerating": "Vidutinis Įvertinimas:" -areyouseriouslygoingintoapartywithyourselfinvitesomeone: Ar tu rimtai eini į grupę - su savimi? Pakviesk ką nors! +"balancedteamsmodifier": "Balansuotų Komandų Modifikatorius" -areyousureyouwanttoleavetype/qtoconfirm: Ar jūs tikrai norite išeiti? Rašykite &e/q - &6kad patvirtintumėte. +"becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating": "&7&lDėl per daug žaidimą keičiančių modifikatorių, šis turas nedarys įtakos jūsų reitingui." -armor: Armor +"bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin": "&e&lVadovauk dideliai armijai ir nugalėk visus priešų karalius kad laimėtum!" -arrowaccuracy: Strėlių Taiklumas +"bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports": "Beware of gravity! Always build supports to your mines and buildings with at least 8 blocks of distance between supports." -arrowbonusperk: Strėlės Priedas +"blindnessperk": "Aklumo Priedas" -arrowsfired: Arrows Fired +"blockssnowballs50chancetobreakonfirsthit100onsecondhit": "Blocks snowballs. &e&l50% &7chance to break on first hit, &e&l100% &7on second hit." -arrowsleft: Strėlių liko +"blocks": "blokai" -asnowmanwhichshootsenemies: A snowman which shoots enemies! +"bombsfired": "Bombos iššautos" -averagerating: 'Vidutinis Įvertinimas:' +"bombsplaced": "Bombs placed" -balancedteamsmodifier: Balansuotų Komandų Modifikatorius +"bonussnowballsonknockout": "Sniego gniūžtės išmetus priešininką!" -becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating: '&7&lDėl - per daug žaidimą keičiančių modifikatorių, šis turas nedarys įtakos jūsų reitingui.' +"burningstickperk": "Degančio Pagaliuko Priedas" -bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin: '&e&lVadovauk - dideliai armijai ir nugalėk visus priešų karalius kad laimėtum!' +"burns1oftargetssnowballs": "Burns &e&l$1$ &7of target's snowballs." -bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports: Beware - of gravity! Always build supports to your mines and buildings with at least 8 - blocks of distance between supports. +"burnstargetonhit": "Burns target on hit." -blindnessperk: Aklumo Priedas +"cantfindaplayerbythenameof1": "Žaidėjas vardu '$1$' nerastas." -blockssnowballs50chancetobreakonfirsthit100onsecondhit: Blocks snowballs. &e&l50% - &7chance to break on first hit, &e&l100% &7on second hit. +"cantshootfarbecausesnowballsmeltintheair": "Can't shoot far because snowballs melt in the air." -blocks: blokai +"chanceofcreeperspawn": "galimybė kad atsiras creeper" -bombsfired: Bombos iššautos +"chanceofdoubleexperience": "Galimybė gauti du kartus daugiau patirties" -bombsplaced: Bombs placed +"chanceofdoublemelons": "chance of double melons." -bonussnowballsonknockout: Sniego gniūžtės išmetus priešininką! +"chanceofenchantedsnowballgainafterkill": "chance of &bEnchanted Snowball &7gain after kill." -burningstickperk: Degančio Pagaliuko Priedas +"chanceofreflection": "chance of reflection." -burns1oftargetssnowballs: Burns &e&l$1$ &7of target's snowballs. +"chancetoblindopponentonhit": "Galimybė įtrenkus priešininkui jį apakinti" -burnstargetonhit: Burns target on hit. +"chancetoburnopponentonhit": "Galimybė uždegti priešininką įtrenkus" -cantfindaplayerbythenameof1: Žaidėjas vardu '$1$' nerastas. +"chancetonotlosealife": "Galimybė neprarasti gyvybės" -cantshootfarbecausesnowballsmeltintheair: Can't shoot far because snowballs melt in - the air. +"chancetoslowslowness1opponentonhit": "chance to slow(Slowness $1$) opponent on hit" -chanceofcreeperspawn: galimybė kad atsiras creeper +"chancetoslowslownessiiopponentonhit": "Galimybė sulėtinti(Lėtumas II) priešininką įtrenkus" -chanceofdoubleexperience: Galimybė gauti du kartus daugiau patirties +"checkersinminecraftlikethepopularboardgame": "Šaškės Minecraft'e! Panašu į populiarų stalo žaidimą." -chanceofdoublemelons: chance of double melons. +"checkers": "Šaškės" -chanceofenchantedsnowballgainafterkill: chance of &bEnchanted Snowball &7gain after - kill. +"checkpoint": "Taškas" -chanceofreflection: chance of reflection. +"chestslooted": "Skrynios atidarytos" -chancetoblindopponentonhit: Galimybė įtrenkus priešininkui jį apakinti +"classes": "klases" -chancetoburnopponentonhit: Galimybė uždegti priešininką įtrenkus +"clickheretojoin1": "Spausk čia kad prisijungtum į $1$!" -chancetonotlosealife: Galimybė neprarasti gyvybės +"clicktoacceptthepartyinvite": "Spausk kad priimti kvietimą į grupę!" -chancetoslowslowness1opponentonhit: chance to slow(Slowness $1$) opponent on hit +"clicktobuy": "Spausk kad galėtum nusipirkti!" -chancetoslowslownessiiopponentonhit: Galimybė sulėtinti(Lėtumas II) priešininką įtrenkus +"clicktojoin": "[SPAUSK ČIA]" -checkersinminecraftlikethepopularboardgame: Šaškės Minecraft'e! Panašu į populiarų - stalo žaidimą. +"clicktoopenmenu": "SPAUSK KAD ATIDARYTI MENIŲ" -checkers: Šaškės +"clicktoplay": "SPAUSK KAD ŽAISTI" -checkpoint: Taškas +"clicktoratethismap": "Click to rate this map" -chestslooted: Skrynios atidarytos +"clicktoundothisrating": "Spausk kad anuliuoti šį įvertinimą!" -classes: klases +"clicktovotefor1mode": "Spausk kad balsuoti už $1$ rėžimą!" -clickheretojoin1: Spausk čia kad prisijungtum į $1$! +"clicktovoteforthismap": "Spausk kad balsuoti už šį žemėlapį!" -clicktoacceptthepartyinvite: Spausk kad priimti kvietimą į grupę! +"clicktovoteforthismode": "Spausk kad prabalsuotum už šį tipą!" -clicktobuy: Spausk kad galėtum nusipirkti! +"clicktovoteforthismodifier": "Spausk kad balsuoti už šį modifikatorių!" -clicktojoin: '[SPAUSK ČIA]' +"completeparkourracesearnprizesandcompeteinleaderboards": "Pereik parkour trasas, gauk prizus ir varžykis lyderių lentelėje!" -clicktoopenmenu: SPAUSK KAD ATIDARYTI MENIŲ +"cooldown": "Laiko Tarpas" -clicktoplay: SPAUSK KAD ŽAISTI +"crackedplayerscanjoinourservertheycanapplyat1tojoin": "Cracked players can join our server! They can apply at $1$ &rto join." -clicktoratethismap: Click to rate this map +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps" +: "Kūrybinis pasaulis su daug naudingų galimybių! WorldEdit, VoxelSniper, goBrush, goPaint, didelė žaidėjų galvų kolekcija ir net speciali programavimo kalba su kuria galima kurti savo specialius žemėlapius!" -clicktoundothisrating: Spausk kad anuliuoti šį įvertinimą! +"creeperchanceperk": "Creeper Atsiradimo Priedas" -clicktovotefor1mode: Spausk kad balsuoti už $1$ rėžimą! +"crystal": "Kristalas" -clicktovoteforthismap: Spausk kad balsuoti už šį žemėlapį! +"current": "Dabartinis" -clicktovoteforthismode: Spausk kad prabalsuotum už šį tipą! +"damagedealt": "Žalos Padaryta" -clicktovoteforthismodifier: Spausk kad balsuoti už šį modifikatorių! +"damagetaken": "Žalos Gauta" -completeparkourracesearnprizesandcompeteinleaderboards: Pereik parkour trasas, gauk - prizus ir varžykis lyderių lentelėje! +"day": "Diena" -cooldown: Laiko Tarpas +"deaths": "Mirtys" -crackedplayerscanjoinourservertheycanapplyat1tojoin: Cracked players can join our - server! They can apply at $1$ &rto join. +"defeat": "PRALAIMĖJIMAS" -? creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps -: Kūrybinis pasaulis su daug naudingų galimybių! WorldEdit, VoxelSniper, goBrush, - goPaint, didelė žaidėjų galvų kolekcija ir net speciali programavimo kalba su - kuria galima kurti savo specialius žemėlapius! +"defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander": "Gink savo pilį, pulk kitas pilis, įsakinėk savo armijai ir tapk geriausiu vadu!" -creeperchanceperk: Creeper Atsiradimo Priedas +"destroyingotherplayercreationsorruiningtheminanywayisnotallowed": "Destroying other player creations or ruining them in any way is not allowed!" -crystal: Kristalas +"destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed": "Destroying the good look of terrain by making holes, 1x1 towers and any other way which makes it look bad is not allowed." -current: Dabartinis +"didyouknow": "Did you know?" -damagedealt: Žalos Padaryta +? "differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin" +: "&e&lDifferent elemental classes compete with each other in bow-fighting abilities. Use fasciniting abilities of your class to defeat other players and win!" -damagetaken: Žalos Gauta +"dissappearsafter10soflanding": "Dissappears after &e&l10s &7of landing." -day: Diena +"doubleemeralds": "Dvigubai Smaragdų" -deaths: Mirtys +"doublejumpmodifier": "Double Jump Modifier" -defeat: PRALAIMĖJIMAS +"doublemelonsperk": "Double Melons Perk" -defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander: Gink savo - pilį, pulk kitas pilis, įsakinėk savo armijai ir tapk geriausiu vadu! +"emeraldstotalearned": "Smaragdų viso gauta" -destroyingotherplayercreationsorruiningtheminanywayisnotallowed: Destroying other - player creations or ruining them in any way is not allowed! +"emeralds": "Smaragdai" -destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed: Destroying - the good look of terrain by making holes, 1x1 towers and any other way which makes - it look bad is not allowed. +"emerald": "Smaragdas" -didyouknow: Did you know? +"enchanteddiamondcannon": "&bUžkerėta &b&lDeimantinė Patranka" -? differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin -: '&e&lDifferent elemental classes compete with each other in bow-fighting abilities. - Use fasciniting abilities of your class to defeat other players and win!' +"enchantedsnowballperk": "Enchanted Snowball Perk" -dissappearsafter10soflanding: Dissappears after &e&l10s &7of landing. +"enchantedstonecannon": "&bUžkerėta &7Akmeninė Patranka" -doubleemeralds: Dvigubai Smaragdų +"enchantedwoodcannon": "&bEnchanted &aWood Cannon" -doublejumpmodifier: Double Jump Modifier +"enemyteam": "PRIEŠŲ KOMANDA" -doublemelonsperk: Double Melons Perk +"everyplayergets3liveseliminateenemyteamtowin": "Kiekvienas žaidėjas gauna 3 gyvybės, pašalink priešų komandą kad laimėtum." -emeraldstotalearned: Smaragdų viso gauta +"everyplayergets3liveseliminateotherplayerstowin": "Kiekvienas žaidėjas gauna 3 gyvybės, pašalink kitus žaidėjus kad laimėtum." -emeralds: Smaragdai +"experiencebonusperk": "Patirties Priedas" -emerald: Smaragdas +"explodeyourwaytootherplayersandexplodethem": "Išsprogdink savo kelią iki kitų žaidėjų ir juos susprogdink!" -enchanteddiamondcannon: '&bUžkerėta &b&lDeimantinė Patranka' +"exploringthevoidmayrevealmysterioussecrets": "Exploring the void may reveal mysterious secrets!" -enchantedsnowballperk: Enchanted Snowball Perk +"explosionradius": "Sprogimo Spindulys" -enchantedstonecannon: '&bUžkerėta &7Akmeninė Patranka' +"fallingblocksanimation": "Krentančių Blokų Animacija" -enchantedwoodcannon: '&bEnchanted &aWood Cannon' +"fastsnowballsmodifier": "Fast Snowballs Modifier" -enemyteam: PRIEŠŲ KOMANDA +"feelfreetoinviteotherplayersbyusingthechat": "Galite pasikviesti žaidėjų rašydami chat'e!" -everyplayergets3liveseliminateenemyteamtowin: Kiekvienas žaidėjas gauna 3 gyvybės, - pašalink priešų komandą kad laimėtum. +"finalkills": "Finaliniai Nužudymai" -everyplayergets3liveseliminateotherplayerstowin: Kiekvienas žaidėjas gauna 3 gyvybės, - pašalink kitus žaidėjus kad laimėtum. +"flamethrower": "Flamethrower" -experiencebonusperk: Patirties Priedas +"free": "Free!" -explodeyourwaytootherplayersandexplodethem: Išsprogdink savo kelią iki kitų žaidėjų - ir juos susprogdink! +"friendcommands": " &2&l--=-= &a&lDraugų Komandos &2&l=-=--" -exploringthevoidmayrevealmysterioussecrets: Exploring the void may reveal mysterious - secrets! +"friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore": "Draugiškas išlikimas su technika ir magija! Tirinėk daug dimensijų, augink nuostabius medžius ir dar daugiau!" -explosionradius: Sprogimo Spindulys +"gameendedinadraw": "ŽAIDIMAS BAIGĖSI LYGIOSIOMIS" -fallingblocksanimation: Krentančių Blokų Animacija +"gameend": "GAME END" -fastsnowballsmodifier: Fast Snowballs Modifier +"gamehasstarted": "Žaidimas prasidėjo!" -feelfreetoinviteotherplayersbyusingthechat: Galite pasikviesti žaidėjų rašydami chat'e! +"gameisstarting": "Žaidimas prasideda" -finalkills: Finaliniai Nužudymai +"gamestartsin1seconds": "Žaidimas prasidės už &e&l$1$ &esekundžių" -flamethrower: Flamethrower +"gamestartsin": "Žaidimas prasidės už" -free: Free! +"gamestatistics": "Žaidimo Statistika" -friendcommands: ' &2&l--=-= &a&lDraugų Komandos &2&l=-=--' +"gametime": "Žaidimo laikas" -friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore: Draugiškas - išlikimas su technika ir magija! Tirinėk daug dimensijų, augink nuostabius medžius - ir dar daugiau! +"gamewillendin1minutes": "Žaidimas pasibaigs už &e&l$1$ &eminučių." -gameendedinadraw: ŽAIDIMAS BAIGĖSI LYGIOSIOMIS +"gamewillendin1minute": "Game will end in &e&l$1$ &eminute." -gameend: GAME END +"gamewillstartin1seconds": "&eŽaidimas prasidės už &e&l$1$ &esekundžių" -gamehasstarted: Žaidimas prasidėjo! +"gamewillstartin1second": "&eŽaidimas prasidės už &e&l$1$ &esekundės" -gameisstarting: Žaidimas prasideda +"gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame": "Rink resursus, ruoškis kovai, gink savo Gyvybės Kristalą, atakuok kitus kristalus ir laimėk žaidimą!" -gamestartsin1seconds: Žaidimas prasidės už &e&l$1$ &esekundžių +"gravityhasnoeffectonblocksheresoyoucanbuildinthesky": "Gravity has no effect on blocks here, so you can build in the sky!" -gamestartsin: Žaidimas prasidės už +"groupcommands": " &2&l --=-= &a&lGrupių Komandos &2&l=-=--" -gamestatistics: Žaidimo Statistika +"havefun": "Sėkmės!" -gametime: Žaidimo laikas +"health": "Gyvybės" -gamewillendin1minutes: Žaidimas pasibaigs už &e&l$1$ &eminučių. +"hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends": "Čia jūs galite rasti žaidimus kuriuos galima žaisti ir vienam ir su draugais!" -gamewillendin1minute: Game will end in &e&l$1$ &eminute. +"hereyoucanfindgameswhichcanbeplayedonlywithfriends": "Čia jūs galite rasti žaidimus kuriuos galima žaisti tik su draugais!" -gamewillstartin1seconds: '&eŽaidimas prasidės už &e&l$1$ &esekundžių' +"hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun": "Čia jūs galite rasti mažus GUI minižaidimus, šie minižaidimai ne taip kaip kiti, nėra sukurti mūsų, jie yra tiesiog atsisiųsti, bet jie vistiek yra įdomūs!" -gamewillstartin1second: '&eŽaidimas prasidės už &e&l$1$ &esekundės' +"hereyoucanusevariousabilitiestoexplodethemapandotherplayers": "Čia jūs galite naudoti įvairius ginklus ir su jais sprogdinti žemėlapį, ir kitus žaidėjus!" -gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame: Rink - resursus, ruoškis kovai, gink savo Gyvybės Kristalą, atakuok kitus kristalus ir - laimėk žaidimą! +"hitstaken": "Hits Taken" -gravityhasnoeffectonblocksheresoyoucanbuildinthesky: Gravity has no effect on blocks - here, so you can build in the sky! +"hits": "Smūgiai" -groupcommands: ' &2&l --=-= &a&lGrupių Komandos &2&l=-=--' +"hittolevelupyourstickandknockotherplayersintothevoid": "Trankyk kitus žaidėjus kad pakiltų tavo pagaliuko lygis ir numesk juos į prarają!" -havefun: Sėkmės! +"hours": "valandų" -health: Gyvybės +"howtoplay": "&b&lKaip Žaisti" -hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends: Čia jūs galite rasti žaidimus - kuriuos galima žaisti ir vienam ir su draugais! +"ifyouwanttogetoutofthespectatormodetype/q": "Jei norite išeiti iš &eStebėjimo Režimo &crašykite &e/q" -hereyoucanfindgameswhichcanbeplayedonlywithfriends: Čia jūs galite rasti žaidimus - kuriuos galima žaisti tik su draugais! +"ifyouwanttoleavethegametype/q": "Jei norite išeiti iš žaidimo rašykite &e/q&6." -hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun: Čia - jūs galite rasti mažus GUI minižaidimus, šie minižaidimai ne taip kaip kiti, nėra - sukurti mūsų, jie yra tiesiog atsisiųsti, bet jie vistiek yra įdomūs! +"ifyouwanttospectateotherplayertype/stp": "Jei norite stebėti kitą žaidėją rašykite &e/stp <žaidėjas>" -hereyoucanusevariousabilitiestoexplodethemapandotherplayers: Čia jūs galite naudoti - įvairius ginklus ir su jais sprogdinti žemėlapį, ir kitus žaidėjus! +"immortalityperk": "Nemirtingumo Priedas" -hitstaken: Hits Taken +"increasesthechancetoreflectasnowballto100": "Padidina tikimybę kad sniego gniūžtė atsimuš iki 100%" -hits: Smūgiai +"increasesthedamageofsnowballsto10hearts": "Padidina sniego gniūžčių žalą iki 10 širdučių." -hittolevelupyourstickandknockotherplayersintothevoid: Trankyk kitus žaidėjus kad pakiltų - tavo pagaliuko lygis ir numesk juos į prarają! +"increasesyourspeedby1": "Increases your speed by $1$" -hours: valandų +"instakillsnowballsmodifier": "Momentinio Nužudymo Gniužčių Modifikatorius" -howtoplay: '&b&lKaip Žaisti' +"invalidcode": "Invalid code." -ifyouwanttogetoutofthespectatormodetype/q: Jei norite išeiti iš &eStebėjimo Režimo - &crašykite &e/q +"ironcannon": "&7&lGeležinė Patranka" -ifyouwanttoleavethegametype/q: Jei norite išeiti iš žaidimo rašykite &e/q&6. +"itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater": "It's very hot in Mustafar, you gonna need to drink twice as much water." -ifyouwanttospectateotherplayertype/stp: Jei norite stebėti kitą žaidėją rašykite - &e/stp <žaidėjas> +"jumps": "Šuoliai" -immortalityperk: Nemirtingumo Priedas +"killer": "Killer" -increasesthechancetoreflectasnowballto100: Padidina tikimybę kad sniego gniūžtė atsimuš - iki 100% +"killsanynormalopponentevenwitharmor": "Kills any normal opponent, even with armor." -increasesthedamageofsnowballsto10hearts: Padidina sniego gniūžčių žalą iki 10 širdučių. +"killstreak": "Killstreak" -increasesyourspeedby1: Increases your speed by $1$ +"kills": "Nužudymai" -instakillsnowballsmodifier: Momentinio Nužudymo Gniužčių Modifikatorius +"king": "King" -invalidcode: Invalid code. +"knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback": "&e&lKnock other players off the platform. As you hit players, you deal more knockback." -ironcannon: '&7&lGeležinė Patranka' +"level": "Lygis" -itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater: It's very hot in Mustafar, - you gonna need to drink twice as much water. +"listofgames": "Žaidimų Sąrašas" -jumps: Šuoliai +"lives": "Gyvybės" -killer: Killer +"lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs": "Atidaryk skrynias, kovok su kitais žaidėjais, rask atsitiktinai sugeneruotų daiktų su ypatingomis galiomis ir mėtyk monstrų kiaušinius kaip pokemonus!" -killsanynormalopponentevenwitharmor: Kills any normal opponent, even with armor. +"lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin": "&e&lLoot randomly generated chests with unique items. Use them to eliminate your enemies. Be the only survivor to win." -killstreak: Killstreak +"losses": "Pralamėjimai" -kills: Nužudymai +"makesallofyoursnowballsburn": "Makes all of your snowballs burn." -king: King +"makesyoursnowballssuperfast": "Makes your snowballs super fast." -knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback: '&e&lKnock other - players off the platform. As you hit players, you deal more knockback.' +"maxlevelreached": "Maksimalus lygis pasiektas" -level: Lygis +"maxlevel": "MAKS. LYGIS:" -listofgames: Žaidimų Sąrašas +"melonsearned": "Melons earned" -lives: Gyvybės +"melonsspent": "Melons spent" -lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs: Atidaryk - skrynias, kovok su kitais žaidėjais, rask atsitiktinai sugeneruotų daiktų su ypatingomis - galiomis ir mėtyk monstrų kiaušinius kaip pokemonus! +"melons": "Melionai" -lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin: '&e&lLoot - randomly generated chests with unique items. Use them to eliminate your enemies. - Be the only survivor to win.' +"melon": "Melon" -losses: Pralamėjimai +"mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves": "Kask iškasenas, tobulink kirtiklius, pirk nuostabius patobulinimus ir atrakink naujus urvus!" -makesallofyoursnowballsburn: Makes all of your snowballs burn. +"minutes": "minučių" -makesyoursnowballssuperfast: Makes your snowballs super fast. +"mode": "Rėžimas" -maxlevelreached: Maksimalus lygis pasiektas +"movetimeleft": "Judėjimo laiko liko" -maxlevel: 'MAKS. LYGIS:' +"mustbeatlowerfloor": "Turite būti žemesniame aukšte" -melonsearned: Melons earned +"mustnothaveanysuperjumps": "Privalote neturėti Super Šuolių!" -melonsspent: Melons spent +"newrating": "New Rating" -melons: Melionai +"newrecord": "NEW RECORD!" -melon: Melon +"new": "NEW!" -mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves: Kask iškasenas, tobulink - kirtiklius, pirk nuostabius patobulinimus ir atrakink naujus urvus! +"nextsuperjumpin": "Sekantis Super Šuolis" -minutes: minučių +"next": "Sekantis" -mode: Rėžimas +"night": "Naktis" -movetimeleft: Judėjimo laiko liko +"nocompassmodifier": "No Compass Modifier" -mustbeatlowerfloor: Turite būti žemesniame aukšte +"notenoughmelons": "Not enough melons!" -mustnothaveanysuperjumps: Privalote neturėti Super Šuolių! +"note": "Note:" -newrating: New Rating +"nowblockswillstartbreakingwhenyousteponthem": "Nuo šiol blokai pradės dingti kai jūs užlipsite ant jų!" -newrecord: NEW RECORD! +"oldrecord": "Old Record" -new: NEW! +"parkourcourse": "Parkour Iššūkis" -nextsuperjumpin: Sekantis Super Šuolis +"participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther": "&e&lParticipate in a massive snowball fight and use powerups to ease your existence! Delaying snowballs allows to throw them further." -next: Sekantis +"partycommands": " &2&l --=-= &a&lGrupių Komandos &2&l=-=--" -night: Naktis +"partyinvitefrom1hasexpired": "Grupės pakvietimas iš $1$ &epasibaigė." -nocompassmodifier: No Compass Modifier +"partyleader": "Grupės Lyderis" -notenoughmelons: Not enough melons! +"partymembers": "Grupės Nariai" -note: 'Note:' +"partyof1isnotopenforpublicjoin": "&a$1$ &cgrupė nėra atidaryta viešam atėjimui." -nowblockswillstartbreakingwhenyousteponthem: Nuo šiol blokai pradės dingti kai jūs - užlipsite ant jų! +"placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents": "&e&lPlace bombs and explode blocks around it in a + shape. Use powerups to take advantage over opponents." -oldrecord: Old Record +"playercommands": " &2&l --=-= &a&lŽaidėjų Komandos &2&l=-=--" -parkourcourse: Parkour Iššūkis +"playerdied1timesinarowwithoutkills": "Player died $1$ times in a row without kills" -participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther: '&e&lParticipate - in a massive snowball fight and use powerups to ease your existence! Delaying - snowballs allows to throw them further.' +"playeriswaiting": "Žaidėjas laukia" -partycommands: ' &2&l --=-= &a&lGrupių Komandos &2&l=-=--' +"playernotfound": "Player not found." -partyinvitefrom1hasexpired: Grupės pakvietimas iš $1$ &epasibaigė. +"playersarewaiting": "Žaidėjai Laukia" -partyleader: Grupės Lyderis +"playersin": "Žaidėjai" -partymembers: Grupės Nariai +"playersleft": "Žaidėjų liko" -partyof1isnotopenforpublicjoin: '&a$1$ &cgrupė nėra atidaryta viešam atėjimui.' +"playerswaiting": "Laukiantys Žaidėjai" -placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents: '&e&lPlace - bombs and explode blocks around it in a + shape. Use powerups to take advantage - over opponents.' +"players": "Žaidėjai" -playercommands: ' &2&l --=-= &a&lŽaidėjų Komandos &2&l=-=--' +"playerwason1killstreak": "Player was on $1$ killstreak" -playerdied1timesinarowwithoutkills: Player died $1$ times in a row without kills +"playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes": "Žaisk su daug klasių su skirtingomis galiomis ir naudok savo lanko įgūdžius kad laimėtum skirtinguose žaidimo rėžimuose!" -playeriswaiting: Žaidėjas laukia +"pleaseratethismapbyclicking": "Please rate this map by clicking:" -playernotfound: Player not found. +"pleasespecifygroupname": "Prašome nurodyti grupės pavadinimą!" -playersarewaiting: Žaidėjai Laukia +"pleasespecifyplayername": "Prašome nurodyti žaidėjo vardą!" -playersin: Žaidėjai +"plotname": "Ploto Pavadinimas" -playersleft: Žaidėjų liko +"plotowner": "Ploto Savininkas" -playerswaiting: Laukiantys Žaidėjai +"points": "Taškai" -players: Žaidėjai +"powerups": "Powerups" -playerwason1killstreak: Player was on $1$ killstreak +"price": "Kaina:" -playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes: Žaisk - su daug klasių su skirtingomis galiomis ir naudok savo lanko įgūdžius kad laimėtum - skirtinguose žaidimo rėžimuose! +"quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers": "Greitai išbandyk savo kovojimo įgudžius kovodamas su kitu žaidėju su daug skirtingų modifikatorių!" -pleaseratethismapbyclicking: 'Please rate this map by clicking:' +"radarbreaker": "Radar Breaker" -pleasespecifygroupname: Prašome nurodyti grupės pavadinimą! +"rainisabletorefillwatersources": "Rain is able to refill water sources." -pleasespecifyplayername: Prašome nurodyti žaidėjo vardą! +"rapidfirepoweruphasspawnedatmiddleofthemap": "&6&lRapid Fire &bpowerup has spawned at middle of the map!" -plotname: Ploto Pavadinimas +"rating": "Reitingas" -plotowner: Ploto Savininkas +"reflectionperk": "Reflection Perk" -points: Taškai +"reflectsasnowballreducingdamagetakenby1": "Reflects a snowball, reducing damage taken by $1$." -powerups: Powerups +"reflectsnowballsmodifier": "Reflektyvus Gniužčių Modifikatorius" -price: 'Kaina:' +"regeneratesyourhealth1": "Regenerates your health $1$" -quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers: Greitai išbandyk - savo kovojimo įgudžius kovodamas su kitu žaidėju su daug skirtingų modifikatorių! +"regeneration": "Regeneration" -radarbreaker: Radar Breaker +"removescompassfromthegame": "Removes compass from the game." -rainisabletorefillwatersources: Rain is able to refill water sources. +"resources": "Resursai" -rapidfirepoweruphasspawnedatmiddleofthemap: '&6&lRapid Fire &bpowerup has spawned - at middle of the map!' +"respawningin": "Respawning in" -rating: Reitingas +"serverrulescanbereadin/rulesmakesuretofollowthem": "Serverio taisykles galima perskaityti &a/rules&e, laikykitės jų!" -reflectionperk: Reflection Perk +"shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers": "&e&lShoot chickens and get the most kills to win! Beware: filthy zombies and creepers!" -reflectsasnowballreducingdamagetakenby1: Reflects a snowball, reducing damage taken - by $1$. +"shootchickensasfastasyoucan": "Šaudyk viščiukus taip greitai kaip tik gali!" -reflectsnowballsmodifier: Reflektyvus Gniužčių Modifikatorius +"shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes": "Šaudyk kitus žaidėjus su sniego gniūžtėmis, pirk daiktus su melionais ir išbandyk daug skirtingų žaidimo rėžimų!" -regeneratesyourhealth1: Regenerates your health $1$ +"shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak": "&e&lŠaudyk TNT su savo patranka ir nustumk žaidėjus į prarają, arba susprogdink juos. Gelbėk save nuo pavojų naudodamas Super Šuolius. [Tūpk]" -regeneration: Regeneration +"slowballs": "Slowballs" -removescompassfromthegame: Removes compass from the game. +"slownessionhit": "Slowness I on hit" -resources: Resursai +"slownessperk": "Lėtumo Priedas" -respawningin: Respawning in +"sneaktouse": "Tūpk kad naudoti" -serverrulescanbereadin/rulesmakesuretofollowthem: Serverio taisykles galima perskaityti - &a/rules&e, laikykitės jų! +"snowballaccuracy": "Snowball Accuracy" -shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers: '&e&lShoot chickens - and get the most kills to win! Beware: filthy zombies and creepers!' +"snowballsfired": "Sniego gniūžtės iššautos" -shootchickensasfastasyoucan: Šaudyk viščiukus taip greitai kaip tik gali! +"snowmanperk": "Besmegenio Priedas" -shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes: Šaudyk - kitus žaidėjus su sniego gniūžtėmis, pirk daiktus su melionais ir išbandyk daug - skirtingų žaidimo rėžimų! +"snowman": "Snowman" -shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak: '&e&lŠaudyk - TNT su savo patranka ir nustumk žaidėjus į prarają, arba susprogdink juos. Gelbėk - save nuo pavojų naudodamas Super Šuolius. [Tūpk]' +"sortsteamsbasedonkillscountforfairness": "Išrušiuoja žaidėjus į lygias komandas pagal nužudymų skaičių." -slowballs: Slowballs +"spawnpointswitch": "Spawnpoint Switch" -slownessionhit: Slowness I on hit +"speed": "Greitis" -slownessperk: Lėtumo Priedas +"spleeftntspleentexplodeotherplayersintothevoid": "Spleef + TNT = Spleent! Išsprogdink kitus žaidėjus į prarają!" -sneaktouse: Tūpk kad naudoti +"statistics": "Statistika" -snowballaccuracy: Snowball Accuracy +"stonecannon": "&7Akmėninė Patranka" -snowballsfired: Sniego gniūžtės iššautos +"succesfullysentpartyinviteto1": "Išsiuntei grupės pakvietimą $1$!" -snowmanperk: Besmegenio Priedas +"superjumps": "Super Šuoliai" -snowman: Snowman +"superjump": "Super Šuolis" -sortsteamsbasedonkillscountforfairness: Išrušiuoja žaidėjus į lygias komandas pagal - nužudymų skaičių. +"survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty": "Išlikimas pagal senas Minecraft versijas tarp alpha 1.2 ir beta 1.7.3.||&cĮSPĖJIMAS: &7NOSTALGIJA GARANTUOTA." -spawnpointswitch: Spawnpoint Switch +"survivalrules": "Survival Rules" -speed: Greitis +"team": "Komanda" -spleeftntspleentexplodeotherplayersintothevoid: Spleef + TNT = Spleent! Išsprogdink - kitus žaidėjus į prarają! +"thankyouforratingthismap": "Dėkojame už šio žemėlapio įvertinimą!" -statistics: Statistika +"theknockbackstick": "Smūgio Pagaliukas" -stonecannon: '&7Akmėninė Patranka' +"therearemanyspecialrecipescheckthemoutin/recipes": "There are many special recipes! Check them out in: &e/recipes&r" -succesfullysentpartyinviteto1: Išsiuntei grupės pakvietimą $1$! +"thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1": "There is a custom programming language made for Creative World, with it you can create simple features for your plot! $1$" -superjumps: Super Šuoliai +"thisgamecanbeplayedalone": "&aŠį žaidimą galima žaisti &e&lvienam&a." -superjump: Super Šuolis +"thisgamecanbeplayedwith2players": "Šį žaidimą galima žaisti su &e&l2&a&l+ &ažaidėjais." -survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty: 'Išlikimas - pagal senas Minecraft versijas tarp alpha 1.2 ir beta 1.7.3.||&cĮSPĖJIMAS: &7NOSTALGIJA - GARANTUOTA.' +"thisgamecanbeplayedwithonly2players": "Šį žaidimą galima žaisti tik su &e&l2 &ažaidėjais." -survivalrules: Survival Rules +"thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players": "Šis žaidimas startuoja anksti. Jūs neuždirbsite Smaragdų ir jūsų statistika, pasiekimai nebus skaičiuojami jei šis žaidimas startuos su mažiau nei &e&l$1$ &6žaidėjais." -team: Komanda +"thispowerupisalreadyactive": "This power-up is already active!" -thankyouforratingthismap: Dėkojame už šio žemėlapio įvertinimą! +"thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges": "Šitas 1v1 turas nepasiekė reikiamų reikalavimų laimėjimo apdovanojimui ir reitingo pasikeitimams." -theknockbackstick: Smūgio Pagaliukas +"throwablecobweb": "Throwable Cobweb" -therearemanyspecialrecipescheckthemoutin/recipes: 'There are many special recipes! - Check them out in: &e/recipes&r' +"timeelapsed": "Laiko praleista" -thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1: There - is a custom programming language made for Creative World, with it you can create - simple features for your plot! $1$ +"timesincelastupdate": "Paskutinis atnaujinimas" -thisgamecanbeplayedalone: '&aŠį žaidimą galima žaisti &e&lvienam&a.' +"totalplaytime": "Laiko pražaista" -thisgamecanbeplayedwith2players: Šį žaidimą galima žaisti su &e&l2&a&l+ &ažaidėjais. +"troopsalive": "Kariai gyvi" -thisgamecanbeplayedwithonly2players: Šį žaidimą galima žaisti tik su &e&l2 &ažaidėjais. +"troopskilled": "Kariai nužudyti" -thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players: Šis - žaidimas startuoja anksti. Jūs neuždirbsite Smaragdų ir jūsų statistika, pasiekimai - nebus skaičiuojami jei šis žaidimas startuos su mažiau nei &e&l$1$ &6žaidėjais. +"troopslost": "Kariai prarasti" -thispowerupisalreadyactive: This power-up is already active! +"troops": "Kariai" -thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges: Šitas 1v1 turas - nepasiekė reikiamų reikalavimų laimėjimo apdovanojimui ir reitingo pasikeitimams. +"turnsyoursnowballsintoslowballs": "Turns your snowballs into slowballs." -throwablecobweb: Throwable Cobweb +"turn": "Turas" -timeelapsed: Laiko praleista +"unlocked": "ATRAKINTA" -timesincelastupdate: Paskutinis atnaujinimas +"use/agree1toagreewithsurvivalrules": "Use /agree $1$ to agree with survival rules." -totalplaytime: Laiko pražaista +"usef5highfovtogetabetterviewofthegamefield": "Use F5 + high FOV to get a better view of the game field!" -troopsalive: Kariai gyvi +"utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory": "&e&lIšnaudok pasiruošimo laiką kad gautum kuo daugiau resursų, gink savo Gyvybės Kristalą ir kovok iki pergalės." -troopskilled: Kariai nužudyti +"victory": "PERGALĖ" -troopslost: Kariai prarasti +"votes": "Balsai:" -troops: Kariai +"vote": "[BALSUOTI]" -turnsyoursnowballsintoslowballs: Turns your snowballs into slowballs. +"waitingplayers": "Laukiantys Žaidėjai" -turn: Turas +"waitingqueuestatus": "Laukiama Eilėje" -unlocked: ATRAKINTA +"warped1partymemberstoyourlocation": "Warped &e&l$1$ &eparty members to your location!" -use/agree1toagreewithsurvivalrules: Use /agree $1$ to agree with survival rules. +"waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater": "Water is finite here, so you are going to need to build farms close to big sources of water." -usef5highfovtogetabetterviewofthegamefield: Use F5 + high FOV to get a better view - of the game field! +"winspercentage": "Laimėjimų Procentas" -utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory: '&e&lIšnaudok - pasiruošimo laiką kad gautum kuo daugiau resursų, gink savo Gyvybės Kristalą ir - kovok iki pergalės.' +"wins": "Laimėjimai" -victory: PERGALĖ +"woodcannon": "&aMedinė Patranka" -votes: 'Balsai:' +"youalreadyhavevotedforamap": "You already have voted for a map!" -vote: '[BALSUOTI]' +"youarealreadyinapartyof1": "Jūs jau esate grupėje žaidėjo &a$1$&c!" -waitingplayers: Laukiantys Žaidėjai +"youarealreadyon1team": "Jūs jau esate $1$ &ckomandoje!" -waitingqueuestatus: Laukiama Eilėje +"youareleaderofapartyuse/partydisbandtobeabletodothis": "You are leader of a party, use &e/party disband &cto be able to do this." -warped1partymemberstoyourlocation: Warped &e&l$1$ &eparty members to your location! +"youarenowamemberof1team": "Dabar jūs esate $1$ &ekomandos narys!" -waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater: Water is - finite here, so you are going to need to build farms close to big sources of water. +"youarenowjuggernaut": "You are now Juggernaut!" -winspercentage: Laimėjimų Procentas +"youarentinaparty": "Jūs nesate grupėje!" -wins: Laimėjimai +"youarenttheleaderoftheparty": "Jūs nesate grupės lyderis!" -woodcannon: '&aMedinė Patranka' +"youcanchatonlyonceevery15second": "You can chat only once every 1.5 second!" -youalreadyhavevotedforamap: You already have voted for a map! +"youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor": "You can die from cold during night in &bHoth&r if you do not have leather armor." -youarealreadyinapartyof1: Jūs jau esate grupėje žaidėjo &a$1$&c! +"youcanfindfriendlysurvivalwikiin1": "You can find Friendly Survival wiki in: $1$" -youarealreadyon1team: Jūs jau esate $1$ &ckomandoje! +"youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone": "You can lock your containers and doors with signs, if you want to protect land you can join a group or create one." -youareleaderofapartyuse/partydisbandtobeabletodothis: You are leader of a party, use - &e/party disband &cto be able to do this. +"youcannothavemorethanonesnowmanininventoryatthesametime": "You cannot have more than one &fSnowman &cin inventory at the same time." -youarenowamemberof1team: Dabar jūs esate $1$ &ekomandos narys! +"youcannotpartywarpintothisgame": "You cannot party warp into this game!" -youarenowjuggernaut: You are now Juggernaut! +"youcanonlybuythisingame": "You can only buy this in-game!" -youarentinaparty: Jūs nesate grupėje! +"youcanonlyvotewhentheresenoughplayerstostartthegame": "Jūs galite balsuoti tik tada kai žaidime yra pakankamai žaidėjų." -youarenttheleaderoftheparty: Jūs nesate grupės lyderis! +"youcansendcarepackagestosupportaliveplayerswith/carepackage": "Jūs galite siųsti daiktus kad palaikyti gyvus žaidėjus su &e&l/carepackage <žaidėjas>" -youcanchatonlyonceevery15second: You can chat only once every 1.5 second! +"youcantoggledisplayoftheanimationofftoreduceyourfpslag": "Jūs galite išjungti krentančių blokų animacija kad sumažinti FPS lagą!" -youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor: You can die from cold - during night in &bHoth&r if you do not have leather armor. +"youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions": "You can use &5Dimensional Warp&r to warp to many beautiful and interesting dimensions." -youcanfindfriendlysurvivalwikiin1: 'You can find Friendly Survival wiki in: $1$' +"youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave": "You could not be warped to your party leader's location, because you are in a game. Use &e/q &cto leave." -youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone: You - can lock your containers and doors with signs, if you want to protect land you - can join a group or create one. +"youdonated1snowballto1": "You donated &e&l1 &fSnowball &eto &a$1$&e!" -youcannothavemorethanonesnowmanininventoryatthesametime: You cannot have more than - one &fSnowman &cin inventory at the same time. +"youdonothaveenoughemeralds": "Jūs neturite pakankamai &aSmaragdų&c!" -youcannotpartywarpintothisgame: You cannot party warp into this game! +"youdonothaveenoughmelons": "You do not have enough melons!" -youcanonlybuythisingame: You can only buy this in-game! +"yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin": "Jūs gaunate taškus už užgrobtas vėliavas, jūsų komanda turi pasiekti tam tikrą skaičiu taškų laimėjimui." -youcanonlyvotewhentheresenoughplayerstostartthegame: Jūs galite balsuoti tik tada - kai žaidime yra pakankamai žaidėjų. +? "yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin" +: "You get points for kills, one player is chosen to be juggernaut and then all the players are against them, if you kill the juggernaut - you will become the juggernaut. You need to reach the needed amount of points to win." -youcansendcarepackagestosupportaliveplayerswith/carepackage: Jūs galite siųsti - daiktus kad palaikyti gyvus žaidėjus su &e&l/carepackage <žaidėjas> +"yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin": "Jūs gaunate taškus už nužudymus, jums reikia pasiekti tam tikra skaičiu taškų laimėjimui." -youcantoggledisplayoftheanimationofftoreduceyourfpslag: Jūs galite išjungti krentančių - blokų animacija kad sumažinti FPS lagą! +"yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin": "Jūs gaunate taškus už nužudymus, tavo komandai reikia pasiekti tam tikra skaičiu taškų laimėjimui." -youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions: You can use - &5Dimensional Warp&r to warp to many beautiful and interesting dimensions. +"yougotaenchantedsnowballfromyourkill": "You got a &lEnchanted Snowball &bfrom your kill!" -youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave: You - could not be warped to your party leader's location, because you are in a game. - Use &e/q &cto leave. +"youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay": "You have agreed with the survival rules, follow them and everything will be okay!" -youdonated1snowballto1: You donated &e&l1 &fSnowball &eto &a$1$&e! +"youhavealreadyinvited1intoyourparty": "Jūs jau esate pakvietę $1$ &cį savo grupę!" -youdonothaveenoughemeralds: Jūs neturite pakankamai &aSmaragdų&c! +"youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday": "Jūs jau balsavote už žemėlapį šiandien, paremkite serverį pirkdami &a&lVIP &cjei norite balsuoti neribojamą kiekį kartų per dieną." -youdonothaveenoughmelons: You do not have enough melons! +"youhavealreadyvotedforamode": "Jūs jau balsavote už rėžimą!" -yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin: Jūs gaunate - taškus už užgrobtas vėliavas, jūsų komanda turi pasiekti tam tikrą skaičiu taškų - laimėjimui. +"youhavealreadyvotedforthismodifier": "Jūs jau balsavote už šį modifikatorių!" -? yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin -: You get points for kills, one player is chosen to be juggernaut and then all the - players are against them, if you kill the juggernaut - you will become the juggernaut. - You need to reach the needed amount of points to win. +"youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools": "You have FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint building tools!" -yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin: Jūs gaunate taškus - už nužudymus, jums reikia pasiekti tam tikra skaičiu taškų laimėjimui. +"youhavejoinedpartyof1": "Jūs atėjote į &a$1$ &egrupę!" -yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin: Jūs gaunate - taškus už nužudymus, tavo komandai reikia pasiekti tam tikra skaičiu taškų laimėjimui. +"youhaveleftpartyof1": "Jūs išėjote iš &a$1$ &egrupės!" -yougotaenchantedsnowballfromyourkill: You got a &lEnchanted Snowball &bfrom your kill! +"youhavepurchased1": "You have purchased $1$&6!" -youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay: You have agreed - with the survival rules, follow them and everything will be okay! +"youhavereachedthelimitof1powerupspermatch": "You have reached the limit of &e&l$1$ &cpowerups per match!" -youhavealreadyinvited1intoyourparty: Jūs jau esate pakvietę $1$ &cį savo grupę! +"youhavereachedthelimitofsnowballs": "You have reached the limit of snowballs!" -youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday: Jūs - jau balsavote už žemėlapį šiandien, paremkite serverį pirkdami &a&lVIP &cjei norite - balsuoti neribojamą kiekį kartų per dieną. +"youhavereceivedsnowmanforreachingkillstreakof5": "You have received &fSnowman &efor reaching killstreak of &e&l5&e!" -youhavealreadyvotedforamode: Jūs jau balsavote už rėžimą! +"youhavereflectedsnowballof1": "You have reflected snowball of $1$&f!" -youhavealreadyvotedforthismodifier: Jūs jau balsavote už šį modifikatorių! +"youhaveremovedyourlastratingofthismap": "You have removed your last rating of this map." -youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools: You have - FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint building tools! +"youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules": "You have to read and agree with the rules of survival to be able to break/place blocks, use &e/survivalrules" -youhavejoinedpartyof1: Jūs atėjote į &a$1$ &egrupę! +"youhaveupgraded1to2": "Jūs pagerinote &a$1$ &6į &a$2$&6!" -youhaveleftpartyof1: Jūs išėjote iš &a$1$ &egrupės! +"youhaveupgraded1": "Jūs pagerinote &a$1$&6!" -youhavepurchased1: You have purchased $1$&6! +"youmustbeleaderofapartytousethis": "Jūs turite būti grupės lyderis kad tai naudoti!" -youhavereachedthelimitof1powerupspermatch: You have reached the limit of &e&l$1$ &cpowerups - per match! +"yourarmyisunderattack": "Your army is under attack!" -youhavereachedthelimitofsnowballs: You have reached the limit of snowballs! +"youropponentisblindedbyyourperk": "Jūsų oponentas tapo aklas nuo jūsų priedo!" -youhavereceivedsnowmanforreachingkillstreakof5: You have received &fSnowman &efor - reaching killstreak of &e&l5&e! +"youropponentisignitedbyyourperk": "Jūsų oponentas įsiliepsnojo nuo jūsų priedo!" -youhavereflectedsnowballof1: You have reflected snowball of $1$&f! +"youropponentisslowedbyyourperk": "Jūsų oponentas tapo lėtas nuo jūsų priedo!" -youhaveremovedyourlastratingofthismap: You have removed your last rating of this map. +"yourpartyinviteto1hasexpired": "Tavo grupės pakvietimas $1$ &epasibaigė." -youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules: You - have to read and agree with the rules of survival to be able to break/place blocks, - use &e/survivalrules +"yourpartyleaderhaswarpedyoutotheirlocation": "Your party leader has warped you to their location!" -youhaveupgraded1to2: Jūs pagerinote &a$1$ &6į &a$2$&6! +"yourradarbreakereffectisover": "Your Radar Breaker effect is over!" -youhaveupgraded1: Jūs pagerinote &a$1$&6! +"yoursnowballhit1": "Your snowball hit $1$&f!" -youmustbeleaderofapartytousethis: Jūs turite būti grupės lyderis kad tai naudoti! +"yoursnowballhitboatof1": "Your snowball hit boat of $1$&f!" -yourarmyisunderattack: Your army is under attack! +"yoursnowmanssnowballhit1": "Your snowman's snowball hit $1$&f!" -youropponentisblindedbyyourperk: Jūsų oponentas tapo aklas nuo jūsų priedo! +"yourteam": "TAVO KOMANDA" -youropponentisignitedbyyourperk: Jūsų oponentas įsiliepsnojo nuo jūsų priedo! +"1kicked2fromtheparty": "$1$ &ekicked $2$ &efrom the party!" -youropponentisslowedbyyourperk: Jūsų oponentas tapo lėtas nuo jūsų priedo! +"youhavealreadyusedthispowerupinthislife": "You have already used this power-up in this life!" -yourpartyinviteto1hasexpired: Tavo grupės pakvietimas $1$ &epasibaigė. +"swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo": "Swearing is completely forbidden in our server, you will get an automatically issued punishment if you do." -yourpartyleaderhaswarpedyoutotheirlocation: Your party leader has warped you to their - location! +"1hastransferredpartyleaderto2": "$1$ &ehas transferred party leader to $2$&e!" -yourradarbreakereffectisover: Your Radar Breaker effect is over! +"1isnotinyourparty": "$1$ &cis not in your party!" -yoursnowballhit1: Your snowball hit $1$&f! +"youcanbuythisitemonlyonceperlife": "You can buy this item only once per life." -yoursnowballhitboatof1: Your snowball hit boat of $1$&f! +"youhavegainedextralifefromyourimmortalityperk": "You have gained extra life from your &aImmortality Perk&e!" -yoursnowmanssnowballhit1: Your snowman's snowball hit $1$&f! +"rightclicktoactivategamemodifiers": "Right click to activate game modifiers!" -yourteam: TAVO KOMANDA +"youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow": "You have logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged in a row." -1kicked2fromtheparty: $1$ &ekicked $2$ &efrom the party! +"locked": "LOCKED" -youhavealreadyusedthispowerupinthislife: You have already used this power-up in this - life! +"1hasgainedanextralifefromtheirimmortalityperk": "&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!" -swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo: Swearing - is completely forbidden in our server, you will get an automatically issued punishment - if you do. +"/msgplayersendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." -1hastransferredpartyleaderto2: $1$ &ehas transferred party leader to $2$&e! +"/statsplayerviewplayersstats": " /stats &2- &aView player's stats." -1isnotinyourparty: $1$ &cis not in your party! +"/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." -youcanbuythisitemonlyonceperlife: You can buy this item only once per life. +"/partyinviteplayertoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." -youhavegainedextralifefromyourimmortalityperk: You have gained extra life from your - &aImmortality Perk&e! +"/partyacceptplayertoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." -rightclicktoactivategamemodifiers: Right click to activate game modifiers! +"/partykickplayertokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." -youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow: You have - logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged - in a row. +"/partytransferplayertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." -locked: LOCKED +"/partyjoinplayertojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." -1hasgainedanextralifefromtheirimmortalityperk: '&a$1$ &ehas gained an extra life from - their &aImmortality Perk&e!' +"ifyouwanttospectateotherplayertype/stpplayer": "If you want to spectate other player type &e/stp " + +"yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit": "Your party is now open for public join! Other players can do &a/p join $1$ &eto join it!" + +"youcansendcarepackagestosupportaliveplayerswith/carepackageplayer": "You can send care packages to support alive players with &e&l/carepackage " + +"enchantedironcannon": "&bEnchanted &7&lIron Cannon" + +"castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers": "Castle Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, Checkers, Bomberman, Elemental Archers" + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even furniture to improve your builds!" diff --git a/LanguagePT.yml b/LanguagePT.yml index cfcc879..e88b93c 100644 --- a/LanguagePT.yml +++ b/LanguagePT.yml @@ -1,965 +1,837 @@ -/chatpartytotogglepartychat: ' /chat party &2- &aPara ligar/desligar o chat da party.' +"/chatpartytotogglepartychat": " /chat party &2- &aPara ligar/desligar o chat da party." -/donateviewwaystodonatemoneytoourserver: ' /donate &2- &aView ways to donate money - to our server.' +"/donateviewwaystodonatemoneytoourserver": " /donate &2- &aView ways to donate money to our server." -/facceptacceptfriendrequests: ' /f accept &2-&a Aceitar um pedido de amizade.' +"/groupacceptacceptagroupinvitation": " /group accept &2- &aAceitar um convite." -/faddrequestsomeonetobeyourfriend: ' /f add &2-&a Mandar um pedido de amizade.' +"/groupchunksbrowseclaimedchunksofagroup": " /group chunks &2- &aProcurar chunks pertencentes ao grupo." -/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aVer respostas de preguntas - frquesntes (FAQ)' +"/groupclaimclaimachunktoagroup": " /group claim &2- &aObter uma chunk para o grupo." -/fdenydenyfriendrequests: ' /f deny &2-&a Rejeitar um pedido de amizado.' +"/groupcreatecreateagroup": " /group create &2- &aCriar um grupo." -/flistlistallyourcurrentfriends: ' /f list &2-&a Ver todos os seus amigos.' +"/groupdemotedemoteaplayerinagroup": " /group demote &2- &aRebaixar um jogador no grupo." -/fremoveremoveafriend: ' /f remove &2-&a Remover um amigo.' +"/groupinfoviewinformationaboutagroup": " /group info &2- &aVer informação de um grupo." -/frequestslistallfriendrequests: ' /f requests &2-&a Ver todos os pedidos de amizade - pendentes.' +"/groupinviteinviteaplayertoagroup": " /group invite &2- &aEnviar convite a um jogador." -/friendviewfriendcommandshelp: ' /friend &2- &aComandos de amigo.' +"/groupkickkickaplayerfromagroup": " /group kick &2- &aKickar um jogador do grupo." -/fshowsthishelppage: ' /f &2-&a Apresenta está mensagem.' +"/groupleaveleaveagroup": " /group leave &2- &aSair de um grupo." -/groupacceptacceptagroupinvitation: ' /group accept &2- &aAceitar - um convite.' +"/grouplistlistthegroupsyouarein": " /group list &2- &aVer os grupos que você fáz parte" -/groupchunksbrowseclaimedchunksofagroup: ' /group chunks &2- &aProcurar - chunks pertencentes ao grupo.' +"/grouppromotepromoteaplayerinagroup": " /group promote &2- &aPromover um jogador no grupo." -/groupclaimclaimachunktoagroup: ' /group claim &2- &aObter uma chunk - para o grupo.' +"/groupunclaimunclaimachunk": " /group unclaim &2- &aAbandonar uma chunk." -/groupcreatecreateagroup: ' /group create &2- &aCriar um grupo.' +"/groupupgradeupgradeagroup": " /group upgrade &2- &aMelhorar o grupo." -/groupdemotedemoteaplayerinagroup: ' /group demote - &2- &aRebaixar um jogador no grupo.' +"/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [nomedolobby] &2- &aPara se juntar a um jogo publico em um lobby especifico" -/groupinfoviewinformationaboutagroup: ' /group info &2- &aVer informação - de um grupo.' +"/listviewinformationaboutallonlineplayers": " /list &2- &aVer informação sobre todos os jogadores online" -/groupinviteinviteaplayertoagroup: ' /group invite - &2- &aEnviar convite a um jogador.' +"/msgsendaprivatemessagetoaplayer": " /msg &2- &aMandar uma mensagem privada a um jogador." -/groupkickkickaplayerfromagroup: ' /group kick - &2- &aKickar um jogador do grupo.' +"/partyaccepttoacceptanpartyinvite": " /party accept &2- &aAceitar um convite." -/groupleaveleaveagroup: ' /group leave &2- &aSair de um grupo.' +"/partydisbandtodisbandyourparty": " /party disband &2- &aExcluir a party." -/grouplistlistthegroupsyouarein: ' /group list &2- &aVer os grupos que você fáz - parte' +"/partyinvitetoinviteaplayertoparty": " /party invite &2- &aConvide um jogador." -/grouppromotepromoteaplayerinagroup: ' /group promote - &2- &aPromover um jogador no grupo.' +"/partyjointojoinpublicpartyofaplayer": " /party join &2- &aEntre em uma party." -/groupunclaimunclaimachunk: ' /group unclaim &2- &aAbandonar uma chunk.' +"/partykicktokickaplayerfromyourparty": " /party kick &2- &aPara kickar um jogador na sua party." -/groupupgradeupgradeagroup: ' /group upgrade &2- &aMelhorar o grupo.' +"/partyleavetoleaveaparty": " /party leave &2- &aSair da party." -/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname: ' /join - [nomedolobby] &2- &aPara se juntar a um jogo publico em um lobby especifico' +"/partylisttoviewmembersofyourpartylist": " /party list &2- &aVer jogadores na sua party." -/listviewinformationaboutallonlineplayers: ' /list &2- &aVer informação sobre todos - os jogadores online' +"/partyopentoopenyourpartyforpublicjoin": " /party open &2- &aPermita qualquer um entrar na party." -/msgsendaprivatemessagetoaplayer: ' /msg &2- &aMandar uma mensagem - privada a um jogador.' +"/partytransfertotransferpartyleadertoothermember": " /party transfer &2- &aDar a liderança da sua party para alguém" -/partyaccepttoacceptanpartyinvite: ' /party accept &2- &aAceitar - um convite.' +"/partyviewpartyhelp": " /party &2- &aVer ajuda de Party." -/partydisbandtodisbandyourparty: ' /party disband &2- &aExcluir a party.' +"/partywarptowarpyourpartymemberstoyourgamelobby": " /party warp &2- &aPara trazer seus membros na party até o seu lobby" -/partyinvitetoinviteaplayertoparty: ' /party invite &2- &aConvide - um jogador.' +"/rulesreadserverrules": " /rules &2- &aLer as regras do servidor." -/partyjointojoinpublicpartyofaplayer: ' /party join &2- &aEntre - em uma party.' +"/spectateenterspectatemode": " /spectate &2- &aIr no modo espectador." -/partykicktokickaplayerfromyourparty: ' /party kick &2- &aPara - kickar um jogador na sua party.' +"/staffviewstafflist": " /staff &2- &aVer a lista da STAFF" -/partyleavetoleaveaparty: ' /party leave &2- &aSair da party.' +"/statsviewplayersstats": " /stats &2- &aVer estatisticas de um jogador" -/partylisttoviewmembersofyourpartylist: ' /party list &2- &aVer jogadores na sua - party.' +"1arrowonknockout": "1 felcha no knockout!" -/partyopentoopenyourpartyforpublicjoin: ' /party open &2- &aPermita qualquer um - entrar na party.' +"1defeated2": "$1$ &cderrotou &6$2$" -/partytransfertotransferpartyleadertoothermember: ' /party transfer - &2- &aDar a liderança da sua party para alguém' +"1donated1snowballtoyou": "$1$ &edoou &e&l1 &fSnowball &ea você!" -/partyviewpartyhelp: ' /party &2- &aVer ajuda de Party.' +"1flaghasbeendropped": "bandeira $1$ &efoi dropada!" -/partywarptowarpyourpartymemberstoyourgamelobby: ' /party warp &2- &aPara trazer - seus membros na party até o seu lobby' +"1gotfirstkillofthegame": "&a$1$ &eobteve a primeira kill do jogo!" -/rulesreadserverrules: ' /rules &2- &aLer as regras do servidor.' +"1hascaptured2flag": "$1$ &ecapturou a bandeira $2$ &e!" -/spectateenterspectatemode: ' /spectate &2- &aIr no modo espectador.' +"1hasdisbandedtheparty": "$1$ &eexcluiu a party!" -/staffviewstafflist: ' /staff &2- &aVer a lista da STAFF' +"1hasinvitedyouintoaparty": "$1$ &econvidou você para uma party!" -/statsviewplayersstats: ' /stats &2- &aVer estatisticas de um - jogador' +"1hasjoinedyourparty": "$1$ &ejuntou-se á party!" -1arrowonknockout: 1 felcha no knockout! +"1hasjoined": "$1$ &eentrou!" -1defeated2: $1$ &cderrotou &6$2$ +"1haslefttheparty": "$1$ &esaiu da party!" -1donated1snowballtoyou: $1$ &edoou &e&l1 &fSnowball &ea você! +"1hasleft": "$1$ &csaiu!" -1flaghasbeendropped: bandeira $1$ &efoi dropada! +"1hasnotinvitedyouintoaparty": "$1$ &enão lhe convidou para uma party!" -1gotfirstkillofthegame: '&a$1$ &eobteve a primeira kill do jogo!' +"1haspickedup2flag": "$1$ &epegou a bandeira $2$ &e!" -1hascaptured2flag: $1$ &ecapturou a bandeira $2$ &e! +"1hasreachedthemaxsticklevel": "$1$ &echegou ao nivel máximo de graveto!" -1hasdisbandedtheparty: $1$ &eexcluiu a party! +"1hasreturned2flag": "$1$ &eretornou a bandeira $2$ &e!" -1hasinvitedyouintoaparty: $1$ &econvidou você para uma party! +"1hasvotedfor2map": "$1$ &evotou no mapa: &b&l$2$&e!" -1hasjoinedyourparty: $1$ &ejuntou-se á party! +"1hasvotedfor2mode": "$1$ &evotou para o modo &b&l$2$ &e!" -1hasjoined: $1$ &eentrou! +"1hasvotedforbalancedteamsmodifier": "$1$ &evotou para a modificação: &b&lEquipas Balanceadas&e" -1haslefttheparty: $1$ &esaiu da party! +"1hasvotedfordoublejumpmodifier": "$1$ &evotou para &b&lDouble Jump &emodifier!" -1hasleft: $1$ &csaiu! +"1hasvotedforfastsnowballsmodifier": "$1$ &evotou para modificação: &b&lBolas de Neve Rápidas&e!" -1hasnotinvitedyouintoaparty: $1$ &enão lhe convidou para uma party! +"1hasvotedforinstakillsnowballsmodifier": "$1$ &evotou para a modificação: &b&lBolas de neve Insta Kill!!" -1haspickedup2flag: $1$ &epegou a bandeira $2$ &e! +"1hasvotedfornocompassmodifier": "$1$ &evotou para modificação: &bSem bússula&e!" -1hasreachedthemaxsticklevel: $1$ &echegou ao nivel máximo de graveto! +"1hasvotedforreflectsnowballsmodifier": "$1$ &evotou para a modificação: &b&lBolas de Neve reflectoras!!" -1hasreturned2flag: $1$ &eretornou a bandeira $2$ &e! +"1isalreadyinyourparty": "$1$ &cjá está na sua party!" -1hasvotedfor2map: '$1$ &evotou no mapa: &b&l$2$&e!' +"1isnotyourfriendadd1tofriendswith/fadd2": "$1$&c is not your friend! Add $1$&c to friends with &e/f add $2$" -1hasvotedfor2mode: $1$ &evotou para o modo &b&l$2$ &e! +"1ofplayersneedstovotetoenable": "$1$ &7jogadores precisam votar pata ativar" -1hasvotedforbalancedteamsmodifier: '$1$ &evotou para a modificação: &b&lEquipas Balanceadas&e' +"1teamisfull": "equipa $1$ &c está cheia!" -1hasvotedfordoublejumpmodifier: $1$ &evotou para &b&lDouble Jump &emodifier! +"accept": "[ACEITAR]" -1hasvotedforfastsnowballsmodifier: '$1$ &evotou para modificação: &b&lBolas de Neve - Rápidas&e!' +"achancetospawncreeperwhereyoursnowballlands": "Uma chance de spawnar um creeper onde a sua bola de neve cair." -1hasvotedforinstakillsnowballsmodifier: '$1$ &evotou para a modificação: &b&lBolas - de neve Insta Kill!!' +"activatedmodifiers": "Modificações Ativadas" -1hasvotedfornocompassmodifier: '$1$ &evotou para modificação: &bSem bússula&e!' +"allowstodoublejumpbypressingthesneakbuttoninmidair": "Habilita salto duplo apertando Shift no meio do AR." -1hasvotedforreflectsnowballsmodifier: '$1$ &evotou para a modificação: &b&lBolas de - Neve reflectoras!!' +"animationiscurrentlydisabled": "Animação está &c&lDESATIVADA&e." -1isalreadyinyourparty: $1$ &cjá está na sua party! +"animationiscurrentlyenabled": "Animação está &a&lATIVADA&e." -1isnotyourfriendadd1tofriendswith/fadd2: $1$&c is not your friend! Add $1$&c to friends - with &e/f add $2$ +"areyouseriouslygoingintoapartywithyourselfinvitesomeone": "Não faça party com você mesmo! Convide alguém!" -1ofplayersneedstovotetoenable: $1$ &7jogadores precisam votar pata ativar +"areyousureyouwanttoleavetype/qtoconfirm": "Tens a certeza que queres sair? Escreve &e/q &6para confirmares." -1teamisfull: equipa $1$ &c está cheia! +"armor": "Armadura" -accept: '[ACEITAR]' +"arrowaccuracy": "Acerto de Flecha" -achancetospawncreeperwhereyoursnowballlands: Uma chance de spawnar um creeper onde - a sua bola de neve cair. +"arrowbonusperk": "Perk de Arco Bonus" -activatedmodifiers: Modificações Ativadas +"arrowsfired": "Flechas Jogadas" -allowstodoublejumpbypressingthesneakbuttoninmidair: Habilita salto duplo apertando - Shift no meio do AR. +"arrowsleft": "Flechas restantes" -animationiscurrentlydisabled: Animação está &c&lDESATIVADA&e. +"asnowmanwhichshootsenemies": "Um boneco de neve que dispara nos inimigos!" -animationiscurrentlyenabled: Animação está &a&lATIVADA&e. +"averagerating": "Media de Avaliação:" -areyouseriouslygoingintoapartywithyourselfinvitesomeone: Não faça party com você mesmo! - Convide alguém! +"balancedteamsmodifier": "Modificação de Equipas Balanceadas" -areyousureyouwanttoleavetype/qtoconfirm: Tens a certeza que queres sair? Escreve &e/q - &6para confirmares. +"becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating": "&7&lDevido a muitas modificações ativadas esta partida não vai mudar a sua avaliação." -armor: Armadura +"bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin": "&e&lSeja o comandante de um exercito! Derrote os comandantes adeversários para vencer" -arrowaccuracy: Acerto de Flecha +"bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports": "Cuidade com a gravidade! Constroi sempre suportes nas tuas minas e certefica-te que os suportos teem 8 blocos de distância." -arrowbonusperk: Perk de Arco Bonus +"blindnessperk": "Perk de Cegueira" -arrowsfired: Flechas Jogadas +"blockssnowballs50chancetobreakonfirsthit100onsecondhit": "Bloqueia bolas de neve. &e&l50% &7chance de partir-se no primeiro hit, &e&l100% &7no segundo hit." -arrowsleft: Flechas restantes +"blocks": "blocos" -asnowmanwhichshootsenemies: Um boneco de neve que dispara nos inimigos! +"bombsfired": "Bombas jogadas" -averagerating: 'Media de Avaliação:' +"bombsplaced": "Bombas colocados" -balancedteamsmodifier: Modificação de Equipas Balanceadas +"bonussnowballsonknockout": "Bolas de neve BONUS ao knockout" -becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating: '&7&lDevido - a muitas modificações ativadas esta partida não vai mudar a sua avaliação.' +"burningstickperk": "Park de graveto queimando" -bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin: '&e&lSeja o - comandante de um exercito! Derrote os comandantes adeversários para vencer' +"burns1oftargetssnowballs": "Queima &e&l$1$ &7das bolas de neve do adversário." -bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports: Cuidade - com a gravidade! Constroi sempre suportes nas tuas minas e certefica-te que os - suportos teem 8 blocos de distância. +"burnstargetonhit": "Queima o adversário ao bater." -blindnessperk: Perk de Cegueira +"cantfindaplayerbythenameof1": "Não foi possivel encontrar ninguém com o nome '$1$'." -blockssnowballs50chancetobreakonfirsthit100onsecondhit: Bloqueia bolas de neve. &e&l50% - &7chance de partir-se no primeiro hit, &e&l100% &7no segundo hit. +"cantshootfarbecausesnowballsmeltintheair": "Não podes disparar porque as bolas de neve foram jogadas no céu" -blocks: blocos +"chanceofcreeperspawn": "chance de spawnar creeper" -bombsfired: Bombas jogadas +"chanceofdoubleexperience": "chance de experiencia dupla" -bombsplaced: Bombas colocados +"chanceofdoublemelons": "chance de melões duplos" -bonussnowballsonknockout: Bolas de neve BONUS ao knockout +"chanceofenchantedsnowballgainafterkill": "chance of &bEnchanted Snowball &7gain after" -burningstickperk: Park de graveto queimando +"chanceofreflection": "chance de reflecção" -burns1oftargetssnowballs: Queima &e&l$1$ &7das bolas de neve do adversário. +"chancetoblindopponentonhit": "Chance de deixar o jogador cego ao bater." -burnstargetonhit: Queima o adversário ao bater. +"chancetoburnopponentonhit": "Chance de queimar um jogador ao bater nele." -cantfindaplayerbythenameof1: Não foi possivel encontrar ninguém com o nome '$1$'. +"chancetonotlosealife": "Chance de não perder uma vida" -cantshootfarbecausesnowballsmeltintheair: Não podes disparar porque as bolas de neve - foram jogadas no céu +"chancetoslowslowness1opponentonhit": "chance para dar lentidão(Lentidão $1$) no adversário ao bater" -chanceofcreeperspawn: chance de spawnar creeper +"chancetoslowslownessiiopponentonhit": "Chance de dar lentidão(Lentidão II) ao jogador ao bater nele." -chanceofdoubleexperience: chance de experiencia dupla +"checkersinminecraftlikethepopularboardgame": "Damas no Minecraft! Igualzinho ao jogo popular!" -chanceofdoublemelons: chance de melões duplos +"checkers": "Damas" -chanceofenchantedsnowballgainafterkill: chance of &bEnchanted Snowball &7gain after +"checkpoint": "Checkpoint" -chanceofreflection: chance de reflecção +"chestslooted": "Baús abertos" -chancetoblindopponentonhit: Chance de deixar o jogador cego ao bater. +"classes": "classes" -chancetoburnopponentonhit: Chance de queimar um jogador ao bater nele. +"clickheretojoin1": "Clique para entrar $1$!" -chancetonotlosealife: Chance de não perder uma vida +"clicktoacceptthepartyinvite": "Clique para aceitar!" -chancetoslowslowness1opponentonhit: chance para dar lentidão(Lentidão $1$) no adversário - ao bater +"clicktobuy": "Clique para comprar!" -chancetoslowslownessiiopponentonhit: Chance de dar lentidão(Lentidão II) ao jogador - ao bater nele. +"clicktojoin": "[CLIQUE PARA ENTRAR]" -checkersinminecraftlikethepopularboardgame: Damas no Minecraft! Igualzinho ao jogo - popular! +"clicktoopenmenu": "CLIQUE PARA ABRIR O MENU" -checkers: Damas +"clicktoplay": "CLICA PARA JOGAR" -checkpoint: Checkpoint +"clicktoratethismap": "Clica para avaliar o mapa" -chestslooted: Baús abertos +"clicktoundothisrating": "Clique para retirares a tua avaliação" -classes: classes +"clicktovotefor1mode": "Clica para votar no modo $1$&a!" -clickheretojoin1: Clique para entrar $1$! +"clicktovoteforthismap": "Clique para votar neste mapa!" -clicktoacceptthepartyinvite: Clique para aceitar! +"clicktovoteforthismode": "Clique para votar messe modo!" -clicktobuy: Clique para comprar! +"clicktovoteforthismodifier": "Clica para votares nesta modificação!" -clicktojoin: '[CLIQUE PARA ENTRAR]' +"completeparkourracesearnprizesandcompeteinleaderboards": "Faz corridas de parkour, ganha prémios e suba seu rank nas scoreboards!" -clicktoopenmenu: CLIQUE PARA ABRIR O MENU +"cooldown": "Cooldown" -clicktoplay: CLICA PARA JOGAR +"crackedplayerscanjoinourservertheycanapplyat1tojoin": "Jogadores com minecraft pirata também podem se juntar ao nosso servidor! Eles podem aplicar para entrar em $1$ &r." -clicktoratethismap: Clica para avaliar o mapa +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps" +: "O mundo criativo tem várias coisas! WorldEdit, VoxelSniper, goBrush, goPaint, uma grande coleção de cabeças e até uma linguagem de programação customizada para fazeres os teus mapas!" -clicktoundothisrating: Clique para retirares a tua avaliação +"creeperchanceperk": "Perk Chance de Creeper" -clicktovotefor1mode: Clica para votar no modo $1$&a! +"crystal": "Cristal" -clicktovoteforthismap: Clique para votar neste mapa! +"current": "Atual" -clicktovoteforthismode: Clique para votar messe modo! +"damagedealt": "Dano Causado" -clicktovoteforthismodifier: Clica para votares nesta modificação! +"damagetaken": "Dano Obtido" -completeparkourracesearnprizesandcompeteinleaderboards: Faz corridas de parkour, ganha - prémios e suba seu rank nas scoreboards! +"day": "Dia" -cooldown: Cooldown +"deaths": "Mortes" -crackedplayerscanjoinourservertheycanapplyat1tojoin: Jogadores com minecraft pirata - também podem se juntar ao nosso servidor! Eles podem aplicar para entrar em $1$ - &r. +"defeat": "DERROTA" -? creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps -: O mundo criativo tem várias coisas! WorldEdit, VoxelSniper, goBrush, goPaint, uma - grande coleção de cabeças e até uma linguagem de programação customizada para - fazeres os teus mapas! +"defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander": "Defenda o seu castelo, ataque outros castelos, seja o melhor comandante!" -creeperchanceperk: Perk Chance de Creeper +"destroyingotherplayercreationsorruiningtheminanywayisnotallowed": "Destruir cirações de outros jogadores não é permitido!" -crystal: Cristal +"destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed": "Destruir o terreno fazendo torres ou colocando blocos atoa não é permitido!" -current: Atual +"didyouknow": "Did you know?" -damagedealt: Dano Causado +? "differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin" +: "&e&lClasses elementais diferentes competem umas com as outros em uma batalha. Usa habilidades fascinantes para derrotares os teus adversários e ganhares!" -damagetaken: Dano Obtido +"dissappearsafter10soflanding": "Desaparece depois de &e&l10s &7vezes jogadas." -day: Dia +"doubleemeralds": "Esmeraldas Duplas" -deaths: Mortes +"doublejumpmodifier": "Modificação de Salto duplo" -defeat: DERROTA +"doublemelonsperk": "Perk de Melões duplos" -defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander: Defenda - o seu castelo, ataque outros castelos, seja o melhor comandante! +"emeraldstotalearned": "Total de esmeraldas obtidas" -destroyingotherplayercreationsorruiningtheminanywayisnotallowed: Destruir cirações - de outros jogadores não é permitido! +"emeralds": "Esmeraldas" -destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed: Destruir - o terreno fazendo torres ou colocando blocos atoa não é permitido! +"emerald": "Esmeralda" -didyouknow: Did you know? +"enchanteddiamondcannon": "&b&lCanhão de Diamante&b encantado" -? differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin -: '&e&lClasses elementais diferentes competem umas com as outros em uma batalha. Usa - habilidades fascinantes para derrotares os teus adversários e ganhares!' +"enchantedsnowballperk": "Perk de Bola de neve Encantada" -dissappearsafter10soflanding: Desaparece depois de &e&l10s &7vezes jogadas. +"enchantedstonecannon": "&7Canhão de Pedra&b Encantado" -doubleemeralds: Esmeraldas Duplas +"enchantedwoodcannon": "Canhão de Madeira Encantado" -doublejumpmodifier: Modificação de Salto duplo +"enemyteam": "A EQUIPA ADVERSÁRIA" -doublemelonsperk: Perk de Melões duplos +"everyplayergets3liveseliminateenemyteamtowin": "Todo jogador ganha 3 vidas, elimina a equipe inimiga para ganhar!" -emeraldstotalearned: Total de esmeraldas obtidas +"everyplayergets3liveseliminateotherplayerstowin": "Todo jogador ganha 3 vidas, elimine os outros jogadores para ganhar!" -emeralds: Esmeraldas +"experiencebonusperk": "Perk de Bonus de Experiencia" -emerald: Esmeralda +"explodeyourwaytootherplayersandexplodethem": "Exploda para o seu lado e expluda os jogadores lá!" -enchanteddiamondcannon: '&b&lCanhão de Diamante&b encantado' +"exploringthevoidmayrevealmysterioussecrets": "Explora o void e podes descubrir segredos misteriosos!" -enchantedsnowballperk: Perk de Bola de neve Encantada +"explosionradius": "Raio de explosão" -enchantedstonecannon: '&7Canhão de Pedra&b Encantado' +"fallingblocksanimation": "Animação Blocos Caindo" -enchantedwoodcannon: Canhão de Madeira Encantado +"fastsnowballsmodifier": "Modificação de Bolas de Neve Rápidas" -enemyteam: A EQUIPA ADVERSÁRIA +"feelfreetoinviteotherplayersbyusingthechat": "Sinta-se á vontade para convidar jogadores pelo chat!" -everyplayergets3liveseliminateenemyteamtowin: Todo jogador ganha 3 vidas, elimina - a equipe inimiga para ganhar! +"finalkills": "Abates Finais" -everyplayergets3liveseliminateotherplayerstowin: Todo jogador ganha 3 vidas, elimine - os outros jogadores para ganhar! +"flamethrower": "Lança-Chamas" -experiencebonusperk: Perk de Bonus de Experiencia +"free": "Gratis!" -explodeyourwaytootherplayersandexplodethem: Exploda para o seu lado e expluda os jogadores - lá! +"friendcommands": " &2&l--=-= &a&lComandos de Amigo &2&l=-=--" -exploringthevoidmayrevealmysterioussecrets: Explora o void e podes descubrir segredos - misteriosos! +"friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore": "Survival mágico e tecnológico! Explora várias dimensões!" -explosionradius: Raio de explosão +"gameendedinadraw": "JOGO ACABOU EM UM EMPATE" -fallingblocksanimation: Animação Blocos Caindo +"gameend": "FIM DE JOGO" -fastsnowballsmodifier: Modificação de Bolas de Neve Rápidas +"gamehasstarted": "Jogo iniciou!" -feelfreetoinviteotherplayersbyusingthechat: Sinta-se á vontade para convidar jogadores - pelo chat! +"gameisstarting": "Jogo está a iniciar" -finalkills: Abates Finais +"gamestartsin1seconds": "Jogo inicia em &e&l$1$ &esegundos" -flamethrower: Lança-Chamas +"gamestartsin": "Jogo começa em" -free: Gratis! +"gamestatistics": "Estatisticas do Jogo" -friendcommands: ' &2&l--=-= &a&lComandos de Amigo &2&l=-=--' +"gametime": "Tempo do jogo" -friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore: Survival - mágico e tecnológico! Explora várias dimensões! +"gamewillendin1minutes": "Jogo acabará em &e&l$1$ &eminutos." -gameendedinadraw: JOGO ACABOU EM UM EMPATE +"gamewillendin1minute": "Jogo acabará em &e&l$1$ &eminuto." -gameend: FIM DE JOGO +"gamewillstartin1seconds": "&eJogo inicia em &e&l$1$ &esegundos" -gamehasstarted: Jogo iniciou! +"gamewillstartin1second": "&eJogo inicia em &e&l$1$ &esegundo" -gameisstarting: Jogo está a iniciar +"gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame": "Obtem recursos, prepara para a batalha, defende o teu Cristal da Vida e ataca o Cristal de outras ilhas!" -gamestartsin1seconds: Jogo inicia em &e&l$1$ &esegundos +"gravityhasnoeffectonblocksheresoyoucanbuildinthesky": "Gravidade não tem efeito nos blocos aqui, então podes construir no céu!" -gamestartsin: Jogo começa em +"groupcommands": " &2&l --=-= &a&lComandos de Grupo &2&l=-=--" -gamestatistics: Estatisticas do Jogo +"havefun": "Divirta-se!" -gametime: Tempo do jogo +"health": "Vida" -gamewillendin1minutes: Jogo acabará em &e&l$1$ &eminutos. +"hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends": "Aqui encontras jogos que podem ser jogados sozinho e com amigos!" -gamewillendin1minute: Jogo acabará em &e&l$1$ &eminuto. +"hereyoucanfindgameswhichcanbeplayedonlywithfriends": "Aqui encontras jogos apenas jogáveis com amigos!" -gamewillstartin1seconds: '&eJogo inicia em &e&l$1$ &esegundos' +"hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun": "Aqui podes entonrar minigames em GUI, feitos por plugins baixados, mas continuam a ser engraçados!" -gamewillstartin1second: '&eJogo inicia em &e&l$1$ &esegundo' +"hereyoucanusevariousabilitiestoexplodethemapandotherplayers": "Aqui podes usar várias habilidades para explodir o mapa e os jogadores." -gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame: Obtem - recursos, prepara para a batalha, defende o teu Cristal da Vida e ataca o Cristal - de outras ilhas! +"hitstaken": "Batidas Dadas" -gravityhasnoeffectonblocksheresoyoucanbuildinthesky: Gravidade não tem efeito nos - blocos aqui, então podes construir no céu! +"hits": "Batidas" -groupcommands: ' &2&l --=-= &a&lComandos de Grupo &2&l=-=--' +"hittolevelupyourstickandknockotherplayersintothevoid": "Bata para subir seu graveto de nivel e jogar os outros jogadores no void!" -havefun: Divirta-se! +"hours": "horas" -health: Vida +"howtoplay": "&b&lComo jogar" -hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends: Aqui encontras jogos que - podem ser jogados sozinho e com amigos! +"ifyouwanttogetoutofthespectatormodetype/q": "Para sair do modo &aEspectador &cescreve &e/q" -hereyoucanfindgameswhichcanbeplayedonlywithfriends: Aqui encontras jogos apenas jogáveis - com amigos! +"ifyouwanttoleavethegametype/q": "Se você quiser sair use &e/q&6." -hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun: Aqui - podes entonrar minigames em GUI, feitos por plugins baixados, mas continuam a - ser engraçados! +"ifyouwanttospectateotherplayertype/stp": "Para ver outros jogadores escreva &e/stp " -hereyoucanusevariousabilitiestoexplodethemapandotherplayers: Aqui podes usar várias - habilidades para explodir o mapa e os jogadores. +"immortalityperk": "Perk de Imortalidade" -hitstaken: Batidas Dadas +"increasesthechancetoreflectasnowballto100": "Aumenta a chance de refletir uma bola de neve para 100%" -hits: Batidas +"increasesthedamageofsnowballsto10hearts": "Aumenta o Dano da Bola de Neve para 10 corações" -hittolevelupyourstickandknockotherplayersintothevoid: Bata para subir seu graveto - de nivel e jogar os outros jogadores no void! +"increasesyourspeedby1": "Aumenta a tua velocidade por $1$" -hours: horas +"instakillsnowballsmodifier": "Modificação de Bolas de Neve Insta Kill" -howtoplay: '&b&lComo jogar' +"invalidcode": "Codigo inválido." -ifyouwanttogetoutofthespectatormodetype/q: Para sair do modo &aEspectador &cescreve - &e/q +"ironcannon": "&7&lCanhão de Ferro" -ifyouwanttoleavethegametype/q: Se você quiser sair use &e/q&6. +"itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater": "It's very hot in Mustafar, you gonna need to drink twice as much water." -ifyouwanttospectateotherplayertype/stp: Para ver outros jogadores escreva - &e/stp +"jumps": "Saltos" -immortalityperk: Perk de Imortalidade +"killer": "Matador" -increasesthechancetoreflectasnowballto100: Aumenta a chance de refletir uma bola de - neve para 100% +"killsanynormalopponentevenwitharmor": "Mata qualquer adversário normal, até mesmo com armadura." -increasesthedamageofsnowballsto10hearts: Aumenta o Dano da Bola de Neve para 10 corações +"killstreak": "Killstreak" -increasesyourspeedby1: Aumenta a tua velocidade por $1$ +"kills": "Abates" -instakillsnowballsmodifier: Modificação de Bolas de Neve Insta Kill +"king": "Rei" -invalidcode: Codigo inválido. +"knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback": "&e&lJogue seus adversários para fora da plataforma. Quanto mais você bater, mais você leva knockback" -ironcannon: '&7&lCanhão de Ferro' +"level": "Nivel" -itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater: It's very hot in Mustafar, - you gonna need to drink twice as much water. +"listofgames": "Lista de Jogos" -jumps: Saltos +"lives": "Vidas" -killer: Matador +"lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs": "Abra baús, lute contra outros jogadores, encontre itens alterórios com habilidades interessantes e use pokeballs" -killsanynormalopponentevenwitharmor: Mata qualquer adversário normal, até mesmo com - armadura. +"lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin": "&e&lPegue Baús aleterórios com itens únicos. Use-os para derrotar seus adversários. Seja o unico sobrevivente para vencer." -killstreak: Killstreak +"losses": "Derrotas" -kills: Abates +"makesallofyoursnowballsburn": "Faz todas as tuas bolas de neve queimar." -king: Rei +"makesyoursnowballssuperfast": "Faz as suas bolas de neve super rápidas!" -knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback: '&e&lJogue seus - adversários para fora da plataforma. Quanto mais você bater, mais você leva knockback' +"maxlevelreached": "Nivel máximo antigido" -level: Nivel +"maxlevel": "NIVEL MAXIMO:" -listofgames: Lista de Jogos +"melonsearned": "Melões ganhados" -lives: Vidas +"melonsspent": "Melões investidos" -lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs: Abra - baús, lute contra outros jogadores, encontre itens alterórios com habilidades - interessantes e use pokeballs +"melons": "Melões" -lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin: '&e&lPegue - Baús aleterórios com itens únicos. Use-os para derrotar seus adversários. Seja - o unico sobrevivente para vencer.' +"melon": "Melão" -losses: Derrotas +"mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves": "Mine, melhore sua picareta, compre ótimas melhorias e desbloqueie novas caves!" -makesallofyoursnowballsburn: Faz todas as tuas bolas de neve queimar. +"minutes": "minutos" -makesyoursnowballssuperfast: Faz as suas bolas de neve super rápidas! +"mode": "Modo" -maxlevelreached: Nivel máximo antigido +"movetimeleft": "Tempo de movimentação" -maxlevel: 'NIVEL MAXIMO:' +"mustbeatlowerfloor": "Você deve estár em um andar mais baixo!" -melonsearned: Melões ganhados +"mustnothaveanysuperjumps": "Não deverá ter Super Saltos" -melonsspent: Melões investidos +"newrating": "Nova avaliação" -melons: Melões +"newrecord": "NOVO RECORDE!" -melon: Melão +"new": "NOVO!" -mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves: Mine, melhore sua picareta, - compre ótimas melhorias e desbloqueie novas caves! +"nextsuperjumpin": "Proximo super salto em" -minutes: minutos +"next": "Próximo" -mode: Modo +"night": "Noite" -movetimeleft: Tempo de movimentação +"nocompassmodifier": "Modificador sem Bússula" -mustbeatlowerfloor: Você deve estár em um andar mais baixo! +"notenoughmelons": "Melões insuficientes" -mustnothaveanysuperjumps: Não deverá ter Super Saltos +"note": "Nota:" -newrating: Nova avaliação +"nowblockswillstartbreakingwhenyousteponthem": "Agora os blocos vão começar a quebrar quando você pisar eles!" -newrecord: NOVO RECORDE! +"oldrecord": "Recorde Antigo" -new: NOVO! +"parkourcourse": "Parkour" -nextsuperjumpin: Proximo super salto em +"participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther": "&e&lParticipe numa derradeira luta de bolas de neve e use Power UPS para marcar a sua existência! Bolas de neve com delay faz com que eles caiam mais rapido." -next: Próximo +"partycommands": " &2&l --=-= &a&lComandos de Party &2&l=-=--" -night: Noite +"partyinvitefrom1hasexpired": "O convite de $1$ &ehas expirou." -nocompassmodifier: Modificador sem Bússula +"partyleader": "Líder da Party" -notenoughmelons: Melões insuficientes +"partymembers": "Membros da Party" -note: 'Nota:' +"partyof1isnotopenforpublicjoin": "A party de &a$1$ &cé privada" -nowblockswillstartbreakingwhenyousteponthem: Agora os blocos vão começar a quebrar - quando você pisar eles! +"placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents": "&e&lMeta bombas em blocos para os explodir. Use powerups para ter vantagens sobre os seus adversários." -oldrecord: Recorde Antigo +"playercommands": " &2&l --=-= &a&lComandos de Jogadores &2&l=-=--" -parkourcourse: Parkour +"playerdied1timesinarowwithoutkills": "Jogador morreu $1$ vezes seguidas sem abates" -participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther: '&e&lParticipe - numa derradeira luta de bolas de neve e use Power UPS para marcar a sua existência! - Bolas de neve com delay faz com que eles caiam mais rapido.' +"playeriswaiting": "Jogador está esperando" -partycommands: ' &2&l --=-= &a&lComandos de Party &2&l=-=--' +"playernotfound": "Jogador não encontrado." -partyinvitefrom1hasexpired: O convite de $1$ &ehas expirou. +"playersarewaiting": "Jogadores vendo" -partyleader: Líder da Party +"playersin": "Jogadores aqui" -partymembers: Membros da Party +"playersleft": "Jogadores restantes" -partyof1isnotopenforpublicjoin: A party de &a$1$ &cé privada +"playerswaiting": "Jogadores esperando" -placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents: '&e&lMeta - bombas em blocos para os explodir. Use powerups para ter vantagens sobre os seus - adversários.' +"players": "Jogadores" -playercommands: ' &2&l --=-= &a&lComandos de Jogadores &2&l=-=--' +"playerwason1killstreak": "Jogador tinha um killstreak de $1$" -playerdied1timesinarowwithoutkills: Jogador morreu $1$ vezes seguidas sem abates +"playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes": "Jogue com várias classes com habilidades diferentes e use o seu arco para mostrar suas habilidades!" -playeriswaiting: Jogador está esperando +"pleaseratethismapbyclicking": "Selecione a sua avaliação:" -playernotfound: Jogador não encontrado. +"pleasespecifygroupname": "Por favor especifique o nome do grupo!" -playersarewaiting: Jogadores vendo +"pleasespecifyplayername": "Especifique o nome do jogador!" -playersin: Jogadores aqui +"plotname": "Nome do Plot" -playersleft: Jogadores restantes +"plotowner": "Dono do Plot" -playerswaiting: Jogadores esperando +"points": "Pontos" -players: Jogadores +"powerups": "Powerups" -playerwason1killstreak: Jogador tinha um killstreak de $1$ +"price": "Preço:" -playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes: Jogue - com várias classes com habilidades diferentes e use o seu arco para mostrar suas - habilidades! +"quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers": "Teste a sua habilidade rapidamente batalhando com outros jogadores com uma grnade variedade de modificações!" -pleaseratethismapbyclicking: 'Selecione a sua avaliação:' +"radarbreaker": "Radar" -pleasespecifygroupname: Por favor especifique o nome do grupo! +"rainisabletorefillwatersources": "A chuva é capaz de te dar água." -pleasespecifyplayername: Especifique o nome do jogador! +"rapidfirepoweruphasspawnedatmiddleofthemap": "&6&lRapid Fire &bpowerup spawnou no meio do mapa!" -plotname: Nome do Plot +"rating": "Classificação" -plotowner: Dono do Plot +"reflectionperk": "Perk de Reflecção" -points: Pontos +"reflectsasnowballreducingdamagetakenby1": "Reflete uma bola de neve, reduzindo o dano por $1$." -powerups: Powerups +"reflectsnowballsmodifier": "Modificação de Reflecção de Bolas de Neve" -price: 'Preço:' +"regeneratesyourhealth1": "Regenera a tua vida $1$" -quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers: Teste a sua - habilidade rapidamente batalhando com outros jogadores com uma grnade variedade - de modificações! +"regeneration": "Regeneração" -radarbreaker: Radar +"removescompassfromthegame": "Remove a Búsulla do Jogo" -rainisabletorefillwatersources: A chuva é capaz de te dar água. +"resources": "Recursos" -rapidfirepoweruphasspawnedatmiddleofthemap: '&6&lRapid Fire &bpowerup spawnou no meio - do mapa!' +"respawningin": "Renascendo em" -rating: Classificação +"serverrulescanbereadin/rulesmakesuretofollowthem": "Pode ler as regras com o comando &a/rules&e, certfefique-se que as segue!" -reflectionperk: Perk de Reflecção +"shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers": "&e&lDispara galinhas e obtem o maior numero de kills para vencer! Aviso: 50 zombies e creepers!" -reflectsasnowballreducingdamagetakenby1: Reflete uma bola de neve, reduzindo o dano - por $1$. +"shootchickensasfastasyoucan": "Jogue galinhas quão rápido puder!" -reflectsnowballsmodifier: Modificação de Reflecção de Bolas de Neve +"shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes": "Jogue bolas de neve nos jogadores, use Power UPS e veja outros modos de jogo!" -regeneratesyourhealth1: Regenera a tua vida $1$ +"shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak": "&e&lAtire TNT com o seu canhão para jogar os seus adversários no void. Save-se a si mesmo. usando Super Saltos. [Shift]" -regeneration: Regeneração +"slowballs": "Bolas de Neve Lentas" -removescompassfromthegame: Remove a Búsulla do Jogo +"slownessionhit": "Lentidão I ao bater" -resources: Recursos +"slownessperk": "Perk de lentidão" -respawningin: Renascendo em +"sneaktouse": "Shift para usar" -serverrulescanbereadin/rulesmakesuretofollowthem: Pode ler as regras com o comando - &a/rules&e, certfefique-se que as segue! +"snowballaccuracy": "Acrobacia de Bolas de Neve" -shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers: '&e&lDispara galinhas - e obtem o maior numero de kills para vencer! Aviso: 50 zombies e creepers!' +"snowballsfired": "Snowballs mandadas" -shootchickensasfastasyoucan: Jogue galinhas quão rápido puder! +"snowmanperk": "Perk de homem de neve" -shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes: Jogue - bolas de neve nos jogadores, use Power UPS e veja outros modos de jogo! +"snowman": "Boneco de Neve" -shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak: '&e&lAtire - TNT com o seu canhão para jogar os seus adversários no void. Save-se a si mesmo. - usando Super Saltos. [Shift]' +"sortsteamsbasedonkillscountforfairness": "Apresentão as equipas com bases nos Abates." -slowballs: Bolas de Neve Lentas +"spawnpointswitch": "Spawnpoint Switch" -slownessionhit: Lentidão I ao bater +"speed": "Velocidade" -slownessperk: Perk de lentidão +"spleeftntspleentexplodeotherplayersintothevoid": "Spleef + TNT = Spleent! Exploda outros jogadores no void!" -sneaktouse: Shift para usar +"statistics": "Estatisticas" -snowballaccuracy: Acrobacia de Bolas de Neve +"stonecannon": "&7Canhão de Pedra" -snowballsfired: Snowballs mandadas +"succesfullysentpartyinviteto1": "Você mandou um pedido a: $1$!" -snowmanperk: Perk de homem de neve +"superjumps": "Super saltos" -snowman: Boneco de Neve +"superjump": "Super Salto" -sortsteamsbasedonkillscountforfairness: Apresentão as equipas com bases nos Abates. +"survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty": "Survival based on old Minecraft versions between alpha 1.2 and beta 1.7.3.||&cAVISO: &7VAI TER NOSTALGIA." -spawnpointswitch: Spawnpoint Switch +"survivalrules": "Regras de Survival" -speed: Velocidade +"team": "Equipe" -spleeftntspleentexplodeotherplayersintothevoid: Spleef + TNT = Spleent! Exploda outros - jogadores no void! +"thankyouforratingthismap": "Obrigado pela tua avaliação!" -statistics: Estatisticas +"theknockbackstick": "O pau com knockback" -stonecannon: '&7Canhão de Pedra' +"therearemanyspecialrecipescheckthemoutin/recipes": "Á bastantes receitas especiais! Vê-las em: &e/recipes&r" -succesfullysentpartyinviteto1: 'Você mandou um pedido a: $1$!' +"thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1": "Aqui temos uma linguagem de programação customizada para o Creative World, com ela podes criar coisas simples para o teu terreno! $1$" -superjumps: Super saltos +"thisgamecanbeplayedalone": "&aEste jogo pode ser jogado &e&lsozinho&a." -superjump: Super Salto +"thisgamecanbeplayedwith2players": "Este jogo só pode ser jogado com &e&l2&a&l+ &ajogadores." -survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty: 'Survival - based on old Minecraft versions between alpha 1.2 and beta 1.7.3.||&cAVISO: &7VAI - TER NOSTALGIA.' +"thisgamecanbeplayedwithonly2players": "Este jogo só pode ser jogado com &e&l2 &ajogadores." -survivalrules: Regras de Survival +"thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players": "Esta partida tem poucos jogadores. Ninguém ganhará conquistas ou esmeraldas, já que o jogo está a iniciar com menos de &e&l$1$ &6jogadores." -team: Equipe +"thispowerupisalreadyactive": "Esse power-up já está ativo!" -thankyouforratingthismap: Obrigado pela tua avaliação! +"thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges": "Esta ronda de 1v1 não teve os requisitos minimos para recopensas & avaliações." -theknockbackstick: O pau com knockback +"throwablecobweb": "Throwable Teia de Aranha" -therearemanyspecialrecipescheckthemoutin/recipes: 'Á bastantes receitas especiais! - Vê-las em: &e/recipes&r' +"timeelapsed": "Time elapsed" -thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1: Aqui - temos uma linguagem de programação customizada para o Creative World, com ela - podes criar coisas simples para o teu terreno! $1$ +"timesincelastupdate": "Ultima atualização" -thisgamecanbeplayedalone: '&aEste jogo pode ser jogado &e&lsozinho&a.' +"totalplaytime": "Tempo jogado" -thisgamecanbeplayedwith2players: Este jogo só pode ser jogado com &e&l2&a&l+ &ajogadores. +"troopsalive": "Tropas vivas" -thisgamecanbeplayedwithonly2players: Este jogo só pode ser jogado com &e&l2 &ajogadores. +"troopskilled": "Tropar matadas" -thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players: Esta - partida tem poucos jogadores. Ninguém ganhará conquistas ou esmeraldas, já que - o jogo está a iniciar com menos de &e&l$1$ &6jogadores. +"troopslost": "Tropas perdidas" -thispowerupisalreadyactive: Esse power-up já está ativo! +"troops": "Tropas" -thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges: Esta ronda de - 1v1 não teve os requisitos minimos para recopensas & avaliações. +"turnsyoursnowballsintoslowballs": "Converta suas bolas de neve para bolas de neve lentas." -throwablecobweb: Throwable Teia de Aranha +"turn": "Olhar" -timeelapsed: Time elapsed +"unlocked": "DESBLOQUEADO" -timesincelastupdate: Ultima atualização +"use/agree1toagreewithsurvivalrules": "Use /agree $1$ para aceitar as regras." -totalplaytime: Tempo jogado +"usef5highfovtogetabetterviewofthegamefield": "Use F5 + FOV: QUAKE PRO para uma melhor experiência!" -troopsalive: Tropas vivas +"utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory": "&e&lUtilize tempo de preparação para obter recursos e proteger o Cristal da Vida e fazer o seu caminho para a vitória." -troopskilled: Tropar matadas +"victory": "VITÓRIA" -troopslost: Tropas perdidas +"votes": "Votos:" -troops: Tropas +"vote": "[VOTAR]" -turnsyoursnowballsintoslowballs: Converta suas bolas de neve para bolas de neve lentas. +"waitingplayers": "Jogadores aguardando" -turn: Olhar +"waitingqueuestatus": "Status da Fila" -unlocked: DESBLOQUEADO +"warped1partymemberstoyourlocation": "Teleportado &e&l$1$ &emembros da party até a sua localização!" -use/agree1toagreewithsurvivalrules: Use /agree $1$ para aceitar as regras. +"waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater": "Água é finita aqui, então vais precisar de construir grandes fazendas para teres água" -usef5highfovtogetabetterviewofthegamefield: 'Use F5 + FOV: QUAKE PRO para uma melhor - experiência!' +"winspercentage": "Percetagem de Vitorias" -utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory: '&e&lUtilize - tempo de preparação para obter recursos e proteger o Cristal da Vida e fazer o - seu caminho para a vitória.' +"wins": "Vitorias" -victory: VITÓRIA +"woodcannon": "Canhão de Madeira" -votes: 'Votos:' +"youalreadyhavevotedforamap": "Você já votou em um mapa!" -vote: '[VOTAR]' +"youarealreadyinapartyof1": "Você já está na party de &a$1$&c!" -waitingplayers: Jogadores aguardando +"youarealreadyon1team": "Você já partence á equipe $1$&c!" -waitingqueuestatus: Status da Fila +"youareleaderofapartyuse/partydisbandtobeabletodothis": "És o líder da party, usa &e/party disband &cpara fazeres isto." -warped1partymemberstoyourlocation: Teleportado &e&l$1$ &emembros da party até a sua - localização! +"youarenowamemberof1team": "Você não é um membro da equipe de $1$&e!" -waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater: Água é finita - aqui, então vais precisar de construir grandes fazendas para teres água +"youarenowjuggernaut": "Você é o Juggernaut!" -winspercentage: Percetagem de Vitorias +"youarentinaparty": "Você não está em uma party" -wins: Vitorias +"youarenttheleaderoftheparty": "Você não é o Líder da Party!" -woodcannon: Canhão de Madeira +"youcanchatonlyonceevery15second": "Apenas podes falar a cada 1.5 segundos!" -youalreadyhavevotedforamap: Você já votou em um mapa! +"youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor": "You can die from cold during night in &bHoth&r if you do not have leather armor." -youarealreadyinapartyof1: Você já está na party de &a$1$&c! +"youcanfindfriendlysurvivalwikiin1": "Podes encontrar a Wiki do Friendly Survival em: $1$" -youarealreadyon1team: Você já partence á equipe $1$&c! +"youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone": "Tu podes proteger as tuas portas e contentores com tabuletas, mas para proteger o chão terás que criar ou juntar-te a um grupo." -youareleaderofapartyuse/partydisbandtobeabletodothis: És o líder da party, usa &e/party - disband &cpara fazeres isto. +"youcannothavemorethanonesnowmanininventoryatthesametime": "Você não pode ter mais do que um &fBoneco de neve &cno seu inventário ao mesmo tempo." -youarenowamemberof1team: Você não é um membro da equipe de $1$&e! +"youcannotpartywarpintothisgame": "You cannot party warp into this game!" -youarenowjuggernaut: Você é o Juggernaut! +"youcanonlybuythisingame": "Apenas podes comprar isso no jogo!" -youarentinaparty: Você não está em uma party +"youcanonlyvotewhentheresenoughplayerstostartthegame": "Apenas podes votar quando existirem jogadores suficientes para o jogo iniciar!" -youarenttheleaderoftheparty: Você não é o Líder da Party! +"youcansendcarepackagestosupportaliveplayerswith/carepackage": "Você pode enviar pacotes de primeiros socorros para ajudar jogadores com &e&l/carepackage " -youcanchatonlyonceevery15second: Apenas podes falar a cada 1.5 segundos! +"youcantoggledisplayoftheanimationofftoreduceyourfpslag": "Podes desligar a animação para reduzir o lag!" -youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor: You can die from cold - during night in &bHoth&r if you do not have leather armor. +"youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions": "Tu podes usar &5Warp Dimensional&r para ires a dimensões maravilhosas." -youcanfindfriendlysurvivalwikiin1: 'Podes encontrar a Wiki do Friendly Survival em: - $1$' +"youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave": "Tu não foi teleportado para a localização do líder da sua party porque estás em um jogo!" -youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone: Tu - podes proteger as tuas portas e contentores com tabuletas, mas para proteger o - chão terás que criar ou juntar-te a um grupo. +"youdonated1snowballto1": "Você doou &e&l1 &fBola de neve &epara &a$1$&e!" -youcannothavemorethanonesnowmanininventoryatthesametime: Você não pode ter mais do - que um &fBoneco de neve &cno seu inventário ao mesmo tempo. +"youdonothaveenoughemeralds": "Você não tem &aEsmeraldas&c suficientes!" -youcannotpartywarpintothisgame: You cannot party warp into this game! +"youdonothaveenoughmelons": "Você não tem melões suficientes!" -youcanonlybuythisingame: Apenas podes comprar isso no jogo! +"yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin": "Você ganha pontos por capturar bandeiras. Chegue a uma quantia de pontos para vencer!" -youcanonlyvotewhentheresenoughplayerstostartthegame: Apenas podes votar quando existirem - jogadores suficientes para o jogo iniciar! +? "yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin" +: "Você ganha pontos por Abates, um jogador é escolhido para Juggernaut. Todo munto está contra ele se você matar o Juggernaut - você vira o juggernaut. Precisa de chegar a uma quantia de pontos para vencher" -youcansendcarepackagestosupportaliveplayerswith/carepackage: Você pode enviar - pacotes de primeiros socorros para ajudar jogadores com &e&l/carepackage +"yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin": "Você ganha pontos por Kills, precisa chegar a uma quantia para vencer!" -youcantoggledisplayoftheanimationofftoreduceyourfpslag: Podes desligar a animação - para reduzir o lag! +"yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin": "Ganha-se pontos por Abates, e a sua equipe precisa ter uma quantia de pontos para vencer." -youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions: Tu podes usar - &5Warp Dimensional&r para ires a dimensões maravilhosas. +"yougotaenchantedsnowballfromyourkill": "Você pegou uma &lBola de neve Encantada &bdo seu abate!" -youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave: Tu - não foi teleportado para a localização do líder da sua party porque estás em um - jogo! +"youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay": "Você concordou com as regras de survival. Siga-as e tudo ficará bem!" -youdonated1snowballto1: Você doou &e&l1 &fBola de neve &epara &a$1$&e! +"youhavealreadyinvited1intoyourparty": "Você já convidou $1$ &cna sua party!" -youdonothaveenoughemeralds: Você não tem &aEsmeraldas&c suficientes! +"youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday": "Você já votou em um mapa hoje, ajude o servidor comprando &a&lVIP &cse quiser ter votos ilimitados!" -youdonothaveenoughmelons: Você não tem melões suficientes! +"youhavealreadyvotedforamode": "Já votaste em um modo!" -yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin: Você - ganha pontos por capturar bandeiras. Chegue a uma quantia de pontos para vencer! +"youhavealreadyvotedforthismodifier": "Já votaste nesta modificação!" -? yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin -: Você ganha pontos por Abates, um jogador é escolhido para Juggernaut. Todo munto - está contra ele se você matar o Juggernaut - você vira o juggernaut. Precisa de - chegar a uma quantia de pontos para vencher +"youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools": "Tu tens FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint como ferramentas de construção!" -yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin: Você ganha pontos - por Kills, precisa chegar a uma quantia para vencer! +"youhavejoinedpartyof1": "Você entrou na party de &a$1$&e!" -yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin: Ganha-se pontos - por Abates, e a sua equipe precisa ter uma quantia de pontos para vencer. +"youhaveleftpartyof1": "Você saiu da party de &a$1$&e!" -yougotaenchantedsnowballfromyourkill: Você pegou uma &lBola de neve Encantada &bdo - seu abate! +"youhavepurchased1": "Compras-te $1$&6!" -youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay: Você concordou - com as regras de survival. Siga-as e tudo ficará bem! +"youhavereachedthelimitof1powerupspermatch": "Você chegou ao limite de &e&l$1$ &cpowerups por partida!" -youhavealreadyinvited1intoyourparty: Você já convidou $1$ &cna sua party! +"youhavereachedthelimitofsnowballs": "Você chegou ao limite de bolas de neve!" -youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday: Você - já votou em um mapa hoje, ajude o servidor comprando &a&lVIP &cse quiser ter votos - ilimitados! +"youhavereceivedsnowmanforreachingkillstreakof5": "You have received &fSnowman &efor reaching killstreak of &e&l5&e!" -youhavealreadyvotedforamode: Já votaste em um modo! +"youhavereflectedsnowballof1": "Você refletiu a bola de neve de $1$&f!" -youhavealreadyvotedforthismodifier: Já votaste nesta modificação! +"youhaveremovedyourlastratingofthismap": "Removes-te a tua ultima avaliação desse mapa" -youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools: Tu tens - FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush and goPaint como ferramentas - de construção! +"youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules": "Você tem que ler e concordar com as regras para colocar e quebrar blocos , use &e/survivalrules" -youhavejoinedpartyof1: Você entrou na party de &a$1$&e! +"youhaveupgraded1to2": "Você melhorou &a$1$ &6para &a$2$&6!" -youhaveleftpartyof1: Você saiu da party de &a$1$&e! +"youhaveupgraded1": "Você melhorou &a$1$&6!" -youhavepurchased1: Compras-te $1$&6! +"youmustbeleaderofapartytousethis": "Você não é o Líder da Party!" -youhavereachedthelimitof1powerupspermatch: Você chegou ao limite de &e&l$1$ &cpowerups - por partida! +"yourarmyisunderattack": "Seu exercito está sobre ataque!" -youhavereachedthelimitofsnowballs: Você chegou ao limite de bolas de neve! +"youropponentisblindedbyyourperk": "O oponente é cegado com o seu perk!" -youhavereceivedsnowmanforreachingkillstreakof5: You have received &fSnowman &efor - reaching killstreak of &e&l5&e! +"youropponentisignitedbyyourperk": "O opnente é inflamado com o seu perk!" -youhavereflectedsnowballof1: Você refletiu a bola de neve de $1$&f! +"youropponentisslowedbyyourperk": "O opnente ganha lentidão com o seu perk!" -youhaveremovedyourlastratingofthismap: Removes-te a tua ultima avaliação desse mapa +"yourpartyinviteto1hasexpired": "O convite para $1$ &eexpirou" -youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules: Você - tem que ler e concordar com as regras para colocar e quebrar blocos , use &e/survivalrules +"yourpartyleaderhaswarpedyoutotheirlocation": "O líder da party puxou-te!" -youhaveupgraded1to2: Você melhorou &a$1$ &6para &a$2$&6! +"yourradarbreakereffectisover": "Your Radar Breaker effect is over!" -youhaveupgraded1: Você melhorou &a$1$&6! +"yoursnowballhit1": "Your snowball hit $1$&f!" -youmustbeleaderofapartytousethis: Você não é o Líder da Party! +"yoursnowballhitboatof1": "Your snowball hit boat of $1$&f!" -yourarmyisunderattack: Seu exercito está sobre ataque! +"yoursnowmanssnowballhit1": "A bola de neve do seu boneco de neve bate $1$&f!" -youropponentisblindedbyyourperk: O oponente é cegado com o seu perk! +"yourteam": "A TUA EQUIPA" -youropponentisignitedbyyourperk: O opnente é inflamado com o seu perk! +"1kicked2fromtheparty": "$1$ &ekicked $2$ &efrom the party!" -youropponentisslowedbyyourperk: O opnente ganha lentidão com o seu perk! +"youhavealreadyusedthispowerupinthislife": "You have already used this power-up in this life!" -yourpartyinviteto1hasexpired: O convite para $1$ &eexpirou +"swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo": "Swearing is completely forbidden in our server, you will get an automatically issued punishment if you do." -yourpartyleaderhaswarpedyoutotheirlocation: O líder da party puxou-te! +"1hastransferredpartyleaderto2": "$1$ &ehas transferred party leader to $2$&e!" -yourradarbreakereffectisover: Your Radar Breaker effect is over! +"1isnotinyourparty": "$1$ &cis not in your party!" -yoursnowballhit1: Your snowball hit $1$&f! +"youcanbuythisitemonlyonceperlife": "You can buy this item only once per life." -yoursnowballhitboatof1: Your snowball hit boat of $1$&f! +"youhavegainedextralifefromyourimmortalityperk": "You have gained extra life from your &aImmortality Perk&e!" -yoursnowmanssnowballhit1: A bola de neve do seu boneco de neve bate $1$&f! +"rightclicktoactivategamemodifiers": "Right click to activate game modifiers!" -yourteam: A TUA EQUIPA +"youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow": "You have logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged in a row." -1kicked2fromtheparty: $1$ &ekicked $2$ &efrom the party! +"locked": "LOCKED" -youhavealreadyusedthispowerupinthislife: You have already used this power-up in this - life! +"1hasgainedanextralifefromtheirimmortalityperk": "&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!" -swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo: Swearing - is completely forbidden in our server, you will get an automatically issued punishment - if you do. +"/msgplayersendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." -1hastransferredpartyleaderto2: $1$ &ehas transferred party leader to $2$&e! +"/statsplayerviewplayersstats": " /stats &2- &aView player's stats." -1isnotinyourparty: $1$ &cis not in your party! +"/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." -youcanbuythisitemonlyonceperlife: You can buy this item only once per life. +"/partyinviteplayertoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." -youhavegainedextralifefromyourimmortalityperk: You have gained extra life from your - &aImmortality Perk&e! +"/partyacceptplayertoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." -rightclicktoactivategamemodifiers: Right click to activate game modifiers! +"/partykickplayertokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." -youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow: You have - logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged - in a row. +"/partytransferplayertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." -locked: LOCKED +"/partyjoinplayertojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." -1hasgainedanextralifefromtheirimmortalityperk: '&a$1$ &ehas gained an extra life from - their &aImmortality Perk&e!' +"ifyouwanttospectateotherplayertype/stpplayer": "If you want to spectate other player type &e/stp " + +"yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit": "Your party is now open for public join! Other players can do &a/p join $1$ &eto join it!" + +"youcansendcarepackagestosupportaliveplayerswith/carepackageplayer": "You can send care packages to support alive players with &e&l/carepackage " + +"enchantedironcannon": "&bEnchanted &7&lIron Cannon" + +"castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers": "Castle Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, Checkers, Bomberman, Elemental Archers" + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even furniture to improve your builds!" diff --git a/LanguageRU.yml b/LanguageRU.yml index 7da2047..d50dcd4 100644 --- a/LanguageRU.yml +++ b/LanguageRU.yml @@ -1,980 +1,837 @@ -/chatpartytotogglepartychat: ' /chat party &2- &aВключить/отключить командный чат.' +"/chatpartytotogglepartychat": " /chat party &2- &aВключить/отключить командный чат." -/donateviewwaystodonatemoneytoourserver: ' /donate &2- &aПосмотреть способы поддержать - наш сервер.' +"/donateviewwaystodonatemoneytoourserver": " /donate &2- &aПосмотреть способы поддержать наш сервер." -/facceptacceptfriendrequests: ' /f accept &2-&a Принять приглашение в друзья.' +"/groupacceptacceptagroupinvitation": " /group accept <название группы> &2- &aПринять приглашение в группу." -/faddrequestsomeonetobeyourfriend: ' /f add &2-&a Пригласить игрока в друзья.' +"/groupchunksbrowseclaimedchunksofagroup": " /group chunks <название группы> &2- &aПросмотреть чанки, принадлежащие группе." -/faqgetanswerstofrequentlyaskedquestions: ' /faq &2- &aПоказать ответы на часто - задаваемые вопросы.' +"/groupclaimclaimachunktoagroup": " /group claim <название группы> &2- &aДобавить чанк к вашей территории." -/fdenydenyfriendrequests: ' /f deny &2-&a Отклонить приглашение в друзья.' +"/groupcreatecreateagroup": " /group create <название группы> &2- &aСоздать группу." -/flistlistallyourcurrentfriends: ' /f list &2-&a Показать список всех друзей.' +"/groupdemotedemoteaplayerinagroup": " /group demote <ник игрока> <название группы> &2- &aПонизить игрока в группе." -/fremoveremoveafriend: ' /f remove &2-&a Исключить игрока из друзей.' +"/groupinfoviewinformationaboutagroup": " /group info <название группы> &2- &aПоказать информацию о группе." -/frequestslistallfriendrequests: ' /f requests &2-&a Показать все приглашения в - друзья.' +"/groupinviteinviteaplayertoagroup": " /group invite <ник игрока> <название группы> &2- &aПригласить игрока в группу." -/friendviewfriendcommandshelp: ' /friend &2- &aПоказать помощь по командам типа - /friend.' +"/groupkickkickaplayerfromagroup": " /group kick <ник игрока> <название группы> &2- &aИсключить игрока из группы." -/fshowsthishelppage: ' /f &2-&a Показать данную страницу.' +"/groupleaveleaveagroup": " /group leave <название группы> &2- &aПокинуть группу." -/groupacceptacceptagroupinvitation: ' /group accept <название группы> &2- - &aПринять приглашение в группу.' +"/grouplistlistthegroupsyouarein": " /group list &2- &aПоказать все группы, в которых вы состоите." -/groupchunksbrowseclaimedchunksofagroup: ' /group chunks <название группы> - &2- &aПросмотреть чанки, принадлежащие группе.' +"/grouppromotepromoteaplayerinagroup": " /group promote <ник игрока> <название группы> &2- &aПовысить игрока в группе." -/groupclaimclaimachunktoagroup: ' /group claim <название группы> &2- &aДобавить - чанк к вашей территории.' +"/groupunclaimunclaimachunk": " /group unclaim &2- &aУдалить чанк из вашей территории." -/groupcreatecreateagroup: ' /group create <название группы> &2- &aСоздать - группу.' +"/groupupgradeupgradeagroup": " /group upgrade <название группы> &2- &aУлучшить группу." -/groupdemotedemoteaplayerinagroup: ' /group demote <ник игрока> <название - группы> &2- &aПонизить игрока в группе.' +"/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aПрисоединиться к открытой игре с помощью команды или присоединиться к приватной игре, указав название лобби." -/groupinfoviewinformationaboutagroup: ' /group info <название группы> &2- - &aПоказать информацию о группе.' +"/listviewinformationaboutallonlineplayers": " /list &2- &aПоказать информацию об игроках, находящихся в данный момент на сервере." -/groupinviteinviteaplayertoagroup: ' /group invite <ник игрока> <название - группы> &2- &aПригласить игрока в группу.' +"/msgsendaprivatemessagetoaplayer": " /msg &2- &aОтправить личное сообщение игроку." -/groupkickkickaplayerfromagroup: ' /group kick <ник игрока> <название - группы> &2- &aИсключить игрока из группы.' +"/partyaccepttoacceptanpartyinvite": " /party accept <ник игрока> &2- &aПринять приглашение в группу." -/groupleaveleaveagroup: ' /group leave <название группы> &2- &aПокинуть группу.' +"/partydisbandtodisbandyourparty": " /party disband &2- &aРаспустить команду." -/grouplistlistthegroupsyouarein: ' /group list &2- &aПоказать все группы, в которых - вы состоите.' +"/partyinvitetoinviteaplayertoparty": " /party invite <ник игрока> &2- &aПригласить игрока в группу." -/grouppromotepromoteaplayerinagroup: ' /group promote <ник игрока> - <название группы> &2- &aПовысить игрока в группе.' +"/partyjointojoinpublicpartyofaplayer": " /party join <ник игрока> &2- &aВступить в публичную команду игрока." -/groupunclaimunclaimachunk: ' /group unclaim &2- &aУдалить чанк из вашей территории.' +"/partykicktokickaplayerfromyourparty": " /party kick <ник игрока> &2- &aИсключить игрока из команды." -/groupupgradeupgradeagroup: ' /group upgrade <название группы> &2- &aУлучшить - группу.' +"/partyleavetoleaveaparty": " /party leave &2- &aПокинуть команду." -/joinlobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname: ' /join - [lobbyname] &2- &aПрисоединиться к открытой игре с помощью команды или - присоединиться к приватной игре, указав название лобби.' +"/partylisttoviewmembersofyourpartylist": " /party list &2- &aПоказать список участников вашей группы." -/listviewinformationaboutallonlineplayers: ' /list &2- &aПоказать информацию об - игроках, находящихся в данный момент на сервере.' +"/partyopentoopenyourpartyforpublicjoin": " /party open &2- &aСделать команду публичной." -/msgsendaprivatemessagetoaplayer: ' /msg &2- &aОтправить личное - сообщение игроку.' +"/partytransfertotransferpartyleadertoothermember": " /party transfer <ник игрока> &2- &aНазначить другого члена команды владельцем." -/partyaccepttoacceptanpartyinvite: ' /party accept <ник игрока> &2- &aПринять - приглашение в группу.' +"/partyviewpartyhelp": " /party &2- &aПоказать помощь по командам типа Party." -/partydisbandtodisbandyourparty: ' /party disband &2- &aРаспустить команду.' +"/partywarptowarpyourpartymemberstoyourgamelobby": " /party warp &2- &aТелепортировать членов команды к вам в лобби." -/partyinvitetoinviteaplayertoparty: ' /party invite <ник игрока> &2- &aПригласить - игрока в группу.' +"/rulesreadserverrules": " /rules &2- &aПрочитать правила сервера." -/partyjointojoinpublicpartyofaplayer: ' /party join <ник игрока> &2- &aВступить - в публичную команду игрока.' +"/spectateenterspectatemode": " /spectate &2- &aПерейти в режим наблюдателя." -/partykicktokickaplayerfromyourparty: ' /party kick <ник игрока> &2- &aИсключить - игрока из команды.' +"/staffviewstafflist": " /staff &2- &aПоказать список администрации сервера." -/partyleavetoleaveaparty: ' /party leave &2- &aПокинуть команду.' +"/statsviewplayersstats": " /stats &2- &aПоказать статистики игрока." -/partylisttoviewmembersofyourpartylist: ' /party list &2- &aПоказать список участников - вашей группы.' +"1arrowonknockout": "+1 стрела за каждое убийство!" -/partyopentoopenyourpartyforpublicjoin: ' /party open &2- &aСделать команду публичной.' +"1defeated2": "$1$ &cпобедил &6$2$" -/partytransfertotransferpartyleadertoothermember: ' /party transfer <ник - игрока> &2- &aНазначить другого члена команды владельцем.' +"1donated1snowballtoyou": "$1$ &eпожертвовал &e&l1 &fснежок &eвам!" -/partyviewpartyhelp: ' /party &2- &aПоказать помощь по командам типа Party.' +"1flaghasbeendropped": "$1$ &eфлаг был потерян!" -/partywarptowarpyourpartymemberstoyourgamelobby: ' /party warp &2- &aТелепортировать - членов команды к вам в лобби.' +"1gotfirstkillofthegame": "&a$1$ &eсовершил первое убийство за игру!" -/rulesreadserverrules: ' /rules &2- &aПрочитать правила сервера.' +"1hascaptured2flag": "$1$ &eзахватил флаг $2$ &e!" -/spectateenterspectatemode: ' /spectate &2- &aПерейти в режим наблюдателя.' +"1hasdisbandedtheparty": "$1$ &eраспустил команду!" -/staffviewstafflist: ' /staff &2- &aПоказать список администрации сервера.' +"1hasinvitedyouintoaparty": "$1$ &eпригласил вас в команду!" -/statsviewplayersstats: ' /stats &2- &aПоказать статистики игрока.' +"1hasjoinedyourparty": "$1$ &eвступил в вашу команду!" -1arrowonknockout: +1 стрела за каждое убийство! +"1hasjoined": "$1$ &eприсоединился!" -1defeated2: $1$ &cпобедил &6$2$ +"1haslefttheparty": "$1$ &e покинул команду!" -1donated1snowballtoyou: $1$ &eпожертвовал &e&l1 &fснежок &eвам! +"1hasleft": "$1$ &cпокинул игру!" -1flaghasbeendropped: $1$ &eфлаг был потерян! +"1hasnotinvitedyouintoaparty": "$1$ &eне приглашал вас в команду!" -1gotfirstkillofthegame: '&a$1$ &eсовершил первое убийство за игру!' +"1haspickedup2flag": "$1$ &eподобрал флаг $2$ &e!" -1hascaptured2flag: $1$ &eзахватил флаг $2$ &e! +"1hasreachedthemaxsticklevel": "$1$ &eдостиг максимального уровня палки!" -1hasdisbandedtheparty: $1$ &eраспустил команду! +"1hasreturned2flag": "$1$ &eвозвратил флаг $2$ &e!" -1hasinvitedyouintoaparty: $1$ &eпригласил вас в команду! +"1hasvotedfor2map": "$1$ &eпроголосовал за карту &b&l$2$!" -1hasjoinedyourparty: $1$ &eвступил в вашу команду! +"1hasvotedfor2mode": "$1$ &eпроголосовал за режим &b&l$2$ &e!" -1hasjoined: $1$ &eприсоединился! +"1hasvotedforbalancedteamsmodifier": "$1$ &eпроголосовал за модификатор &b&lСбалансированные Команды!" -1haslefttheparty: $1$ &e покинул команду! +"1hasvotedfordoublejumpmodifier": "$1$ &eпроголосовал за модификатор &b&l\"Двойной Прыжок\"!" -1hasleft: $1$ &cпокинул игру! +"1hasvotedforfastsnowballsmodifier": "$1$ &eпроголосовал за модификатор &b&l\"Быстрые Снежки\"&e!" -1hasnotinvitedyouintoaparty: $1$ &eне приглашал вас в команду! +"1hasvotedforinstakillsnowballsmodifier": "$1$ &eпроголосовал за Модификатор &b&lСмертельные Снежки!" -1haspickedup2flag: $1$ &eподобрал флаг $2$ &e! +"1hasvotedfornocompassmodifier": "$1$ &eпроголосовал за модификатор &b&l\"Отключение компаса\"&e!" -1hasreachedthemaxsticklevel: $1$ &eдостиг максимального уровня палки! +"1hasvotedforreflectsnowballsmodifier": "$1$ &eпроголосовал за Модификатор &b&lОтражение Снежков!" -1hasreturned2flag: $1$ &eвозвратил флаг $2$ &e! +"1isalreadyinyourparty": "$1$ &cуже в вашей команде!" -1hasvotedfor2map: $1$ &eпроголосовал за карту &b&l$2$! +"1isnotyourfriendadd1tofriendswith/fadd2": "$1$&c ещё не ваш друг! Добавьте $1$&c в друзья с помощью &e/f add $2$" -1hasvotedfor2mode: $1$ &eпроголосовал за режим &b&l$2$ &e! +"1ofplayersneedstovotetoenable": "$1$ &7игроков должны проголосовать для активации." -1hasvotedforbalancedteamsmodifier: $1$ &eпроголосовал за модификатор &b&lСбалансированные - Команды! +"1teamisfull": "$1$ &cкоманда заполнена!" -1hasvotedfordoublejumpmodifier: $1$ &eпроголосовал за модификатор &b&l"Двойной Прыжок"! +"accept": "[ПРИНЯТЬ]" -1hasvotedforfastsnowballsmodifier: $1$ &eпроголосовал за модификатор &b&l"Быстрые - Снежки"&e! +"achancetospawncreeperwhereyoursnowballlands": "Шанс заспавнить крипера там, где приземлится ваш снежок." -1hasvotedforinstakillsnowballsmodifier: $1$ &eпроголосовал за Модификатор &b&lСмертельные - Снежки! +"activatedmodifiers": "Активированные модификаторы" -1hasvotedfornocompassmodifier: $1$ &eпроголосовал за модификатор &b&l"Отключение компаса"&e! +"allowstodoublejumpbypressingthesneakbuttoninmidair": "Позволяет использовать двойной прыжок с помощью нажатия кнопки [ПРИСЕСТЬ] в воздухе." -1hasvotedforreflectsnowballsmodifier: $1$ &eпроголосовал за Модификатор &b&lОтражение - Снежков! +"animationiscurrentlydisabled": "Анимация &c&lВЫКЛЮЧЕНА&e." -1isalreadyinyourparty: $1$ &cуже в вашей команде! +"animationiscurrentlyenabled": "Анимация &a&lВКЛЮЧЕНА&e." -1isnotyourfriendadd1tofriendswith/fadd2: $1$&c ещё не ваш друг! Добавьте $1$&c в друзья - с помощью &e/f add $2$ +"areyouseriouslygoingintoapartywithyourselfinvitesomeone": "Вы серьёзно собираетесь играть в команде самим с собой? Пригласите кого-нибудь!" -1ofplayersneedstovotetoenable: $1$ &7игроков должны проголосовать для активации. +"areyousureyouwanttoleavetype/qtoconfirm": "Вы точно хотите покинуть игру? Пишите &e/q &6, чтобы подтвердить." -1teamisfull: $1$ &cкоманда заполнена! +"armor": "Броня" -accept: '[ПРИНЯТЬ]' +"arrowaccuracy": "Точность попадания" -achancetospawncreeperwhereyoursnowballlands: Шанс заспавнить крипера там, где приземлится - ваш снежок. +"arrowbonusperk": "Бонусные Стрелы" -activatedmodifiers: Активированные модификаторы +"arrowsfired": "Стрел выстрелено" -allowstodoublejumpbypressingthesneakbuttoninmidair: Позволяет использовать двойной - прыжок с помощью нажатия кнопки [ПРИСЕСТЬ] в воздухе. +"arrowsleft": "Стрел осталось" -animationiscurrentlydisabled: Анимация &c&lВЫКЛЮЧЕНА&e. +"asnowmanwhichshootsenemies": "Снеговик, который стреляет во врагов!" -animationiscurrentlyenabled: Анимация &a&lВКЛЮЧЕНА&e. +"averagerating": "Средний рейтинг:" -areyouseriouslygoingintoapartywithyourselfinvitesomeone: Вы серьёзно собираетесь играть - в команде самим с собой? Пригласите кого-нибудь! +"balancedteamsmodifier": "Модификатор \"Сбалансированные Команды\"" -areyousureyouwanttoleavetype/qtoconfirm: Вы точно хотите покинуть игру? Пишите &e/q - &6, чтобы подтвердить. +"becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating": "&7&lИз-за очень большого количества модификаторов этот матч не будет влиять на рейтинг." -armor: Броня +"bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin": "&e&lБудьте коммандиром гигантской армии и победите всех вражеских королей, чтобы победить!" -arrowaccuracy: Точность попадания +"bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports": "Опасайтесь гравитации! Всегда стройте подпорки в шахтах и колонны в зданиях хотя бы на расстоянии 8 блоков." -arrowbonusperk: Бонусные Стрелы +"blindnessperk": "Слепота" -arrowsfired: Стрел выстрелено +"blockssnowballs50chancetobreakonfirsthit100onsecondhit": "Блокирует снежки. &e&l50% &7шанс сломаться после первого удара, &e&l100% &7после второго удара." -arrowsleft: Стрел осталось +"blocks": "блоков" -asnowmanwhichshootsenemies: Снеговик, который стреляет во врагов! +"bombsfired": "Выстрелено бомб" -averagerating: 'Средний рейтинг:' +"bombsplaced": "Бомб поставлено" -balancedteamsmodifier: Модификатор "Сбалансированные Команды" +"bonussnowballsonknockout": "Бонусные снежки за каждое убийство" -becauseoftoomuchgamechangingmodifiersactivatedthismatchwillnotaffectyourrating: '&7&lИз-за - очень большого количества модификаторов этот матч не будет влиять на рейтинг.' +"burningstickperk": "Горящая Палка" -bethecommanderofagiantarmyanddefeatalltheenemykingswithyourarmytowin: '&e&lБудьте - коммандиром гигантской армии и победите всех вражеских королей, чтобы победить!' +"burns1oftargetssnowballs": "Сжигает &e&l$1$ &7снежков цели." -bewareofgravityalwaysbuildsupportstoyourminesandbuildingswithatleast8blocksofdistancebetweensupports: Опасайтесь - гравитации! Всегда стройте подпорки в шахтах и колонны в зданиях хотя бы на расстоянии - 8 блоков. +"burnstargetonhit": "Поджигает цель после удара." -blindnessperk: Слепота +"cantfindaplayerbythenameof1": "Игрок с ником '$1$' не найден." -blockssnowballs50chancetobreakonfirsthit100onsecondhit: Блокирует снежки. &e&l50% - &7шанс сломаться после первого удара, &e&l100% &7после второго удара. +"cantshootfarbecausesnowballsmeltintheair": "Не может стрелять далеко, потому что снежки тают пока летят." -blocks: блоков +"chanceofcreeperspawn": "шанс спавна крипера" -bombsfired: Выстрелено бомб +"chanceofdoubleexperience": "шанс на двойной опыт" -bombsplaced: Бомб поставлено +"chanceofdoublemelons": "шанс удвоенных арбузов." -bonussnowballsonknockout: Бонусные снежки за каждое убийство +"chanceofenchantedsnowballgainafterkill": "шанс получить &bЗачарованный Снежок &7после убийства." -burningstickperk: Горящая Палка +"chanceofreflection": "шанс отражения." -burns1oftargetssnowballs: Сжигает &e&l$1$ &7снежков цели. +"chancetoblindopponentonhit": "Шанс ослепить противника, ударив его" -burnstargetonhit: Поджигает цель после удара. +"chancetoburnopponentonhit": "Шанс поджечь противника, ударив его" -cantfindaplayerbythenameof1: Игрок с ником '$1$' не найден. +"chancetonotlosealife": "Шанс не потерять жизнь после смерти" -cantshootfarbecausesnowballsmeltintheair: Не может стрелять далеко, потому что снежки - тают пока летят. +"chancetoslowslowness1opponentonhit": "шанс замедлить (Замедление $1$) оппонента после удара" -chanceofcreeperspawn: шанс спавна крипера +"chancetoslowslownessiiopponentonhit": "Шанс замедлить противника, ударив его (Замедление II)" -chanceofdoubleexperience: шанс на двойной опыт +"checkersinminecraftlikethepopularboardgame": "Шашки в Майнкрафте! Прямо как популярная настольная игра." -chanceofdoublemelons: шанс удвоенных арбузов. +"checkers": "Шашек" -chanceofenchantedsnowballgainafterkill: шанс получить &bЗачарованный Снежок &7после - убийства. +"checkpoint": "Чекпоинт" -chanceofreflection: шанс отражения. +"chestslooted": "Сундуков открыто" -chancetoblindopponentonhit: Шанс ослепить противника, ударив его +"classes": "классов" -chancetoburnopponentonhit: Шанс поджечь противника, ударив его +"clickheretojoin1": "Нажмите сюда, чтобы войти в игру $1$!" -chancetonotlosealife: Шанс не потерять жизнь после смерти +"clicktoacceptthepartyinvite": "Нажмите, чтобы принять приглашение в команду!" -chancetoslowslowness1opponentonhit: шанс замедлить (Замедление $1$) оппонента после - удара +"clicktobuy": "Нажмите, чтобы купить!" -chancetoslowslownessiiopponentonhit: Шанс замедлить противника, ударив его (Замедление - II) +"clicktojoin": "[ЗАЙТИ]" -checkersinminecraftlikethepopularboardgame: Шашки в Майнкрафте! Прямо как популярная - настольная игра. +"clicktoopenmenu": "ОТКРЫТЬ МЕНЮ" -checkers: Шашек +"clicktoplay": "ИГРАТЬ" -checkpoint: Чекпоинт +"clicktoratethismap": "Нажмите, чтобы оценить эту карту!" -chestslooted: Сундуков открыто +"clicktoundothisrating": "Нажмите, чтобы отменить оценку!" -classes: классов +"clicktovotefor1mode": "Нажмите, чтобы проголосовать за $1$ &aрежим!" -clickheretojoin1: Нажмите сюда, чтобы войти в игру $1$! +"clicktovoteforthismap": "Нажмите, чтобы проголосовать за карту!" -clicktoacceptthepartyinvite: Нажмите, чтобы принять приглашение в команду! +"clicktovoteforthismode": "Нажмите, чтобы проголосовать за этот режим!" -clicktobuy: Нажмите, чтобы купить! +"clicktovoteforthismodifier": "Нажмите, чтобы проголосовать за этот модификатор!" -clicktojoin: '[ЗАЙТИ]' +"completeparkourracesearnprizesandcompeteinleaderboards": "Проходите паркур-испытания, зарабатывайте призы и соревнуйтесь с друзьями!" -clicktoopenmenu: ОТКРЫТЬ МЕНЮ +"cooldown": "Перезагрузка" -clicktoplay: ИГРАТЬ +"crackedplayerscanjoinourservertheycanapplyat1tojoin": "Вы можете присоединяться к нашему серверу с помощью нелицензионных аккаунтов! Подайте заявку на $1$&r." -clicktoratethismap: Нажмите, чтобы оценить эту карту! +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps" +: "Творческий мир с множеством полезных функций! WorldEdit, VoxelSniper, goBrush, goPaint, огромная база голов игроков и даже свой язык программирования для создания приключенческих карт!" -clicktoundothisrating: Нажмите, чтобы отменить оценку! +"creeperchanceperk": "Шанс Спавна Крипера" -clicktovotefor1mode: Нажмите, чтобы проголосовать за $1$ &aрежим! +"crystal": "Кристалл" -clicktovoteforthismap: Нажмите, чтобы проголосовать за карту! +"current": "Текущий" -clicktovoteforthismode: Нажмите, чтобы проголосовать за этот режим! +"damagedealt": "Урона нанесено" -clicktovoteforthismodifier: Нажмите, чтобы проголосовать за этот модификатор! +"damagetaken": "Урона получено" -completeparkourracesearnprizesandcompeteinleaderboards: Проходите паркур-испытания, - зарабатывайте призы и соревнуйтесь с друзьями! +"day": "День" -cooldown: Перезагрузка +"deaths": "Смертей" -crackedplayerscanjoinourservertheycanapplyat1tojoin: Вы можете присоединяться к нашему - серверу с помощью нелицензионных аккаунтов! Подайте заявку на $1$&r. +"defeat": "ПОРАЖЕНИЕ" -? creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenacustomprogramminglanguagetocreateyourowncustommaps -: Творческий мир с множеством полезных функций! WorldEdit, VoxelSniper, goBrush, goPaint, - огромная база голов игроков и даже свой язык программирования для создания приключенческих - карт! +"defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander": "Защищайте свой замок, атакуйте противников, командуйте своей армией и станьте лучшим полководцем!" -creeperchanceperk: Шанс Спавна Крипера +"destroyingotherplayercreationsorruiningtheminanywayisnotallowed": "Уничтожение созданий других игроков и их порча любым другим способом запрещена!" -crystal: Кристалл +"destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed": "Уничтожение окружающего мира, создавая дыры в земле, столбы 1x1 или любым другим способом запрещено." -current: Текущий +"didyouknow": "Знали ли вы?" -damagedealt: Урона нанесено +? "differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin" +: "&e&lРазличные элементальные классы соревнуются друг с другом в умениях стрелять из лука. Используйте зрелищные способности, чтобы уничтожить других игроков и победить!" -damagetaken: Урона получено +"dissappearsafter10soflanding": "Исчезает после &e&l10 секунд &7падения." -day: День +"doubleemeralds": "Удвоенные Изумруды" -deaths: Смертей +"doublejumpmodifier": "Модификатор \"Двойной Прыжок\"" -defeat: ПОРАЖЕНИЕ +"doublemelonsperk": "Удвоенные арбузы" -defendyourcastleattackothercastlescommandyourarmyandbecomethebestcommander: Защищайте - свой замок, атакуйте противников, командуйте своей армией и станьте лучшим полководцем! +"emeraldstotalearned": "Всего изумрудов получено" -destroyingotherplayercreationsorruiningtheminanywayisnotallowed: Уничтожение созданий - других игроков и их порча любым другим способом запрещена! +"emeralds": "Изумруды" -destroyingthegoodlookofterrainbymakingholes1x1towersandanyotherwaywhichmakesitlookbadisnotallowed: Уничтожение - окружающего мира, создавая дыры в земле, столбы 1x1 или любым другим способом - запрещено. +"emerald": "Изумруд" -didyouknow: Знали ли вы? +"enchanteddiamondcannon": "&bЗачарованная &b&lАлмазная Пушка" -? differentelementalclassescompetewitheachotherinbowfightingabilitiesusefascinitingabilitiesofyourclasstodefeatotherplayersandwin -: '&e&lРазличные элементальные классы соревнуются друг с другом в умениях стрелять - из лука. Используйте зрелищные способности, чтобы уничтожить других игроков и - победить!' +"enchantedsnowballperk": "Улучшение \"Зачарованный Снежок\"" -dissappearsafter10soflanding: Исчезает после &e&l10 секунд &7падения. +"enchantedstonecannon": "&bЗачарованная &7Каменная Пушка" -doubleemeralds: Удвоенные Изумруды +"enchantedwoodcannon": "Зачарованная &aДеревянная Пушка" -doublejumpmodifier: Модификатор "Двойной Прыжок" +"enemyteam": "ВРАЖЕСКАЯ КОМАНДА" -doublemelonsperk: Удвоенные арбузы +"everyplayergets3liveseliminateenemyteamtowin": "Каждый игрок получает 3 жизни, уничтожьте вражескую команду, чтобы победить." -emeraldstotalearned: Всего изумрудов получено +"everyplayergets3liveseliminateotherplayerstowin": "Каждый игрок получает 3 жизни, уничтожьте всех других игроков, чтобы победить." -emeralds: Изумруды +"experiencebonusperk": "Бонусный Опыт" -emerald: Изумруд +"explodeyourwaytootherplayersandexplodethem": "Взрывайте себе путь к другим игрокам и делайте то же самое с ними!" -enchanteddiamondcannon: '&bЗачарованная &b&lАлмазная Пушка' +"exploringthevoidmayrevealmysterioussecrets": "Exploring the void may reveal mysterious secrets!" -enchantedsnowballperk: Улучшение "Зачарованный Снежок" +"explosionradius": "Радиус взрыва" -enchantedstonecannon: '&bЗачарованная &7Каменная Пушка' +"fallingblocksanimation": "Анимация падающих блоков." -enchantedwoodcannon: Зачарованная &aДеревянная Пушка +"fastsnowballsmodifier": "Модификатор \"Быстрые Снежки\"" -enemyteam: ВРАЖЕСКАЯ КОМАНДА +"feelfreetoinviteotherplayersbyusingthechat": "Не стесняйтесь приглашать других игроков в игру с помощью чата!" -everyplayergets3liveseliminateenemyteamtowin: Каждый игрок получает 3 жизни, уничтожьте - вражескую команду, чтобы победить. +"finalkills": "Финальных убийств" -everyplayergets3liveseliminateotherplayerstowin: Каждый игрок получает 3 жизни, уничтожьте - всех других игроков, чтобы победить. +"flamethrower": "Огнемёт" -experiencebonusperk: Бонусный Опыт +"free": "Бесплатно!" -explodeyourwaytootherplayersandexplodethem: Взрывайте себе путь к другим игрокам и - делайте то же самое с ними! +"friendcommands": " &2&l--=-= &a&lКоманды типа Friend &2&l=-=--" -exploringthevoidmayrevealmysterioussecrets: Exploring the void may reveal mysterious - secrets! +"friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore": "Дружелюбное выживание с технологиями и магией! Исследуйте множество измерений, выращивайте красивые деревья и открывайте для себя больше нового!" -explosionradius: Радиус взрыва +"gameendedinadraw": "НИЧЬЯ" -fallingblocksanimation: Анимация падающих блоков. +"gameend": "КОНЕЦ ИГРЫ" -fastsnowballsmodifier: Модификатор "Быстрые Снежки" +"gamehasstarted": "Игра началась!" -feelfreetoinviteotherplayersbyusingthechat: Не стесняйтесь приглашать других игроков - в игру с помощью чата! +"gameisstarting": "Игра начинается" -finalkills: Финальных убийств +"gamestartsin1seconds": "Игра начнётся через &e&l$1$ &eсекунд." -flamethrower: Огнемёт +"gamestartsin": "Игра начинается через" -free: Бесплатно! +"gamestatistics": "Игровые статистики" -friendcommands: ' &2&l--=-= &a&lКоманды типа Friend &2&l=-=--' +"gametime": "Время игры" -friendlysurvivalwithtechandmagicexploremanydimensionsgrowbeautifultreesandmore: Дружелюбное - выживание с технологиями и магией! Исследуйте множество измерений, выращивайте - красивые деревья и открывайте для себя больше нового! +"gamewillendin1minutes": "Игра закончится через &e&l$1$ &eминут." -gameendedinadraw: НИЧЬЯ +"gamewillendin1minute": "Игра закончится через &e&l$1$ &eминуту." -gameend: КОНЕЦ ИГРЫ +"gamewillstartin1seconds": "&eНачало через &e&l$1$ &eсекунд." -gamehasstarted: Игра началась! +"gamewillstartin1second": "&eНачало через &e&l$1$ &eсекунду." -gameisstarting: Игра начинается +"gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame": "Собирайте ресурсы, готовьтесь к битве, защищайте свой Кристалл Жизни, атакуйте другие кристаллы и побеждайте!" -gamestartsin1seconds: Игра начнётся через &e&l$1$ &eсекунд. +"gravityhasnoeffectonblocksheresoyoucanbuildinthesky": "Здесь гравитация не действует, так что вы можете строить в небе!" -gamestartsin: Игра начинается через +"groupcommands": " &2&l --=-= &a&lКоманды типа Group &2&l=-=--" -gamestatistics: Игровые статистики +"havefun": "Развлекайтесь!" -gametime: Время игры +"health": "Здоровье" -gamewillendin1minutes: Игра закончится через &e&l$1$ &eминут. +"hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends": "Здесь вы можете найти игры, в которые можно играть как и одному, так и с друзьями!" -gamewillendin1minute: Игра закончится через &e&l$1$ &eминуту. +"hereyoucanfindgameswhichcanbeplayedonlywithfriends": "Здесь вы можете найти игры, в которые можно играть только с друзьями!" -gamewillstartin1seconds: '&eНачало через &e&l$1$ &eсекунд.' +"hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun": "Здесь находятся минигры, в которые можно играть в инвентаре, они отчичаются от других игр тем, что они не были созданы нами, это всего лишь скачанный плагин, но они всё равно очень увлекательны!" -gamewillstartin1second: '&eНачало через &e&l$1$ &eсекунду.' +"hereyoucanusevariousabilitiestoexplodethemapandotherplayers": "Здесь вы можете использовать различные возможности, чтобы взрывать карту и других игроков!" -gatherresourcesprepareforfightprotectyourcrystaloflifeattackothercrystalsandwinthegame: Собирайте - ресурсы, готовьтесь к битве, защищайте свой Кристалл Жизни, атакуйте другие кристаллы - и побеждайте! +"hitstaken": "Ударов получено" -gravityhasnoeffectonblocksheresoyoucanbuildinthesky: Здесь гравитация не действует, - так что вы можете строить в небе! +"hits": "Ударов" -groupcommands: ' &2&l --=-= &a&lКоманды типа Group &2&l=-=--' +"hittolevelupyourstickandknockotherplayersintothevoid": "Ударяйте игроков для улучшения вашего оружия и сталкивайте их в бездну!" -havefun: Развлекайтесь! +"hours": "часов" -health: Здоровье +"howtoplay": "&b&lКак играть" -hereyoucanfindgameswhichcanbeplayedbothaloneandwithfriends: Здесь вы можете найти - игры, в которые можно играть как и одному, так и с друзьями! +"ifyouwanttogetoutofthespectatormodetype/q": "Если вы хотите выйти из &eрежима наблюдателя &c, пишите &e/q&c." -hereyoucanfindgameswhichcanbeplayedonlywithfriends: Здесь вы можете найти игры, в - которые можно играть только с друзьями! +"ifyouwanttoleavethegametype/q": "Чтобы покинуть игру, напишите &e/q&6." -hereyoucanfindlittleguiminigamestheseminigamesunlikeothersarentmadebyusitsjustadownloadedpluginbuttheyarestillfun: Здесь - находятся минигры, в которые можно играть в инвентаре, они отчичаются от других - игр тем, что они не были созданы нами, это всего лишь скачанный плагин, но они - всё равно очень увлекательны! +"ifyouwanttospectateotherplayertype/stp": "Если вы хотите наблюдать за другими игроками, пишите &e/stp <ник игрока>&c." -hereyoucanusevariousabilitiestoexplodethemapandotherplayers: Здесь вы можете использовать - различные возможности, чтобы взрывать карту и других игроков! +"immortalityperk": "Бессмертие" -hitstaken: Ударов получено +"increasesthechancetoreflectasnowballto100": "Увеличивает шанс отразить снежок до 100%." -hits: Ударов +"increasesthedamageofsnowballsto10hearts": "Увеличивает урон от снежков до 10 сердец." -hittolevelupyourstickandknockotherplayersintothevoid: Ударяйте игроков для улучшения - вашего оружия и сталкивайте их в бездну! +"increasesyourspeedby1": "Увеличивает вашу скорость на $1$" -hours: часов +"instakillsnowballsmodifier": "Модификатор \"Смертельные Снежки\"" -howtoplay: '&b&lКак играть' +"invalidcode": "Неправильный код" -ifyouwanttogetoutofthespectatormodetype/q: Если вы хотите выйти из &eрежима наблюдателя - &c, пишите &e/q&c. +"ironcannon": "&7&lЖелезная Пушка" -ifyouwanttoleavethegametype/q: Чтобы покинуть игру, напишите &e/q&6. +"itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater": "В Мустафаре очень жарко, вам нужно пить в два раза больше воды." -ifyouwanttospectateotherplayertype/stp: Если вы хотите наблюдать за другими - игроками, пишите &e/stp <ник игрока>&c. +"jumps": "Прыжков" -immortalityperk: Бессмертие +"killer": "Убийца" -increasesthechancetoreflectasnowballto100: Увеличивает шанс отразить снежок до 100%. +"killsanynormalopponentevenwitharmor": "Убивает любого нормального оппонента, даже с бронёй." -increasesthedamageofsnowballsto10hearts: Увеличивает урон от снежков до 10 сердец. +"killstreak": "Серия убийств" -increasesyourspeedby1: Увеличивает вашу скорость на $1$ +"kills": "Убийства" -instakillsnowballsmodifier: Модификатор "Смертельные Снежки" +"king": "Король" -invalidcode: Неправильный код +"knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback": "&e&lСталкивайте других игроков с платформы. Чем больше вы наносите ударов, тем сильнее вы отталкиваете других игроков." -ironcannon: '&7&lЖелезная Пушка' +"level": "Уровень" -itsveryhotinmustafaryougonnaneedtodrinktwiceasmuchwater: В Мустафаре очень жарко, - вам нужно пить в два раза больше воды. +"listofgames": "Список игр" -jumps: Прыжков +"lives": "Жизней" -killer: Убийца +"lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs": "Обкрадывайте сундуки, сражайтесь с другими игроками, находите случайно сгенерированный лут с интересными способностями и кидайте яйца спавна мобов как покеболы!" -killsanynormalopponentevenwitharmor: Убивает любого нормального оппонента, даже с - бронёй. +"lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin": "&e&lОбкрадывайте сундуки с уникальными вещами. Используйте их, чтобы убивать ваших противников. Будьте единственным выжившим, чтобы победить." -killstreak: Серия убийств +"losses": "Поражений" -kills: Убийства +"makesallofyoursnowballsburn": "Делает все ваши снежки поджигающими." -king: Король +"makesyoursnowballssuperfast": "Делает ваши снежки невероятно быстрыми." -knockotherplayersofftheplatformasyouhitplayersyoudealmoreknockback: '&e&lСталкивайте - других игроков с платформы. Чем больше вы наносите ударов, тем сильнее вы отталкиваете - других игроков.' +"maxlevelreached": "Максимальный уровень достигнут" -level: Уровень +"maxlevel": "МАКС. УРОВЕНЬ:" -listofgames: Список игр +"melonsearned": "Арбузов получено" -lives: Жизней +"melonsspent": "Арбузов потрачено" -lootchestsfightotherplayersfindrandomlygeneratedlootwithinterestingabilitiesandthrowmobeggslikepokeballs: Обкрадывайте - сундуки, сражайтесь с другими игроками, находите случайно сгенерированный лут - с интересными способностями и кидайте яйца спавна мобов как покеболы! +"melons": "Арбузов" -lootrandomlygeneratedchestswithuniqueitemsusethemtoeliminateyourenemiesbetheonlysurvivortowin: '&e&lОбкрадывайте - сундуки с уникальными вещами. Используйте их, чтобы убивать ваших противников. - Будьте единственным выжившим, чтобы победить.' +"melon": "Арбуз" -losses: Поражений +"mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves": "Копайте руды, улучшайте кирки, покупайте улучшения и открывайте новые пещеры!" -makesallofyoursnowballsburn: Делает все ваши снежки поджигающими. +"minutes": "минут" -makesyoursnowballssuperfast: Делает ваши снежки невероятно быстрыми. +"mode": "Режим" -maxlevelreached: Максимальный уровень достигнут +"movetimeleft": "Времени на ход осталось" -maxlevel: 'МАКС. УРОВЕНЬ:' +"mustbeatlowerfloor": "Нужно быть на этаже ниже" -melonsearned: Арбузов получено +"mustnothaveanysuperjumps": "Нельзя получить Супер Прыжок" -melonsspent: Арбузов потрачено +"newrating": "Новый рейтинг" -melons: Арбузов +"newrecord": "НОВЫЙ РЕКОРД!" -melon: Арбуз +"new": "НОВОЕ!" -mineoresupgradepickaxesbuyawesomeupgradesandunlocknewcaves: Копайте руды, улучшайте - кирки, покупайте улучшения и открывайте новые пещеры! +"nextsuperjumpin": "Супер Прыжок через" -minutes: минут +"next": "Следующий" -mode: Режим +"night": "Ночь" -movetimeleft: Времени на ход осталось +"nocompassmodifier": "Модификатор \"Отключение Компаса\"" -mustbeatlowerfloor: Нужно быть на этаже ниже +"notenoughmelons": "Недостаточно арбузов!" -mustnothaveanysuperjumps: Нельзя получить Супер Прыжок +"note": "НО:" -newrating: Новый рейтинг +"nowblockswillstartbreakingwhenyousteponthem": "Теперь блоки под вами будут ломаться!" -newrecord: НОВЫЙ РЕКОРД! +"oldrecord": "Последний Рекорд" -new: НОВОЕ! +"parkourcourse": "Паркур Испытание" -nextsuperjumpin: Супер Прыжок через +"participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther": "&e&lУчавствуйте в грандиозной битве снежками и используйте улучшение, чтобы облегчить себе существование! Перерыв между бросками позволяет кидать снежки дальше." -next: Следующий +"partycommands": " &2&l --=-= &a&lКоманды типа Party &2&l=-=--" -night: Ночь +"partyinvitefrom1hasexpired": "Срок приглашения от игрока $1$ &eв команду истёк." -nocompassmodifier: Модификатор "Отключение Компаса" +"partyleader": "Владелец Команды" -notenoughmelons: Недостаточно арбузов! +"partymembers": "Члены Команды" -note: 'НО:' +"partyof1isnotopenforpublicjoin": "Команда игрока &a$1$ &cприватная." -nowblockswillstartbreakingwhenyousteponthem: Теперь блоки под вами будут ломаться! +"placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents": "&e&lРасставляйте бомбы и взрывайте блоки вокруг её в форме креста [+]. Используйте усиления для того, чтобы получить преимущество над оппонентами." -oldrecord: Последний Рекорд +"playercommands": " &2&l --=-= &a&lКоманды для игроков &2&l=-=--" -parkourcourse: Паркур Испытание +"playerdied1timesinarowwithoutkills": "Игрок был убит $1$ раз подряд без убийств." -participateinamassivesnowballfightandusepowerupstoeaseyourexistencedelayingsnowballsallowstothrowthemfurther: '&e&lУчавствуйте - в грандиозной битве снежками и используйте улучшение, чтобы облегчить себе существование! - Перерыв между бросками позволяет кидать снежки дальше.' +"playeriswaiting": "Игроков ожидают" -partycommands: ' &2&l --=-= &a&lКоманды типа Party &2&l=-=--' +"playernotfound": "Игрок не найден" -partyinvitefrom1hasexpired: Срок приглашения от игрока $1$ &eв команду истёк. +"playersarewaiting": "Игроков ожидают" -partyleader: Владелец Команды +"playersin": "Всего игроков" -partymembers: Члены Команды +"playersleft": "Игроков осталось" -partyof1isnotopenforpublicjoin: Команда игрока &a$1$ &cприватная. +"playerswaiting": "Игроков ожидают" -placebombsandexplodeblocksarounditinashapeusepowerupstotakeadvantageoveropponents: '&e&lРасставляйте - бомбы и взрывайте блоки вокруг её в форме креста [+]. Используйте усиления для - того, чтобы получить преимущество над оппонентами.' +"players": "Игроков" -playercommands: ' &2&l --=-= &a&lКоманды для игроков &2&l=-=--' +"playerwason1killstreak": "Игрок был на серии убийств из $1$ убийств." -playerdied1timesinarowwithoutkills: Игрок был убит $1$ раз подряд без убийств. +"playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes": "Играйте различными классами с разными способностями и используйте свои умения для того, чтобы выйграть в множестве различных режимов!" -playeriswaiting: Игроков ожидают +"pleaseratethismapbyclicking": "Пожалуйста, оцените эту карту, нажав:" -playernotfound: Игрок не найден +"pleasespecifygroupname": "Пожалуйста укажите название группы!" -playersarewaiting: Игроков ожидают +"pleasespecifyplayername": "Пожалуйста укажите ник игрока!" -playersin: Всего игроков +"plotname": "Название участка" -playersleft: Игроков осталось +"plotowner": "Владелец" -playerswaiting: Игроков ожидают +"points": "Очков" -players: Игроков +"powerups": "Усиления" -playerwason1killstreak: Игрок был на серии убийств из $1$ убийств. +"price": "Цена:" -playvariousclasseswithdifferentabilitiesanduseyourbowskillstowininmanydifferentmodes: Играйте - различными классами с разными способностями и используйте свои умения для того, - чтобы выйграть в множестве различных режимов! +"quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers": "Испытывайте свои умения, сражайтесь с другими игроками и используйте огромный ассортимент различных модификаторов!" -pleaseratethismapbyclicking: 'Пожалуйста, оцените эту карту, нажав:' +"radarbreaker": "Помехи на радаре." -pleasespecifygroupname: Пожалуйста укажите название группы! +"rainisabletorefillwatersources": "Дождь может восполнять источники воды." -pleasespecifyplayername: Пожалуйста укажите ник игрока! +"rapidfirepoweruphasspawnedatmiddleofthemap": "Усиление&6&l Серия Выстрелов &bпоявилось в центре карты!" -plotname: Название участка +"rating": "Рейтинг" -plotowner: Владелец +"reflectionperk": "Отражение" -points: Очков +"reflectsasnowballreducingdamagetakenby1": "Отражает снежок, уменьшая урон на $1$." -powerups: Усиления +"reflectsnowballsmodifier": "Модификатор \"Отражение Снежков\"" -price: 'Цена:' +"regeneratesyourhealth1": "Регенерирует ваше здоровье на $1$" -quicklytestyourskillbyfightingotherplayerswithahugevarietyofmodifiers: Испытывайте - свои умения, сражайтесь с другими игроками и используйте огромный ассортимент - различных модификаторов! +"regeneration": "Регенерация" -radarbreaker: Помехи на радаре. +"removescompassfromthegame": "Отключает компас." -rainisabletorefillwatersources: Дождь может восполнять источники воды. +"resources": "Ресурсов" -rapidfirepoweruphasspawnedatmiddleofthemap: Усиление&6&l Серия Выстрелов &bпоявилось - в центре карты! +"respawningin": "Воскрешение через" -rating: Рейтинг +"serverrulescanbereadin/rulesmakesuretofollowthem": "Правила сервера можно прочитать в &a/rules&e, не забывайте их соблюдать!" -reflectionperk: Отражение +"shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers": "&e&lСтреляйте по курицам и получите больше всего убийств, чтобы победить! Опасность: злые зомби и криперы!" -reflectsasnowballreducingdamagetakenby1: Отражает снежок, уменьшая урон на $1$. +"shootchickensasfastasyoucan": "Стреляйте в цыплят настолько быстро, насколько можете!" -reflectsnowballsmodifier: Модификатор "Отражение Снежков" +"shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes": "Кидайте в других игроков снежки, покупайте мгновенные улучшения за арбузы и играйте во множество различных режимов!" -regeneratesyourhealth1: Регенерирует ваше здоровье на $1$ +"shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak": "&e&lСтреляйте динамитом из вашей пушки и сталкивайте ваших врагов в бездну или взрывайте их! Избегайте опасностей с помощью Супер прыжков. [Присесть]" -regeneration: Регенерация +"slowballs": "Замедляжки" -removescompassfromthegame: Отключает компас. +"slownessionhit": "Замедление I после удара" -resources: Ресурсов +"slownessperk": "Замедление" -respawningin: Воскрешение через +"sneaktouse": "Супер Прыжков осталось" -serverrulescanbereadin/rulesmakesuretofollowthem: Правила сервера можно прочитать - в &a/rules&e, не забывайте их соблюдать! +"snowballaccuracy": "Точность попадания" -shootchickensandgetthemostkillstowinbewarefilthyzombiesandcreepers: '&e&lСтреляйте - по курицам и получите больше всего убийств, чтобы победить! Опасность: злые зомби - и криперы!' +"snowballsfired": "Снежков кинуто" -shootchickensasfastasyoucan: Стреляйте в цыплят настолько быстро, насколько можете! +"snowmanperk": "Снеговик" -shoototherplayerswithsnowballsbuypowerupswithmelonsandplayinmanydifferentmodes: Кидайте - в других игроков снежки, покупайте мгновенные улучшения за арбузы и играйте во - множество различных режимов! +"snowman": "Снеговик" -shoottntwithyourcannonandknockopponentstothevoidorexplodethemsaveyourselffromhazardsusingsuperjumpssneak: '&e&lСтреляйте - динамитом из вашей пушки и сталкивайте ваших врагов в бездну или взрывайте их! - Избегайте опасностей с помощью Супер прыжков. [Присесть]' +"sortsteamsbasedonkillscountforfairness": "Распределяем игроков по командам, основываясь на количестве убийств." -slowballs: Замедляжки +"spawnpointswitch": "Переключать точки спавна" -slownessionhit: Замедление I после удара +"speed": "Скорость" -slownessperk: Замедление +"spleeftntspleentexplodeotherplayersintothevoid": "Сплиф + ТНТ = Сплент! Взрывайте других игроков или отправляйте их в бездну!" -sneaktouse: Супер Прыжков осталось +"statistics": "Статистики" -snowballaccuracy: Точность попадания +"stonecannon": "&7Каменная Пушка" -snowballsfired: Снежков кинуто +"succesfullysentpartyinviteto1": "Приглашение вступить в команду успешно отправлено игроку $1$!" -snowmanperk: Снеговик +"superjumps": "Супер Прыжков" -snowman: Снеговик +"superjump": "Супер Прыжок" -sortsteamsbasedonkillscountforfairness: Распределяем игроков по командам, основываясь - на количестве убийств. +"survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty": "Выживание, основанное на старых версиях Майкрафта между alpha 1.2 и beta 1.7.3.||&cПРЕДУПРЕЖДЕНИЕ: &7НОСТАЛЬГИЯ НЕОТЪЕМЛЕМА." -spawnpointswitch: Переключать точки спавна +"survivalrules": "Правила выживания" -speed: Скорость +"team": "Команда" -spleeftntspleentexplodeotherplayersintothevoid: Сплиф + ТНТ = Сплент! Взрывайте других - игроков или отправляйте их в бездну! +"thankyouforratingthismap": "Спасибо за то, что вы оценили эту карту!" -statistics: Статистики +"theknockbackstick": "Палка-Толкалка" -stonecannon: '&7Каменная Пушка' +"therearemanyspecialrecipescheckthemoutin/recipes": "Существует множество особых рецептов крафта! Вы всегда можете просмотреть список здесь: &e/recipes&r" -succesfullysentpartyinviteto1: Приглашение вступить в команду успешно отправлено игроку - $1$! +"thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1": "Существует уникальный язык программирования, специально созданный для Creative World-а, с его помощью вы можете создавать простые особенности на своей территории. $1$" -superjumps: Супер Прыжков +"thisgamecanbeplayedalone": "&aВ эту игру можно играть &e&lодному&a." -superjump: Супер Прыжок +"thisgamecanbeplayedwith2players": "В эту игру можно играть с &e&l2&a&l+ &aигроками." -survivalbasedonoldminecraftversionsbetweenalpha12andbeta173warningnostalgiaisacertainty: 'Выживание, - основанное на старых версиях Майкрафта между alpha 1.2 и beta 1.7.3.||&cПРЕДУПРЕЖДЕНИЕ: - &7НОСТАЛЬГИЯ НЕОТЪЕМЛЕМА.' +"thisgamecanbeplayedwithonly2players": "В эту игру можно играть только &e&lвдвоём &a." -survivalrules: Правила выживания +"thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players": "Эта игра начинается раньше, вы не будете получать изумруды, ваши статистики не будут повышаться и вы не будете получать достижения, если игра начнётся меньше, чем с &e&l$1$ &6игроками." -team: Команда +"thispowerupisalreadyactive": "Это усиление уже активно!" -thankyouforratingthismap: Спасибо за то, что вы оценили эту карту! +"thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges": "Этот раунд 1v1 не удовлетворяет требованиям для получения наград за победу или изменения рейтинга." -theknockbackstick: Палка-Толкалка +"throwablecobweb": "Кидательная паутина" -therearemanyspecialrecipescheckthemoutin/recipes: 'Существует множество особых рецептов - крафта! Вы всегда можете просмотреть список здесь: &e/recipes&r' +"timeelapsed": "Времени прошло" -thereisacustomprogramminglanguagemadeforcreativeworldwithityoucancreatesimplefeaturesforyourplot1: Существует - уникальный язык программирования, специально созданный для Creative World-а, с - его помощью вы можете создавать простые особенности на своей территории. $1$ +"timesincelastupdate": "Последнее обновление" -thisgamecanbeplayedalone: '&aВ эту игру можно играть &e&lодному&a.' +"totalplaytime": "Общее время игры" -thisgamecanbeplayedwith2players: В эту игру можно играть с &e&l2&a&l+ &aигроками. +"troopsalive": "Войнов живо" -thisgamecanbeplayedwithonly2players: В эту игру можно играть только &e&lвдвоём &a. +"troopskilled": "Войнов убито" -thisgameisstartingearlyyouwillnotearnemeraldsandyourstatsachievementswontcountifitstartswithlessthan1players: Эта - игра начинается раньше, вы не будете получать изумруды, ваши статистики не будут - повышаться и вы не будете получать достижения, если игра начнётся меньше, чем - с &e&l$1$ &6игроками. +"troopslost": "Войнов потеряно" -thispowerupisalreadyactive: Это усиление уже активно! +"troops": "Войнов" -thisroundof1v1didnotmeettherequirementsforwinrewardsandratingchanges: Этот раунд 1v1 - не удовлетворяет требованиям для получения наград за победу или изменения рейтинга. +"turnsyoursnowballsintoslowballs": "Превращает ваши снежки в замедляжки." -throwablecobweb: Кидательная паутина +"turn": "Ход" -timeelapsed: Времени прошло +"unlocked": "РАЗБЛОКИРОВАНО" -timesincelastupdate: Последнее обновление +"use/agree1toagreewithsurvivalrules": "Используйте /agree $1$, чтобы согласиться с правилами выживания." -totalplaytime: Общее время игры +"usef5highfovtogetabetterviewofthegamefield": "Используйте F5 + высокий FOV, чтобы лучше видеть игровое поле!" -troopsalive: Войнов живо +"utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory": "&e&lИспользуйте время на подготовку, чтобы получить как можно больше ресурсов, затем защищайте свой кристалл жизни и сражайтесь за победу!" -troopskilled: Войнов убито +"victory": "ПОБЕДА" -troopslost: Войнов потеряно +"votes": "Голосов:" -troops: Войнов +"vote": "[ПРОГОЛОСОВАТЬ]" -turnsyoursnowballsintoslowballs: Превращает ваши снежки в замедляжки. +"waitingplayers": "Игроков ждут" -turn: Ход +"waitingqueuestatus": "Статус ожидания" -unlocked: РАЗБЛОКИРОВАНО +"warped1partymemberstoyourlocation": "Все члены &e&l$1$ &eгруппы телепортированы в вашу локацию!" -use/agree1toagreewithsurvivalrules: Используйте /agree $1$, чтобы согласиться с правилами - выживания. +"waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater": "Water is finite here, so you are going to need to build farms close to big sources of water." -usef5highfovtogetabetterviewofthegamefield: Используйте F5 + высокий FOV, чтобы лучше - видеть игровое поле! +"winspercentage": "Процент побед" -utilisepreparationtimegiventogatherasmuchresourcesaspossibledefendyourcrystaloflifeandfightyourwaytovictory: '&e&lИспользуйте - время на подготовку, чтобы получить как можно больше ресурсов, затем защищайте - свой кристалл жизни и сражайтесь за победу!' +"wins": "Побед" -victory: ПОБЕДА +"woodcannon": "Деревянная Пушка" -votes: 'Голосов:' +"youalreadyhavevotedforamap": "Вы уже проголосовали за карту!" -vote: '[ПРОГОЛОСОВАТЬ]' +"youarealreadyinapartyof1": "Вы уже находитесь в команде игрока &a$1$&c!" -waitingplayers: Игроков ждут +"youarealreadyon1team": "Вы уже в $1$ &cкомнаде!" -waitingqueuestatus: Статус ожидания +"youareleaderofapartyuse/partydisbandtobeabletodothis": "Вы - лидер команды, используйте &e/party disband &c, чтобы это сделать." -warped1partymemberstoyourlocation: Все члены &e&l$1$ &eгруппы телепортированы в вашу - локацию! +"youarenowamemberof1team": "Теперь вы член $1$ &eкоманды!" -waterisfiniteheresoyouaregoingtoneedtobuildfarmsclosetobigsourcesofwater: Water is - finite here, so you are going to need to build farms close to big sources of water. +"youarenowjuggernaut": "Теперь вы Джаггернаут!" -winspercentage: Процент побед +"youarentinaparty": "Вы не находитесь в команде!" -wins: Побед +"youarenttheleaderoftheparty": "Вы не владелец вашей команды!" -woodcannon: Деревянная Пушка +"youcanchatonlyonceevery15second": "Вы можете писать в чат только каждые 1.5 секунды!" -youalreadyhavevotedforamap: Вы уже проголосовали за карту! +"youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor": "Вы можете умереть от холода ночью в &bHoth-е&r, если у вас нету кожаной брони." -youarealreadyinapartyof1: Вы уже находитесь в команде игрока &a$1$&c! +"youcanfindfriendlysurvivalwikiin1": "Вы можете найти википедию по Friendly Survival-у здесь: $1$" -youarealreadyon1team: Вы уже в $1$ &cкомнаде! +"youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone": "Вы можете запирать ваши контейнеры и двери с помощью табличек, а если вы хотите защитить территорию, то вступите в группу или создайте одну." -youareleaderofapartyuse/partydisbandtobeabletodothis: Вы - лидер команды, используйте - &e/party disband &c, чтобы это сделать. +"youcannothavemorethanonesnowmanininventoryatthesametime": "У вас в инвентаре одновременно не может находиться более одного &fСнеговика&c." -youarenowamemberof1team: Теперь вы член $1$ &eкоманды! +"youcannotpartywarpintothisgame": "Вы не можете Party-телепортироваться в эту игру!" -youarenowjuggernaut: Теперь вы Джаггернаут! +"youcanonlybuythisingame": "Вы можете покупать это только внутри игры!" -youarentinaparty: Вы не находитесь в команде! +"youcanonlyvotewhentheresenoughplayerstostartthegame": "Вы можете голосовать только тогда, когда в игре достаточно игроков." -youarenttheleaderoftheparty: Вы не владелец вашей команды! +"youcansendcarepackagestosupportaliveplayerswith/carepackage": "Вы можете отправлять ящики с полезными предметами для поддержки живых игроков с помощью &e&l/carepackage <игрок>" -youcanchatonlyonceevery15second: Вы можете писать в чат только каждые 1.5 секунды! +"youcantoggledisplayoftheanimationofftoreduceyourfpslag": "Вы можете включать/выключать анимацию, чтобы уменьшить лаги FPS!" -youcandiefromcoldduringnightinhothifyoudonothaveleatherarmor: Вы можете умереть от - холода ночью в &bHoth-е&r, если у вас нету кожаной брони. +"youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions": "Вы можете использовать &Dimensional Warp&r, чтобы телепортироваться во множество различных интересных и красивых измерений." -youcanfindfriendlysurvivalwikiin1: 'Вы можете найти википедию по Friendly Survival-у - здесь: $1$' +"youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave": "Вы не можете быть телепортированы в локацию лидера вашей группы, потому что вы находитесь в игре. Пишите &e/q &c, чтобы покинуть игру." -youcanlockyourcontainersanddoorswithsignsifyouwanttoprotectlandyoucanjoinagrouporcreateone: Вы - можете запирать ваши контейнеры и двери с помощью табличек, а если вы хотите защитить - территорию, то вступите в группу или создайте одну. +"youdonated1snowballto1": "Вы пожертвовали &e&l1 &fснежок &eигроку &a$1$&e!" -youcannothavemorethanonesnowmanininventoryatthesametime: У вас в инвентаре одновременно - не может находиться более одного &fСнеговика&c. +"youdonothaveenoughemeralds": "У вас не хватает &aИзумрудов&c!" -youcannotpartywarpintothisgame: Вы не можете Party-телепортироваться в эту игру! +"youdonothaveenoughmelons": "У вас не хватает &2Арбузов&c!" -youcanonlybuythisingame: Вы можете покупать это только внутри игры! +"yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin": "Вы получаете очки за захваты флагов, ваша команда должна достичь определённого количества очков, чтобы победить." -youcanonlyvotewhentheresenoughplayerstostartthegame: Вы можете голосовать только тогда, - когда в игре достаточно игроков. +? "yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin" +: "Вы получаете очки за убийства, один игрок назначается Джаггернаутом и все остальные игроки играют в команде против него, если вы убивайте Джаггернаута - вы становитесь Джаггернаутом. Вам нужно достичь определённого количества очков, чтобы победить." -youcansendcarepackagestosupportaliveplayerswith/carepackage: Вы можете отправлять - ящики с полезными предметами для поддержки живых игроков с помощью &e&l/carepackage - <игрок> +"yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin": "Вы получаете очки за убийства, вы должны набрать нужное количество очков, чтобы победить." -youcantoggledisplayoftheanimationofftoreduceyourfpslag: Вы можете включать/выключать - анимацию, чтобы уменьшить лаги FPS! +"yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin": "Вы получаете очки за убийства, ваша команда должна набрать нужное количество очков, чтобы победить." -youcanusedimensionalwarptowarptomanybeautifulandinterestingdimensions: Вы можете использовать - &Dimensional Warp&r, чтобы телепортироваться во множество различных интересных - и красивых измерений. +"yougotaenchantedsnowballfromyourkill": "Вы получили &lЗачарованный Снежок &b за своё убийство." -youcouldnotbewarpedtoyourpartyleaderslocationbecauseyouareinagameuse/qtoleave: Вы - не можете быть телепортированы в локацию лидера вашей группы, потому что вы находитесь - в игре. Пишите &e/q &c, чтобы покинуть игру. +"youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay": "Вы согласились с правилами выживания, следуйте им и всё будет отлично!" -youdonated1snowballto1: Вы пожертвовали &e&l1 &fснежок &eигроку &a$1$&e! +"youhavealreadyinvited1intoyourparty": "Вы уже приглашали $1$ &cв свою группу!" -youdonothaveenoughemeralds: У вас не хватает &aИзумрудов&c! +"youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday": "Вы уже голосовали за карту сегодня, поддержите сервер, купив &a&lVIP &c, если вы хотите голосовать сколько угодно раз в день." -youdonothaveenoughmelons: У вас не хватает &2Арбузов&c! +"youhavealreadyvotedforamode": "Вы уже голосовали за этот режим!" -yougetpointsforflagcapturesyourteamneedstoreachtheneededamountofpointstowin: Вы получаете - очки за захваты флагов, ваша команда должна достичь определённого количества очков, - чтобы победить. +"youhavealreadyvotedforthismodifier": "Вы уже голосовали за этот модификатор!" -? yougetpointsforkillsoneplayerischosentobejuggernautandthenalltheplayersareagainstthemifyoukillthejuggernautyouwillbecomethejuggernautyouneedtoreachtheneededamountofpointstowin -: Вы получаете очки за убийства, один игрок назначается Джаггернаутом и все остальные - игроки играют в команде против него, если вы убивайте Джаггернаута - вы становитесь - Джаггернаутом. Вам нужно достичь определённого количества очков, чтобы победить. +"youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools": "У вас теперь есть FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush и goPaint!" -yougetpointsforkillsyouneedtoreachtheneededamountofpointstowin: Вы получаете очки - за убийства, вы должны набрать нужное количество очков, чтобы победить. +"youhavejoinedpartyof1": "Вы вступили в команду &a$1$&e!" -yougetpointsforkillsyourteamneedstoreachtheneededamountofpointstowin: Вы получаете - очки за убийства, ваша команда должна набрать нужное количество очков, чтобы победить. +"youhaveleftpartyof1": "Вы покинули комнаду &a$1$&e!" -yougotaenchantedsnowballfromyourkill: Вы получили &lЗачарованный Снежок &b за своё - убийство. +"youhavepurchased1": "Вы купили $1$&6!" -youhaveagreedwiththesurvivalrulesfollowthemandeverythingwillbeokay: Вы согласились - с правилами выживания, следуйте им и всё будет отлично! +"youhavereachedthelimitof1powerupspermatch": "Вы превысили лимит &e&l$1$ &cусиления за матч!" -youhavealreadyinvited1intoyourparty: Вы уже приглашали $1$ &cв свою группу! +"youhavereachedthelimitofsnowballs": "Вы превысили лимит снежков!" -youhavealreadyvotedforamapinthisgametodaysupporttheserverbybuyingvipifyouwanttovoteunlimitedamountoftimesperday: Вы - уже голосовали за карту сегодня, поддержите сервер, купив &a&lVIP &c, если вы - хотите голосовать сколько угодно раз в день. +"youhavereceivedsnowmanforreachingkillstreakof5": "Вы получили &fСнеговика &eза за достижение серии убийств из &e&l5&e-ти убийств!" -youhavealreadyvotedforamode: Вы уже голосовали за этот режим! +"youhavereflectedsnowballof1": "Вы отразили снежок игрока $1$&f!" -youhavealreadyvotedforthismodifier: Вы уже голосовали за этот модификатор! +"youhaveremovedyourlastratingofthismap": "Вы отменили свою последнюю оценку этой карты." -youhavefastasyncworldeditfastasyncvoxelsnipergobrushandgopaintbuildingtools: У вас - теперь есть FastAsyncWorldEdit, FastAsyncVoxelSniper, goBrush и goPaint! +"youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules": "Вам нужно прочитать правила Survival-a и согласиться с ними, чтобы получить право ломать/ставить блоки. Используйте &e/survivalrules" -youhavejoinedpartyof1: Вы вступили в команду &a$1$&e! +"youhaveupgraded1to2": "Вы улучшили &a$1$ &6до &a$2$&6!" -youhaveleftpartyof1: Вы покинули комнаду &a$1$&e! +"youhaveupgraded1": "Вы улучшили &a$1$&6!" -youhavepurchased1: Вы купили $1$&6! +"youmustbeleaderofapartytousethis": "Вы должны быть владельцем команды, чтобы использовать это!" -youhavereachedthelimitof1powerupspermatch: Вы превысили лимит &e&l$1$ &cусиления за - матч! +"yourarmyisunderattack": "Вашу армию атакуют!" -youhavereachedthelimitofsnowballs: Вы превысили лимит снежков! +"youropponentisblindedbyyourperk": "Вы ослепили вашего оппонента! (Слепота)" -youhavereceivedsnowmanforreachingkillstreakof5: Вы получили &fСнеговика &eза за достижение - серии убийств из &e&l5&e-ти убийств! +"youropponentisignitedbyyourperk": "Вы подожгли вашего оппонента! (Горящая Палка)" -youhavereflectedsnowballof1: Вы отразили снежок игрока $1$&f! +"youropponentisslowedbyyourperk": "Вы замедлили вашего оппонента! (Замедление)" -youhaveremovedyourlastratingofthismap: Вы отменили свою последнюю оценку этой карты. +"yourpartyinviteto1hasexpired": "Срок приглашения игрока $1$ &eв команду истёк." -youhavetoreadandagreewiththerulesofsurvivaltobeabletobreak/placeblocksuse/survivalrules: Вам - нужно прочитать правила Survival-a и согласиться с ними, чтобы получить право - ломать/ставить блоки. Используйте &e/survivalrules +"yourpartyleaderhaswarpedyoutotheirlocation": "Владелец вашей команды телепортировал вас к себе!" -youhaveupgraded1to2: Вы улучшили &a$1$ &6до &a$2$&6! +"yourradarbreakereffectisover": "Ваш эффект \"Отключение Компаса\" закончился" -youhaveupgraded1: Вы улучшили &a$1$&6! +"yoursnowballhit1": "Ваш снежок ударил $1$&f!" -youmustbeleaderofapartytousethis: Вы должны быть владельцем команды, чтобы использовать - это! +"yoursnowballhitboatof1": "Ваш снежок ударил лодку $1$&f!" -yourarmyisunderattack: Вашу армию атакуют! +"yoursnowmanssnowballhit1": "Снежок вашего снеговика ударил $1$&f!" -youropponentisblindedbyyourperk: Вы ослепили вашего оппонента! (Слепота) +"yourteam": "ВАША КОМАНДА" -youropponentisignitedbyyourperk: Вы подожгли вашего оппонента! (Горящая Палка) +"1kicked2fromtheparty": "$1$ &eбыл исключён $2$ &eиз команды!" -youropponentisslowedbyyourperk: Вы замедлили вашего оппонента! (Замедление) +"youhavealreadyusedthispowerupinthislife": "Вы уже использовали это усиление в этой жизни!" -yourpartyinviteto1hasexpired: Срок приглашения игрока $1$ &eв команду истёк. +"swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo": "Ругаться абсолютно запрещено на нашем сервер! Если вы нарушите это правило, вы автоматически подвергнетесь наказанию." -yourpartyleaderhaswarpedyoutotheirlocation: Владелец вашей команды телепортировал - вас к себе! +"1hastransferredpartyleaderto2": "$1$ &eпередал права на владение командой игроку $2$&e!" -yourradarbreakereffectisover: Ваш эффект "Отключение Компаса" закончился +"1isnotinyourparty": "$1$ &cне в вашей команде!" -yoursnowballhit1: Ваш снежок ударил $1$&f! +"youcanbuythisitemonlyonceperlife": "You can buy this item only once per life." -yoursnowballhitboatof1: Ваш снежок ударил лодку $1$&f! +"youhavegainedextralifefromyourimmortalityperk": "You have gained extra life from your &aImmortality Perk&e!" -yoursnowmanssnowballhit1: Снежок вашего снеговика ударил $1$&f! +"rightclicktoactivategamemodifiers": "Right click to activate game modifiers!" -yourteam: ВАША КОМАНДА +"youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow": "You have logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged in a row." -1kicked2fromtheparty: $1$ &eбыл исключён $2$ &eиз команды! +"locked": "LOCKED" -youhavealreadyusedthispowerupinthislife: Вы уже использовали это усиление в этой жизни! +"1hasgainedanextralifefromtheirimmortalityperk": "&a$1$ &ehas gained an extra life from their &aImmortality Perk&e!" -swearingiscompletelyforbiddeninourserveryouwillgetanautomaticallyissuedpunishmentifyoudo: Ругаться - абсолютно запрещено на нашем сервер! Если вы нарушите это правило, вы автоматически - подвергнетесь наказанию. +"/msgplayersendaprivatemessagetoaplayer": " /msg &2- &aSend a private message to a player." -1hastransferredpartyleaderto2: $1$ &eпередал права на владение командой игроку $2$&e! +"/statsplayerviewplayersstats": " /stats &2- &aView player's stats." -1isnotinyourparty: $1$ &cне в вашей команде! +"/joingamelobbynametojoinapublicgamebyacommandorprivategamebyspecifyinglobbyname": " /join [lobbyname] &2- &aTo join a public game by a command or private game by specifying lobby name." -youcanbuythisitemonlyonceperlife: You can buy this item only once per life. +"/partyinviteplayertoinviteaplayertoparty": " /party invite &2- &aTo invite a player to party." -youhavegainedextralifefromyourimmortalityperk: You have gained extra life from your - &aImmortality Perk&e! +"/partyacceptplayertoacceptanpartyinvite": " /party accept &2- &aTo accept an party invite." -rightclicktoactivategamemodifiers: Right click to activate game modifiers! +"/partykickplayertokickaplayerfromyourparty": " /party kick &2- &aTo kick a player from your party." -youhaveloggedin1daysinarowyouwillgethigherrewardsforeverydayloggedinarow: You have - logged in &e&l$1$ &adays in a row! You will get higher rewards for every day logged - in a row. +"/partytransferplayertotransferpartyleadertoothermember": " /party transfer &2- &aTo transfer party leader to other member." -locked: LOCKED +"/partyjoinplayertojoinpublicpartyofaplayer": " /party join &2- &aTo join public party of a player." -1hasgainedanextralifefromtheirimmortalityperk: '&a$1$ &ehas gained an extra life from - their &aImmortality Perk&e!' +"ifyouwanttospectateotherplayertype/stpplayer": "If you want to spectate other player type &e/stp " + +"yourpartyisnowopenforpublicjoinotherplayerscando/pjoin1tojoinit": "Your party is now open for public join! Other players can do &a/p join $1$ &eto join it!" + +"youcansendcarepackagestosupportaliveplayerswith/carepackageplayer": "You can send care packages to support alive players with &e&l/carepackage " + +"enchantedironcannon": "&bEnchanted &7&lIron Cannon" + +"castlewars1v1govindassurvivalgamesminiskywallsspleentknockoutsnowballcheckersbombermanelementalarchers": "Castle Wars, 1v1, Govindas Survival Games, Mini Sky Walls, Spleent, Knockout, Snowball, Checkers, Bomberman, Elemental Archers" + +? "creativeworldwithalotofusefulfeaturesworldeditvoxelsnipergobrushgopaintahugecollectionofplayerheadsandevenfurnituretoimproveyourbuilds" +: "Creative world with a lot of useful features! WorldEdit, VoxelSniper, goBrush, goPaint, a huge collection of player heads and even furniture to improve your builds!"