Advertisement
Guest User

ArchBlock lang

a guest
Jun 28th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Translators: Please only translate text. Don't change the prefix, colours or formatting.
  2. # Translators should also supply aliases that match translated versions of the commands
  3.  
  4. # Minecraft colours may be used in this file for some messages
  5. # You may use an and-code for these - that is, colour codes beginning with the ampersand "&"
  6. # Any tokens "%s" are required and will be replaced by the plugin with context-sensitive information - do not remove these
  7.  
  8. ### GENERAL MESSAGES ###
  9.  
  10. # This is put on the start of some messages
  11. # Please put a default colour at the end, it's all too easy to forget colours in messages
  12. message_prefix = &d[&6ArchBlock&d]&f
  13.  
  14. command_no_permission = &cYou do not have permission to access this command.
  15. ownership_blocks_changed = &9Ownership of &c%s&9 blocks has been changed.
  16. player_only = This command may only be run by a player.
  17. player_or_console_only = This command may only be run by a player or the console.
  18. task_already_running = &cThere is already a task running. Please wait for it to finish.
  19. unable_to_update_block_owner = Unable to update block owner at %s(%s, %s, %s): %s
  20. unknown_player = &cUnknown player: &b%s
  21. unknown_world = &cUnknown world: &b%s
  22.  
  23. ### COMMAND ALIASES ###
  24. # Command aliases may be split with a semicolon ";"
  25. # You can leave any of these commented out if you don't want to use them
  26. # Translators should provide localized command names as aliases
  27.  
  28. alias_disownplayer = dp;disownp
  29. alias_disownworld = dw
  30. alias_friend = fr;f
  31. alias_friends = fs
  32. alias_setowner = so
  33. alias_transferblocks = tb;transfer;transferb
  34. alias_transferplayer = transferp
  35. alias_unfriend = ufr;uf
  36.  
  37. ### MAIN PLUGIN MESSAGES ###
  38.  
  39. plugin_disabled_config = Plugin is disabled in the config. Set it up or it will do nothing!
  40. plugin_loaded_players = Loaded! Found %s players.
  41. plugin_migration_no_watchblock = Migration is enabled, but WatchBlock was not found!
  42. plugin_migration_failed = Import seems to have failed - please check for errors!
  43.  
  44. plugin_config_updated = Updated config to version %s
  45. plugin_config_unknown_version = Unknown version "%s", please make sure your config.yml is correct.
  46.  
  47. ### EVENT MESSAGES ###
  48.  
  49. # Player interaction event (left-/right-click a block)
  50.  
  51. event_interact_denied = &cYou may not interact with any &b%s&c owned by &b%s&c.
  52. event_interact_sword_not_owned = &bThis block is not owned by anyone.
  53. event_interact_sword_owned_by = &bThis block is owned by &3%s&b.
  54.  
  55. # Player bucket empty event
  56.  
  57. event_bucket_denied = &cYou may not empty buckets on blocks owned by &b%s&c.
  58.  
  59. # Block place event
  60.  
  61. event_block_place_denied = &cYou may not place blocks against those owned by &b%s&c.
  62.  
  63. # Block break event
  64.  
  65. event_block_break_denied = &cYou may not break blocks owned by &b%s&c.
  66.  
  67. ### COMMANDS ###
  68.  
  69. # Disown command
  70. disown_command_disowning_blocks = &9Disowning blocks for &c%s&9. This may take a while.
  71. disown_command_usage = &9Usage: &b/&3%s &2<user>
  72. disown_thread_complete = &c%s blocks&9 have been disowned.
  73.  
  74. # Disown world command
  75. disownworld_command_disowning_blocks = &9Disowning blocks for world &c%s&9. This may take a while.
  76. disownworld_command_usage = &9Usage: &b/&3%s &2<world>
  77. disownworld_thread_complete = &c%s blocks&9 have been disowned.
  78.  
  79. # Friend command
  80. friend_command_console_already_friends = &b%s&c is already friends with &b%s
  81. friend_command_console_now_friends = &b%s&a is now friends with &b%s
  82. friend_command_console_usage = &9Usage: &b/&3%s &2<user> <friend>
  83.  
  84. friend_command_already_friends = &cYou are already friends with &b%s
  85. friend_command_now_friends = &aYou are now friends with &b%s
  86. friend_command_usage = &9Usage: &b/&3%s &2<user>
  87.  
  88. # Friends (listing) command
  89.  
  90. friends_command_console_usage = &9Usage: &b/&3%s &2<user>
  91.  
  92. # The following three entries are used to lay out the friends list as displayed to the user. For example, if we
  93. # set list_header to "== &d[&6F&d]&f ==", list_row to "&6> %s" and list_separator to " &3| &b", our list will look
  94. # something like this:
  95. #
  96. # == &d[&6F&d]&f ==
  97. # &6> <player> &3| &b<player> &3| &b<player>
  98. # &6> <player> &3| &b<player> &3| &b<player>
  99. # &6> <player> &3| &b<player> &3| &b<player>
  100. #
  101. # For the most parts, translators won't need to touch this, aside from translating "Friends"
  102.  
  103. friends_command_list_header = == &d[&6Friends&d]&f ==
  104. friends_command_list_row = &b%s
  105. friends_command_list_separator = &3, &b
  106.  
  107. friends_command_no_friends = &cNo friends found :(
  108.  
  109. # Setowner command
  110.  
  111. setowner_command_changing_ownership = &9Changing ownership of &c%s&9 blocks. This may take a while.
  112. setowner_command_make_worldedit_selection = &cPlease make a valid WorldEdit cuboid selection.
  113. setowner_command_usage = &9Usage: &b/&3%s &2<user>
  114. setowner_command_usage_exclamation_point = &9Supply an exclamation point &b"!"&9 instead of a username to disown the \
  115.   selected blocks instead.
  116.  
  117. # Transferblocks command
  118.  
  119. transferblocks_command_transferring_blocks = &9Transferring your blocks to &c%s&9. This may take a while.
  120. transferblocks_command_usage = &9Usage: &b/&3%s &2<user>
  121. transferblocks_thread_complete = &9Ownership of &c%s blocks&9 has been changed.
  122.  
  123. # Transferplayer command
  124.  
  125. transferplayer_command_usage = &9Usage: &b/&3%s &2<user> <target>
  126. transferplayer_command_transferring_blocks = &9Transferring blocks from &c%s&9 to &c%s&9. This may take a while.
  127.  
  128. # Unfriend command
  129.  
  130. unfriend_command_console_usage = &9Usage: &b/&3%s &2<user> <friend>
  131. unfriend_command_console_not_friends = &b%s&c is not friends with &b%s
  132. unfriend_command_console_no_longer_friends = &b%s&a is no longer friends with &b%s
  133.  
  134. unfriend_command_usage = &9Usage: &b/&3%s &2<user>
  135. unfriend_command_not_friends = &cYou are not friends with &b%s
  136. unfriend_command_no_longer_friends = &aYou are no longer friends with &b%s
  137.  
  138. ### IMPORTERS ###
  139.  
  140. import_logging_prefix = IMPORT | %s
  141.  
  142. # WatchBlock importer
  143.  
  144. watchblock_import_chunks_done = Chunks done: %s/%s
  145. watchblock_import_converting_friendships = Converting friendships..
  146. watchblock_import_complete = Import complete!
  147. watchblock_import_created_friendship = Created friendship: %s -> %s
  148. watchblock_import_disabling_watchblock = Disabling WatchBlock now. Please remember to remove it before you restart \
  149.   next, or you'll have problems!
  150. watchblock_import_fetched_uuid = Fetched UUID for player: %s
  151. watchblock_import_found_worlds = Found worlds (%s): %s
  152. watchblock_import_friendships_converted = Friendships converted.
  153. watchblock_import_importing_chunks = Importing %s chunks. This may take a while.
  154. watchblock_import_loading_blocks_for_world = Loading blocks for world: %s
  155. watchblock_import_looking_for_worlds = Looking for worlds to import..
  156. watchblock_import_not_all_worlds_converted = Not all worlds were converted. Please check for errors!
  157. watchblock_import_setting_up_thread = Setting up thread: %s
  158. watchblock_import_starting = Beginning WatchBlock import..
  159. watchblock_import_thread_completed = Thread completed: %s
  160. watchblock_import_unable_to_fetch_uuid = Unable to fetch UUID for player: %s
  161. watchblock_import_unable_to_find_data_files = Unable to find data files!
  162. watchblock_import_unable_to_get_chunk_for_file = Unable to get chunk for file: %s
  163. watchblock_import_world_imported = World imported: %s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement