Using the localize command isn't necessary (at least, not on my pc
)
First, create the stringtable.csv and make a few strings.
STR_Example,"This is a test"
Then create a description.ext and include this:
class CfgSounds
{
sounds[] = { STR_Example };
class STR_Example
{
name = "STR_Example";
sound[] = {"\sounds\STR_Example.ogg", db+40, 1.0};
titles[] = { 1, $STR_Example };
};
};
In the mission, use this:
titleText ["STR_Example","PLAIN DOWN"];
Not tested, works with the: unitname say "STR_Example".