Browse Source

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

pull/7/head
Felix Paul Kühne 13 years ago
parent
commit
cc8ed6374d
  1. 2
      modules/access/fs.c
  2. 2
      modules/codec/dirac.c
  3. 4
      modules/codec/x264.c
  4. 2
      share/lua/http/dialogs/create_stream.html

2
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_( \

2
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"

4
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 };

2
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>

Loading…
Cancel
Save