commit 5b387d7527f9e15d4b2598ddb3a4143bf172fe44
parent 9c9c5dab4c7173d1435c5cb007e1fdfb0891164d
Author: Jordi Mallach <jordi@gnu.org>
Date: Tue, 20 Feb 2001 12:45:47 +0000
Fixed two "occurence" typos.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@552 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git 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
@@ -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)