[vlc-devel] [PATCH 4/4] i18n: capital letter at the beginning

Michał Trzebiatowski michtrz at gmail.com
Mon Dec 4 01:12:55 CET 2017


Signed-off-by: Michał Trzebiatowski <michtrz at gmail.com>
---
 modules/keystore/file.c                            | 8 ++++----
 modules/keystore/memory.c                          | 4 ++--
 modules/stream_out/chromecast/chromecast_demux.cpp | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/modules/keystore/file.c b/modules/keystore/file.c
index ca91a01..d3e2fcc 100644
--- a/modules/keystore/file.c
+++ b/modules/keystore/file.c
@@ -51,8 +51,8 @@ static void CloseCrypt(vlc_object_t *);
 #endif
 
 vlc_module_begin()
-    set_shortname(N_("file keystore (plaintext)"))
-    set_description(N_("secrets are stored on a file without any encryption"))
+    set_shortname(N_("File keystore (plaintext)"))
+    set_description(N_("Secrets are stored on a file without any encryption"))
     set_category(CAT_ADVANCED)
     set_subcategory(SUBCAT_ADVANCED_MISC)
     set_callbacks(Open, Close)
@@ -62,8 +62,8 @@ vlc_module_begin()
     add_shortcut("file_plaintext")
 #ifdef CRYPTFILE
     add_submodule()
-        set_shortname(N_("crypt keystore"))
-        set_description(N_("secrets are stored encrypted on a file"))
+        set_shortname(N_("Crypt keystore"))
+        set_description(N_("Secrets are stored encrypted on a file"))
         set_category(CAT_ADVANCED)
         set_subcategory(SUBCAT_ADVANCED_MISC)
         set_callbacks(OpenCrypt, CloseCrypt)
diff --git a/modules/keystore/memory.c b/modules/keystore/memory.c
index cc27020..624cc61 100644
--- a/modules/keystore/memory.c
+++ b/modules/keystore/memory.c
@@ -38,8 +38,8 @@ static int Open(vlc_object_t *);
 static void Close(vlc_object_t *);
 
 vlc_module_begin()
-    set_shortname(N_("memory keystore"))
-    set_description(N_("secrets are stored in memory"))
+    set_shortname(N_("Memory keystore"))
+    set_description(N_("Secrets are stored in memory"))
     set_category(CAT_ADVANCED)
     set_subcategory(SUBCAT_ADVANCED_MISC)
     set_capability("keystore", 0)
diff --git a/modules/stream_out/chromecast/chromecast_demux.cpp b/modules/stream_out/chromecast/chromecast_demux.cpp
index ccc9be2..b47f7a1 100644
--- a/modules/stream_out/chromecast/chromecast_demux.cpp
+++ b/modules/stream_out/chromecast/chromecast_demux.cpp
@@ -325,7 +325,7 @@ vlc_module_begin ()
     set_shortname( "cc_demux" )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_DEMUX )
-    set_description( N_( "chromecast demux wrapper" ) )
+    set_description( N_( "Chromecast demux wrapper" ) )
     set_capability( "demux_filter", 0 )
     add_shortcut( "cc_demux" )
     set_callbacks( Open, Close )
-- 
2.10.0.windows.1



More information about the vlc-devel mailing list