Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
cc8ed637
Commit
cc8ed637
authored
Apr 25, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*: unify 'none' vs. 'None' (-1 l10n string)
parent
673a01e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
modules/access/fs.c
modules/access/fs.c
+1
-1
modules/codec/dirac.c
modules/codec/dirac.c
+1
-1
modules/codec/x264.c
modules/codec/x264.c
+2
-2
share/lua/http/dialogs/create_stream.html
share/lua/http/dialogs/create_stream.html
+1
-1
No files found.
modules/access/fs.c
View file @
cc8ed637
...
...
@@ -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_
(
"e
xpand"
)
};
N_
(
"
None"
),
N_
(
"Collapse"
),
N_
(
"E
xpand"
)
};
#define IGNORE_TEXT N_("Ignored extensions")
#define IGNORE_LONGTEXT N_( \
...
...
modules/codec/dirac.c
View file @
cc8ed637
...
...
@@ -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_
(
"
n
one"
),
N_
(
"Centre Weighted Median"
),
{
N_
(
"
N
one"
),
N_
(
"Centre Weighted Median"
),
N_
(
"Rectangular Linear Phase"
),
N_
(
"Diagonal Linear Phase"
)
};
#define ENC_PREFILTER_STRENGTH "prefilter-strength"
...
...
modules/codec/x264.c
View file @
cc8ed637
...
...
@@ -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_
(
"a
ll"
)
};
{
N_
(
"
None"
),
N_
(
"Fast"
),
N_
(
"Normal"
),
N_
(
"Slow"
),
N_
(
"A
ll"
)
};
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_
(
"a
uto"
)
};
{
N_
(
"
None"
),
N_
(
"Spatial"
),
N_
(
"Temporal"
),
N_
(
"A
uto"
)
};
static
const
int
const
framepacking_list
[]
=
{
-
1
,
0
,
1
,
2
,
3
,
4
,
5
};
...
...
share/lua/http/dialogs/create_stream.html
View file @
cc8ed637
...
...
@@ -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("
n
one") ?>
</option>
<option
value=
""
>
<?vlc gettext("
N
one") ?>
</option>
<option
value=
"dvbs"
>
dvbs
</option>
</select>
</td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment