actions: Use Settings rather than Preferences on MacOS
Per Lukas Oberhuber, Preferences should be called Settings on MacOS, as it was before the GTK3 menu port.
This commit is contained in:
parent
47dde0580a
commit
519f301c65
1 changed files with 6 additions and 0 deletions
|
|
@ -307,9 +307,15 @@ gint n_dialogs_dockable_actions = G_N_ELEMENTS (dialogs_dockable_actions);
|
|||
static const GimpStringActionEntry dialogs_toplevel_actions[] =
|
||||
{
|
||||
{ "dialogs-preferences", GIMP_ICON_PREFERENCES_SYSTEM,
|
||||
#if defined(PLATFORM_OSX)
|
||||
NC_("dialogs-action", "_Settings..."),
|
||||
NC_("dialogs-action", "_Settings..."),
|
||||
{ "<primary>,", NULL },
|
||||
#else
|
||||
NC_("dialogs-action", "_Preferences"),
|
||||
NC_("dialogs-action", "_Preferences"),
|
||||
{ NULL },
|
||||
#endif
|
||||
NC_("dialogs-action", "Open the preferences dialog"),
|
||||
"gimp-preferences-dialog",
|
||||
GIMP_HELP_PREFS_DIALOG },
|
||||
|
|
|
|||
Loading…
Reference in a new issue