mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-27 02:21:30 +01:00
Locale information:
- Added lang code for Japanese and Simplified Chinese (JA & CN) - Removed untranslated locale files and codes: CZ, GA, NL, NO, PL, PT - Added a message to enable about the used locale
This commit is contained in:
parent
eea8294bca
commit
dea1aa3f4f
@ -23,23 +23,21 @@ package com.djrapitops.plan.system.locale;
|
||||
*/
|
||||
public enum LangCode {
|
||||
|
||||
CUSTOM("Custom"),
|
||||
EN("English"),
|
||||
FI("Finnish"),
|
||||
DE("Deutch"),
|
||||
FR("French"),
|
||||
GA("Irish (Gaeilge)"),
|
||||
CS("Czech"),
|
||||
PT("Portugese"),
|
||||
NL("Dutch"),
|
||||
NO("Norwegian"),
|
||||
PL("Polish"),
|
||||
IT("Italian");
|
||||
CUSTOM("Custom", ""),
|
||||
EN("English", "Rsl1122"),
|
||||
CN("Simplified Chinese", "f0rb1d (佛壁灯) & qsefthuopq"),
|
||||
DE("Deutch", "Eyremba & fuzzlemann & Morsmorse"),
|
||||
FI("Finnish", "Rsl1122"),
|
||||
FR("French", "- (Outdated, using English)"),
|
||||
JA("Japanese", "yukieji"),
|
||||
IT("Italian", "- (Outdated, using English)");
|
||||
|
||||
private final String name;
|
||||
private final String authors;
|
||||
|
||||
LangCode(String name) {
|
||||
LangCode(String name, String authors) {
|
||||
this.name = name;
|
||||
this.authors = authors;
|
||||
}
|
||||
|
||||
public static LangCode fromString(String code) {
|
||||
@ -54,6 +52,10 @@ public enum LangCode {
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getAuthors() {
|
||||
return authors;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return "locale_" + name() + ".txt";
|
||||
}
|
||||
|
@ -26,7 +26,6 @@ import java.io.Serializable;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@ -41,12 +40,26 @@ public class Locale extends HashMap<Lang, Message> {
|
||||
return forLangCode(LangCode.fromString(code), files);
|
||||
}
|
||||
|
||||
private LangCode langCode;
|
||||
|
||||
public Locale() {
|
||||
this(LangCode.EN);
|
||||
}
|
||||
|
||||
public Locale(LangCode langCode) {
|
||||
this.langCode = langCode;
|
||||
}
|
||||
|
||||
public static Locale forLangCode(LangCode code, PlanFiles files) throws IOException {
|
||||
return new LocaleFileReader(files.getResourceFromJar("locale/" + code.getFileName())).load();
|
||||
return new LocaleFileReader(files.getResourceFromJar("locale/" + code.getFileName())).load(code);
|
||||
}
|
||||
|
||||
public static Locale fromFile(File file) throws IOException {
|
||||
return new LocaleFileReader(new FileResource(file.getName(), file)).load();
|
||||
return new LocaleFileReader(new FileResource(file.getName(), file)).load(LangCode.CUSTOM);
|
||||
}
|
||||
|
||||
public LangCode getLangCode() {
|
||||
return langCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -75,8 +88,9 @@ public class Locale extends HashMap<Lang, Message> {
|
||||
return get(key).toArray(values);
|
||||
}
|
||||
|
||||
public void loadFromAnotherLocale(Map<Lang, Message> locale) {
|
||||
public void loadFromAnotherLocale(Locale locale) {
|
||||
putAll(locale);
|
||||
this.langCode = locale.langCode;
|
||||
}
|
||||
|
||||
public String replaceMatchingLanguage(String from) {
|
||||
|
@ -36,8 +36,8 @@ public class LocaleFileReader {
|
||||
lines = resource.asLines();
|
||||
}
|
||||
|
||||
public Locale load() {
|
||||
Locale locale = new Locale();
|
||||
public Locale load(LangCode code) {
|
||||
Locale locale = new Locale(code);
|
||||
|
||||
Map<String, Lang> identifiers = LocaleSystem.getIdentifiers();
|
||||
lines.forEach(line -> {
|
||||
|
@ -106,6 +106,9 @@ public class LocaleSystem implements SubSystem {
|
||||
loaded = loadSettingLocale();
|
||||
}
|
||||
loaded.ifPresent(locale::loadFromAnotherLocale);
|
||||
|
||||
LangCode langCode = locale.getLangCode();
|
||||
logger.info("Locale: '" + langCode.getName() + "' by " + langCode.getAuthors());
|
||||
}
|
||||
|
||||
private void writeNewDefaultLocale(File localeFile) {
|
||||
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
@ -1,336 +0,0 @@
|
||||
Cmd - Click Me || Click me
|
||||
Cmd - Link || §2Link: §f
|
||||
Cmd Disable - Disabled || §aPlan systems are now disabled. You can still use /planbungee reload to restart the plugin.
|
||||
Cmd FAIL - Invalid Username || §cUser does not have an UUID.
|
||||
Cmd FAIL - No Feature || §eDefine a feature to disable! (currently supports ${0})
|
||||
Cmd FAIL - No Permission || §cYou do not have the required permission.
|
||||
Cmd FAIL - Require only one Argument || §cSingle Argument required ${1}
|
||||
Cmd FAIL - Requires Arguments || §cArguments required (${0}) ${1}
|
||||
Cmd FAIL - Unknown Username || §cUser has not been seen on this server
|
||||
Cmd FAIL - WebUser does not exists || §cUser does not exists!
|
||||
Cmd FAIL - WebUser exists || §cUser already exists!
|
||||
Cmd Header - Analysis || > §2Analysis Results
|
||||
Cmd Header - Info || > §2Player Analytics
|
||||
Cmd Header - Inspect || > §2Player: §f${0}
|
||||
Cmd Header - Network || > §2Network Page
|
||||
Cmd Header - Players || > §2Players
|
||||
Cmd Header - Search || > §2${0} Results for §f${1}§2:
|
||||
Cmd Header - Servers || > §2Servers
|
||||
Cmd Header - Web Users || > §2${0} Web Users
|
||||
Cmd Info - Bungee Connection || §2Connected to Bungee: §f${0}
|
||||
Cmd Info - Database || §2Active Database: §f${0}
|
||||
Cmd Info - Reload Complete || §aReload Complete
|
||||
Cmd Info - Reload Failed || §cSomething went wrong during reload of the plugin, a restart is recommended.
|
||||
Cmd Info - Update || §2Update Available: §f${0}
|
||||
Cmd Info - Version || §2Version: §f${0}
|
||||
Cmd Notify - No WebUser || You might not have a web user, use /plan register <password>
|
||||
Cmd Notify - WebUser register || Registered new user: '${0}' Perm level: ${1}
|
||||
Cmd Qinspect - Activity Index || §2Activity Index: §f${0} | ${1}
|
||||
Cmd Qinspect - Deaths || §2Deaths: §f${0}
|
||||
Cmd Qinspect - Geolocation || §2Logged in from: §f${0}
|
||||
Cmd Qinspect - Last Seen || §2Last Seen: §f${0}
|
||||
Cmd Qinspect - Longest Session || §2Longest Session: §f${0}
|
||||
Cmd Qinspect - Mob Kills || §2Mob Kills: §f${0}
|
||||
Cmd Qinspect - Player Kills || §2Player Kills: §f${0}
|
||||
Cmd Qinspect - Playtime || §2Playtime: §f${0}
|
||||
Cmd Qinspect - Registered || §2Registered: §f${0}
|
||||
Cmd Qinspect - Times Kicked || §2Times Kicked: §f${0}
|
||||
Cmd Setup - Allowed || §aSet-up is now Allowed
|
||||
Cmd Setup - Bad Request || §eConnection succeeded, but Receiving server was not a Bungee server. Use Bungee address instead.
|
||||
Cmd Setup - Disallowed || §cSet-up is now Forbidden
|
||||
Cmd Setup - Forbidden || §eConnection succeeded, but Bungee has set-up mode disabled - use '/planbungee setup' to enable it.
|
||||
Cmd Setup - Gateway Error || §eConnection succeeded, but Bungee failed to connect to this server (Did current web server restart?). Use /plan m con & /planbungee con to debug.
|
||||
Cmd Setup - Generic Fail || §eConnection failed: ${0}
|
||||
Cmd Setup - Internal Error || §eConnection succeeded. ${0}, check possible ErrorLog on receiving server's debug page.
|
||||
Cmd Setup - Success || §aConnection successful, Plan may restart in a few seconds..
|
||||
Cmd Setup - Unauthorized || §eConnection succeeded, but Receiving server didn't authorize this server. Contact Discord for support
|
||||
Cmd Setup - Url mistake || §cMake sure you're using the full address (Starts with http:// or https://) - Check Bungee enable log for the full address.
|
||||
Cmd Setup - WebServer not Enabled || §cWebServer is not enabled on this server! Make sure it enables on boot!
|
||||
Cmd SUCCESS - Feature disabled || §aDisabled '${0}' temporarily until next plugin reload.
|
||||
Cmd SUCCESS - WebUser register || §aAdded a new user (${0}) successfully!
|
||||
Cmd Update - Cancel Success || §aCancel operation performed.
|
||||
Cmd Update - Cancelled || §cUpdate cancelled.
|
||||
Cmd Update - Change log || Change Log v${0}:
|
||||
Cmd Update - Fail Cacnel || §cUpdate failed on a server, cancelling update on all servers..
|
||||
Cmd Update - Fail Force Notify || §e${0} failed to update, -force specified, continuing update.
|
||||
Cmd Update - Fail Not Online || §cNot all servers were online or accessible, you can still update available servers using /plan update -u -force
|
||||
Cmd Update - Notify Cancel || §aYou can cancel the update on servers that haven't rebooted yet with /plan update cancel.
|
||||
Cmd Update - Online Check || Checking that all servers are online..
|
||||
Cmd Update - Scheduled || §a${0} scheduled for update.
|
||||
Cmd Update - Url mismatch || §cVersion download url did not start with ${0} and might not be trusted. You can download this version manually here (Direct download):
|
||||
Cmd Web - Permission Levels || >\§70: Access all pages\§71: Access '/players' and all player pages\§72: Access player page with the same username as the webuser\§73+: No permissions
|
||||
Command Help - /plan analyze || View the Server Page
|
||||
Command Help - /plan dev || Development mode command
|
||||
Command Help - /plan help || Show command list
|
||||
Command Help - /plan info || Check the version of Plan
|
||||
Command Help - /plan inspect || View a Player Page
|
||||
Command Help - /plan manage || Manage Plan Database
|
||||
Command Help - /plan manage backup || Backup a Database
|
||||
Command Help - /plan manage clear || Clear a Database
|
||||
Command Help - /plan manage con || Debug Server-Bungee connections
|
||||
Command Help - /plan manage disable || Disable a feature temporarily
|
||||
Command Help - /plan manage hotswap || Change Database quickly
|
||||
Command Help - /plan manage import || Import data from elsewhere
|
||||
Command Help - /plan manage move || Move data between Databases
|
||||
Command Help - /plan manage remove || Remove Player's data
|
||||
Command Help - /plan manage restore || Restore a previous Backup
|
||||
Command Help - /plan manage setup || Set-up Server-Bungee connection
|
||||
Command Help - /plan network || View the Network Page
|
||||
Command Help - /plan players || View the Players Page
|
||||
Command Help - /plan qinspect || View Player info in game
|
||||
Command Help - /plan register || Register a Web User
|
||||
Command Help - /plan reload || Restart Plan
|
||||
Command Help - /plan search || Search for a player name
|
||||
Command Help - /plan servers || List servers in Database
|
||||
Command Help - /plan update || Get change log link or update plugin
|
||||
Command Help - /plan web check || Inspect a Web User
|
||||
Command Help - /plan web delete || Delete a Web User
|
||||
Command Help - /plan web level || Information about permission levels
|
||||
Command Help - /plan web list || List Web Users
|
||||
Command Help - /plan webuser || Manage Web Users
|
||||
Command Help - /planbungee con || Debug Bungee-Server connections
|
||||
Command Help - /planbungee disable || Disable the plugin temporarily
|
||||
Command Help - /planbungee setup || Toggle set-up mode
|
||||
Database - Apply Patch || Applying Patch: ${0}..
|
||||
Database - Patches Applied || All database patches applied successfully.
|
||||
Database - Patches Applied Already || All database patches already applied.
|
||||
Database MySQL - Launch Options Error || Launch Options were faulty, using default (${0})
|
||||
Database Notify - Clean || Removed data of ${0} players.
|
||||
Database Notify - SQLite No WAL || SQLite WAL mode not supported on this server version, using default. This may or may not affect performance.
|
||||
Disable || Player Analytics Disabled.
|
||||
Disable - Processing || Processing critical unprocessed tasks. (${0})
|
||||
Disable - Processing Complete || Processing complete.
|
||||
Disable - WebServer || Webserver has been disabled.
|
||||
Enable || Player Analytics Enabled.
|
||||
Enable - Database || ${0}-database connection established.
|
||||
Enable - Notify Address Confirmation || Make sure that this address points to THIS Server: ${0}
|
||||
Enable - Notify Empty IP || IP in server.properties is empty & AlternativeIP is not in use. Incorrect links will be given!
|
||||
Enable - Notify Geolocations disabled || Geolocation gathering is not active. (Data.Geolocations: false)
|
||||
Enable - Notify Geolocations Internet Required || Plan Requires internet access on first run to download GeoLite2 Geolocation database.
|
||||
Enable - Notify Webserver disabled || WebServer was not initialized. (WebServer.DisableWebServer: true)
|
||||
Enable - WebServer || Webserver running on PORT ${0} (${1})
|
||||
Enable FAIL - Database || ${0}-Database Connection failed: ${1}
|
||||
Enable FAIL - Database Patch || Database Patching failed, plugin has to be disabled. Please report this issue
|
||||
Enable FAIL - GeoDB Write || Something went wrong saving the downloaded GeoLite2 Geolocation database
|
||||
Enable FAIL - WebServer (Bungee) || WebServer did not initialize!
|
||||
Enable FAIL - Wrong Database Type || ${0} is not a supported Database
|
||||
HTML - ACTIVITY_INDEX || Activity Index
|
||||
HTML - ALL || ALL
|
||||
HTML - ALL_TIME_PEAK || All Time Peak
|
||||
HTML - AVERAGE_PING || Average Ping
|
||||
HTML - AVG || AVG
|
||||
HTML - BANNED || Banned
|
||||
HTML - BEST_PING || Best Ping
|
||||
HTML - CALENDAR || CALENDAR
|
||||
HTML - CALENDAR_TEXT || Calendar
|
||||
HTML - CHUNKS || Chunks
|
||||
HTML - COMMAND || Command
|
||||
HTML - COMMNAND_USAGE || Command Usage
|
||||
HTML - CONNECTION_INFORMATION || Connection Information
|
||||
HTML - COUNTRY || Country
|
||||
HTML - CURRENT_PLAYERBASE || Current Playerbase
|
||||
HTML - DEATHS || Deaths
|
||||
HTML - ENTITIES || Entities
|
||||
HTML - ERROR || Authentication failed due to error
|
||||
HTML - FAVORITE_SERVER || Favorite Server
|
||||
HTML - GEOLOCATION || Geolocation
|
||||
HTML - GEOLOCATION_TEXT || Geolocation
|
||||
HTML - HEALTH_ESTIMATE || Health Estimate
|
||||
HTML - INDEX_ACTIVE || Active
|
||||
HTML - INDEX_INACTIVE || Inactive
|
||||
HTML - INDEX_IRREGULAR || Irregular
|
||||
HTML - INDEX_REGULAR || Regular
|
||||
HTML - INDEX_VERY_ACTIVE || Very Active
|
||||
HTML - IP_ADDRESS || IP-address
|
||||
HTML - KILLED || Killed
|
||||
HTML - KILLED_BY || Killed by
|
||||
HTML - LAST_24_HOURS || LAST 24 HOURS
|
||||
HTML - LAST_30_DAYS || LAST 30 DAYS
|
||||
HTML - LAST_30_DAYS_TEXT || Last 30 Days
|
||||
HTML - LAST_7_DAYS || LAST 7 DAYS
|
||||
HTML - LAST_CONNECTED || Last Connected
|
||||
HTML - LAST_PEAK || Last Peak
|
||||
HTML - LAST_SEEN || LAST SEEN
|
||||
HTML - LAST_SEEN_TEXT || Last Seen
|
||||
HTML - LOADED_CHUNKS || Loaded Chunks
|
||||
HTML - LOADED_ENTITIES || Loaded Entities
|
||||
HTML - LOCAL_MACHINE || Local Machine
|
||||
HTML - LONGEST || Longest
|
||||
HTML - LOW_TPS_SPIKES || Low TPS Spikes
|
||||
HTML - MOB_CAUSED_DEATHS || Mob caused Deaths
|
||||
HTML - MOB_KDR || Mob KDR
|
||||
HTML - MOB_KILLS || Mob Kills
|
||||
HTML - MOST_RECENT_SESSIONS || Most Recent Sessions
|
||||
HTML - NAME || Name
|
||||
HTML - NAV_COMMAND_USAGE || Command Usage
|
||||
HTML - NAV_GEOLOCATIONS || Geolocations
|
||||
HTML - NAV_INFORMATION || Information
|
||||
HTML - NAV_NETWORK_PLAYERS || Network Players
|
||||
HTML - NAV_ONLINE_ACTIVITY || Online Activity
|
||||
HTML - NAV_OVERVIEW || Overview
|
||||
HTML - NAV_PERFORMANCE || Performance
|
||||
HTML - NAV_PLAYERS || Players
|
||||
HTML - NAV_PLUGINS || Plugins
|
||||
HTML - NAV_SESSIONS || Sessions
|
||||
HTML - NAV_SEVER_HEALTH || Server Health
|
||||
HTML - NETWORK || Network
|
||||
HTML - NETWORK_INFORMATION || NETWORK INFORMATION
|
||||
HTML - NEW || NEW
|
||||
HTML - NEW_CALENDAR || New:
|
||||
HTML - NEW_PLAYERS_TEXT || New Players
|
||||
HTML - NEW_RETENTION || New Player Retention
|
||||
HTML - NEW_TEXT || New
|
||||
HTML - NICKNAME || Nickname
|
||||
HTML - NO_KILLS || No Kills
|
||||
HTML - NO_PLAYER_CAUSED_DEATHS || No Player caused Deaths
|
||||
HTML - OFFLINE || Offline
|
||||
HTML - ONLINE || Online
|
||||
HTML - ONLINE_ACTIVITY || ONLINE ACTIVITY
|
||||
HTML - OPERATOR || Operator
|
||||
HTML - OVERVIEW || OVERVIEW
|
||||
HTML - PER_DAY || / Day
|
||||
HTML - PLAYER_CAUSED_DEATHS || Player caused Deaths
|
||||
HTML - PLAYER_KILLS || Player Kills
|
||||
HTML - PLAYER_LIST || Player List
|
||||
HTML - PLAYERBASE_DEVELOPMENT || Playerbase Development
|
||||
HTML - PLAYERS || PLAYERS
|
||||
HTML - PLAYERS_ONLINE || PLAYERS ONLINE
|
||||
HTML - PLAYERS_ONLINE_TEXT || Players Online
|
||||
HTML - PLAYERS_TEXT || Players
|
||||
HTML - PLAYTIME || Playtime
|
||||
HTML - PLEASE_WAIT || Please wait...
|
||||
HTML - PREDICETED_RETENTION || Predicted Retention
|
||||
HTML - PUNCH_CARD || Punchcard
|
||||
HTML - PUNCHCARD || PUNCHCARD
|
||||
HTML - RECENT_LOGINS || RECENT LOGINS
|
||||
HTML - REGISTERED || REGISTERED
|
||||
HTML - REGISTERED_TEXT || Registered
|
||||
HTML - REGULAR || REGULAR
|
||||
HTML - SEEN_NICKNAMES || Seen Nicknames
|
||||
HTML - SERVER || Server
|
||||
HTML - SERVER_ANALYSIS || Server Analysis
|
||||
HTML - SERVER_HEALTH_ESTIMATE || Server Health Estimate
|
||||
HTML - SERVER_INFORMATION || SERVER INFORMATION
|
||||
HTML - SERVER_PREFERENCE || Server Preference
|
||||
HTML - SERVERS || Servers
|
||||
HTML - SESSION || Session
|
||||
HTML - SESSION_ENDED || Session Ended
|
||||
HTML - SESSION_LENGTH || Session Lenght
|
||||
HTML - SESSION_MEDIAN || Session Median
|
||||
HTML - SESSIONS || Sessions
|
||||
HTML - TIME || Time
|
||||
HTML - TIMES_KICKED || Times Kicked
|
||||
HTML - TIMES_USED || Times Used
|
||||
HTML - TOTAL_ACTIVE_TEXT || Total Active
|
||||
HTML - TOTAL_AFK || Total AFK
|
||||
HTML - TOTAL_PLAYERS || Total Players
|
||||
HTML - TOTAL_PLAYTIME || Total Playtime
|
||||
HTML - UNIQUE || UNIQUE
|
||||
HTML - UNIQUE_CALENDAR || Unique:
|
||||
HTML - UNIQUE_PLAYERS || UNIQUE PLAYERS
|
||||
HTML - UNIQUE_PLAYERS_TEXT || Unique Players
|
||||
HTML - UNIQUE_TEXT || Unique
|
||||
HTML - USAGE || Usage
|
||||
HTML - USED_COMMANDS || Used Commands
|
||||
HTML - USER_AND_PASS_NOT_SPECIFIED || User and Password not specified
|
||||
HTML - USER_DOES_NOT_EXIST || User does not exist
|
||||
HTML - USER_INFORMATION || USER INFORMATION
|
||||
HTML - USER_PASS_MISMATCH || User and Password did not match
|
||||
HTML - WITH || <th>With
|
||||
HTML - WORLD || World
|
||||
HTML - WORLD_LOAD || WORLD LOAD
|
||||
HTML - WORLD_PLAYTIME || World Playtime
|
||||
HTML - WORST_PING || Worst Ping
|
||||
HTML ERRORS - ACCESS_DENIED_403 || Access Denied
|
||||
HTML ERRORS - ANALYSIS_REFRESH || Analysis is being refreshed..
|
||||
HTML ERRORS - ANALYSIS_REFRESH_LONG || Analysis is being run, refresh the page after a few seconds..
|
||||
HTML ERRORS - AUTH_FAIL_TIPS_401 || - Ensure you have registered a user with <b>/plan register</b><br>- Check that the username and password are correct<br>- Username and password are case-sensitive<br><br>If you have forgotten your password, ask a staff member to delete your old user and re-register.
|
||||
HTML ERRORS - AUTHENTICATION_FAIlED_401 || Authentication Failed.
|
||||
HTML ERRORS - FORBIDDEN_403 || Forbidden
|
||||
HTML ERRORS - NO_SERVERS_404 || No Servers online to perform the request.
|
||||
HTML ERRORS - NOT_FOUND_404 || Not Found
|
||||
HTML ERRORS - NOT_PLAYED_404 || Player has not played on this server.
|
||||
HTML ERRORS - PAGE_NOT_FOUND_404 || Page does not exist.
|
||||
HTML ERRORS - UNAUTHORIZED_401 || Unauthorized
|
||||
HTML ERRORS - UNKNOWN_PAGE_404 || Make sure you're accessing a link given by a command, Examples:</p><p>/player/PlayerName<br>/server/ServerName</p>
|
||||
HTML ERRORS - UUID_404 || Player UUID was not found in the database.
|
||||
In Depth Help - /plan ? || > §2Main Command\ Access to subcommands and help\ §2/plan §fList subcommands\ §2/plan <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan analyze ? || > §2Analysis Command\ Refreshes server page and displays link to the web page.
|
||||
In Depth Help - /plan inspect ? || > §2Inspect Command\ Refreshes player page and displays link to the web page.
|
||||
In Depth Help - /plan manage ? || > §2Manage Command\ Manage MySQL and SQLite database of Plan.\ §2/plan m §fList subcommands\ §2/plan m <subcommand> ? §fIn depth help
|
||||
In Depth Help - /plan manage backup ? || > §2Backup Subcommand\ Creates a new SQLite database (.db file) with contents of currently active database in the Plan plugin folder.
|
||||
In Depth Help - /plan manage clear ? || > §2Clear Subcommand\ Removes everything in the active database. Use with caution.
|
||||
In Depth Help - /plan manage con ? || > §2Connection Debug Subcommand\ Used to debug connections in the network.\ Sends a request to each server in the database.
|
||||
In Depth Help - /plan manage disable ? || > §2Disable Subcommand\ Can disable parts of the plugin until next reload.\ Accepted arguments:\ §2kickcount §fDisables kick counts in case /kickall is used on shutdown macro.
|
||||
In Depth Help - /plan manage import ? || > §2Import Subcommand\ Import data from other sources.\ Accepted Arguments:\ §2offline §fBukkit player data, only register date and name.
|
||||
In Depth Help - /plan manage move ? || > §2Move Subcommand\ Move data from SQLite to MySQL or other way around.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage remove ? || > §2Remove Subcommand\ Remove player's data from the active database.
|
||||
In Depth Help - /plan manage restore ? || > §2Restore Subcommand\ Restore a previous backup SQLite database (.db file)\ You can also restore database.db from another server to MySQL.\ Target database is cleared before transfer.
|
||||
In Depth Help - /plan manage setup ? || > §2Setup Subcommand\ Set-up a connection between Bungee and this server for network functionality.\ BungeeAddress can be found in the enable log on console when Plan enables on Bungee.
|
||||
In Depth Help - /plan network ? || > §2Network Command\ Displays link to the network page.\ If not on a network, this page displays the server page.
|
||||
In Depth Help - /plan players ? || > §2Players Command\ Displays link to the players page.
|
||||
In Depth Help - /plan qinspect ? || > §2Quick Inspect Command\ Displays some information about the player in game.
|
||||
In Depth Help - /plan reload ? || > §2Reload Command\ Restarts the plugin using onDisable and onEnable.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /plan search ? || > §2Search Command\ Get a list of Player names that match the given argument.\§7 Example: /plan search 123 - Finds all users with 123 in their name.
|
||||
In Depth Help - /plan servers ? || > §2Servers Command\ Displays list of Plan servers in the Database.\ Can be used to debug issues with database registration on a network.
|
||||
In Depth Help - /plan update ? || > §2Update Command\ Used to update the plugin on the next shutdown\ /plan update - Changelog link\ /plan update -u - Schedule update to happen on all network servers that are online, next time they reboot.\ /plan update cancel - Cancel scheduled update on servers that haven't rebooted yet.
|
||||
In Depth Help - /plan web ? || < §2Web User Manage Command.\ §2/plan web §fList subcommands\ §2/plan web <subcommand> ? §fIn Depth help
|
||||
In Depth Help - /plan web register ? || > §2Register Subcommand\ Registers a new Web User.\ Registering a user for another player requires plan.webmanage permission.\ Passwords are hashed with PBKDF2 (64,000 iterations of SHA1) using a cryptographically-random salt.
|
||||
In Depth Help - /planbungee disable ? || > §2Disable Command\ Runs onDisable on PlanBungee.\ Plugin can be enabled with /planbungee reload afterwards.\ §bDoes not support swapping jar on the fly
|
||||
In Depth Help - /planbungee setup ? || > §2Set-up toggle Command\ Toggles set-up mode on Bungee.\ Safeguard against unauthorized MySQL snooping with another server.
|
||||
Manage - Confirm Overwrite || Data in ${0} will be overwritten!
|
||||
Manage - Confirm Removal || Data in ${0} will be removed!
|
||||
Manage - Fail || > §cSomething went wrong: ${0}
|
||||
Manage - Fail File not found || > §cNo File found at ${0}
|
||||
Manage - Fail Incorrect Database || > §c'${0}' is not a supported database.
|
||||
Manage - Fail No Importer || §eImporter '${0}' doesn't exist
|
||||
Manage - Fail Same Database || > §cCan not operate on to and from the same database!
|
||||
Manage - Fail, Confirmation || > §cAdd '-a' argument to confirm execution: ${0}
|
||||
Manage - Fail, Connection Exception || §eFail reason:
|
||||
Manage - Fail, No Servers || §cNo Servers found in the database.
|
||||
Manage - Fail, Old version || §eFail reason: Older Plan version on receiving server
|
||||
Manage - Fail, Unauthorized || §eFail reason: Unauthorized. Server might be using different database.
|
||||
Manage - Fail, Unexpected Exception || §eOdd Exception: ${0}
|
||||
Manage - List Importers || Importers:
|
||||
Manage - Notify External Url || §eNon-local address, check that port is open
|
||||
Manage - Remind HotSwap || §eRemember to swap to the new database (/plan m hotswap ${0}) & reload the plugin.
|
||||
Manage - Start || > §2Processing data..
|
||||
Manage - Success || > §aSuccess!
|
||||
Negative || No
|
||||
Positive || Yes
|
||||
Unknown || Unknown
|
||||
Version - DEV || This is a DEV release.
|
||||
Version - Latest || You're using the latest version.
|
||||
Version - New || New Release (${0}) is available ${1}
|
||||
Version - New (old) || New Version is available at ${0}
|
||||
Version FAIL - Read info (old) || Failed to check newest version number
|
||||
Version FAIL - Read versions.txt || Version information could not be loaded from Github/versions.txt
|
||||
Web User Listing || §2${0} §7: §f${1}
|
||||
WebServer - Notify HTTP || WebServer: No Certificate -> Using HTTP-server for Visualization.
|
||||
WebServer - Notify HTTP User Auth || WebServer: User Authorization Disabled! (Not secure over HTTP)
|
||||
WebServer - Notify no Cert file || WebServer: Certificate KeyStore File not Found: ${0}
|
||||
WebServer FAIL - Port Bind || WebServer was not initialized successfully. Is the port (${0}) in use?
|
||||
WebServer FAIL - SSL Context || WebServer: SSL Context Initialization Failed.
|
||||
WebServer FAIL - Store Load || WebServer: SSL Certificate loading Failed.
|
||||
Yesterday || 'Yesterday'
|
||||
Today || 'Today'
|
||||
Health - Active Playtime Comparison Decrease || Active players might be running out of things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Active Playtime Comparison Increase || Active players seem to have things to do (Played ${0} vs ${1}, last two weeks vs weeks 2-4)
|
||||
Health - Downtime || Total Server downtime (No Data) was ${0}
|
||||
Health - New Player Join Players, No || New Players may not have players to play with when they join (${0} on average)
|
||||
Health - New Player Join Players, Yes || New Players have players to play with when they join (${0} on average)
|
||||
Health - New Player Stickiness || ${0} of new players have stuck around (${1}/${2})
|
||||
Health - No Servers Inaccuracy || No Bukkit/Sponge servers to gather session data - These measures are inaccurate.
|
||||
Health - Player Play on Network || players played on the network:
|
||||
Health - Player Register Server || players register on servers per day/server on average.
|
||||
Health - Player Visit Server || players visit on servers per day/server on average.
|
||||
Health - Regular Activity Change || Number of regular players has
|
||||
Health - Regular Activity Change Decrease || decreased (${0})
|
||||
Health - Regular Activity Change Increase || increased (+${0})
|
||||
Health - Regular Activity Change Zero || stayed the same (+${0})
|
||||
Health - Regular Activity Remain || ${0} of regular players have remained active (${1}/${2})
|
||||
Health - Single Servers Inaccuracy || Single Bukkit/Sponge server to gather session data.
|
||||
Health - TPS Above Low Threshold || Average TPS was above Low Threshold ${0} of the time
|
||||
Health - TPS Low Dips || Average TPS dropped below Low Threshold (${0}) ${1} times
|
||||
HTML - FREE_DISK_SPACE || Free Disk Space
|
||||
HTML - DISK_SPACE || DISK SPACE
|
Loading…
Reference in New Issue
Block a user