mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-09 12:19:56 +01:00
New translations strings.yml (English)
This commit is contained in:
parent
837cd616dd
commit
c1aa3bcfed
@ -12,6 +12,8 @@ COMMAND_EDITOR: "editor"
|
|||||||
COMMAND_EDITOR_HELP: "<command> - Create/Edit Quests"
|
COMMAND_EDITOR_HELP: "<command> - Create/Edit Quests"
|
||||||
COMMAND_EVENTS_EDITOR: "actions"
|
COMMAND_EVENTS_EDITOR: "actions"
|
||||||
COMMAND_EVENTS_EDITOR_HELP: "<command> - Create/Edit Actions"
|
COMMAND_EVENTS_EDITOR_HELP: "<command> - Create/Edit Actions"
|
||||||
|
COMMAND_CONDITIONS_EDITOR: "conditions"
|
||||||
|
COMMAND_CONDITIONS_EDITOR_HELP: "<command> - Create, edit or delete conditions"
|
||||||
COMMAND_STATS: "stats"
|
COMMAND_STATS: "stats"
|
||||||
COMMAND_STATS_HELP: "<command> - View quest statistics"
|
COMMAND_STATS_HELP: "<command> - View quest statistics"
|
||||||
COMMAND_TOP: "top"
|
COMMAND_TOP: "top"
|
||||||
@ -159,6 +161,8 @@ stageEditorDeathEvent: "Death Action"
|
|||||||
stageEditorDeathEventCleared: "Death Action cleared."
|
stageEditorDeathEventCleared: "Death Action cleared."
|
||||||
stageEditorDisconnectEvent: "Disconnect Action"
|
stageEditorDisconnectEvent: "Disconnect Action"
|
||||||
stageEditorDisconnectEventCleared: "Disconnect Action cleared."
|
stageEditorDisconnectEventCleared: "Disconnect Action cleared."
|
||||||
|
stageEditorConditions: "Conditions"
|
||||||
|
stageEditorConditionCleared: "Condition cleared."
|
||||||
stageEditorDelayMessage: "Delay message"
|
stageEditorDelayMessage: "Delay message"
|
||||||
stageEditorDenizenScript: "Denizen script"
|
stageEditorDenizenScript: "Denizen script"
|
||||||
stageEditorStartMessage: "Start message"
|
stageEditorStartMessage: "Start message"
|
||||||
@ -222,6 +226,7 @@ stageEditorChatEventsPrompt: "Enter an action name to add, <clear>, <cancel>"
|
|||||||
stageEditorChatEventsTriggerPrompt: "Enter a chat trigger for <action>, <cancel>"
|
stageEditorChatEventsTriggerPrompt: "Enter a chat trigger for <action>, <cancel>"
|
||||||
stageEditorCommandEventsPrompt: "Enter an action name to add, <clear>, <cancel>"
|
stageEditorCommandEventsPrompt: "Enter an action name to add, <clear>, <cancel>"
|
||||||
stageEditorCommandEventsTriggerPrompt: "Enter a command trigger for <action>, <cancel>"
|
stageEditorCommandEventsTriggerPrompt: "Enter a command trigger for <action>, <cancel>"
|
||||||
|
stageEditorConditionsPrompt: "Enter a condition name, <clear>, <cancel>"
|
||||||
stageEditorDelayMessagePrompt: "Enter delay message, <clear>, <cancel>"
|
stageEditorDelayMessagePrompt: "Enter delay message, <clear>, <cancel>"
|
||||||
stageEditorScriptPrompt: "Enter script name, <clear>, <cancel>"
|
stageEditorScriptPrompt: "Enter script name, <clear>, <cancel>"
|
||||||
stageEditorStartMessagePrompt: "Enter start message, <clear>, <cancel>"
|
stageEditorStartMessagePrompt: "Enter start message, <clear>, <cancel>"
|
||||||
@ -240,6 +245,7 @@ stageEditorInvalidItemName: "is not a valid item name!"
|
|||||||
stageEditorInvalidDye: "is not a valid dye color!"
|
stageEditorInvalidDye: "is not a valid dye color!"
|
||||||
stageEditorInvalidEvent: "is not a valid action name!"
|
stageEditorInvalidEvent: "is not a valid action name!"
|
||||||
stageEditorDuplicateEvent: "Action is already in the list!"
|
stageEditorDuplicateEvent: "Action is already in the list!"
|
||||||
|
stageEditorInvalidCondition: "is not a valid condition name!"
|
||||||
stageEditorInvalidScript: "Denizen script not found!"
|
stageEditorInvalidScript: "Denizen script not found!"
|
||||||
stageEditorNoCitizens: "Citizens is not installed!"
|
stageEditorNoCitizens: "Citizens is not installed!"
|
||||||
stageEditorNoDenizen: "Denizen is not installed!"
|
stageEditorNoDenizen: "Denizen is not installed!"
|
||||||
@ -389,6 +395,25 @@ eventEditorSetHealthPrompt: "Enter health level, <clear>"
|
|||||||
eventEditorSetTeleportPrompt: "Right-click on a block to teleport the player to, <done>, <clear>, <cancel>"
|
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."
|
eventEditorCommandsNote: "Note: You may use <player> to refer to the player's name."
|
||||||
eventEditorSetCommandsPrompt: "Enter commands, <semicolon>, <clear>, <cancel>"
|
eventEditorSetCommandsPrompt: "Enter commands, <semicolon>, <clear>, <cancel>"
|
||||||
|
conditionEditorCreate: "Create new condition"
|
||||||
|
conditionEditorEdit: "Edit a condition"
|
||||||
|
conditionEditorDelete: "Delete a condition"
|
||||||
|
conditionEditorNoneToEdit: "No conditions currently exist to be edited!"
|
||||||
|
conditionEditorNoneToDelete: "No conditions currently exist to be deleted!"
|
||||||
|
conditionEditorNotFound: "Condition not found!"
|
||||||
|
conditionEditorExists: "Condition already exists!"
|
||||||
|
conditionEditorInUse: "The following quests use the action"
|
||||||
|
conditionEditorDeleted: "Condition deleted. Quest and condition data reloaded."
|
||||||
|
conditionEditorSaved: "Condition saved. Quest and condition data reloaded."
|
||||||
|
conditionEditorEnterName: "Enter Condition name, <cancel>"
|
||||||
|
conditionEditorModifiedNote: 'Note: You have modified a condition that the following quests use:'
|
||||||
|
conditionEditorForcedToQuit: "If you save the condition, anyone who is actively doing any of these quests will be forced to quit them."
|
||||||
|
conditionEditorSetName: "Set name"
|
||||||
|
conditionEditorPlayer: "Player"
|
||||||
|
conditionEditorItemsInMainHand: "Holding in main hand"
|
||||||
|
conditionEditorSetItemsInMainHand: "Set holding in main hand"
|
||||||
|
conditionEditorFailQuest: "Fail the quest"
|
||||||
|
conditionEditorConditionCleared: "Condition cleared."
|
||||||
reqSetMoney: "Set money requirement"
|
reqSetMoney: "Set money requirement"
|
||||||
reqSetQuestPoints: "Set <points> requirement"
|
reqSetQuestPoints: "Set <points> requirement"
|
||||||
reqSetItem: "Set item requirements"
|
reqSetItem: "Set item requirements"
|
||||||
@ -543,6 +568,7 @@ questNPCListTitle: "- Quests | <npc> -"
|
|||||||
questAdminHelpTitle: "- Questadmin -"
|
questAdminHelpTitle: "- Questadmin -"
|
||||||
questEditorTitle: "- Quest Editor -"
|
questEditorTitle: "- Quest Editor -"
|
||||||
eventEditorTitle: "- Action Editor - "
|
eventEditorTitle: "- Action Editor - "
|
||||||
|
conditionEditorTitle: "- Condition Editor - "
|
||||||
questCreateTitle: "- Create Quest -"
|
questCreateTitle: "- Create Quest -"
|
||||||
questEditTitle: "- Edit Quest -"
|
questEditTitle: "- Edit Quest -"
|
||||||
questDeleteTitle: "- Delete Quest -"
|
questDeleteTitle: "- Delete Quest -"
|
||||||
@ -696,7 +722,6 @@ timeSecond: "Second"
|
|||||||
timeSeconds: "Seconds"
|
timeSeconds: "Seconds"
|
||||||
timeMillisecond: "Millisecond"
|
timeMillisecond: "Millisecond"
|
||||||
timeMilliseconds: "Milliseconds"
|
timeMilliseconds: "Milliseconds"
|
||||||
event: "Action"
|
|
||||||
delay: "Delay"
|
delay: "Delay"
|
||||||
save: "Save"
|
save: "Save"
|
||||||
exit: "Exit"
|
exit: "Exit"
|
||||||
@ -724,6 +749,8 @@ listsNotSameSize: "All required lists must have the same number of entries!"
|
|||||||
listDuplicate: "List contains duplicates!"
|
listDuplicate: "List contains duplicates!"
|
||||||
id: "ID"
|
id: "ID"
|
||||||
quest: "Quest"
|
quest: "Quest"
|
||||||
|
event: "Action"
|
||||||
|
condition: "Condition"
|
||||||
quests: "Quests"
|
quests: "Quests"
|
||||||
createdBy: "Created by"
|
createdBy: "Created by"
|
||||||
continuedBy: "and continued by"
|
continuedBy: "and continued by"
|
||||||
@ -737,6 +764,7 @@ usage: "Usage"
|
|||||||
redoableEvery: "Redoable every <time>."
|
redoableEvery: "Redoable every <time>."
|
||||||
requirements: "Requirements"
|
requirements: "Requirements"
|
||||||
requirementsItemFail: "Unable to collect required item. Is it in your off-hand?"
|
requirementsItemFail: "Unable to collect required item. Is it in your off-hand?"
|
||||||
|
conditionFail: "Quest condition failed."
|
||||||
money: "Money"
|
money: "Money"
|
||||||
with: "with"
|
with: "with"
|
||||||
to: "to"
|
to: "to"
|
||||||
|
Loading…
Reference in New Issue
Block a user