Fixed two "occurence" typos.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@552 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Jordi Mallach 2001-02-20 12:45:47 +00:00
parent 9c9c5dab4c
commit 5b387d7527
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
CVS code -
- search.c:
- s/occurence/occurrence typos (Jordi).
nano-0.9.99pre3 - 02/19/2001
- General

View File

@ -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)