[vlc-commits] core: keys: less translation for VIEWPOINT_FOV_*

Thomas Guillem git at videolan.org
Thu Nov 17 09:48:27 CET 2016


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Nov 16 14:15:15 2016 +0100| [d59e76a52a3311616566f107e4eb6cb620c5b8be] | committer: Thomas Guillem

core: keys: less translation for VIEWPOINT_FOV_*

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

 src/libvlc-module.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index 7a55d1e..776634b 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -1423,10 +1423,8 @@ static const char *const mouse_wheel_texts[] = {
 #define UNCROP_RIGHT_KEY_LONGTEXT N_("Uncrop one pixel from the right of the video")
 
 /* 360° Viewpoint */
-#define VIEWPOINT_FOV_IN_KEY_TEXT N_("Shrink field of view")
-#define VIEWPOINT_FOV_IN_KEY_LONGTEXT N_("Shrink the viewpoint field of view")
-#define VIEWPOINT_FOV_OUT_KEY_TEXT N_("Expand field of view")
-#define VIEWPOINT_FOV_OUT_KEY_LONGTEXT N_("Expand the viewpoint field of view")
+#define VIEWPOINT_FOV_IN_KEY_TEXT N_("Shrink the viewpoint field of view (360°)")
+#define VIEWPOINT_FOV_OUT_KEY_TEXT N_("Expand the viewpoint field of view (360°)")
 
 #define WALLPAPER_KEY_TEXT N_("Toggle wallpaper mode in video output")
 #define WALLPAPER_KEY_LONGTEXT N_( \
@@ -2577,9 +2575,9 @@ vlc_module_begin ()
              LOOP_KEY_TEXT, LOOP_KEY_LONGTEXT, false )
 
     add_key( "key-viewpoint-fov-in", KEY_VIEWPOINT_FOV_IN,
-             VIEWPOINT_FOV_IN_KEY_TEXT, VIEWPOINT_FOV_IN_KEY_LONGTEXT, true )
+             VIEWPOINT_FOV_IN_KEY_TEXT, VIEWPOINT_FOV_IN_KEY_TEXT, true )
     add_key( "key-viewpoint-fov-out", KEY_VIEWPOINT_FOV_OUT,
-             VIEWPOINT_FOV_OUT_KEY_TEXT, VIEWPOINT_FOV_OUT_KEY_LONGTEXT, true )
+             VIEWPOINT_FOV_OUT_KEY_TEXT, VIEWPOINT_FOV_OUT_KEY_TEXT, true )
 
     set_section ( N_("Zoom" ), NULL )
     add_key( "key-zoom-quarter",  KEY_ZOOM_QUARTER,



More information about the vlc-commits mailing list