xxx_thunder

Untitled

Apr 19th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.30 KB | None | 0 0
  1. #########################
  2. ##### ChestSort #####
  3. #########################
  4. #
  5. # www.jeff-media.de
  6. #
  7.  
  8. #
  9. # This config file will be updated automatically with every new release of ChestSort.
  10. # Don't worry! Your changes will be kept after every update.
  11. #
  12.  
  13. ###############################
  14. ####### Commands #######
  15. ###############################
  16.  
  17. # /sort (or /chestsort) Toggle automatic sorting for containers (chests, barrels, enderchests, llamas, etc.)
  18. # /sort on Enable automatic sorting for containers
  19. # /sort off Disable automatic sorting for containers
  20. # /sort hotkeys Open a GUI to change the sorting hotkeys
  21. # /sort help Display help about the /sort (or /chestsort) command
  22.  
  23. # /isort (or /invsort) Sort the player's inventory
  24. # /isort hotbar Sort the player's hotbar
  25. # /isort all Sort the player's inventory and hotbar
  26. # /isort toggle Toggle automatic sorting for the player's inventory
  27. # /isort on Enable automatic sorting for the player's inventory
  28. # /isort off Disable automatic sorting for the player's inventory
  29. # /isort help Display help about the /isort (or /invsort) command
  30.  
  31.  
  32. ###############################
  33. ####### Permissions #######
  34. ###############################
  35.  
  36. # chestsort.use Allows to sort containers using automatic sorting (/sort) or via hotkeys
  37. # chestsort.use.inventory Allows to sort the player's inventory using automatic sorting (/isort) or via hotkeys
  38. # chestsort.reload Allows to reload the config using /sort reload
  39.  
  40.  
  41. ###############################
  42. ####### Placeholders #######
  43. ###############################
  44.  
  45. # When using PlaceholderAPI, you can use the following placeholders:
  46.  
  47. # %chestsort_sortingenabled% - true if this player has automatic sorting enabled for containers
  48. # %chestsort_invsortingenabled% - true if this player has automatic sorting enabled for the player's inventory
  49.  
  50.  
  51. ############################
  52. ##### Default settings #####
  53. ############################
  54.  
  55. # If you don't want to use a permission plugin, you can set
  56. # this to false to allow every player to use ChestSort.
  57. # If you use a permissions plugin, set this to true.
  58. # There are two permissions used by ChestSort:
  59. # - chestsort.use (allow chest sorting by hotkeys and via /chestsort)
  60. # - chestsort.use.inventory (allow inventory sorting by hotkeys and via /invsort)
  61. use-permissions: true
  62.  
  63. # when set to false, no player is allowed to enable automatic chest sorting
  64. # hotkeys will still work if enabled
  65. allow-automatic-sorting: true
  66.  
  67. # when set to false, no player is allowed to enable automatic inventory sorting
  68. # hotkeys will still work if enabled
  69. allow-automatic-inventory-sorting: true
  70.  
  71. # when set to false, new players will have to run /chestsort
  72. # once to enable automatic chest sorting.
  73. sorting-enabled-by-default: false
  74.  
  75. # when set to false, new players will have to run /invsort on
  76. # once to enable automatic inventory sorting.
  77. inv-sorting-enabled-by-default: false
  78.  
  79. # when set to true, players with sorting DISABLED will be
  80. # shown a message on how to enable automatic chest sorting
  81. # when they use a chest for the first time.
  82. # consider setting this to true when you disable sorting by default.
  83. # see also -> message-when-using-chest
  84. show-message-when-using-chest: true
  85.  
  86. # when set to true, players with sorting ENABLED will be
  87. # shown a message on how to disable automatic chest sorting
  88. # when they use a chest for the first time.
  89. # consider setting this to true when you enable sorting by default.
  90. # see also -> message-when-using-chest2
  91. show-message-when-using-chest-and-sorting-is-enabled: false
  92.  
  93. # when set to true, the messages are shown again when a player
  94. # logs out and back in and then uses a chest again.
  95. show-message-again-after-logout: true
  96.  
  97. # to sort by category, we need category files. ChestSort comes
  98. # with a number of pregenerated category files, named
  99. # 900-valuables.txt, 910-tools.txt, 920-combat.txt, ...
  100. # If you wish to edit those, you can disable the generation of these
  101. # files, because otherwise all your changes in the pregenerated
  102. # files will be overwritten on each server startup.
  103. # However, a much smarter option is to copy the default files
  104. # and rename them to from 900... to 800... and edit those instead.
  105. auto-generate-category-files: true
  106.  
  107. # you can choose when ChestSort should sort chests.
  108. # The default option is to sort when an inventory is closed.
  109. # This is useful, because the onInventoryClose event never gets fired
  110. # when access to the chest is forbidden by another plugin, e.g. WorldGuard
  111. # You can also sort whenenver a chest is opened. ChestSort will then check
  112. # if the onInventoryOpenEvent gets cancelled. If it does get cancelled,
  113. # ChestSort will not sort the chest. However, if a plugin uses the
  114. # MONITOR event priority, ChestSort cannot detect this.
  115. # If you have problems with unaccessible chests being sorted, set this
  116. # option to "close". If you want, you can sort twice, however this is not
  117. # very useful.
  118. # If you don't know what to put here, just use the default "close"
  119. # Available options: open, close, both
  120. sort-time: close
  121.  
  122. # when set to true, show some verbose information on startup
  123. verbose: true
  124.  
  125. ###########################
  126. ##### Default Hotkeys #####
  127. ###########################
  128.  
  129. # Instead of automatic sorting, you can also use hotkeys (see below)
  130. # when using an inventory to have it sorted immediately.
  131. # You can disable this by setting this to false.
  132. allow-sorting-hotkeys: true
  133.  
  134. # You can define which sorting hotkeys are enabled by default.
  135. # Players can also enable/disable these shortcuts individually via /chestsort hotkeys
  136. # Hotkeys that could interfere with Minecraft's normal behaviour (e.g.
  137. # shift+left-click) only work on empty slots, so don't worry about them.
  138. sorting-hotkeys:
  139. # Use middle click (mousewheel) on ANY inventory slot as hotkey
  140. middle-click: true
  141. # Use shift + left-click on any EMPTY inventory slot as hotkey
  142. shift-click: true
  143. # Use double left-click on any EMPTY inventory slot as hotkey
  144. double-click: true
  145. # Use shift + right-click on any EMPTY inventory slot as hotkey
  146. shift-right-click: true
  147.  
  148. # Amount in seconds that players have to wait between using hotkeys to prevent them from spamming the
  149. # sorting mechanism
  150. hotkey-cooldown: 0.2
  151.  
  152. # When enabled, players can leftclick on chests, barrels etc.
  153. # to sort them without having to open them.
  154. allow-left-click-to-sort: true
  155.  
  156. # When set to true, sorting a chest by left-clicking it is enabled by default
  157. left-click-to-sort-enabled-by-default: false
  158.  
  159. # Additionally to sorting hotkeys, you can quickly unload your inventory into a chest and vice versa
  160. # using left-click or right-click outside of a chest's inventory.
  161. # A single click will only affect matching items (items that are already present in the other inventory)
  162. # and a double click will try to store/take all items.
  163. allow-additional-hotkeys: true
  164.  
  165. # You can define which additional hotkeys are enabled by default.
  166. # Players can also enable/disable these shortcuts individually via /chestsort hotkeys
  167. additional-hotkeys:
  168. # Use left-click outside inventory to quickly put matching items from your inventory (except hotbar)
  169. # into the chest. Use left-double-click to put everything except your hotbar into the chest.
  170. left-click: false
  171. # Use right-click outside inventory to quickly take all matching items from the chest into your
  172. # inventory. Use right-double-click to take all items out of the chest.
  173. right-click: false
  174.  
  175. ##########################
  176. ##### Update Checker #####
  177. ##########################
  178.  
  179. # Checks for updates (asynchronously).
  180. # When enabled, a message is printed in the console if a new
  181. # version has been found, and OPs will be notified when they join the server
  182. # When set to true, check for updates on startup and every X hours (see "check-interval" below)
  183. # When set to on-startup, only check on server startup
  184. # When set to false, don't check for updates
  185. check-for-updates: false
  186.  
  187. # When you set "check-for-updates" to true, you can define the amount
  188. # of hours inbetween each update check.
  189. check-interval: 4
  190.  
  191. #########################
  192. #### Disabled Worlds ####
  193. #########################
  194.  
  195. # You can disable automatic chest sorting for certain worlds. Each world's name has to
  196. # be on a separate line, starting with a hyphen and followed by a space.
  197. # You can also use the YAML array notation: [world1, world2, world3]
  198.  
  199. # Example:
  200. #
  201. # disabled-worlds:
  202. # - world_nether
  203. # - world_the_end
  204.  
  205. disabled-worlds:
  206.  
  207. ##########################
  208. ##### Plugin hooks #####
  209. ##########################
  210.  
  211. # ChestSort can hook into other plugins to allow better sorting
  212. # for items belonging to 3rd party plugins.
  213. # You do NOT have to disable the hooks for plugins you don't have
  214. # installed. ChestSort will automatically check if the plugins
  215. # are installed.
  216.  
  217. ##### CrackShot ##### -> https://www.spigotmc.org/resources/crackshot-guns.48301/
  218. # When CrackShot is installed, all CrackShot weapons will be
  219. # grouped together and sorted by their name
  220. hook-crackshot: true
  221.  
  222. # You can define a custom name that will be used as prefix
  223. # for all CrackShot weapon names.
  224. # E.g. when you set this to "crackshot_weapon", an AK-47
  225. # will be called "crackshot_weapon_AK-47"
  226. hook-crackshot-prefix: crackshot_weapon
  227.  
  228. ##### InventoryPages ##### -> https://www.spigotmc.org/resources/inventorypages.32432/
  229. # When InventoryPages is installed, ChestSort will not sort
  230. # the "Next Page" and "Prev Page" buttons. You should not
  231. # disable this behaviour unless you know what you are doing!
  232. hook-inventorypages: true
  233.  
  234. ##### Minepacks ##### -> https://www.spigotmc.org/resources/minepacks-backpack-plugin-mc-1-7-1-15.19286/
  235. # When Minepacks version 2.3.8+ is installed, ChestSort can detect your
  236. # backpacks and sort them like a regular chest.
  237. hook-minepacks: true
  238.  
  239. ##### PlayerVaults and similar plugins #####
  240. # When PlayerVaults or similar plugins are installed, ChestSort can sort your
  241. # player vaults just like regular chests.
  242. hook-playervaults: true
  243.  
  244. ##### EnderContainers ##### -> https://www.spigotmc.org/resources/endercontainers.4750/
  245. # When EnderContainers version 2.2.1+ is installed, ChestSort can detect your
  246. # enderchests and sort them like regular chests.
  247. hook-endercontainers: true
  248.  
  249. ##### CrateReloaded #####
  250. # Prevents the player from using hotkeys on a crate
  251. hook-cratereloaded: true
  252.  
  253. ##### GoldenCrates #####
  254. # Prevents the player from using hotkeys on a crate
  255. hook-goldencrates: true
  256.  
  257. ##### HeadDatabase #####
  258. # Prevents the player from using hotkeys on the HeadDatabase GUI
  259. hook-headdatabase: true
  260.  
  261. ##### Slimefun #####
  262. # Some versions of Slimefun fail to prevent putting the backpack into itself
  263. # when you do so immediately after ChestSort moved a backpack. You can
  264. # prevent ChestSort from moving Slimefun backpacks until they fixed this.
  265. dont-move-slimefun-backpacks: false
  266.  
  267. ##### Other backpack plugins #####
  268. # ChestSort is able to detect backpacks from most backpack
  269. # plugins like ShulkerPacks or Better Shulker Boxes.
  270. # This detection is always enabled, you cannot turn it off.
  271.  
  272. ##### Other GUI plugins #####
  273. # ChestSort tries to detect if an inventory belongs to a
  274. # 3rd party plugin's GUI and then prevents it from being sorted.
  275. # If you encounter any problems, like a sortable GUI inventory,
  276. # please open a new issue at Github:
  277. # https://github.com/JEFF-Media-GbR/Spigot-ChestSort/issues
  278. hook-generic: true
  279.  
  280. ##########################
  281. ##### Sorting Method #####
  282. ##########################
  283.  
  284. # Advanced: how to sort things! See below for examples.
  285. # Only change this if you know what you are doing.
  286. #
  287. # Available variables:
  288. # {category} order stuff by category as defined in plugins/ChestSort/categories/<category>.txt
  289. # {keepCategoryOrder} orders stuff in the same category according to their line numbers in the category file
  290. # {itemsFirst} put items before blocks
  291. # {blocksFirst} put blocks before items
  292. # {name} returns the name (e.g. DIRT, GRASS_BLOCK, BIRCH_LOG, DIAMOND_SWORD, ...)
  293. # {color} returns the color, e.g. light_blue for wool. Empty if block/item is not dyeable
  294. # {customName} returns the display name if set (e.g. with an anvil)
  295. # {lore} returns the lore if set
  296. #
  297. # Warning: You must not use spaces and fields have to be separated by commas.
  298. #
  299. # Examples:
  300. # sort by name and color:
  301. # '{name},{color}'
  302. #
  303. # sort by name and color, but put items before blocks:
  304. # '{itemsFirst},{name},{color}'
  305. #
  306. # sort by name and color, but put blocks before items:
  307. # '{blocksFirst},{name},{color}'
  308. #
  309. # sort by category, then put items before blocks and sort by name and color
  310. # '{category},{itemsFirst},{name},{color}'
  311. #
  312. # sort by category, but keep exactly the same order as defined in each category file, then sort any undefined items by name and color
  313. # '{category},{keepCategoryOrder},{name},{color}
  314. #
  315. sorting-method: '{category},{itemsFirst},{name},{color},{customName}'
  316.  
  317. #########################
  318. ##### Localization ######
  319. #########################
  320.  
  321. # Available color codes:
  322. # &0 Black &6 Gold &c Red
  323. # &1 Dark Blue &7 Gray &d Light Purple
  324. # &2 Dark Green &8 Dark Gray &e Yellow
  325. # &3 Dark Aqua &9 Blue &f White
  326. # &4 Dark Red &a Green
  327. # &5 Dark Purple &b Aqua
  328.  
  329. # Available formatting codes:
  330. # &k Obfuscated &m Strikethrough
  331. # &l Bold &o Italic
  332. # &n Underline &r Reset
  333.  
  334. # IMPORTANT NOTE:
  335. # Some messages contain placeholders (%s). You must not remove those, or you will get exceptions in the console
  336.  
  337. ##### You can edit these messages yourself or uncomment the existing translations (see below)
  338. message-when-using-chest: "&7Hint: Type &6/chestsort&7 to enable automatic chest sorting."
  339. message-when-using-chest2: "&7Hint: Type &6/chestsort&7 to disable automatic chest sorting."
  340. message-sorting-disabled: "&7Automatic chest sorting has been &cdisabled&7."
  341. message-sorting-enabled: "&7Automatic chest sorting has been &aenabled&7."
  342. message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  343. message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  344. message-player-inventory-sorted: "&7Your inventory has been sorted."
  345. message-error-players-only: "&cError: This command can only be run by players."
  346. message-error-invalid-options: "&cError: Unknown option %s. Valid options are %s."
  347. message-hotbar-container-sorted: "&aContainer sorted!"
  348. message-gui-enabled: "&aEnabled"
  349. message-gui-disabled: "&cDisabled"
  350. message-gui-middle-click: "Middle-Click"
  351. message-gui-shift-click: "Shift + Click"
  352. message-gui-double-click: "Double-Click"
  353. message-gui-shift-right-click: "Shift + Right-Click"
  354. message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  355. message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  356. message-gui-left-click-outside: "Left-Click from outside"
  357.  
  358. ##### English
  359. #message-when-using-chest: "&7Hint: Type &6/chestsort&7 to enable automatic chest sorting."
  360. #message-when-using-chest2: "&7Hint: Type &6/chestsort&7 to disable automatic chest sorting."
  361. #message-sorting-disabled: "&7Automatic chest sorting has been &cdisabled&7."
  362. #message-sorting-enabled: "&7Automatic chest sorting has been &aenabled&7."
  363. #message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  364. #message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  365. #message-player-inventory-sorted: "&7Your inventory has been sorted."
  366. #message-error-players-only: "&cError: This command can only be run by players."
  367. #message-error-invalid-options: "&cError: Unknown option %s. Valid options are %s."
  368. #message-gui-enabled: "&aEnabled"
  369. #message-gui-disabled: "&cDisabled"
  370. #message-gui-middle-click: "Middle-Click"
  371. #message-gui-shift-click: "Shift + Click"
  372. #message-gui-double-click: "Double-Click"
  373. #message-gui-shift-right-click: "Shift + Right-Click"
  374. #message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  375. #message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  376. #message-gui-left-click-outside: "Left-Click from outside"
  377.  
  378.  
  379. ##### Chinese - Thanks to qsefthuopq, Aira-Sakuranomiya and BackWheel for translating!
  380. #message-when-using-chest: "&7提示: 输入 &6/chestsort&7 来启用自动整理箱子."
  381. #message-when-using-chest2: "&7提示: 输入 &6/chestsort&7 来关闭自动整理箱子."
  382. #message-sorting-disabled: "&7自动整理箱子已 &c关闭&7."
  383. #message-sorting-enabled: "&7自动整理箱子已 &a启用&7."
  384. #message-inv-sorting-disabled: "&7自动整理背包已 &c关闭&7."
  385. #message-inv-sorting-enabled: "&7自动整理背包已 &a开启&7."
  386. #message-player-inventory-sorted: "&7已成功整理你的背包."
  387. #message-error-players-only: "&c错误: 指令只能由玩家运行."
  388. #message-error-invalid-options: "&c错误: 位置选项 %s. 有效选项为 %s."
  389. #message-gui-enabled: "&a开启"
  390. #message-gui-disabled: "&c关闭"
  391. #message-gui-middle-click: "中键"
  392. #message-gui-shift-click: "Shift + 左键"
  393. #message-gui-double-click: "双击左键"
  394. #message-gui-shift-right-click: "Shift + 右键"
  395. #message-gui-left-click: "填充箱子 (左键/双击左键)"
  396. #message-gui-right-click: "清空箱子 (右键/双击右键)"
  397. #message-gui-left-click-outside: "Left-Click from outside"
  398.  
  399. ##### Chinese (Traditional) 繁體中文 - Thanks to Command1264 for translating!
  400. #message-when-using-chest: "&7小提醒: 輸入 &6/chestsort&7 來開啟自動整理箱子"
  401. #message-when-using-chest2: "&7小提醒: 輸入 &6/chestsort&7 來關閉自動整理箱子"
  402. #message-sorting-disabled: "&7自動整理箱子已 &c關閉&7"
  403. #message-sorting-enabled: "&7自動整理箱子已 &a開啟&7"
  404. #message-inv-sorting-disabled: "&7自動整理背包已 &c關閉&7."
  405. #message-inv-sorting-enabled: "&7自動整理背包已 &a開啟&7."
  406. #message-player-inventory-sorted: "&7你的背包已成功整理."
  407. #message-error-players-only: "&c錯誤: 這個指令只能由玩家使用"
  408. #message-error-invalid-options: "&c錯誤: 未知選項 %s. 有效的選項為 %s."
  409. #message-gui-enabled: "&a開啟"
  410. #message-gui-disabled: "&c關閉"
  411. #message-gui-middle-click: "中鍵"
  412. #message-gui-shift-click: "Shift + 左鍵"
  413. #message-gui-double-click: "雙擊左鍵"
  414. #message-gui-shift-right-click: "Shift + 右鍵"
  415. #message-gui-left-click: "填滿箱子 (左鍵/雙擊左鍵)"
  416. #message-gui-right-click: "清空箱子 (右鍵/雙擊右鍵)"
  417. #message-gui-left-click-outside: "Left-Click from outside"
  418.  
  419. ##### Dutch - Thanks to Xeyame for translating!
  420. ##### Note: Some messages are still untranslated. Please send me your translation at SpigotMC
  421. #message-when-using-chest: "&7Hint: Gebruik &6/chestsort&7 om automatische kist sortering aan te zetten."
  422. #message-when-using-chest2: "&7Hint: Gebruik &6/chestsort&7 om automatische kist sortering uit te zetten."
  423. #message-sorting-disabled: "&7Automatische kist sortering is &cuitgeschakeld&7."
  424. #message-sorting-enabled: "&7Automatische kist sortering is &aingeschakeld&7."
  425. #message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  426. #message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  427. #message-player-inventory-sorted: "&7Je inventaris is gesorteerd."
  428. #message-error-players-only: "&cFout: Dit commando kan alleen door spelers worden gebruikt."
  429. #message-error-invalid-options: "&cFout: Onbekende optie %s. Mogelijke opties zijn %s."
  430. #message-gui-enabled: "&aEnabled"
  431. #message-gui-disabled: "&cDisabled"
  432. #message-gui-middle-click: "Middle-Click"
  433. #message-gui-shift-click: "Shift + Click"
  434. #message-gui-double-click: "Double-Click"
  435. #message-gui-shift-right-click: "Shift + Right-Click"
  436. #message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  437. #message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  438. #message-gui-left-click-outside: "Left-Click from outside"
  439.  
  440. ##### French / Français - Thanks to automatizer, demon57730, FichdlMaa and Stalk3r77 for translating!
  441. # Note: The following messages have been changed in version 8.11 and need a new translation:
  442. # - message-gui-left-click
  443. # - message-gui-right-click
  444. #message-when-using-chest: "&7Astuce : Tape &6/chestsort&7 pour activer le classement automatique."
  445. #message-when-using-chest2: "&7Astuce : Tape &6/chestsort&7 pour désactiver le classement automatique."
  446. #message-sorting-disabled: "&7Le classement automatique a été &cdésactivé&7."
  447. #message-sorting-enabled: "&7Le classement automatique a été &aactivé&7."
  448. #message-inv-sorting-disabled: "&7Le classement automatique d'inventaire a été &cdésactivé&7."
  449. #message-inv-sorting-enabled: "&7Le classement automatique d'inventaire a été &aactivé&7."
  450. #message-player-inventory-sorted: "&7Ton inventaire a été trié."
  451. #message-error-players-only: "&cErreur : Cette commande ne peut être utilisée que par des joueurs."
  452. #message-error-invalid-options: "&cErreur : Option inconnue %s. Les options valides sont %s."
  453. #message-gui-enabled: "&aActivé"
  454. #message-gui-disabled: "&cDésactivé"
  455. #message-gui-middle-click: "Clic molette"
  456. #message-gui-shift-click: "Maj. + Clic"
  457. #message-gui-double-click: "Double-Clic"
  458. #message-gui-shift-right-click: "Shift + Clic droit"
  459. #message-gui-left-click: "Remplir le coffre (Clic-gauche)"
  460. #message-gui-right-click: "Vider le coffre (Clic-droit)"
  461. #message-gui-left-click-outside: "Left-Click from outside"
  462.  
  463. ##### German
  464. #message-when-using-chest: "&7Hinweis: Benutze &6/chestsort&7 um die automatische Kistensortierung zu aktivieren."
  465. #message-when-using-chest2: "&7Hinweis: Benutze &6/chestsort&7 um die automatische Kistensortierung zu deaktivieren."
  466. #message-sorting-disabled: "&7Automatische Kistensortierung &cdeaktiviert&7."
  467. #message-sorting-enabled: "&7Automatische Kistensortierung &aaktiviert&7."
  468. #message-inv-sorting-disabled: "&7Automatische Inventarsortierung &cdeaktiviert&7."
  469. #message-inv-sorting-enabled: "&7Automatische Inventarsortierung &aaktiviert&7."
  470. #message-player-inventory-sorted: "&7Dein Inventar wurde sortiert."
  471. #message-error-players-only: "&cFehler: Dieser Befehl ist nur für Spieler verfügbar."
  472. #message-error-invalid-options: "&cFehler: Unbekannte Option %s. Gültige Optionen sind %s."
  473. #message-gui-enabled: "&aAktiviert"
  474. #message-gui-disabled: "&cDeaktiviert"
  475. #message-gui-middle-click: "Mittel-Klick"
  476. #message-gui-shift-click: "Shift + Klick"
  477. #message-gui-double-click: "Doppelklick"
  478. #message-gui-shift-right-click: "Shift + Rechtsklick"
  479. #message-gui-left-click: "Kiste füllen (Linksklick/doppelter Linksklick)"
  480. #message-gui-right-click: "Kiste leeren (Rechtsklick/doppelter Rechtsklick)"
  481. #message-gui-left-click-outside: "Linksklick von außen"
  482.  
  483. ##### Hungarian - Thanks to Letter and Polaroli for translating!
  484. # Note: The following messages have been changed in version 8.11 and need a new translation:
  485. # - message-gui-left-click
  486. # - message-gui-right-click
  487. #message-when-using-chest: "&7Automatikus láda rendezés bekapcsolás: &6/chestsort"
  488. #message-when-using-chest2: "&7Automatikus láda rendezés bekapcsolás: &6/chestsort"
  489. #message-sorting-disabled: "&7Automatikus láda rendezés kikapcsolva."
  490. #message-sorting-enabled: "&7Automatikus láda rendezés bekapcsolva."
  491. #message-inv-sorting-disabled: "&7Automatikus leltár rendezés &ckikapcsolva&7."
  492. #message-inv-sorting-enabled: "&7Automatikus leltár rendezés &cbekapcsolva&7."
  493. #message-error-players-only: "&cHiba: Ezt a parancsot csak játékos használhatja."
  494. #message-player-inventory-sorted: "&7A leltárad rendezve lett."
  495. #message-error-invalid-options: "&cHiba: Ismeretlen opció %s. Helyes opció %s."
  496. #message-gui-enabled: "&aEngedélyezve"
  497. #message-gui-disabled: "&cKikapcsolva"
  498. #message-gui-middle-click: "Középső egérgomb"
  499. #message-gui-shift-click: "Shift + Klikk"
  500. #message-gui-double-click: "Dupla Kattintás"
  501. #message-gui-shift-right-click: "Shift + Jobb klikk"
  502. #message-gui-left-click: "Láda feltöltés (Bal klikk)"
  503. #message-gui-right-click: "Láda ürítés (Jobb klikk)"
  504. #message-gui-left-click-outside: "Left-Click from outside"
  505.  
  506. ##### Italian
  507. ##### Note: Some messages are still untranslated. Please send me your translation at SpigotMC
  508. #message-when-using-chest: "&7Nota: inserire &6/chestsort&7 per abilitare l'ordinamento automatico dei bauli."
  509. #message-when-using-chest2: "&7Nota: inserire &6/chestsort&7 per disabilitare l'ordinamento automatico dei bauli."
  510. #message-sorting-disabled: "&7L'ordinamento automatico dei bauli è stato &cdisattivato&7."
  511. #message-sorting-enabled: "&7L'ordinamento automatico dei bauli è stato &aattivato&7."
  512. #message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  513. #message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  514. #message-player-inventory-sorted: "&7Il tuo inventario è stato ordinato."
  515. #message-error-players-only: "&cErrore: questo comando è disponibile solo per i giocatori."
  516. #message-error-invalid-options: "&cErrore: Parametro sconosciuto %s. I parametri validi sono %s."
  517. #message-gui-enabled: "&aEnabled"
  518. #message-gui-disabled: "&cDisabled"
  519. #message-gui-middle-click: "Middle-Click"
  520. #message-gui-shift-click: "Shift + Click"
  521. #message-gui-double-click: "Double-Click"
  522. #message-gui-shift-right-click: "Shift + Right-Click"
  523. #message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  524. #message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  525. #message-gui-left-click-outside: "Left-Click from outside"
  526.  
  527. ##### Japanese - Thanks to Sefyy for translating!
  528. # Note: The following messages have been changed in version 8.11 and need a new translation:
  529. # - message-gui-left-click
  530. # - message-gui-right-click
  531. #message-when-using-chest: "&7ヒント: &6/chestsort&7 と入力して自動チェスト整理を有効にできます。"
  532. #message-when-using-chest2: "&7ヒント: &6/chestsort&7 と入力すると自動チェスト整理を無効にできます。"
  533. #message-sorting-disabled: "&7自動チェスト整理は現在&c無効&7です。"
  534. #message-sorting-enabled: "&7自動チェスト整理は現在&a有効&7です。"
  535. #message-inv-sorting-disabled: "&7自動インベントリ整理は現在&c無効&7です。"
  536. #message-inv-sorting-enabled: "&7自動インベントリ整理は現在&a有効&7です。"
  537. #message-error-players-only: "&cエラー: このコマンドはプレイヤーのみ実行できます。"
  538. #message-player-inventory-sorted: "&7あなたのインベントリは整理されました。"
  539. #message-error-invalid-options: "&cエラー: 不明なオプションです%s 有効なオプションは%s"
  540. #message-gui-enabled: "&a有効"
  541. #message-gui-disabled: "&c無効"
  542. #message-gui-middle-click: "ミドルクリック"
  543. #message-gui-shift-click: "シフト+左クリック"
  544. #message-gui-double-click: "ダブルクリック"
  545. #message-gui-shift-right-click: "シフト+右クリック"
  546. #message-gui-left-click: "チェストを埋める(左クリック)"
  547. #message-gui-right-click: "チェストを空ける(右クリック)"
  548. #message-gui-left-click-outside: "Left-Click from outside"
  549.  
  550. ##### Korean (한국어) - Thanks to kf12 for translating!
  551. ##### Note: Some messages are still untranslated. Please send me your translation at SpigotMC
  552. #message-when-using-chest: "&7정보: &6/chestsort&7 명령어로 자동 창고 정리를 활성화 할 수 있습니다."
  553. #message-when-using-chest2: "&7정보: &6/chestsort&7 명령어로 자동 창고 정리를 비활성화 할 수 있습니다."
  554. #message-sorting-disabled: "&7자동 창고 정리가 &c비활성화&7 되었습니다."
  555. #message-sorting-enabled: "&7자동 창고 정리가 &a활성화&7 되었습니다."
  556. #message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  557. #message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  558. #message-player-inventory-sorted: "&7인벤토리가 정리 되었습니다."
  559. #message-error-players-only: "&cError: 이 명령은 플레이어만 실행할 수 있습니다."
  560. #message-error-invalid-options: "&cError: 알 수 없는 옵션 %s. 올바른 옵션은 %s 입니다."
  561. #message-gui-enabled: "&a활성화"
  562. #message-gui-disabled: "&c비활성화"
  563. #message-gui-middle-click: "휠 클릭"
  564. #message-gui-shift-click: "쉬프트 + 클릭"
  565. #message-gui-double-click: "더블 클릭"
  566. #message-gui-shift-right-click: "쉬프트 + 우클릭"
  567. #message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  568. #message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  569. #message-gui-left-click-outside: "Left-Click from outside"
  570.  
  571. ##### Polish - Thanks to PLKaratusPL for translating!
  572. #message-when-using-chest: "&7Wskazówka: Wpisz &6/chestsort&7 by włączyć automatyczne sortowanie skrzyń."
  573. #message-when-using-chest2: "&7Wskazówka: Wpisz &6/chestsort&7 by wyłączyć automatyczne sortowanie skrzyń."
  574. #message-sorting-disabled: "&7Automatyczne sortowanie skrzyń zostało &cwyłączone&7."
  575. #message-sorting-enabled: "&7Automatyczne sortowanie skrzyń zostało &awłączone&7."
  576. #message-inv-sorting-disabled: "&7Automatyczne sortowanie ekwipunku zostało &cwyłączone&7."
  577. #message-inv-sorting-enabled: "&7Automatyczne sortowanie ekwipunku zostało &awłączone&7."
  578. #message-player-inventory-sorted: "&7Twój ekwipunek został posortowany."
  579. #message-error-players-only: "&cBłąd: To polecenie może być używane tylko przez graczy."
  580. #message-error-invalid-options: "&cBłąd: Nieznana opcja %s. Prawidłowe opcje to %s."
  581. #message-gui-enabled: "&aWłączone"
  582. #message-gui-disabled: "&cWyłączone"
  583. #message-gui-middle-click: "Środkowy Przycisk Myszy"
  584. #message-gui-shift-click: "Shift + Kliknięcie"
  585. #message-gui-double-click: "Podwójne Kliknięcie"
  586. #message-gui-shift-right-click: "Shift + PPM"
  587. #message-gui-left-click: "Wypełnienie Skrzyni (LPM/Podwójny LPM)"
  588. #message-gui-right-click: "Opróżnienie Skrzyni (PPM/Podwójny PPM)"
  589. #message-gui-left-click-outside: "Left-Click from outside"
  590.  
  591. ##### Portuguese - Thanks to wildastral for translating!
  592. ##### Note: Some messages are still untranslated. Please send me your translation at SpigotMC
  593. #message-when-using-chest: "&7Dica: Digite &6/chestsort&7 para habilitar a organização automática."
  594. #message-when-using-chest2: "&7Dica: Digite &6/chestsort&7 para desabilitar a organização automática."
  595. #message-sorting-disabled: "&7A Organização automática de baús foi &cdesabilitada&7."
  596. #message-sorting-enabled: "&7A Organização automática de baús foi &ahabilitada&7."
  597. #message-inv-sorting-disabled: "&7Automatic inventory sorting has been &cdisabled&7."
  598. #message-inv-sorting-enabled: "&7Automatic inventory sorting has been &aenabled&7."
  599. #message-player-inventory-sorted: "&7Seu inventário foi organizado."
  600. #message-error-players-only: "&cErro: Esse comando não pode ser executado por jogadores."
  601. #message-error-invalid-options: "&cError: Unknown option %s. Valid options are %s."
  602. #message-gui-enabled: "&aEnabled"
  603. #message-gui-disabled: "&cDisabled"
  604. #message-gui-middle-click: "Middle-Click"
  605. #message-gui-shift-click: "Shift + Click"
  606. #message-gui-double-click: "Double-Click"
  607. #message-gui-shift-right-click: "Shift + Right-Click"
  608. #message-gui-left-click: "Fill Chest (Left-Click/Double-Left-Click)"
  609. #message-gui-right-click: "Empty Chest (Right-Click/Double-Right-Click)"
  610. #message-gui-left-click-outside: "Left-Click from outside"
  611.  
  612. ##### Russian
  613. #message-when-using-chest: "&7Подсказка: введите &6/chestsort&7, чтобы включить автоматическую сортировку вещей в сундуках."
  614. #message-when-using-chest2: "&7Подсказка: введите &6/chestsort&7, чтобы отключить автоматическую сортировку вещей в сундуках."
  615. #message-sorting-disabled: "&7Автоматическая сортировка вещей в сундуках была &cотключена&7."
  616. #message-sorting-enabled: "&7Автоматическая сортировка вещей в сундуках была &aвключена&7."
  617. #message-inv-sorting-disabled: "&7Автоматическая сортировка вещей в инвентаре &cотключена&7."
  618. #message-inv-sorting-enabled: "&7Автоматическая сортировка вещей в инвентаре &aвключена&7."
  619. #message-player-inventory-sorted: "&7Ваш инвентарь был отсортирован."
  620. #message-error-players-only: "&cОшибка: эта команда может быть использована только игроками."
  621. #message-error-invalid-options: "&cОшибка: Неизвестная опция %s. Допустимые опции: %s."
  622. #message-gui-enabled: "&aАктивировано"
  623. #message-gui-disabled: "&cОтключено"
  624. #message-gui-middle-click: "Колесико"
  625. #message-gui-shift-click: "Shift + Клик"
  626. #message-gui-double-click: "Двойной клик"
  627. #message-gui-shift-right-click: "Shift + Правый клик"
  628. #message-gui-left-click: "Заполнить сундук (ЛКМ/Двойной ЛКМ)"
  629. #message-gui-right-click: "Освободить сундук (ПКМ/Двойной ПКМ)"
  630. #message-gui-left-click-outside: "Left-Click from outside"
  631.  
  632. ##### Spanish
  633. #message-when-using-chest: "&7Sugerencia: Escribe &6/chestsort&7 para activar la clasificación automática de cofres."
  634. #message-when-using-chest2: "&7Sugerencia: Escribe &6/chestsort&7 para desactivar la clasificación automática de cofres."
  635. #message-sorting-disabled: "&7Se ha &cdesactivado&7 la clasificación automática de cofres."
  636. #message-sorting-enabled: "&7Se ha &cactivado&7 la clasificación automática de cofres."
  637. #message-inv-sorting-disabled: "&7Se ha &cdesactivado&7 la clasificación automática del inventario."
  638. #message-inv-sorting-enabled: "&7Se ha &cactivado&7 la clasificación automática del inventario."
  639. #message-player-inventory-sorted: "Su inventario ha sido clasificado."
  640. #message-error-players-only: "&cError: Este comando sólo puede ser ejecutado por jugadores."
  641. #message-error-invalid-options: "&cError: Opción desconocida %s. Las opciones válidas son %s."
  642. #message-gui-enabled: "&aActivado"
  643. #message-gui-disabled: "&cDesactivado"
  644. #message-gui-middle-click: "Clic Central"
  645. #message-gui-shift-click: "Mayus + Clic"
  646. #message-gui-double-click: "Doble Clic"
  647. #message-gui-shift-right-click: "Mayus + Clic Derecho"
  648. #message-gui-left-click: "Llenar Cofre (Clic Izquierdo / Doble Clic Izquierdo)"
  649. #message-gui-right-click: "Vaciar Cofre (Clic Derecho / Doble Clic Derecho)"
  650. #message-gui-left-click-outside: "Left-Click from outside"
  651.  
  652. ##### Turkish
  653. #message-when-using-chest: "&7İpucu: &6/chestsort&7 yazarak otomatik sandık düzenlemesini aktif edebilirsiniz"
  654. #message-when-using-chest2: "&7İpucu: &6/chestsort&7 yazarak otomatik sandık düzenlemesini deaktif edebilirsiniz."
  655. #message-sorting-disabled: "&7Otomatik sandık düzenlemesi &cdeaktifleştirildi&7."
  656. #message-sorting-enabled: "&7Otomatik sandık düzenlemesi &aaktifleştirildi&7."
  657. #message-inv-sorting-disabled: "&7Otomatik envanter düzenlemesi &cdeaktifleştirildi&7."
  658. #message-inv-sorting-enabled: "&7Otomatik envanter düzenlemesi &aaktifleştirildi&7."
  659. #message-player-inventory-sorted: "&7Envanteriniz Düzenlendi."
  660. #message-error-players-only: "&cHata: Bu komut yalnızca oyuncular tarafından kullanılabilir."
  661. #message-error-invalid-options: "&cHata: Bilinmeyen Ayar %s. Geçerli seçenekler %s."
  662. #message-gui-enabled: "&aAktifleştirildi"
  663. #message-gui-disabled: "&cDeaktifleştirildi"
  664. #message-gui-middle-click: "Orta tık"
  665. #message-gui-shift-click: "Shift + Sol tık"
  666. #message-gui-double-click: "Çift sol tık"
  667. #message-gui-shift-right-click: "Shift + Sağ tık"
  668. #message-gui-left-click: "Sandığı doldur (Sol tık/Çift sol tık)"
  669. #message-gui-right-click: "Sandığı boşalt (Sağ tık/Çift sağ tık)"
  670. #message-gui-left-click-outside: "Left-Click from outside"
  671.  
  672. ############################
  673. ##### Technical stuff! #####
  674. ############################
  675.  
  676. # If you want to reorganize your category files, you can temporarily enable
  677. # the dump option to get a .csv file that includes EVERY available material
  678. # with its associated category. This way, you can easily find items that
  679. # have not yet been assigned to a category.
  680. dump: false
  681.  
  682. # Debug mode - you probably do not want this.
  683. debug: false
  684. debug2: false
  685.  
  686. # Enable log - you probably do not want this.
  687. log: false
  688.  
  689. # Please DO NOT change the following line manually!
  690. # It is used by the automatic config updater.
  691. config-version: 50
  692.  
Add Comment
Please, Sign In to add comment