Actions
Bug #36
closedxbox "general" string
Start date:
Due date:
% Done:
0%
Resolution:
wontfix
Affected Version:
Description
Initially posted here by mikko70, 11/12/09. In English, both string id 128 and 16000 read as "General".
xbox with PMIII rev 25497 in system information first line is used string "general" id 128
in program setting first line is used string "general" id 16000 in system settings first line is used string "general" id 128 ,better is use id 16000 translation is easier when use same string in same thing
GUISettings.cpp need change
// System settings
[[AddGroup]](4, 13000);
#ifdef HAS_XBOX_HARDWARE
AddCategory(4, "system", 128);
to
// System settings
[[AddGroup]](4, 13000);
#ifdef HAS_XBOX_HARDWARE
AddCategory(4, "system", 16000);
as is
// Programs settings
[[AddGroup]](1, 0); [[AddCategory]](1, "myprograms", 16000);
Updated by buzz over 10 years ago
- Status changed from New to Closed
- Resolution set to wontfix
- Affected Version set to 3.0
Actions