Thread Tools Display Modes
Prev Previous Post   Next Post Next
08/04/16, 10:01 AM   #1
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
LF translations for LibAddonMenu

Hi everyone,

Thanks to TERAB1T I noticed that there was an untranslated string in LAM. I have updated the localization system in LAM for r22 and also plan to add a new feature that needs translation. The German and Russian translations are complete, but I still need French, Spanish and Japanese (already sent a pm to k0ta0uchi). If there are any other custom localization projects that I am not aware of, I am also looking for translations into these. For now I used Google Translate to make placeholders:
Lua Code:
  1. local localization = {
  2.     en = {
  3.         PANEL_NAME = "Addon Settings",
  4.         AUTHOR = string.format("%s: <<X:1>>", GetString(SI_ADDON_MANAGER_AUTHOR)), -- "Author: <<X:1>>"
  5.         VERSION = "Version: <<X:1>>",
  6.         WEBSITE = "Visit Website",
  7.         PANEL_INFO_FONT = "$(CHAT_FONT)|14|soft-shadow-thin",
  8.     },
  9.     fr = { -- provided by ?
  10.         PANEL_NAME = "Extensions",
  11.         WEBSITE = "Visitez le site Web", -- TODO Google Translate placeholder
  12.     },
  13.     de = { -- provided by sirinsidiator
  14.         PANEL_NAME = "Erweiterungen",
  15.         WEBSITE = "Webseite besuchen",
  16.     },
  17.     ru = { -- provided by TERAB1T
  18.         PANEL_NAME = "дополнений",
  19.         VERSION = "Версия: <<X:1>>",
  20.         WEBSITE = "Перейти на сайт",
  21.         PANEL_INFO_FONT = "RuESO/fonts/Univers57.otf|14|soft-shadow-thin",
  22.     },
  23.     es = { -- provided by Luisen75
  24.         PANEL_NAME = "Configura Addons",
  25.         VERSION = "Versión: <<X:1>>", -- TODO Google Translate placeholder
  26.         WEBSITE = "Visita el sitio web", -- TODO Google Translate placeholder
  27.     },
  28.     jp = { -- provided by k0ta0uchi
  29.         PANEL_NAME = "アドオン設定",
  30.         VERSION = "版: <<X:1>>", -- TODO Google Translate placeholder
  31.         WEBSITE = "ウェブサイトにアクセス", -- TODO Google Translate placeholder
  32.     },
  33. }
Thanks for your help.

Last edited by sirinsidiator : 08/04/16 at 10:04 AM.
  Reply With Quote
 

ESOUI » Developer Discussions » Translation Help » LF translations for LibAddonMenu


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off