From 1f02d55b6019e01f01cec902d40e313f278fb506 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Tue, 26 Feb 2013 17:15:15 +0400 Subject: [PATCH] locals: add video menu missed hints, add locals for PiP --- data/locale/english.locale | 6 ++++++ src/system/locals.h | 6 ++++++ src/system/locals_intern.h | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/data/locale/english.locale b/data/locale/english.locale index ce239dccc..1d71eb2c5 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -1078,11 +1078,15 @@ menu.hint_vfd_statusline Choose what to display in short\nVFD status line menu.hint_video Video output, resolution, format\nAspect ratio, fast mode switch options menu.hint_video_43mode Display mode for 4:3 content\non 16:9 TV menu.hint_video_analog_mode Select analog output mode\nfor SCART and CINCH connectors +menu.hint_video_brightness Change picture brightness menu.hint_video_cinch_mode Select analog output mode for\ncomposite video out +menu.hint_video_contrast Change picture contrast menu.hint_video_dbdr MPEG2 enhancement filters menu.hint_video_format TV aspect ratio menu.hint_video_mode HDMI output video mode menu.hint_video_modes VF key will cycle between enabled modes +menu.hint_video_pip Picture in picture size and position +menu.hint_video_saturation Change picture saturation menu.hint_video_scart_mode Select analog output mode for SCART connectors menu.hint_volume_digits Numeric display of the volumebar on/off menu.hint_volume_pos Select volume indicator position @@ -1837,6 +1841,8 @@ videomenu.hue Hue videomenu.letterbox Letterbox videomenu.panscan Pan&Scan videomenu.panscan2 14:9 Pan&Scan +videomenu.pip PiP setup +videomenu.pip_error PiP start failed videomenu.saturation Saturation videomenu.scart Scart videomenu.screensetup Screen Setup diff --git a/src/system/locals.h b/src/system/locals.h index 238c0629a..0380a10f2 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -1105,11 +1105,15 @@ typedef enum LOCALE_MENU_HINT_VIDEO, LOCALE_MENU_HINT_VIDEO_43MODE, LOCALE_MENU_HINT_VIDEO_ANALOG_MODE, + LOCALE_MENU_HINT_VIDEO_BRIGHTNESS, LOCALE_MENU_HINT_VIDEO_CINCH_MODE, + LOCALE_MENU_HINT_VIDEO_CONTRAST, LOCALE_MENU_HINT_VIDEO_DBDR, LOCALE_MENU_HINT_VIDEO_FORMAT, LOCALE_MENU_HINT_VIDEO_MODE, LOCALE_MENU_HINT_VIDEO_MODES, + LOCALE_MENU_HINT_VIDEO_PIP, + LOCALE_MENU_HINT_VIDEO_SATURATION, LOCALE_MENU_HINT_VIDEO_SCART_MODE, LOCALE_MENU_HINT_VOLUME_DIGITS, LOCALE_MENU_HINT_VOLUME_POS, @@ -1864,6 +1868,8 @@ typedef enum LOCALE_VIDEOMENU_LETTERBOX, LOCALE_VIDEOMENU_PANSCAN, LOCALE_VIDEOMENU_PANSCAN2, + LOCALE_VIDEOMENU_PIP, + LOCALE_VIDEOMENU_PIP_ERROR, LOCALE_VIDEOMENU_SATURATION, LOCALE_VIDEOMENU_SCART, LOCALE_VIDEOMENU_SCREENSETUP, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index 775a5f391..970876bbd 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -1105,11 +1105,15 @@ const char * locale_real_names[] = "menu.hint_video", "menu.hint_video_43mode", "menu.hint_video_analog_mode", + "menu.hint_video_brightness", "menu.hint_video_cinch_mode", + "menu.hint_video_contrast", "menu.hint_video_dbdr", "menu.hint_video_format", "menu.hint_video_mode", "menu.hint_video_modes", + "menu.hint_video_pip", + "menu.hint_video_saturation", "menu.hint_video_scart_mode", "menu.hint_volume_digits", "menu.hint_volume_pos", @@ -1864,6 +1868,8 @@ const char * locale_real_names[] = "videomenu.letterbox", "videomenu.panscan", "videomenu.panscan2", + "videomenu.pip", + "videomenu.pip_error", "videomenu.saturation", "videomenu.scart", "videomenu.screensetup",