From 83d0d7e5bc53522ca1f10a4720ca1839f5d4d9df Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 10 Oct 2025 23:27:09 +0100 Subject: [PATCH] New translations for /cmdalias (pmmp/PocketMine-MP#6685) --- .github/workflows/tag-patches.yml | 2 +- eng.ini | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tag-patches.yml b/.github/workflows/tag-patches.yml index 6432e3621..a332ece9b 100644 --- a/.github/workflows/tag-patches.yml +++ b/.github/workflows/tag-patches.yml @@ -19,7 +19,7 @@ jobs: - name: Tag new version run: | - BASE_VERSION="2.26" + BASE_VERSION="2.27" PREVIOUS_TAG=$(git tag --list | awk -v s="$BASE_VERSION." 'index($0, s) == 1' | sort -r --version-sort | head -n1) echo "Previous tag is $PREVIOUS_TAG" diff --git a/eng.ini b/eng.ini index d32949ec1..1c477329a 100644 --- a/eng.ini +++ b/eng.ini @@ -341,12 +341,24 @@ pocketmine.command.ban.player.description=Prevents the specified player from usi pocketmine.command.banlist.description=View all players banned from this server pocketmine.command.clear.description=Clears items from player inventory pocketmine.command.clear.usage=/clear [player] [item] [maxCount] +pocketmine.command.cmdalias.create.success=Successfully created alias {%alias} to command {%target} +pocketmine.command.cmdalias.delete.notFound=Cannot delete alias {%alias} because it's not defined in this scope +pocketmine.command.cmdalias.delete.success=Successfully deleted alias {%alias} +pocketmine.command.cmdalias.description=View or edit user-specific or global command aliases +pocketmine.command.cmdalias.list.conflicted={%alias} is conflicted between {%commandIds} +pocketmine.command.cmdalias.list.noneSet=No aliases configured +pocketmine.command.cmdalias.list.normal={%alias} invokes {%commandId} +pocketmine.command.cmdalias.scope.global=global +pocketmine.command.cmdalias.scope.userSpecific=user-specific +pocketmine.command.cmdalias.template={%message} (scope: {%scope}) pocketmine.command.defaultgamemode.description=Set the default gamemode pocketmine.command.deop.description=Takes the specified player's operator status pocketmine.command.difficulty.description=Sets the game difficulty pocketmine.command.dumpmemory.description=Dumps diagnostic information about memory usage to disk pocketmine.command.effect.description=Adds/Removes effects on players pocketmine.command.enchant.description=Adds enchantments on items +pocketmine.command.error.aliasConflict={%alias} is assigned to multiple commands. Use one of these instead: {%commandIdList} +pocketmine.command.error.aliasConflictTip=Tip: You can use {%cmdAliasCommand} to view and edit command aliases. pocketmine.command.error.permission=You don't have permission to use the command: {%commandName} pocketmine.command.error.playerNotFound=Cannot find a player matching "{%playerName}" pocketmine.command.exception=Unhandled exception executing command '{%0}' in {%1}: {%2} @@ -483,6 +495,9 @@ pocketmine.permission.command.ban.list=Allows the user to list banned players pocketmine.permission.command.ban.player=Allows the user to ban players pocketmine.permission.command.clear.other=Allows the user to clear inventory of other players pocketmine.permission.command.clear.self=Allows the user to clear their own inventory +pocketmine.permission.command.cmdalias.edit.global=Allows the user to manage global command aliases +pocketmine.permission.command.cmdalias.edit.self=Allows the user to manage their own user-specific command aliases +pocketmine.permission.command.cmdalias.list=Allows the user to view command aliases pocketmine.permission.command.defaultgamemode=Allows the user to change the default game mode pocketmine.permission.command.difficulty=Allows the user to change the game difficulty pocketmine.permission.command.dumpmemory=Allows the user to dump memory contents