From 37e4c10964cbfb0e05c851af5d60084f0b544833 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 10:17:43 -0700 Subject: [PATCH 01/44] Makes GUI titles configurable in the locale files Idea from Discord --- .../bentobox/limits/commands/player/LimitTab.java | 13 +++++++++---- .../limits/commands/player/PlayerCommand.java | 4 ++-- src/main/resources/locales/en-US.yml | 13 +++++++++++-- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/main/java/world/bentobox/limits/commands/player/LimitTab.java b/src/main/java/world/bentobox/limits/commands/player/LimitTab.java index dfba93b..de922c0 100644 --- a/src/main/java/world/bentobox/limits/commands/player/LimitTab.java +++ b/src/main/java/world/bentobox/limits/commands/player/LimitTab.java @@ -119,7 +119,8 @@ private void addEntityGroupLimits(IslandBlockCount ibc, Island island) { }); groupMap.forEach((v, limit) -> { PanelItemBuilder pib = new PanelItemBuilder(); - pib.name(v.getName()); + pib.name(user.getTranslation("island.limits.panel.entity-group-name-syntax", TextVariables.NAME, + v.getName())); String description = ""; description += "(" + prettyNames(v) + ")\n"; pib.icon(v.getIcon()); @@ -145,7 +146,8 @@ private void addEntityLimits(IslandBlockCount ibc, Island island) { map.forEach((k,v) -> { PanelItemBuilder pib = new PanelItemBuilder(); - pib.name(Util.prettifyText(k.toString())); + pib.name(user.getTranslation("island.limits.panel.entity-name-syntax", TextVariables.NAME, + Util.prettifyText(k.toString()))); Material m; try { if (E2M.containsKey(k)) { @@ -175,7 +177,8 @@ private void addMaterialIcons(IslandBlockCount ibc, Map matLi // Material limits for (Entry en : matLimits.entrySet()) { PanelItemBuilder pib = new PanelItemBuilder(); - pib.name(Util.prettifyText(en.getKey().toString())); + pib.name(user.getTranslation("island.limits.panel.block-name-syntax", TextVariables.NAME, + Util.prettifyText(en.getKey().toString()))); // Adjust icon pib.icon(B2M.getOrDefault(en.getKey(), en.getKey())); @@ -197,7 +200,9 @@ public PanelItem getIcon() { @Override public String getName() { - return user.getTranslation(world, "limits.panel-title") + " " + sortBy.name(); + String sort = user.getTranslation(world, "island.limits.panel." + sortBy); + return user.getTranslation(world, "island.limits.panel.title-syntax", "[title]", + user.getTranslation(world, "limits.panel-title"), "[sort]", sort); } @Override diff --git a/src/main/java/world/bentobox/limits/commands/player/PlayerCommand.java b/src/main/java/world/bentobox/limits/commands/player/PlayerCommand.java index 642e3fc..e0d9add 100644 --- a/src/main/java/world/bentobox/limits/commands/player/PlayerCommand.java +++ b/src/main/java/world/bentobox/limits/commands/player/PlayerCommand.java @@ -51,7 +51,7 @@ public boolean execute(User user, String label, List args) { // Report the limit for the island, which is governed by the owner of the island Optional opIsland = getIslands().getIslandAt(user.getLocation()); if (opIsland.isEmpty()) { - user.sendMessage("general.errors.no-island"); + user.sendMessage("island.limits.errors.not-on-island"); return false; } Island island = opIsland.get(); @@ -60,7 +60,7 @@ public boolean execute(User user, String label, List args) { return false; } if (island.getOwner() == null) { - user.sendMessage("general.errors.no-owner"); + user.sendMessage("island.limits.errors.no-owner"); return false; } new LimitPanel(addon).showLimits((GameModeAddon) getAddon(), user, island.getOwner()); diff --git a/src/main/resources/locales/en-US.yml b/src/main/resources/locales/en-US.yml index ba6a9da..17766ab 100755 --- a/src/main/resources/locales/en-US.yml +++ b/src/main/resources/locales/en-US.yml @@ -10,7 +10,6 @@ entity-limits: limits: panel-title: "Island limits" - admin: limits: main: @@ -52,7 +51,17 @@ island: max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cNo limits set in this world" + no-limits: "&c No limits set in this world" + panel: + title-syntax: '[title] [sort]' + entity-group-name-syntax: '[name]' + entity-name-syntax: '[name]' + block-name-syntax: '[name]' + A2Z: "a > z" + Z2A: "z > a" + errors: + no-owner: "&c That island has no owner" + not-on-island: "&c This location does not have limits set." recount: description: "recounts limits for your island" now-recounting: "&b Now recounting. This could take a while, please wait..." From 592f0413b3dfc9780c93125b6016631edaf3d64f Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:21:01 +0000 Subject: [PATCH 02/44] Translate es.yml via GitLocalize --- src/main/resources/locales/es.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/resources/locales/es.yml b/src/main/resources/locales/es.yml index 313b288..276f126 100644 --- a/src/main/resources/locales/es.yml +++ b/src/main/resources/locales/es.yml @@ -47,7 +47,13 @@ island: max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cNo hay limites establecidos en este mundo" + no-limits: "&c No hay límites establecidos en este mundo." + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Esa isla no tiene dueño" + not-on-island: "&c Esta ubicación no tiene límites establecidos." recount: description: cuenta los límites para tu isla now-recounting: "&b Ahora contando. Esto podría tomar un tiempo, por favor espere..." From fba0981d61674884770e787ecb07aa313d18a164 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:21:02 +0000 Subject: [PATCH 03/44] Translate es.yml via GitLocalize --- src/main/resources/locales/es.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/locales/es.yml b/src/main/resources/locales/es.yml index 276f126..bb5f378 100644 --- a/src/main/resources/locales/es.yml +++ b/src/main/resources/locales/es.yml @@ -49,6 +49,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c No hay límites establecidos en este mundo." panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From a167bc220b9c3ccce7f246d6b26ef7fed28608dd Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:23:01 +0000 Subject: [PATCH 04/44] Translate cs.yml via GitLocalize --- src/main/resources/locales/cs.yml | 60 ++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 21 deletions(-) diff --git a/src/main/resources/locales/cs.yml b/src/main/resources/locales/cs.yml index 3723ad0..7dab6b8 100644 --- a/src/main/resources/locales/cs.yml +++ b/src/main/resources/locales/cs.yml @@ -1,35 +1,53 @@ -########################################################################################### -# This is a YML file. Be careful when editing. Check your edits in a YAML checker like # -# the one at http://yaml-online-parser.appspot.com # -# # -# Translation by: CZghost # -########################################################################################### - +--- block-limits: hit-limit: "&c[material] omezen na [number]!" entity-limits: hit-limit: "&cSpawnování [entity] omezeno na [number]!" limits: - panel-title: "Omezení ostrovů" - - + panel-title: Omezení ostrovů admin: limits: + main: + parameters: "" + description: ukázat omezení ostrova hráče + calc: + parameters: "" + description: přepočítat omezení ostrova hráče + finished: "&aPřepočítání ostrova úspěšně dokončeno!" + offset: main: - parameters: "" - description: "ukázat omezení ostrova hráče" - calc: - parameters: "" - description: "přepočítat omezení ostrova hráče" - finished: "&aPřepočítání ostrova úspěšně dokončeno!" - + description: umožňuje spravovat limity offsetů pro materiály a entity + set: + parameters: " <číslo>" + description: nastaví nový offset pro limit materiálu nebo entity + add: + parameters: " <číslo>" + description: přidá offset pro limit materiálu nebo entity + remove: + parameters: " <číslo>" + description: snižuje offset pro limit materiálu nebo entity + reset: + parameters: " " + description: odstraní offset pro materiál nebo entitu + success: "&a Mezní posun pro [jméno] je nastaven na 0." + view: + parameters: " " + description: zobrazuje posun pro materiál nebo entitu island: limits: - description: "ukázat omezení tvého ostrova" + description: ukázat omezení tvého ostrova max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cTento svět nemá žádné omezení" + no-limits: "&c V tomto světě nejsou stanovena žádná omezení" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Tento ostrov nemá vlastníka" + not-on-island: "&c Toto umístění nemá nastavena omezení." recount: - description: "přepočítá omezení tvého ostrova" - + description: přepočítá omezení tvého ostrova + now-recounting: "&b Nyní vyprávění. Může to chvíli trvat, čekejte prosím..." + in-progress: "&c Probíhá obnovení ostrova. Čekejte prosím..." + time-out: "&c Časový limit při přepočítávání. Je ostrov opravdu velký?" From e472fddec2b9a9d36f7a40bc2ba5255dbf382222 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:23:01 +0000 Subject: [PATCH 05/44] Translate cs.yml via GitLocalize --- src/main/resources/locales/cs.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/resources/locales/cs.yml b/src/main/resources/locales/cs.yml index 7dab6b8..e6137f9 100644 --- a/src/main/resources/locales/cs.yml +++ b/src/main/resources/locales/cs.yml @@ -15,17 +15,22 @@ admin: description: přepočítat omezení ostrova hráče finished: "&aPřepočítání ostrova úspěšně dokončeno!" offset: + unknown: "&c Neznámý materiál nebo entita [name]." main: description: umožňuje spravovat limity offsetů pro materiály a entity set: parameters: " <číslo>" description: nastaví nový offset pro limit materiálu nebo entity + success: "&a Mezní posun pro [name] je nastaven na [number]." + same: "&c Mezní posun pro [name] je již [number]." add: parameters: " <číslo>" description: přidá offset pro limit materiálu nebo entity + success: "&a Posun limitu pro [name] se zvýší na [number]." remove: parameters: " <číslo>" description: snižuje offset pro limit materiálu nebo entity + success: "&a Posun limitu pro [name] se sníží na [number]." reset: parameters: " " description: odstraní offset pro materiál nebo entitu @@ -33,6 +38,7 @@ admin: view: parameters: " " description: zobrazuje posun pro materiál nebo entitu + message: "&odsazení [name] je nastaveno na [number]." island: limits: description: ukázat omezení tvého ostrova @@ -41,6 +47,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c V tomto světě nejsou stanovena žádná omezení" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From 95c3e82fdb1f92a4265370573e308a74edf4f3b8 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:24:59 +0000 Subject: [PATCH 06/44] Translate de.yml via GitLocalize --- src/main/resources/locales/de.yml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/src/main/resources/locales/de.yml b/src/main/resources/locales/de.yml index cbee523..a420eac 100644 --- a/src/main/resources/locales/de.yml +++ b/src/main/resources/locales/de.yml @@ -13,13 +13,37 @@ admin: calc: parameters: "" description: Berechne die Insel Limitierungen für den Spieler neu - finished: "&aInselberechnung erfolgreich abgeschlossen!" + offset: + main: + description: ermöglicht die Verwaltung von Grenzwertverschiebungen für Materialien + und Entitäten + set: + parameters: " " + description: legt einen neuen Offset für Material- oder Entity-Grenzwert fest + add: + parameters: " " + description: fügt einen Offset für Material- oder Entitätslimit hinzu + remove: + parameters: " " + description: reduziert den Offset für Material- oder Entitätslimit + reset: + parameters: " " + description: Entfernt den Offset für Material oder Entität + view: + parameters: " " + description: zeigt den Offset für Material oder Entität an island: limits: description: Zeige deine Insel Limitierungen max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cDiese Welt hat keine Limitierungen" + no-limits: "&c Es gibt keine Grenzen in dieser Welt" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Diese Insel hat keinen Besitzer" + not-on-island: "&c Für diesen Standort sind keine Beschränkungen festgelegt." recount: description: Zählt die Limitierungen für deine Insel auf From 11f3aa500ca05f54c1ae87459c4c9d0f7e7bc7dc Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:25:00 +0000 Subject: [PATCH 07/44] Translate de.yml via GitLocalize --- src/main/resources/locales/de.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/resources/locales/de.yml b/src/main/resources/locales/de.yml index a420eac..68b8fdc 100644 --- a/src/main/resources/locales/de.yml +++ b/src/main/resources/locales/de.yml @@ -13,25 +13,33 @@ admin: calc: parameters: "" description: Berechne die Insel Limitierungen für den Spieler neu + finished: "&aInselberechnung erfolgreich abgeschlossen!" offset: + unknown: "&c Unbekanntes Material oder Entität [name]." main: description: ermöglicht die Verwaltung von Grenzwertverschiebungen für Materialien und Entitäten set: parameters: " " description: legt einen neuen Offset für Material- oder Entity-Grenzwert fest + success: "&a Der Grenzoffset für [name] ist auf [number] eingestellt." + same: "&c Der Grenzoffset für [name] ist bereits [number]." add: parameters: " " description: fügt einen Offset für Material- oder Entitätslimit hinzu + success: "&a Der Limit-Offset für [name] wird bis [number] erhöht." remove: parameters: " " description: reduziert den Offset für Material- oder Entitätslimit + success: "&a Der Grenzoffset für [name] wird auf [number] reduziert." reset: parameters: " " description: Entfernt den Offset für Material oder Entität + success: "&a Der Grenzoffset für [name] wird auf 0 gesetzt." view: parameters: " " description: zeigt den Offset für Material oder Entität an + message: "&a [name]-Offset ist auf [number] gesetzt." island: limits: description: Zeige deine Insel Limitierungen @@ -40,6 +48,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Es gibt keine Grenzen in dieser Welt" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From 30c25ee3bc73f8a5d3cab11fd0bf745c35faf7e7 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Oct 2024 17:25:01 +0000 Subject: [PATCH 08/44] Translate de.yml via GitLocalize --- src/main/resources/locales/de.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/locales/de.yml b/src/main/resources/locales/de.yml index 68b8fdc..763f15c 100644 --- a/src/main/resources/locales/de.yml +++ b/src/main/resources/locales/de.yml @@ -59,3 +59,6 @@ island: not-on-island: "&c Für diesen Standort sind keine Beschränkungen festgelegt." recount: description: Zählt die Limitierungen für deine Insel auf + now-recounting: "&b Ich erzähle jetzt. Dies kann eine Weile dauern, bitte warten..." + in-progress: "&c Inselrückmeldung läuft. Warten Sie mal..." + time-out: "&c Zeitüberschreitung beim Erzählen. Ist die Insel wirklich so groß?" From ec7f0e43140d99caf305c748b78f9e99c16380a5 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:28:16 +0000 Subject: [PATCH 09/44] Translate fr.yml via GitLocalize --- src/main/resources/locales/fr.yml | 46 +++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/src/main/resources/locales/fr.yml b/src/main/resources/locales/fr.yml index 237e4e5..740696c 100644 --- a/src/main/resources/locales/fr.yml +++ b/src/main/resources/locales/fr.yml @@ -1,30 +1,54 @@ +--- block-limits: hit-limit: "&c[material] limité à [number]!" entity-limits: hit-limit: "&c[entity] spawning limited to [number]!" limits: - panel-title: "Limites de l'île" - - + panel-title: Limites de l'île admin: limits: main: parameters: "" - description: "affiche les limites de l'île pour le joueur" + description: affiche les limites de l'île pour le joueur calc: parameters: "" - description: "recalcule les limites de l'île pour le joueur" + description: recalcule les limites de l'île pour le joueur finished: "&a Recomptage terminé avec succès!" - + offset: + main: + description: permet de gérer les décalages de limites pour les matériaux et + les entités + set: + parameters: " " + description: définit un nouveau décalage pour la limite de matériau ou d'entité + add: + parameters: " " + description: ajoute un décalage pour la limite de matériau ou d'entité + remove: + parameters: " " + description: réduit le décalage pour la limite de matériau ou d'entité + reset: + parameters: " " + description: supprime le décalage pour le matériau ou l'entité + view: + parameters: " " + description: affiche le décalage pour le matériau ou l'entité island: limits: - description: "affichez les limites de votre île" + description: affichez les limites de votre île max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cas de limites définies dans ce monde" + no-limits: "&c Aucune limite n'est fixée dans ce monde" + panel: + A2Z: a > z + errors: + no-owner: "&c Cette île n'a pas de propriétaire" + not-on-island: "&c Cet emplacement n'a pas de limites définies." recount: - description: "recompte les limites de votre île" - now-recounting: "&b Recomptage en cours. Cela peut prendre un certain temps, veuillez patienter..." - in-progress: "&c Le recomptage de l'île est en cours. Veuillez patienter s'il vous plaît..." + description: recompte les limites de votre île + now-recounting: "&b Recomptage en cours. Cela peut prendre un certain temps, + veuillez patienter..." + in-progress: "&c Le recomptage de l'île est en cours. Veuillez patienter s'il + vous plaît..." time-out: "&c Time out lors du recomptage. L'île est-elle vraiment grande?" From 22d25c0181861cd5f2c3915d942a508cb4db4968 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:28:16 +0000 Subject: [PATCH 10/44] Translate fr.yml via GitLocalize --- src/main/resources/locales/fr.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/resources/locales/fr.yml b/src/main/resources/locales/fr.yml index 740696c..dc5d18b 100644 --- a/src/main/resources/locales/fr.yml +++ b/src/main/resources/locales/fr.yml @@ -15,24 +15,31 @@ admin: description: recalcule les limites de l'île pour le joueur finished: "&a Recomptage terminé avec succès!" offset: + unknown: "&c Matériau ou entité inconnu [name]." main: description: permet de gérer les décalages de limites pour les matériaux et les entités set: parameters: " " description: définit un nouveau décalage pour la limite de matériau ou d'entité + success: "&a Le décalage limite pour [name] est défini sur [number]." + same: "&c Le décalage limite pour [name] est déjà [number]." add: parameters: " " description: ajoute un décalage pour la limite de matériau ou d'entité + success: "&a Le décalage limite pour [name] est augmenté jusqu'à [number]." remove: parameters: " " description: réduit le décalage pour la limite de matériau ou d'entité + success: "&a Le décalage limite pour [name] est réduit jusqu'à [number]." reset: parameters: " " description: supprime le décalage pour le matériau ou l'entité + success: "&a Le décalage limite pour [name] est défini sur 0." view: parameters: " " description: affiche le décalage pour le matériau ou l'entité + message: "&a [name] le décalage est défini sur [number]." island: limits: description: affichez les limites de votre île @@ -41,7 +48,12 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Aucune limite n'est fixée dans ce monde" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z + Z2A: z > a errors: no-owner: "&c Cette île n'a pas de propriétaire" not-on-island: "&c Cet emplacement n'a pas de limites définies." From b02d3e42c49817f759ba39cb97720ef799490d78 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:30:31 +0000 Subject: [PATCH 11/44] Translate hr.yml via GitLocalize --- src/main/resources/locales/hr.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/main/resources/locales/hr.yml diff --git a/src/main/resources/locales/hr.yml b/src/main/resources/locales/hr.yml new file mode 100644 index 0000000..722ce2b --- /dev/null +++ b/src/main/resources/locales/hr.yml @@ -0,0 +1,34 @@ +--- +block-limits: + hit-limit: "&c[material] ograničen na [number]!" +entity-limits: + hit-limit: "&c[entity] stvaranje ograničeno na [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Nepoznati materijal ili entitet [name]." + main: {} + set: + success: "&a Ograničenje pomaka za [name] postavljeno je na [number]." + same: "&c Ograničenje pomaka za [name] već je [number]." + add: + success: "&a Ograničenje pomaka za [name] povećava se do [number]." + remove: + success: "&a Ograničenje pomaka za [name] smanjeno je do [number]." + reset: + success: "&a Ograničenje pomaka za [name] postavljeno je na 0." + view: + message: "&pomak [name] postavljen je na [number]." +island: + limits: + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + errors: {} + recount: {} From e43d85d4870ba49b199aea0ea50ab5daed4c750a Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:30:32 +0000 Subject: [PATCH 12/44] Translate hr.yml via GitLocalize --- src/main/resources/locales/hr.yml | 41 ++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/hr.yml b/src/main/resources/locales/hr.yml index 722ce2b..4597eee 100644 --- a/src/main/resources/locales/hr.yml +++ b/src/main/resources/locales/hr.yml @@ -3,32 +3,61 @@ block-limits: hit-limit: "&c[material] ograničen na [number]!" entity-limits: hit-limit: "&c[entity] stvaranje ograničeno na [number]!" -limits: {} +limits: + panel-title: Granice otoka admin: limits: - main: {} - calc: {} + main: + parameters: "" + description: pokazati ograničenja otoka za igrača + calc: + parameters: "" + description: ponovno izračunati ograničenja otoka za igrača + finished: "&a Recalc otoka uspješno završen!" offset: unknown: "&c Nepoznati materijal ili entitet [name]." - main: {} + main: + description: omogućuje upravljanje pomacima ograničenja za materijale i entitete set: + parameters: " " + description: postavlja novi pomak za ograničenje materijala ili entiteta success: "&a Ograničenje pomaka za [name] postavljeno je na [number]." same: "&c Ograničenje pomaka za [name] već je [number]." add: + parameters: " " + description: dodaje pomak za ograničenje materijala ili entiteta success: "&a Ograničenje pomaka za [name] povećava se do [number]." remove: + parameters: " " + description: smanjuje pomak za ograničenje materijala ili entiteta success: "&a Ograničenje pomaka za [name] smanjeno je do [number]." reset: + parameters: " " + description: uklanja pomak za materijal ili entitet success: "&a Ograničenje pomaka za [name] postavljeno je na 0." view: + parameters: " " + description: prikazuje pomak za materijal ili entitet message: "&pomak [name] postavljen je na [number]." island: limits: + description: pokazati granice vašeg otoka + max-color: i c + regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c U ovom svijetu nema ograničenja" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" - errors: {} - recount: {} + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Taj otok nema vlasnika" + not-on-island: "&c Ova lokacija nema postavljena ograničenja." + recount: + description: preračunava ograničenja za vaš otok + now-recounting: "&b Sada prepričavam. Ovo bi moglo potrajati, pričekajte..." + in-progress: "&c Otok je u tijeku. Molimo pričekajte..." + time-out: "&c Time out kod prepričavanja. Je li otok stvarno velik?" From 79573eae881e1a5326ba8f9171bf33acb29bdc15 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:32:48 +0000 Subject: [PATCH 13/44] Translate id.yml via GitLocalize --- src/main/resources/locales/id.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/resources/locales/id.yml diff --git a/src/main/resources/locales/id.yml b/src/main/resources/locales/id.yml new file mode 100644 index 0000000..2a13f52 --- /dev/null +++ b/src/main/resources/locales/id.yml @@ -0,0 +1,36 @@ +--- +block-limits: + hit-limit: "&c[material] dibatasi sampai [number]!" +entity-limits: + hit-limit: "&c[entity] spawning dibatasi sampai [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Material atau entitas tidak dikenal [name]." + main: {} + set: + success: "&a Batas offset untuk [name] ditetapkan ke [number]." + same: "&a Batas offset untuk [name] ditetapkan ke [number]." + add: + success: "&a Batas offset untuk [name] ditingkatkan hingga [number]." + remove: + success: "&a Batas offset untuk [name] dikurangi hingga [number]." + reset: + success: "&a Batas offset untuk [name] ditetapkan ke 0." + view: + message: "&a [name] offset diatur ke [number]." +island: + limits: + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + A2Z: a > z + Z2A: z > a + errors: {} + recount: {} From 35988f680aa2af48198aaf93e6417af6b215cac8 Mon Sep 17 00:00:00 2001 From: Tiara Renata Date: Sat, 5 Oct 2024 17:32:49 +0000 Subject: [PATCH 14/44] Translate id.yml via GitLocalize --- src/main/resources/locales/id.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/main/resources/locales/id.yml b/src/main/resources/locales/id.yml index 2a13f52..c1238c9 100644 --- a/src/main/resources/locales/id.yml +++ b/src/main/resources/locales/id.yml @@ -3,11 +3,17 @@ block-limits: hit-limit: "&c[material] dibatasi sampai [number]!" entity-limits: hit-limit: "&c[entity] spawning dibatasi sampai [number]!" -limits: {} +limits: + panel-title: Batasan Pulau admin: limits: - main: {} - calc: {} + main: + parameters: "" + description: menampilkan batasan pulau untuk pemain + calc: + parameters: "" + description: menghitung ulang batasan pulau untuk pemain + finished: "&aPenghitungan ulang pulau selesai tanpa masalah!" offset: unknown: "&c Material atau entitas tidak dikenal [name]." main: {} @@ -24,6 +30,9 @@ admin: message: "&a [name] offset diatur ke [number]." island: limits: + description: menampilkan batasan pulau kamu + max-color: "&c" + regular-color: "&a" block-limit-syntax: "[number]/[limit]" panel: title-syntax: "[title] [sort]" @@ -33,4 +42,5 @@ island: A2Z: a > z Z2A: z > a errors: {} - recount: {} + recount: + description: menghitung ulang batasan untuk pulau kamu From 12b1e264d356a0fb4b1869838b93b15e0c19a379 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:32:51 +0000 Subject: [PATCH 15/44] Translate id.yml via GitLocalize --- src/main/resources/locales/id.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/main/resources/locales/id.yml b/src/main/resources/locales/id.yml index c1238c9..6335c7e 100644 --- a/src/main/resources/locales/id.yml +++ b/src/main/resources/locales/id.yml @@ -16,17 +16,29 @@ admin: finished: "&aPenghitungan ulang pulau selesai tanpa masalah!" offset: unknown: "&c Material atau entitas tidak dikenal [name]." - main: {} + main: + description: memungkinkan untuk mengelola batas offset untuk material dan + entitas set: + parameters: " " + description: menetapkan offset baru untuk batasan material atau entitas success: "&a Batas offset untuk [name] ditetapkan ke [number]." same: "&a Batas offset untuk [name] ditetapkan ke [number]." add: + parameters: " " + description: menambahkan offset untuk batasan material atau entitas success: "&a Batas offset untuk [name] ditingkatkan hingga [number]." remove: + parameters: " " + description: mengurangi offset untuk batas material atau entitas success: "&a Batas offset untuk [name] dikurangi hingga [number]." reset: + parameters: " " + description: menghapus offset untuk material atau entitas success: "&a Batas offset untuk [name] ditetapkan ke 0." view: + parameters: " " + description: menampilkan offset untuk material atau entitas message: "&a [name] offset diatur ke [number]." island: limits: @@ -34,6 +46,7 @@ island: max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c Tidak ada batasan yang ditetapkan di dunia ini" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" @@ -41,6 +54,8 @@ island: block-name-syntax: "[name]" A2Z: a > z Z2A: z > a - errors: {} + errors: + no-owner: "&c Pulau itu tidak memiliki pemilik" + not-on-island: "&c Lokasi ini tidak memiliki batasan yang ditetapkan." recount: description: menghitung ulang batasan untuk pulau kamu From 31ea783858b213cc6b652e871a805ab26f8fde3b Mon Sep 17 00:00:00 2001 From: Excel Dwi Oktavianto Date: Sat, 5 Oct 2024 17:32:52 +0000 Subject: [PATCH 16/44] Translate id.yml via GitLocalize --- src/main/resources/locales/id.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/locales/id.yml b/src/main/resources/locales/id.yml index 6335c7e..3f479a8 100644 --- a/src/main/resources/locales/id.yml +++ b/src/main/resources/locales/id.yml @@ -59,3 +59,7 @@ island: not-on-island: "&c Lokasi ini tidak memiliki batasan yang ditetapkan." recount: description: menghitung ulang batasan untuk pulau kamu + now-recounting: "&b Menghitung ulang. Membutuhkan waktu beberapa saat, silahkan + tunggu..." + in-progress: "&c Perhitungan pulau sedang diproses. Silahkan tunggu..." + time-out: "&c Gagal menghitung ulang. Apakah pulau terlalu besar?" From 3123e8d1465f561c75e6cdd7a533dc410b942b2e Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:35:03 +0000 Subject: [PATCH 17/44] Translate it.yml via GitLocalize --- src/main/resources/locales/it.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/resources/locales/it.yml diff --git a/src/main/resources/locales/it.yml b/src/main/resources/locales/it.yml new file mode 100644 index 0000000..261eccb --- /dev/null +++ b/src/main/resources/locales/it.yml @@ -0,0 +1,36 @@ +--- +block-limits: + hit-limit: "&c[material] limitato a [number]!" +entity-limits: + hit-limit: "&c[entity] la generazione è limitata a [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Materiale o entità sconosciuta [name]." + main: {} + set: + success: "&a Il limite di offset per [name] è impostato su [number]." + same: "&c Il limite di offset per [name] è già [number]." + add: + success: "&a Il limite di offset per [name] è aumentato fino a [number]." + remove: + success: "&a Il limite di offset per [name] è ridotto fino a [number]." + reset: + success: "&a Il limite di offset per [name] è impostato su 0." + view: + message: "&a [name] offset è impostato su [number]." +island: + limits: + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + A2Z: a > z + Z2A: z > a + errors: {} + recount: {} From 2daff776ff41ee07f3dd9bef2c9adc2eb17b8cda Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:35:04 +0000 Subject: [PATCH 18/44] Translate it.yml via GitLocalize --- src/main/resources/locales/it.yml | 39 ++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/it.yml b/src/main/resources/locales/it.yml index 261eccb..2aeacad 100644 --- a/src/main/resources/locales/it.yml +++ b/src/main/resources/locales/it.yml @@ -3,28 +3,49 @@ block-limits: hit-limit: "&c[material] limitato a [number]!" entity-limits: hit-limit: "&c[entity] la generazione è limitata a [number]!" -limits: {} +limits: + panel-title: Limiti dell'isola admin: limits: - main: {} - calc: {} + main: + parameters: "" + description: mostra i limiti dell'isola per il giocatore + calc: + parameters: "" + description: ricalcola i limiti dell'isola per il giocatore + finished: "&a Il ricalcolo dell'isola è stato completato con successo!" offset: unknown: "&c Materiale o entità sconosciuta [name]." - main: {} + main: + description: consente di gestire gli offset dei limiti per materiali ed entità set: + parameters: " " + description: imposta un nuovo offset per il limite di materiale o entità success: "&a Il limite di offset per [name] è impostato su [number]." same: "&c Il limite di offset per [name] è già [number]." add: + parameters: " " + description: aggiunge offset per limite di materiale o entità success: "&a Il limite di offset per [name] è aumentato fino a [number]." remove: + parameters: " " + description: riduce l'offset per il limite di materiale o entità success: "&a Il limite di offset per [name] è ridotto fino a [number]." reset: + parameters: " " + description: rimuove l'offset per materiale o entità success: "&a Il limite di offset per [name] è impostato su 0." view: + parameters: " " + description: visualizza l'offset per materiale o entità message: "&a [name] offset è impostato su [number]." island: limits: + description: mostra i limiti della tua isola + max-color: "&C" + regular-color: "&UN" block-limit-syntax: "[number]/[limit]" + no-limits: "&c Non ci sono limiti in questo mondo" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" @@ -32,5 +53,11 @@ island: block-name-syntax: "[name]" A2Z: a > z Z2A: z > a - errors: {} - recount: {} + errors: + no-owner: "&c Quell'isola non ha proprietario" + not-on-island: "&c Questa posizione non ha limiti impostati." + recount: + description: racconta i limiti per la tua isola + now-recounting: "&b Ora sto raccontando. Potrebbe volerci un po', attendi..." + in-progress: "&c Il conteggio dell'isola è in corso. Attendi..." + time-out: "&c Time out quando si racconta. L'isola è davvero grande?" From e9b66c16f1f51f5d1bc4c30eeb85db7039f735a1 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:37:14 +0000 Subject: [PATCH 19/44] Translate ja.yml via GitLocalize --- src/main/resources/locales/ja.yml | 38 +++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 5 deletions(-) diff --git a/src/main/resources/locales/ja.yml b/src/main/resources/locales/ja.yml index 59b87ea..0b0cd32 100644 --- a/src/main/resources/locales/ja.yml +++ b/src/main/resources/locales/ja.yml @@ -3,6 +3,8 @@ block-limits: hit-limit: "&c[material]は[number]に制限されています!" entity-limits: hit-limit: "&c[entity]の生成は[number]に制限されています!" +limits: + panel-title: 島の制限 admin: limits: main: @@ -10,14 +12,40 @@ admin: description: プレイヤーの島の制限を表示する calc: parameters: "<プレイヤー>" - finished: "&a島の再計算が正常に完了しました!" description: プレイヤーの島の制限を再計算します + finished: "&a 島の再計算が正常に完了しました!" + offset: + main: + description: 材料とエンティティの制限オフセットを管理できます + set: + parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" + description: 材料またはエンティティの制限の新しいオフセットを設定します + add: + parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" + description: 材料またはエンティティの制限のオフセットを追加します + remove: + parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" + description: 材料またはエンティティの制限のオフセットを削減します + reset: + parameters: "<プレイヤー> <マテリアル|エンティティ>" + description: マテリアルまたはエンティティのオフセットを削除します + view: + parameters: "<プレイヤー> <マテリアル|エンティティ>" + description: 材料またはエンティティのオフセットを表示します island: limits: - block-limit-syntax: "[number]/[limit]" description: 島の限界を示す max-color: "&c" regular-color: "&a" - no-limits: "&cこの世界には制限がありません" -limits: - panel-title: 島の制限 + block-limit-syntax: "[number]/[limit]" + no-limits: この世に限界はない + panel: + Z2A: z > a + errors: + no-owner: その島には所有者がいない + not-on-island: "&c この場所には制限が設定されていません。" + recount: + description: あなたの島の限界を語る + now-recounting: "&b 今、話を戻します。これにはしばらく時間がかかるかもしれませんので、お待ちください..." + in-progress: "&c 島の回復作業が進行中です。お待ちください..." + time-out: "&c もう一度話すとタイムアウトになります。島は本当に大きいですか?" From dd436834b1b6eb66cc08de1a703cd1af9b928119 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:37:15 +0000 Subject: [PATCH 20/44] Translate ja.yml via GitLocalize --- src/main/resources/locales/ja.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/resources/locales/ja.yml b/src/main/resources/locales/ja.yml index 0b0cd32..f38cbd5 100644 --- a/src/main/resources/locales/ja.yml +++ b/src/main/resources/locales/ja.yml @@ -15,23 +15,30 @@ admin: description: プレイヤーの島の制限を再計算します finished: "&a 島の再計算が正常に完了しました!" offset: + unknown: "&c 不明な素材または実体 [name]。" main: description: 材料とエンティティの制限オフセットを管理できます set: parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" description: 材料またはエンティティの制限の新しいオフセットを設定します + success: "&a [name] の制限オフセットが [number] に設定されています。" + same: "&c [name] の制限オフセットはすでに [number] です。" add: parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" description: 材料またはエンティティの制限のオフセットを追加します + success: "&a [name] の制限オフセットが [number] まで増加されます。" remove: parameters: "<プレイヤー> <マテリアル|エンティティ> <番号>" description: 材料またはエンティティの制限のオフセットを削減します + success: "&a [name] の制限オフセットが [number] まで削減されます。" reset: parameters: "<プレイヤー> <マテリアル|エンティティ>" description: マテリアルまたはエンティティのオフセットを削除します + success: "&a [name] の制限オフセットが 0 に設定されています。" view: parameters: "<プレイヤー> <マテリアル|エンティティ>" description: 材料またはエンティティのオフセットを表示します + message: "&a [name] オフセットが [number] に設定されています。" island: limits: description: 島の限界を示す @@ -40,6 +47,11 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: この世に限界はない panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + A2Z: a > z Z2A: z > a errors: no-owner: その島には所有者がいない From 9d1933ed4cd8d33c84d996bb0382faf59443e010 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:39:21 +0000 Subject: [PATCH 21/44] Translate zh-CN.yml via GitLocalize --- src/main/resources/locales/zh-CN.yml | 48 +++++++++++++++++----------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/src/main/resources/locales/zh-CN.yml b/src/main/resources/locales/zh-CN.yml index 55f5d0b..412d17f 100644 --- a/src/main/resources/locales/zh-CN.yml +++ b/src/main/resources/locales/zh-CN.yml @@ -1,35 +1,45 @@ -########################################################################################### -# This is a YML file. Be careful when editing. Check your edits in a YAML checker like # -# the one at http://yaml-online-parser.appspot.com # -########################################################################################### - +--- block-limits: hit-limit: "&c[material] 已限制到 [number]!" entity-limits: hit-limit: "&c[entity] 生成已限制到 [number]!" limits: - panel-title: "岛屿限制" - - + panel-title: 岛屿限制 admin: limits: - main: - parameters: "" - description: "显示玩家的限制" - calc: - parameters: "" - description: "重新计算玩家的岛屿限制" - finished: "&a岛屿重计算已完成!" - + main: + parameters: "<玩家>" + description: 显示玩家的限制 + calc: + parameters: "<玩家>" + description: 重新计算玩家的岛屿限制 + finished: "&a岛屿重计算已完成!" + offset: + unknown: "&c 未知物质或实体 [name]。" + main: {} + set: + same: "&c [name] 的限制偏移量已经为 [number]。" + add: {} + remove: + success: "&a [name] 的限制偏移量减少至 [number]。" + reset: + success: "&a [name] 的限制偏移量设置为 0。" + view: {} island: limits: - description: "显示您的岛屿限制" + description: 显示您的岛屿限制 max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&c此世界中无限制" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + Z2A: z > a + errors: {} recount: - description: "重新计数岛屿限制" + description: 重新计数岛屿限制 now-recounting: "&b 开始重新计算. 可能需要一定的时间, 请稍等......" in-progress: "&c 重新计算岛屿限制中. 请稍等......" time-out: "&c 重新计算超时. 岛屿太大了吗?" From 53167b4fa066f53ab219eaf4174da2663b3885f2 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:39:22 +0000 Subject: [PATCH 22/44] Translate zh-CN.yml via GitLocalize --- src/main/resources/locales/zh-CN.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/src/main/resources/locales/zh-CN.yml b/src/main/resources/locales/zh-CN.yml index 412d17f..6583e3e 100644 --- a/src/main/resources/locales/zh-CN.yml +++ b/src/main/resources/locales/zh-CN.yml @@ -16,28 +16,46 @@ admin: finished: "&a岛屿重计算已完成!" offset: unknown: "&c 未知物质或实体 [name]。" - main: {} + main: + description: 允许管理材料和实体的限制偏移 set: + parameters: "<玩家> <材质|实体> <数字>" + description: 为材料或实体限制设置新的偏移 + success: "&a 将 [name] 的限制偏移量设置为 [number]。" same: "&c [name] 的限制偏移量已经为 [number]。" - add: {} + add: + parameters: "<玩家> <材质|实体> <数字>" + description: 添加材料或实体限制的偏移 + success: "&a [name] 的限制偏移量增加至 [number]。" remove: + parameters: "<玩家> <材质|实体> <数字>" + description: 减少材料或实体限制的偏移量 success: "&a [name] 的限制偏移量减少至 [number]。" reset: + parameters: "<玩家> <材质|实体>" + description: 删除材料或实体的偏移 success: "&a [name] 的限制偏移量设置为 0。" - view: {} + view: + parameters: "<玩家> <材质|实体>" + description: 显示材料或实体的偏移 + message: "&a [name] offset 设置为 [number]。" island: limits: description: 显示您的岛屿限制 max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c 这世上没有限制" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" + A2Z: a > z Z2A: z > a - errors: {} + errors: + no-owner: "&c 那个岛没有主人" + not-on-island: "&c 此位置未设置限制。" recount: description: 重新计数岛屿限制 now-recounting: "&b 开始重新计算. 可能需要一定的时间, 请稍等......" From 66cab9e74d2e58984804db6eb686f5fc72a4db25 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:40:44 +0000 Subject: [PATCH 23/44] Translate pl.yml via GitLocalize --- src/main/resources/locales/pl.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/resources/locales/pl.yml b/src/main/resources/locales/pl.yml index abdea19..9b6adbb 100644 --- a/src/main/resources/locales/pl.yml +++ b/src/main/resources/locales/pl.yml @@ -45,7 +45,13 @@ island: max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cBrak ustawionych limitów." + no-limits: "&c Na tym świecie nie ma żadnych ograniczeń" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Ta wyspa nie ma właściciela" + not-on-island: "&c Ta lokalizacja nie ma ustalonych ograniczeń." recount: description: określa limity dla twojej wyspy now-recounting: "&b Teraz przeliczam. To może chwilę potrwać, proszę czekać..." From 88c8343036e71a8e2d7b5510fce374c783aec07e Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:40:45 +0000 Subject: [PATCH 24/44] Translate pl.yml via GitLocalize --- src/main/resources/locales/pl.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/locales/pl.yml b/src/main/resources/locales/pl.yml index 9b6adbb..eec6537 100644 --- a/src/main/resources/locales/pl.yml +++ b/src/main/resources/locales/pl.yml @@ -47,6 +47,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Na tym świecie nie ma żadnych ograniczeń" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From ba442a789fa1efef11e535c187f35fef39264cb8 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:43:34 +0000 Subject: [PATCH 25/44] Translate hu.yml via GitLocalize --- src/main/resources/locales/hu.yml | 57 ++++++++++++++++++++----------- 1 file changed, 38 insertions(+), 19 deletions(-) diff --git a/src/main/resources/locales/hu.yml b/src/main/resources/locales/hu.yml index f1c1ec2..d0320d8 100644 --- a/src/main/resources/locales/hu.yml +++ b/src/main/resources/locales/hu.yml @@ -1,33 +1,52 @@ -########################################################################################### -# This is a YML file. Be careful when editing. Check your edits in a YAML checker like # -# the one at http://yaml-online-parser.appspot.com # -########################################################################################### - +--- block-limits: hit-limit: "&c[material] limitálva ennyire [number]!" entity-limits: hit-limit: "&c[entity] idézés limitálva ennyire [number]!" limits: - panel-title: "Sziget limitek" - - + panel-title: Sziget limitek admin: limits: + main: + parameters: "" + description: Egy játékos sziget limitjének megtekintése + calc: + parameters: "" + description: Egy játékos sziget limitjének újraszámolása + finished: "&aA Sziget újraszámolás sikeresen befejeződött!" + offset: main: - parameters: "" - description: "Egy játékos sziget limitjének megtekintése" - calc: - parameters: "" - description: "Egy játékos sziget limitjének újraszámolása" - finished: "&aA Sziget újraszámolás sikeresen befejeződött!" - + description: lehetővé teszi az anyagok és entitások limiteltolásainak kezelését + set: + parameters: " " + description: új eltolást állít be az anyag- vagy entitáskorláthoz + add: + parameters: " " + description: eltolást ad hozzá az anyag- vagy entitáskorláthoz + remove: + parameters: " " + description: csökkenti az anyag- vagy entitáskorlát ellentételezését + reset: + parameters: " " + description: eltávolítja az anyag vagy entitás eltolását + view: + parameters: " " + description: anyag vagy entitás eltolását jeleníti meg island: limits: - description: "Sziget limitek megtekintése" + description: Sziget limitek megtekintése max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cNincsenek limitek ebben a világban" + no-limits: "&c Nincsenek korlátok ezen a világon" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Annak a szigetnek nincs gazdája" + not-on-island: "&c Ennek a helynek nincs korlátja beállítva." recount: - description: "Limitek újraszámolása a szigeteden" - + description: Limitek újraszámolása a szigeteden + now-recounting: "&b Most mesélünk. Ez eltarthat egy ideig, kérem, várjon..." + in-progress: "&c Sziget visszaállítása folyamatban van. Kérem, várjon..." + time-out: "&c Időtúllépés az újraszámláláskor. Tényleg nagy a sziget?" From 70d7c0e180b6bab6ba145249777e1c7fce034a55 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:43:35 +0000 Subject: [PATCH 26/44] Translate hu.yml via GitLocalize --- src/main/resources/locales/hu.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/resources/locales/hu.yml b/src/main/resources/locales/hu.yml index d0320d8..87d95fa 100644 --- a/src/main/resources/locales/hu.yml +++ b/src/main/resources/locales/hu.yml @@ -15,23 +15,30 @@ admin: description: Egy játékos sziget limitjének újraszámolása finished: "&aA Sziget újraszámolás sikeresen befejeződött!" offset: + unknown: "&c Ismeretlen anyag vagy entitás [name]." main: description: lehetővé teszi az anyagok és entitások limiteltolásainak kezelését set: parameters: " " description: új eltolást állít be az anyag- vagy entitáskorláthoz + success: "&a A [name] határeltolódása [number] értékre van állítva." + same: "&c A [name] korláteltolása már [number]." add: parameters: " " description: eltolást ad hozzá az anyag- vagy entitáskorláthoz + success: "&a A [name] határeltolódása a [number] értékig nő." remove: parameters: " " description: csökkenti az anyag- vagy entitáskorlát ellentételezését + success: "&a A [name] limiteltolása [number] értékre csökken." reset: parameters: " " description: eltávolítja az anyag vagy entitás eltolását + success: "&a A [name] határeltolódása 0-ra van állítva." view: parameters: " " description: anyag vagy entitás eltolását jeleníti meg + message: "&a [name] eltolás értéke [number]." island: limits: description: Sziget limitek megtekintése @@ -40,6 +47,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Nincsenek korlátok ezen a világon" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From ac42be3e06af28dbd899ff44d01fcba21806b8a7 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:45:24 +0000 Subject: [PATCH 27/44] Translate ro.yml via GitLocalize --- src/main/resources/locales/ro.yml | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/main/resources/locales/ro.yml b/src/main/resources/locales/ro.yml index 44e0f84..b12bede 100644 --- a/src/main/resources/locales/ro.yml +++ b/src/main/resources/locales/ro.yml @@ -14,12 +14,41 @@ admin: parameters: "" description: recalculeaza limitele insulei pentru jocator finished: "&aRecalcularea insulei terminata cu succes!" + offset: + main: + description: permite gestionarea decalajelor de limite pentru materiale și + entități + set: + parameters: " " + description: stabilește o nouă compensare pentru limita de material sau entitate + add: + parameters: " " + description: adaugă compensare pentru limita de material sau entitate + remove: + parameters: " " + description: reduce compensarea pentru limita de material sau entitate + reset: + parameters: " " + description: elimină decalajul pentru material sau entitate + view: + parameters: " " + description: afișează offset pentru material sau entitate island: limits: description: iti arata limitele insulei max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cNici o limita setata in aceasta lume" + no-limits: "&c Nu există limite stabilite în această lume" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Insula aceea nu are proprietar" + not-on-island: "&c Această locație nu are limite setate." recount: description: renumara limitele insulei tale + now-recounting: "&b Acum povestind. Acest lucru ar putea dura ceva timp, vă + rugăm să așteptați..." + in-progress: "&c Recuperarea insulei este în curs. Va rugam asteptati..." + time-out: "&c Timpul expirat când relatați. Este insula cu adevărat mare?" From 574af3294ecd0923e0da452716e1ff3f1ff4975e Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:45:24 +0000 Subject: [PATCH 28/44] Translate ro.yml via GitLocalize --- src/main/resources/locales/ro.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/resources/locales/ro.yml b/src/main/resources/locales/ro.yml index b12bede..8a15672 100644 --- a/src/main/resources/locales/ro.yml +++ b/src/main/resources/locales/ro.yml @@ -15,24 +15,31 @@ admin: description: recalculeaza limitele insulei pentru jocator finished: "&aRecalcularea insulei terminata cu succes!" offset: + unknown: "&c Material sau entitate necunoscută [name]." main: description: permite gestionarea decalajelor de limite pentru materiale și entități set: parameters: " " description: stabilește o nouă compensare pentru limita de material sau entitate + success: "&a Decalajul limită pentru [name] este setat la [number]." + same: "&c Decalajul limită pentru [name] este deja [number]." add: parameters: " " description: adaugă compensare pentru limita de material sau entitate + success: "&a Compensarea limită pentru [name] este mărită până la [number]." remove: parameters: " " description: reduce compensarea pentru limita de material sau entitate + success: "&a Limita decalajului pentru [name] este redusă până la [number]." reset: parameters: " " description: elimină decalajul pentru material sau entitate + success: "&a Decalajul limită pentru [name] este setat la 0." view: parameters: " " description: afișează offset pentru material sau entitate + message: "&a [name] offset este setat la [number]." island: limits: description: iti arata limitele insulei @@ -41,6 +48,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Nu există limite stabilite în această lume" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From 09f25d4811599622aa5535d68e78415342b6b2c7 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:48:25 +0000 Subject: [PATCH 29/44] Translate ko.yml via GitLocalize --- src/main/resources/locales/ko.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/resources/locales/ko.yml diff --git a/src/main/resources/locales/ko.yml b/src/main/resources/locales/ko.yml new file mode 100644 index 0000000..80ed91a --- /dev/null +++ b/src/main/resources/locales/ko.yml @@ -0,0 +1,36 @@ +--- +block-limits: + hit-limit: "&c[material]는 [number]개로 제한됩니다!" +entity-limits: + hit-limit: "&c[entity]는 [number]개로 제한됩니다!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c 알 수 없는 자료 또는 엔터티 [name]." + main: {} + set: + success: "&a [name]에 대한 제한 오프셋이 [number]로 설정되었습니다." + same: "&c [name]에 대한 제한 오프셋은 이미 [number]입니다." + add: + success: "&a [name]에 대한 오프셋 제한이 [number]까지 증가합니다." + remove: + success: "&a [name]에 대한 오프셋 제한은 [number]까지 감소합니다." + reset: + success: "&a [name]에 대한 제한 오프셋이 0으로 설정되었습니다." + view: + message: "&a [name] 오프셋이 [number]로 설정되었습니다." +island: + limits: + max-color: "&c" + regular-color: "&a" + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + errors: {} + recount: {} From cf9159b30867e73e3cf4169d1dcba0a45f1ae6bb Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:48:26 +0000 Subject: [PATCH 30/44] Translate ko.yml via GitLocalize --- src/main/resources/locales/ko.yml | 39 ++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/ko.yml b/src/main/resources/locales/ko.yml index 80ed91a..e68cf59 100644 --- a/src/main/resources/locales/ko.yml +++ b/src/main/resources/locales/ko.yml @@ -3,34 +3,61 @@ block-limits: hit-limit: "&c[material]는 [number]개로 제한됩니다!" entity-limits: hit-limit: "&c[entity]는 [number]개로 제한됩니다!" -limits: {} +limits: + panel-title: 섬의 경계 admin: limits: - main: {} - calc: {} + main: + parameters: "<플레이어>" + description: 플레이어에게 섬의 한계를 보여주세요 + calc: + parameters: "<플레이어>" + description: 플레이어의 섬 한계를 다시 계산합니다 + finished: "&a 섬 재계산이 성공적으로 완료되었습니다!" offset: unknown: "&c 알 수 없는 자료 또는 엔터티 [name]." - main: {} + main: + description: 재료 및 엔티티에 대한 제한 오프셋을 관리할 수 있습니다. set: + parameters: "<플레이어> <소재|엔티티> <숫자>" + description: 재료 또는 엔티티 제한에 대한 새로운 오프셋을 설정합니다. success: "&a [name]에 대한 제한 오프셋이 [number]로 설정되었습니다." same: "&c [name]에 대한 제한 오프셋은 이미 [number]입니다." add: + parameters: "<플레이어> <소재|엔티티> <숫자>" + description: 재료 또는 엔티티 제한에 대한 오프셋을 추가합니다. success: "&a [name]에 대한 오프셋 제한이 [number]까지 증가합니다." remove: + parameters: "<플레이어> <소재|엔티티> <숫자>" + description: 재료 또는 엔티티 제한에 대한 오프셋을 줄입니다. success: "&a [name]에 대한 오프셋 제한은 [number]까지 감소합니다." reset: + parameters: "<플레이어> <소재|엔티티>" + description: 재료 또는 엔티티에 대한 오프셋을 제거합니다. success: "&a [name]에 대한 제한 오프셋이 0으로 설정되었습니다." view: + parameters: "<플레이어> <소재|엔티티>" + description: 재료 또는 엔티티에 대한 오프셋을 표시합니다. message: "&a [name] 오프셋이 [number]로 설정되었습니다." island: limits: + description: 섬의 경계를 보여주세요 max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c 이 세상에는 제한이 없습니다" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" - errors: {} - recount: {} + A2Z: 가 > 지 + Z2A: 지 > 아 + errors: + no-owner: "&c 그 섬에는 주인이 없다" + not-on-island: "&c 이 위치에는 제한이 설정되어 있지 않습니다." + recount: + description: 당신의 섬에 대한 한계를 다시 계산합니다 + now-recounting: "&b 지금 다시 계산 중입니다. 시간이 좀 걸릴 수 있으니 기다려 주세요..." + in-progress: "&c 섬 복구가 진행 중입니다. 잠시만 기다려 주세요..." + time-out: "&c 계산할 때 시간 초과. 섬이 정말 큰가요?" From 68cc0b84364f451c2829460d7bb39524223c1f36 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:50:30 +0000 Subject: [PATCH 31/44] Translate lv.yml via GitLocalize --- src/main/resources/locales/lv.yml | 53 +++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/src/main/resources/locales/lv.yml b/src/main/resources/locales/lv.yml index 6aef575..295d4ff 100644 --- a/src/main/resources/locales/lv.yml +++ b/src/main/resources/locales/lv.yml @@ -1,25 +1,52 @@ --- +block-limits: + hit-limit: "&c[material] ierobežots līdz [number]!" +entity-limits: + hit-limit: "&c[entity] rašanās ierobežots līdz [number]!" +limits: + panel-title: Salas ierobežojumi admin: limits: - calc: - description: pārrēķinā salas ierobežojumus priekš spēlētāja - parameters: "" - finished: "&aSalas ierobežojumu pārrēķināšana pabeigta!" main: + parameters: "" description: rāda salas ierobežojumus priekš spēlētāja + calc: parameters: "" -block-limits: - hit-limit: "&c[material] ierobežots līdz [number]!" -entity-limits: - hit-limit: "&c[entity] rašanās ierobežots līdz [number]!" + description: pārrēķinā salas ierobežojumus priekš spēlētāja + finished: "&aSalas ierobežojumu pārrēķināšana pabeigta!" + offset: + main: + description: ļauj pārvaldīt limitu kompensācijas materiāliem un entītijām + set: + parameters: " " + description: nosaka jaunu nobīdi materiāla vai entītijas ierobežojumam + add: + parameters: " " + description: pievieno nobīdi materiāla vai entītijas ierobežojumam + remove: + parameters: " " + description: samazina materiāla vai entītijas limita kompensāciju + reset: + parameters: " " + description: noņem materiāla vai entītijas nobīdi + view: + parameters: " " + description: parāda nobīdi materiālam vai vienībai island: limits: - block-limit-syntax: "[number]/[limit]" description: rāda tavas salas ierobežojumus max-color: "&c" - no-limits: "&cŠai pasaulei nav uzstādīti ierobežojumi" + regular-color: "&a" + block-limit-syntax: "[number]/[limit]" + no-limits: "&c Šajā pasaulē nav noteikti ierobežojumi" + panel: + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Tai salai nav saimnieka" + not-on-island: "&c Šai vietai nav noteikti ierobežojumi." recount: description: pārrēķina ierobežojumus tavai salai - regular-color: "&a" -limits: - panel-title: Salas ierobežojumi + now-recounting: "&b Tagad atstāsta. Tas var aizņemt kādu laiku, lūdzu, uzgaidiet..." + in-progress: "&c Notiek salas atjaunošana. Lūdzu, uzgaidiet..." + time-out: "&c Noildze, pārskaitot. Vai tiešām sala ir liela?" From 5b74acb32397179359c5f0c85a1a518e72d22bea Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:50:30 +0000 Subject: [PATCH 32/44] Translate lv.yml via GitLocalize --- src/main/resources/locales/lv.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/resources/locales/lv.yml b/src/main/resources/locales/lv.yml index 295d4ff..a0da1a6 100644 --- a/src/main/resources/locales/lv.yml +++ b/src/main/resources/locales/lv.yml @@ -15,23 +15,30 @@ admin: description: pārrēķinā salas ierobežojumus priekš spēlētāja finished: "&aSalas ierobežojumu pārrēķināšana pabeigta!" offset: + unknown: un c Nezināms materiāls vai vienība [name]. main: description: ļauj pārvaldīt limitu kompensācijas materiāliem un entītijām set: parameters: " " description: nosaka jaunu nobīdi materiāla vai entītijas ierobežojumam + success: "&a Ierobežojuma nobīde [name] ir iestatīta uz [number]." + same: "&c [name] limita nobīde jau ir [number]." add: parameters: " " description: pievieno nobīdi materiāla vai entītijas ierobežojumam + success: "&a Ierobežojuma nobīde [name] tiek palielināta līdz [number]." remove: parameters: " " description: samazina materiāla vai entītijas limita kompensāciju + success: "&a Ierobežojuma nobīde [name] tiek samazināta līdz [number]." reset: parameters: " " description: noņem materiāla vai entītijas nobīdi + success: "&a Ierobežojuma nobīde [name] ir iestatīta uz 0." view: parameters: " " description: parāda nobīdi materiālam vai vienībai + message: "&a [name] nobīde ir iestatīta uz [number]." island: limits: description: rāda tavas salas ierobežojumus @@ -40,6 +47,10 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Šajā pasaulē nav noteikti ierobežojumi" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z Z2A: z > a errors: From c1c656739fd0e0781ee7e37589036a3465029d30 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:53:30 +0000 Subject: [PATCH 33/44] Translate nl.yml via GitLocalize --- src/main/resources/locales/nl.yml | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/main/resources/locales/nl.yml diff --git a/src/main/resources/locales/nl.yml b/src/main/resources/locales/nl.yml new file mode 100644 index 0000000..a7725ac --- /dev/null +++ b/src/main/resources/locales/nl.yml @@ -0,0 +1,38 @@ +--- +block-limits: + hit-limit: "&c[material] beperkt tot [number]!" +entity-limits: + hit-limit: "&c[entity] spawning beperkt tot [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Onbekend materiaal of entiteit [name]." + main: {} + set: + success: "&a Limietoffset voor [name] is ingesteld op [number]." + same: "&c Limietoffset voor [name] is al [number]." + add: + success: "&a Limietoffset voor [name] is verhoogd tot [number]." + remove: + success: "&a Limietoffset voor [name] is verlaagd tot [number]." + reset: + success: "&a Limietoffset voor [name] is ingesteld op 0." + view: + message: "&a [name] offset is ingesteld op [number]." +island: + limits: + max-color: "&c" + regular-color: "&a" + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + A2Z: a > z + Z2A: z > a + errors: {} + recount: {} From 701e758a750d76de1e2b51377a1ceaf1ccd3a641 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:53:31 +0000 Subject: [PATCH 34/44] Translate nl.yml via GitLocalize --- src/main/resources/locales/nl.yml | 39 ++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/nl.yml b/src/main/resources/locales/nl.yml index a7725ac..34159f5 100644 --- a/src/main/resources/locales/nl.yml +++ b/src/main/resources/locales/nl.yml @@ -3,30 +3,50 @@ block-limits: hit-limit: "&c[material] beperkt tot [number]!" entity-limits: hit-limit: "&c[entity] spawning beperkt tot [number]!" -limits: {} +limits: + panel-title: Eilandgrenzen admin: limits: - main: {} - calc: {} + main: + parameters: "" + description: toon de eilandgrenzen voor de speler + calc: + parameters: "" + description: herbereken de eilandlimieten voor de speler + finished: "&a Eiland herberekening succesvol afgerond!" offset: unknown: "&c Onbekend materiaal of entiteit [name]." - main: {} + main: + description: maakt het mogelijk om limietoffsets voor materialen en entiteiten + te beheren set: + parameters: " " + description: stelt nieuwe offset in voor materiaal- of entiteitslimiet success: "&a Limietoffset voor [name] is ingesteld op [number]." same: "&c Limietoffset voor [name] is al [number]." add: + parameters: " " + description: voegt offset toe voor materiaal- of entiteitslimiet success: "&a Limietoffset voor [name] is verhoogd tot [number]." remove: + parameters: " " + description: vermindert offset voor materiaal- of entiteitslimiet success: "&a Limietoffset voor [name] is verlaagd tot [number]." reset: + parameters: " " + description: verwijdert offset voor materiaal of entiteit success: "&a Limietoffset voor [name] is ingesteld op 0." view: + parameters: " " + description: geeft offset weer voor materiaal of entiteit message: "&a [name] offset is ingesteld op [number]." island: limits: + description: toon uw eilandgrenzen max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c Er zijn geen grenzen gesteld in deze wereld" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" @@ -34,5 +54,12 @@ island: block-name-syntax: "[name]" A2Z: a > z Z2A: z > a - errors: {} - recount: {} + errors: + no-owner: "&c Dat eiland heeft geen eigenaar" + not-on-island: "&c Voor deze locatie zijn geen limieten ingesteld." + recount: + description: vertelt over de grenzen van uw eiland + now-recounting: "&b Nu aan het navertellen. Dit kan even duren, even geduld + aub..." + in-progress: "&c Eilandrecovery is bezig. Even geduld..." + time-out: "&c Time-out bij het navertellen. Is het eiland echt groot?" From c7be909aedf809e301c8e45cdbf498102ce482ed Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:55:29 +0000 Subject: [PATCH 35/44] Translate tr.yml via GitLocalize --- src/main/resources/locales/tr.yml | 52 ++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 12 deletions(-) diff --git a/src/main/resources/locales/tr.yml b/src/main/resources/locales/tr.yml index 9b8a968..d46e456 100644 --- a/src/main/resources/locales/tr.yml +++ b/src/main/resources/locales/tr.yml @@ -1,25 +1,53 @@ --- +block-limits: + hit-limit: "&e[material] &4eşyasından &5[number] &4koyabilirsin!" +entity-limits: + hit-limit: "&e[entity] &4varlığından &5[number] &4tane koyabilirsin!" +limits: + panel-title: "&eAda limiti" admin: limits: - calc: - description: Oyuncu için ada limitlerini tekrar hesapla. - parameters: "" - finished: "&aAda hesaplaması başarıyla yapıldı." main: + parameters: "" description: Oyuncu için ada limitlerini göster. + calc: parameters: "" + description: Oyuncu için ada limitlerini tekrar hesapla. + finished: "&aAda hesaplaması başarıyla yapıldı." + offset: + main: + description: malzemeler ve varlıklar için limit ofsetlerini yönetmeye olanak + tanır + set: + parameters: " " + description: malzeme veya varlık sınırı için yeni ofset ayarlar + add: + parameters: " " + description: malzeme veya varlık sınırı için ofset ekler + remove: + parameters: " " + description: malzeme veya varlık sınırı için ofseti azaltır + reset: + parameters: " " + description: malzeme veya varlık için ofseti kaldırır + view: + parameters: " " + description: malzeme veya varlık için ofseti görüntüler island: limits: - block-limit-syntax: "&5[number]&7/&e[limit]" description: Ada limitlerini gör. max-color: "&c" regular-color: "&9" - no-limits: "&4Bu dünyada limitler ayarlı değil!" + block-limit-syntax: "&5[number]&7/&e[limit]" + no-limits: "&c Bu dünyada hiçbir sınır belirlenmedi" + panel: + A2Z: a > z + errors: + no-owner: "&c O adanın bir sahibi yok" + not-on-island: "&c Bu lokasyonun belirlenmiş bir sınırı yok." recount: description: Ada limitlerini tekrardan hesaplar. -block-limits: - hit-limit: "&e[material] &4eşyasından &5[number] &4koyabilirsin!" -entity-limits: - hit-limit: "&e[entity] &4varlığından &5[number] &4tane koyabilirsin!" -limits: - panel-title: "&eAda limiti" + now-recounting: "&b Şimdi anlatmaya başlıyorum. Biraz zaman alabilir, lütfen + bekleyin..." + in-progress: "&c Ada geri kazanımı devam ediyor. Lütfen bekleyin..." + time-out: "&c Anlatırken zaman aşımı. Ada gerçekten büyük mü?" From c03583de5ff1cdef325cca01d5bd03d84d7b1bd2 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:55:30 +0000 Subject: [PATCH 36/44] Translate tr.yml via GitLocalize --- src/main/resources/locales/tr.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/resources/locales/tr.yml b/src/main/resources/locales/tr.yml index d46e456..9e1ae9b 100644 --- a/src/main/resources/locales/tr.yml +++ b/src/main/resources/locales/tr.yml @@ -15,24 +15,31 @@ admin: description: Oyuncu için ada limitlerini tekrar hesapla. finished: "&aAda hesaplaması başarıyla yapıldı." offset: + unknown: "&c Bilinmeyen malzeme veya varlık [name]." main: description: malzemeler ve varlıklar için limit ofsetlerini yönetmeye olanak tanır set: parameters: " " description: malzeme veya varlık sınırı için yeni ofset ayarlar + success: "&[name] için Limit ofseti [number] olarak ayarlandı." + same: "&c [name] için sınır ofseti zaten [number]'dır." add: parameters: " " description: malzeme veya varlık sınırı için ofset ekler + success: "&[name] için Limit ofseti [number]'ya kadar artırıldı." remove: parameters: " " description: malzeme veya varlık sınırı için ofseti azaltır + success: "&[name] için limit ofseti [number]'ya kadar azaltıldı." reset: parameters: " " description: malzeme veya varlık için ofseti kaldırır + success: "&[name] için Limit ofseti 0 olarak ayarlandı." view: parameters: " " description: malzeme veya varlık için ofseti görüntüler + message: "&a [name] ofseti [number] olarak ayarlandı." island: limits: description: Ada limitlerini gör. @@ -41,7 +48,12 @@ island: block-limit-syntax: "&5[number]&7/&e[limit]" no-limits: "&c Bu dünyada hiçbir sınır belirlenmedi" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z + Z2A: z > a errors: no-owner: "&c O adanın bir sahibi yok" not-on-island: "&c Bu lokasyonun belirlenmiş bir sınırı yok." From 5d908dff3784880478be4abc1a41e7c740457427 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 17:57:55 +0000 Subject: [PATCH 37/44] Translate uk.yml via GitLocalize --- src/main/resources/locales/uk.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/main/resources/locales/uk.yml diff --git a/src/main/resources/locales/uk.yml b/src/main/resources/locales/uk.yml new file mode 100644 index 0000000..3b32708 --- /dev/null +++ b/src/main/resources/locales/uk.yml @@ -0,0 +1,35 @@ +--- +block-limits: + hit-limit: "&c[material] обмежено [number]!" +entity-limits: + hit-limit: "&c[entity] породження обмежено до [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Невідомий матеріал або сутність [name]." + main: {} + set: + success: "&a Лімітне зміщення для [name] встановлено на [number]." + same: "&c Обмежене зміщення для [name] вже [number]." + add: + success: "&a Лімітне зміщення для [name] збільшується до [number]." + remove: + success: "&a Лімітне зміщення для [name] зменшується до [number]." + reset: + success: "&a Лімітне зміщення для [name] встановлено на 0." + view: + message: "&зміщення [name] встановлено на [number]." +island: + limits: + max-color: "&c" + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + errors: {} + recount: {} From a63d9805802a1077010d905fa404a07f802e9f13 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 17:57:57 +0000 Subject: [PATCH 38/44] Translate uk.yml via GitLocalize --- src/main/resources/locales/uk.yml | 40 ++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/uk.yml b/src/main/resources/locales/uk.yml index 3b32708..507459b 100644 --- a/src/main/resources/locales/uk.yml +++ b/src/main/resources/locales/uk.yml @@ -3,33 +3,61 @@ block-limits: hit-limit: "&c[material] обмежено [number]!" entity-limits: hit-limit: "&c[entity] породження обмежено до [number]!" -limits: {} +limits: + panel-title: Межі острова admin: limits: - main: {} - calc: {} + main: + parameters: "<гравець>" + description: показати обмеження острова для гравця + calc: + parameters: "<гравець>" + description: перерахувати обмеження острова для гравця + finished: Перерахунок острова успішно завершено! offset: unknown: "&c Невідомий матеріал або сутність [name]." - main: {} + main: + description: дозволяє керувати зсувами лімітів для матеріалів і сутностей set: + parameters: "<гравець> <матеріал|сутність> <номер>" + description: встановлює нове зміщення для обмеження матеріалу або сутності success: "&a Лімітне зміщення для [name] встановлено на [number]." same: "&c Обмежене зміщення для [name] вже [number]." add: + parameters: "<гравець> <матеріал|сутність> <номер>" + description: додає зсув для обмеження матеріалу або сутності success: "&a Лімітне зміщення для [name] збільшується до [number]." remove: + parameters: "<гравець> <матеріал|сутність> <номер>" + description: зменшує зсув для ліміту матеріалу або сутності success: "&a Лімітне зміщення для [name] зменшується до [number]." reset: + parameters: "<гравець> <матеріал|сутність>" + description: видаляє зсув для матеріалу або сутності success: "&a Лімітне зміщення для [name] встановлено на 0." view: + parameters: "<гравець> <матеріал|сутність>" + description: відображає зсув для матеріалу або сутності message: "&зміщення [name] встановлено на [number]." island: limits: + description: покажіть межі свого острова max-color: "&c" + regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c У цьому світі немає обмежень" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" - errors: {} - recount: {} + A2Z: a > z + Z2A: z > a + errors: + no-owner: "&c Цей острів не має власника" + not-on-island: "&c Це місце не має обмежень." + recount: + description: перераховує ліміти для вашого острова + now-recounting: "&b Тепер перераховую. Це може зайняти деякий час, зачекайте..." + in-progress: "&c Перерахування острова триває. Будь ласка, зачекайте..." + time-out: "&c Тайм-аут під час перерахунку. Чи справді острів великий?" From fc4c652d5bcce1c7f16b3f1ea893f35a34447e55 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 18:00:04 +0000 Subject: [PATCH 39/44] Translate vi.yml via GitLocalize --- src/main/resources/locales/vi.yml | 55 +++++++++++++++++++++---------- 1 file changed, 37 insertions(+), 18 deletions(-) diff --git a/src/main/resources/locales/vi.yml b/src/main/resources/locales/vi.yml index 1232d33..c4b3215 100644 --- a/src/main/resources/locales/vi.yml +++ b/src/main/resources/locales/vi.yml @@ -1,32 +1,51 @@ -########################################################################################### -# This is a YML file. Be careful when editing. Check your edits in a YAML checker like # -# the one at http://yaml-online-parser.appspot.com # -########################################################################################### - +--- block-limits: hit-limit: "&c[material] bị giới hạn trong [number] khối!" entity-limits: hit-limit: "&c[entity] bị giới hạn trong [number] thực thể!" limits: - panel-title: "Giới hạn đảo" - - + panel-title: Giới hạn đảo admin: limits: + main: + parameters: "" + description: xem giới hạn đảo của người chơi + calc: + parameters: "" + description: tính toán lại giới hạn đảo của người chơi + finished: "&aTính toán đã hoàn thành!" + offset: main: - parameters: "" - description: "xem giới hạn đảo của người chơi" - calc: - parameters: "" - description: "tính toán lại giới hạn đảo của người chơi" - finished: "&aTính toán đã hoàn thành!" - + description: cho phép quản lý các giới hạn bù trừ cho vật liệu và thực thể + set: + parameters: " " + description: thiết lập độ lệch mới cho giới hạn vật liệu hoặc thực thể + add: + parameters: " " + description: thêm độ lệch cho giới hạn vật liệu hoặc thực thể + remove: + parameters: " " + description: giảm độ lệch cho giới hạn vật liệu hoặc thực thể + reset: + parameters: " " + description: xóa phần bù cho vật liệu hoặc thực thể + view: + parameters: " " + description: hiển thị bù trừ cho vật liệu hoặc thực thể island: limits: - description: "xem giới hạn đảo của bạn" + description: xem giới hạn đảo của bạn max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" - no-limits: "&cKhông có giới hạn ở thế giới này" + no-limits: "&c Không có giới hạn nào được đặt ra trên thế giới này" + panel: + A2Z: a > z + errors: + no-owner: "&c Hòn đảo đó không có chủ sở hữu" + not-on-island: "&c Vị trí này không có giới hạn nào được đặt ra." recount: - description: "tính toán lại giới hạn đảo của bạn" + description: tính toán lại giới hạn đảo của bạn + now-recounting: "&b Đang đếm lại. Việc này có thể mất một lúc, vui lòng đợi..." + in-progress: "&c Đảo đang được thu hồi. Vui lòng đợi..." + time-out: "&c Hết giờ khi kể lại. Hòn đảo có thực sự lớn không?" From 1430abafc031f3e8ebd3ee8b2a4d53ed0fe34f76 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 18:00:06 +0000 Subject: [PATCH 40/44] Translate vi.yml via GitLocalize --- src/main/resources/locales/vi.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/resources/locales/vi.yml b/src/main/resources/locales/vi.yml index c4b3215..4ddf8cc 100644 --- a/src/main/resources/locales/vi.yml +++ b/src/main/resources/locales/vi.yml @@ -15,23 +15,30 @@ admin: description: tính toán lại giới hạn đảo của người chơi finished: "&aTính toán đã hoàn thành!" offset: + unknown: "&c Tài liệu hoặc thực thể không xác định [name]." main: description: cho phép quản lý các giới hạn bù trừ cho vật liệu và thực thể set: parameters: " " description: thiết lập độ lệch mới cho giới hạn vật liệu hoặc thực thể + success: "&a Độ lệch giới hạn cho [name] được đặt thành [number]." + same: "&c Độ lệch giới hạn cho [name] đã là [number]." add: parameters: " " description: thêm độ lệch cho giới hạn vật liệu hoặc thực thể + success: "&a Độ lệch giới hạn cho [name] được tăng lên cho đến [number]." remove: parameters: " " description: giảm độ lệch cho giới hạn vật liệu hoặc thực thể + success: "&a Độ lệch giới hạn cho [name] được giảm xuống đến [number]." reset: parameters: " " description: xóa phần bù cho vật liệu hoặc thực thể + success: "&a Độ lệch giới hạn cho [name] được đặt thành 0." view: parameters: " " description: hiển thị bù trừ cho vật liệu hoặc thực thể + message: "&a [name] bù trừ được đặt thành [number]." island: limits: description: xem giới hạn đảo của bạn @@ -40,7 +47,12 @@ island: block-limit-syntax: "[number]/[limit]" no-limits: "&c Không có giới hạn nào được đặt ra trên thế giới này" panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" A2Z: a > z + Z2A: z > a errors: no-owner: "&c Hòn đảo đó không có chủ sở hữu" not-on-island: "&c Vị trí này không có giới hạn nào được đặt ra." From 8e601a1357247b630643759d3d64a788ec0cfd21 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 18:02:28 +0000 Subject: [PATCH 41/44] Translate zh-TW.yml via GitLocalize --- src/main/resources/locales/zh-TW.yml | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/resources/locales/zh-TW.yml diff --git a/src/main/resources/locales/zh-TW.yml b/src/main/resources/locales/zh-TW.yml new file mode 100644 index 0000000..750d882 --- /dev/null +++ b/src/main/resources/locales/zh-TW.yml @@ -0,0 +1,36 @@ +--- +block-limits: + hit-limit: "&c[material]僅限[number]!" +entity-limits: + hit-limit: "&c[entity] 產生僅限於 [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c 未知材料或實體[name]。" + main: {} + set: + success: "&a [name] 的限制偏移量設定為 [number]。" + same: "&c [name] 的限制偏移量已經是 [number]。" + add: + success: "&a [name] 的限制偏移量增加到 [number]。" + remove: + success: "&a [name] 的限制偏移量減少到 [number]。" + reset: {} + view: + message: "&a [name] 偏移量設定為 [number]。" +island: + limits: + max-color: "&c" + regular-color: "&a" + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + A2Z: a > z + errors: {} + recount: {} From 266823f9e76e9e2a82fc6e4ab7a86bee90f449ae Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 18:02:29 +0000 Subject: [PATCH 42/44] Translate zh-TW.yml via GitLocalize --- src/main/resources/locales/zh-TW.yml | 41 +++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/src/main/resources/locales/zh-TW.yml b/src/main/resources/locales/zh-TW.yml index 750d882..20dd3fb 100644 --- a/src/main/resources/locales/zh-TW.yml +++ b/src/main/resources/locales/zh-TW.yml @@ -3,34 +3,61 @@ block-limits: hit-limit: "&c[material]僅限[number]!" entity-limits: hit-limit: "&c[entity] 產生僅限於 [number]!" -limits: {} +limits: + panel-title: 島嶼限制 admin: limits: - main: {} - calc: {} + main: + parameters: "<玩家>" + description: 顯示玩家的島嶼限制 + calc: + parameters: "<玩家>" + description: 重新計算玩家的島嶼限制 + finished: "&a 島嶼重新計算成功完成!" offset: unknown: "&c 未知材料或實體[name]。" - main: {} + main: + description: 允許管理材料和實體的限制偏移 set: + parameters: "<玩家> <材質|實體> <數字>" + description: 設定材料或實體限制的新偏移 success: "&a [name] 的限制偏移量設定為 [number]。" same: "&c [name] 的限制偏移量已經是 [number]。" add: + parameters: "<玩家> <材質|實體> <數字>" + description: 添加材料或實體限制的偏移量 success: "&a [name] 的限制偏移量增加到 [number]。" remove: + parameters: "<玩家> <材質|實體> <數字>" + description: 減少材料或實體限制的偏移 success: "&a [name] 的限制偏移量減少到 [number]。" - reset: {} + reset: + parameters: "<玩家> <材質|實體>" + description: 刪除材質或實體的偏移 + success: "&a [名稱] 的限制偏移量設定為 0。" view: + parameters: "<玩家> <材質|實體>" + description: 顯示材料或實體的偏移 message: "&a [name] 偏移量設定為 [number]。" island: limits: + description: 顯示您的島嶼限制 max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c 這個世界沒有限制" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" A2Z: a > z - errors: {} - recount: {} + Z2A: z > a + errors: + no-owner: "&c 那島沒有主人" + not-on-island: "&c 該位置沒有設定限制。" + recount: + description: 詳細說明您的島嶼的限制 + now-recounting: "&b 現在重述。這可能需要一段時間,請稍候..." + in-progress: "&c 島回收正在進行中。請稍等..." + time-out: "&c 重新計數時逾時。島真的很大嗎?" From 412553b40805f519fd4aeb642576fbfc7fbdd589 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 5 Oct 2024 18:04:31 +0000 Subject: [PATCH 43/44] Translate pt.yml via GitLocalize --- src/main/resources/locales/pt.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/resources/locales/pt.yml diff --git a/src/main/resources/locales/pt.yml b/src/main/resources/locales/pt.yml new file mode 100644 index 0000000..01853b1 --- /dev/null +++ b/src/main/resources/locales/pt.yml @@ -0,0 +1,36 @@ +--- +block-limits: + hit-limit: "&c[material] limitado a [number]!" +entity-limits: + hit-limit: "&c[entity] gerando limitado a [number]!" +limits: {} +admin: + limits: + main: {} + calc: {} + offset: + unknown: "&c Material ou entidade desconhecida [name]." + main: {} + set: + success: "&a O deslocamento de limite para [name] é definido como [number]." + same: "&c O deslocamento limite para [name] já é [number]." + add: + success: "&a O deslocamento de limite para [name] é aumentado até [number]." + remove: + success: "&a O deslocamento de limite para [name] é reduzido até [number]." + reset: + success: "&a O deslocamento de limite para [name] é definido como 0." + view: + message: "&a [name] deslocamento é definido como [number]." +island: + limits: + regular-color: "&a" + block-limit-syntax: "[number]/[limit]" + panel: + title-syntax: "[title] [sort]" + entity-group-name-syntax: "[name]" + entity-name-syntax: "[name]" + block-name-syntax: "[name]" + Z2A: z > a + errors: {} + recount: {} From c0eae7f98657afce5eff50ccc830cb146e71a0f8 Mon Sep 17 00:00:00 2001 From: mt-gitlocalize Date: Sat, 5 Oct 2024 18:04:32 +0000 Subject: [PATCH 44/44] Translate pt.yml via GitLocalize --- src/main/resources/locales/pt.yml | 39 ++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/src/main/resources/locales/pt.yml b/src/main/resources/locales/pt.yml index 01853b1..0470a20 100644 --- a/src/main/resources/locales/pt.yml +++ b/src/main/resources/locales/pt.yml @@ -3,34 +3,61 @@ block-limits: hit-limit: "&c[material] limitado a [number]!" entity-limits: hit-limit: "&c[entity] gerando limitado a [number]!" -limits: {} +limits: + panel-title: Limites da ilha admin: limits: - main: {} - calc: {} + main: + parameters: "" + description: mostrar os limites da ilha para o jogador + calc: + parameters: "" + description: recalcular os limites da ilha para o jogador + finished: "&a O recálculo da ilha foi concluído com sucesso!" offset: unknown: "&c Material ou entidade desconhecida [name]." - main: {} + main: + description: permite gerenciar limites de deslocamento para materiais e entidades set: + parameters: " " + description: define novo deslocamento para limite de material ou entidade success: "&a O deslocamento de limite para [name] é definido como [number]." same: "&c O deslocamento limite para [name] já é [number]." add: + parameters: " " + description: adiciona deslocamento para limite de material ou entidade success: "&a O deslocamento de limite para [name] é aumentado até [number]." remove: + parameters: " " + description: reduz o deslocamento para o limite de material ou entidade success: "&a O deslocamento de limite para [name] é reduzido até [number]." reset: + parameters: " " + description: remove deslocamento para material ou entidade success: "&a O deslocamento de limite para [name] é definido como 0." view: + parameters: " " + description: exibe deslocamento para material ou entidade message: "&a [name] deslocamento é definido como [number]." island: limits: + description: mostre os limites da sua ilha + max-color: "&c" regular-color: "&a" block-limit-syntax: "[number]/[limit]" + no-limits: "&c Não há limites neste mundo" panel: title-syntax: "[title] [sort]" entity-group-name-syntax: "[name]" entity-name-syntax: "[name]" block-name-syntax: "[name]" + A2Z: a > z Z2A: z > a - errors: {} - recount: {} + errors: + no-owner: "&c Aquela ilha não tem dono" + not-on-island: "&c Este local não possui limites definidos." + recount: + description: reconta limites para sua ilha + now-recounting: "&b Agora recontando. Isso pode demorar um pouco, aguarde..." + in-progress: "&c A recontagem da ilha está em andamento. Aguarde..." + time-out: "&c Tempo limite ao recontar. A ilha é realmente grande?"