* editcmd.c (regexp_error): Small text fix.

(edit_search_cmd): Likewise.
This commit is contained in:
Andrew V. Samoilov 2004-10-11 05:31:29 +00:00
parent 4cde691aac
commit 5d5f56d4ee
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-10-11 Leonard den Ottolander <leonard * den ottolander nl>
* editcmd.c (regexp_error): Small text fix.
(edit_search_cmd): Likewise.
2004-09-26 Roland Illig <roland.illig@gmx.de>
* editcmd.c (edit_ext_cmd): Revoked my last change.

View File

@ -1736,7 +1736,7 @@ err:
static void regexp_error (WEdit *edit)
{
/* "Error: Syntax error in regular expression, or scanf expression contained too many %'s */
edit_error_dialog (_("Error"), _(" Invalid regular expression, or scanf expression with to many conversions "));
edit_error_dialog (_("Error"), _(" Invalid regular expression, or scanf expression with too many conversions "));
}
/* call with edit = 0 before shutdown to close memory leaks */
@ -2053,7 +2053,7 @@ void edit_search_cmd (WEdit * edit, int again)
}
if (found) {
/* in response to number of bookmarks added because of string being found %d times */
message (0, _("Search"), _(" %d finds made, %d bookmarks added "), found, books);
message (0, _("Search"), _(" %d items found, %d bookmarks added "), found, books);
} else {
edit_error_dialog (_ ("Search"), _ (" Search string not found "));
}