🇬🇧🇬🇧 🇬🇧 תרגום

אפשר לתרגם הכל ב ItemsAdder,זה ממש פשוט.

תרגום דברים

איך לתרגם את החפצים ב-ItemsAdder

אם אתם רוצים לתרגם את החפצים בפלאגין פשוט העתיקו אותם מהקובץ שלי.\

  • open folder plugins\ItemsAdder\data\items_packs\dictionaries\ia_default_items

  • copy and paste the file en.yml

  • change dictionary-lang from en to your language identifier (example fr)

  • translate everything you want

  • open config.yml and set dictionaries-lang to your language identifier (example fr)

  • reload the plugin or restart the server

Create your own translation for your new items

To create your own translations for your own items (you won't likely need this, but if you want to share your items online in the future it would be better to make them translatable) you just have to create a new file wherever you want (I'd put it inside the dictionariesfolder for easier organization, but you can put anywhere inside items_packs).

This is how it looks like:

info:
  namespace: special_items_lang
  dictionary-lang: "fr"
dictionary:
  display-name-my_sword: épée de saleté
  display-name-my_item: j'aime la baguette

And this is how my items file looks like:

info:
  namespace: special_items
items:
  my_sword:
    display_name: display-name-my_sword
    permission: my_sword
    resource:
      material: DIAMOND_SWORD
      generate: true
      textures:
      - item/my_sword.png
    durability:
      max_custom_durability: 1324

As you can see I set the display_nameto "display-name-my_sword", this will tell IA to replace the text with text from the dictionary, so sword would be named "épée de saleté".

You can skip the translation part and do this directly, but this won't allow you to easily translate items in the future if you need to.

info:
  namespace: special_items
items:
  my_sword:
    display_name: "épée de saleté"
    permission: my_sword
    resource:
      material: DIAMOND_SWORD
      generate: true
      textures:
      - item/my_sword.png
    durability:
      max_custom_durability: 1324

Translate commands and messages

You just have to open lang folder and copy and paste en.yml, then translate it and change the lang setting in config.yml to your file name.

Last updated