Made two strings translatable.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@939 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Jordi Mallach 2001-12-23 00:03:18 +00:00
parent 77b12326c8
commit 9335f91085
2 changed files with 4 additions and 2 deletions

View File

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

View File

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