commit 9335f910858d9f6057a1489f9ba3835607a1f761
parent 77b12326c8e5e0df0fabed5f920ea9d1f7bfdb97
Author: Jordi Mallach <jordi@gnu.org>
Date: Sun, 23 Dec 2001 00:03:18 +0000
Made two strings translatable.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@939 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -10,6 +10,8 @@ CVS code -
update_line()
- set realdata check to >= 1 && <= 31, lack of > 0 check screwed
high ascii characters.
+ titlebar()
+ - gettextized a pair of strings.
- m4/gettext.m4:
- Back down to 1.1.3 version.
- po/sv.po:
diff --git a/winio.c b/winio.c
@@ -553,9 +553,9 @@ void titlebar(char *path)
waddstr(topwin, &what[namelen - space]);
} else {
if (path == NULL)
- mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1), "File: ");
+ mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1), _("File: "));
else
- mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1), " DIR: ");
+ mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1), _(" DIR: "));
waddstr(topwin, what);
}
}