Skip to content

Commit

Permalink
Fix Incorrect Langs
Browse files Browse the repository at this point in the history
  • Loading branch information
maximuslotro committed Apr 13, 2022
1 parent 4b5f740 commit 00d4195
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,8 @@ public static void loadTextFile(File file) {
used=true;
}
if (used==false){
ChatBuilder.chatClient(ChatBuilder.createcolor(I18n.format("signstory.command.text.set.fail"), EnumChatFormatting.RED));
ChatBuilder.chatClient(ChatBuilder.createcolor(new String(I18n.format("signstory.command.text.set.fail")+" [&,%,$,@,{, and }]"), EnumChatFormatting.RED));
ChatBuilder.chatClient(ChatBuilder.createcolor(I18n.format("signstory.command.text.set.fail.char.after"), EnumChatFormatting.RED));
ChatBuilder.chatClient(ChatBuilder.createcolor(new String(I18n.format("signstory.command.text.set.fail.char")+" [&,%,$,@,{, and }]"), EnumChatFormatting.RED));
ChatBuilder.chatClient(ChatBuilder.createcolor(I18n.format("signstory.command.text.set.fail.char.after"), EnumChatFormatting.AQUA));
}
}
private static void setStuff() {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/assets/signpic/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ signstory.command.text.notloaded=No Text Loaded
signstory.command.text.loadcommand=Use (/SignStory load_text) to Load Text First
signstory.command.text.set.success=Text Loaded Successfully!
signstory.command.text.set.fail=Text Failed to Load
signstory.command.text.set.fail.char=Failed to text file, as it contains all of the following characters:
signstory.command.text.set.fail.char.after=Please remove one of these characters from your text file and then try again to load the file.
signstory.command.text.set.fail.char=Failed to load the text file, as it contains all of the following characters:
signstory.command.text.set.fail.char.after=Please remove one of these characters from your text file, then try again to load the file
signstory.command.toggle.info=Use (/SignStory toggle_functionality) to Enable it
signstory.command.select.page.error=Page Number is out of bounds! Page Not Set
signstory.command.select.info=Use (/SignStory select_page #) to Select a Page
Expand Down

0 comments on commit 00d4195

Please sign in to comment.