]> git.sesse.net Git - vlc/commitdiff
BluRay instead of Blu-Ray. Re-using short messages for long ones
authorChristoph Miebach <christoph.miebach@web.de>
Sun, 28 Apr 2013 17:09:29 +0000 (19:09 +0200)
committerChristoph Miebach <christoph.miebach@web.de>
Sun, 28 Apr 2013 17:09:29 +0000 (19:09 +0200)
modules/access/bd/bd.c
modules/access/bluray.c
modules/access/v4l2/v4l2.c
modules/codec/x264.c
modules/gui/macosx/playlist.m
modules/services_discovery/udev.c
src/libvlc-module.c

index 9c598e24f3b9bbd41e32499c4621741034b42d2a..fd98f2f3f643c07405f215824bcc096e089e95df 100644 (file)
@@ -52,7 +52,7 @@ static void Close( vlc_object_t * );
 
 vlc_module_begin ()
     set_shortname( N_("BD") )
-    set_description( N_("Blu-Ray Disc Input") )
+    set_description( N_("BluRay Disc Input") )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACCESS )
     set_capability( "access_demux", 60 )
index da9e31452f29e2446726a6c7bab316406e1af462..d1f897a120208b0ba18e7c1d70b6f090d3acf6b2 100644 (file)
@@ -57,7 +57,7 @@
  * Module descriptor
  *****************************************************************************/
 
-#define BD_MENU_TEXT        N_( "Bluray menus" )
+#define BD_MENU_TEXT        N_( "BluRay menus" )
 #define BD_MENU_LONGTEXT    N_( "Use bluray menus. If disabled, "\
                                 "the movie will start directly" )
 
@@ -67,7 +67,7 @@ static void blurayClose( vlc_object_t * );
 
 vlc_module_begin ()
     set_shortname( N_("BluRay") )
-    set_description( N_("Blu-Ray Disc support (libbluray)") )
+    set_description( N_("BluRay Disc support (libbluray)") )
 
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACCESS )
@@ -260,7 +260,7 @@ static int blurayOpen( vlc_object_t *object )
     /* AACS */
     if (disc_info->aacs_detected) {
         if (!disc_info->libaacs_detected) {
-            error_msg = _("This Blu-Ray Disc needs a library for AACS decoding, "
+            error_msg = _("This BluRay Disc needs a library for AACS decoding, "
                       "and your system does not have it.");
             goto error;
         }
@@ -300,7 +300,7 @@ static int blurayOpen( vlc_object_t *object )
     /* BD+ */
     if (disc_info->bdplus_detected) {
         if (!disc_info->libbdplus_detected) {
-            error_msg = _("This Blu-Ray Disc needs a library for BD+ decoding, "
+            error_msg = _("This BluRay Disc needs a library for BD+ decoding, "
                       "and your system does not have it.");
             goto error;
         }
@@ -367,7 +367,7 @@ static int blurayOpen( vlc_object_t *object )
 
 error:
     if (error_msg)
-        dialog_Fatal(p_demux, _("Blu-Ray error"), "%s", error_msg);
+        dialog_Fatal(p_demux, _("BluRay error"), "%s", error_msg);
     blurayClose(object);
     return VLC_EGENERIC;
 }
index f696a546668f1d5d00a7d817a7046c75a3468dfa..e06c80d3514e114a3b719f3fe3b1fda7d0c84770 100644 (file)
@@ -137,7 +137,7 @@ static const char *const power_freq_user[] = { N_("Unspecified"),
     N_("Off"), N_("50 Hz"), N_("60 Hz"), N_("Automatic"),
 };
 #define BKLT_COMPENSATE_TEXT N_( "Backlight compensation" )
-#define BKLT_COMPENSATE_LONGTEXT N_( "Backlight compensation." )
+#define BKLT_COMPENSATE_LONGTEXT BKLT_COMPENSATE_TEXT
 #define BAND_STOP_FILTER_TEXT N_( "Band-stop filter" )
 #define BAND_STOP_FILTER_LONGTEXT N_(  \
     "Cut a light band induced by fluorescent lighting (unit undocumented)." )
index 7dd23c9d84094d3294972f3f0879d8d3b7b0a591..14be85a914aa9c2cea5a8cba58a9855f09f38035 100644 (file)
@@ -271,7 +271,7 @@ static void x264_log( void *, int i_level, const char *psz, va_list );
     "(p4x4 requires p8x8. i8x8 requires 8x8dct).")
 
 #define DIRECT_PRED_TEXT N_("Direct MV prediction mode")
-#define DIRECT_PRED_LONGTEXT N_( "Direct MV prediction mode.")
+#define DIRECT_PRED_LONGTEXT DIRECT_PRED_TEXT
 
 #define DIRECT_PRED_SIZE_TEXT N_("Direct prediction size")
 #define DIRECT_PRED_SIZE_LONGTEXT N_( "Direct prediction size: "\
index c4360b8bc76f97d8e8355ac61885b04f69ca706d..2bd75b05bfc34881c4d56a8226154a9ceeb0a6d9 100644 (file)
     [o_save_accessory_text setStringValue: _NS("File Format:")];
     [[o_save_accessory_popup itemAtIndex:0] setTitle: _NS("Extended M3U")];
     [[o_save_accessory_popup itemAtIndex:1] setTitle: _NS("XML Shareable Playlist Format (XSPF)")];
-    [[o_save_accessory_popup itemAtIndex:2] setTitle: _NS("HTML Playlist")];
+    [[o_save_accessory_popup itemAtIndex:2] setTitle: _NS("HTML playlist")];
 }
 
 - (void)playlistUpdated
index 8dbc2b354bdba615e867a0c49fc7bfe675567e91..827503df64c2987bca15dba0f08b1de76eccf1b2 100644 (file)
@@ -585,7 +585,7 @@ static char *disc_get_name (struct udev_device *dev)
         else if (!strncmp (name, "DVD", 3))
             cat = N_("DVD");
         else if (!strncmp (name, "BD", 2))
-            cat = N_("Blu-Ray");
+            cat = N_("BluRay");
         else if (!strncmp (name, "HDDVD", 5))
             cat = N_("HD DVD");
 
index 6194d99a1f343d74dd6dfa8bd657dff96e1425ca..7a8f70d94b5f0705e1833945f33de1a6a89d127b 100644 (file)
@@ -1374,9 +1374,9 @@ static const char *const mouse_wheel_texts[] =
 #define TOGGLE_AUTOSCALE_KEY_TEXT N_("Toggle autoscaling")
 #define TOGGLE_AUTOSCALE_KEY_LONGTEXT N_("Activate or deactivate autoscaling.")
 #define SCALE_UP_KEY_TEXT N_("Increase scale factor")
-#define SCALE_UP_KEY_LONGTEXT N_("Increase scale factor.")
+#define SCALE_UP_KEY_LONGTEXT SCALE_UP_KEY_TEXT
 #define SCALE_DOWN_KEY_TEXT N_("Decrease scale factor")
-#define SCALE_DOWN_KEY_LONGTEXT N_("Decrease scale factor.")
+#define SCALE_DOWN_KEY_LONGTEXT SCALE_DOWN_KEY_TEXT
 #define DEINTERLACE_KEY_TEXT N_("Toggle deinterlacing")
 #define DEINTERLACE_KEY_LONGTEXT N_("Activate or deactivate deinterlacing.")
 #define DEINTERLACE_MODE_KEY_TEXT N_("Cycle deinterlace modes")