diff options
author | phintuka <phintuka> | 2008-10-18 10:33:17 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-10-18 10:33:17 +0000 |
commit | 705d4f7a0f20959083af3f8deee397fc6f79e550 (patch) | |
tree | 7ec1abc049127016f91b2b48bbd440b192499e2c | |
parent | a313d7c640791d79019e76d9eec79042938be16e (diff) | |
download | xineliboutput-705d4f7a0f20959083af3f8deee397fc6f79e550.tar.gz xineliboutput-705d4f7a0f20959083af3f8deee397fc6f79e550.tar.bz2 |
Translate some tvtime settings
(Patch from Rolf Ahrenberg)
-rw-r--r-- | setup_menu.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/setup_menu.c b/setup_menu.c index 24f5d5a5..84c70fd3 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.61 2008-07-20 10:54:32 phintuka Exp $ + * $Id: setup_menu.c,v 1.62 2008-10-18 10:33:17 phintuka Exp $ * */ @@ -399,7 +399,7 @@ static const char * const tvtime_method[] = static const int tvtime_methods_count = (sizeof(tvtime_method)/sizeof(tvtime_method[0]) - 1); static const char * const tvtime_method_name[] = - {"Use Video-Out Driver", // "use_vo_driver" + {trNOOP("Use Video-Out Driver"), // "use_vo_driver" "Linear Interpolation", // "Linear", "Linear Blend (mplayer)", // "LinearBlend", "Greedy - Low motion (DScaler)", // "Greedy", @@ -418,8 +418,8 @@ static const char * const tvtime_pulldown[] = NULL}; static const char * const tvtime_pulldown_name[] = - { "None", - "Vector", + { trNOOP("none"), + trNOOP("vector"), NULL}; static const char * const tvtime_framerate[] = @@ -429,9 +429,9 @@ static const char * const tvtime_framerate[] = NULL}; static const char * const tvtime_framerate_name[] = - { "Full", - "Half (top)", - "Half (bottom)", + { trNOOP("full"), + trNOOP("half (top)"), + trNOOP("half (bottom)"), NULL}; struct tvtime_s { |