Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
10d0f724
Commit
10d0f724
authored
Jan 23, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not translate ""
That would return the PO file metadatas.
parent
03beb7e6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/libvlc.c
src/libvlc.c
+6
-4
No files found.
src/libvlc.c
View file @
10d0f724
...
...
@@ -1385,14 +1385,14 @@ static void print_help_section( module_config_t *p_item, bool b_color, bool b_de
if
(
b_color
)
{
utf8_fprintf
(
stdout
,
RED
" %s:
\n
"
GRAY
,
_
(
p_item
->
psz_text
)
);
if
(
b_description
&&
p_item
->
psz_longtext
)
if
(
b_description
&&
p_item
->
psz_longtext
&&
*
p_item
->
psz_longtext
)
utf8_fprintf
(
stdout
,
MAGENTA
" %s
\n
"
GRAY
,
_
(
p_item
->
psz_longtext
)
);
}
else
{
utf8_fprintf
(
stdout
,
" %s:
\n
"
,
_
(
p_item
->
psz_text
)
);
if
(
b_description
&&
p_item
->
psz_longtext
)
if
(
b_description
&&
p_item
->
psz_longtext
&&
*
p_item
->
psz_longtext
)
utf8_fprintf
(
stdout
,
" %s
\n
"
,
_
(
p_item
->
psz_longtext
)
);
}
}
...
...
@@ -1583,7 +1583,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
utf8_fprintf
(
stdout
,
"
\n
%s
\n
"
,
_
(
p_item
->
psz_text
)
);
}
if
(
b_description
&&
p_item
->
psz_longtext
)
if
(
b_description
&&
p_item
->
psz_longtext
&&
*
p_item
->
psz_longtext
)
{
if
(
b_color
)
utf8_fprintf
(
stdout
,
CYAN
" %s
\n
"
GRAY
,
...
...
@@ -1825,7 +1826,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
}
}
if
(
b_description_hack
&&
p_item
->
psz_longtext
)
if
(
b_description_hack
&&
p_item
->
psz_longtext
&&
*
p_item
->
psz_longtext
)
{
sprintf
(
psz_buffer
,
"%s%s"
,
_
(
p_item
->
psz_longtext
),
psz_suf
);
...
...
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