1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-22 22:28:02 +01:00

wmaker: add missing source files for translation

As pointed by the new script, a number of source file were not included in
the list of files to check for translations.

Took opportunity to make translatable a few of the messages.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2015-01-20 22:03:51 +01:00
committed by Carlos R. Mafra
parent 6000af3828
commit 609b3c29a6
4 changed files with 56 additions and 18 deletions

View File

@@ -1053,7 +1053,8 @@ static WWindow *recursiveTransientFor(WWindow *wwin)
i--;
}
if (i == 0 && wwin) {
wwarning("%s has a severely broken WM_TRANSIENT_FOR hint.", wwin->frame->title);
wwarning(_("window \"%s\" has a severely broken WM_TRANSIENT_FOR hint"),
wwin->frame->title);
return NULL;
}
@@ -1151,7 +1152,16 @@ void wIconifyWindow(WWindow *wwin)
set_icon_minipreview(wwin->icon, mini_preview);
RReleaseImage(mini_preview);
} else {
wwarning(_("window mini-preview creation failed"));
const char *title;
char title_buf[32];
if (wwin->frame && wwin->frame->title) {
title = wwin->frame->title;
} else {
snprintf(title_buf, sizeof(title_buf), "(id=0x%lx)", wwin->client_win);
title = title_buf;
}
wwarning(_("creation of mini-preview failed for window \"%s\""), title);
}
}
}