diff --git a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/Lang.java b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/Lang.java index 7a911b3..2b5cf03 100644 --- a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/Lang.java +++ b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/Lang.java @@ -21,7 +21,7 @@ public class Lang { public String Error_Console; public String Error_Sound; public String error_null_group; - private CustomJoinAndQuitMessages plugin; + private final CustomJoinAndQuitMessages plugin; private FileConfiguration locale = null; private File localeFile = null; private final Locale localeObject; @@ -32,19 +32,19 @@ public Lang(final CustomJoinAndQuitMessages plugin, final String localeName, fin this.plugin = plugin; this.index = index; this.localeName = localeName; - getlang(localeName); + getLang(localeName); loadLocale(); localeObject = new Locale(localeName.substring(0, 2), localeName.substring(3, 5)); } - public FileConfiguration getlang(final String localeName) { + public FileConfiguration getLang(final String localeName) { if (this.locale == null) { - reloadlang(localeName); + reloadLang(localeName); } return locale; } - public void reloadlang(final String localeName) { + public void reloadLang(final String localeName) { final File localeDir = new File(plugin.getDataFolder() + File.separator + "lang"); if (!localeDir.exists()) { @@ -103,4 +103,5 @@ public String getCountryName() { public int getIndex() { return index; } + } diff --git a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileLister.java b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileLister.java index cba1ed1..2fb39f9 100644 --- a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileLister.java +++ b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileLister.java @@ -29,7 +29,7 @@ public List list() throws IOException { Logger.debug("Path: " + langDir); if(Files.exists(langDir)) { - Pattern langFilePattern = Pattern.compile("^[a-z]{2}(-[A-Z]{2})?\\.yml$"); + Pattern langFilePattern = Pattern.compile("^[a-z]{2}(_[A-Z]{2})?\\.yml$"); try (DirectoryStream stream = Files.newDirectoryStream(langDir)) { @@ -77,6 +77,12 @@ public List list() throws IOException { } } } + Logger.debug("List of available languages"); + for (String s : result){ + Logger.debug(" * " + s); + } + Logger.debug("============================"); + return result; } diff --git a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileManager.java b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileManager.java index 8434bd4..04c8fd2 100644 --- a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileManager.java +++ b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/FileManager.java @@ -8,7 +8,7 @@ public class FileManager { - private CustomJoinAndQuitMessages plugin; + private final CustomJoinAndQuitMessages plugin; public FileManager(CustomJoinAndQuitMessages plugin) { super(); @@ -26,8 +26,8 @@ public void createVoidFolder(String name) { } } - public void createFolderAndFile(String namefolder, String namefile) { - File folder = new File(getDataFolder(), namefolder); + public void createFolderAndFile(String nameFolder, String nameFile) { + File folder = new File(getDataFolder(), nameFolder); if (!folder.exists()) { try { folder.mkdir(); @@ -36,7 +36,7 @@ public void createFolderAndFile(String namefolder, String namefile) { } } - File file = new File(folder, namefile); + File file = new File(folder, nameFile); if (!file.exists()) { try { file.createNewFile(); diff --git a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/PreConfigLoader.java b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/PreConfigLoader.java index d91289e..331f05a 100644 --- a/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/PreConfigLoader.java +++ b/CustomJoinAndQuitMessagesOld/src/main/java/jss/customjoinandquitmessages/config/utils/PreConfigLoader.java @@ -95,7 +95,7 @@ public boolean loadLangs() { plugin.getLogger().severe("Could not add locales!"); } if (!availableLocales.containsKey(Settings.defaultLanguage)) { - Logger.warning(Util.getPrefix(true) + "&eLoad File: " + Settings.defaultLanguage + ".yml' not found in /locale folder. Using /locale/en-US.yml"); + Logger.warning(Util.getPrefix(true) + "&eLoad File: " + Settings.defaultLanguage + ".yml' not found in /lang/ folder. Using /lang/en-US.yml"); Settings.defaultLanguage = "en-US"; availableLocales.put(Settings.defaultLanguage, new Lang(plugin, Settings.defaultLanguage, 0)); } diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/de_DE.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/de_DE.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/de_DE.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/en_US.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/en_US.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/en_US.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/es_ES.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/es_ES.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/es_ES.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/fr_FR.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/fr_FR.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/fr_FR.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/de-DE.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/de-DE.yml deleted file mode 100644 index ac7fced..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/de-DE.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7Dies sind die Varianten des Haupt-Plugin-Befehls' - - '&b/Cjm &ehelp &7zeige die gleiche Nachricht' - - '&b/Cjm &ereload &7Laden Sie die Plugin-Dateien neu' - - '&b/Cjm &einfo &7zeigt Informationen zum Plugin an' - Help-Cmd: '&7Verwenden &b/Cjm &6help&7 f?r mehr Informationen' - Reload: '&aNachladen abgeschlossen' - Error-Cmd: '&cUnbekanntes Argument' - No-Permission: '&cSie haben keine Erlaubnis dazu!' - No-Permission-Label: 'Bitten Sie den Serverbesitzer oder einen Administrator um Hilfe, um weitere Informationen zu erhalten' - Sound-Error: 'Der Sound geh?rt nicht zur aktuellen Version oder der Name ist falsch' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/en-US.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/en-US.yml deleted file mode 100644 index e2ac6a4..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/en-US.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' \ No newline at end of file diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/es-ES.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/es-ES.yml deleted file mode 100644 index 6dd4a71..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/es-ES.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7estas son las variantes del comando principal del plugin' - - '&b/Cjm &ehelp &7muestra el mensaje este mismo mensaje' - - '&b/Cjm &ereload &7Recarga los archivos de plugin' - - '&b/Cjm &einfo &7muestra informacion importante sobre el plugin' - Help-Cmd: '&7Usa &b/Cjm &6help &7para mas ayuda' - Reload: '&aRecarga Completada' - Error-Cmd: '&cArgumento desconosido' - No-Permission: '&cNo tienes permiso para hacer eso!' - No-Permission-Label: '&bSolicite ayuda al propietario del servidor o al administrador para obtener mas informacion..' - Sound-Error: '&cEl sonido no pertenece a la version actual o el nombre es incorrecto' - DisplayManager.Error: '&c|!| &cPor favor, establezca la opción para ejecutar la función' - DisplayManager.Sound.Usage: '&7Por favor, seleccione una de estas dos opciones para ejecutar la función &e' - Groups.NotFoundGroup: '&cNo se ha podido encontrar el grupo' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/fr-FR.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/fr-FR.yml deleted file mode 100644 index 64adf91..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/fr-FR.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7ce sont les variantes de la commande principale du plugin' - - '&b/Cjm &ehelp &7afficher ce meme message' - - '&b/Cjm &ereload &7recharger les fichiers du plugin' - - '&b/Cjm &einfo &7affiche des informations sur le plugin' - Help-Cmd: '&7Utilisation &b/Cjm &6help &7pour plus d''informations' - Reload: '&aRecharger terminé' - Error-Cmd: '&cArgument inconnu' - No-Permission: '&cVous n''avez pas la permission de faire ?a!' - No-Permission-Label: 'Demandez de l''aide au propriétaire du serveur ou à un administrateur pour plus d''informations' - Sound-Error: 'le son n''appartient pas ? la version actuelle ou le nom est erron?' - DisplayManager.Error: '&c|!| &cVeuillez définir l''option d''exécution' - DisplayManager.Sound.Usage: '&7Veuillez sélectionner l''une de ces deux options pour exécuter la fonction &e' - Groups.NotFoundGroup: '&cLe groupe est introuvable' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/ru-RU.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/ru-RU.yml deleted file mode 100644 index a34e9bc..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/ru-RU.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7это варианты основной команды плагина' - - '&b/Cjm &ehelp &7показать это же сообщение' - - '&b/Cjm &ereload &7перезагрузить файлы плагина' - - '&b/Cjm &einfo &7показывает информацию о плагине' - Help-Cmd: '&7Используйте &b/Cjm &6help&7 для более подробной информации' - Reload: '&aПерезагрузка прошла успешно' - Error-Cmd: '&cНеизвестный аргумент' - No-Permission: '&cУ вас недостаточно прав для соверщения этого действия!' - No-Permission-Label: 'Обратитесь к владельцу сервера или администратору за помощью для получения дополнительной информации.' - Sound-Error: 'звук отсутствует в текущей версии или введено неверное название' - DisplayManager.Error: '&c|!| &cПожалуйста, установите опции для исполнения выбранного' - DisplayManager.Sound.Usage: '&7Пожалуйста, выберите одну из двух опций для выполнения функции &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-CN.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-CN.yml deleted file mode 100644 index 8922d81..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-CN.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7这些是主要插件命令的变体' - - '&b/Cjm &ehelp &7显示相同的消息' - - '&b/Cjm &ereload &7重新加载插件文件' - - '&b/Cjm &einfo &7显示有关插件的信息' - Help-Cmd: '&7用 &b/Cjm &6help&7 想要查询更多的信息' - Reload: '&a重新加载完成' - Error-Cmd: '&c未知参数' - No-Permission: '&c您无权执行此操作!' - No-Permission-Label: '向服务器所有者或管理员寻求帮助以获取更多信息' - Sound-Error: '声音不属于当前版本或名称错误' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-TW.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-TW.yml deleted file mode 100644 index 711549b..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/lang/zh-TW.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7這些是主插件命令的變體' - - '&b/Cjm &ehelp &7顯示相同的消息' - - '&b/Cjm &ereload &7重新加載插件文件' - - '&b/Cjm &einfo &7顯示有關插件的信息' - Help-Cmd: '&7Use &b/Cjm &6help&7想要查詢更多的信息' - Reload: '&a重新加載完成' - Error-Cmd: '&c未知參數' - No-Permission: '&c您無權執行此操作' - No-Permission-Label: '向服務器所有者或管理員尋求幫助以獲取更多信息' - Sound-Error: '聲音不屬於當前版本名稱錯誤' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/ru_RU.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/ru_RU.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/ru_RU.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/zh_CN.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/zh_CN.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/zh_CN.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found' diff --git a/CustomJoinAndQuitMessagesOld/src/main/resources/zh_TW.yml b/CustomJoinAndQuitMessagesOld/src/main/resources/zh_TW.yml deleted file mode 100644 index 9a074c3..0000000 --- a/CustomJoinAndQuitMessagesOld/src/main/resources/zh_TW.yml +++ /dev/null @@ -1,16 +0,0 @@ -CustomJoinAndQuitMessage: - Prefix: '&e[&dCustomJoinAndQuitMessages&e]' - Help-Msg: - - '&b/CustomJoinAndQuitMessage &8| &9/Cjm &7these are the variants of the main plugin command' - - '&b/Cjm &ehelp &7show this same message' - - '&b/Cjm &ereload &7reload the plugin files' - - '&b/Cjm &einfo &7shows information about the plugin' - Help-Cmd: '&7Use &b/Cjm &6help&7 for more infomation' - Reload: '&aReload Completed' - Error-Cmd: '&cUnknown Argument' - No-Permission: '&cYou dont have permission to do that!' - No-Permission-Label: 'Ask the server owner or an administrator for help for more information.' - Sound-Error: 'the sound does not belong to the current version or the name is wrong' - DisplayManager.Error: '&c|!| &cPlease set de option for execute featured' - DisplayManager.Sound.Usage: '&7Please select one of these two options to execute the function &e' - Groups.NotFoundGroup: '&cThe group could not be found'