[vlc-commits] i18n: missing . in LONGTEXT variables

Michał Trzebiatowski git at videolan.org
Mon Dec 4 01:21:58 CET 2017


vlc | branch: master | Michał Trzebiatowski <michtrz at gmail.com> | Mon Dec  4 01:20:55 2017 +0100| [cfbe65e6832fa82595adb7c7067748902b72de4f] | committer: Jean-Baptiste Kempf

i18n: missing . in LONGTEXT variables

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 modules/access/dvb/access.c                       | 4 ++--
 modules/gui/qt/components/preferences_widgets.cpp | 2 +-
 modules/stream_out/standard.c                     | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/access/dvb/access.c b/modules/access/dvb/access.c
index 0d4283c9b0..c5bc986d9a 100644
--- a/modules/access/dvb/access.c
+++ b/modules/access/dvb/access.c
@@ -68,10 +68,10 @@ static void Close( vlc_object_t *p_this );
 
 /* Satellite */
 #define SATELLITE_TEXT N_("Satellite scanning config")
-#define SATELLITE_LONGTEXT N_("filename of config file in share/dvb/dvb-s")
+#define SATELLITE_LONGTEXT N_("filename of config file in share/dvb/dvb-s.")
 
 #define SCANLIST_TEXT N_("Scan tuning list")
-#define SCANLIST_LONGTEXT N_("filename containing initial scan tuning data")
+#define SCANLIST_LONGTEXT N_("filename containing initial scan tuning data.")
 
 #define SCAN_NIT_TEXT N_("Use NIT for scanning services")
 
diff --git a/modules/gui/qt/components/preferences_widgets.cpp b/modules/gui/qt/components/preferences_widgets.cpp
index 1321f8618a..1419bac114 100644
--- a/modules/gui/qt/components/preferences_widgets.cpp
+++ b/modules/gui/qt/components/preferences_widgets.cpp
@@ -1132,7 +1132,7 @@ KeySelectorControl::KeySelectorControl( vlc_object_t *_p_this,
 {
     label = new QLabel(
         qtr( "Select or double click an action to change the associated "
-             "hotkey. Use delete key to remove hotkeys"), p );
+             "hotkey. Use delete key to remove hotkeys."), p );
 
     label->setWordWrap( true );
     searchLabel = new QLabel( qtr( "Search" ), p );
diff --git a/modules/stream_out/standard.c b/modules/stream_out/standard.c
index 8f78702835..a4f6fe69db 100644
--- a/modules/stream_out/standard.c
+++ b/modules/stream_out/standard.c
@@ -50,12 +50,12 @@
     "Destination (URL) to use for the stream. Overrides path and bind parameters" )
 #define BIND_TEXT N_("address to bind to (helper setting for dst)")
 #define BIND_LONGTEXT N_( \
-  "address:port to bind vlc to listening incoming streams "\
-  "helper setting for dst,dst=bind+'/'+path. dst-parameter overrides this" )
+  "address:port to bind vlc to listening incoming streams. "\
+  "helper setting for dst, dst=bind+'/'+path. dst-parameter overrides this." )
 #define PATH_TEXT N_("filename for stream (helper setting for dst)")
 #define PATH_LONGTEXT N_( \
   "Filename for stream "\
-  "helper setting for dst, dst=bind+'/'+path, dst-parameter overrides this" )
+  "helper setting for dst, dst=bind+'/'+path. dst-parameter overrides this." )
 #define NAME_TEXT N_("Session name")
 #define NAME_LONGTEXT N_( \
     "This is the name of the session that will be announced in the SDP " \



More information about the vlc-commits mailing list