Skip to content

Translations

Rhythmic edited this page May 8, 2025 · 2 revisions

Traditional Chinese - Credit: @Nuyan0891

locale.yml

message:
  teleport-delay: "<green>傳送中!請稍等 <value>秒!</green>"
  傳送成功: "<green>傳送到 <x-loc>, <y-loc>, <z-loc> 在 <world>!"
  傳送取消: "<red>Teleport Cancelled</red>"
insert:
  x-location: "<yellow><value>x</yellow>"
  y-location: "<yellow><value>y</yellow>"
  z-location: "<yellow><value>z</yellow>"
  world: "<yellow><value></yellow>"
  hour: "<yellow><hour>H </yellow>"
  minute: "<yellow><minute>m </yellow>"
  second: "<yellow><second>s</yellow>"
error: 
  must-be-player: "<red>必須許有權限才能使用此指令</red>"
  no-back-locations: "<gray>沒有上一個紀錄點</gray>"
  command-cooldown: "<gray>請稍後 冷卻時間還有: [<hour><minute><second>]!</gray>"
  blacklisted-world: "<red>Sorry, the world you are trying to return to is blacklisted!</red>"
plugin:
  reloaded: "<gold>SimpleBack plugin reloaded</gold>"

plugin.yml

name: SimpleBack
version: '0.0.0'
main: simplexity.simpleback.SimpleBack
api-version: '1.20'
commands:
  back:
    permission: back.use
    description: 傳送回你上一個傳送的點
  backreload:
    permission: back.reload
    description: 重新讀取config
permissions:
  back.use:
    default: true
    description: 使用back指令
  back.bypass:
    default: op
    description: Bypass any restrictions set in the config
    children:
      back.bypass.delay: true
      back.bypass.movement: true
      back.bypass.worlds: true
      back.bypass.cooldown: true
  back.bypass.delay:
    default: op
    description: 忽略傳送延遲
  back.bypass.movement:
    default: op
    description: 忽略'無法移動'的傳送延遲
  back.bypass.worlds:
    default: op
    description: 忽略黑名單使用/back
  back.bypass.cooldown:
    default: op
    description: 忽略冷卻時間使用/back
  back.reload:
    default: op
    description: 重新讀取config
Clone this wiki locally