File tree Expand file tree Collapse file tree
java/the/bytecode/club/bytecodeviewer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313import the .bytecode .club .bytecodeviewer .Configuration ;
1414import the .bytecode .club .bytecodeviewer .gui .components .JFrameConsole ;
1515import the .bytecode .club .bytecodeviewer .resources .IconResources ;
16+ import the .bytecode .club .bytecodeviewer .translation .TranslatedStrings ;
1617
1718import static the .bytecode .club .bytecodeviewer .Constants .*;
1819
@@ -123,8 +124,8 @@ public static String buildErrorLogHeader(String author)
123124 {
124125 String fatJar = FAT_JAR ? " [Fat Jar]" : "" ;
125126
126- return "Please send this error log to " + author +
127- "\n If you hold appropriate legal rights to the relevant class/jar/apk file please include that as well." +
127+ return TranslatedStrings . PLEASE_SEND_THIS_ERROR_LOG_TO . toString () + " " + author +
128+ "\n " + TranslatedStrings . PLEASE_SEND_RESOURCES . toString () +
128129 "\n Bytecode Viewer Version: " + VERSION + fatJar +
129130 ", OS: " + System .getProperty ("os.name" ) +
130131 ", Java: " + System .getProperty ("java.version" );
Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ public enum TranslatedStrings
7575 PLUGIN_CONSOLE_TITLE ,
7676 CLOSE_ALL_BUT_THIS ,
7777 CLOSE_TAB ,
78+ PLEASE_SEND_THIS_ERROR_LOG_TO ,
79+ PLEASE_SEND_RESOURCES ,
7880
7981
8082 YES ,
Original file line number Diff line number Diff line change 254254 "PLUGIN_CONSOLE_TITLE" : " {PRODUCT_NAME} - Plugin Console" ,
255255 "CLOSE_ALL_BUT_THIS" : " Close All But This" ,
256256 "CLOSE_TAB" : " Close Tab" ,
257+ "PLEASE_SEND_THIS_ERROR_LOG_TO" : " Please send this error log to" ,
258+ "PLEASE_SEND_RESOURCES" : " If you hold appropriate legal rights to the relevant class/jar/apk file please include that as well." ,
257259
258260
259261 "FILES" : " Files" ,
You can’t perform that action at this time.
0 commit comments