Thread Tools Display Modes
04/21/14, 04:42 AM   #1
Elenthil
Join Date: Apr 2014
Posts: 3
Localized Addons

Hi,

first i must say i have nearly no experience in coding lua.

I can read the code and motivy it a little bit.

My problem is, i need a list of the localized names of all skills and morphs.

Background for this is, i try to localize FTC to show the buffs and debuffs in the german client.

I have found a way to parse the german skill / Ability names in the game but i can not find all the morphs

please give me some hint or best where a little code to parse the localized names.

thanks
  Reply With Quote
04/21/14, 06:21 AM   #2
BadVolt
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 74
Originally Posted by Elenthil View Post
Hi,

first i must say i have nearly no experience in coding lua.

I can read the code and motivy it a little bit.

My problem is, i need a list of the localized names of all skills and morphs.

Background for this is, i try to localize FTC to show the buffs and debuffs in the german client.

I have found a way to parse the german skill / Ability names in the game but i can not find all the morphs

please give me some hint or best where a little code to parse the localized names.

thanks
Most of settings localisations are stored in table "EsoStrings". You can check there...

to show this table:

Lua Code:
  1. for k,v in pairs(EsoStrings) do
  2.    d("Param:"..tostring(k).."Value: "..tostring(v))
  3. end

Last edited by BadVolt : 04/21/14 at 06:26 AM.
  Reply With Quote
04/21/14, 08:21 AM   #3
Elenthil
Join Date: Apr 2014
Posts: 3
thank you.

this helps me a little bit more

but can you give me a code to but the strings in savidvariables, so i can work with it outside of ESO?

as i write bevor, i'm not a coder and Lua is compled new for me.

maybe we can have a little addon that write all the localized strings in a savidvariable.

thanks
  Reply With Quote
04/21/14, 08:30 AM   #4
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Elenthil View Post
...
I have found a way to parse the german skill / Ability names in the game but i can not find all the morphs

please give me some hint or best where a little code to parse the localized names.

thanks
Try this site, there is skill database with both german and english names.

http://www.elderscrollsbote.de/skills/
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » Localized Addons


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