[vlc-commits] i18n: capital letter at the beginning
Michał Trzebiatowski
git at videolan.org
Tue Dec 5 11:48:49 CET 2017
vlc/vlc-3.0 | branch: master | Michał Trzebiatowski <michtrz at gmail.com> | Mon Dec 4 01:12:55 2017 +0100| [9bf0ef7b771d5250002846a1ed9bce236393b04f] | committer: Jean-Baptiste Kempf
i18n: capital letter at the beginning
Signed-off-by: Michał Trzebiatowski <michtrz at gmail.com>
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit ec0992fbfb5cca619b34da48502d317ab51a94c0)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=9bf0ef7b771d5250002846a1ed9bce236393b04f
---
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 ca91a01bf2..d3e2fcc49e 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 cc2702084d..624cc618d3 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 9bf9755dab..fa653ea04f 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 )
More information about the vlc-commits
mailing list