Commit cc8ed637 authored by Felix Paul Kühne's avatar Felix Paul Kühne

*: unify 'none' vs. 'None' (-1 l10n string)

parent 673a01e1
......@@ -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_( \
......
......@@ -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"
......
......@@ -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 };
......
......@@ -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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment