Advertisement
Jnk1296

IP-Check Example Localization Template

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