1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-04 04:44:16 +01:00

WPrefs: changed label from "msec" to the standard "ms" from the SI

The International System of Units defines "ms" as the standard abbreviation
for milliseconds, so let's use it everywhere to be consistent.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2014-11-08 20:49:39 +01:00
committed by Carlos R. Mafra
parent 3846609072
commit 34f35ee534
21 changed files with 28 additions and 28 deletions

View File

@@ -231,7 +231,7 @@ static void createPanel(Panel *p)
panel->autoDelayMsL[i + k * 2] = WMCreateLabel(panel->autoDelayF[k]);
WMResizeWidget(panel->autoDelayMsL[i + k * 2], 26, 16);
WMMoveWidget(panel->autoDelayMsL[i + k * 2], 337, 30 + 40 * i);
WMSetLabelText(panel->autoDelayMsL[i + k * 2], _("msec"));
WMSetLabelText(panel->autoDelayMsL[i + k * 2], _("ms"));
WMSetLabelTextColor(panel->autoDelayMsL[i + k * 2], color);
WMSetLabelFont(panel->autoDelayMsL[i + k * 2], font);
WMReleaseColor(color);