mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 13:13:58 +00:00
GUI: Added comments for translators for GUI scale options
This commit is contained in:
parent
9a31a8926c
commit
bcecf62f17
@ -130,7 +130,13 @@ enum {
|
||||
static const char *savePeriodLabels[] = { _s("Never"), _s("Every 5 mins"), _s("Every 10 mins"), _s("Every 15 mins"), _s("Every 30 mins"), nullptr };
|
||||
static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 };
|
||||
|
||||
static const char *guiBaseLabels[] = { _s("Auto"), _s("Large"), _s("Medium"), _s("Small"), nullptr };
|
||||
static const char *guiBaseLabels[] = {
|
||||
_s("Auto"), // I18N: Automatic GUI scaling
|
||||
_s("Large"), // I18N: Large GUI scale
|
||||
_s("Medium"), // I18N: Medium GUI scale
|
||||
_s("Small"), // I18N: Small GUI scale
|
||||
nullptr
|
||||
};
|
||||
static const int guiBaseValues[] = { 0, 240, 480, 720, -1 };
|
||||
|
||||
// The keyboard mouse speed values range from 0 to 7 and correspond to speeds shown in the label
|
||||
|
Loading…
x
Reference in New Issue
Block a user