Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
f69cdcd3
Commit
f69cdcd3
authored
Jan 12, 2012
by
Christoph Miebach
Committed by
Jean-Baptiste Kempf
Jan 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Using strings 3 times, defining each only once
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
393f9efe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+3
-2
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+2
-2
No files found.
modules/gui/macosx/simple_prefs.m
View file @
f69cdcd3
...
...
@@ -31,6 +31,7 @@
#import <vlc_interface.h>
#import <vlc_dialog.h>
#import <vlc_modules.h>
#import <vlc_config_cat.h>
#import "misc.h"
#import "intf.h"
#import "AppleRemote.h"
...
...
@@ -185,11 +186,11 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
}
else
if
(
[
o_itemIdent
isEqual
:
VLCOSDSettingToolbarIdentifier
]
)
{
CreateToolbarItem
(
_NS
(
"Subtitles & OSD"
)
,
_NS
(
"Subtitles & On Screen Display Settings"
),
@"spref_cone_Subtitles_64"
,
showOSDSettings
);
CreateToolbarItem
(
SUBPIC_TITLE
,
_NS
(
"Subtitles & On Screen Display Settings"
),
@"spref_cone_Subtitles_64"
,
showOSDSettings
);
}
else
if
(
[
o_itemIdent
isEqual
:
VLCInputSettingToolbarIdentifier
]
)
{
CreateToolbarItem
(
_NS
(
"Input & Codecs"
)
,
_NS
(
"Input & Codec settings"
),
@"spref_cone_Input_64"
,
showInputSettings
);
CreateToolbarItem
(
INPUT_TITLE
,
_NS
(
"Input & Codec settings"
),
@"spref_cone_Input_64"
,
showInputSettings
);
}
else
if
(
[
o_itemIdent
isEqual
:
VLCHotkeysSettingToolbarIdentifier
]
)
{
...
...
modules/gui/qt4/components/simple_preferences.cpp
View file @
f69cdcd3
...
...
@@ -89,9 +89,9 @@ SPrefsCatList::SPrefsCatList( intf_thread_t *_p_intf, QWidget *_parent, bool sma
cone_audio_64
,
1
);
ADD_CATEGORY
(
SPrefsVideo
,
qtr
(
"Video"
),
qtr
(
"Video Settings"
),
cone_video_64
,
2
);
ADD_CATEGORY
(
SPrefsSubtitles
,
qtr
(
"Subtitles && OSD"
)
,
qtr
(
"Subtitles & On Screen Display Settings"
),
ADD_CATEGORY
(
SPrefsSubtitles
,
SUBPIC_TITLE
,
qtr
(
"Subtitles & On Screen Display Settings"
),
cone_subtitles_64
,
3
);
ADD_CATEGORY
(
SPrefsInputAndCodecs
,
qtr
(
"Input && Codecs"
)
,
qtr
(
"Input & Codecs Settings"
),
ADD_CATEGORY
(
SPrefsInputAndCodecs
,
INPUT_TITLE
,
qtr
(
"Input & Codecs Settings"
),
cone_input_64
,
4
);
ADD_CATEGORY
(
SPrefsHotkeys
,
qtr
(
"Hotkeys"
),
qtr
(
"Configure Hotkeys"
),
cone_hotkeys_64
,
5
);
...
...
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