diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/commands/AdminEditCommands.java b/paper/src/main/java/rocks/gravili/notquests/paper/commands/AdminEditCommands.java index cf676685e..4bb3d7288 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/commands/AdminEditCommands.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/commands/AdminEditCommands.java @@ -53,6 +53,7 @@ import rocks.gravili.notquests.paper.commands.arguments.DurationArgument; import rocks.gravili.notquests.paper.commands.arguments.ItemStackSelectionArgument; import rocks.gravili.notquests.paper.commands.arguments.MiniMessageSelector; +import rocks.gravili.notquests.paper.commands.arguments.MiniMessageStringSelector; import rocks.gravili.notquests.paper.commands.arguments.wrappers.ItemStackSelection; import rocks.gravili.notquests.paper.managers.data.Category; import rocks.gravili.notquests.paper.structs.Quest; @@ -817,36 +818,41 @@ public void handleEditObjectives(final Command.Builder builder) { )); })); - manager.command(builder.literal("description") - .literal("set") - .argument(StringArrayArgument.of("Objective Description", - (context, lastString) -> { - final List allArgs = context.getRawInput(); - main.getUtilManager().sendFancyCommandCompletion(context.getSender(), allArgs.toArray(new String[0]), "", ""); - ArrayList completions = new ArrayList<>(); + manager.command(builder.literal("taskDescription") + .literal("show") + .meta(CommandMeta.DESCRIPTION, "Shows current objective task description.") + .handler((context) -> { + final Quest quest = context.get("quest"); + final int objectiveID = context.get("Objective ID"); + final Objective objective = quest.getObjectiveFromID(objectiveID); + assert objective != null; //Shouldn't be null - String rawInput = context.getRawInputJoined(); - if (lastString.startsWith("{")) { - completions.addAll(main.getCommandManager().getAdminCommands().placeholders); - } else { - if(lastString.startsWith("<")){ - for(String color : main.getUtilManager().getMiniMessageTokens()){ - completions.add("<"+ color +">"); - //Now the closings. First we search IF it contains an opening and IF it doesnt contain more closings than the opening - if(rawInput.contains("<"+color+">")){ - if(StringUtils.countMatches(rawInput, "<"+color+">") > StringUtils.countMatches(rawInput, "")){ - completions.add(""); - } - } - } - }else{ - completions.add(""); - } - } + context.getSender().sendMessage(main.parse( + "
Current task description of objective with ID " + objectiveID + ": " + + objective.getTaskDescriptionProvided() + )); + })); + manager.command(builder.literal("taskDescription") + .literal("remove") + .meta(CommandMeta.DESCRIPTION, "Removes current objective task description.") + .handler((context) -> { + final Quest quest = context.get("quest"); + final int objectiveID = context.get("Objective ID"); + final Objective objective = quest.getObjectiveFromID(objectiveID); + assert objective != null; //Shouldn't be null + + objective.removeTaskDescription(true); + context.getSender().sendMessage(main.parse( + "
Task description successfully removed from objective with ID " + objectiveID + "! New description: " + + objective.getTaskDescriptionProvided() + )); + })); - return completions; - } - ), ArgumentDescription.of("Objective description")) + manager.command(builder.literal("description") + .literal("set") + .argument(MiniMessageSelector.newBuilder("Objective Description", main) + .withPlaceholders() + .build(), ArgumentDescription.of("Objective description")) .meta(CommandMeta.DESCRIPTION, "Sets current objective description.") .handler((context) -> { final Quest quest = context.get("quest"); @@ -862,6 +868,26 @@ public void handleEditObjectives(final Command.Builder builder) { )); })); + manager.command(builder.literal("taskDescription") + .literal("set") + .argument(MiniMessageSelector.newBuilder("Task Description", main) + .withPlaceholders() + .build(), ArgumentDescription.of("Objective task description")) + .meta(CommandMeta.DESCRIPTION, "Sets current objective task description.") + .handler((context) -> { + final Quest quest = context.get("quest"); + final int objectiveID = context.get("Objective ID"); + final Objective objective = quest.getObjectiveFromID(objectiveID); + assert objective != null; //Shouldn't be null + + final String taskDescription = String.join(" ", (String[]) context.get("Task Description")); + objective.setTaskDescription(taskDescription, true); + context.getSender().sendMessage(main.parse( + "
Task Description successfully added to objective with ID " + objectiveID + "! New description: " + + objective.getTaskDescriptionProvided() + )); + })); + manager.command(builder.literal("displayname") .literal("show") diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/managers/QuestManager.java b/paper/src/main/java/rocks/gravili/notquests/paper/managers/QuestManager.java index 774e7e0ad..9626119c3 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/managers/QuestManager.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/managers/QuestManager.java @@ -256,6 +256,7 @@ public void loadQuestsFromConfig(final Category category) { final String objectiveDisplayName = category.getQuestsConfig().getString("quests." + questName + ".objectives." + objectiveNumber + ".displayName", ""); final String objectiveDescription = category.getQuestsConfig().getString("quests." + questName + ".objectives." + objectiveNumber + ".description", ""); + final String objectiveTaskDescription = category.getQuestsConfig().getString("quests." + questName + ".objectives." + objectiveNumber + ".taskDescription", ""); final int completionNPCID = category.getQuestsConfig().getInt("quests." + quest.getQuestName() + ".objectives." + objectiveNumber + ".completionNPCID", -1); final String completionArmorStandUUIDString = category.getQuestsConfig().getString("quests." + quest.getQuestName() + ".objectives." + objectiveNumber + ".completionArmorStandUUID", null); if (completionArmorStandUUIDString != null) { @@ -264,7 +265,7 @@ public void loadQuestsFromConfig(final Category category) { } objective.setDescription(objectiveDescription.replace("\\n", "\n"), false); - + objective.setTaskDescription(objectiveTaskDescription.replace("\\n", "\n"), false); objective.setDisplayName(objectiveDisplayName.replace("\\n", "\n"), false); @@ -1389,7 +1390,7 @@ public final String getObjectiveTaskDescription(final Objective objective, boole public final String getObjectiveTaskDescription(final Objective objective, boolean completed, final QuestPlayer questPlayer, @Nullable final ActiveObjective activeObjective) { String toReturn = ""; - toReturn += objective.getObjectiveTaskDescription(questPlayer, activeObjective); + toReturn += objective.getTaskDescription(questPlayer, activeObjective); if (objective.getCompletionNPCID() != -1) { if (main.getIntegrationsManager().isCitizensEnabled()) { diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/managers/registering/ObjectiveManager.java b/paper/src/main/java/rocks/gravili/notquests/paper/managers/registering/ObjectiveManager.java index afb512f81..d99f3a10f 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/managers/registering/ObjectiveManager.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/managers/registering/ObjectiveManager.java @@ -149,7 +149,8 @@ public void registerObjective( main.getCommandManager() .getAdminEditAddObjectiveCommandBuilder() .literal(identifier) - .meta(CommandMeta.DESCRIPTION, "Creates a new " + identifier + " objective")); + .meta(CommandMeta.DESCRIPTION, "Creates a new " + identifier + " objective") + .flag(main.getCommandManager().taskDescription)); } catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) { e.printStackTrace(); } @@ -182,11 +183,18 @@ public final Collection getObjectiveIdentifiers() { public void addObjective(Objective objective, CommandContext context) { - Quest quest = context.getOrDefault("quest", null); + final Quest quest = context.getOrDefault("quest", null); + + final String taskDescription = + context.flags().getValue(main.getCommandManager().taskDescription, ""); if (quest != null) { objective.setQuest(quest); objective.setObjectiveID(quest.getFreeObjectiveID()); + if(taskDescription != null && !taskDescription.isBlank()) { + objective.setTaskDescription(taskDescription, true); + } + context .getSender() .sendMessage( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreakBlocksObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreakBlocksObjective.java index 0b831b852..344bdaace 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreakBlocksObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreakBlocksObjective.java @@ -85,7 +85,7 @@ public void setItemStackSelection(final ItemStackSelection itemStackSelection) { } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { /*String translatedMaterialName; try { diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreedObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreedObjective.java index 002ce1a02..bb0c98f07 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreedObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/BreedObjective.java @@ -63,7 +63,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString("chat.objectives.taskDescription.breed.base", questPlayer, activeObjective) diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CollectItemsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CollectItemsObjective.java index be3747c78..f99ee157b 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CollectItemsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CollectItemsObjective.java @@ -86,7 +86,7 @@ public void setItemStackSelection(final ItemStackSelection itemStackSelection) { } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConditionObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConditionObjective.java index df612cafb..8dc510068 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConditionObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConditionObjective.java @@ -68,7 +68,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { if (condition != null) { return condition.getConditionDescription(questPlayer, getQuest()); diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConsumeItemsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConsumeItemsObjective.java index bdfb6bc4e..05fcf80da 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConsumeItemsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ConsumeItemsObjective.java @@ -87,7 +87,7 @@ public void onObjectiveCompleteOrLock( final boolean completed) {} @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CraftItemsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CraftItemsObjective.java index b045a9d95..048a566a3 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CraftItemsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/CraftItemsObjective.java @@ -87,7 +87,7 @@ public void onObjectiveCompleteOrLock( final boolean completed) {} @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/DeliverItemsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/DeliverItemsObjective.java index e7d28a107..fdd4bc580 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/DeliverItemsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/DeliverItemsObjective.java @@ -222,7 +222,7 @@ public void setRecipientArmorStandUUID(final UUID recipientArmorStandUUID) { } @Override - public String getObjectiveTaskDescription(final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { + public String getTaskDescriptionInternal(final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { String toReturn; diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/FishItemsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/FishItemsObjective.java index c9220f7e7..13b500fa4 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/FishItemsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/FishItemsObjective.java @@ -58,7 +58,7 @@ public void setItemStackSelection(final ItemStackSelection itemStackSelection) { } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/InteractObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/InteractObjective.java index 49cd00f8a..b716c2d79 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/InteractObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/InteractObjective.java @@ -40,7 +40,6 @@ public class InteractObjective extends Objective { private Location locationToInteract; private boolean leftClick = false; private boolean rightClick = false; - private String taskDescription = ""; private int maxDistance = 1; private boolean cancelInteraction = false; @@ -86,7 +85,6 @@ public static void handleCommands( .withDescription( ArgumentDescription.of( "Makes it so the interaction will be cancelled while this objective is active"))) - .flag(main.getCommandManager().taskDescription) .flag(main.getCommandManager().maxDistance) .handler( (context) -> { @@ -99,8 +97,6 @@ public static void handleCommands( final boolean leftClick = context.flags().isPresent("leftClick"); final boolean rightClick = context.flags().isPresent("rightClick"); - final String taskDescription = - context.flags().getValue(main.getCommandManager().taskDescription, ""); final int maxDistance = context.flags().getValue(main.getCommandManager().maxDistance, 1); final boolean cancelInteraction = context.flags().isPresent("cancelInteraction"); @@ -109,7 +105,6 @@ public static void handleCommands( interactObjective.setLocationToInteract(location); interactObjective.setLeftClick(leftClick); interactObjective.setRightClick(rightClick); - interactObjective.setTaskDescription(taskDescription); interactObjective.setMaxDistance(maxDistance); interactObjective.setCancelInteraction(cancelInteraction); interactObjective.setProgressNeededExpression(amountExpression); @@ -119,9 +114,8 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { - String toReturn; String interactType = ""; if (isLeftClick()) { interactType = "Left-Click"; @@ -138,47 +132,21 @@ public String getObjectiveTaskDescription( worldName = getLocationToInteract().getWorld().getName(); } - if (taskDescription.isBlank()) { - toReturn = - main.getLanguageManager() - .getString( - "chat.objectives.taskDescription.interact.base", - questPlayer, - activeObjective, - Map.of( - "%INTERACTTYPE%", interactType, - "%COORDINATES%", - "X: " - + getLocationToInteract().getX() - + " Y: " - + getLocationToInteract().getY() - + " Z: " - + getLocationToInteract().getZ(), - "%WORLDNAME%", worldName)); - } else { - toReturn = - main.getLanguageManager() - .getString( - "chat.objectives.taskDescription.interact.taskDescriptionProvided", - questPlayer, - activeObjective, - Map.of( - "%TASKDESCRIPTION%", - getTaskDescription(), - "%INTERACTTYPE%", - interactType, - "%COORDINATES%", - "X: " - + getLocationToInteract().getX() - + " Y: " - + getLocationToInteract().getY() - + " Z: " - + getLocationToInteract().getZ(), - "%WORLDNAME%", - worldName)); - } - - return toReturn; + return main.getLanguageManager() + .getString( + "chat.objectives.taskDescription.interact.base", + questPlayer, + activeObjective, + Map.of( + "%INTERACTTYPE%", interactType, + "%COORDINATES%", + "X: " + + getLocationToInteract().getX() + + " Y: " + + getLocationToInteract().getY() + + " Z: " + + getLocationToInteract().getZ(), + "%WORLDNAME%", worldName)); } @Override @@ -186,9 +154,7 @@ public void save(FileConfiguration configuration, String initialPath) { configuration.set(initialPath + ".specifics.locationToInteract", getLocationToInteract()); configuration.set(initialPath + ".specifics.leftClick", isLeftClick()); configuration.set(initialPath + ".specifics.rightClick", isRightClick()); - if (!getTaskDescription().isBlank()) { - configuration.set(initialPath + ".specifics.taskDescription", getTaskDescription()); - } + if (getMaxDistance() > 1) { configuration.set(initialPath + ".specifics.maxDistance", getMaxDistance()); } @@ -200,7 +166,6 @@ public void load(FileConfiguration configuration, String initialPath) { locationToInteract = configuration.getLocation(initialPath + ".specifics.locationToInteract"); leftClick = configuration.getBoolean(initialPath + ".specifics.leftClick", false); rightClick = configuration.getBoolean(initialPath + ".specifics.rightClick", false); - taskDescription = configuration.getString(initialPath + ".specifics.taskDescription", ""); maxDistance = configuration.getInt(initialPath + ".specifics.maxDistance", 1); cancelInteraction = configuration.getBoolean(initialPath + ".specifics.cancelInteraction", false); @@ -241,14 +206,6 @@ public void setRightClick(final boolean rightClick) { this.rightClick = rightClick; } - public final String getTaskDescription() { - return taskDescription; - } - - public void setTaskDescription(final String taskDescription) { - this.taskDescription = taskDescription; - } - public final int getMaxDistance() { return maxDistance; } diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/JumpObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/JumpObjective.java index 224233d35..d1f7ca38e 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/JumpObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/JumpObjective.java @@ -68,7 +68,7 @@ public void onObjectiveCompleteOrLock( final boolean completed) {} @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/KillMobsObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/KillMobsObjective.java index 8ebd42655..eb124eba3 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/KillMobsObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/KillMobsObjective.java @@ -123,7 +123,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/NumberVariableObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/NumberVariableObjective.java index 35ad4f8da..6d96be425 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/NumberVariableObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/NumberVariableObjective.java @@ -142,7 +142,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { if (variableName != null) { final double expressionValue = activeObjective != null ? activeObjective.getProgressNeeded() : getProgressNeededExpression().calculateValue(questPlayer); diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/Objective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/Objective.java index afa3ddb58..d0d498311 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/Objective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/Objective.java @@ -46,6 +46,8 @@ public abstract class Objective { private int objectiveID = -1; private String objectiveDisplayName = ""; private String objectiveDescription = ""; + + private String taskDescription = ""; private int completionNPCID = -1; private UUID completionArmorStandUUID = null; @@ -318,6 +320,11 @@ public final String getDescription() { // MiniMessage return objectiveDescription; } + public final String getTaskDescriptionProvided() { // MiniMessage + return taskDescription; + } + + /** * Gets the objective description, but also adds line-breaks so the description is not bigger than * the screen (useful for the GUI) @@ -348,6 +355,21 @@ public void setDescription(String newObjectiveDescription, boolean save) { } } + public void setTaskDescription(String newObjectiveTaskDescription, boolean save) { + newObjectiveTaskDescription = + main.getUtilManager().replaceLegacyWithMiniMessage(newObjectiveTaskDescription); + this.taskDescription = newObjectiveTaskDescription; + if (save) { + quest + .getCategory() + .getQuestsConfig() + .set( + "quests." + quest.getQuestName() + ".objectives." + getObjectiveID() + ".taskDescription", + newObjectiveTaskDescription); + quest.getCategory().saveQuestsConfig(); + } + } + public void removeDescription(boolean save) { this.objectiveDescription = ""; if (save) { @@ -361,6 +383,19 @@ public void removeDescription(boolean save) { } } + public void removeTaskDescription(boolean save) { + this.taskDescription = ""; + if (save) { + quest + .getCategory() + .getQuestsConfig() + .set( + "quests." + quest.getQuestName() + ".objectives." + getObjectiveID() + ".taskDescription", + null); + quest.getCategory().saveQuestsConfig(); + } + } + public final Quest getQuest() { return quest; } @@ -369,7 +404,17 @@ public void setQuest(final Quest quest) { this.quest = quest; } - public abstract String getObjectiveTaskDescription( + public final String getTaskDescription(final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective){ + final String taskDescriptionToReturn = (getTaskDescriptionProvided() == null || getTaskDescriptionProvided().isBlank()) + ? getTaskDescriptionInternal(questPlayer, activeObjective) + : getTaskDescriptionProvided(); + + return main.getLanguageManager().getString("chat.objectives.taskDescription.global.prefix", questPlayer, activeObjective) + + taskDescriptionToReturn.replace(" └─ ", "") //Convert old to new + + main.getLanguageManager().getString("chat.objectives.taskDescription.global.suffix", questPlayer, activeObjective); + } + + protected abstract String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective); public abstract void save(final FileConfiguration configuration, final String initialPath); diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OpenBuriedTreasureObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OpenBuriedTreasureObjective.java index f5412c128..aa58bbcd0 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OpenBuriedTreasureObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OpenBuriedTreasureObjective.java @@ -57,7 +57,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OtherQuestObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OtherQuestObjective.java index 8f5ffbc4e..60a006d9d 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OtherQuestObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/OtherQuestObjective.java @@ -76,7 +76,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/PlaceBlocksObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/PlaceBlocksObjective.java index 1be5b0ef4..3c2b57387 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/PlaceBlocksObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/PlaceBlocksObjective.java @@ -87,7 +87,7 @@ public void setItemStackSelection(final ItemStackSelection itemStackSelection) { } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ReachLocationObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ReachLocationObjective.java index d2e33949e..2f0cd9bd4 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ReachLocationObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/ReachLocationObjective.java @@ -83,7 +83,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/RunCommandObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/RunCommandObjective.java index ce22e145e..5dfc63fa0 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/RunCommandObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/RunCommandObjective.java @@ -107,7 +107,7 @@ public static void handleCommands( } @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SmeltObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SmeltObjective.java index 5331f6493..f7047791b 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SmeltObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SmeltObjective.java @@ -89,7 +89,7 @@ public void onObjectiveCompleteOrLock( final boolean completed) {} @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { final String displayName; diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SneakObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SneakObjective.java index 18c0c2d13..b4a8d46c1 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SneakObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/SneakObjective.java @@ -68,7 +68,7 @@ public void onObjectiveCompleteOrLock( final boolean completed) {} @Override - public String getObjectiveTaskDescription( + public String getTaskDescriptionInternal( final QuestPlayer questPlayer, final @Nullable ActiveObjective activeObjective) { return main.getLanguageManager() .getString( diff --git a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/TalkToNPCObjective.java b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/TalkToNPCObjective.java index c47f9bd1d..77ff63f68 100644 --- a/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/TalkToNPCObjective.java +++ b/paper/src/main/java/rocks/gravili/notquests/paper/structs/objectives/TalkToNPCObjective.java @@ -152,7 +152,7 @@ public static void handleCommands(NotQuests main, PaperCommandManager taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ar-SA.yml b/plugin/src/main/resources/translations/ar-SA.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/ar-SA.yml +++ b/plugin/src/main/resources/translations/ar-SA.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ca-ES.yml b/plugin/src/main/resources/translations/ca-ES.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/ca-ES.yml +++ b/plugin/src/main/resources/translations/ca-ES.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/cs-CZ.yml b/plugin/src/main/resources/translations/cs-CZ.yml index ca21a184c..47278dad6 100644 --- a/plugin/src/main/resources/translations/cs-CZ.yml +++ b/plugin/src/main/resources/translations/cs-CZ.yml @@ -75,7 +75,7 @@ chat: consumeItems: base: ' └─ Itemy ke snězení: %ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: base: ' └─ Itemy k doručení: %ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' @@ -86,7 +86,7 @@ chat: escortNPC: base: ' └─ Převézt %NPCNAME% to %DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: base: ' └─ Moby k zabití: %MOBTOKILL%' otherQuest: @@ -110,11 +110,11 @@ chat: jump: base: ' └─ Vyskočit %AMOUNTOFJUMPS% krát' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: base: ' └─ Itemy k roztavení : %ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: base: ' └─ Dosáhnout residentního počtu: %AMOUNT%' townyNationReachTownCount: @@ -126,9 +126,9 @@ chat: ProjectKorraUseAbility: base: ' └─ Použít schopnost: %ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/da-DK.yml b/plugin/src/main/resources/translations/da-DK.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/da-DK.yml +++ b/plugin/src/main/resources/translations/da-DK.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/de-DE.yml b/plugin/src/main/resources/translations/de-DE.yml index 103dbdb58..6dc4cea65 100644 --- a/plugin/src/main/resources/translations/de-DE.yml +++ b/plugin/src/main/resources/translations/de-DE.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Block abbauen:
%BLOCKTOBREAK%' + base: 'Block abbauen:
%BLOCKTOBREAK%' breed: - base: ' └─ Mob züchten:
%ENTITYTOBREED%' + base: 'Mob züchten:
%ENTITYTOBREED%' collectItems: - base: ' └─ Items sammeln:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Items sammeln:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Items konsumieren:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Items konsumieren:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Items craften:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Items craften:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Items liefern:
%ITEMTODELIVERTYPE% %(%%ITEMTODELIVERNAME%%)%' + base: 'Items liefern:
%ITEMTODELIVERTYPE% %(%%ITEMTODELIVERNAME%%)%' deliver-to-npc: ' Bringe es zu %NPCNAME%' deliver-to-npc-not-available: ' Der Empfänger-NPC ist derzeit nicht verfügbar!' deliver-to-npc-citizens-not-found: ' Fehler: Das Citizens Plugin ist nicht installiert. Bitte kontaktiere einen Admin.' deliver-to-armorstand: ' Bringe es zu %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' Der Empfänger-NPC ist derzeit nicht verfügbar!' escortNPC: - base: ' └─ Eskortiere
%NPCNAME% zu
%DESTINATIONNPCNAME%' + base: 'Eskortiere
%NPCNAME% zu
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Mobs töten:
%MOBTOKILL%' + base: 'Mobs töten:
%MOBTOKILL%' otherQuest: - base: ' └─ Quest abschließen:
%OTHERQUESTNAME%' + base: 'Quest abschließen:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Block platzieren:
%BLOCKTOPLACE%' + base: 'Block platzieren:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Ort erreichen:
%LOCATIONNAME%' + base: 'Ort erreichen:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Spreche mit
%NAME%' + base: 'Spreche mit
%NAME%' triggerCommand: - base: ' └─ Ziel:
%TRIGGERNAME%' + base: 'Ziel:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Töte Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Töte irgendein Elite Mob!' + base: 'Töte Elite Mob:
%ELITEMOBNAME%' + any: 'Töte irgendein Elite Mob!' runCommand: - base: ' └─ Befehl ausführen:
%COMMANDTORUN%' + base: 'Befehl ausführen:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Ort:
%COORDINATES%
in Welt %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Ort:
%COORDINATES%
in Welt %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Springe
%AMOUNTOFJUMPS% mal' + base: 'Springe
%AMOUNTOFJUMPS% mal' sneak: - base: ' └─ Sneake
%AMOUNTOFSNEAKS%
mal' + base: 'Sneake
%AMOUNTOFSNEAKS%
mal' smelt: - base: ' └─ Items schmelzen:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Items schmelzen:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Öffne vergrabene Schätze' + base: 'Öffne vergrabene Schätze' townyReachResidentCount: - base: ' └─ Erreiche folgende Anzahl an Stadtbewohnern:
%AMOUNT%' + base: 'Erreiche folgende Anzahl an Stadtbewohnern:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Erreiche folgende Anzahl an Städten in deiner Nation:
%AMOUNT%' + base: 'Erreiche folgende Anzahl an Städten in deiner Nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Erreiche Job Level
%AMOUNT% als
%JOB%' + base: 'Erreiche Job Level
%AMOUNT% als
%JOB%' SlimefunResearch: - base: ' └─ Gebe für Forschung aus' + base: 'Gebe für Forschung aus' ProjectKorraUseAbility: - base: ' └─ Fähigkeit nutzen:
%ABILITY%' + base: 'Fähigkeit nutzen:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Aufgabe fertigstellen:
%BETONQUESTOBJECTIVENAME%' + base: 'Aufgabe fertigstellen:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Erreiche Job Level
%AMOUNT%
mit dem Job
%JOBID%' + base: 'Erreiche Job Level
%AMOUNT%
mit dem Job
%JOBID%' conditions: boolean: not-fulfilled: "Folgendes muss %BOOLEANREQUIREMENT% sein: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/el-GR.yml b/plugin/src/main/resources/translations/el-GR.yml index 96ad17c78..6615f1950 100644 --- a/plugin/src/main/resources/translations/el-GR.yml +++ b/plugin/src/main/resources/translations/el-GR.yml @@ -66,68 +66,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Block to break:
%BLOCKTOBREAK%' + base: 'Block to break:
%BLOCKTOBREAK%' breed: - base: ' └─ Mob to breed:
%ENTITYTOBREED%' + base: 'Mob to breed:
%ENTITYTOBREED%' collectItems: - base: ' └─ Items to collect:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Items to collect:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Items to consume:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Items to consume:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Items to deliver:
%ITEMTODELIVERTYPE% %(%%ITEMTODELIVERNAME%%)%' + base: 'Items to deliver:
%ITEMTODELIVERTYPE% %(%%ITEMTODELIVERNAME%%)%' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME% to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME% to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Mobs to kill:
%MOBTOKILL%' + base: 'Mobs to kill:
%MOBTOKILL%' otherQuest: - base: ' └─ Quest completion:
%OTHERQUESTNAME%' + base: 'Quest completion:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Block to place:
%BLOCKTOPLACE%' + base: 'Block to place:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS% times' + base: 'Jump
%AMOUNTOFJUMPS% times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Items to smelt:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Items to smelt:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/en-US.yml b/plugin/src/main/resources/translations/en-US.yml index 897a6c90f..3231063ad 100644 --- a/plugin/src/main/resources/translations/en-US.yml +++ b/plugin/src/main/resources/translations/en-US.yml @@ -72,69 +72,71 @@ chat: successfully-completed-rewards-rewardformat: ' - %reward%' successfully-completed-rewards-suffix: taskDescription: + global: + prefix: ' └─ ' + suffix: '' breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/es-ES.yml b/plugin/src/main/resources/translations/es-ES.yml index d0b400d67..1764d1965 100644 --- a/plugin/src/main/resources/translations/es-ES.yml +++ b/plugin/src/main/resources/translations/es-ES.yml @@ -75,66 +75,66 @@ chat: breakBlocks: base: ' vaiven Bloques de Salto:
%BLOCKTOBREAK%' breed: - base: ' └─ Aparear Mobs:
%ENTITYTOBREED%' + base: 'Aparear Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Conseguir Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Conseguir Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consumir Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consumir Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craftear Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craftear Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Entregar Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Entregar Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Entregarlo a %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Entregarlo a %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' El Soporte de Armadura no está disponible actualmente!' escortNPC: - base: ' └─ Escoltar
%NPCNAME%
a
%DESTINATIONNPCNAME%' + base: 'Escoltar
%NPCNAME%
a
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Matar mobs:
%MOBTOKILL%' + base: 'Matar mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Completar la Misión:
%OTHERQUESTNAME%' + base: 'Completar la Misión:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Colocar Bloques:
%BLOCKTOPLACE%' + base: 'Colocar Bloques:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Ir a localización:
%LOCATIONNAME%' + base: 'Ir a localización:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Hablar con
%NAME%' + base: 'Hablar con
%NAME%' triggerCommand: - base: ' └─ Objetivo:
%TRIGGERNAME%' + base: 'Objetivo:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Matar Mob de Elite:
%ELITEMOBNAME%' - any: ' └─ ¡Matar cualquier Mob de Elite!' + base: 'Matar Mob de Elite:
%ELITEMOBNAME%' + any: '¡Matar cualquier Mob de Elite!' runCommand: - base: ' └─ Ejecutar el comando:
%COMMANDTORUN%' + base: 'Ejecutar el comando:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Localización:
%COORDINATES%
en el mundo %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Localización:
%COORDINATES%
en el mundo %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Salta
%AMOUNTOFJUMPS%
veces' + base: 'Salta
%AMOUNTOFJUMPS%
veces' sneak: - base: ' └─ Agachate
%AMOUNTOFSNEAKS%
veces' + base: 'Agachate
%AMOUNTOFSNEAKS%
veces' smelt: - base: ' └─ Funde Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Funde Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Alcanza el numero de residentes:
%AMOUNT%' + base: 'Alcanza el numero de residentes:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Alcanzar el numero de pueblos con tu nación:
%AMOUNT%' + base: 'Alcanzar el numero de pueblos con tu nación:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Alcanza el nivel de trabajo
%AMOUNT%
con el trabajo
%JOB%' + base: 'Alcanza el nivel de trabajo
%AMOUNT%
con el trabajo
%JOB%' SlimefunResearch: - base: ' └─ Gastado en investigación' + base: 'Gastado en investigación' ProjectKorraUseAbility: - base: ' └─ Usar habilidad:
%ABILITY%' + base: 'Usar habilidad:
%ABILITY%' BetonQuestCompleteObjective: base: ' : Objetivo de finalización:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Alcanza el nivel de trabajo
%AMOUNT%
con el trabajo
%JOBID%' + base: 'Alcanza el nivel de trabajo
%AMOUNT%
con el trabajo
%JOBID%' conditions: boolean: not-fulfilled: "Lo siguiente debe ser %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/fi-FI.yml b/plugin/src/main/resources/translations/fi-FI.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/fi-FI.yml +++ b/plugin/src/main/resources/translations/fi-FI.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/fr-FR.yml b/plugin/src/main/resources/translations/fr-FR.yml index 52a0a7ff8..7544cdce6 100644 --- a/plugin/src/main/resources/translations/fr-FR.yml +++ b/plugin/src/main/resources/translations/fr-FR.yml @@ -92,11 +92,11 @@ chat: escortNPC: base: ' └─Escorter
%NPCNAME%
à
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: base: ' └─Tuer les monstres :
%MOBTOKILL%' otherQuest: - base: ' └─ Terminez la Quête :
%OTHERQUESTNAME%' + base: 'Terminez la Quête :
%OTHERQUESTNAME%' placeBlocks: base: ' └─Placer des blocs :
%BLOCKTOPLACE%' reachLocation: @@ -107,34 +107,34 @@ chat: base: ' └─Objectif :
%TRIGGERNAME%' killEliteMobs: base: ' └─Tuer le monstre d''élite :
%ELITEMOBNAME%' - any: ' └─ Tuer n''importe quel Mobs d''élite!' + any: 'Tuer n''importe quel Mobs d''élite!' runCommand: base: ' └─Exécute la commande:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Emplacement:
%COORDINATES%
dans le monde %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Emplacement:
%COORDINATES%
dans le monde %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Sauter
%AMOUNTOFJUMPS%
fois' + base: 'Sauter
%AMOUNTOFJUMPS%
fois' sneak: - base: ' └─ S''accroupir
%AMOUNTOFSNEAKS%
fois' + base: 'S''accroupir
%AMOUNTOFSNEAKS%
fois' smelt: base: ' └─Faire fondre des objets :
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Ouvrir trésors enterrés' + base: 'Ouvrir trésors enterrés' townyReachResidentCount: base: ' └─Atteindre le nombre de résidents de:
%AMOUNT%' townyNationReachTownCount: base: ' └─Atteindre un nombre de villes avec votre nation de :
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Atteindre le niveau
%AMOUNT%
avec le métier
%JOB%' + base: 'Atteindre le niveau
%AMOUNT%
avec le métier
%JOB%' SlimefunResearch: - base: ' └─ Dépenser en recherche' + base: 'Dépenser en recherche' ProjectKorraUseAbility: - base: ' └─ Utiliser la capacité :
%ABILITY%' + base: 'Utiliser la capacité :
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Terminer l''Objectif:
%BETONQUESTOBJECTIVENAME%' + base: 'Terminer l''Objectif:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Atteindre le niveau d''emploi
%AMOUNT%
avec l''emploi
%JOBID%' + base: 'Atteindre le niveau d''emploi
%AMOUNT%
avec l''emploi
%JOBID%' conditions: boolean: not-fulfilled: "Ce qui suit doit être %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/he-IL.yml b/plugin/src/main/resources/translations/he-IL.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/he-IL.yml +++ b/plugin/src/main/resources/translations/he-IL.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/hu-HU.yml b/plugin/src/main/resources/translations/hu-HU.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/hu-HU.yml +++ b/plugin/src/main/resources/translations/hu-HU.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/id-ID.yml b/plugin/src/main/resources/translations/id-ID.yml index cca4dd311..547061e7a 100644 --- a/plugin/src/main/resources/translations/id-ID.yml +++ b/plugin/src/main/resources/translations/id-ID.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Hancurkan Block:
%BLOCKTOBREAK%' + base: 'Hancurkan Block:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Kumpulkan Item:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Kumpulkan Item:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Konsumsi Item:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Konsumsi Item:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Antarkan Item:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Antarkan Item:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Antarkan
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Antarkan
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Membunuh mob:
%MOBTOKILL%' + base: 'Membunuh mob:
%MOBTOKILL%' otherQuest: - base: ' └─ Quest Selesai:
%OTHERQUESTNAME%' + base: 'Quest Selesai:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Letakan Block:
%BLOCKTOPLACE%' + base: 'Letakan Block:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Capai Lokasi:
%LOCATIONNAME%' + base: 'Capai Lokasi:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Berbicara ke
%NAME%' + base: 'Berbicara ke
%NAME%' triggerCommand: - base: ' └─ Tujuan:
%TRIGGERNAME%' + base: 'Tujuan:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Bunuh Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Bunuh Elite Mob apa saja!' + base: 'Bunuh Elite Mob:
%ELITEMOBNAME%' + any: 'Bunuh Elite Mob apa saja!' runCommand: - base: ' └─ Jalankan command:
%COMMANDTORUN%' + base: 'Jalankan command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Lokasi:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Lokasi:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Lompat
%AMOUNTOFJUMPS%
kali' + base: 'Lompat
%AMOUNTOFJUMPS%
kali' sneak: - base: ' └─ Jongkok
%AMOUNTOFSNEAKS%
kali' + base: 'Jongkok
%AMOUNTOFSNEAKS%
kali' smelt: - base: ' └─ Bakar Item:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Bakar Item:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Resident yang dicapai:
%AMOUNT%' + base: 'Resident yang dicapai:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Jumlah kota yang terdapat di nation mu:
%AMOUNT%' + base: 'Jumlah kota yang terdapat di nation mu:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Job level yang dicapai
%AMOUNT%
dengan job
%JOB%' + base: 'Job level yang dicapai
%AMOUNT%
dengan job
%JOB%' SlimefunResearch: - base: ' └─ Jumlah research' + base: 'Jumlah research' ProjectKorraUseAbility: - base: ' └─ Menggunakan Ability:
%ABILITY%' + base: 'Menggunakan Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/it-IT.yml b/plugin/src/main/resources/translations/it-IT.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/it-IT.yml +++ b/plugin/src/main/resources/translations/it-IT.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ja-JP.yml b/plugin/src/main/resources/translations/ja-JP.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/ja-JP.yml +++ b/plugin/src/main/resources/translations/ja-JP.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ko-KR.yml b/plugin/src/main/resources/translations/ko-KR.yml index ad703e7a8..c41d1066d 100644 --- a/plugin/src/main/resources/translations/ko-KR.yml +++ b/plugin/src/main/resources/translations/ko-KR.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/nl-NL.yml b/plugin/src/main/resources/translations/nl-NL.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/nl-NL.yml +++ b/plugin/src/main/resources/translations/nl-NL.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/no-NO.yml b/plugin/src/main/resources/translations/no-NO.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/no-NO.yml +++ b/plugin/src/main/resources/translations/no-NO.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/pl-PL.yml b/plugin/src/main/resources/translations/pl-PL.yml index e79ceb522..da4d44bbe 100644 --- a/plugin/src/main/resources/translations/pl-PL.yml +++ b/plugin/src/main/resources/translations/pl-PL.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Zniszcz Klocki:
%BLOCKTOBREAK%' + base: 'Zniszcz Klocki:
%BLOCKTOBREAK%' breed: - base: ' └─ Rozmnóż Moby:
%ENTITYTOBREED%' + base: 'Rozmnóż Moby:
%ENTITYTOBREED%' collectItems: - base: ' └─ Zbierz Przedmioty:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Zbierz Przedmioty:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Sporzyj Przedmioty:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Sporzyj Przedmioty:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Stwórz Przedmioty:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Stwórz Przedmioty:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Dostarcz Przedmioty:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Dostarcz Przedmioty:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Dostarcz to do %NPCNAME%' deliver-to-npc-not-available: ' Dostawa NPC jest obecnie niedostępna!' deliver-to-npc-citizens-not-found: ' Błąd: Nie zainstalowano wtyczki "Citizens". Skontaktuj się z administratorem.' deliver-to-armorstand: ' Dostarcz to do %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' Docelowy stojak na jest obecnie niedostępny!' escortNPC: - base: ' └─ Eskortuj:
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Eskortuj:
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Zabij Moby:
%MOBTOKILL%' + base: 'Zabij Moby:
%MOBTOKILL%' otherQuest: - base: ' └─ Ukończ Questa:
%OTHERQUESTNAME%' + base: 'Ukończ Questa:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Postaw Klocki:
%BLOCKTOPLACE%' + base: 'Postaw Klocki:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Dotrzyj do Lokacji:
%LOCATIONNAME%' + base: 'Dotrzyj do Lokacji:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Porozmawiaj z:
%NAME%' + base: 'Porozmawiaj z:
%NAME%' triggerCommand: - base: ' └─ Cel:
%TRIGGERNAME%' + base: 'Cel:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Zabij Elitarne Moby:
%ELITEMOBNAME%' - any: ' └─ Zabij jakiego kolwiek Elitarnego Moba!' + base: 'Zabij Elitarne Moby:
%ELITEMOBNAME%' + any: 'Zabij jakiego kolwiek Elitarnego Moba!' runCommand: - base: ' └─ Użyj komendy:
%COMMANDTORUN%' + base: 'Użyj komendy:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE%Lokacja:
%COORDINATES%
w świecie %WORLDNAME%' + base: '%INTERACTTYPE%Lokacja:
%COORDINATES%
w świecie %WORLDNAME%' taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' jump: - base: ' └─ Skocz
%AMOUNTOFJUMPS%
razy' + base: 'Skocz
%AMOUNTOFJUMPS%
razy' sneak: - base: ' └─ Skradaj się
%AMOUNTOFSNEAKS%
razy' + base: 'Skradaj się
%AMOUNTOFSNEAKS%
razy' smelt: - base: ' └─ Przetop Przedmioty:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Przetop Przedmioty:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Osiągnij ilość mieszkańców:
%AMOUNT%' + base: 'Osiągnij ilość mieszkańców:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Osiągnij ilość miast ze swoją nacją:
%AMOUNT%' + base: 'Osiągnij ilość miast ze swoją nacją:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Osiągnij poziom pracy
%AMOUNT%
w
%JOB%' + base: 'Osiągnij poziom pracy
%AMOUNT%
w
%JOB%' SlimefunResearch: - base: ' └─ Wydaj na badania' + base: 'Wydaj na badania' ProjectKorraUseAbility: - base: ' └─ Użyj Umiejętności:
%ABILITY%' + base: 'Użyj Umiejętności:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Osiągnij poziom pracy
%AMOUNT%
w
%JOBID%' + base: 'Osiągnij poziom pracy
%AMOUNT%
w
%JOBID%' conditions: boolean: not-fulfilled: "Następujące osoby muszą być %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/pt-BR.yml b/plugin/src/main/resources/translations/pt-BR.yml index 631754bdf..cc4f32886 100644 --- a/plugin/src/main/resources/translations/pt-BR.yml +++ b/plugin/src/main/resources/translations/pt-BR.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Quebrar blocos:
%BLOCKTOBREAK%' + base: 'Quebrar blocos:
%BLOCKTOBREAK%' breed: - base: ' └─ Matar Mobs:
%ENTITYTOBREED%' + base: 'Matar Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Coletar itens:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Coletar itens:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consumir itens:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consumir itens:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craftar Itens:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craftar Itens:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Entregar itens:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Entregar itens:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Entregue para %NPCNAME%' deliver-to-npc-not-available: ' O NPC de entrega não está disponível no momento!' deliver-to-npc-citizens-not-found: ' Error: O Plugin citizens não esta instalado. entre em contato com o administrador.' deliver-to-armorstand: ' Entregue para %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' O Armor Stand alvo não está disponível no momento!' escortNPC: - base: ' └─ Escolta
%NPCNAME%
para
%DESTINATIONNPCNAME%' + base: 'Escolta
%NPCNAME%
para
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Matar mobs:
%MOBTOKILL%' + base: 'Matar mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Completar Missão:
%OTHERQUESTNAME%' + base: 'Completar Missão:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Colocar blocos:
%BLOCKTOPLACE%' + base: 'Colocar blocos:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Procurar local:
%LOCATIONNAME%' + base: 'Procurar local:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Falar com
%NAME%' + base: 'Falar com
%NAME%' triggerCommand: - base: ' └─ Metal:
%TRIGGERNAME%' + base: 'Metal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Matar o mobs de elite:
%ELITEMOBNAME%' - any: ' └─ Mate qualquer mob de Elite!' + base: 'Matar o mobs de elite:
%ELITEMOBNAME%' + any: 'Mate qualquer mob de Elite!' runCommand: - base: ' └─ Comando de execução:
%COMMANDTORUN%' + base: 'Comando de execução:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% local:
%COORDINATES%
no mundo %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% local:
%COORDINATES%
no mundo %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Pular
%AMOUNTOFJUMPS%
vezes' + base: 'Pular
%AMOUNTOFJUMPS%
vezes' sneak: - base: ' └─ Esgueirar-se
%AMOUNTOFSNEAKS%
vezes' + base: 'Esgueirar-se
%AMOUNTOFSNEAKS%
vezes' smelt: - base: ' └─ Itens de fundição:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Itens de fundição:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Abrir tesouros enterrados' + base: 'Abrir tesouros enterrados' townyReachResidentCount: - base: ' └─ cosiga este valor de moradores:
%AMOUNT%' + base: 'cosiga este valor de moradores:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ cosiga este valor de moradores na sua cidade:
%AMOUNT%' + base: 'cosiga este valor de moradores na sua cidade:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Alcance o nível de trabalho
%AMOUNT%
na categoria
%JOB%' + base: 'Alcance o nível de trabalho
%AMOUNT%
na categoria
%JOB%' SlimefunResearch: - base: ' └─ Gaste em pesquisas' + base: 'Gaste em pesquisas' ProjectKorraUseAbility: - base: ' └─ Use a habilidade:
%ABILITY%' + base: 'Use a habilidade:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finalizar Objetivo:
%BETONQUESTOBJECTIVENAME%' + base: 'Finalizar Objetivo:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Alcance o nível de trabalho
%AMOUNT%
na categoria
%JOBID%' + base: 'Alcance o nível de trabalho
%AMOUNT%
na categoria
%JOBID%' conditions: boolean: not-fulfilled: "A seguir precisa ser %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/pt-PT.yml b/plugin/src/main/resources/translations/pt-PT.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/pt-PT.yml +++ b/plugin/src/main/resources/translations/pt-PT.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ro-RO.yml b/plugin/src/main/resources/translations/ro-RO.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/ro-RO.yml +++ b/plugin/src/main/resources/translations/ro-RO.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/ru-RU.yml b/plugin/src/main/resources/translations/ru-RU.yml index 4e8891aef..a4390b450 100644 --- a/plugin/src/main/resources/translations/ru-RU.yml +++ b/plugin/src/main/resources/translations/ru-RU.yml @@ -73,9 +73,9 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: base: ' - Собрать предметы:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: @@ -90,51 +90,51 @@ chat: deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/sr-Cyrl.yml b/plugin/src/main/resources/translations/sr-Cyrl.yml index 474fe064b..158a7574d 100644 --- a/plugin/src/main/resources/translations/sr-Cyrl.yml +++ b/plugin/src/main/resources/translations/sr-Cyrl.yml @@ -76,7 +76,7 @@ chat: consumeItems: base: " └─\nКонзумирај Predmete:\n
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%" craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: base: " └─\nИспоручи Предмете:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)" deliver-to-npc: ' Deliver it to %NPCNAME%' @@ -87,49 +87,49 @@ chat: escortNPC: base: " └─\nИспрати
%NPCNAME%
до\n
%DESTINATIONNPCNAME%" fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: base: " └─\nУбиј Створења:\n
%MOBTOKILL%" otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/sr-Latn.yml b/plugin/src/main/resources/translations/sr-Latn.yml index d760d5947..078374d8b 100644 --- a/plugin/src/main/resources/translations/sr-Latn.yml +++ b/plugin/src/main/resources/translations/sr-Latn.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Razbij kocaka:
%BLOCKTOBREAK%' + base: 'Razbij kocaka:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Dostaviti %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Pogreška: Dodatak "Citizens" nije instaliran. Kontaktirajte administratora.' deliver-to-armorstand: ' Dostaviti %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Isprati
%NPCNAME%
do
%DESTINATIONNPCNAME%' + base: 'Isprati
%NPCNAME%
do
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Ubij čudovišta:
%MOBTOKILL%' + base: 'Ubij čudovišta:
%MOBTOKILL%' otherQuest: - base: ' └─ Dovrši istragu:
%OTHERQUESTNAME%' + base: 'Dovrši istragu:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Postavi blokova:
%BLOCKTOPLACE%ž' + base: 'Postavi blokova:
%BLOCKTOPLACE%ž' reachLocation: - base: ' └─ Dostigni lokaciju:
%LOCATIONNAME%' + base: 'Dostigni lokaciju:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Pričaj s
%NAME%' + base: 'Pričaj s
%NAME%' triggerCommand: - base: ' └─ Cilj:
%TRIGGERNAME%' + base: 'Cilj:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Ubij elitno čudovište:
%ELITEMOBNAME%' - any: ' └─ Ubij bilo koje elitno čudovište!' + base: 'Ubij elitno čudovište:
%ELITEMOBNAME%' + any: 'Ubij bilo koje elitno čudovište!' runCommand: - base: ' └─ Pokreni komandu:
%COMMANDTORUN%' + base: 'Pokreni komandu:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Lokacija:
%COORDINATES%
u svijetu%WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Lokacija:
%COORDINATES%
u svijetu%WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Skoči
%AMOUNTOFJUMPS%
puta' + base: 'Skoči
%AMOUNTOFJUMPS%
puta' sneak: - base: ' └─ Čučni
%AMOUNTOFSNEAKS%
puta' + base: 'Čučni
%AMOUNTOFSNEAKS%
puta' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Otvori zakopanih blaga' + base: 'Otvori zakopanih blaga' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Dostigni poslovni nivo
%AMOUNT%
s poslom
%JOB%' + base: 'Dostigni poslovni nivo
%AMOUNT%
s poslom
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Dovrši cilj:
%BETONQUESTOBJECTIVENAME%' + base: 'Dovrši cilj:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Dostigni poslovno nivo
%AMOUNT%
s poslom
%JOBID%' + base: 'Dostigni poslovno nivo
%AMOUNT%
s poslom
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/sv-SE.yml b/plugin/src/main/resources/translations/sv-SE.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/sv-SE.yml +++ b/plugin/src/main/resources/translations/sv-SE.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/tr-TR.yml b/plugin/src/main/resources/translations/tr-TR.yml index 05b9e18e1..e896560e3 100644 --- a/plugin/src/main/resources/translations/tr-TR.yml +++ b/plugin/src/main/resources/translations/tr-TR.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/uk-UA.yml b/plugin/src/main/resources/translations/uk-UA.yml index 897a6c90f..d93330eda 100644 --- a/plugin/src/main/resources/translations/uk-UA.yml +++ b/plugin/src/main/resources/translations/uk-UA.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ Break Blocks:
%BLOCKTOBREAK%' + base: 'Break Blocks:
%BLOCKTOBREAK%' breed: - base: ' └─ Breed Mobs:
%ENTITYTOBREED%' + base: 'Breed Mobs:
%ENTITYTOBREED%' collectItems: - base: ' └─ Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: 'Collect Items:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: 'Consume Items:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Craft Items:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: 'Deliver Items:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' Deliver it to %NPCNAME%' deliver-to-npc-not-available: ' The delivery NPC is currently not available!' deliver-to-npc-citizens-not-found: ' Error: Citizens plugin not installed. Contact an admin.' deliver-to-armorstand: ' Deliver it to %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' The target Armor Stand is currently not available!' escortNPC: - base: ' └─ Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' + base: 'Escort
%NPCNAME%
to
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ Kill mobs:
%MOBTOKILL%' + base: 'Kill mobs:
%MOBTOKILL%' otherQuest: - base: ' └─ Complete Quest:
%OTHERQUESTNAME%' + base: 'Complete Quest:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Place Blocks:
%BLOCKTOPLACE%' + base: 'Place Blocks:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ Reach Location:
%LOCATIONNAME%' + base: 'Reach Location:
%LOCATIONNAME%' talkToNPC: - base: ' └─ Talk to
%NAME%' + base: 'Talk to
%NAME%' triggerCommand: - base: ' └─ Goal:
%TRIGGERNAME%' + base: 'Goal:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ Kill Elite Mob:
%ELITEMOBNAME%' - any: ' └─ Kill any Elite Mob!' + base: 'Kill Elite Mob:
%ELITEMOBNAME%' + any: 'Kill any Elite Mob!' runCommand: - base: ' └─ Run command:
%COMMANDTORUN%' + base: 'Run command:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Location:
%COORDINATES%
in world %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Jump
%AMOUNTOFJUMPS%
times' + base: 'Jump
%AMOUNTOFJUMPS%
times' sneak: - base: ' └─ Sneak
%AMOUNTOFSNEAKS%
times' + base: 'Sneak
%AMOUNTOFSNEAKS%
times' smelt: - base: ' └─ Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Smelt Items:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Open buried treasures' + base: 'Open buried treasures' townyReachResidentCount: - base: ' └─ Reach resident amount:
%AMOUNT%' + base: 'Reach resident amount:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ Reach town amount with your nation:
%AMOUNT%' + base: 'Reach town amount with your nation:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOB%' + base: 'Reach job level
%AMOUNT%
with job
%JOB%' SlimefunResearch: - base: ' └─ Spend on research' + base: 'Spend on research' ProjectKorraUseAbility: - base: ' └─ Use Ability:
%ABILITY%' + base: 'Use Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Finish Objective:
%BETONQUESTOBJECTIVENAME%' + base: 'Finish Objective:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Reach job level
%AMOUNT%
with job
%JOBID%' + base: 'Reach job level
%AMOUNT%
with job
%JOBID%' conditions: boolean: not-fulfilled: "Following needs to be %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/vi-VN.yml b/plugin/src/main/resources/translations/vi-VN.yml index eff275572..47cce42ea 100644 --- a/plugin/src/main/resources/translations/vi-VN.yml +++ b/plugin/src/main/resources/translations/vi-VN.yml @@ -75,7 +75,7 @@ chat: consumeItems: base: ' Dùng Vật Phẩm:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ Chế Tạo Vật Phẩm:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: 'Chế Tạo Vật Phẩm:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: base: ' Giao Vật Phẩm:
%ITEMTODELIVERTYPE% %(%%ITEMTODELIVERNAME%%)%' deliver-to-npc: ' Giao nó cho%NPCNAME%' @@ -86,13 +86,13 @@ chat: escortNPC: base: ' Đi Theo
%NPCNAME% Đến
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: base: ' Tiêu Diệt Quái:
%MOBTOKILL%' otherQuest: base: ' Hoàn Thành Nhiệm Vụ:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ Block to place:
%BLOCKTOPLACE%' + base: 'Block to place:
%BLOCKTOPLACE%' reachLocation: base: ' Đi Đến Địa Điểm:
%LOCATIONNAME%' talkToNPC: @@ -103,20 +103,20 @@ chat: base: ' Tiêu Diệt Elite Mobs:
%ELITEMOBNAME%' any: ' Tiêu Diệt Bất Kì EliteMobs Nào!' runCommand: - base: ' └─ Dùng Lệnh:
%COMMANDTORUN%' + base: 'Dùng Lệnh:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% Vị Trí:
%COORDINATES%
Ở Thế Giới %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% Vị Trí:
%COORDINATES%
Ở Thế Giới %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ Nhảy
%AMOUNTOFJUMPS% times' + base: 'Nhảy
%AMOUNTOFJUMPS% times' sneak: base: ' └─Rón rén
%AMOUNTOFSNEAKS%
lần' smelt: - base: ' └─ Nung Vật Phẩm:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: 'Nung Vật Phẩm:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ Mở kho báu bị chôn vùi' + base: 'Mở kho báu bị chôn vùi' townyReachResidentCount: - base: ' └─ Số Lượng Thành Viên Thị Trấn Đạt Đến:
%AMOUNT%' + base: 'Số Lượng Thành Viên Thị Trấn Đạt Đến:
%AMOUNT%' townyNationReachTownCount: base: ' └─Đạt số tiền thị trấn với quốc gia của bạn:
%AMOUNT%' jobsRebornReachJobLevel: @@ -126,9 +126,9 @@ chat: ProjectKorraUseAbility: base: ' └─Dùng Ability:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ Hoàn thành Mục tiêu:
%BETONQUESTOBJECTIVENAME%' + base: 'Hoàn thành Mục tiêu:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ Đạt cấp độ nghề đến
%AMOUNT%
với nghề
%JOBID%' + base: 'Đạt cấp độ nghề đến
%AMOUNT%
với nghề
%JOBID%' conditions: boolean: not-fulfilled: "Cần phải được %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/zh-CN.yml b/plugin/src/main/resources/translations/zh-CN.yml index a2194c7ee..340086989 100644 --- a/plugin/src/main/resources/translations/zh-CN.yml +++ b/plugin/src/main/resources/translations/zh-CN.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ 需要破坏的方块:
%BLOCKTOBREAK%' + base: '需要破坏的方块:
%BLOCKTOBREAK%' breed: - base: ' └─ 需要哺育的生物:
%ENTITYTOBREED%' + base: '需要哺育的生物:
%ENTITYTOBREED%' collectItems: - base: ' └─ 需要收集的物品:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: '需要收集的物品:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ 需要消耗的物品:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: '需要消耗的物品:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ 需要合成的物品:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: '需要合成的物品:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ 需要送达的物品:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: '需要送达的物品:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' 把物品递交给 %NPCNAME%' deliver-to-npc-not-available: ' 负责收取物品的NPC暂时不在!' deliver-to-npc-citizens-not-found: ' 错误: 服务器没有安装 Citizens. 请告知服务器管理员.' deliver-to-armorstand: ' 将物品递交给 %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' 负责收取物品的盔甲架不存在!' escortNPC: - base: ' └─ 护送
%NPCNAME%
前往
%DESTINATIONNPCNAME%' + base: '护送
%NPCNAME%
前往
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' + base: 'Fish Items:
%ITEMTOFISHTYPE% %(%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ 需要击杀的怪物:
%MOBTOKILL%' + base: '需要击杀的怪物:
%MOBTOKILL%' otherQuest: - base: ' └─ 任务完成:
%OTHERQUESTNAME%' + base: '任务完成:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ 需要放置的方块:
%BLOCKTOPLACE%' + base: '需要放置的方块:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ 前往目的地:
%LOCATIONNAME%' + base: '前往目的地:
%LOCATIONNAME%' talkToNPC: - base: ' └─
%NAME%
交谈' + base: '与
%NAME%
交谈' triggerCommand: - base: ' └─ 目标:
%TRIGGERNAME%' + base: '目标:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ 需要击杀的 Elite 怪物:
%ELITEMOBNAME%' - any: ' └─ 击杀任意 Elite 怪物!' + base: '需要击杀的 Elite 怪物:
%ELITEMOBNAME%' + any: '击杀任意 Elite 怪物!' runCommand: - base: ' └─ 输入指令:
%COMMANDTORUN%' + base: '输入指令:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% 位置:
%COORDINATES%
世界 %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% 位置:
%COORDINATES%
世界 %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ 跳跃
%AMOUNTOFJUMPS%
次' + base: '跳跃
%AMOUNTOFJUMPS%
次' sneak: - base: ' └─ 潜行
%AMOUNTOFSNEAKS%
次' + base: '潜行
%AMOUNTOFSNEAKS%
次' smelt: - base: ' └─ 需要熔炼的物品:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: '需要熔炼的物品:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ 打开烧毁的宝藏' + base: '打开烧毁的宝藏' townyReachResidentCount: - base: ' └─ 居民数量达到:
%AMOUNT%' + base: '居民数量达到:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ 加入国家的城镇数量达到:
%AMOUNT%' + base: '加入国家的城镇数量达到:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ 让工作
%JOB%
的等级达到
%AMOUNT%
' + base: '让工作
%JOB%
的等级达到
%AMOUNT%
' SlimefunResearch: - base: ' └─ 在研究上花费点什么' + base: '在研究上花费点什么' ProjectKorraUseAbility: - base: ' └─ 使用能力:
%ABILITY%' + base: '使用能力:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ 完成目标:
%BETONQUESTOBJECTIVENAME%' + base: '完成目标:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ 工作
%JOBID%
的等级达到
%AMOUNT%
' + base: '工作
%JOBID%
的等级达到
%AMOUNT%
' conditions: boolean: not-fulfilled: "以下需要 %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%." diff --git a/plugin/src/main/resources/translations/zh-TW.yml b/plugin/src/main/resources/translations/zh-TW.yml index ae6bf9820..5ae8e7a7d 100644 --- a/plugin/src/main/resources/translations/zh-TW.yml +++ b/plugin/src/main/resources/translations/zh-TW.yml @@ -73,68 +73,68 @@ chat: successfully-completed-rewards-suffix: taskDescription: breakBlocks: - base: ' └─ 破壞方塊:
%BLOCKTOBREAK%' + base: '破壞方塊:
%BLOCKTOBREAK%' breed: - base: ' └─ 繁殖動物:
%ENTITYTOBREED%' + base: '繁殖動物:
%ENTITYTOBREED%' collectItems: - base: ' └─ 收集物品:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' + base: '收集物品:
%ITEMTOCOLLECTTYPE% %(%%ITEMTOCOLLECTNAME%%)%' consumeItems: - base: ' └─ 收集物品:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' + base: '收集物品:
%ITEMTOCONSUMETYPE% %(%%ITEMTOCONSUMENAME%%)%' craftItems: - base: ' └─ 合成物品:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' + base: '合成物品:
%ITEMTOCRAFTTYPE% %(%%ITEMTOCRAFTNAME%%)%' deliverItems: - base: ' └─ 給予物品:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' + base: '給予物品:
%ITEMTODELIVERTYPE% (%ITEMTODELIVERNAME%)' deliver-to-npc: ' 將物品給予給 %NPCNAME%' deliver-to-npc-not-available: ' 負責收取物品的NPC目前不在!' deliver-to-npc-citizens-not-found: ' 錯誤: 服務器未安裝 Citizens. 請告知OP' deliver-to-armorstand: ' 将物品給予 %ARMORSTANDNAME%' deliver-to-armorstand-not-available: ' 負責收取物品的盔甲架目前不在!' escortNPC: - base: ' └─ 護送
%NPCNAME%
前往
%DESTINATIONNPCNAME%' + base: '護送
%NPCNAME%
前往
%DESTINATIONNPCNAME%' fishItems: - base: ' └─ 釣魚物品:
%ITEMTOFISHTYPE% (%%ITEMTOFISHNAME%%)%' + base: '釣魚物品:
%ITEMTOFISHTYPE% (%%ITEMTOFISHNAME%%)%' killMobs: - base: ' └─ 擊殺怪物:
%MOBTOKILL%' + base: '擊殺怪物:
%MOBTOKILL%' otherQuest: - base: ' └─ 任務完成:
%OTHERQUESTNAME%' + base: '任務完成:
%OTHERQUESTNAME%' placeBlocks: - base: ' └─ 放置方塊:
%BLOCKTOPLACE%' + base: '放置方塊:
%BLOCKTOPLACE%' reachLocation: - base: ' └─ 前往目的地:
%LOCATIONNAME%' + base: '前往目的地:
%LOCATIONNAME%' talkToNPC: - base: ' └─
%NAME%
交談' + base: '與
%NAME%
交談' triggerCommand: - base: ' └─ 目標:
%TRIGGERNAME%' + base: '目標:
%TRIGGERNAME%' killEliteMobs: - base: ' └─ 擊殺精英怪物:
%ELITEMOBNAME%' - any: ' └─ 擊殺任意精英怪物!' + base: '擊殺精英怪物:
%ELITEMOBNAME%' + any: '擊殺任意精英怪物!' runCommand: - base: ' └─ 輸入指令:
%COMMANDTORUN%' + base: '輸入指令:
%COMMANDTORUN%' interact: - base: ' └─ %INTERACTTYPE% 位置:
%COORDINATES%
在世界 %WORLDNAME%' - taskDescriptionProvided: ' └─ %TASKDESCRIPTION%' + base: '%INTERACTTYPE% 位置:
%COORDINATES%
在世界 %WORLDNAME%' + taskDescriptionProvided: '%TASKDESCRIPTION%' jump: - base: ' └─ 跳躍
%AMOUNTOFJUMPS%
次' + base: '跳躍
%AMOUNTOFJUMPS%
次' sneak: - base: ' └─ 潛行
%AMOUNTOFSNEAKS%
次' + base: '潛行
%AMOUNTOFSNEAKS%
次' smelt: - base: ' └─ 熔煉物品:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' + base: '熔煉物品:
%ITEMTOSMELTTYPE% %(%%ITEMTOSMELTNAME%%)%' openBuriedTreasure: - base: ' └─ 打開埋藏的寶藏' + base: '打開埋藏的寶藏' townyReachResidentCount: - base: ' └─ 居民數量達到:
%AMOUNT%' + base: '居民數量達到:
%AMOUNT%' townyNationReachTownCount: - base: ' └─ 加入國家的城鎮數量達到:
%AMOUNT%' + base: '加入國家的城鎮數量達到:
%AMOUNT%' jobsRebornReachJobLevel: - base: ' └─ 讓工作
%JOB%
的等级達到
%AMOUNT%
' + base: '讓工作
%JOB%
的等级達到
%AMOUNT%
' SlimefunResearch: - base: ' └─ 研究的花費' + base: '研究的花費' ProjectKorraUseAbility: - base: ' └─ 使用能力:
%ABILITY%' + base: '使用能力:
%ABILITY%' BetonQuestCompleteObjective: - base: ' └─ 完成目標:
%BETONQUESTOBJECTIVENAME%' + base: '完成目標:
%BETONQUESTOBJECTIVENAME%' ultimateJobsReachJobLevel: - base: ' └─ 讓工作
%JOBID%
的等级達到
%AMOUNT%
' + base: '讓工作
%JOBID%
的等级達到
%AMOUNT%
' conditions: boolean: not-fulfilled: "以下需要 %BOOLEANREQUIREMENT%: %VARIABLESINGULAR%."