Made two strings translatable.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@939 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
77b12326c8
commit
9335f91085
|
@ -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:
|
||||
|
|
4
winio.c
4
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue