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

WINGs: trivial fix in text string

Fix a typo in an error message.
This commit is contained in:
Alwin
2014-12-24 16:10:29 +01:00
committed by Carlos R. Mafra
parent e3769a0b09
commit a5a23f966e
9 changed files with 9 additions and 9 deletions

View File

@@ -748,7 +748,7 @@ static void goFloppy(WMWidget *widget, void *p_panel)
(void) widget;
if (stat(WINGsConfiguration.floppyPath, &filestat)) {
showError(scr, panel->win, _("An error occured browsing '%s'."), WINGsConfiguration.floppyPath);
showError(scr, panel->win, _("An error occurred browsing '%s'."), WINGsConfiguration.floppyPath);
return;
} else if (!S_ISDIR(filestat.st_mode)) {
showError(scr, panel->win, _("'%s' is not a directory."), WINGsConfiguration.floppyPath);