1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-18 20:10:29 +01:00

WPrefs: trivial fixes in text strings

Fix some typos.

Signed-off-by: Carlos R. Mafra <crmafra@gmail.com>
This commit is contained in:
Alwin
2015-04-28 14:39:45 +02:00
committed by Carlos R. Mafra
parent f2f1bcb209
commit 3d6da4b210
3 changed files with 8 additions and 8 deletions

View File

@@ -610,7 +610,7 @@ static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int
style = RHorizontalGradient;
break;
default:
wwarning(_("unknow direction in '%s', falling back to diagonal"), type);
wwarning(_("unknown direction in '%s', falling back to diagonal"), type);
case 'D':
style = RDiagonalGradient;
break;
@@ -636,7 +636,7 @@ static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int
style = RHorizontalGradient;
break;
default:
wwarning(_("unknow direction in '%s', falling back to diagonal"), type);
wwarning(_("unknown direction in '%s', falling back to diagonal"), type);
case 'D':
style = RDiagonalGradient;
break;
@@ -670,7 +670,7 @@ static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int
style = RHorizontalGradient;
break;
default:
wwarning(_("unknow direction in '%s', falling back to diagonal"), type);
wwarning(_("unknown direction in '%s', falling back to diagonal"), type);
case 'D':
style = RDiagonalGradient;
break;
@@ -717,7 +717,7 @@ static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int
break;
default:
wwarning(_("type '%s' in not a supported type for a texture"), type);
wwarning(_("type '%s' is not a supported type for a texture"), type);
RReleaseImage(timage);
return None;
}

View File

@@ -178,12 +178,12 @@ msgstr "kon bestand '%s' niet vinden voor textuurtype %s"
#: ../../WPrefs.app/Appearance.c:613 ../../WPrefs.app/Appearance.c:639
#: ../../WPrefs.app/Appearance.c:673
#, c-format
msgid "unknow direction in '%s', falling back to diagonal"
msgid "unknown direction in '%s', falling back to diagonal"
msgstr "onbekende richting in '%s', valt terug op diagonaal"
#: ../../WPrefs.app/Appearance.c:720
#, c-format
msgid "type '%s' in not a supported type for a texture"
msgid "type '%s' is not a supported type for a texture"
msgstr "type '%s' is geen ondersteund type voor 'n textuur"
#: ../../WPrefs.app/Appearance.c:1088
@@ -2569,7 +2569,7 @@ msgid "%s (0x%x) generates both %s and %s which is nonsensical"
msgstr "%s (0x%x) genereert zowel %s als %s, wat onzinnig is"
#: ../../WPrefs.app/xmodifier.c:160
msgid "XGetModifierMapping returned NULL, there is no modifiers or no memory"
msgid "XGetModifierMapping returned NULL, there is no modifier or no memory"
msgstr ""
#: ../../WPrefs.app/xmodifier.c:268

View File

@@ -157,7 +157,7 @@ static void x_reset_modifier_mapping(Display * display)
x_modifier_keymap = XGetModifierMapping(display);
if (x_modifier_keymap == NULL) {
wwarning(_("XGetModifierMapping returned NULL, there is no modifiers or no memory"));
wwarning(_("XGetModifierMapping returned NULL, there is no modifier or no memory"));
return;
}