(main): Fixed diagnostics to better suit i18n.
Showing
1 changed file
with
4 additions
and
2 deletions
... | @@ -184,8 +184,10 @@ main (int argc, char *argv[]) | ... | @@ -184,8 +184,10 @@ main (int argc, char *argv[]) |
184 | locker_destroy (&locker); | 184 | locker_destroy (&locker); |
185 | 185 | ||
186 | if (debug && err) | 186 | if (debug && err) |
187 | fprintf (stderr, _("%s %s failed: %s\n"), | 187 | fprintf (stderr, |
188 | unlock ? _("unlocking") : _("locking"), file, mu_strerror (err)); | 188 | unlock ? _("unlocking the file %s failed: %s\n") : |
189 | _("locking the file %s failed: %s\n"), | ||
190 | file, mu_strerror (err)); | ||
189 | 191 | ||
190 | switch (err) | 192 | switch (err) |
191 | { | 193 | { | ... | ... |
-
Please register or sign in to post a comment