more localization for custom options lines

This commit is contained in:
AJ Kelly
2011-10-21 11:37:15 -05:00
parent 1d1bde300e
commit 94227f8050
2 changed files with 18 additions and 3 deletions
+6
View File
@@ -194,6 +194,12 @@ Explanation-Exit=Return to the title menu.
[OptionNames]
Custom=Special
Many=Many
Few=Few
Normal=Normal
Lower=Lower
Short=Short
Long=Long
[ScreenTestInput]
HelpText=Hold &BACK; or &START; to exit.
+12 -3
View File
@@ -202,7 +202,10 @@ function UserPrefShowLotsaOptions()
SelectType = "SelectOne",
OneChoiceForAllPlayers = true,
ExportOnChange = false,
Choices = { 'Many','Few' },
Choices = {
THEME:GetString('OptionNames','Many'),
THEME:GetString('OptionNames','Few')
},
LoadSelections = function(self, list, pn)
if ReadPrefFromFile("UserPrefShowLotsaOptions") ~= nil then
if GetUserPrefB("UserPrefShowLotsaOptions") then
@@ -297,7 +300,10 @@ function UserPrefNotePosition()
SelectType = "SelectOne",
OneChoiceForAllPlayers = true,
ExportOnChange = false,
Choices = { 'Normal','Lower' },
Choices = {
THEME:GetString('OptionNames','Normal'),
THEME:GetString('OptionNames','Lower')
},
LoadSelections = function(self, list, pn)
if ReadPrefFromFile("UserPrefNotePosition") ~= nil then
if GetUserPrefB("UserPrefNotePosition") then
@@ -328,7 +334,10 @@ function UserPrefLongFail()
SelectType = "SelectOne",
OneChoiceForAllPlayers = true,
ExportOnChange = false,
Choices = { 'Short','Long' },
Choices = {
THEME:GetString('OptionNames','Short'),
THEME:GetString('OptionNames','Long')
},
LoadSelections = function(self, list, pn)
if ReadPrefFromFile("UserPrefLongFail") ~= nil then
if GetUserPrefB("UserPrefLongFail") then