Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7c809307
Commit
7c809307
authored
Aug 13, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not translate log messages
parent
b8b592a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
modules/codec/subtitles/subsdec.c
modules/codec/subtitles/subsdec.c
+4
-4
modules/codec/subtitles/subsusf.c
modules/codec/subtitles/subsusf.c
+2
-2
modules/control/lirc.c
modules/control/lirc.c
+1
-1
No files found.
modules/codec/subtitles/subsdec.c
View file @
7c809307
...
...
@@ -351,9 +351,9 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
{
if
(
EnsureUTF8
(
psz_subtitle
)
==
NULL
)
{
msg_Err
(
p_dec
,
_
(
"failed to convert subtitle encoding.
\n
"
msg_Err
(
p_dec
,
"failed to convert subtitle encoding.
\n
"
"Try manually setting a character-encoding "
"before you open the file."
)
);
"before you open the file."
);
}
}
else
...
...
@@ -387,9 +387,9 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
if
(
(
ret
==
(
size_t
)(
-
1
)
)
||
inbytes_left
)
{
free
(
psz_new_subtitle
);
msg_Err
(
p_dec
,
_
(
"failed to convert subtitle encoding.
\n
"
msg_Err
(
p_dec
,
"failed to convert subtitle encoding.
\n
"
"Try manually setting a character-encoding "
"before you open the file."
)
);
"before you open the file."
);
return
NULL
;
}
...
...
modules/codec/subtitles/subsusf.c
View file @
7c809307
...
...
@@ -212,8 +212,8 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
/* USF Subtitles are mandated to be UTF-8 -- make sure it is */
if
(
EnsureUTF8
(
psz_subtitle
)
==
NULL
)
{
msg_Err
(
p_dec
,
_
(
"USF subtitles must be in UTF-8 format.
\n
"
"This stream contains USF subtitles which aren't."
)
);
msg_Err
(
p_dec
,
"USF subtitles must be in UTF-8 format.
\n
"
"This stream contains USF subtitles which aren't."
);
}
/* Create the subpicture unit */
...
...
modules/control/lirc.c
View file @
7c809307
...
...
@@ -186,7 +186,7 @@ static void Run( intf_thread_t *p_intf )
osd_MenuActivate
(
VLC_OBJECT
(
p_intf
)
);
else
{
msg_Err
(
p_intf
,
_
(
"Please provide one of the following parameters:"
)
);
msg_Err
(
p_intf
,
"Please provide one of the following parameters:"
);
msg_Err
(
p_intf
,
"[on|off|up|down|left|right|select]"
);
break
;
}
...
...
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