Commit 9335f910 authored by Jordi Mallach's avatar Jordi Mallach
Browse files

Made two strings translatable.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@939 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 2 deletions
+4 -2
......@@ -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:
......
......@@ -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);
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment