Files
InventoryCheck/src/Language.h
T
2024-03-27 21:25:18 +08:00

107 lines
6.8 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#pragma once
#include "Global.h"
std::string defaultLanguage_en_US = R"(
form.main.title=Check Player Inventory
form.main.content=Please select a query mode.
form.main.checkOnline=Query online players
form.main.checkAll=Query all players
form.main.searchPlayer=Search player
form.main.resumeInventory=Resume yor inventory
form.checkList.title=Player List
form.checkList.content=Please select the player you want to check.
form.searchPlayer.title=Search Player
form.searchPlayer.description=Please enter the player's name to search.
form.searchPlayer.input=Player's name
form.searchPlayer.inputName=Please enter name information.
form.searchForm.searchMode=Search mode
form.searchPlayer.fuzzySearch=Fuzzy Search
form.searchPlayer.preciseSearch=Precise Search
form.notFound.title=No match found
form.notFound.content=No match for %s was found.
form.notFound.returnSearch=Return to the search menu
form.returnMainForm=Return to the main menu
form.checkPlayer.title=Check Player Inventory
form.checkPlayer.content=You are looking for player %s's backpack.\nPlease select the mode of operation.
form.checkPlayer.copyInventory=Copy player inventory
form.checkPlayer.writeInventory=Write player inventory
form.checkPlayer.deleteData=Delete player data
form.invalidInput.title=Invalid Input
form.invalidInput.content=The player name entered cannot be empty!
form.invalidInput.returnSearch=Search again
command.error.console=This command can only be executed by the player
command.inventorycheck.desc=Check player inventory.
checkPlayer.copyInventory.success=Successfully copied player %s's inventory to yours!
checkPlayer.copyInventory.failed=It is not possible to copy player %s's backpack to yours! \nPlayer %s doesn't have any data!
form.confirmWrite.title=Confirm Action
form.confirmWrite.content=Are you sure you want to cover player %s's backpack with your backpack? \n\nAttention! \nThis operation is irreversible!
form.confirmAction=Confirm
form.cancelAction=Cancel
checkPlayer.writeInventory.success=Successfully overwrote player %s's backpack!
checkPlayer.writeInventory.failed=Cannot cover player %s's backpack! nPlayer %s doesn't have any data!
form.confirmDelete.title=Confirm Delete Data
form.confirmDelete.content=Are you sure you want to delete all of player %s's data? \nThis contains all the player's data in the save! \nIt's not just a backpack! \n\nAttention! nThis operation is irreversible! \nPlease proceed with caution
checkPlayer.deleteNbt.success=Successfully deleted all of player %s's data!
form.deleteFailed.title=Deletion failed
form.deleteFailed.content=Players %s online! You can't delete all of your players' data! \n\nIf you want to delete all player data, please kick the player out of the game before you do it!
form.deleteFailed.returnCheck=Return to the check menu
checkOnline.empty=You are online alone on the whole server, and you are still checking online players here? \nWhy don't you go and recruit people?
checkAll.empty=You've played the entire archive alone, and you're still playing here to check the bag? \nWhy don't you go and recruit people?
resumeInventory.success=Your backpack has been resumed!
resumeInventory.failed=Unable to resume your backpack, no data was found on your backpack!
error.protocolMismatch.info=You are running on an unsupport protocol version! This may result in crash!
error.protocolMismatch.version=Support protocol %1$s, current protocol %2$s.
)";
std::string defaultLanguage_zh_CN = R"(
form.main.title=
form.main.content=
form.main.checkOnline=线
form.main.checkAll=
form.main.searchPlayer=
form.main.resumeInventory=
form.checkList.title=
form.checkList.content=
form.searchPlayer.title=
form.searchPlayer.description=
form.searchPlayer.input=
form.searchPlayer.inputName=
form.searchForm.searchMode=
form.searchPlayer.fuzzySearch=
form.searchPlayer.preciseSearch=
form.notFound.title=
form.notFound.content= %s
form.notFound.returnSearch=
form.returnMainForm=
form.checkPlayer.title=
form.checkPlayer.content= %s \n请选择操作模式
form.checkPlayer.copyInventory=
form.checkPlayer.writeInventory=
form.checkPlayer.deleteData=
form.invalidInput.title=
form.invalidInput.content=
form.invalidInput.returnSearch=
command.error.console=
command.inventorycheck.desc=
checkPlayer.copyInventory.success= %s
checkPlayer.copyInventory.failed= %s \n玩家 %s
form.confirmWrite.title=
form.confirmWrite.content= %s \n\n注意\n此操作不可逆
form.confirmAction=
form.cancelAction=
checkPlayer.writeInventory.success= %s
checkPlayer.writeInventory.failed= %s \n玩家 %s
form.confirmDelete.title=
form.confirmDelete.content= %s \n这包含玩家在存档的全部数据\n不仅仅是背包\n\n注意\n此操作不可逆\n请谨慎操作
checkPlayer.deleteNbt.success= %s
form.deleteFailed.title=
form.deleteFailed.content= %s 线\n\n如需删除全部玩家数据
form.deleteFailed.returnCheck=
checkOnline.empty=线线\n还不快去招人
checkAll.empty=\n还不快去招人
resumeInventory.success=
resumeInventory.failed=
error.protocolMismatch.info=
error.protocolMismatch.version= %1$s %2$s
)";