view libgui/src/gui-preferences-sd.h @ 31558:69c8979f8b2c stable

fix missing trnaslation for new strings in settings dialog (bug #63404) * gui-preferences-sd.h: move new string constants to here * gui-settings.h: move new string constatns from here but leave the constants that are required in several different widgets * settings-dialog.cc (settings_dialog): use tr () for new strings here, too; (read_workspace_colors): dito; (read_terminal_colors): dito; (read_varedit_colors): dito;
author Torsten Lilge <ttl-octave@mailbox.org>
date Sun, 27 Nov 2022 11:27:29 +0100
parents 796f54d4ddbf
children aae24eaf89ad 597f3ee61a48
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2017-2022 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_gui_preferences_sd_h)
#define octave_gui_preferences_sd_h 1

#include "gui-preferences.h"

// Settings dialog

const gui_pref
sd_geometry ("settings/geometry", QVariant ());

const gui_pref
sd_last_tab ("settings/last_tab", QVariant (0));

const gui_pref
sd_last_editor_styles_tab ("settings/last_editor_styles_tab", QVariant (0));

// Textstrings for second color schemes
const QString settings_color_modes = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "Second color mode (light/dark)");
const QString settings_color_modes_tooltip = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "Switches to another set of colors.\n"
    "Useful for defining a dark/light mode.\n"
    "Discards non-applied current changes!");
const QString settings_reload_colors = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "&Reload default colors");
const QString settings_reload_colors_tooltip = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "Reloads the default colors,\n"
    "depending on currently selected mode.");
const QString settings_reload_styles = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "&Reload default styles");
const QString settings_reload_styles_tooltip = QT_TRANSLATE_NOOP (
    "octave::settings_dialog",
    "Reloads the default values of the styles,\n"
    "depending on currently selected mode.");

#endif