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
7b3f9bc3
Commit
7b3f9bc3
authored
Jul 07, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move vlc_gettext() with vlc_bindtextdomain()
parent
88bc7492
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
18 deletions
+14
-18
src/extras/libc.c
src/extras/libc.c
+0
-18
src/modules/textdomain.c
src/modules/textdomain.c
+14
-0
No files found.
src/extras/libc.c
View file @
7b3f9bc3
...
...
@@ -61,24 +61,6 @@
#ifdef ENABLE_NLS
# include <libintl.h>
#endif
/**
* In-tree plugins share their gettext domain with LibVLC.
*/
char
*
vlc_gettext
(
const
char
*
msgid
)
{
#ifdef ENABLE_NLS
if
(
unlikely
(
!*
msgid
))
return
(
char
*
)
""
;
return
dgettext
(
PACKAGE_NAME
,
msgid
);
#else
return
(
char
*
)
msgid
;
#endif
}
/*****************************************************************************
* Local conversion routine from ISO_6937 to UTF-8 charset. Support for this
* is still missing in libiconv, hence multiple operating systems lack it.
...
...
src/modules/textdomain.c
View file @
7b3f9bc3
...
...
@@ -91,3 +91,17 @@ int vlc_bindtextdomain (const char *domain)
return
0
;
}
/**
* In-tree plugins share their gettext domain with LibVLC.
*/
char
*
vlc_gettext
(
const
char
*
msgid
)
{
#ifdef ENABLE_NLS
if
(
unlikely
(
!*
msgid
))
return
(
char
*
)
""
;
return
dgettext
(
PACKAGE_NAME
,
msgid
);
#else
return
(
char
*
)
msgid
;
#endif
}
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