diff options
-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 { |