1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-02 22:25:48 +01:00

Renamed "Aperçu" into "Mini-Preview" in visible places

Having an thing whose name requires special UTF-8 character to be properly
displayed is a source of portability problem (including xgettext issue
reported by Alwin);

Considering also that this french word is only understood (sparesely) in
Great Britain, but not by international english speaking community;

This patch then replace it by the "Mini-Preview" suggested by Yuri
Tarasievich, which is more likely to be understood.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2014-12-31 01:08:56 +01:00
committed by Carlos R. Mafra
parent e78e485fb3
commit 35fe34ac85
5 changed files with 9 additions and 9 deletions

View File

@@ -93,7 +93,7 @@ typedef struct _Panel {
} _Panel;
/*
* Minimum size for an Apercu:
* Minimum size for a Mini-Preview:
* This value is actually twice the size of the minimum icon size choosable.
* We set the slider min to taht number minus one, because when set to this
* value WPrefs will consider that the user wants the feature turned off.
@@ -197,7 +197,7 @@ static void showData(_Panel * panel)
i = 9;
WMSetPopUpButtonSelectedItem(panel->sizeP, i);
/* Apercu */
/* Mini-Previews for Icons */
b = GetBoolForKey("MiniwindowApercuBalloons");
if (b) {
i = GetIntegerForKey("ApercuSize");
@@ -339,13 +339,13 @@ static void createPanel(Panel * p)
WMMapSubwidgets(panel->sizeF);
/***************** Apercu ****************/
/***************** Mini-Previews ****************/
panel->apercu.frame = WMCreateFrame(panel->box);
WMResizeWidget(panel->apercu.frame, 156, 52);
WMMoveWidget(panel->apercu.frame, 124, 168);
WMSetFrameTitle(panel->apercu.frame, _("Miniwindow aperçus"));
WMSetFrameTitle(panel->apercu.frame, _("Mini-Previews for Icons"));
WMSetBalloonTextForView(_("The Aperçu provides a small view of the content of the\n"
WMSetBalloonTextForView(_("The Mini-Preview provides a small view of the content of the\n"
"window when the mouse is placed over the icon."),
WMWidgetView(panel->apercu.frame));