View Single Post
09/10/20, 06:41 PM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,979
I'd recommand preparing your addons to support language files, like described here:
https://wiki.esoui.com/How_to_add_localization_support

And then create a standard/base language file (e.g. English -> "en.lua", as it's best known worldwide and easy to translate from) to provide the strings that need to be translated.
Also provide 1 example file of another language, e.g. de.lua, containing the entries with English text
Lua Code:
  1. SafeAddString(YOUR_ADDON_NAME_GLOBALLY_UNIQUE_STRING_ID, "Your translation for the other language", 2)

Users can just translate the lines then to their language and send you the files again.

Either share the files via GitHub if your addons are at GitHub, or provide a zip file so one can download, translate and send you the translated lua files again.
You are also able to attach files to your post here.
  Reply With Quote