mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-31 19:12:32 +01:00
fixed msg texts
This commit is contained in:
@@ -416,7 +416,7 @@ createPanel(Panel *p)
|
|||||||
WMResizeWidget(panel->noteL, 235, 28);
|
WMResizeWidget(panel->noteL, 235, 28);
|
||||||
WMMoveWidget(panel->noteL, 10, 85);
|
WMMoveWidget(panel->noteL, 10, 85);
|
||||||
WMSetLabelFont(panel->noteL, font);
|
WMSetLabelFont(panel->noteL, font);
|
||||||
WMSetLabelText(panel->noteL, _("Note: sound requires a module distributed separately"));
|
WMSetLabelText(panel->noteL, _("Note: sound requires a module distributed\nseparately"));
|
||||||
|
|
||||||
WMMapSubwidgets(panel->animF);
|
WMMapSubwidgets(panel->animF);
|
||||||
|
|
||||||
@@ -456,14 +456,14 @@ createPanel(Panel *p)
|
|||||||
WMMoveWidget(panel->dith1L, 5, 50);
|
WMMoveWidget(panel->dith1L, 5, 50);
|
||||||
WMSetLabelTextAlignment(panel->dith1L, WACenter);
|
WMSetLabelTextAlignment(panel->dith1L, WACenter);
|
||||||
WMSetLabelFont(panel->dith1L, font);
|
WMSetLabelFont(panel->dith1L, font);
|
||||||
WMSetLabelText(panel->dith1L, _("More colors for applications"));
|
WMSetLabelText(panel->dith1L, _("More colors for\napplications"));
|
||||||
|
|
||||||
panel->dith2L = WMCreateLabel(panel->dithF);
|
panel->dith2L = WMCreateLabel(panel->dithF);
|
||||||
WMResizeWidget(panel->dith2L, 70, 35);
|
WMResizeWidget(panel->dith2L, 70, 35);
|
||||||
WMMoveWidget(panel->dith2L, 180, 50);
|
WMMoveWidget(panel->dith2L, 180, 50);
|
||||||
WMSetLabelTextAlignment(panel->dith2L, WACenter);
|
WMSetLabelTextAlignment(panel->dith2L, WACenter);
|
||||||
WMSetLabelFont(panel->dith2L, font);
|
WMSetLabelFont(panel->dith2L, font);
|
||||||
WMSetLabelText(panel->dith2L, _("More colors for WindowMaker"));
|
WMSetLabelText(panel->dith2L, _("More colors for\nWindowMaker"));
|
||||||
|
|
||||||
WMMapSubwidgets(panel->dithF);
|
WMMapSubwidgets(panel->dithF);
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ showData(_Panel *panel)
|
|||||||
WMSetButtonSelected(panel->swi[1], WMGetUDBoolForKey(udb, "NoXSetStuff"));
|
WMSetButtonSelected(panel->swi[1], WMGetUDBoolForKey(udb, "NoXSetStuff"));
|
||||||
WMSetButtonSelected(panel->swi[2], GetBoolForKey("SaveSessionOnExit"));
|
WMSetButtonSelected(panel->swi[2], GetBoolForKey("SaveSessionOnExit"));
|
||||||
WMSetButtonSelected(panel->swi[3], GetBoolForKey("UseSaveUnders"));
|
WMSetButtonSelected(panel->swi[3], GetBoolForKey("UseSaveUnders"));
|
||||||
WMSetButtonSelected(panel->swi[4], GetBoolForKey("WindowsCycling"));
|
WMSetButtonSelected(panel->swi[4], GetBoolForKey("WindozeCycling"));
|
||||||
WMSetButtonSelected(panel->swi[5], GetBoolForKey("DontConfirmKill"));
|
WMSetButtonSelected(panel->swi[5], GetBoolForKey("DontConfirmKill"));
|
||||||
WMSetButtonSelected(panel->swi[6], GetBoolForKey("DisableBlinking"));
|
WMSetButtonSelected(panel->swi[6], GetBoolForKey("DisableBlinking"));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -361,13 +361,13 @@ createPanel(Panel *p)
|
|||||||
panel->ignB = WMCreateSwitchButton(panel->optF);
|
panel->ignB = WMCreateSwitchButton(panel->optF);
|
||||||
WMResizeWidget(panel->ignB, 210, 50);
|
WMResizeWidget(panel->ignB, 210, 50);
|
||||||
WMMoveWidget(panel->ignB, 15, 10);
|
WMMoveWidget(panel->ignB, 15, 10);
|
||||||
WMSetButtonText(panel->ignB, _("Do not let applications receive the "\
|
WMSetButtonText(panel->ignB, _("Do not let applications receive\n"
|
||||||
"click used to focus windows."));
|
"the click used to focus windows."));
|
||||||
|
|
||||||
panel->newB = WMCreateSwitchButton(panel->optF);
|
panel->newB = WMCreateSwitchButton(panel->optF);
|
||||||
WMResizeWidget(panel->newB, 210, 35);
|
WMResizeWidget(panel->newB, 210, 35);
|
||||||
WMMoveWidget(panel->newB, 15, 70);
|
WMMoveWidget(panel->newB, 15, 70);
|
||||||
WMSetButtonText(panel->newB, _("Automatically focus new windows."));
|
WMSetButtonText(panel->newB, _("Automatically focus new\nwindows."));
|
||||||
|
|
||||||
WMMapSubwidgets(panel->optF);
|
WMMapSubwidgets(panel->optF);
|
||||||
|
|
||||||
|
|||||||
@@ -456,6 +456,7 @@ createPanel(Panel *p)
|
|||||||
WMResizeWidget(panel->instructionsL, 160, 55);
|
WMResizeWidget(panel->instructionsL, 160, 55);
|
||||||
WMMoveWidget(panel->instructionsL, 15, 140);
|
WMMoveWidget(panel->instructionsL, 15, 140);
|
||||||
WMSetLabelTextAlignment(panel->instructionsL, WACenter);
|
WMSetLabelTextAlignment(panel->instructionsL, WACenter);
|
||||||
|
WMSetLabelWraps(panel->instructionsL, True);
|
||||||
WMSetLabelText(panel->instructionsL, _("Click Capture to interactively define the shortcut key."));
|
WMSetLabelText(panel->instructionsL, _("Click Capture to interactively define the shortcut key."));
|
||||||
|
|
||||||
WMMapSubwidgets(panel->shoF);
|
WMMapSubwidgets(panel->shoF);
|
||||||
|
|||||||
@@ -273,13 +273,13 @@ createPanel(Panel *p)
|
|||||||
panel->raisB = WMCreateSwitchButton(panel->optF);
|
panel->raisB = WMCreateSwitchButton(panel->optF);
|
||||||
WMResizeWidget(panel->raisB, 210, 30);
|
WMResizeWidget(panel->raisB, 210, 30);
|
||||||
WMMoveWidget(panel->raisB, 15, 7);
|
WMMoveWidget(panel->raisB, 15, 7);
|
||||||
WMSetButtonText(panel->raisB, _("Raise window when switching focus with keyboard."));
|
WMSetButtonText(panel->raisB, _("Raise window when switching\nfocus with keyboard."));
|
||||||
|
|
||||||
#ifdef XKB_MODELOCK
|
#ifdef XKB_MODELOCK
|
||||||
panel->modeB = WMCreateSwitchButton(panel->optF);
|
panel->modeB = WMCreateSwitchButton(panel->optF);
|
||||||
WMResizeWidget(panel->modeB, 210, 30);
|
WMResizeWidget(panel->modeB, 210, 30);
|
||||||
WMMoveWidget(panel->modeB, 15, 40);
|
WMMoveWidget(panel->modeB, 15, 40);
|
||||||
WMSetButtonText(panel->modeB, _("Enable keyboard language switch button in window titlebars."));
|
WMSetButtonText(panel->modeB, _("Enable keyboard language\nswitch button in window titlebars."));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
WMMapSubwidgets(panel->optF);
|
WMMapSubwidgets(panel->optF);
|
||||||
|
|||||||
@@ -102,10 +102,13 @@ User interface design, programming and a few icons:
|
|||||||
|
|
||||||
Additional programming:
|
Additional programming:
|
||||||
James Thompson <jamest@math.ksu.edu>
|
James Thompson <jamest@math.ksu.edu>
|
||||||
|
Dan Pascu <dan@windowmaker.org>
|
||||||
|
]d <id@windowmaker.org>
|
||||||
|
|
||||||
Icon and image artwork:
|
Icon and image artwork:
|
||||||
Marco van Hylckama Vlieg <fatal@global.uibk.ac.at>
|
Jesse Kaufman <glandix@linuxfreak.com>
|
||||||
|
Marco van Hylckama Vlieg <marco@windowmaker.org>
|
||||||
|
See details in README in tiff/ directory
|
||||||
|
|
||||||
WindowMaker
|
WindowMaker
|
||||||
-----------
|
-----------
|
||||||
|
|||||||
@@ -352,8 +352,8 @@ createMainWindow(WMScreen *scr)
|
|||||||
WMMoveWidget(WPrefs.creditsL, 10, FRAME_HEIGHT-60);
|
WMMoveWidget(WPrefs.creditsL, 10, FRAME_HEIGHT-60);
|
||||||
WMSetLabelTextAlignment(WPrefs.creditsL, WACenter);
|
WMSetLabelTextAlignment(WPrefs.creditsL, WACenter);
|
||||||
WMSetLabelText(WPrefs.creditsL, _("Programming/Design: Alfredo K. Kojima\n"
|
WMSetLabelText(WPrefs.creditsL, _("Programming/Design: Alfredo K. Kojima\n"
|
||||||
"Artwork: Marco van Hylckama Vlieg and Largo\n"
|
"Artwork: Marco van Hylckama Vlieg, Largo et al\n"
|
||||||
"More Programming: James Thompson"));
|
"More Programming: James Thompson et al"));
|
||||||
|
|
||||||
|
|
||||||
WMMapSubwidgets(WPrefs.win);
|
WMMapSubwidgets(WPrefs.win);
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ createPanel(Panel *p)
|
|||||||
WMResizeWidget(panel->cyclB, 280, 34);
|
WMResizeWidget(panel->cyclB, 280, 34);
|
||||||
WMMoveWidget(panel->cyclB, 75, 30);
|
WMMoveWidget(panel->cyclB, 75, 30);
|
||||||
WMSetButtonText(panel->cyclB,
|
WMSetButtonText(panel->cyclB,
|
||||||
_("wrap to the first workspace after the last workspace."));
|
_("wrap to the first workspace after the\nlast workspace."));
|
||||||
|
|
||||||
panel->cyclL = WMCreateLabel(panel->navF);
|
panel->cyclL = WMCreateLabel(panel->navF);
|
||||||
WMResizeWidget(panel->cyclL, 60, 60);
|
WMResizeWidget(panel->cyclL, 60, 60);
|
||||||
@@ -248,7 +248,7 @@ createPanel(Panel *p)
|
|||||||
WMMoveWidget(panel->posL, 75, 165);
|
WMMoveWidget(panel->posL, 75, 165);
|
||||||
WMSetLabelTextAlignment(panel->posL, WARight);
|
WMSetLabelTextAlignment(panel->posL, WARight);
|
||||||
WMSetLabelText(panel->posL,
|
WMSetLabelText(panel->posL,
|
||||||
_("Position of workspace name display"));
|
_("Position of workspace\nname display"));
|
||||||
|
|
||||||
panel->posiL = WMCreateLabel(panel->navF);
|
panel->posiL = WMCreateLabel(panel->navF);
|
||||||
WMResizeWidget(panel->posiL, 60, 40);
|
WMResizeWidget(panel->posiL, 60, 40);
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ Icon Contributors
|
|||||||
Jesse Kaufman <glandix@linuxfreak.com>
|
Jesse Kaufman <glandix@linuxfreak.com>
|
||||||
configs.tiff
|
configs.tiff
|
||||||
|
|
||||||
|
Largo <largo@windowmaker.org>
|
||||||
|
|
||||||
|
|
||||||
All other graphics are copyright 1998,1999 by Marco van Hylckama Vlieg
|
All other graphics are copyright 1998,1999 by Marco van Hylckama Vlieg
|
||||||
|
|||||||
Reference in New Issue
Block a user