[vlc-commits] *: unify 'none' vs. 'None' (-1 l10n string)
Felix Paul Kühne
git at videolan.org
Thu Apr 25 20:48:44 CEST 2013
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Apr 25 20:43:10 2013 +0200| [cc8ed6374d126d968f1efbed23388cfc40bb3f22] | committer: Felix Paul Kühne
*: unify 'none' vs. 'None' (-1 l10n string)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cc8ed6374d126d968f1efbed23388cfc40bb3f22
---
modules/access/fs.c | 2 +-
modules/codec/dirac.c | 2 +-
modules/codec/x264.c | 4 ++--
share/lua/http/dialogs/create_stream.html | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/access/fs.c b/modules/access/fs.c
index bdd173b..175c549 100644
--- a/modules/access/fs.c
+++ b/modules/access/fs.c
@@ -39,7 +39,7 @@
static const char *const psz_recursive_list[] = { "none", "collapse", "expand" };
static const char *const psz_recursive_list_text[] = {
- N_("none"), N_("collapse"), N_("expand") };
+ N_("None"), N_("Collapse"), N_("Expand") };
#define IGNORE_TEXT N_("Ignored extensions")
#define IGNORE_LONGTEXT N_( \
diff --git a/modules/codec/dirac.c b/modules/codec/dirac.c
index b10fd72..89ba0dc 100644
--- a/modules/codec/dirac.c
+++ b/modules/codec/dirac.c
@@ -76,7 +76,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict );
static const char *const enc_prefilter_list[] =
{ "none", "cwm", "rectlp", "diaglp" };
static const char *const enc_prefilter_list_text[] =
- { N_("none"), N_("Centre Weighted Median"),
+ { N_("None"), N_("Centre Weighted Median"),
N_("Rectangular Linear Phase"), N_("Diagonal Linear Phase") };
#define ENC_PREFILTER_STRENGTH "prefilter-strength"
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index c79ec11..163fd36 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -428,12 +428,12 @@ static const char *const bpyramid_list[] =
static const char *const enc_analyse_list[] =
{ "none", "fast", "normal", "slow", "all" };
static const char *const enc_analyse_list_text[] =
- { N_("none"), N_("fast"), N_("normal"), N_("slow"), N_("all") };
+ { N_("None"), N_("Fast"), N_("Normal"), N_("Slow"), N_("All") };
static const char *const direct_pred_list[] =
{ "none", "spatial", "temporal", "auto" };
static const char *const direct_pred_list_text[] =
- { N_("none"), N_("spatial"), N_("temporal"), N_("auto") };
+ { N_("None"), N_("Spatial"), N_("Temporal"), N_("Auto") };
static const int const framepacking_list[] =
{ -1, 0, 1, 2, 3, 4, 5 };
diff --git a/share/lua/http/dialogs/create_stream.html b/share/lua/http/dialogs/create_stream.html
index afeb805..1eb077f 100644
--- a/share/lua/http/dialogs/create_stream.html
+++ b/share/lua/http/dialogs/create_stream.html
@@ -193,7 +193,7 @@
<td style="text-align:right" valign="top"><?vlc gettext("Subtitle codec") ?></td>
<td valign="top">
<select name="stream_scodec" id="stream_scodec">
- <option value=""><?vlc gettext("none") ?></option>
+ <option value=""><?vlc gettext("None") ?></option>
<option value="dvbs">dvbs</option>
</select>
</td>
More information about the vlc-commits
mailing list