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
788b2687
Commit
788b2687
authored
Apr 25, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: save 6 l10n strings
parent
d3232605
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+3
-3
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+5
-5
No files found.
modules/gui/macosx/playlistinfo.m
View file @
788b2687
...
...
@@ -159,9 +159,9 @@ static VLCInfo *_o_sharedInstance = nil;
-
(
void
)
initMediaPanelStats
{
//Initializing Input Variables
[
o_read_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
8.0
f KiB"
,
(
float
)
0
]];
[
o_read_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
.1
f KiB"
,
(
float
)
0
]];
[
o_input_bitrate_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%6.0f kb/s"
,
(
float
)
0
]];
[
o_demux_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
8.0
f KiB"
,
(
float
)
0
]];
[
o_demux_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
.1
f KiB"
,
(
float
)
0
]];
[
o_demux_bitrate_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%6.0f kb/s"
,
(
float
)
0
]];
//Initializing Video Variables
...
...
@@ -171,7 +171,7 @@ static VLCInfo *_o_sharedInstance = nil;
//Initializing Output Variables
[
o_sent_packets_txt
setIntValue
:
0
];
[
o_sent_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
8.0
f KiB"
,
(
float
)
0
]];
[
o_sent_bytes_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%
.1
f KiB"
,
(
float
)
0
]];
[
o_sent_bitrate_txt
setStringValue
:
[
NSString
stringWithFormat
:
@"%6.0f kb/s"
,
(
float
)
0
]];
//Initializing Audio Variables
...
...
modules/gui/macosx/simple_prefs.m
View file @
788b2687
...
...
@@ -139,13 +139,13 @@ create_toolbar_item(NSString * o_itemIdent, NSString * o_name, NSString * o_desc
if
([
o_itemIdent
isEqual
:
VLCIntfSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
"Interface"
),
_NS
(
"Interface Settings"
),
@"spref_cone_Interface_64"
,
showInterfaceSettings
);
}
else
if
([
o_itemIdent
isEqual
:
VLCAudioSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
"Audio"
),
_NS
(
"
General
Audio Settings"
),
@"spref_cone_Audio_64"
,
showAudioSettings
);
CreateToolbarItem
(
_NS
(
"Audio"
),
_NS
(
"Audio Settings"
),
@"spref_cone_Audio_64"
,
showAudioSettings
);
}
else
if
([
o_itemIdent
isEqual
:
VLCVideoSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
"Video"
),
_NS
(
"
General
Video Settings"
),
@"spref_cone_Video_64"
,
showVideoSettings
);
CreateToolbarItem
(
_NS
(
"Video"
),
_NS
(
"Video Settings"
),
@"spref_cone_Video_64"
,
showVideoSettings
);
}
else
if
([
o_itemIdent
isEqual
:
VLCOSDSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
SUBPIC_TITLE
),
_NS
(
"Subtitle & On Screen Display Settings"
),
@"spref_cone_Subtitles_64"
,
showOSDSettings
);
}
else
if
([
o_itemIdent
isEqual
:
VLCInputSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
INPUT_TITLE
),
_NS
(
"Input & Codec
s
ettings"
),
@"spref_cone_Input_64"
,
showInputSettings
);
CreateToolbarItem
(
_NS
(
INPUT_TITLE
),
_NS
(
"Input & Codec
S
ettings"
),
@"spref_cone_Input_64"
,
showInputSettings
);
}
else
if
([
o_itemIdent
isEqual
:
VLCHotkeysSettingToolbarIdentifier
])
{
CreateToolbarItem
(
_NS
(
"Hotkeys"
),
_NS
(
"Hotkeys settings"
),
@"spref_cone_Hotkeys_64"
,
showHotkeySettings
);
}
...
...
@@ -176,7 +176,7 @@ create_toolbar_item(NSString * o_itemIdent, NSString * o_name, NSString * o_desc
/* audio */
[
o_audio_dolby_txt
setStringValue
:
_NS
(
"Force detection of Dolby Surround"
)];
[
o_audio_effects_box
setTitle
:
_NS
(
"Effects"
)];
[
o_audio_enable_ckb
setTitle
:
_NS
(
"Enable
A
udio"
)];
[
o_audio_enable_ckb
setTitle
:
_NS
(
"Enable
a
udio"
)];
[
o_audio_general_box
setTitle
:
_NS
(
"General Audio"
)];
[
o_audio_lang_txt
setStringValue
:
_NS
(
"Preferred Audio language"
)];
[
o_audio_last_ckb
setTitle
:
_NS
(
"Enable Last.fm submissions"
)];
...
...
@@ -260,7 +260,7 @@ create_toolbar_item(NSString * o_itemIdent, NSString * o_name, NSString * o_desc
[
o_video_black_ckb
setTitle
:
_NS
(
"Black screens in Fullscreen mode"
)];
[
o_video_device_txt
setStringValue
:
_NS
(
"Fullscreen Video Device"
)];
[
o_video_display_box
setTitle
:
_NS
(
"Display"
)];
[
o_video_enable_ckb
setTitle
:
_NS
(
"Enable
V
ideo"
)];
[
o_video_enable_ckb
setTitle
:
_NS
(
"Enable
v
ideo"
)];
[
o_video_fullscreen_ckb
setTitle
:
_NS
(
"Fullscreen"
)];
[
o_video_videodeco_ckb
setTitle
:
_NS
(
"Window decorations"
)];
[
o_video_onTop_ckb
setTitle
:
_NS
(
"Always on top"
)];
...
...
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