localizable

This commit is contained in:
Chris Danford
2006-01-07 06:47:24 +00:00
parent 850decc091
commit 4d49c60bff
3 changed files with 17 additions and 12 deletions
@@ -21,11 +21,11 @@ function FindSelection( list )
end
-- Look up each value in a table, returning a table with the resulting strings.
function TableMetricLookup( t, group )
function TableStringLookup( t, group )
local ret = { }
for key, val in t do
Trace(val)
ret[key] = THEME:GetMetric(group,val)
ret[key] = THEME:GetString(group,val)
end
return ret
end