Merge branch 'remove-eol-translation-strings' into v5

This commit is contained in:
N0tMyFaultOG 2020-05-10 17:02:13 +02:00
commit 773a993ee1
11 changed files with 53 additions and 262 deletions

View File

@ -1831,7 +1831,7 @@ public class PlotSquared {
setupStyle(); setupStyle();
} catch (IOException err) { } catch (IOException err) {
err.printStackTrace(); err.printStackTrace();
PlotSquared.log("failed to save style.yml"); PlotSquared.log("Failed to save style.yml");
} }
try { try {
this.storageFile = new File(folder, "storage.yml"); this.storageFile = new File(folder, "storage.yml");

View File

@ -104,7 +104,7 @@ public class Setup extends SubCommand {
if (args.length == 1) { if (args.length == 1) {
if (args[0].equalsIgnoreCase("cancel")) { if (args[0].equalsIgnoreCase("cancel")) {
player.deleteMeta("setup"); player.deleteMeta("setup");
MainUtil.sendMessage(player, "&aCancelled setup"); MainUtil.sendMessage(player, Captions.SETUP_CANCELLED);
return false; return false;
} }
if (args[0].equalsIgnoreCase("back")) { if (args[0].equalsIgnoreCase("back")) {
@ -125,8 +125,7 @@ public class Setup extends SubCommand {
case 0: // choose generator case 0: // choose generator
if (args.length != 1 || !SetupUtils.generators.containsKey(args[0])) { if (args.length != 1 || !SetupUtils.generators.containsKey(args[0])) {
String prefix = "\n&8 - &7"; String prefix = "\n&8 - &7";
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_WORLD_GENERATOR_ERROR + prefix + StringMan
"&cYou must choose a generator!" + prefix + StringMan
.join(SetupUtils.generators.keySet(), prefix) .join(SetupUtils.generators.keySet(), prefix)
.replaceAll(PlotSquared.imp().getPluginName(), .replaceAll(PlotSquared.imp().getPluginName(),
"&2" + PlotSquared.imp().getPluginName())); "&2" + PlotSquared.imp().getPluginName()));
@ -135,10 +134,7 @@ public class Setup extends SubCommand {
} }
object.setupGenerator = args[0]; object.setupGenerator = args[0];
object.current++; object.current++;
MainUtil.sendMessage(player, "&6What world type do you want?" MainUtil.sendMessage(player, Captions.SETUP_WORLD_TYPE);
+ "\n&8 - &2normal&8 - &7Standard plot generation"
+ "\n&8 - &7augmented&8 - &7Plot generation with terrain"
+ "\n&8 - &7partial&8 - &7Vanilla with clusters of plots");
break; break;
case 1: // choose world type case 1: // choose world type
List<String> allTypes = Arrays.asList("normal", "augmented", "partial"); List<String> allTypes = Arrays.asList("normal", "augmented", "partial");
@ -154,7 +150,7 @@ public class Setup extends SubCommand {
Optional<PlotAreaType> plotAreaType; Optional<PlotAreaType> plotAreaType;
if (args.length != 1 || !(plotAreaType = PlotAreaType.fromString(args[0])) if (args.length != 1 || !(plotAreaType = PlotAreaType.fromString(args[0]))
.isPresent()) { .isPresent()) {
MainUtil.sendMessage(player, "&cYou must choose a world type!"); MainUtil.sendMessage(player, Captions.SETUP_WORLD_TYPE_ERROR);
for (String type : types) { for (String type : types) {
int i = allTypes.indexOf(type); int i = allTypes.indexOf(type);
if (type.equals("normal")) { if (type.equals("normal")) {
@ -181,7 +177,7 @@ public class Setup extends SubCommand {
.processSetup(object); .processSetup(object);
} }
if (object.step.length == 0) { if (object.step.length == 0) {
MainUtil.sendMessage(player, "&6What do you want your world to be called?"); MainUtil.sendMessage(player, Captions.SETUP_WORLD_NAME);
object.setup_index = 0; object.setup_index = 0;
return true; return true;
} }
@ -201,53 +197,45 @@ public class Setup extends SubCommand {
.processSetup(object); .processSetup(object);
} else { } else {
object.plotManager = PlotSquared.imp().getPluginName(); object.plotManager = PlotSquared.imp().getPluginName();
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_WRONG_GENERATOR);
"&c[WARNING] The specified generator does not identify as BukkitPlotGenerator");
MainUtil.sendMessage(player,
"&7 - You may need to manually configure the other plugin");
object.step = object.step =
SetupUtils.generators.get(object.plotManager).getPlotGenerator() SetupUtils.generators.get(object.plotManager).getPlotGenerator()
.getNewPlotArea("CheckingPlotSquaredGenerator", null, null, null) .getNewPlotArea("CheckingPlotSquaredGenerator", null, null, null)
.getSettingNodes(); .getSettingNodes();
} }
if (object.type == PlotAreaType.PARTIAL) { if (object.type == PlotAreaType.PARTIAL) {
MainUtil.sendMessage(player, "What would you like this area called?"); MainUtil.sendMessage(player, Captions.SETUP_AREA_NAME);
object.current++; object.current++;
} else { } else {
MainUtil.sendMessage(player, "&6What terrain would you like in plots?" MainUtil.sendMessage(player, Captions.SETUP_PARTIAL_AREA);
+ "\n&8 - &2NONE&8 - &7No terrain at all"
+ "\n&8 - &7ORE&8 - &7Just some ore veins and trees"
+ "\n&8 - &7ROAD&8 - &7Terrain separated by roads"
+ "\n&8 - &7ALL&8 - &7Entirely vanilla generation");
object.current = 5; object.current = 5;
} }
} }
break; break;
case 2: // area id case 2: // area id
if (!StringMan.isAlphanumericUnd(args[0])) { if (!StringMan.isAlphanumericUnd(args[0])) {
MainUtil.sendMessage(player, "&cThe area id must be alphanumerical!"); MainUtil.sendMessage(player, Captions.SETUP_AREA_NON_ALPHANUMERICAL);
return false; return false;
} }
for (PlotArea area : PlotSquared.get().getPlotAreas()) { for (PlotArea area : PlotSquared.get().getPlotAreas()) {
if (area.getId() != null && area.getId().equalsIgnoreCase(args[0])) { if (area.getId() != null && area.getId().equalsIgnoreCase(args[0])) {
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_AREA_INVALID_ID);
"&cYou must choose an area id that is not in use!");
return false; return false;
} }
} }
object.id = args[0]; object.id = args[0];
object.current++; object.current++;
MainUtil.sendMessage(player, "&6What should be the minimum Plot Id?"); MainUtil.sendMessage(player, Captions.SETUP_AREA_MIN_PLOT_ID);
break; break;
case 3: // min case 3: // min
try { try {
object.min = PlotId.fromString(args[0]); object.min = PlotId.fromString(args[0]);
} catch (IllegalArgumentException ignored) { } catch (IllegalArgumentException ignored) {
MainUtil.sendMessage(player, "&cYou must choose a valid minimum PlotId!"); MainUtil.sendMessage(player, Captions.SETUP_AREA_MIN_PLOT_ID_ERROR);
return false; return false;
} }
object.current++; object.current++;
MainUtil.sendMessage(player, "&6What should be the maximum Plot Id?"); MainUtil.sendMessage(player, Captions.SETUP_AREA_MAX_PLOT_ID);
break; break;
case 4: case 4:
// max // max
@ -255,31 +243,23 @@ public class Setup extends SubCommand {
try { try {
id = PlotId.fromString(args[0]); id = PlotId.fromString(args[0]);
} catch (IllegalArgumentException ignored) { } catch (IllegalArgumentException ignored) {
MainUtil.sendMessage(player, "&cYou must choose a valid maximum PlotId!"); MainUtil.sendMessage(player, Captions.SETUP_AREA_MAX_PLOT_ID_ERROR);
return false; return false;
} }
if (id.x <= object.min.x || id.y <= object.min.y) { if (id.x <= object.min.x || id.y <= object.min.y) {
MainUtil MainUtil
.sendMessage(player, "&cThe max PlotId must be greater than the minimum!"); .sendMessage(player, Captions.SETUP_AREA_PLOT_ID_GREATER_THAN_MINIMUM);
return false; return false;
} }
object.max = id; object.max = id;
object.current++; object.current++;
MainUtil.sendMessage(player, "&6What terrain would you like in plots?" MainUtil.sendMessage(player, Captions.SETUP_PARTIAL_AREA);
+ "\n&8 - &2NONE&8 - &7No terrain at all"
+ "\n&8 - &7ORE&8 - &7Just some ore veins and trees"
+ "\n&8 - &7ROAD&8 - &7Terrain separated by roads"
+ "\n&8 - &7ALL&8 - &7Entirely vanilla generation");
break; break;
case 5: { // Choose terrain case 5: { // Choose terrain
Optional<PlotAreaTerrainType> optTerrain; Optional<PlotAreaTerrainType> optTerrain;
if (args.length != 1 || !(optTerrain = PlotAreaTerrainType.fromString(args[0])) if (args.length != 1 || !(optTerrain = PlotAreaTerrainType.fromString(args[0]))
.isPresent()) { .isPresent()) {
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_PARTIAL_AREA_ERROR, Captions.SETUP_PARTIAL_AREA);
"&cYou must choose the terrain!" + "\n&8 - &2NONE&8 - &7No terrain at all"
+ "\n&8 - &7ORE&8 - &7Just some ore veins and trees"
+ "\n&8 - &7ROAD&8 - &7Terrain separated by roads"
+ "\n&8 - &7ALL&8 - &7Entirely vanilla generation");
return false; return false;
} }
object.terrain = optTerrain.get(); object.terrain = optTerrain.get();
@ -297,7 +277,7 @@ public class Setup extends SubCommand {
} }
case 6: // world setup case 6: // world setup
if (object.setup_index == object.step.length) { if (object.setup_index == object.step.length) {
MainUtil.sendMessage(player, "&6What do you want your world to be called?"); MainUtil.sendMessage(player, Captions.SETUP_WORLD_NAME);
object.setup_index = 0; object.setup_index = 0;
object.current++; object.current++;
return true; return true;
@ -339,23 +319,19 @@ public class Setup extends SubCommand {
} }
case 7: case 7:
if (args.length != 1) { if (args.length != 1) {
MainUtil.sendMessage(player, "&cYou need to choose a world name!"); MainUtil.sendMessage(player, Captions.SETUP_WORLD_NAME_ERROR);
return false; return false;
} }
if (!d(args[0])) { if (!d(args[0])) {
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_WORLD_NAME_FORMAT + args[0]);
"Non [a-z0-9_.-] character in the world name: " + args[0]);
return false; return false;
} }
if (WorldUtil.IMP.isWorld(args[0])) { if (WorldUtil.IMP.isWorld(args[0])) {
if (PlotSquared.get().hasPlotArea(args[0])) { if (PlotSquared.get().hasPlotArea(args[0])) {
MainUtil.sendMessage(player, "&cThat world name is already taken!"); MainUtil.sendMessage(player, Captions.SETUP_WORLD_NAME_TAKEN);
return false; return false;
} }
MainUtil.sendMessage(player, MainUtil.sendMessage(player, Captions.SETUP_WORLD_APPLY_PLOTSQUARED);
"&cThe world you specified already exists. After restarting, new terrain will use "
+ PlotSquared.imp().getPluginName() + ", however you may need to "
+ "reset the world for it to generate correctly!");
} }
object.world = args[0]; object.world = args[0];
player.deleteMeta("setup"); player.deleteMeta("setup");

View File

@ -185,15 +185,6 @@ public enum Captions implements Caption {
PERMISSION_ALIAS_REMOVE("plots.alias.remove", "static.permissions"), PERMISSION_ALIAS_REMOVE("plots.alias.remove", "static.permissions"),
PERMISSION_ADMIN_CHAT_BYPASS("plots.admin.chat.bypass", "static.permissions"), PERMISSION_ADMIN_CHAT_BYPASS("plots.admin.chat.bypass", "static.permissions"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Static Console">
CONSOLE_JAVA_OUTDATED(
"&cYour version of java is outdated. It is highly recommended that you update to Java 8 as it increases performance "
+ "and security. %s0 will require Java 8 in a future update.",
"static.console"),
CONSOLE_PLEASE_ENABLE_METRICS(
"&dPlease enable metrics for %s0. Using metrics improves plugin stability, performance, and features. "
+ "Bug fixes and new features are influenced on metrics.", "static.console"),
//</editor-fold>
//<editor-fold desc="Confirm"> //<editor-fold desc="Confirm">
EXPIRED_CONFIRM("$2Confirmation has expired, please run the command again!", "Confirm"), EXPIRED_CONFIRM("$2Confirmation has expired, please run the command again!", "Confirm"),
FAILED_CONFIRM("$2You have no pending actions to confirm!", "Confirm"), FAILED_CONFIRM("$2You have no pending actions to confirm!", "Confirm"),
@ -259,8 +250,6 @@ public enum Captions implements Caption {
//</editor-fold> //</editor-fold>
//<editor-fold desc="Swap"> //<editor-fold desc="Swap">
SWAP_OVERLAP("$2The proposed areas are not allowed to overlap", "Swap"), SWAP_OVERLAP("$2The proposed areas are not allowed to overlap", "Swap"),
SWAP_DIMENSIONS("$2The proposed areas must have comparable dimensions", "Swap"),
SWAP_SYNTAX("$2/plot swap <id>", "Swap"),
SWAP_SUCCESS("$4Successfully swapped plots", "Swap"), SWAP_SUCCESS("$4Successfully swapped plots", "Swap"),
SWAP_MERGED("$2Merged plots may not be swapped. Please unmerge the plot before performing the swap.", "Swap"), SWAP_MERGED("$2Merged plots may not be swapped. Please unmerge the plot before performing the swap.", "Swap"),
//</editor-fold> //</editor-fold>
@ -276,7 +265,6 @@ public enum Captions implements Caption {
COMMENT_REMOVED_SUCCESS("$4Successfully deleted comment/s:n$2 - '$3%s$2'", "Comment"), COMMENT_REMOVED_SUCCESS("$4Successfully deleted comment/s:n$2 - '$3%s$2'", "Comment"),
COMMENT_REMOVED_FAILURE("$4Failed to delete comment!", "Comment"), COMMENT_REMOVED_FAILURE("$4Failed to delete comment!", "Comment"),
COMMENT_ADDED("$4A comment has been left", "Comment"), COMMENT_ADDED("$4A comment has been left", "Comment"),
COMMENT_HEADER("$2&m---------&r $1Comments $2&m---------&r", "Comment"),
INBOX_EMPTY("$2No comments", "Comment"), INBOX_EMPTY("$2No comments", "Comment"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Console"> //<editor-fold desc="Console">
@ -333,20 +321,40 @@ public enum Captions implements Caption {
"$4You should have been teleported to the created world. Otherwise you will need to set the generator manually using the bukkit.yml or " "$4You should have been teleported to the created world. Otherwise you will need to set the generator manually using the bukkit.yml or "
+ "your chosen world management plugin.", "Setup"), + "your chosen world management plugin.", "Setup"),
SETUP_WORLD_TAKEN("$2%s is already a world", "Setup"), SETUP_WORLD_TAKEN("$2%s is already a world", "Setup"),
SETUP_MISSING_WORLD( SETUP_CANCELLED("$7Cancelled setup.", "Setup"),
"$2You need to specify a world name ($1/plot setup &l<world>$1 <generator>$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 -" SETUP_WORLD_NAME("$1What do you want your world to be called?", "Setup"),
+ " $1/plot setup back&-$2 - $1/plot setup cancel", "Setup"), SETUP_WORLD_NAME_ERROR("$7You need to choose a world name!", "Setup"),
SETUP_MISSING_GENERATOR( SETUP_WORLD_NAME_TAKEN("$7That world name is already taken!", "Setup"),
"$2You need to specify a generator ($1/plot setup <world> &l<generator>&r$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 - " SETUP_WORLD_GENERATOR_ERROR("$7You must choose a generator!", "Setup"),
+ "$1/plot setup back&-$2 - $1/plot setup cancel", "Setup"), SETUP_WORLD_TYPE("$1What world type do you want?&-"
+ "$3 - $6normal$3 - $2Standard plot generation&-"
SETUP_INVALID_GENERATOR("$2Invalid generator. Possible options: %s", "Setup"), + "$3 - $6augmented$3 - $2Plot generation with terrain&-"
+ "$3 - $6partial$3 - $2Vanilla with clusters of plots", "Setup"),
SETUP_WORLD_TYPE_ERROR("$7You must choose a world type!", "Setup"),
SETUP_WRONG_GENERATOR("$7The specified generator does not identify as BukkitPlotGenerator"
+ "$3 - $6You may need to manually configure the other plugin", "Setup"),
SETUP_WORLD_NAME_FORMAT("$7Non [a-z0-9_.-] character in the world name:$1 ", "Setup"),
SETUP_WORLD_APPLY_PLOTSQUARED("$7The world you specified already exists. After restarting, new terrain will use "
+ "$1PlotSquared$7, however you may need to reset the world for it to generate correctly!", "Setup"),
SETUP_PARTIAL_AREA("$1What terrain would you like in plots?&-"
+ "$3 - $6NONE$3 - $2No terrain at all&-"
+ "$3 - $6ORE$3 - $2Just some ore veins and trees&-"
+ "$3 - $6ROAD$3 - $2Terrain separated by roads&-"
+ "$3 - $6ALL$3 - $2Entirely vanilla generation", "Setup"),
SETUP_PARTIAL_AREA_ERROR("$7You must choose the terrain!", "Setup"),
SETUP_AREA_NAME("$1What would you like this area called?", "Setup"),
SETUP_AREA_NON_ALPHANUMERICAL("$7The area id must be alphanumerical!", "Setup"),
SETUP_AREA_INVALID_ID("$7You must choose an area id that is not in use!", "Setup"),
SETUP_AREA_MIN_PLOT_ID("$1What should be the minimum Plot Id?", "Setup"),
SETUP_AREA_MIN_PLOT_ID_ERROR("$7You must choose a valid minimum Plot Id!", "Setup"),
SETUP_AREA_MAX_PLOT_ID("$1What should be the maximum Plot Id?", "Setup"),
SETUP_AREA_MAX_PLOT_ID_ERROR("$7You must choose a valid maximum Plot Id!", "Setup"),
SETUP_AREA_PLOT_ID_GREATER_THAN_MINIMUM("$7The max PlotId must be greater than the minimum!", "Setup"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Schematic"> //<editor-fold desc="Schematic">
SCHEMATIC_TOO_LARGE("$2The plot is too large for this action!", "Schematics"), SCHEMATIC_TOO_LARGE("$2The plot is too large for this action!", "Schematics"),
SCHEMATIC_MISSING_ARG("$2You need to specify an argument. Possible values: $1save$2, $1paste $2, $1exportall$2, $1list", "Schematics"), SCHEMATIC_MISSING_ARG("$2You need to specify an argument. Possible values: $1save$2, $1paste $2, $1exportall$2, $1list", "Schematics"),
SCHEMATIC_INVALID("$2That is not a valid schematic. Reason: $2%s", "Schematics"), SCHEMATIC_INVALID("$2That is not a valid schematic. Reason: $2%s", "Schematics"),
SCHEMATIC_VALID("$2That is a valid schematic", "Schematics"),
SCHEMATIC_PASTE_MERGED("$2Schematics cannot be pasted onto merged plots. Please unmerge the plot before performing the paste.", "Schematics"), SCHEMATIC_PASTE_MERGED("$2Schematics cannot be pasted onto merged plots. Please unmerge the plot before performing the paste.", "Schematics"),
SCHEMATIC_PASTE_FAILED("$2Failed to paste the schematic", "Schematics"), SCHEMATIC_PASTE_FAILED("$2Failed to paste the schematic", "Schematics"),
SCHEMATIC_PASTE_SUCCESS("$4The schematic pasted successfully", "Schematics"), SCHEMATIC_PASTE_SUCCESS("$4The schematic pasted successfully", "Schematics"),
@ -356,8 +364,6 @@ public enum Captions implements Caption {
SCHEMATIC_EXPORTALL_STARTED("$1Starting export...", "Schematics"), SCHEMATIC_EXPORTALL_STARTED("$1Starting export...", "Schematics"),
SCHEMATIC_EXPORTALL_WORLD_ARGS("$1Need world argument. Use $3/plot sch exportall <area>", "Schematics"), SCHEMATIC_EXPORTALL_WORLD_ARGS("$1Need world argument. Use $3/plot sch exportall <area>", "Schematics"),
SCHEMATIC_EXPORTALL_WORLD("$1Invalid world. Use &3/plot sch exportall <area>", "Schematic"), SCHEMATIC_EXPORTALL_WORLD("$1Invalid world. Use &3/plot sch exportall <area>", "Schematic"),
SCHEMATIC_EXPORTALL_MASS_STARTED("$1Schematic mass export has been started. This may take a while", "Schematics"),
SCHEMATIC_EXPORTALL_COUNT("$1Found $3%s $1plots...", "Schematics"),
SCHEMATIC_EXPORTALL_FINISHED("$1Finished mass export", "Schematics"), SCHEMATIC_EXPORTALL_FINISHED("$1Finished mass export", "Schematics"),
SCHEMATIC_EXPORTALL_SINGLE_FINISHED("$1Finished export", "Schematics"), SCHEMATIC_EXPORTALL_SINGLE_FINISHED("$1Finished export", "Schematics"),
TASK_IN_PROCESS("$1Task is already running.", "Error"), TASK_IN_PROCESS("$1Task is already running.", "Error"),
@ -383,7 +389,6 @@ public enum Captions implements Caption {
//<editor-fold desc="Alias"> //<editor-fold desc="Alias">
ALIAS_SET_TO("$2Plot alias set to $1%alias%", "Alias"), ALIAS_SET_TO("$2Plot alias set to $1%alias%", "Alias"),
ALIAS_REMOVED("$2Plot alias removed", "Alias"), ALIAS_REMOVED("$2Plot alias removed", "Alias"),
ALIAS_TOO_LONG("$2The alias must be < 50 characters in length", "Alias"), ALIAS_TOO_LONG("$2The alias must be < 50 characters in length", "Alias"),
ALIAS_IS_TAKEN("$2That alias is already taken", "Alias"), ALIAS_IS_TAKEN("$2That alias is already taken", "Alias"),
//</editor-fold> //</editor-fold>
@ -399,7 +404,6 @@ public enum Captions implements Caption {
NO_PLOT_PERMS("$2You must be the plot owner to perform this action", "Permission"), NO_PLOT_PERMS("$2You must be the plot owner to perform this action", "Permission"),
CANT_CLAIM_MORE_PLOTS("$2You can't claim more plots.", "Permission"), CANT_CLAIM_MORE_PLOTS("$2You can't claim more plots.", "Permission"),
CANT_CLAIM_MORE_CLUSTERS("$2You can't claim more clusters.", "Permission"), CANT_CLAIM_MORE_CLUSTERS("$2You can't claim more clusters.", "Permission"),
CANT_TRANSFER_MORE_PLOTS("$2You can't send more plots to that user", "Permission"), CANT_TRANSFER_MORE_PLOTS("$2You can't send more plots to that user", "Permission"),
CANT_CLAIM_MORE_PLOTS_NUM("$2You can't claim more than $1%s $2plots at once", "Permission"), CANT_CLAIM_MORE_PLOTS_NUM("$2You can't claim more than $1%s $2plots at once", "Permission"),
//</editor-fold> //</editor-fold>
@ -409,7 +413,6 @@ public enum Captions implements Caption {
SUCCESS_MERGE("$2Plots have been merged!", "Merge"), SUCCESS_MERGE("$2Plots have been merged!", "Merge"),
MERGE_REQUESTED("$2Successfully sent a merge request", "Merge"), MERGE_REQUESTED("$2Successfully sent a merge request", "Merge"),
MERGE_REQUEST_CONFIRM("Merge request from %s", "Permission"), MERGE_REQUEST_CONFIRM("Merge request from %s", "Permission"),
NO_PERM_MERGE("$2You are not the owner of the plot: $1%plot%", "Merge"),
NO_AVAILABLE_AUTOMERGE("$2You do not own any adjacent plots in the specified direction or are not allowed to merge to the required size.", "Merge"), NO_AVAILABLE_AUTOMERGE("$2You do not own any adjacent plots in the specified direction or are not allowed to merge to the required size.", "Merge"),
UNLINK_IMPOSSIBLE("$2You can only unlink a mega-plot", "Merge"), UNLINK_IMPOSSIBLE("$2You can only unlink a mega-plot", "Merge"),
UNMERGE_CANCELLED("$1Unlink has been cancelled", "Merge"), UNMERGE_CANCELLED("$1Unlink has been cancelled", "Merge"),
@ -429,7 +432,6 @@ public enum Captions implements Caption {
COMMAND_WENT_WRONG("$2Something went wrong when executing that command...", "Errors"), COMMAND_WENT_WRONG("$2Something went wrong when executing that command...", "Errors"),
NO_FREE_PLOTS("$2There are no free plots available", "Errors"), NO_FREE_PLOTS("$2There are no free plots available", "Errors"),
NOT_IN_PLOT("$2You're not in a plot", "Errors"), NOT_IN_PLOT("$2You're not in a plot", "Errors"),
NOT_LOADED("$2The plot could not be loaded", "Errors"),
NOT_IN_CLUSTER("$2You must be within a plot cluster to perform that action", "Errors"), NOT_IN_CLUSTER("$2You must be within a plot cluster to perform that action", "Errors"),
NOT_IN_PLOT_WORLD("$2You're not in a plot area", "Errors"), NOT_IN_PLOT_WORLD("$2You're not in a plot area", "Errors"),
PLOTWORLD_INCOMPATIBLE("$2The two worlds must be compatible", "Errors"), PLOTWORLD_INCOMPATIBLE("$2The two worlds must be compatible", "Errors"),
@ -532,28 +534,20 @@ public enum Captions implements Caption {
AREA_LIST_HEADER_PAGED("$2(Page $1%cur$2/$1%max$2) $1List of %amount% areas", "List"), AREA_LIST_HEADER_PAGED("$2(Page $1%cur$2/$1%max$2) $1List of %amount% areas", "List"),
PLOT_LIST_HEADER_PAGED("$2(Page $1%cur$2/$1%max$2) $1List of %amount% plots", "List"), PLOT_LIST_HEADER_PAGED("$2(Page $1%cur$2/$1%max$2) $1List of %amount% plots", "List"),
PLOT_LIST_HEADER("$1List of %word% plots", "List"), PLOT_LIST_HEADER("$1List of %word% plots", "List"),
PLOT_LIST_ITEM("$2>> $1%id$2:$1%world $2- $1%owner", "List"),
PLOT_LIST_ITEM_ORDERED("$2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner", "List"),
PLOT_LIST_FOOTER("$2>> $1%word% a total of $2%num% $1claimed %plot%.", "List"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Chat"> //<editor-fold desc="Chat">
PLOT_CHAT_SPY_FORMAT("$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%", "Chat"), PLOT_CHAT_SPY_FORMAT("$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%", "Chat"),
PLOT_CHAT_FORMAT("$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%", "Chat"), PLOT_CHAT_FORMAT("$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%", "Chat"),
PLOT_CHAT_FORCED("$2This world forces everyone to use plot chat.", "Chat"), PLOT_CHAT_FORCED("$2This world forces everyone to use plot chat.", "Chat"),
PLOT_CHAT_ON("$4Plot chat enabled.", "Chat"),
PLOT_CHAT_OFF("$4Plot chat disabled.", "Chat"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Deny"> //<editor-fold desc="Deny">
DENIED_ADDED("$4You successfully denied the player from this plot", "Deny"), DENIED_ADDED("$4You successfully denied the player from this plot", "Deny"),
DENIED_NEED_ARGUMENT("$2Arguments are missing. $1/plot denied add <name> $2or $1/plot denied remove <name>", "Deny"),
WAS_NOT_DENIED("$2That player was not denied on this plot", "Deny"),
YOU_GOT_DENIED("$4You are denied from the plot you were previously on, and got teleported to spawn", "Deny"), YOU_GOT_DENIED("$4You are denied from the plot you were previously on, and got teleported to spawn", "Deny"),
CANT_REMOVE_OWNER("$2You can't remove the plot owner", "Deny"), CANT_REMOVE_OWNER("$2You can't remove the plot owner", "Deny"),
//</editor-fold> //</editor-fold>
YOU_GOT_KICKED("$4You got kicked!", "Kick"), YOU_GOT_KICKED("$4You got kicked!", "Kick"),
//<editor-fold desc="Flag"> //<editor-fold desc="Flag">
FLAG_KEY("$2Key: %s", "Flag"), FLAG_KEY("$2Key: %s", "Flag"),
FLAG_TYPE("$2Type: %s", "Flag"),
FLAG_DESC("$2Desc: %s", "Flag"), FLAG_DESC("$2Desc: %s", "Flag"),
NOT_VALID_FLAG("$2That is not a valid flag", "Flag"), NOT_VALID_FLAG("$2That is not a valid flag", "Flag"),
NOT_VALID_FLAG_SUGGESTED("$2That is not a valid flag. Did you mean: $1%s", "Flag"), NOT_VALID_FLAG_SUGGESTED("$2That is not a valid flag. Did you mean: $1%s", "Flag"),
@ -564,7 +558,6 @@ public enum Captions implements Caption {
FLAG_PARTIALLY_REMOVED("$4Successfully removed flag value(s)", "Flag"), FLAG_PARTIALLY_REMOVED("$4Successfully removed flag value(s)", "Flag"),
FLAG_ADDED("$4Successfully added flag", "Flag"), FLAG_ADDED("$4Successfully added flag", "Flag"),
FLAG_TUTORIAL_USAGE("$1Have an admin set the flag: $2%s", "CommandConfig"), FLAG_TUTORIAL_USAGE("$1Have an admin set the flag: $2%s", "CommandConfig"),
FLAG_LIST_ENTRY("$2%s: $1%s", "Flag"),
FLAG_LIST_SEE_INFO("Click to view information about the flag", "Flag"), FLAG_LIST_SEE_INFO("Click to view information about the flag", "Flag"),
FLAG_PARSE_ERROR("$2Failed to parse flag '%flag_name%', value '%flag_value%': %error%", "Flag"), FLAG_PARSE_ERROR("$2Failed to parse flag '%flag_name%', value '%flag_value%': %error%", "Flag"),
//</editor-fold> //</editor-fold>
@ -694,7 +687,6 @@ public enum Captions implements Caption {
//</editor-fold> //</editor-fold>
//<editor-fold desc="Trusted"> //<editor-fold desc="Trusted">
TRUSTED_ADDED("$4You successfully trusted a user to the plot", "Trusted"), TRUSTED_ADDED("$4You successfully trusted a user to the plot", "Trusted"),
WAS_NOT_ADDED("$2That player was not trusted on this plot", "Trusted"),
PLOT_REMOVED_USER("$1Plot %s of which you were added to has been deleted due to owner inactivity", "Trusted"), PLOT_REMOVED_USER("$1Plot %s of which you were added to has been deleted due to owner inactivity", "Trusted"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Member"> //<editor-fold desc="Member">
@ -727,8 +719,6 @@ public enum Captions implements Caption {
HELP_DISPLAY_ALL_COMMANDS("Display all commands", "Help"), HELP_DISPLAY_ALL_COMMANDS("Display all commands", "Help"),
DIRECTION("$1Current direction: %dir%", "Help"), DIRECTION("$1Current direction: %dir%", "Help"),
//</editor-fold> //</editor-fold>
BUCKET_ENTRIES_IGNORED("$2Total bucket values add up to 1 or more. Blocks without a specified chance will be ignored","Generator_Bucket"),
//<editor-fold desc="Command Categories"> //<editor-fold desc="Command Categories">
COMMAND_CATEGORY_CLAIMING("Claiming", "Category"), COMMAND_CATEGORY_CLAIMING("Claiming", "Category"),
COMMAND_CATEGORY_TELEPORT("Teleport", "Category"), COMMAND_CATEGORY_TELEPORT("Teleport", "Category"),
@ -740,17 +730,13 @@ public enum Captions implements Caption {
COMMAND_CATEGORY_DEBUG("Debug", "Category"), COMMAND_CATEGORY_DEBUG("Debug", "Category"),
COMMAND_CATEGORY_ADMINISTRATION("Admin", "Category"), COMMAND_CATEGORY_ADMINISTRATION("Admin", "Category"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Grants"> //<editor-fold desc="Grants">
GRANTED_PLOTS("$1Result: $2%s $1grants left", "Grants"), GRANTED_PLOTS("$1Result: $2%s $1grants left", "Grants"),
GRANTED_PLOT("$1You granted %s0 plot to $2%s1", "Grants"), GRANTED_PLOT("$1You granted %s0 plot to $2%s1", "Grants"),
GRANTED_PLOT_FAILED("$1Grant failed: $2%s", "Grants"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Events"> //<editor-fold desc="Events">
EVENT_DENIED("$1%s $2Cancelled by external plugin.", "Events"), EVENT_DENIED("$1%s $2Cancelled by external plugin.", "Events"),
//</editor-fold> //</editor-fold>
//<editor-fold desc="Caps"> //<editor-fold desc="Caps">
PLOT_CAPS_HEADER("$3&m---------&r $1CAPS $3&m---------", false, "Info"), PLOT_CAPS_HEADER("$3&m---------&r $1CAPS $3&m---------", false, "Info"),
PLOT_CAPS_FORMAT("$2- Cap Type: $1%cap% $2| Status: $1%current%$2/$1%limit% $2($1%percentage%%$2)", PLOT_CAPS_FORMAT("$2- Cap Type: $1%cap% $2| Status: $1%current%$2/$1%limit% $2($1%percentage%%$2)",

View File

@ -63,8 +63,6 @@ records:
notify_leave: $2%player $2verließ deinen Plot ($1%plot$2) notify_leave: $2%player $2verließ deinen Plot ($1%plot$2)
swap: swap:
swap_overlap: $2Der geplante Bereich darf nicht überlappen. swap_overlap: $2Der geplante Bereich darf nicht überlappen.
swap_dimensions: $2Die geplanten Bereiche müssen vergleichbare Dimensionen aufweisen.
swap_syntax: $2/plot swap <plot id>
swap_success: $4Plots erfolgreich getauscht. swap_success: $4Plots erfolgreich getauscht.
started_swap: $2Plot swap Aufgabe gestartet. Du erhälst eine Meldung wenn sie beendet started_swap: $2Plot swap Aufgabe gestartet. Du erhälst eine Meldung wenn sie beendet
ist. ist.
@ -78,7 +76,6 @@ comment:
no_plot_inbox: $2Du musst an einem Plot stehen oder einen solchen angeben. no_plot_inbox: $2Du musst an einem Plot stehen oder einen solchen angeben.
comment_removed: $4Kommentar/e n$2 - '$3%s$2' erfolgreich gelöscht. comment_removed: $4Kommentar/e n$2 - '$3%s$2' erfolgreich gelöscht.
comment_added: $4Ein Kommentar wurde hinterlassen. comment_added: $4Ein Kommentar wurde hinterlassen.
comment_header: $2------ Kommentare ------
inbox_notification: '%s ungelesene Nachrichten. Öffne sie mit /plot inbox' inbox_notification: '%s ungelesene Nachrichten. Öffne sie mit /plot inbox'
inbox_empty: $2Keine Kommentare. inbox_empty: $2Keine Kommentare.
console: console:
@ -122,17 +119,11 @@ setup:
setup_finished: $3Falls du MULTIVERSE oder MULTIWORLD verwendest, sollte die Welt setup_finished: $3Falls du MULTIVERSE oder MULTIWORLD verwendest, sollte die Welt
generiert worden sein. Andernfalls musst du die Welt manuell über bukkit.yml hinzufügen. generiert worden sein. Andernfalls musst du die Welt manuell über bukkit.yml hinzufügen.
setup_world_taken: $2%s ist bereits eine bekannte Plotwelt. setup_world_taken: $2%s ist bereits eine bekannte Plotwelt.
setup_missing_world: $2Du musst einen Namen für die Welt vergeben ($1/plot setup
&l<world>$1 <generator>$2)&-$1Zusätzliche Befehle:&-$2 - $1/plot setup <value>&-$2
- $1/plot setup backn$2 - $1/plot setup cancel
setup_missing_generator: $2Du musst einen Generator angeben ($1/plot setup <world>
&l<generator>&r$2)&-$1Zusätzliche Befehle:&-$2 - $1/plot setup <value>&-$2 - $1/plot &l<generator>&r$2)&-$1Zusätzliche Befehle:&-$2 - $1/plot setup <value>&-$2 - $1/plot
setup backn$2 - $1/plot setup cancel setup backn$2 - $1/plot setup cancel
setup_invalid_generator: '$2Ungültiger Generarator. Mögliche Optionen: %s'
schematics: schematics:
schematic_missing_arg: '$2Du musst einen Wert angeben. Gültige Werte: $1save$2, $1paste $2, $1exportall' schematic_missing_arg: '$2Du musst einen Wert angeben. Gültige Werte: $1save$2, $1paste $2, $1exportall'
schematic_invalid: '$2Diese Schematic ist ungültig: $2%s' schematic_invalid: '$2Diese Schematic ist ungültig: $2%s'
schematic_valid: $2Diese Schematic ist gültig.
schematic_paste_failed: $2Einfügen der Schematic fehlgeschlagen. schematic_paste_failed: $2Einfügen der Schematic fehlgeschlagen.
schematic_paste_success: $4Einfügen der Schematic erfolgreich. schematic_paste_success: $4Einfügen der Schematic erfolgreich.
schematic_too_large: $2Der Plot ist zu groß für diese Aktion. schematic_too_large: $2Der Plot ist zu groß für diese Aktion.
@ -175,7 +166,6 @@ permission:
no_permission_event: '$2Dir fehlt folgende Berechtigung: $1%s' no_permission_event: '$2Dir fehlt folgende Berechtigung: $1%s'
cant_claim_more_clusters: $2Du kannst nicht mehr Cluster besitzen. cant_claim_more_clusters: $2Du kannst nicht mehr Cluster besitzen.
merge: merge:
no_perm_merge: $2Du bist nicht Besitzer des Plots $1%plot%
unlink_required: $2Die Plots müssen vorher getrennt (unlink) werden. unlink_required: $2Die Plots müssen vorher getrennt (unlink) werden.
unlink_impossible: $2Die Trennung (unlink) funktioniert nur auf Megaplots. unlink_impossible: $2Die Trennung (unlink) funktioniert nur auf Megaplots.
unlink_success: $2Trennung erfolgreich. unlink_success: $2Trennung erfolgreich.
@ -211,7 +201,6 @@ errors:
invalid_player_offline: '$2Der Spieler muss online sein: $1%s.' invalid_player_offline: '$2Der Spieler muss online sein: $1%s.'
invalid_command_flag: '$2Ungültige Flag: %s0' invalid_command_flag: '$2Ungültige Flag: %s0'
error: '$2Ein Fehler ist aufgetreten: %s' error: '$2Ein Fehler ist aufgetreten: %s'
not_loaded: $2Der Plot konnte nicht geladen werden.
purge: purge:
purge_success: $4%s Plots erfolgreich gelöscht. purge_success: $4%s Plots erfolgreich gelöscht.
trim: trim:
@ -293,9 +282,6 @@ working:
list: list:
plot_list_header_paged: $2(Seite $1%von$2/$1%max$2) $1Liste Plots nach %word% plot_list_header_paged: $2(Seite $1%von$2/$1%max$2) $1Liste Plots nach %word%
plot_list_header: $1Liste aller %word% Plots. plot_list_header: $1Liste aller %word% Plots.
plot_list_item: $2>> $1%id$2:$1%Welt $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%Welt $2- $1%owner
plot_list_footer: $2>> $1%word% umfasst insgesamt $2%num% $1Plots %plot%.
comment_list_header_paged: $2(Seite $1%cur$2/$1%max$2) $1Liste %amount% Kommentare auf. comment_list_header_paged: $2(Seite $1%cur$2/$1%max$2) $1Liste %amount% Kommentare auf.
clickable: ' (interactive)' clickable: ' (interactive)'
area_list_header_paged: $2(Seite $1%cur$2/$1%max$2) $1Liste %amount% of Plot-Areas auf. area_list_header_paged: $2(Seite $1%cur$2/$1%max$2) $1Liste %amount% of Plot-Areas auf.
@ -305,21 +291,15 @@ chat:
plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2Diese Welt zwingt jeden Spieler dazu den Plot Chat zu benutzen. plot_chat_forced: $2Diese Welt zwingt jeden Spieler dazu den Plot Chat zu benutzen.
plot_chat_on: $4Plot Chat aktiviert.
plot_chat_off: $4Plot Chat deaktiviert.
deny: deny:
denied_removed: $4Der Spieler darf diesen Plot wieder betreten. denied_removed: $4Der Spieler darf diesen Plot wieder betreten.
denied_added: $4Der Spieler darf diesen Plot nicht mehr betreten. denied_added: $4Der Spieler darf diesen Plot nicht mehr betreten.
denied_need_argument: $2Argumente fehlen. $1/plot denied add <name> $2oder $1/plot
helpers remove <name>
was_not_denied: $2Der Spieler durfte diesen Plot bereits betreten.
you_got_denied: $4Du wurdest von dem Plot gebannt auf dem du dich befunden hast und wurdest zum Spawn teleportiert. you_got_denied: $4Du wurdest von dem Plot gebannt auf dem du dich befunden hast und wurdest zum Spawn teleportiert.
rain: rain:
need_on_off: '$2Du musst einen Wert angeben. Mögliche Werte: $1on$2, $1off' need_on_off: '$2Du musst einen Wert angeben. Mögliche Werte: $1on$2, $1off'
setting_updated: $4Einstellungen erfolgreich aktualisiert. setting_updated: $4Einstellungen erfolgreich aktualisiert.
flag: flag:
flag_key: '$2Schlüssel: %s' flag_key: '$2Schlüssel: %s'
flag_type: '$2Typ: %s'
flag_desc: '$2Beschreibung: %s' flag_desc: '$2Beschreibung: %s'
not_valid_flag: $2Ungültige Flag not_valid_flag: $2Ungültige Flag
not_valid_value: $2Wert der Flag muss alphanumerisch angegeben werden. not_valid_value: $2Wert der Flag muss alphanumerisch angegeben werden.
@ -330,7 +310,6 @@ flag:
flag_added: $4Flag erfolreich hinzugefügt flag_added: $4Flag erfolreich hinzugefügt
not_valid_flag_suggested: '$2Ungültige Flag. Meintest du: $1%s' not_valid_flag_suggested: '$2Ungültige Flag. Meintest du: $1%s'
trusted: trusted:
was_not_added: $2Dieser Spieler war bisher kein Helfer auf diesem Plot.
trusted_added: $4Spieler erfolgreich in diesem Plot vertraut. trusted_added: $4Spieler erfolgreich in diesem Plot vertraut.
trusted_removed: $1Diesem Spieler wird auf diesem Plot nicht mehr vertraut. trusted_removed: $1Diesem Spieler wird auf diesem Plot nicht mehr vertraut.
plot_removed_user: $1Plot %s wurde wegen Inaktivität des Plot Besitzers gelöscht. plot_removed_user: $1Plot %s wurde wegen Inaktivität des Plot Besitzers gelöscht.
@ -410,4 +389,3 @@ kick:
grants: grants:
granted_plots: '$Ergebnis: $2%s $1Zuschuss übrig' granted_plots: '$Ergebnis: $2%s $1Zuschuss übrig'
granted_plot: $1Du gewährst %s0 Plot an $2%s1 granted_plot: $1Du gewährst %s0 Plot an $2%s1
granted_plot_failed: '$1Gewährung gescheitert: $2%s'

View File

@ -67,8 +67,6 @@ records:
notify_leave: $2%player $2abandona tu parcela ($1%plot$2) notify_leave: $2%player $2abandona tu parcela ($1%plot$2)
swap: swap:
swap_overlap: $2Las áreas propuestas no pueden superponerse. swap_overlap: $2Las áreas propuestas no pueden superponerse.
swap_dimensions: $2El area propuesta debe tener dimensiones comparables.
swap_syntax: $2/plot swap <plot id>
swap_success: $4Intercambio de parcelas completado swap_success: $4Intercambio de parcelas completado
started_swap: $2 Intercambiando las tareas de las parcelas. Serás notificado cuando el proceso haya terminado. started_swap: $2 Intercambiando las tareas de las parcelas. Serás notificado cuando el proceso haya terminado.
comment: comment:
@ -82,7 +80,6 @@ comment:
no_plot_inbox: $2Debes permanecer en la parcela para poder escribir el comentario. no_plot_inbox: $2Debes permanecer en la parcela para poder escribir el comentario.
comment_removed: $4Comentario eliminado satisfactoriamente/s:n$2 - '$3%s$2' comment_removed: $4Comentario eliminado satisfactoriamente/s:n$2 - '$3%s$2'
comment_added: $4Te han dejado un comentario. comment_added: $4Te han dejado un comentario.
comment_header: $2&m---------&r $1Comentarios $2&m---------&r
inbox_empty: $2No hay comentarios. inbox_empty: $2No hay comentarios.
console: console:
not_console: $2Por razones de seguridad, este comando solo se puede ejecutar desde la consola. not_console: $2Por razones de seguridad, este comando solo se puede ejecutar desde la consola.
@ -136,18 +133,12 @@ setup:
setup_valid_arg: $2Valor $1%s0 $2ajustado a %s1 setup_valid_arg: $2Valor $1%s0 $2ajustado a %s1
setup_finished: $4Deberias haber sido teletransportado al mundo creado, sino tendras que generarlo manualmente usando el bukkit.yml setup_finished: $4Deberias haber sido teletransportado al mundo creado, sino tendras que generarlo manualmente usando el bukkit.yml
setup_world_taken: $2%s este mundo ya esta registrado. setup_world_taken: $2%s este mundo ya esta registrado.
setup_missing_world: $2 Necesitas especificar el nombre del mundo ($1/plot setup
&l<world>$1 <generator>$2)&-$1Comandos adicionales:&-$2 - $1/plot setup <value>&-$2
- $1/plot setup back&-$2 - $1/plot setup cancel
setup_missing_generator: $2Tienes que especificar un generador ($1/plot setup <world>
&l<generator>&r$2)&-$1Comandos adicionales:&-$2 - $1/plot setup <value>&-$2 - $1/plot &l<generator>&r$2)&-$1Comandos adicionales:&-$2 - $1/plot setup <value>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel setup back&-$2 - $1/plot setup cancel
setup_invalid_generator: '$2Generador inválido. Opciones posibles: %s'
schematics: schematics:
schematic_missing_arg: '$2Necesitas especificar un argumento. Valores posibles: schematic_missing_arg: '$2Necesitas especificar un argumento. Valores posibles:
$1save$2, $1paste $2, $1exportall' $1save$2, $1paste $2, $1exportall'
schematic_invalid: '$2Este no es un schematic valido. Razon: $2%s' schematic_invalid: '$2Este no es un schematic valido. Razon: $2%s'
schematic_valid: $2Este es un schematic valido.
schematic_paste_failed: $2Fallo al pegar el schematic. schematic_paste_failed: $2Fallo al pegar el schematic.
schematic_paste_success: $4El schematic ha sido copiado correctamente. schematic_paste_success: $4El schematic ha sido copiado correctamente.
schematic_too_large: $2¡La trama es demasiado grande para esta acción! schematic_too_large: $2¡La trama es demasiado grande para esta acción!
@ -197,7 +188,6 @@ merge:
merge_accepted: $2La peticion de agrupacion ha sido aceptada. merge_accepted: $2La peticion de agrupacion ha sido aceptada.
success_merge: $2¡Las parcelas se han agrupado! success_merge: $2¡Las parcelas se han agrupado!
merge_requested: $2Se ha enviado con exito la peticion de agrupar. merge_requested: $2Se ha enviado con exito la peticion de agrupar.
no_perm_merge: '$2No eres el dueño de la parcela: $1%plot%'
no_available_automerge: $2 No eres propietario de ninguna parcela adyacente en la direccion especificada o no tienes permitido agrupar el tamaño requerido. no_available_automerge: $2 No eres propietario de ninguna parcela adyacente en la direccion especificada o no tienes permitido agrupar el tamaño requerido.
unlink_required: $2Se requiere una desconexion para hacer esto. unlink_required: $2Se requiere una desconexion para hacer esto.
unlink_impossible: $2Solo puedes desconectar una mega-parcela. unlink_impossible: $2Solo puedes desconectar una mega-parcela.
@ -218,7 +208,6 @@ errors:
wait_for_timer: $2El temporizador del selector de bloque esta ligado a ti o a la parcela actual. Por favor espere a que termine. wait_for_timer: $2El temporizador del selector de bloque esta ligado a ti o a la parcela actual. Por favor espere a que termine.
invalid_command_flag: '$2Indicador de comando no válido: %s0' invalid_command_flag: '$2Indicador de comando no válido: %s0'
error: '$2Ocurrió un error: %s' error: '$2Ocurrió un error: %s'
not_loaded: $2No se pudo cargar la trama
paste: paste:
debug_report_created: '$1Se ha enviado una depuracion a: $1%url%' debug_report_created: '$1Se ha enviado una depuracion a: $1%url%'
purge: purge:
@ -307,30 +296,22 @@ list:
clickable: ' (interactive)' clickable: ' (interactive)'
plot_list_header_paged: $2(Page $1%cur$2/$1%max$2) $1Lista de %amount% parcelas. plot_list_header_paged: $2(Page $1%cur$2/$1%max$2) $1Lista de %amount% parcelas.
plot_list_header: $1Lista de %word% parcelas. plot_list_header: $1Lista de %word% parcelas.
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner.
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner.
plot_list_footer: $2>> $1%word% un total $2%num% $1claimeado %plot%.
area_list_header_paged: $2(Página $1%cur$2/$1%max$2) $1lista de %amount% areas area_list_header_paged: $2(Página $1%cur$2/$1%max$2) $1lista de %amount% areas
left: left:
left_plot: $2Has abandonado una parcela. left_plot: $2Has abandonado una parcela.
chat: chat:
plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2Este mundo obliga a usar el chat de parcela. plot_chat_forced: $2Este mundo obliga a usar el chat de parcela.
plot_chat_on: $4Chat de parcela activado.
plot_chat_off: $4Chat de parcela desactivado.
plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
deny: deny:
denied_removed: $4Este usuario ya no esta denegado en esta parcela. denied_removed: $4Este usuario ya no esta denegado en esta parcela.
denied_added: $4Has denegado este usuario de tu parcela. denied_added: $4Has denegado este usuario de tu parcela.
denied_need_argument: $2Faltan argumentos. $1/plot denied add <name> $2o $1/plot denied remove <name>
was_not_denied: $2Ese usuario no ha sido denegado de este plot.
you_got_denied: $4Has sido denegado de la parcela, se te ha teletransportado al spawn. you_got_denied: $4Has sido denegado de la parcela, se te ha teletransportado al spawn.
rain: rain:
need_on_off: '$2Necesitas un valor especifico. Posible valores: $1on$2, $1off' need_on_off: '$2Necesitas un valor especifico. Posible valores: $1on$2, $1off'
setting_updated: $4Has actualizado las opciones. setting_updated: $4Has actualizado las opciones.
flag: flag:
flag_key: '$2Llave: %s' flag_key: '$2Llave: %s'
flag_type: '$2Tipo: %s'
flag_desc: '$2Desc: %s' flag_desc: '$2Desc: %s'
not_valid_flag: $2No es una flag valida. not_valid_flag: $2No es una flag valida.
not_valid_value: $2El valor de la flag tiene que ser alfanumerico. not_valid_value: $2El valor de la flag tiene que ser alfanumerico.
@ -343,7 +324,6 @@ flag:
trusted: trusted:
trusted_added: $4Has añadido un usuario de confianza en esta parcela. trusted_added: $4Has añadido un usuario de confianza en esta parcela.
trusted_removed: $4Has removido un usuario de confianza en esta parcela. trusted_removed: $4Has removido un usuario de confianza en esta parcela.
was_not_added: $2Ese usuario no es de confianza en esta parcela.
plot_removed_user: $1La parcela %s en la que estabas añadido fue removida por inactividad. plot_removed_user: $1La parcela %s en la que estabas añadido fue removida por inactividad.
member: member:
removed_players: $2Removido %s jugadores de esta parcela. removed_players: $2Removido %s jugadores de esta parcela.
@ -391,4 +371,3 @@ kick:
grants: grants:
granted_plots: '$1Resultado: $2%s $1grants left' granted_plots: '$1Resultado: $2%s $1grants left'
granted_plot: $1You granted %s0 plot to $2%s1 granted_plot: $1You granted %s0 plot to $2%s1
granted_plot_failed: '$1Subvención fallida: $2%s'

View File

@ -63,8 +63,6 @@ records:
notify_leave: $2%player $2elhagyta a telked ($1%plot$2) notify_leave: $2%player $2elhagyta a telked ($1%plot$2)
swap: swap:
swap_overlap: $2A tervezett terület nem engedélyezi az átfedést swap_overlap: $2A tervezett terület nem engedélyezi az átfedést
swap_dimensions: $2A tervezett területnek hasonlónak kell lennie
swap_syntax: $2/plot swap <id>
swap_success: $4Sikeresen megváltoztatva swap_success: $4Sikeresen megváltoztatva
comment: comment:
inbox_notification: '%s olvasatlan levél. Használd a /plot inbox parancsot' inbox_notification: '%s olvasatlan levél. Használd a /plot inbox parancsot'
@ -78,7 +76,6 @@ comment:
comment_removed_success: $4Sikeresen törölted a hozzászólást/s:n$2 - '$3%s$2' comment_removed_success: $4Sikeresen törölted a hozzászólást/s:n$2 - '$3%s$2'
comment_removed_failure: $4Nem sikerült törölni a hozzászólást! comment_removed_failure: $4Nem sikerült törölni a hozzászólást!
comment_added: $4Hozzászóltál comment_added: $4Hozzászóltál
comment_header: $2&m---------&r $1Hozzászólások $2&m---------&r
inbox_empty: $2Nincs hozzászólás inbox_empty: $2Nincs hozzászólás
console: console:
not_console: $2Csak konzolról lehet végrehajtani. not_console: $2Csak konzolról lehet végrehajtani.
@ -127,19 +124,11 @@ setup:
setup_valid_arg: $2Érték $1%s0 $2változik %s1 setup_valid_arg: $2Érték $1%s0 $2változik %s1
setup_finished: $4Teleportálva a megalkotott világba. setup_finished: $4Teleportálva a megalkotott világba.
setup_world_taken: $2%s már egy világ setup_world_taken: $2%s már egy világ
setup_missing_world: $2Meg kell adnod egy világnevet ($1/plot setup &l<world>$1
<generator>$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel
setup_missing_generator: $2Meg kell adnod egy generátort ($1/plot setup <world>
&l<generator>&r$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel
setup_invalid_generator: '$2Érvénytelen generátor. Lehetséges lehetőségek: %s'
schematics: schematics:
schematic_too_large: $2Túl nagy a telek ehhez! schematic_too_large: $2Túl nagy a telek ehhez!
schematic_missing_arg: '$2Meg kell adnia egy argumentumot. Lehetséges értékek: $1save$2, schematic_missing_arg: '$2Meg kell adnia egy argumentumot. Lehetséges értékek: $1save$2,
$1paste $2, $1exportall$2, $1list' $1paste $2, $1exportall$2, $1list'
schematic_invalid: '$2Nem érvényes. Ok: $2%s' schematic_invalid: '$2Nem érvényes. Ok: $2%s'
schematic_valid: $2Érvényes
schematic_paste_failed: $2Sikertelen másolás schematic_paste_failed: $2Sikertelen másolás
schematic_paste_success: $4Sikeresen másoltad schematic_paste_success: $4Sikeresen másoltad
schematic_list: '$4Elmentve: $1%s' schematic_list: '$4Elmentve: $1%s'
@ -147,9 +136,6 @@ schematics:
mca_file_size: "$1Jegyzet: .mca fileok mérete 512x512" mca_file_size: "$1Jegyzet: .mca fileok mérete 512x512"
schematic_exportall_started: "$1Exportálás indul..." schematic_exportall_started: "$1Exportálás indul..."
schematic_exportall_world_args: "$1Szükség van világ érvre. Használd: $3/plot sch exportall <area>" schematic_exportall_world_args: "$1Szükség van világ érvre. Használd: $3/plot sch exportall <area>"
schematic_exportall_mass_started: $1Megkezdődött az exportálás. Ez
eltarthat egy ideig
schematic_exportall_count: $1Talált $3%s $1telkek..
schematic_exportall_finished: $1Kész az export schematic_exportall_finished: $1Kész az export
schematic_exportall_single_finished: $1Kész az export schematic_exportall_single_finished: $1Kész az export
schematic: schematic:
@ -195,7 +181,6 @@ merge:
merge_accepted: $2Összeolvasztás elfogadva merge_accepted: $2Összeolvasztás elfogadva
success_merge: $2Osszeolvsztva! success_merge: $2Osszeolvsztva!
merge_requested: $2Sikeresen elküldted az összeolvasztási kérelmet merge_requested: $2Sikeresen elküldted az összeolvasztási kérelmet
no_perm_merge: '$2Nem vagy ennek tuladonosa: $1%plot%'
no_available_automerge: $2Nem rendelkezel a szomszédos telkekkel a megadott irányban no_available_automerge: $2Nem rendelkezel a szomszédos telkekkel a megadott irányban
vagy nem megengedett a kívánt méret. vagy nem megengedett a kívánt méret.
unlink_impossible: $2You can only unlink a mega-plot unlink_impossible: $2You can only unlink a mega-plot
@ -215,7 +200,6 @@ errors:
command_went_wrong: $2Probléma merült fel... command_went_wrong: $2Probléma merült fel...
no_free_plots: $2Nincsenek szabad telkek no_free_plots: $2Nincsenek szabad telkek
not_in_plot: $2Nem egy telken vagy not_in_plot: $2Nem egy telken vagy
not_loaded: $2A telek nem tudott betölteni
not_in_cluster: $2Ehez egy telekcsoporton kell legyél not_in_cluster: $2Ehez egy telekcsoporton kell legyél
not_in_plot_world: $2Nem vagy a telek területén not_in_plot_world: $2Nem vagy a telek területén
plotworld_incompatible: $2A két világnak kompatibilisnek kell lennie plotworld_incompatible: $2A két világnak kompatibilisnek kell lennie
@ -299,20 +283,12 @@ list:
area_list_header_paged: $2(Oldal $1%cur$2/$1%max$2) $1Lista %amount% területek area_list_header_paged: $2(Oldal $1%cur$2/$1%max$2) $1Lista %amount% területek
plot_list_header_paged: $2(Oldal $1%cur$2/$1%max$2) $1Lista%amount% telkek plot_list_header_paged: $2(Oldal $1%cur$2/$1%max$2) $1Lista%amount% telkek
plot_list_header: $1Lista %word% telkek plot_list_header: $1Lista %word% telkek
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner
plot_list_footer: $2>> $1%word% összesen $2%num% $1azzal %plot%.
chat: chat:
plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2This world forces everyone to use plot chat. plot_chat_forced: $2This world forces everyone to use plot chat.
plot_chat_on: $4A csevegési csevegés engedélyezve van.
plot_chat_off: $4A csevegési csevegés letiltva.
deny: deny:
denied_added: $4Sikeresen elutasította a játékost ebből a telekből denied_added: $4Sikeresen elutasította a játékost ebből a telekből
denied_need_argument: $2Az érvek hiányoznak. $1/plot denied add <név> $2or $1/plot
denied remove <név>
was_not_denied: $2Ezt a játékost nem tagadták meg ezen a teleken
you_got_denied: $4Elutasítják attól a cselekménytől, amelyen korábban volt, és teleportállak you_got_denied: $4Elutasítják attól a cselekménytől, amelyen korábban volt, és teleportállak
spawnra spawnra
cant_remove_owner: $2Nem távolíthatja el a telek tulajdonosát cant_remove_owner: $2Nem távolíthatja el a telek tulajdonosát
@ -320,7 +296,6 @@ kick:
you_got_kicked: $4Ki rúgtak! you_got_kicked: $4Ki rúgtak!
flag: flag:
flag_key: '$2Kúlcs: %s' flag_key: '$2Kúlcs: %s'
flag_type: '$2típus: %s'
flag_desc: '$2leírás: %s' flag_desc: '$2leírás: %s'
not_valid_flag: $2Ez nem érvényes érték not_valid_flag: $2Ez nem érvényes érték
not_valid_flag_suggested: '$2Ez nem érvényes érték. Úgy értetted: $1%s' not_valid_flag_suggested: '$2Ez nem érvényes érték. Úgy értetted: $1%s'
@ -329,7 +304,6 @@ flag:
flag_not_added: $2Az érték hozzáadása nem sikerült flag_not_added: $2Az érték hozzáadása nem sikerült
flag_removed: $4Az érték sikeresen eltávolítva flag_removed: $4Az érték sikeresen eltávolítva
flag_added: $4Az érték sikeresen hozzáadva flag_added: $4Az érték sikeresen hozzáadva
flag_list_entry: '$2%s: $1%s'
flags: flags:
flag_category_string: String Flags flag_category_string: String Flags
flag_category_integers: Integer Flags flag_category_integers: Integer Flags
@ -362,7 +336,6 @@ flags:
flag_error_weather: 'Flag must be a weather: ''rain'' or ''sun''' flag_error_weather: 'Flag must be a weather: ''rain'' or ''sun'''
trusted: trusted:
trusted_added: $4Sikeresen megbízott egy játékosban a telekben trusted_added: $4Sikeresen megbízott egy játékosban a telekben
was_not_added: $2A játékos nem volt megbízható ebben a telekben
plot_removed_user: $1Plot %s of which you were added to has been deleted due to plot_removed_user: $1Plot %s of which you were added to has been deleted due to
owner inactivity owner inactivity
member: member:
@ -390,9 +363,6 @@ help:
help_item: $1%usage% [%alias%]&- $3- $2%desc%&- help_item: $1%usage% [%alias%]&- $3- $2%desc%&-
help_display_all_commands: Az összes parancs megjelenítése help_display_all_commands: Az összes parancs megjelenítése
direction: '$1Jelenlegi irány: %dir%' direction: '$1Jelenlegi irány: %dir%'
generator_bucket:
bucket_entries_ignored: $2A teljes vödörérték legalább 1 vagy annál nagyobb. Blokkok nélkül
egy meghatározott esélyt figyelmen kívül hagynak
category: category:
command_category_claiming: Elfoglalás command_category_claiming: Elfoglalás
command_category_teleport: Teleportálás command_category_teleport: Teleportálás
@ -406,7 +376,6 @@ category:
grants: grants:
granted_plots: '$1Eredmény: $2%s $1támogatások maradtak' granted_plots: '$1Eredmény: $2%s $1támogatások maradtak'
granted_plot: $1Ön megadta %s0 telek $2%s1 granted_plot: $1Ön megadta %s0 telek $2%s1
granted_plot_failed: '$1A támogatás nem sikerült: $2%s'
legacyconfig: legacyconfig:
legacy_config_found: Régi konfigurációs fájlt észleltünk. A konverzió lesz legacy_config_found: Régi konfigurációs fájlt észleltünk. A konverzió lesz
kísérletet. kísérletet.

View File

@ -68,8 +68,6 @@ records:
notify_leave: $2%player $2è uscito dal tuo lotto ($1%plot$2) notify_leave: $2%player $2è uscito dal tuo lotto ($1%plot$2)
swap: swap:
swap_overlap: $2Le aree proposte non possono sovrapporsi swap_overlap: $2Le aree proposte non possono sovrapporsi
swap_dimensions: $2Le aree proposte devono avere le stesse dimensioni
swap_syntax: $2/plot swap <id lotto>
swap_success: $4Lotti scambiati con successo swap_success: $4Lotti scambiati con successo
started_swap: $2Scambio lotti avviato. Sarai avvisato al termine started_swap: $2Scambio lotti avviato. Sarai avvisato al termine
comment: comment:
@ -83,7 +81,6 @@ comment:
no_plot_inbox: $2Devi stare in un lotto o fornirlo nell'argomento no_plot_inbox: $2Devi stare in un lotto o fornirlo nell'argomento
comment_removed: $4Cancellato con successo il commento/i:n$2 - '$3%s$2' comment_removed: $4Cancellato con successo il commento/i:n$2 - '$3%s$2'
comment_added: $4È stato lasciato un commento comment_added: $4È stato lasciato un commento
comment_header: $2&m---------&r $1Commenti $2&m---------&r
inbox_empty: $2Nessun commento inbox_empty: $2Nessun commento
console: console:
not_console: $2Per ragioni di sicurezza, questo commando può essere eseguito solo dalla console. not_console: $2Per ragioni di sicurezza, questo commando può essere eseguito solo dalla console.
@ -139,18 +136,10 @@ setup:
sarà necessario impostare manualmente il generatore usando il file bukkit.yml sarà necessario impostare manualmente il generatore usando il file bukkit.yml
o il tuo plugin di gestione dei mondi scelto. o il tuo plugin di gestione dei mondi scelto.
setup_world_taken: $2%s è già un mondo lotti setup_world_taken: $2%s è già un mondo lotti
setup_missing_world: $2Devi specificare un nome per il mondo ($1/plot setup &l<mondo>$1
<generatore>$2)&-$1Comandi aggiuntivi:&-$2 - $1/plot setup <valore>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel
setup_missing_generator: $2Devi specificare un generatore ($1/plot setup <mondo>
&l<generatore>&r$2)&-$1Comandi aggiuntivi:&-$2 - $1/plot setup <valore>&-$2 -
$1/plot setup back&-$2 - $1/plot setup cancel
setup_invalid_generator: '$2Generatore non valido. Opzioni possibili: %s'
schematics: schematics:
schematic_too_large: $2Il lotto è troppo grande per questa azione! schematic_too_large: $2Il lotto è troppo grande per questa azione!
schematic_missing_arg: '$2Devi specificare un argomento. Valori possibili: $1save$2, $1paste $2, $1exportall' schematic_missing_arg: '$2Devi specificare un argomento. Valori possibili: $1save$2, $1paste $2, $1exportall'
schematic_invalid: '$2Quella non è una schematica valida. Motivo: $2%s' schematic_invalid: '$2Quella non è una schematica valida. Motivo: $2%s'
schematic_valid: $2Quella è una schematica valida
schematic_paste_failed: $2L'incollaggio della schematica è fallito schematic_paste_failed: $2L'incollaggio della schematica è fallito
schematic_paste_success: $4Schematica incollata con successo schematic_paste_success: $4Schematica incollata con successo
titles: titles:
@ -201,7 +190,6 @@ merge:
merge_accepted: $2La richiesta di fusione dei lotti è stata accettata merge_accepted: $2La richiesta di fusione dei lotti è stata accettata
success_merge: $2I lotti sono stati uniti! success_merge: $2I lotti sono stati uniti!
merge_requested: $2Richiesta di fusione dei lotti inviata merge_requested: $2Richiesta di fusione dei lotti inviata
no_perm_merge: '$2Non sei il proprietario del lotto: $1%plot%'
no_available_automerge: $2Non possiedi alcun lotto adiacente nella direzione specificata o non puoi unire i lotti alla dimensione richiesta. no_available_automerge: $2Non possiedi alcun lotto adiacente nella direzione specificata o non puoi unire i lotti alla dimensione richiesta.
unlink_required: $2Per fare questo è necessario uno scollegamento dei lotti. unlink_required: $2Per fare questo è necessario uno scollegamento dei lotti.
unlink_impossible: $2Puoi scollegare solo un mega-lotto unlink_impossible: $2Puoi scollegare solo un mega-lotto
@ -223,7 +211,6 @@ errors:
command_went_wrong: $2Qualcosa è andato storto durante l'esecuzione di quel comando... command_went_wrong: $2Qualcosa è andato storto durante l'esecuzione di quel comando...
no_free_plots: $2Non ci sono lotti liberi disponibili no_free_plots: $2Non ci sono lotti liberi disponibili
not_in_plot: $2Non sei in un lotto not_in_plot: $2Non sei in un lotto
not_loaded: $2Non è stato possibile caricare il lotto
not_in_cluster: $2Devi essere dentro un cluster di lotti per eseguire questa azione not_in_cluster: $2Devi essere dentro un cluster di lotti per eseguire questa azione
not_in_plot_world: $2Non sei in un mondo lotti not_in_plot_world: $2Non sei in un mondo lotti
plotworld_incompatible: $2I due mondi devono essere compatibili plotworld_incompatible: $2I due mondi devono essere compatibili
@ -322,22 +309,15 @@ list:
area_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Elenco di %amount% aree area_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Elenco di %amount% aree
plot_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Elenco di %amount% lotti plot_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Elenco di %amount% lotti
plot_list_header: $1Elenco dei lotti di %word% plot_list_header: $1Elenco dei lotti di %word%
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner
plot_list_footer: $2>> $1%word% con un totale di $2%num% $1%plot% claimati.
left: left:
left_plot: $2Hai lasciato il lotto left_plot: $2Hai lasciato il lotto
chat: chat:
plot_chat_spy_format: '$2[$1Spia Chat Lotti$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1Spia Chat Lotti$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_format: '$2[$1Chat Lotti$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Chat Lotti$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2Questo mondo costringe tutti a usare la chat dei lotti. plot_chat_forced: $2Questo mondo costringe tutti a usare la chat dei lotti.
plot_chat_on: $4Chat lotti abilitata.
plot_chat_off: $4Chat lotti disabilitata.
deny: deny:
denied_removed: $4Hai sbloccato con successo il giocatore da questo lotto denied_removed: $4Hai sbloccato con successo il giocatore da questo lotto
denied_added: $4Hai bloccato con successo il giocatore da questo lotto denied_added: $4Hai bloccato con successo il giocatore da questo lotto
denied_need_argument: $2Gli argomenti sono mancanti. $1/plot denied add <nome> $2o $1/plot denied remove <nome>
was_not_denied: $2Quel giocatore non è bloccato in questo lotto
you_got_denied: $4Sei stato bloccato dal lotto dove eri prima, e sei stato teletrasportato allo spawn you_got_denied: $4Sei stato bloccato dal lotto dove eri prima, e sei stato teletrasportato allo spawn
kick: kick:
you_got_kicked: $4Sei stato cacciato! you_got_kicked: $4Sei stato cacciato!
@ -346,7 +326,6 @@ rain:
setting_updated: $4Hai aggiornato l'impostazione con successo setting_updated: $4Hai aggiornato l'impostazione con successo
flag: flag:
flag_key: '$2Key: %s' flag_key: '$2Key: %s'
flag_type: '$2Tipo: %s'
flag_desc: '$2Desc: %s' flag_desc: '$2Desc: %s'
not_valid_flag: $2Quella non è una flag valida not_valid_flag: $2Quella non è una flag valida
not_valid_flag_suggested: '$2Quella non è una flag valida. Forse intendevi: $1%s' not_valid_flag_suggested: '$2Quella non è una flag valida. Forse intendevi: $1%s'
@ -359,7 +338,6 @@ flag:
trusted: trusted:
trusted_added: $4Quell'utente ora può costruire nel tuo lotto trusted_added: $4Quell'utente ora può costruire nel tuo lotto
trusted_removed: $4Hai rimosso con successo un amico dal lotto trusted_removed: $4Hai rimosso con successo un amico dal lotto
was_not_added: $2Quel giocatore non è aggiunto come amico in questo lotto
plot_removed_user: $1Il lotto %s in cui eri aggiunto è stato eliminato a causa dell'inattività del proprietario plot_removed_user: $1Il lotto %s in cui eri aggiunto è stato eliminato a causa dell'inattività del proprietario
member: member:
removed_players: $2Rimossi %s giocatori dal lotto. removed_players: $2Rimossi %s giocatori dal lotto.
@ -388,6 +366,5 @@ help:
grants: grants:
granted_plots: '$1Risultato: $2%s $1concessioni rimanenti' granted_plots: '$1Risultato: $2%s $1concessioni rimanenti'
granted_plot: $1Hai concesso il lotto %s0 a $2%s1 granted_plot: $1Hai concesso il lotto %s0 a $2%s1
granted_plot_failed: '$1Concessione fallita: $2%s'
'-': '-':
custom_string: '-' custom_string: '-'

View File

@ -72,8 +72,6 @@ records:
notify_leave: $2%player가 $2당신의 plot를 떠납니다 ($1%plot$2) notify_leave: $2%player가 $2당신의 plot를 떠납니다 ($1%plot$2)
swap: swap:
swap_overlap: $2해당 구역은 덮어쓰기가 허용되지 않습니다. swap_overlap: $2해당 구역은 덮어쓰기가 허용되지 않습니다.
swap_dimensions: $2해당 지역은 반드시 비교 가능한 차원이 있어야 합니다.
swap_syntax: $2/plot swap <plot id>
swap_success: $4성공적으로 땅이 교환되었습니다 swap_success: $4성공적으로 땅이 교환되었습니다
started_swap: $2땅 교환이 시작되었습니다. 작업 완료시 장신에게 통보 될 예정입니다. started_swap: $2땅 교환이 시작되었습니다. 작업 완료시 장신에게 통보 될 예정입니다.
comment: comment:
@ -87,7 +85,6 @@ comment:
no_plot_inbox: $2당신은 서 있거나 줄거리를 제공해야합니다 no_plot_inbox: $2당신은 서 있거나 줄거리를 제공해야합니다
comment_removed: $4comment가 성공적으로 삭제되었습니다/s:n$2 - '$3%s$2' comment_removed: $4comment가 성공적으로 삭제되었습니다/s:n$2 - '$3%s$2'
comment_added: $4A comment가 남아있습니다 comment_added: $4A comment가 남아있습니다
comment_header: $2&m---------&r $1댓글 $2&m---------&r
inbox_empty: $2comment가 없습니다 inbox_empty: $2comment가 없습니다
console: console:
not_console: $2보안상의 이유로, 이 명령어는 Console에서만 입력 가능합니다. not_console: $2보안상의 이유로, 이 명령어는 Console에서만 입력 가능합니다.
@ -143,17 +140,9 @@ setup:
setup_finished: $4당신은 만들어진 World로 이동되있어야 합니다. 그렇지 않으면 당신은 bukkit.yml를 통하여 워드를 설정하거나 setup_finished: $4당신은 만들어진 World로 이동되있어야 합니다. 그렇지 않으면 당신은 bukkit.yml를 통하여 워드를 설정하거나
다중월드 플러그인을 사용하여 월드를 생성하여야 합니다. 다중월드 플러그인을 사용하여 월드를 생성하여야 합니다.
setup_world_taken: $2%s 는 이미 등록된 Plot World 입니다 setup_world_taken: $2%s 는 이미 등록된 Plot World 입니다
setup_missing_world: $2당신은 월드의 이름을 지정해야 합니다 ($1/plot setup &l<world>$1 <generator>$2)&-$1Additional
commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot setup back&-$2 - $1/plot setup
cancel
setup_missing_generator: $2당신은 생성기를 지정해야 합니다 ($1/plot setup <world> &l<generator>&r$2)&-$1Additional
commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot setup back&-$2 - $1/plot setup
cancel
setup_invalid_generator: '$2올바르지 않은 생성기 입니다. 가능한 옵션: %s'
schematics: schematics:
schematic_missing_arg: '$2당신은 인수를 지정해야 합니다. 가능한 값: $1save$2, $1paste $2, $1exportall' schematic_missing_arg: '$2당신은 인수를 지정해야 합니다. 가능한 값: $1save$2, $1paste $2, $1exportall'
schematic_invalid: '$2이것은 올바르지 않은 schematic파일 입니다. 사유: $2%s' schematic_invalid: '$2이것은 올바르지 않은 schematic파일 입니다. 사유: $2%s'
schematic_valid: $2이것은 올바른 schematic파일 입니다
schematic_paste_failed: $2schematic 적용에 실패하엿습니다 schematic_paste_failed: $2schematic 적용에 실패하엿습니다
schematic_paste_success: $4schematic이 성공적으로 적용되었습니다 schematic_paste_success: $4schematic이 성공적으로 적용되었습니다
schematic_too_large: $2플롯이 너무 커서이 작업을 수행 할 수 없습니다! schematic_too_large: $2플롯이 너무 커서이 작업을 수행 할 수 없습니다!
@ -203,7 +192,6 @@ merge:
merge_accepted: $2병합 요청이 수락되었습니다 merge_accepted: $2병합 요청이 수락되었습니다
success_merge: $2땅이 병합되었습니다 success_merge: $2땅이 병합되었습니다
merge_requested: $2병합요청이 성공적으로 전송되었습니다 merge_requested: $2병합요청이 성공적으로 전송되었습니다
no_perm_merge: '$2당신은 이 땅의 소유자가 아닙니다: $1%plot%'
no_available_automerge: $2당신은 지정한 방향으로 인접한 plots를 소유하지 않았거나 plots를 필요한 크기로 합병 할 no_available_automerge: $2당신은 지정한 방향으로 인접한 plots를 소유하지 않았거나 plots를 필요한 크기로 합병 할
수 없습니다. 수 없습니다.
unlink_required: $2An unlink는 이것을 하는데 요구 됩니다. unlink_required: $2An unlink는 이것을 하는데 요구 됩니다.
@ -225,7 +213,6 @@ errors:
wait_for_timer: $2A setblock 타이머는 현재의 땅 또는 당신에게 묶여있습니다. 완료까지 잠시 기다려주시기 바랍니다 wait_for_timer: $2A setblock 타이머는 현재의 땅 또는 당신에게 묶여있습니다. 완료까지 잠시 기다려주시기 바랍니다
invalid_command_flag: '$2잘못된 명령 플래그: %s0' invalid_command_flag: '$2잘못된 명령 플래그: %s0'
error: '$2오류가 발생했습니다: %s' error: '$2오류가 발생했습니다: %s'
not_loaded: $2플롯을로드 할 수 없습니다
paste: paste:
debug_report_created: '$1전체 디버그를에 업로드했습니다.: $1%url%' debug_report_created: '$1전체 디버그를에 업로드했습니다.: $1%url%'
purge: purge:
@ -313,31 +300,22 @@ list:
clickable: ' (상호 작용하는)' clickable: ' (상호 작용하는)'
plot_list_header_paged: $2(페이지 $1%cur$2/$1%max$2) $1목록 %amount% plots plot_list_header_paged: $2(페이지 $1%cur$2/$1%max$2) $1목록 %amount% plots
plot_list_header: $1목록 %word% plots plot_list_header: $1목록 %word% plots
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner
plot_list_footer: $2>> $1%word% 총 $2%num% $1claimed %plot%.
area_list_header_paged: $2(페이지 $1%cur$2/$1%max$2) $1목록f %amount% areas area_list_header_paged: $2(페이지 $1%cur$2/$1%max$2) $1목록f %amount% areas
left: left:
left_plot: $2당신은 땅을 떠났습니다. left_plot: $2당신은 땅을 떠났습니다.
chat: chat:
plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Plot Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $이 월드는 모두가 plot chat을 쓰도록 강제합니다 plot_chat_forced: $이 월드는 모두가 plot chat을 쓰도록 강제합니다
plot_chat_on: $4플롯 채팅 사용 설정 됨.
plot_chat_off: $4플롯 채팅 사용 중지됨.
plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1Plot Spy$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
deny: deny:
denied_removed: $4당신은 이 땅으로부터 플레이어를 차단 해제 했습니다. denied_removed: $4당신은 이 땅으로부터 플레이어를 차단 해제 했습니다.
denied_added: $4당신은 이 땅으로부터 플레이어를 성공적으로 차단 했습니다. denied_added: $4당신은 이 땅으로부터 플레이어를 성공적으로 차단 했습니다.
denied_need_argument: $2변수가 빠졌습니다. $1/plot denied add <name> $2or $1/plot denied
remove <name>
was_not_denied: $2해당 플레이어는 이 땅에서 차단되지 않았습니다.
you_got_denied: $4당신은 해당 땅으로부터 차단되었습니다 따라서 spawn으로 자동 이동 되었습니다. you_got_denied: $4당신은 해당 땅으로부터 차단되었습니다 따라서 spawn으로 자동 이동 되었습니다.
rain: rain:
need_on_off: '$2당신은 올바른 값을 선택하여야 합니다. 가능한 값: $1on$2, $1off' need_on_off: '$2당신은 올바른 값을 선택하여야 합니다. 가능한 값: $1on$2, $1off'
setting_updated: $4당신은 설정을 성공적으로 업데이트 했습니다 setting_updated: $4당신은 설정을 성공적으로 업데이트 했습니다
flag: flag:
flag_key: '$2Key: %s' flag_key: '$2Key: %s'
flag_type: '$2Type: %s'
flag_desc: '$2Desc: %s' flag_desc: '$2Desc: %s'
not_valid_flag: $2그것은 유효한 깃발이 아닙니다 not_valid_flag: $2그것은 유효한 깃발이 아닙니다
not_valid_value: $2깃발 값은 무조건 문자 숫자여야만 한다 not_valid_value: $2깃발 값은 무조건 문자 숫자여야만 한다
@ -350,7 +328,6 @@ flag:
trusted: trusted:
trusted_added: $4당신은 그 땅에 유저를 성공적으로 위탁했습니다 trusted_added: $4당신은 그 땅에 유저를 성공적으로 위탁했습니다
trusted_removed: $4당신은 그 땅으로부터 신용(위탁)받은 유저를 성공적으로 제거했습니다. trusted_removed: $4당신은 그 땅으로부터 신용(위탁)받은 유저를 성공적으로 제거했습니다.
was_not_added: $2그 플레이어는 이 땅에서 신용(위탁)받지 못했습니다.
plot_removed_user: $1당신이 추가되었던 땅 %s가 소유자의 비활성의 이유로 삭제되었습니다. plot_removed_user: $1당신이 추가되었던 땅 %s가 소유자의 비활성의 이유로 삭제되었습니다.
member: member:
removed_players: $2이 땅으로부터 %s 플레이어가 제거되었습니다 removed_players: $2이 땅으로부터 %s 플레이어가 제거되었습니다
@ -398,4 +375,3 @@ kick:
grants: grants:
granted_plots: '$1결과: $2%s $1grants left' granted_plots: '$1결과: $2%s $1grants left'
granted_plot: $1You granted %s0 plot to $2%s1 granted_plot: $1You granted %s0 plot to $2%s1
granted_plot_failed: '$1Grant failed: $2%s'

View File

@ -68,8 +68,6 @@ records:
notify_leave: $2%player $2deixou seu terreno ($1%plot$2) notify_leave: $2%player $2deixou seu terreno ($1%plot$2)
swap: swap:
swap_overlap: $2As areas propostas nao podem se sobrepor. swap_overlap: $2As areas propostas nao podem se sobrepor.
swap_dimensions: $2As areas propostas devem ter dimensoes comparaveis.
swap_syntax: $2/plot swap <id>
swap_success: $4Terrenos trocados com sucesso. swap_success: $4Terrenos trocados com sucesso.
started_swap: $2Troca de terrenos iniciada. Voce sera notificado quando terminar. started_swap: $2Troca de terrenos iniciada. Voce sera notificado quando terminar.
comment: comment:
@ -83,7 +81,6 @@ comment:
no_plot_inbox: $2Voce deve permanecer ou fornecer um argumento de terreno. no_plot_inbox: $2Voce deve permanecer ou fornecer um argumento de terreno.
comment_removed: $4Comentario deletado com sucesso/s:n$2 - '$3%s$2' comment_removed: $4Comentario deletado com sucesso/s:n$2 - '$3%s$2'
comment_added: $4Um comentario foi deixado. comment_added: $4Um comentario foi deixado.
comment_header: $2&m---------&r $1Comentarios $2&m---------&r
inbox_empty: $2Nenhum comentario. inbox_empty: $2Nenhum comentario.
console: console:
not_console: $2Por reacoes de seguranca, este comando so pode ser executado por console. not_console: $2Por reacoes de seguranca, este comando so pode ser executado por console.
@ -138,15 +135,11 @@ setup:
setup_valid_arg: $2Valor $1%s0 $2alterado para %s1 setup_valid_arg: $2Valor $1%s0 $2alterado para %s1
setup_finished: $4Voce deve se teleportar para o mundo para cria-lo. Caso contrario, voce precisara configurar o gerador manualmente usando o bukkit.yml ou o plug-in de gerenciamento mundial escolhido. setup_finished: $4Voce deve se teleportar para o mundo para cria-lo. Caso contrario, voce precisara configurar o gerador manualmente usando o bukkit.yml ou o plug-in de gerenciamento mundial escolhido.
setup_world_taken: $2%s foi registrado como plotworld setup_world_taken: $2%s foi registrado como plotworld
setup_missing_world: $2Voce precisa especificar um nome de mundo ($1/plot setup &l<world>$1 <generator>$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot setup back&-$2 - $1/plot setup cancel
setup_missing_generator: $2Voce precisa especificar um gerador ($1/plot setup <world> &l<generator>&r$2)&-$1Additional commands:&-$2 - $1/plot setup <value>&-$2 - $1/plot setup back&-$2 - $1/plot setup cancel
setup_invalid_generator: '$2Gerador invalido. Possiveis opcoes: %s'
schematics: schematics:
schematic_too_large: $2O terreno e muito grande para esta acao! schematic_too_large: $2O terreno e muito grande para esta acao!
schematic_missing_arg: '$2Voce precisa especificar um argumento. Possiveis valores: $1test schematic_missing_arg: '$2Voce precisa especificar um argumento. Possiveis valores: $1test
<nome>$2 , $1save$2 , $1paste $2, $1exportall' <nome>$2 , $1save$2 , $1paste $2, $1exportall'
schematic_invalid: '$2Este nao e um schematic valido. Causa: $2%s' schematic_invalid: '$2Este nao e um schematic valido. Causa: $2%s'
schematic_valid: $2Este nao e um schematic valido.
schematic_paste_failed: $2Falha ao colar o schematic. schematic_paste_failed: $2Falha ao colar o schematic.
schematic_paste_success: $4O schamatic foi colado com sucesso! schematic_paste_success: $4O schamatic foi colado com sucesso!
titles: titles:
@ -195,7 +188,6 @@ merge:
merge_accepted: $2O pedido de mesclagem de terrenos foi aceito. merge_accepted: $2O pedido de mesclagem de terrenos foi aceito.
success_merge: $2Terrenos mesclados! success_merge: $2Terrenos mesclados!
merge_requested: $2Pedido de mesclagem foi enviado com sucesso. merge_requested: $2Pedido de mesclagem foi enviado com sucesso.
no_perm_merge: '$2Voce nao e proprietario deste terreno: $1%plot%'
no_available_automerge: $2Voce nao possui terrenos adjacentes na direcao especificada ou nao pode mesclar com o tamanho necessario. no_available_automerge: $2Voce nao possui terrenos adjacentes na direcao especificada ou nao pode mesclar com o tamanho necessario.
unlink_required: $2Um desvinculo e requirido para fazer isso.. unlink_required: $2Um desvinculo e requirido para fazer isso..
unlink_impossible: $2Voce so pode desvincular um mega-terreno unlink_impossible: $2Voce so pode desvincular um mega-terreno
@ -308,21 +300,14 @@ list:
area_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Lista de %amount% areas area_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Lista de %amount% areas
plot_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Lista de %amount% terrenos plot_list_header_paged: $2(Pagina $1%cur$2/$1%max$2) $1Lista de %amount% terrenos
plot_list_header: $1Lista de %word% terrenos plot_list_header: $1Lista de %word% terrenos
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner
plot_list_footer: $2>> $1%word% um total de $2%num% $1reinvindicados %plot%.
left: left:
left_plot: $2Voce saiu do terreno left_plot: $2Voce saiu do terreno
chat: chat:
plot_chat_format: '$2[$1Terreno Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1Terreno Chat$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2Este mundo forca todos usarem o chat do terreno. plot_chat_forced: $2Este mundo forca todos usarem o chat do terreno.
plot_chat_on: $4Plot chat enabled.
plot_chat_off: $4Chat do terreno desativado.
deny: deny:
denied_removed: $4Voce removeu este jogador dos jogadores negados. denied_removed: $4Voce removeu este jogador dos jogadores negados.
denied_added: $4Voce negou este jogador com sucesso. denied_added: $4Voce negou este jogador com sucesso.
denied_need_argument: $2Faltam argumentos. $1/plot negar add <nome> $2ou $1/plot denied remove <nome>
was_not_denied: $2Este jogador foi negado do terreno.
you_got_denied: $4Voce foi negado do terreno em que estava, e foi teleportado para o spawn. you_got_denied: $4Voce foi negado do terreno em que estava, e foi teleportado para o spawn.
kick: kick:
you_got_kicked: $4Voce foi chutado! you_got_kicked: $4Voce foi chutado!
@ -331,7 +316,6 @@ rain:
setting_updated: $4Voce atualizou as configuracoes com sucesso. setting_updated: $4Voce atualizou as configuracoes com sucesso.
flag: flag:
flag_key: '$2Chave: %s' flag_key: '$2Chave: %s'
flag_type: '$2Tipo: %s'
flag_desc: '$2Desc: %s' flag_desc: '$2Desc: %s'
not_valid_flag: $2Esta nao e uma flag valida. not_valid_flag: $2Esta nao e uma flag valida.
not_valid_flag_suggested: '$2Esta nao e uma flag valida. Voce quis dizer: $1%s' not_valid_flag_suggested: '$2Esta nao e uma flag valida. Voce quis dizer: $1%s'
@ -344,7 +328,6 @@ flag:
trusted: trusted:
trusted_added: $4Voce confiou com sucesso neste jogador. trusted_added: $4Voce confiou com sucesso neste jogador.
trusted_removed: $4Voce removeu com sucesso a confianca deste jogador. trusted_removed: $4Voce removeu com sucesso a confianca deste jogador.
was_not_added: $2Este jogador nao recebeu confianca neste terreno.
plot_removed_user: $1Terreno %s o qual voce foi adicionado foi deletado pela inatividade do proprietario. plot_removed_user: $1Terreno %s o qual voce foi adicionado foi deletado pela inatividade do proprietario.
member: member:
removed_players: $2Foi/foram removido(s) %s jogador(es) deste terreno. removed_players: $2Foi/foram removido(s) %s jogador(es) deste terreno.
@ -372,6 +355,5 @@ help:
grants: grants:
granted_plots: '$1Resultado: $2%s $1concecoes restantes' granted_plots: '$1Resultado: $2%s $1concecoes restantes'
granted_plot: $1Voce concedeu %s0 terreno(s) para $2%s1 granted_plot: $1Voce concedeu %s0 terreno(s) para $2%s1
granted_plot_failed: '$1A concessao falhou: $2%s'
'-': '-':
custom_string: '-' custom_string: '-'

View File

@ -79,8 +79,6 @@ records:
notify_leave: $2%player $2已离开阁下的地皮$1%plot$2 notify_leave: $2%player $2已离开阁下的地皮$1%plot$2
swap: swap:
swap_overlap: $2计划的区域不允许重叠 swap_overlap: $2计划的区域不允许重叠
swap_dimensions: $2计划的区域必须有可对比的维度
swap_syntax: $2/plot swap <编号>
swap_success: $4已成功交换地皮 swap_success: $4已成功交换地皮
started_swap: $2已开始地皮交换任务。阁下将会在完成时收到提醒 started_swap: $2已开始地皮交换任务。阁下将会在完成时收到提醒
comment: comment:
@ -94,7 +92,6 @@ comment:
no_plot_inbox: $2阁下必须站在地皮内或提供地皮参数 no_plot_inbox: $2阁下必须站在地皮内或提供地皮参数
comment_removed: $4已成功删除评论$2 - '$3%s$2' comment_removed: $4已成功删除评论$2 - '$3%s$2'
comment_added: $4有玩家留下了一条评论 comment_added: $4有玩家留下了一条评论
comment_header: $2&m---------&r $1评论 $2&m---------&r
inbox_empty: $2无评论 inbox_empty: $2无评论
console: console:
not_console: $2由于安全考虑此命令只可由控制台执行。 not_console: $2由于安全考虑此命令只可由控制台执行。
@ -151,18 +148,10 @@ setup:
setup_finished: $4阁下应已被传送至新建的世界。否则阁下将需 setup_finished: $4阁下应已被传送至新建的世界。否则阁下将需
在 bukkit.yml 或世界管理插件中手动设置生成器。 在 bukkit.yml 或世界管理插件中手动设置生成器。
setup_world_taken: $2%s 已是一个世界 setup_world_taken: $2%s 已是一个世界
setup_missing_world: $2阁下需要指定世界名$1/plot setup &l<世界名>$1
<生成器>$2&-$1附加指令&-$2 - $1/plot setup <值>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel
setup_missing_generator: $2阁下需要指定生成器$1/plot setup <世界名>
&l<生成器>&r$2)&-$1附加指令&-$2 - $1/plot setup <值>&-$2 - $1/plot
setup back&-$2 - $1/plot setup cancel
setup_invalid_generator: '$2无效的生成器。可能选项%s'
schematics: schematics:
schematic_too_large: $2此地皮过大无法进行此操作 schematic_too_large: $2此地皮过大无法进行此操作
schematic_missing_arg: '$2阁下需要指定参数。可能的值$1save$2, $1paste $2, $1exportall' schematic_missing_arg: '$2阁下需要指定参数。可能的值$1save$2, $1paste $2, $1exportall'
schematic_invalid: '$2布局无效。理由$2%s' schematic_invalid: '$2布局无效。理由$2%s'
schematic_valid: $2布局无效
schematic_paste_failed: $2粘贴布局失败 schematic_paste_failed: $2粘贴布局失败
schematic_paste_success: $4已成功粘贴布局 schematic_paste_success: $4已成功粘贴布局
titles: titles:
@ -214,7 +203,6 @@ merge:
merge_accepted: $2此合并请求已被接受 merge_accepted: $2此合并请求已被接受
success_merge: $2已合并地皮 success_merge: $2已合并地皮
merge_requested: $2已成功发送合并请求 merge_requested: $2已成功发送合并请求
no_perm_merge: '$2阁下不是地皮 $1%plot% $2的所有者'
no_available_automerge: $2阁下在指定方向不拥有任何相邻的地皮 no_available_automerge: $2阁下在指定方向不拥有任何相邻的地皮
或阁下被禁止合并所需的大小。 或阁下被禁止合并所需的大小。
unlink_required: $2需要解除关联才能执行此操作。 unlink_required: $2需要解除关联才能执行此操作。
@ -237,7 +225,6 @@ errors:
command_went_wrong: $2执行此命令时发生错误··· command_went_wrong: $2执行此命令时发生错误···
no_free_plots: $2无可用的免费地皮 no_free_plots: $2无可用的免费地皮
not_in_plot: $2阁下不在地皮上 not_in_plot: $2阁下不在地皮上
not_loaded: $2无法加载地皮
not_in_cluster: $2阁下必须在地皮群集上以进行此操作 not_in_cluster: $2阁下必须在地皮群集上以进行此操作
not_in_plot_world: $2阁下不在地皮区域上 not_in_plot_world: $2阁下不在地皮区域上
plotworld_incompatible: $2两个世界必须相互兼容 plotworld_incompatible: $2两个世界必须相互兼容
@ -335,23 +322,15 @@ list:
area_list_header_paged: $2页面 $1%cur$2/$1%max$2 $1共计 %amount% 块区域 area_list_header_paged: $2页面 $1%cur$2/$1%max$2 $1共计 %amount% 块区域
plot_list_header_paged: $2页面 $1%cur$2/$1%max$2 $1共计 %amount% 块地皮 plot_list_header_paged: $2页面 $1%cur$2/$1%max$2 $1共计 %amount% 块地皮
plot_list_header: $1共计 %word% 块地皮 plot_list_header: $1共计 %word% 块地皮
plot_list_item: $2>> $1%id$2:$1%world $2- $1%owner
plot_list_item_ordered: $2[$1%in$2] >> $1%id$2:$1%world $2- $1%owner
plot_list_footer: $2>> $1%word% 共计 $2%num% $1领取了地皮 %plot%。
left: left:
left_plot: $2阁下已离开地皮 left_plot: $2阁下已离开地皮
chat: chat:
plot_chat_spy_format: '$2[$1地皮间谍$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_spy_format: '$2[$1地皮间谍$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_format: '$2[$1地皮老铁$2][$1%plot_id%$2] $1%sender%$2: $1%msg%' plot_chat_format: '$2[$1地皮老铁$2][$1%plot_id%$2] $1%sender%$2: $1%msg%'
plot_chat_forced: $2此世界强制所有人使用地皮聊天。 plot_chat_forced: $2此世界强制所有人使用地皮聊天。
plot_chat_on: $4已启用地皮聊天。
plot_chat_off: $4已禁用地皮聊天。
deny: deny:
denied_removed: $4阁下已成功解禁此玩家进入地皮 denied_removed: $4阁下已成功解禁此玩家进入地皮
denied_added: $4阁下已成功禁止此玩家进入地皮 denied_added: $4阁下已成功禁止此玩家进入地皮
denied_need_argument: $2缺少参数。$1/plot denied add <名称> $2或 $1/plot
denied remove <名称>
was_not_denied: $2此玩家未被此地皮封禁
you_got_denied: $4阁下已被禁止进入先前所在的地皮并已被传送至出生点 you_got_denied: $4阁下已被禁止进入先前所在的地皮并已被传送至出生点
kick: kick:
you_got_kicked: $4阁下已被踢出 you_got_kicked: $4阁下已被踢出
@ -360,7 +339,6 @@ rain:
setting_updated: $4阁下已成功更新设置 setting_updated: $4阁下已成功更新设置
flag: flag:
flag_key: '$2关键词%s' flag_key: '$2关键词%s'
flag_type: '$2类型%s'
flag_desc: '$2描述%s' flag_desc: '$2描述%s'
not_valid_flag: $2标记无效 not_valid_flag: $2标记无效
not_valid_flag_suggested: '$2标记无效。阁下的意思是否是$1%s' not_valid_flag_suggested: '$2标记无效。阁下的意思是否是$1%s'
@ -373,7 +351,6 @@ flag:
trusted: trusted:
trusted_added: $4阁下已成功将用户添加到地皮受信列表 trusted_added: $4阁下已成功将用户添加到地皮受信列表
trusted_removed: $4阁下已成功将用户从地皮受信列表中移除 trusted_removed: $4阁下已成功将用户从地皮受信列表中移除
was_not_added: $2此用户在此地皮上不受信任
plot_removed_user: $1阁下所添加至的地皮 %s 由于所有者不活跃已被删除 plot_removed_user: $1阁下所添加至的地皮 %s 由于所有者不活跃已被删除
member: member:
removed_players: $2已从此地皮中移除了 %s 位玩家。 removed_players: $2已从此地皮中移除了 %s 位玩家。
@ -401,6 +378,5 @@ help:
grants: grants:
granted_plots: '$1结果剩余 $2%s $1次授权' granted_plots: '$1结果剩余 $2%s $1次授权'
granted_plot: $1阁下授权了 %s0 地皮至 $2%s1 granted_plot: $1阁下授权了 %s0 地皮至 $2%s1
granted_plot_failed: '$1授权失败$2%s'
'-': '-':
custom_string: '-' custom_string: '-'

View File

@ -1,13 +1,5 @@
#
# PlotSquared, a plot management system for Minecraft
# Copyright (c) 2020 IntellectualSites
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
#
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.4-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists