Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Steve Lhomme
vlc
Commits
a334e321
Commit
a334e321
authored
Dec 06, 2017
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MIDI: use only one i18n string for all the modules
parent
3be21393
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/codec/audiotoolbox_midi.c
modules/codec/audiotoolbox_midi.c
+3
-3
modules/codec/fluidsynth.c
modules/codec/fluidsynth.c
+2
-2
No files found.
modules/codec/audiotoolbox_midi.c
View file @
a334e321
...
...
@@ -44,9 +44,9 @@ do { if ((errorCode) != noErr) goto exceptionLabel; \
} while ( 0 )
#endif
#define SOUNDFONT_TEXT N_("Sound
f
ont file")
#define SOUNDFONT_TEXT N_("Sound
F
ont file")
#define SOUNDFONT_LONGTEXT N_( \
"
The Sound Font file (SF2/DLS) to use for synthesis."
)
"
SoundFont file to use for software synthesis."
)
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
@@ -60,7 +60,7 @@ vlc_module_begin()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACODEC
)
set_callbacks
(
Open
,
Close
)
add_loadfile
(
CFG_PREFIX
"soundfont"
,
""
,
add_loadfile
(
"soundfont"
,
""
,
SOUNDFONT_TEXT
,
SOUNDFONT_LONGTEXT
,
false
)
vlc_module_end
()
...
...
modules/codec/fluidsynth.c
View file @
a334e321
...
...
@@ -44,9 +44,9 @@
#include <fluidlite.h>
#endif
#define SOUNDFONT_TEXT N_("Sound
fonts
")
#define SOUNDFONT_TEXT N_("Sound
Font file
")
#define SOUNDFONT_LONGTEXT N_( \
"
A sound fonts file is required
for software synthesis." )
"
SoundFont file to use
for software synthesis." )
#define CHORUS_TEXT N_("Chorus")
...
...
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