Skip to content

Commit 9b4cdaa

Browse files
author
TheProgramSrc
committed
Change Log:
• Improvements • Bug Fixes
1 parent ba7c31a commit 9b4cdaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>xyz.theprogramsrc</groupId>
88
<artifactId>SuperCoreAPI</artifactId>
9-
<version>3.6.1_BETA1</version>
9+
<version>3.6.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SuperCoreAPI</name>

src/main/java/xyz/theprogramsrc/supercoreapi/global/translations/TranslationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void registerTranslation(Class<? extends TranslationPack> clazz){
4545
}
4646
translations.forEach(t-> translationsMap.put(t.getId(), t.getValue()));
4747
file.createNewFile();
48-
String[] comments = {"# Default translation " + pack.getLanguage().toString(),"# If you want to edit the translations copy this file and rename it", "# The file name format is 'language_COUNTRY.lang'","# Also you can search about Java Locales", "#", "# If you're translating this file, remember to not translate placeholders or keys!"};
48+
String[] comments = {"# Default translation " + pack.getLanguage().toString(),"# If you want to edit the translations copy this file and rename it", "# The file name format is 'language_COUNTRY.lang'","# Also you can search about Java Locales", "#", "# If you're translating this file, remember to not translate placeholders nor keys!"};
4949
String[] translationsArray = translationsMap.entrySet().stream().map(e-> e.getKey() + "=" + e.getValue()).toArray(String[]::new);
5050
List<String> lines = new ArrayList<>();
5151
lines.addAll(Utils.toList(comments));

0 commit comments

Comments
 (0)