changeset 34088:9831a4c24adf

Revise OSD preference related message texts in the Win32 GUI. Use the texts from help_mp-en.h.
author ib
date Mon, 03 Oct 2011 18:49:41 +0000
parents b2d908cd8a1f
children 13b57196dec1
files gui/win32/preferences.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/gui/win32/preferences.c	Mon Oct 03 17:27:44 2011 +0000
+++ b/gui/win32/preferences.c	Mon Oct 03 18:49:41 2011 +0000
@@ -244,7 +244,7 @@
             SendMessage(btn, WM_SETFONT, (WPARAM) GetStockObject(DEFAULT_GUI_FONT), 0);
 
             /* osd level */
-            btn = CreateWindow("button", "None",
+            btn = CreateWindow("button", "Subtitles only",
                                WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
                                95, 282, 100, 25, hwnd,
                                (HMENU) ID_NONE,
@@ -252,7 +252,7 @@
                                NULL);
             SendMessage(btn, WM_SETFONT, (WPARAM) GetStockObject(DEFAULT_GUI_FONT), 0);
 
-            btn = CreateWindow("button", "Timer and indicators",
+            btn = CreateWindow("button", "Volume and seek",
                                WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
                                95, 302, 180, 25, hwnd,
                                (HMENU) ID_OSD1,
@@ -260,17 +260,17 @@
                                NULL);
             SendMessage(btn, WM_SETFONT, (WPARAM) GetStockObject(DEFAULT_GUI_FONT), 0);
 
-            btn = CreateWindow("button", "Progress bar only",
+            btn = CreateWindow("button", "Volume, seek, timer and percentage",
                                WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
-                               95, 322, 180, 25, hwnd,
+                               95, 322, 250, 25, hwnd,
                                (HMENU) ID_OSD2,
                                ((LPCREATESTRUCT) lParam) -> hInstance,
                                NULL);
             SendMessage(btn, WM_SETFONT, (WPARAM) GetStockObject(DEFAULT_GUI_FONT), 0);
 
-            btn = CreateWindow("button", "Timer, percentage, and total time",
+            btn = CreateWindow("button", "Volume, seek, timer, percentage and total time",
                                WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
-                               95, 342, 180, 25, hwnd,
+                               95, 342, 250, 25, hwnd,
                                (HMENU) ID_OSD3,
                                ((LPCREATESTRUCT) lParam) -> hInstance,
                                NULL);