From: Jordi Mallach Date: Tue, 20 Feb 2001 12:45:47 +0000 (+0000) Subject: Fixed two "occurence" typos. X-Git-Tag: v1.0.0~21 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5b387d7527f9e15d4b2598ddb3a4143bf172fe44;p=nano.git Fixed two "occurence" typos. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@552 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index cec69d02..7f3df048 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ CVS code - +- search.c: + - s/occurence/occurrence typos (Jordi). nano-0.9.99pre3 - 02/19/2001 - General diff --git a/search.c b/search.c index 3bd691a5..fb59b523 100644 --- a/search.c +++ b/search.c @@ -340,9 +340,9 @@ int do_search(void) void print_replaced(int num) { if (num > 1) - statusbar(_("Replaced %d occurences"), num); + statusbar(_("Replaced %d occurrences"), num); else if (num == 1) - statusbar(_("Replaced 1 occurence")); + statusbar(_("Replaced 1 occurrence")); } void replace_abort(void)