Advertisement
Guest User

Simple IP-Check Language Support

a guest
May 27th, 2019
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.94 KB | None | 0 0
  1. # Command Values
  2. NO-IMPLEMENT: "Base class does not implement."
  3. CMD_REG_ERR: "Failed to register command. Perhaps it is already registered? Command-ID: "
  4. NUM_ARGS_ERR: "An incorrect number of arguments was specified."
  5. ILL_ARGS_ERR: "An illegal argument was passed into the command."
  6. PERMS_ERR: "You do not have permission to execute this command."
  7. NO_CONSOLE: "This command cannot be executed from Console."
  8. NO_CMD: "An invalid command was specified."
  9. CMD_NULL_ERR: "An error occurred while generating a Command Instance. The command has been aborted."
  10. BAD_PARSE_SET: "The parse instructions for this Parser have not been determined. Please override method Parser.parseCommand() in your parsing class."
  11.  
  12. # Configuration Parsing Values
  13. BAD_CFG_SET: "Failed to register Configuration Option. Perhaps it is already specified? Cfg-ID: "
  14. CFG_INIT_ERR: "The Configuration could not be refreshed because it has not yet been initialized."
  15.  
  16. # Database Values
  17. DB_CNCT_ERR: "An error occurred while attempting to connect to the database."
  18. BAD_DB_DRVR: "The database driver requested could not be found. Requested driver: "
  19. DB_OPEN_SUC: "Established connection to database."
  20. DB_CLOSE_SUC: "The connection the database was closed successfully."
  21. DB_CLOSE_ERR: "An error occurred while attempting to close the connection to the database. Error: "
  22. DB_QUERY_ERR: "An error occurred while attempting to query the database. Error: "
  23. DB_QUERY_RETRY: "Retrying Query..."
  24. DB_PREP_STMT_ERR: "An error occurred while attempting to generate a prepared statement for the database."
  25. DB_DEBUG_ACTIVE: "Database Debugging is active. All SQL queries will be logged as they are received."
  26. BAD_SQL_INPUT: "A parameter passed to the Statement Object is invalid! Valid parameters are those of type String and type Integer."
  27.  
  28. #--------------------------------
  29. #IP-Check Localization Values
  30. #--------------------------------
  31.  
  32. # Global Values
  33. NO_FIND: "The player or IP specified could not be found."
  34. NO_MODIFY: "No accounts were modified."
  35. DISABLE_ERR: "This command has been disabled via configuration."
  36. RELOAD: "Reload complete!"
  37. CMD_FETCH_ERR: "An error occurred while attempting to fetch this Command from the Command Manager."
  38. METRICS_ERR: "An error occurred while inititalizing the Metrics System."
  39.  
  40. # Exemption Values
  41. PLAYER_EXEMPT_SUC: "Player added to Exemption List!"
  42. IP_EXEMPT_SUC: "IP-Address added to Exemption List!"
  43. EXEMPT_DEL_SUC: "Exemption successfully removed."
  44. EXEMPT_DEL_ERR: "Exemption specified does not exist."
  45. EXEMPTION_FAIL: "An error occurred while attempting to add the exemption."
  46. EXEMPT_LIST_IP: "Exempt IPs:"
  47. EXEMPT_LIST_PLAYER: "Exempt Players:"
  48. EXEMPT_LIST_TALLY: "Total Exemptions:"
  49.  
  50. # Toggle Values
  51. TOGGLE_HEAD: "List of Toggle Options:"
  52. TOGGLE_SECURE: "Secure-Mode"
  53. TOGGLE_NOTIFY: "Notify-On-Login"
  54. TOGGLE_DETAIL: "Descriptive-Notify"
  55. TOGGLE_ACTIVE: "Active-Mode"
  56. TOGGLE_BLACKLIST: "Country-Black-List"
  57. TOGGLE_GEOIP: "GeoIP-Services"
  58. TOGGLE_REJOIN: "Rejoin-Warning"
  59. TOGGLE_INVALID: "You did not specify a valid option."
  60.  
  61. # Purge / Misc. Values
  62. PURGE_SUC: "Successfully purged %s."
  63. PURGE_ERR: "Failed to purge %s."
  64. SCAN_CLEAN: "No players with multiple accounts are logged in right now."
  65. TIME_RANGE_EMPTY: "No accounts were returned with the date-range given."
  66. TIME_STAMP_ERR: "An error occurred while attempting to parse a time stamp. This should never happen. If you see this message, please contact the developers at dev-bukkit and inform them of the circumstances that caused this error."
  67.  
  68. # Command Name Values
  69. CMD_CHECK: "Check"
  70. CMD_BAN: "Ban"
  71. CMD_UNBAN: "Unban"
  72. CMD_EXEMPT: "Exempt"
  73. CMD_UNEXEMPT: "Unexempt"
  74. CMD_RELOAD: "Reload"
  75. CMD_ABOUT: "About"
  76. CMD_TOGGLE: "Toggle"
  77. CMD_EXEMPT_LIST: "Exempt-List (all)"
  78. CMD_EXEMPT_LIST_IP: "Exempt-List (ip)"
  79. CMD_EXEMPT_LIST_PLAYER: "Exempt-List (player)"
  80. CMD_HELP: "Help"
  81. CMD_KICK: "Kick"
  82. CMD_SBAN: "Single-Ban"
  83. CMD_PURGE: "Purge"
  84. CMD_SCAN: "Scan"
  85. CMD_BANALL: "Ban-All"
  86. CMD_UNBANALL: "Unban-All"
  87. CMD_BLOCK: "Block"
  88. CMD_UNBLOCK: "Unblock"
  89. CMD_PROTECT: "Protect"
  90. CMD_UNPROTECT: "Unprotect"
  91. CMD_MODBAN: "Modify Ban"
  92. CMD_STATUS: "Status"
  93.  
  94. # Command Description Values
  95. HELP_CHECK: "Displays information about the player or IP Specified."
  96. HELP_BAN: "Bans the player or IP specified. In addition, this command will also ban any alternative accounts associated, plus the IP-address."
  97. HELP_UNBAN: "Unbans the Player or IP specified. Additionally, unbans any associated accounts, plus the IP-address."
  98. HELP_EXEMPT: "Exempts the IP or player specified from events-checking."
  99. HELP_UNEXEMPT: "Removes the specified exemption from file."
  100. HELP_RELOAD: "Reloads the IP-Check plugin."
  101. HELP_ABOUT: "Displays Information about IP-Check."
  102. HELP_TOGGLE: "Toggles the specified option. For a list of options, type ''/ipc toggle help''"
  103. HELP_EXEMPT_LIST: "Displays all players/ips that are exempt from events-checking."
  104. HELP_EXEMPT_LIST_IP: "Displays all IPs which are exempt from events-checking."
  105. HELP_EXEMPT_LIST_PLAYER: "Displays all players who are exempt from events-checking."
  106. HELP_HELP: "Provides information about all of the associated IP-Check Commands."
  107. HELP_KICK: "Kicks all players linked to player or IP specified."
  108. HELP_SBAN: "Bans a single player from your server."
  109. HELP_PURGE: "Deletes records of the IP or Player name specified."
  110. HELP_SCAN: "Scans all players currently logged in to check for any who may possess multiple accounts."
  111. HELP_BANALL: "Bans all accounts found within specified time frame."
  112. HELP_UNBANALL: "Unbans all accounts found within specified time frame."
  113. HELP_BLOCK: "Blocks the country specified, preventing anyone from joining the server from said country."
  114. HELP_UNBLOCK: "Unblocks a blocked country, allowing players from said country to join the server."
  115. HELP_PROTECT: "Protects the specified player from being banned by IP-Check."
  116. HELP_UNPROTECT: "Allows the specified player to be banned by IP-Check."
  117. HELP_MODBAN: "Allows you to modify the ban message of any banned player."
  118. HELP_STATUS: "Displays IP-Check usage statistics."
  119.  
  120. # Misc Output Values
  121. SCAN_TITLE: "Player Scan Results"
  122. SCAN_EXPLAIN: "The following players were found to have multiple accounts"
  123. LOGIN_WARN: "Warning!"
  124. LOGIN_EXPLAIN: " may have multiple accounts!"
  125. REJOIN_WARN: "Notice!"
  126. REJOIN_EXPLAIN: " was kicked from the server due to a previous IP-ban."
  127. SBAN_IP_HELP: "To ban an IP address, use '/ipc ban'."
  128. ABOUT_TEXT: "Made by Swqpping: https://www.spigotmc.org/resources/simple-ip-check.66671/"
  129.  
  130. # Report Values
  131. REPORT_HEAD_ONE: "Alternate Accounts four for:"
  132. REPORT_HEAD_TWO: "Alternate Accounts found:"
  133.  
  134. REPORT_BODY_ONE: "The following players connect with the above IP address:"
  135. REPORT_BODY_TWO: "The following players connect using the same IP addesss:"
  136. REPORT_BODY_THREE: "Players and IPs associated with the search term:"
  137. REPORT_BODY_FOUR: "No alternate accounts were found for this user."
  138.  
  139. REPORT_FOOT_LAST_IP: "Last Known IP:"
  140. REPORT_FOOT_LOCATION: "Last Location:"
  141. LOCATION_UNAVAILABLE: "GeoIP Services Unavailable"
  142. REPORT_FOOT_PTIME: "Last Login:"
  143.  
  144. REPORT_FOOT_PBAN: "Player Banned:"
  145. REPORT_FOOT_PEXM: "Player Exempt"
  146. REPORT_FOOT_PPRO: "Player Protected"
  147. REPORT_FOOT_PREXM: "Will warn on Rejoin Attempt:"
  148.  
  149. REPORT_FOOT_IBAN: "IP Banned:"
  150. REPORT_FOOT_IEXM: "IP Exempt:"
  151. REPORT_FOOT_IREXM: "Warn when banned players rejoin under this IP:"
  152.  
  153. REPORT_FOOT_ERROR: "Player object returned was NULL"
  154.  
  155. REPORT_BAN_HEAD: "Ban Reason:"
  156. REPORT_BAN_GENERIC: "No Message"
  157.  
  158. # Exempt Prompt Values
  159. EXEMPT_PROMPT: "Please select the Exemption you wish to create:"
  160. UNEXEMPT_PROMPT: "Please select the Exemption you wish to remove:"
  161. EXEMPT_PROMPT_CANCEL: "Prompt aborted."
  162.  
  163. #GeoIP Services Values
  164. GEOIP_DB_MISSING: "The GeoIP.dat database could not be found. This file must be available in order for GeoIP Services to function properly. It can be downloaded at: http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"
  165. GEOIP_DB_READ_ERR: "An error occurred while attempting to read the GeoIP database."
  166. GEOIP_DOWNLOAD: "Attempting automatic download of GeoIP database from: http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz..."
  167. GEOIP_DISABLED: "GeoIP Services have been disabled via configuration."
  168.  
  169. # Country Block Values
  170. BLOCK_CMD_DISABLE: "The block commands have been disabled because the Block Manager failed to initialize."
  171. BLOCK_SUC: "Country ID successfully added to black-list!"
  172. BLOCK_ERR: "This country ID has already been black-listed."
  173. BLOCK_HELP: "Please visit http://dev.bukkit.org/bukkit-plugins/ip-check-jnk/pages/country-ids/ for a list of country IDs."
  174. UNBLOCK_SUC: "Country ID successfully removed from black-list!"
  175. UNBLOCK_ERR: "This Country ID was not found in the black-list."
  176. BLACK_LIST_OFF: "You must enable the Country Black-List for this configuration to take effect."
  177.  
  178. # Protection Values
  179. PROTECT_SUC: "Player successfully protected!"
  180. PROTECT_IP_ERR: "You cannot protect or unprotect an IP addess."
  181. UNPROTECT_SUC: "Player successfully unprotected!"
  182.  
  183. # Mod-Ban Values
  184. MODBAN_IP: "IP addressses cannot have ban messages."
  185. MODBAN_SUC: "Successfully modified ban message."
  186.  
  187. # Statistics Values
  188. STATS_HEADER: "Plugin Usage Statistics:"
  189. STATS_PVER: "IP-Check Version:"
  190. STATS_LVER: "RP-Commons Version:"
  191. STATS_DB_TYPE: "Database Type:"
  192. STATS_JVER: "Java Version:"
  193. STATS_OS: "Operating System:"
  194. STATS_OS_ARCH: "System Architecture:"
  195. STATS_PLOG: "Total Players Logged:"
  196. STATS_ILOG: "Total IPs Logged:"
  197. STATS_PEXM: "Total Players Exempt:"
  198. STATS_IEXM: "Total IPs Exempt:"
  199. STATS_RPEXM: "Total Players Rejoin Exempt:"
  200. STATS_RIEXM: "Total IPs Rejoin Exempt:"
  201. STATS_PBAN: "Total Players Banned:"
  202. STATS_IBAN: "Total IPs Banned:"
  203. STATS_PLOGS: "Player Logins this Session:"
  204. STATS_PBANS: "Players Banned this Session:"
  205. STATS_PUNBANS: "Players Unbanned this Session:"
  206. STATS_WARNS: "Login Warnings this Session:"
  207. STATS_KICKS: "Kicks Issued this Session:"
  208. STATS_SECURE: "Secure Mode Status:"
  209. STATS_ACTIVE: "Active Mode Status:"
  210. STATS_BLACKLIST: "Country Black-List Status:"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement