[vlc-commits] ncurses: translate title

Rafaël Carré git at videolan.org
Fri Jun 21 13:28:47 CEST 2013


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Fri Jun 21 13:28:25 2013 +0200| [8463dd4817e8d879cf039dcdf73826fcccaa21e6] | committer: Rafaël Carré

ncurses: translate title

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8463dd4817e8d879cf039dcdf73826fcccaa21e6
---

 modules/gui/ncurses.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c
index 158f517..ed4617b 100644
--- a/modules/gui/ncurses.c
+++ b/modules/gui/ncurses.c
@@ -1024,8 +1024,8 @@ static int DrawStatus(intf_thread_t *intf)
     intf_sys_t     *sys = intf->p_sys;
     input_thread_t *p_input = sys->p_input;
     playlist_t     *p_playlist = pl_Get(intf);
-    static const char name[] = "VLC media player "PACKAGE_VERSION;
-    const size_t name_len = sizeof name - 1; /* without \0 termination */
+    char *name = _("VLC media player");
+    const size_t name_len = strlen(name) + sizeof(PACKAGE_VERSION);
     int y = 0;
     const char *repeat, *loop, *random;
 
@@ -1038,7 +1038,7 @@ static int DrawStatus(intf_thread_t *intf)
     attrset(A_REVERSE);
     if (sys->color) color_set(C_TITLE, NULL);
     DrawEmptyLine(y, 0, COLS);
-    mvnprintw(y++, padding / 2, COLS, "%s", name);
+    mvnprintw(y++, padding / 2, COLS, "%s %s", name, PACKAGE_VERSION);
     if (sys->color) color_set(C_STATUS, NULL);
     attroff(A_REVERSE);
 



More information about the vlc-commits mailing list