1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-09 23:34:14 +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;
}