Quests/main/src/main/resources/strings.yml

774 lines
38 KiB
YAML
Raw Normal View History

2018-01-02 04:33:03 +01:00
COMMAND_LIST: "list"
2018-12-06 21:30:43 +01:00
COMMAND_LIST_HELP: "<command> [page] - List available quests"
2018-01-02 04:33:03 +01:00
COMMAND_TAKE: "take"
2018-12-06 21:30:43 +01:00
COMMAND_TAKE_HELP: "<command> [quest] - Accept a quest via command"
COMMAND_TAKE_USAGE: "Usage: /quests take [quest]"
2018-01-02 04:33:03 +01:00
COMMAND_QUIT: "quit"
2018-12-06 21:30:43 +01:00
COMMAND_QUIT_HELP: "<command> [quest] - Quit a current quest"
COMMAND_JOURNAL: "journal"
COMMAND_JOURNAL_HELP: "<command> - View/Put away your Quest Journal"
2018-01-02 04:33:03 +01:00
COMMAND_EDITOR: "editor"
COMMAND_EDITOR_HELP: "<command> - Create/Edit Quests"
COMMAND_EVENTS_EDITOR: "actions"
COMMAND_EVENTS_EDITOR_HELP: "<command> - Create/Edit Actions"
2018-01-02 04:33:03 +01:00
COMMAND_STATS: "stats"
2018-12-06 21:30:43 +01:00
COMMAND_STATS_HELP: "<command> - View quest statistics"
2018-01-02 04:33:03 +01:00
COMMAND_TOP: "top"
2018-12-06 21:30:43 +01:00
COMMAND_TOP_HELP: "<command> [number] - View plugin leaderboards"
COMMAND_TOP_USAGE: "Usage: /quests top [number]"
2018-01-02 04:33:03 +01:00
COMMAND_INFO: "info"
2018-12-06 21:30:43 +01:00
COMMAND_INFO_HELP: "<command> - View plugin information"
COMMAND_QUEST_HELP: "- View current quest objectives"
COMMAND_QUESTINFO_HELP: "[quest] - View information about a quest"
COMMAND_QUESTADMIN_HELP: "- Display administrator help"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_STATS: "stats"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_STATS_HELP: "<command> [player] - View quest statistics of a player"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_GIVE: "give"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_GIVE_HELP: "<command> [player] [quest] - Force a player to take a quest"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_QUIT: "quit"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_QUIT_HELP: "<command> [player] [quest] - Force a player to quit a quest"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_POINTS: "points"
2018-12-10 00:25:38 +01:00
COMMAND_QUESTADMIN_POINTS_HELP: "<command> [player] [amount] - Set a player's Quest Points"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_TAKEPOINTS: "takepoints"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_TAKEPOINTS_HELP: "<command> [player] [amount] - Take away a player's Quest Points"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_GIVEPOINTS: "givepoints"
2018-12-10 00:25:38 +01:00
COMMAND_QUESTADMIN_GIVEPOINTS_HELP: "<command> [player] [amount] - Add to a player's Quest Points"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_POINTSALL: "pointsall"
COMMAND_QUESTADMIN_POINTSALL_HELP: "<command> [amount] - Set ALL players' Quest Points"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_FINISH: "finish"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_FINISH_HELP: "<command> [player] [quest] - Force a player to complete a quest"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_NEXTSTAGE: "nextstage"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_NEXTSTAGE_HELP: "<command> [player] [quest] - Force a player to complete current stage"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_SETSTAGE: "setstage"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_SETSTAGE_HELP: "<command> [player] [quest] [stage] - Set the current stage for a player"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_SETSTAGE_USAGE: 'Usage: /questadmin setstage [player] [quest] [stage]'
COMMAND_QUESTADMIN_RESET: "reset"
COMMAND_QUESTADMIN_RESET_HELP: "<command> [player] - Clear all Quests data of a player"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_REMOVE: "remove"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_REMOVE_HELP: "<command> [player] [quest] - Remove a completed quest from a player"
2018-01-02 04:33:03 +01:00
COMMAND_QUESTADMIN_RELOAD: "reload"
2018-12-06 21:30:43 +01:00
COMMAND_QUESTADMIN_RELOAD_HELP: "<command> - Safely reload the plugin"
questEditorCreate: "Create new Quest"
2018-01-02 04:33:03 +01:00
questEditorEdit: "Edit a Quest"
questEditorDelete: "Delete a Quest"
2018-01-02 04:33:03 +01:00
questEditorName: "Set name"
questEditorAskMessage: "Set ask message"
questEditorFinishMessage: "Set finish message"
questEditorNPCStart: "Set NPC start"
questEditorBlockStart: "Set Block start"
questEditorInitialEvent: "Set initial Action"
2018-01-02 04:33:03 +01:00
questEditorSetGUI: "Set GUI Item display"
questEditorReqs: "Edit Requirements"
questEditorPln: "Edit Planner"
2018-01-02 04:33:03 +01:00
questEditorStages: "Edit Stages"
questEditorRews: "Edit Rewards"
2019-04-23 04:47:32 +02:00
questEditorOpts: "Edit Options"
2019-11-06 06:45:36 +01:00
questEditorEnterQuestName: "Enter Quest name, <cancel>"
questEditorEnterAskMessage: "Enter ask message, <cancel>"
questEditorEnterFinishMessage: "Enter finish message, <cancel>"
questEditorEnterNPCStart: "Enter NPC ID, <clear>, <cancel>"
questEditorEnterBlockStart: "Right-click on a block to use as a start point, <done>, <clear>, <cancel>"
questEditorEnterInitialEvent: "Enter an Action name, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
questRequiredNoneSet: "Required, none set"
2019-04-08 07:28:36 +02:00
questDungeonsCreate: "Players added to this group may perform quests together!"
questDungeonsDisband: "The quest group was disbanded."
questDungeonsInvite: "<player> can now perform quests with you!"
questDungeonsJoin: "You can now perform quests with Captain <player>."
questDungeonsKicked: "<player> can no longer perform quests with you."
questDungeonsLeave: "You can no longer perform quests with Captain <player>."
questPartiesCreate: "Players added to this party may perform quests together!"
questPartiesDelete: "The quest party was disbanded."
questPartiesInvite: "<player> can now perform quests with you!"
questPartiesJoin: "You can now perform quests with <player>."
questPartiesKicked: "<player> can no longer perform quests with you."
questPartiesLeave: "You can no longer perform quests with <player>."
2019-11-08 00:59:33 +01:00
questWGSetRegion: "Set Region start"
questWGPrompt: "Enter WorldGuard region, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
questWGInvalidRegion: "<region> is not a valid WorldGuard region!"
questWGRegionCleared: "Quest region cleared."
questGUIError: "Error: That item is already being used as the GUI Display for the Quest <quest>."
2018-01-02 04:33:03 +01:00
questCurrentItem: "Current item:"
questGUICleared: "Quest GUI Item Display cleared."
questDeleted: "Quest deleted! Quests and Actions have been reloaded."
2018-01-02 04:33:03 +01:00
questEditorNameExists: "A Quest with that name already exists!"
questEditorBeingEdited: "Someone is creating/editing a Quest with that name!"
questEditorInvalidQuestName: "Name may not contain periods or commas!"
questEditorInvalidEventName: "is not a valid action name!"
2019-08-28 09:38:41 +02:00
questEditorInvalidNPC: "No NPC exists with that ID!"
2018-01-02 04:33:03 +01:00
questEditorNoStartBlockSelected: "You must select a block first."
questEditorPositiveAmount: "Amount must be a positive number."
questEditorQuestAsRequirement1: "The following Quests have"
questEditorQuestAsRequirement2: "as a requirement:"
questEditorQuestAsRequirement3: "You must modify these Quests so that they do not use it before deleting it."
questEditorQuestNotFound: "Quest not found!"
questEditorEventCleared: "Initial Action cleared."
2018-01-02 04:33:03 +01:00
questEditorSave: "Finish and save"
questEditorNeedAskMessage: "You must set an ask message!"
questEditorNeedFinishMessage: "You must set a finish message!"
questEditorNeedStages: "Your Quest has no Stages!"
questEditorSaved: "%bold%Quest saved! %reset%(You will need to perform %red%<command> %reset% for it to appear in-game)"
2018-01-02 04:33:03 +01:00
stageEditorEditStage: "Edit Stage"
stageEditorNewStage: "Add new Stage"
stageEditorStages: "Stages"
stageEditorStage: "Stage"
stageEditorBlocks: "Blocks"
stageEditorBreakBlocks: "Break blocks"
stageEditorDamageBlocks: "Damage blocks"
stageEditorPlaceBlocks: "Place blocks"
stageEditorUseBlocks: "Use blocks"
2020-01-21 09:25:47 +01:00
stageEditorCutBlocks: "Shear blocks"
stageEditorItems: "Items"
2019-02-05 03:57:35 +01:00
stageEditorCraftItems: "Craft items"
stageEditorSmeltItems: "Smelt items"
stageEditorEnchantItems: "Enchant items"
2019-07-22 03:46:42 +02:00
stageEditorBrewPotions: "Brew potions"
stageEditorNPCs: "NPCs"
2019-02-05 03:57:35 +01:00
stageEditorDeliverItems: "Deliver items"
2018-01-02 04:33:03 +01:00
stageEditorTalkToNPCs: "Talk to NPCs"
stageEditorKillNPCs: "Kill NPCs"
stageEditorMobs: "Mobs"
stageEditorKillMobs: "Kill mobs"
stageEditorCatchFish: "Catch fish"
stageEditorFish: "fish"
2020-01-19 09:35:38 +01:00
stageEditorMilkCows: "Milk cows"
stageEditorCows: "cows"
2018-01-02 04:33:03 +01:00
stageEditorReachLocs: "Reach locations"
stageEditorReachRadii1: "Reach within"
stageEditorReachRadii2: "blocks of"
stageEditorTameMobs: "Tame mobs"
2019-07-22 05:10:03 +02:00
stageEditorShearSheep: "Shear sheep"
stageEditorKillPlayers: "Kill players"
stageEditorPlayers: "players"
stageEditorEvents: "Actions"
stageEditorStageEvents: "Stage Actions"
stageEditorStartEvent: "Start Action"
stageEditorStartEventCleared: "Start Action cleared."
stageEditorFinishEvent: "Finish Action"
stageEditorFinishEventCleared: "Finish Action cleared."
2019-06-12 07:11:17 +02:00
stageEditorChatEvents: "Chat Action"
2018-01-02 04:33:03 +01:00
stageEditorChatTrigger: "Chat Trigger"
2019-06-12 07:11:17 +02:00
stageEditorChatEventsCleared: "Chat Action cleared."
stageEditorCommandEvents: "Command Action"
2018-01-17 08:48:24 +01:00
stageEditorCommandTrigger: "Command Trigger"
2019-06-12 07:11:17 +02:00
stageEditorCommandEventsCleared: "Command Action cleared."
2018-01-17 08:48:24 +01:00
stageEditorTriggeredBy: "Triggered by"
stageEditorDeathEvent: "Death Action"
stageEditorDeathEventCleared: "Death Action cleared."
stageEditorDisconnectEvent: "Disconnect Action"
stageEditorDisconnectEventCleared: "Disconnect Action cleared."
stageEditorDelayMessage: "Delay message"
stageEditorDenizenScript: "Denizen script"
stageEditorStartMessage: "Start message"
stageEditorCompleteMessage: "Complete message"
2018-01-02 04:33:03 +01:00
stageEditorDelete: "Delete Stage"
stageEditorSetBlockNames: "Set block names"
stageEditorSetBlockAmounts: "Set block amounts"
2019-11-06 02:29:06 +01:00
stageEditorSetBlockDurability: "Set block durabilities"
2018-01-02 04:33:03 +01:00
stageEditorSetKillAmounts: "Set kill amounts"
stageEditorSetEnchantAmounts: "Set enchant amounts"
stageEditorSetMobAmounts: "Set mob amounts"
stageEditorSetEnchantments: "Set enchantments"
stageEditorSetItemNames: "Set item names"
stageEditorSetKillIds: "Set NPC IDs"
stageEditorSetMobTypes: "Set mob types"
stageEditorSetKillLocations: "Set kill locations"
stageEditorSetKillLocationRadii: "Set kill location radii"
stageEditorSetKillLocationNames: "Set kill location names"
stageEditorSetLocations: "Set locations"
stageEditorSetLocationRadii: "Set location radii"
stageEditorSetLocationNames: "Set location names"
stageEditorSetTameAmounts: "Set tame amounts"
stageEditorSetShearColors: "Set sheep colors"
stageEditorSetShearAmounts: "Set shear amounts"
stageEditorPassword: "Password"
2018-01-02 04:33:03 +01:00
stageEditorAddPasswordDisplay: "Add password display"
stageEditorAddPasswordPhrases: "Add password phrase(s)"
stageEditorObjectiveOverride: "Objective display override"
stageEditorCustom: "Custom objectives"
2018-01-02 04:33:03 +01:00
stageEditorNoModules: "No modules loaded"
stageEditorModuleNotFound: "Custom objective module not found."
stageEditorCustomPrompt: "Enter the name of a custom objective to add, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
stageEditorCustomAlreadyAdded: "That custom objective has already been added!"
stageEditorCustomCleared: "Custom objectives cleared."
stageEditorCustomDataPrompt: "Enter value for <data>:"
stageEditorEnterBlockNames: "Enter block names, <space>, <cancel>"
2019-11-06 02:29:06 +01:00
stageEditorEnterBlockAmounts: "Enter block amounts, <space>, <cancel>"
stageEditorEnterBlockDurability: "Enter block durabilities (numbers), <space>, <cancel>"
stageEditorCatchFishPrompt: "Enter number of fish to catch, <clear>, <cancel>"
2020-01-19 09:35:38 +01:00
stageEditorMilkCowsPrompt: "Enter number of cows to milk, <clear>, <cancel>"
stageEditorKillPlayerPrompt: "Enter number of players to kill, <clear>, <cancel>"
stageEditorEnchantTypePrompt: "Enter enchantment names, <space>, <cancel>"
stageEditorEnchantAmountsPrompt: "Enter enchant amounts (numbers), <space>, <cancel>"
stageEditorItemNamesPrompt: "Enter item names, <space>, <cancel>"
stageEditorNPCPrompt: "Enter NPC IDs, <space>, <cancel>"
stageEditorNPCToTalkToPrompt: "Enter NPC IDs, <space>, <clear>, <cancel>"
stageEditorDeliveryMessagesPrompt: "Enter delivery messages, <semicolon>, <cancel>"
stageEditorKillNPCsPrompt: "Enter kill amounts (numbers), <space>, <cancel>"
stageEditorMobsPrompt: "Enter mob names, <space>, <cancel>"
stageEditorMobAmountsPrompt: "Enter mob amounts, <space>, <cancel>"
stageEditorMobLocationPrompt: "Right-click on a block to select it, <add>, <cancel>"
stageEditorMobLocationRadiiPrompt: "Enter kill location radii (number of blocks), <space>, <cancel>"
stageEditorMobLocationNamesPrompt: "Enter location names, <semicolon>, <cancel>"
stageEditorReachLocationPrompt: "Right-click on a block to select it, <add>, <cancel>"
stageEditorReachLocationRadiiPrompt: "Enter reach location radii (number of blocks), <space>, <cancel>"
stageEditorReachLocationNamesPrompt: "Enter location names, <semicolon>, <cancel>"
stageEditorTameAmountsPrompt: "Enter tame amounts, <space>, <cancel>"
stageEditorShearColorsPrompt: "Enter sheep colors, <space>, <cancel>"
stageEditorShearAmountsPrompt: "Enter shear amounts, <space>, <cancel>"
stageEditorEventsPrompt: "Enter an action name, <clear>, <cancel>"
stageEditorChatEventsPrompt: "Enter an action name to add, <clear>, <cancel>"
stageEditorChatEventsTriggerPrompt: "%yellow%Enter a chat trigger for%aqua% <action>%yellow% <cancel>"
stageEditorCommandEventsPrompt: "Enter an action name to add, <clear>, <cancel>"
stageEditorCommandEventsTriggerPrompt: "%yellow%Enter a command trigger for%aqua% <action>%yellow% <cancel>"
stageEditorDelayMessagePrompt: "Enter delay message, <clear>, <cancel>"
stageEditorScriptPrompt: "Enter script name, <clear>, <cancel>"
stageEditorStartMessagePrompt: "Enter start message, <clear>, <cancel>"
stageEditorCompleteMessagePrompt: "Enter complete message, <clear>, <cancel>"
stageEditorPasswordDisplayPrompt: "Enter password display, <cancel>"
2018-01-02 04:33:03 +01:00
stageEditorPasswordDisplayHint: "(This is the text that will be displayed to the player as their objective)"
stageEditorPasswordPhrasePrompt: "Enter password phrases, <semicolon>, <cancel>"
stageEditorPasswordPhraseHint: "(This is the text that a player must enter to complete the objective)"
stageEditorObjectiveOverridePrompt: "Enter objective display override, <clear>, <cancel>"
stageEditorObjectiveOverrideHint: "(This override will display your own text as the objective)"
2018-01-02 04:33:03 +01:00
stageEditorObjectiveOverrideCleared: "Objective display override cleared."
stageEditorDeliveryAddItem: "Add item"
stageEditorDeliveryNPCs: "Set NPC IDs"
stageEditorDeliveryMessages: "Set delivery messages"
stageEditorNotSolid: "is not a solid block!"
2018-01-02 04:33:03 +01:00
stageEditorInvalidBlockName: "is not a valid block name!"
stageEditorInvalidEnchantment: "is not a valid enchantment name!"
stageEditorInvalidNPC: "is not a valid NPC ID!"
stageEditorInvalidMob: "is not a valid mob name!"
stageEditorInvalidItemName: "is not a valid item name!"
stageEditorInvalidDye: "is not a valid dye color!"
stageEditorInvalidEvent: "is not a valid action name!"
stageEditorDuplicateEvent: "Action is already in the list!"
2018-01-02 04:33:03 +01:00
stageEditorInvalidScript: "Denizen script not found!"
stageEditorNoCitizens: "Citizens is not installed!"
stageEditorNoDenizen: "Denizen is not installed!"
stageEditorPositiveAmount: "You must enter a positive number!"
stageEditorNotListofNumbers: "is not a list of numbers!"
2018-01-02 04:33:03 +01:00
stageEditorNoDelaySet: "You must set a delay first!"
stageEditorNoBlockNames: "You must set block names first!"
stageEditorNoEnchantments: "You must set enchantments first!"
stageEditorNoItems: "You must add items first!"
stageEditorNoDeliveryMessage: "You must set at least one delivery message!"
stageEditorNoNPCs: "You must set NPC IDs first!"
stageEditorNoMobTypes: "You must set mob types first!"
stageEditorNoKillLocations: "You must set kill locations first!"
stageEditorNoBlockSelected: "You must select a block first."
stageEditorNoColors: "You must set colors first!"
stageEditorNoLocations: "You must set locations first!"
stageEditorMustSetPasswordDisplays: "You must add at least one password display first!"
stageEditorDelayCleared: "Delay cleared."
stageEditorDenizenCleared: "Denizen script cleared."
stageEditorObjectiveCleared: "Objective cleared."
stageEditorMessageCleared: "Message cleared."
2018-01-02 04:33:03 +01:00
stageEditorConfirmStageNote: "Any Stages after will be shifted back one spot"
stageEditorDeleteSucces: "Stage deleted successfully."
stageEditorEnchantments: "Enchantments"
stageEditorNPCNote: 'Note: You may specify the name of the NPC with <npc>'
stageEditorOptional: "Optional"
stageEditorColors: "Sheep Colors"
eventEditorCreate: "Create new Action"
eventEditorEdit: "Edit an Action"
eventEditorDelete: "Delete an Action"
eventEditorNoneToEdit: "No Actions currently exist to be edited!"
eventEditorNoneToDelete: "No Actions currently exist to be deleted!"
eventEditorNotFound: "Action not found!"
eventEditorExists: "Action already exists!"
eventEditorSomeone: "Someone is already creating or editing an Action with that name!"
2018-01-02 04:33:03 +01:00
eventEditorAlpha: "Name must be alphanumeric!"
eventEditorErrorReadingFile: "Error reading Actions file."
2018-01-02 04:33:03 +01:00
eventEditorErrorSaving: "An error occurred while saving."
eventEditorDeleted: "Action deleted, Quests and Actions reloaded."
eventEditorSaved: "Action saved, Quests and Actions reloaded."
eventEditorEnterEventName: "Enter Action name, <cancel>"
eventEditorModifiedNote: 'Note: You have modified an Action that the following Quests use:'
eventEditorForcedToQuit: "If you save the Action, anyone who is actively doing any of these Quests will be forced to quit them."
eventEditorEventInUse: "The following Quests use the Action"
2018-01-02 04:33:03 +01:00
eventEditorMustModifyQuests: "You must modify these Quests first!"
eventEditorNotANumberList: "Input was not a list of numbers!"
eventEditorGiveItemsTitle: "- Give Items -"
eventEditorEffectsTitle: "- Sound Effects -"
eventEditorStormTitle: "- Action Storm -"
eventEditorThunderTitle: "- Action Thunder -"
eventEditorMobSpawnsTitle: "- Action Mob Spawns -"
eventEditorMobsTitle: "- Mobs -"
eventEditorAddMobTypesTitle: "- Add Mob -"
eventEditorPotionEffectsTitle: "- Action Potion Effects -"
eventEditorPotionTypesTitle: "- Action Potion Types -"
eventEditorWorldsTitle: "- Worlds -"
2018-01-02 04:33:03 +01:00
eventEditorSetName: "Set name"
eventEditorPlayer: "Player"
eventEditorTimer: "Timer"
eventEditorEffect: "Effect"
eventEditorWeather: "Weather"
eventEditorSetMessage: "Send message"
eventEditorClearInv: "Clear inventory"
2018-01-02 04:33:03 +01:00
eventEditorFailQuest: "Fail the quest"
eventEditorSetExplosions: "Set explosion locations"
eventEditorSetLightning: "Set lightning strike locations"
eventEditorSetEffects: "Set effects"
eventEditorSetStorm: "Set storm"
eventEditorSetThunder: "Set thunder"
eventEditorSetMobSpawns: "Set mob spawns"
eventEditorSetPotionEffects: "Apply potion effects"
eventEditorSetHunger: "Set hunger level"
eventEditorSetSaturation: "Set saturation level"
eventEditorSetHealth: "Set health level"
eventEditorEnterTimerSeconds: "Set amount of time before quest fails (in seconds)"
2018-01-02 04:33:03 +01:00
eventEditorSetTimer: "Set time to fail quest"
eventEditorCancelTimer: "Cancel the quest timer"
eventEditorSetTeleport: "Teleport to location"
eventEditorSetCommands: "Execute commands"
eventEditorItems: "Action Items"
2018-01-02 04:33:03 +01:00
eventEditorSetItems: "Give items"
eventEditorItemsCleared: "Action items cleared."
2018-01-02 04:33:03 +01:00
eventEditorSetItemNames: "Set item names"
eventEditorSetItemAmounts: "Set item amounts"
eventEditorNoNames: "No names set"
eventEditorMustSetNames: "You must set item names first!"
eventEditorInvalidName: "is not a valid item name!"
eventEditorStorm: "Action Storm"
2018-01-02 04:33:03 +01:00
eventEditorSetWorld: "Set world"
eventEditorSetDuration: "Set duration"
eventEditorNoWorld: "(No world set)"
eventEditorSetWorldFirst: "You must set a world first!"
eventEditorInvalidWorld: "is not a valid world name!"
eventEditorMustSetStormDuration: "You must set a storm duration!"
eventEditorStormCleared: "Storm data cleared."
eventEditorEnterStormWorld: "Enter a world name for the storm to occur in, <cancel>"
2018-01-02 04:33:03 +01:00
eventEditorEnterDuration: "Enter duration (in seconds)"
eventEditorThunder: "Action Thunder"
2018-01-02 04:33:03 +01:00
eventEditorMustSetThunderDuration: "You must set a thunder duration!"
eventEditorThunderCleared: "Thunder data cleared."
eventEditorEnterThunderWorld: "Enter a world name for the thunder to occur in, <cancel>"
eventEditorEffects: "Action Sound Effects"
eventEditorAddEffect: "Add sound effect"
eventEditorAddEffectLocation: "Add sound effect location"
eventEditorNoEffects: "No sound effects set"
eventEditorMustAddEffects: "You must add sound effects first!"
eventEditorInvalidEffect: "is not a valid sound effect name!"
eventEditorEffectsCleared: "Action sound effects cleared."
eventEditorEffectLocationPrompt: "Right-click on a block to play a sound effect at, <add>, <cancel>"
eventEditorMobSpawns: "Action Mob Spawns"
2018-01-02 04:33:03 +01:00
eventEditorAddMobTypes: "Add mob"
eventEditorMustSetMobTypesFirst: "You must set the mob type first!"
eventEditorSetMobAmounts: "Set mob amount"
eventEditorMustSetMobAmountsFirst: "You must set mob amount first!"
eventEditorAddSpawnLocation: "Set spawn location"
eventEditorMobSpawnsCleared: "Mob spawns cleared."
eventEditorMustSetMobLocationFirst: "You must set a spawn-location first!"
eventEditorInvalidMob: "is not a valid mob name!"
eventEditorSetMobName: "Set custom name for mob"
eventEditorSetMobType: "Set mob type"
eventEditorSetMobItemInHand: "Set item in hand"
eventEditorSetMobItemInHandDrop: "Set drop chance of item in hand"
eventEditorSetMobBoots: "Set boots"
eventEditorSetMobBootsDrop: "Set drop chance of boots"
eventEditorSetMobLeggings: "Set leggings"
eventEditorSetMobLeggingsDrop: "Set drop chance of leggings"
eventEditorSetMobChestPlate: "Set chest plate"
eventEditorSetMobChestPlateDrop: "Set drop chance of chest plate"
eventEditorSetMobHelmet: "Set helmet"
eventEditorSetMobHelmetDrop: "Set drop chance of helmet"
eventEditorSetMobSpawnAmount: "Set the amount of mobs to spawn"
eventEditorSetDropChance: "Set the drop chance"
eventEditorPotionEffects: "Action Potion Effects"
2018-01-02 04:33:03 +01:00
eventEditorSetPotionEffectTypes: "Set potion effect types"
eventEditorMustSetPotionTypesFirst: "You must set potion effect types first!"
eventEditorSetPotionDurations: "Set potion effect durations"
eventEditorMustSetPotionDurationsFirst: "You must set potion effect durations first!"
eventEditorMustSetPotionTypesAndDurationsFirst: "You must set potion effect types and durations first!"
eventEditorSetPotionMagnitudes: "Set potion effect magnitudes"
eventEditorPotionsCleared: "Potion effects cleared."
eventEditorInvalidPotionType: "is not a valid potion effect type!"
eventEditorLightningPrompt: "Right-click on a block to spawn a lightning strike at, <add>, <clear>, <cancel>"
eventEditorExplosionPrompt: "Right-click on a block to spawn an explosion at, <add>, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
eventEditorSelectBlockFirst: "You must select a block first."
2018-03-07 23:40:06 +01:00
eventEditorSetMessagePrompt: "Enter message, <clear>, <cancel>"
eventEditorSetMobTypesPrompt: "Enter mob name, <cancel>"
eventEditorSetMobAmountsPrompt: "Enter mob amount, <cancel>"
eventEditorSetMobNamePrompt: "Enter the name for this mob, <cancel>"
eventEditorSetMobLocationPrompt: "Right-click on a block to select it, <add>, <cancel>"
eventEditorSetPotionEffectsPrompt: "Enter potion effect types, <space>, <cancel>"
2018-03-22 05:19:47 +01:00
eventEditorSetPotionDurationsPrompt: "Enter potion effect durations (in seconds), <space>, <cancel>"
eventEditorSetPotionMagnitudesPrompt: "Enter potion effect magnitudes, <space>, <cancel>"
eventEditorSetHungerPrompt: "Enter hunger level, <clear>"
eventEditorSetSaturationPrompt: "Enter saturation level, <clear>"
eventEditorSetHealthPrompt: "Enter health level, <clear>"
eventEditorSetTeleportPrompt: "Right-click on a block to teleport the player to, <done>, <clear>, <cancel>"
eventEditorCommandsNote: "Note: You may use <player> to refer to the player's name."
eventEditorSetCommandsPrompt: "Enter commands, <semicolon>, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
reqSetMoney: "Set money requirement"
reqSetQuestPoints: "Set Quest Points requirement"
reqSetItem: "Set item requirements"
reqSetPerms: "Set permission requirements"
reqSetQuest: "Set Quest requirements"
reqSetQuestBlocks: "Set Quest blocks"
2019-07-22 05:37:14 +02:00
reqSetMcMMO: "Set mcMMO Classic requirements"
2018-01-02 04:33:03 +01:00
reqSetHeroes: "Set Heroes requirements"
reqSetCustom: "Set custom requirements"
2018-01-02 04:33:03 +01:00
reqSetFail: "Set fail requirements message"
reqSetSkills: "Set skills"
reqSetSkillAmounts: "Set skill amounts"
reqHeroesSetPrimary: "Set Primary Class"
reqHeroesSetSecondary: "Set Secondary Class"
reqMoneyPrompt: "Enter amount of <money>, <clear>, <cancel>"
reqQuestPointsPrompt: "Enter amount of Quest Points, <clear>, <cancel>"
reqQuestListTitle: "- Quests Available -"
reqQuestPrompt: "Enter a list of Quest names, <semicolon>, <clear>, <cancel>"
reqRemoveItemsPrompt: "Enter a list of true/false values, <space>, <cancel>"
reqPermissionsPrompt: "Enter permission requirements, <space>, <clear>, <cancel>"
reqCustomPrompt: "Enter the name of a custom requirement to add, <clear>, <cancel>"
2019-07-22 05:37:14 +02:00
reqMcMMOPrompt: "Enter mcMMO Classic skills, <space>, <clear>, <cancel>"
reqMcMMOAmountsPrompt: "Enter mcMMO Classic skill amounts, <space>, <clear>, <cancel>"
reqHeroesPrimaryPrompt: "Enter a Heroes Primary Class name, <clear>, <cancel>"
reqHeroesSecondaryPrompt: "Enter a Heroes Secondary Class name, <clear>, <cancel>"
reqFailMessagePrompt: "Enter fail requirements message, <cancel>"
2018-01-02 04:33:03 +01:00
reqAddItem: "Add item"
reqSetRemoveItems: "Set remove items"
reqNoItemsSet: "No items set"
reqNoValuesSet: "No values set"
reqHeroesPrimaryDisplay: "Primary Class:"
reqHeroesSecondaryDisplay: "Secondary Class:"
reqNotAQuestName: "<quest> is not a Quest name!"
reqItemCleared: "Item requirements cleared."
reqCustomAlreadyAdded: "That custom requirement has already been added!"
reqCustomNotFound: "Custom requirement module not found."
reqCustomCleared: "Custom requirements cleared."
2019-07-22 05:37:14 +02:00
reqMcMMOError: "<input> is not an mcMMO Classic skill name!"
2019-07-22 05:40:09 +02:00
reqMcMMOCleared: "mcMMO Classic skill requirements cleared."
2019-07-22 05:37:14 +02:00
reqMcMMOAmountsCleared: "mcMMO Classic skill amount requirements cleared."
2018-01-02 04:33:03 +01:00
reqHeroesNotPrimary: "The <class> class is not primary!"
reqHeroesPrimaryCleared: "Heroes Primary Class requirement cleared."
reqHeroesNotSecondary: "The <class> class is not secondary!"
reqHeroesSecondaryCleared: "Heroes Secondary Class requirement cleared."
reqHeroesClassNotFound: "Class not found!"
reqNotANumber: "<input> is not a number!"
reqMustAddItem: "You must add at least one item first!"
reqNoMessage: "You must set a fail requirements message!"
plnStart: "Set start date"
plnEnd: "Set end date"
plnRepeat: "Set repeat cycle"
plnCooldown: "Set player cooldown"
plnTooEarly: "<quest> will be active in <time>."
plnTooLate: "<quest> was last active <time> ago."
2019-04-23 04:47:32 +02:00
optGeneral: "General"
optMultiplayer: "Multiplayer"
optBooleanPrompt: "Enter '<true>' or '<false>', <clear>, <cancel>"
optNumberPrompt: "Enter a level (number) for tracking progress, <clear>, <cancel>"
optAllowCommands: "Allow commands during quest"
optAllowQuitting: "Allow quitting during quest"
optCommandsDenied: "You cannot use commands during <quest>."
2019-04-23 04:47:32 +02:00
optUseDungeonsXLPlugin: "Use DungeonsXL plugin"
optUsePartiesPlugin: "Use Parties plugin"
optShareProgressLevel: "Level of progress sharing"
optRequireSameQuest: "Require same quest"
2018-01-02 04:33:03 +01:00
rewSetMoney: "Set money reward"
rewSetQuestPoints: "Set Quest Points reward"
rewSetItems: "Set item rewards"
rewSetExperience: "Set experience reward"
rewSetCommands: "Set command rewards"
rewCommands: "Command rewards"
rewSetCommandsOverrides: "Set command display overrides"
rewCommandsCleared: "Command rewards cleared."
rewCommandsOverridePrompt: "Enter command display override, <clear>, <cancel>"
rewCommandsOverrideHint: "(This override will display your own text as the reward)"
rewNoCommands: "You must set commands first!"
2018-01-02 04:33:03 +01:00
rewSetPermission: "Set permission rewards"
2019-07-22 05:37:14 +02:00
rewSetMcMMO: "Set mcMMO Classic skill rewards"
2018-01-02 04:33:03 +01:00
rewSetHeroes: "Set Heroes experience rewards"
rewSetPhat: "Set PhatLoot rewards"
rewSetCustom: "Set custom rewards"
2018-01-02 04:33:03 +01:00
rewSetHeroesClasses: "Set classes"
rewSetHeroesAmounts: "Set experience amounts"
rewMoneyPrompt: "Enter amount of <money>, <clear>, <cancel>"
rewExperiencePrompt: "Enter amount of experience, <clear>, <cancel>"
rewCommandPrompt: "Enter command rewards, <semicolon>, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
rewCommandPromptHint: 'Note: You may put <player> to specify the player who completed the Quest. e.g. smite <player>'
rewPermissionsPrompt: "Enter permission rewards, <space>, <clear>, <cancel>"
rewQuestPointsPrompt: "Enter amount of Quest Points, <clear>, <cancel>"
2019-07-22 05:37:14 +02:00
rewMcMMOPrompt: "Enter mcMMO Classic skills, <space>, <cancel>"
rewMcMMOPromptHint: "Note: Typing 'All' will give levels to all skills."
rewHeroesClassesPrompt: "Enter Heroes classes, <space>, <cancel>"
rewHeroesExperiencePrompt: "Enter experience amounts (numbers, decimals are allowed), <space>, <cancel>"
rewPhatLootsPrompt: "Enter PhatLoots, <space>, <clear>, <cancel>"
rewCustomRewardPrompt: "Enter the name of a custom reward to add, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
rewItemsCleared: "Item rewards cleared."
rewNoMcMMOSkills: "No skills set"
rewNoHeroesClasses: "No classes set"
rewSetMcMMOSkillsFirst: "You must set skills first!"
2019-07-22 05:37:14 +02:00
rewMcMMOCleared: "mcMMO Classic rewards cleared."
2018-01-02 04:33:03 +01:00
rewSetHeroesClassesFirst: "You must set classes first!"
rewHeroesCleared: "Heroes rewards cleared."
rewHeroesInvalidClass: "<input> is not a valid Heroes class name!"
rewPhatLootsInvalid: "<input> is not a valid PhatLoot name!"
rewPhatLootsCleared: "PhatLoots reward cleared."
rewCustomAlreadyAdded: "That custom reward has already been added!"
rewCustomNotFound: "Custom reward module not found."
rewCustomCleared: "Custom rewards cleared."
itemCreateLoadHand: "Load item in hand"
itemCreateSetName: "Set name"
itemCreateSetAmount: "Set amount"
itemCreateSetDurab: "Set durability"
2019-01-13 20:38:02 +01:00
itemCreateSetEnchs: "Add enchantments"
2018-01-02 04:33:03 +01:00
itemCreateSetDisplay: "Set display name"
itemCreateSetLore: "Set lore"
itemCreateSetClearMeta: "Clear extra data"
itemCreateEnterName: "Enter an item name, <cancel>"
itemCreateEnterAmount: "Enter item amount (max. 64), <cancel>"
itemCreateEnterDurab: "Enter item durability, <clear>, <cancel>"
itemCreateEnterEnch: "Enter an enchantment name, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
itemCreateEnterLevel: "Enter a level (number) for <enchantment>"
itemCreateEnterDisplay: "Enter item display name, <clear>, <cancel>"
itemCreateEnterLore: "Enter item lore, <semicolon>, <clear>, <cancel>"
2018-01-02 04:33:03 +01:00
itemCreateLoaded: "Item loaded."
itemCreateNoItem: "No item in hand!"
itemCreateNoName: "You must set a name first!"
itemCreateInvalidName: "Invalid item name!"
itemCreateInvalidDurab: "Invalid item durability!"
itemCreateInvalidEnch: "Invalid enchantment name!"
itemCreateInvalidInput: "Invalid input!"
itemCreateNoNameAmount: "You must set a name and amount first!"
itemCreateCriticalError: "A critical error has occurred."
dateCreateEnterDay: "Enter a day (max. 31), <cancel>"
dateCreateEnterMonth: "Enter a month (max. 12), <cancel>"
dateCreateEnterYear: "Enter a year (max. 9999), <cancel>"
dateCreateEnterHour: "Enter an hour (max. 23), <cancel>"
dateCreateEnterMinute: "Enter a minute (max. 59), <cancel>"
dateCreateEnterSecond: "Enter a second (max. 59), <cancel>"
dateCreateEnterOffset: "Enter a UTC time offset (max. 14), <cancel>"
dateCreateEnterZone: "Enter a UTC time zone, <cancel>"
dateCreateNoYearAmount: "You must set a year first!"
2018-01-02 04:33:03 +01:00
questObjectivesTitle: "---(<quest>)---"
questCompleteTitle: '**QUEST COMPLETE: <quest>**'
questRewardsTitle: "Rewards:"
questFailed: "*QUEST FAILED*"
questMaxAllowed: "You may only have up to <number> Quests."
questAlreadyOn: "You are already on that Quest!"
questTooEarly: "You may not take <quest> again for another <time>."
questAlreadyCompleted: "You have already completed <quest>."
questInvalidLocation: "You may not take <quest> at this location."
questInvalidDeliveryItem: "<item> is not a required item for this quest!"
questSelectedLocation: "Selected location"
questListTitle: "- List of Quests -"
questHelpTitle: "- Quests Help -"
questDisplayHelp: "- Display this help"
2018-01-02 04:33:03 +01:00
questNPCListTitle: "- Quests | <npc> -"
questAdminHelpTitle: "- Questadmin -"
questEditorTitle: "- Quest Editor -"
eventEditorTitle: "- Action Editor - "
2018-01-02 04:33:03 +01:00
questCreateTitle: "- Create Quest -"
questEditTitle: "- Edit Quest -"
questDeleteTitle: "- Delete Quest -"
requirementsTitle: "- <quest> | Requirements -"
rewardsTitle: "- <quest> | Rewards -"
2018-03-18 04:21:59 +01:00
plannerTitle: "- <quest> | Planner -"
2019-04-23 04:47:32 +02:00
optionsTitle: "- <quest> | Options -"
2018-01-02 04:33:03 +01:00
itemRequirementsTitle: "- Item Requirements -"
itemRewardsTitle: "- Item Rewards -"
2019-07-22 05:37:14 +02:00
mcMMORequirementsTitle: "- mcMMO Classic Requirements -"
mcMMORewardsTitle: "- mcMMO Classic Rewards -"
2018-01-02 04:33:03 +01:00
heroesRequirementsTitle: "- Heroes Requirements -"
heroesRewardsTitle: "- Heroes Rewards -"
heroesClassesTitle: "- Heroes Classes -"
heroesExperienceTitle: "- Heroes Experience -"
heroesPrimaryTitle: "- Primary Classes -"
heroesSecondaryTitle: "- Secondary Classes -"
phatLootsRewardsTitle: "- PhatLoots Rewards -"
customRequirementsTitle: "- Custom Requirements -"
customRewardsTitle: "- Custom Rewards -"
skillListTitle: "- Skill List -"
eventTitle: "- Action -"
2018-01-02 04:33:03 +01:00
completedQuestsTitle: "- Completed Quests -"
topQuestersTitle: "- Top <number> Questers -"
createItemTitle: "- Create Item -"
dateTimeTitle: "- Date & Time -"
timeZoneTitle: "- Time Zones -"
2018-01-02 04:33:03 +01:00
enchantmentsTitle: "- Enchantments -"
questGUITitle: "- GUI Item Display -"
questRegionTitle: "- Quest Region -"
effEnterName: "Enter an effect name to add it to the list, <cancel>"
2018-01-02 04:33:03 +01:00
cmdAdd: "add"
strAdd: "then enter '<command>' to include it"
2018-01-02 04:33:03 +01:00
cmdClear: "clear"
strClear: "or '<command>' to erase all data"
cmdCancel: "cancel"
strCancel: "or '<command>' to return"
2018-01-02 04:33:03 +01:00
cmdDone: "done"
strDone: "then enter '<command>' to save"
2019-04-23 04:47:32 +02:00
strSpace: "separating each by a space"
strSemicolon: "separating each by a semicolon"
charSemi: ";"
2018-01-02 04:33:03 +01:00
acceptQuest: "Accept Quest?"
enterAnOption: "Enter an option"
questAccepted: "Quest accepted: <quest>"
2018-01-02 04:33:03 +01:00
currentQuest: "Current Quests:"
noMoreQuest: "No more quests available."
break: "Break"
damage: "Damage"
2018-01-02 04:33:03 +01:00
place: "Place"
use: "Use"
2020-01-21 09:25:47 +01:00
cut: "Shear"
2019-02-05 03:57:35 +01:00
craft: "Craft"
smelt: "Smelt"
2018-01-02 04:33:03 +01:00
enchantItem: "Enchant <item> with <enchantment>"
2019-07-17 04:07:37 +02:00
brew: "Brew"
2019-02-05 03:57:35 +01:00
catchFish: "Catch Fish"
2020-01-19 09:35:38 +01:00
milkCow: "Milk Cow"
2018-01-02 04:33:03 +01:00
kill: "Kill"
killAtLocation: "Kill <mob> at <location>"
killPlayer: "Kill a Player"
deliver: "Deliver <item> to <npc>"
talkTo: "Talk to <npc>"
tame: "Tame"
2019-07-31 21:48:22 +02:00
shearSheep: "Shear <color> Sheep"
2018-01-02 04:33:03 +01:00
goTo: "Go to <location>"
completed: "Completed"
redoCompleted: "(Completed)"
consoleError: "This command may only be performed in-game."
noActiveQuest: "You do not currently have any active Quests."
speakTo: 'Start: Speak to <npc>'
mustSpeakTo: "You must speak to <npc> to start this Quest."
noCommandStart: "<quest> may not be started via command."
permissionDisplay: "Permission:"
heroesClass: "class"
mcMMOLevel: "level"
haveCompleted: "You have completed <quest>"
cannotComplete: "Cannot complete <quest>"
questNotFound: "Quest not found."
alreadyConversing: "You already are in a conversation!"
inputNum: "Input must be a number."
inputPosNum: "Input must be a positive number."
questModified: "Your active Quest <quest> has been modified. You have been forced to quit the Quest."
questNotExist: "Your active Quest <quest> no longer exists. You have been forced to quit the Quest."
2019-08-28 09:19:10 +02:00
questInvalidChoice: "Invalid choice. Type '<yes>' or '<no>'"
2018-01-02 04:33:03 +01:00
questPointsDisplay: "Quest points:"
questNoDrop: "You may not drop Quest items."
questNoBrew: "You may not brew Quest items."
questNoStore: "You may not store Quest items."
questNoCraft: "You may not craft Quest items."
questNoEquip: "You may not equip Quest items."
questNoDispense: "You may not put Quest items in dispensers."
questNoEnchant: "You may not enchant Quest items."
questNoSmelt: "You may not smelt using Quest items."
pageSelectionNum: "Page selection must be a number."
pageSelectionPosNum: "Page selection must be a positive number."
questTakeDisabled: "Taking Quests via commands has been disabled."
questQuit: "You have quit <quest>"
questQuitDisabled: "Quitting this quest has been disabled."
2018-01-02 04:33:03 +01:00
questsUnknownCommand: "Unknown Quests command. Type /quests for help."
pageNotExist: "Page does not exist."
pageFooter: "- Page <current> of <all> -"
questsReloaded: "Quests reloaded."
numQuestsLoaded: "<number> Quests loaded."
questForceTake: "<player> has forcibly started the Quest <quest>."
questForcedTake: "<player> has forced you to take the Quest <quest>."
questForceQuit: "<player> has forcibly quit the Quest <quest>."
questForcedQuit: "<player> has forced you to quit the Quest <quest>."
questForceFinish: "<player> has forcibly finished their Quest <quest>."
questForcedFinish: "<player> has forced you to finish your Quest <quest>."
questForceNextStage: "<player> has advanced to the next Stage in the Quest <quest>."
questForcedNextStage: "<player> has advanced you to the next Stage in your Quest <quest>."
questReset: "<player> has been reset."
questRemoved: "Quest <quest> has been removed from player <player>'s completed Quests."
settingAllQuestPoints: "Setting all players' Quest Points..."
allQuestPointsSet: "All players' Quest Points have been set to <number>!"
setQuestPoints: "<player>'s Quest Points have been set to <number>."
questPointsSet: "<player> has set your Quest Points to <number>."
takeQuestPoints: "Took away <number> Quest Points from <player>."
questPointsTaken: "<player> took away <number> Quest Points."
giveQuestPoints: "Gave <number> Quest Points from <player>."
questPointsGiven: "<player> gave you <number> Quest Points."
2018-03-23 00:31:06 +01:00
invalidMinimum: "Input must be at least <number>!"
2018-03-22 05:19:47 +01:00
invalidRange: "Input must be between <least> and <greatest>!"
invalidOption: "Invalid option!"
invalidStageNum: "Invalid stage number for Quest <quest>"
2018-01-02 04:33:03 +01:00
noCurrentQuest: "<player> does not currently have any active Quests."
playerNotFound: "Player not found."
errorNPCID: 'Error: There is no NPC with ID <number>'
errorReading: "Error reading <file>, skipping.."
errorReadingSuppress: "Error reading <file>, suppressing further errors."
errorDataFolder: "Error: Unable to read Quests data folder!"
2018-01-02 04:33:03 +01:00
questsPlayerHasQuestAlready: "<player> is already on the Quest <quest>!"
questsUnknownAdminCommand: "Unknown Questsadmin command. Type /questsadmin for help."
unknownError: "An unknown error occurred. See console output."
journalTitle: "Quest Journal"
2018-01-02 04:33:03 +01:00
journalTaken: "You take out your Quest Journal."
journalPutAway: "You put away your Quest Journal."
journalAlreadyHave: "You already have your Quest Journal out."
journalNoRoom: "You have no room in your inventory for your Quest Journal!"
journalNoQuests: "You have no accepted quests!"
journalDenied: "You cannot do that with your Quest Journal."
timeZone: "Time zone"
2018-01-02 04:33:03 +01:00
timeDay: "Day"
timeDays: "Days"
timeMonth: "Month"
timeMonths: "Months"
timeYear: "Year"
timeYears: "Years"
2018-01-02 04:33:03 +01:00
timeHour: "Hour"
timeHours: "Hours"
timeMinute: "Minute"
timeMinutes: "Minutes"
timeSecond: "Second"
timeSeconds: "Seconds"
timeMillisecond: "Millisecond"
timeMilliseconds: "Milliseconds"
event: "Action"
2018-01-02 04:33:03 +01:00
delay: "Delay"
save: "Save"
exit: "Exit"
exited: "Exited"
cancel: "Cancel"
cancelled: "Cancelled"
questTimeout: "Cancelled."
yesWord: "Yes"
noWord: "No"
"true": "true"
"false": "false"
clear: "Clear"
edit: "Edit"
none: "None"
done: "Done"
noneSet: "None set"
noDelaySet: "No delay set"
noIdsSet: "No IDs set"
noNamesSet: "No names set"
worlds: "Worlds"
points: "points"
npcHint: "Note: You can left or right click on NPCs to get their ID."
2019-07-31 21:48:22 +02:00
listsNotSameSize: "All required lists must have the same number of entries!"
2018-01-02 04:33:03 +01:00
listDuplicate: "List contains duplicates!"
id: "ID"
quest: "Quest"
quests: "Quests"
createdBy: "Created by"
continuedBy: "and continued by"
questPoints: "Quest Points"
accepted: "Accepted"
complete: "Complete"
redoable: "Redoable"
objectives: "Objectives"
everything: "Everything"
2018-01-02 04:33:03 +01:00
usage: "Usage"
redoableEvery: "Redoable every <time>."
requirements: "Requirements"
money: "Money"
with: "with"
2018-01-02 04:33:03 +01:00
to: "to"
blocksWithin: "within <amount> blocks of"
valRequired: "Value required"
experience: "Experience"
2019-06-12 07:11:17 +02:00
timePrompt: "Enter amount of time (in seconds), <clear>, <cancel>"
timerMessage: "%green%Time left to finish the quest/stage:%red% <time> seconds"
timerStart: "%green%You have%red% <time> seconds%green% to finish this quest/stage"
2018-01-02 04:33:03 +01:00
questErrorReadingFile: "Error reading Quests file."
questSaveError: "An error occurred while saving."
noPermission: "You do not have permission to do that."
duplicateEditor: "You are already using an editor!"
2019-08-05 19:33:02 +02:00
difference: "The difference is '<data>'."
2019-08-29 08:21:18 +02:00
notInstalled: "Not installed"
confirmDelete: "Are you sure?"