more localization for custom options lines
This commit is contained in:
@@ -194,6 +194,12 @@ Explanation-Exit=Return to the title menu.
|
|||||||
|
|
||||||
[OptionNames]
|
[OptionNames]
|
||||||
Custom=Special
|
Custom=Special
|
||||||
|
Many=Many
|
||||||
|
Few=Few
|
||||||
|
Normal=Normal
|
||||||
|
Lower=Lower
|
||||||
|
Short=Short
|
||||||
|
Long=Long
|
||||||
|
|
||||||
[ScreenTestInput]
|
[ScreenTestInput]
|
||||||
HelpText=Hold &BACK; or &START; to exit.
|
HelpText=Hold &BACK; or &START; to exit.
|
||||||
|
|||||||
@@ -202,7 +202,10 @@ function UserPrefShowLotsaOptions()
|
|||||||
SelectType = "SelectOne",
|
SelectType = "SelectOne",
|
||||||
OneChoiceForAllPlayers = true,
|
OneChoiceForAllPlayers = true,
|
||||||
ExportOnChange = false,
|
ExportOnChange = false,
|
||||||
Choices = { 'Many','Few' },
|
Choices = {
|
||||||
|
THEME:GetString('OptionNames','Many'),
|
||||||
|
THEME:GetString('OptionNames','Few')
|
||||||
|
},
|
||||||
LoadSelections = function(self, list, pn)
|
LoadSelections = function(self, list, pn)
|
||||||
if ReadPrefFromFile("UserPrefShowLotsaOptions") ~= nil then
|
if ReadPrefFromFile("UserPrefShowLotsaOptions") ~= nil then
|
||||||
if GetUserPrefB("UserPrefShowLotsaOptions") then
|
if GetUserPrefB("UserPrefShowLotsaOptions") then
|
||||||
@@ -297,7 +300,10 @@ function UserPrefNotePosition()
|
|||||||
SelectType = "SelectOne",
|
SelectType = "SelectOne",
|
||||||
OneChoiceForAllPlayers = true,
|
OneChoiceForAllPlayers = true,
|
||||||
ExportOnChange = false,
|
ExportOnChange = false,
|
||||||
Choices = { 'Normal','Lower' },
|
Choices = {
|
||||||
|
THEME:GetString('OptionNames','Normal'),
|
||||||
|
THEME:GetString('OptionNames','Lower')
|
||||||
|
},
|
||||||
LoadSelections = function(self, list, pn)
|
LoadSelections = function(self, list, pn)
|
||||||
if ReadPrefFromFile("UserPrefNotePosition") ~= nil then
|
if ReadPrefFromFile("UserPrefNotePosition") ~= nil then
|
||||||
if GetUserPrefB("UserPrefNotePosition") then
|
if GetUserPrefB("UserPrefNotePosition") then
|
||||||
@@ -328,7 +334,10 @@ function UserPrefLongFail()
|
|||||||
SelectType = "SelectOne",
|
SelectType = "SelectOne",
|
||||||
OneChoiceForAllPlayers = true,
|
OneChoiceForAllPlayers = true,
|
||||||
ExportOnChange = false,
|
ExportOnChange = false,
|
||||||
Choices = { 'Short','Long' },
|
Choices = {
|
||||||
|
THEME:GetString('OptionNames','Short'),
|
||||||
|
THEME:GetString('OptionNames','Long')
|
||||||
|
},
|
||||||
LoadSelections = function(self, list, pn)
|
LoadSelections = function(self, list, pn)
|
||||||
if ReadPrefFromFile("UserPrefLongFail") ~= nil then
|
if ReadPrefFromFile("UserPrefLongFail") ~= nil then
|
||||||
if GetUserPrefB("UserPrefLongFail") then
|
if GetUserPrefB("UserPrefLongFail") then
|
||||||
|
|||||||
Reference in New Issue
Block a user