-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
英語メッセージファイルを追加し、デフォルトの言語を en にする #72
Conversation
bundle/src/main/resources/en.yml
Outdated
deposit: | ||
success: "Deposited {0}x{1} (Now {2})" | ||
all-success: "Deposited {0} items in your inventory that can be deposited." | ||
is-air: "You don't have no item in your main hand." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You dont have (any) item
You have no item
bundle/src/main/resources/en.yml
Outdated
all-success: "Deposited {0} items in your inventory that can be deposited." | ||
is-air: "You don't have no item in your main hand." | ||
item-not-registered: "The item in your main hand is not registered in Box." | ||
not-deposited: "The specified item was not found in your inventory." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
has not been found?
bundle/src/main/resources/en.yml
Outdated
is-air: "You don't have no item in your main hand." | ||
item-not-registered: "The item in your main hand is not registered in Box." | ||
not-deposited: "The specified item was not found in your inventory." | ||
not-found: "No items could be deposited in the inventory." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「inventoryに預けられるアイテムはありませんでした」
本当に?
bundle/src/main/resources/en.yml
Outdated
inventory-is-full: "There is not space in your inventory." | ||
help: | ||
command-line: "/box withdraw <item> [amount]" | ||
description: "Withdraw item" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
depositのほうにはspecifiedがある
bundle/src/main/resources/en.yml
Outdated
command-line: "/box withdraw <item> [amount]" | ||
description: "Withdraw item" | ||
iteminfo: | ||
is-air: "You don't have no item in your main hand." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont have no
bundle/src/main/resources/en.yml
Outdated
description: "Register item in main hand to Box" | ||
reload: | ||
start: "Reloading Box..." | ||
finish: "Reloading Box is complete." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed?
Box is reloaded
bundle/src/main/resources/en.yml
Outdated
target: "{0} took {1}x{2} (Now {3})." | ||
help: | ||
command-line: "/boxadmin take <player> <item name> <amount>" | ||
description: "Decrease stocks" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stock
bundle/src/main/resources/en.yml
Outdated
bulk: "Bulk ingredient change" | ||
each: "Partial ingredient change" | ||
menus: | ||
craft: "Crafting of {0}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Craftで良い説
したも同じ
bundle/src/main/resources/en.yml
Outdated
customstick: | ||
success: "The item in your hand can now be used as Box Stick." | ||
already: "The item in your hand can already be used as Box Stick." | ||
is-air: "You don't have no item in your main hand." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont have no
bundle/src/main/resources/en.yml
Outdated
load-on-join: "Failed to load the stock data. Please contact the administrator." | ||
save: "Failed to save the stock data. Please contact the administrator." | ||
command: | ||
only-player: "This command only execute by the player in game." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hibun
9c337d7
to
48bfadd
Compare
48bfadd
to
88872f5
Compare
closes #66
英語メッセージファイルを追加するとともに、デフォルトの言語を
en
(Locale.ENGLISH
) にする。いくつかの日本語メッセージの改善やメッセージキーの変更も含まれる。