diff --git a/lang/en.json b/lang/en.json index a33f2ff5..4bcb7bdb 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1323,14 +1323,11 @@ "attackTargetDoesNotExist": "The target token no longer exists", "insufficentAdvancements": "You don't have enough advancements left.", "noAssignedPlayerCharacter": "You have no assigned character.", - "noTokenSelected": "No token is selected", + "noSelectedToken": "You have no selected token", "noSourceItem": "No source item found in chat message", "sourceItemNotFound": "Source item not found", - "failedToCreateTemporaryItem": "Failed to create temporary item for action use", "actionNotFound": "Action '{id}' not found on source item", - "actionTypeNotFound": "Action type '{type}' not found", "actionUseFailed": "Failed to use action '{action}': {error}", - "actionNotAvailable": "This action is not available", "onlyUseableByPC": "This can only be used with a PC token", "dualityParsing": "Duality roll not properly formated", "attributeFaulty": "The supplied Attribute doesn't exist", diff --git a/module/applications/ui/chatLog.mjs b/module/applications/ui/chatLog.mjs index 6f675b3a..27c53a62 100644 --- a/module/applications/ui/chatLog.mjs +++ b/module/applications/ui/chatLog.mjs @@ -288,7 +288,7 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo const actor = getCommandTarget(); if (!actor) { - ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.noTokenSelected')); + ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.noSelectedToken')); return; } diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 3d6ad4bc..e719b25e 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -111,7 +111,7 @@ export const getCommandTarget = () => { } } if (!target) { - ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.noTokenSelected')); + ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.noSelectedToken')); return null; } if (target.type !== 'character') {