package net.t2code.opsecurity.config.language; public enum Language { soundNotFound("plugin.soundNotFound",null, "[prefix] Der Sound [sound] wurde nicht gefunden! Bitte überprüfe die Einstellungen.", "[prefix] The sound [sound] could not be found! Please check your settings."), noPermission("plugin.NoPermission",null, "Keine Berechtigung!", "No Permission!"), noPermissionForOpSec("plugin.NoPermission",null, "[prefix] Du hast keine Berechtigung für OPSecurity!", "[prefix] You do not have permission for OPSecurity!"), playerMustBeOnlineToOp("plugin.PlayerMustBeOnlineToOp",null, "[prefix] Der Spieler muss online sein, um OP zu erhalten!", "[prefix] Player must be online to get op!"), reloadStart("plugin.reload.start",null, "[prefix] Plugin wird neu geladen...", "[prefix] Plugin is reloaded..."), reloadEnd("plugin.reload.end",null, "[prefix] Plugin wurde erfolgreich neu geladen.", "[prefix] Plugin was successfully reloaded."), opWhitelistOpCommand("opWhitelist.opCommand",null, "[prefix] Der angegebene Spieler befindet sich nicht auf der OP_Whitelist!", "[prefix] The specified player is not on the OP_Whitelist!"), opWhitelistNotifyOnJoin("opWhitelist.notify.onJoin",null, "[prefix] Spieler Name: [player]
UUID: [uuid]'>[player] ist dem Server beigetreten, befindet sich aber nicht auf der OP_Whitelist!
", "[prefix] Player Name: [player]
UUID: [uuid]'>[player] is joined to the server but is not on the OP_Whitelist!
"), opWhitelistNotifyDeop("opWhitelist.notify.deop",null, "[prefix] Spieler Name: [player]
UUID: [uuid]'>[player] wurde OP entfernt da er nicht auf der Spielerliste steht!
", "[prefix] Player Name: [player]
UUID: [uuid]'>[player] was removed OP because he is not on the playerlist!
"), opWhitelistNotifyKick("opWhitelist.notify.kick",null, "[prefix] Spieler Name: [player]
UUID: [uuid]'>[player] wurde gekickt, da er nicht auf der OP_Whitelist steht!
", "[prefix] Player Name: [player]
UUID: [uuid]'>[player] was kicked because he is not on the OP_Whitelist!
"), opWhitelistDeop("opWhitelist.deop",null, "&4Dir wurde OP entfernt da du dazu keine Permission besitzt.", "&4You have been removed from OP because you do not have permission."), opWhitelistKick("opWhitelist.kick",null, "&4Du hast OP, bist dazu aber nicht berechtigt. Deswegen wurdest du gekickt!", "&4You have op but are not authorized to do so, that's why you were kicked!"), permissionWhitelistNotifyOnJoin("permissionWhitelist.notify.onJoin",null, "[prefix] Player Name: [player]
UUID: [uuid]'>[player] hat die Permission [perm] und ist dazu nicht berechtigt! Name: [player]
UUID: [uuid]'>[player] ist nicht in der Spielerliste!
", "[prefix] Player Name: [player]
UUID: [uuid]'>[player] has permission [perm] and is not authorized to do so! Name: [player]
UUID: [uuid]'>[player] is not on the Player list!
"), permissionWhitelistNotifyKick("permissionWhitelist.notify.kick",null, "[prefix] Spieler Name: [player]
UUID: [uuid]'>[player] hat die Permission [perm] und ist dazu nicht berechtigt! Daher wurde er gekickt! Name: [player]
UUID: [uuid]'>[player] ist nicht in der Spielerliste!
", "[prefix] Player Name: [player]
UUID: [uuid]'>[player] has permission [perm] and is not authorized to do so! Therefore he was kicked! Name: [player]
UUID: [uuid]'>[player] is not on the Player list!
"), permissionWhitelistKick("permissionWhitelist.kick",null, "&4Du wurdest gekickt, da du Permissions besitzt, für die du keine Berechtigung besitzt!", "&4You were kicked because you have permissions to which you do not have permission!"), exactKickReason("console.exactKickReason", null, "[prefix] Genauer Grund: [reason]", "[prefix] Exact reason: [reason]"); public String path; public String value; public String german; public String english; Language(String path,String value, String german,String english) { this.path = path; this.value=value; this.german = german; this.english = english; } }