Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
92e62f3c
Commit
92e62f3c
authored
Jun 01, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: CAS: added i18n support for the customization panel
parent
303a0508
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
738 additions
and
697 deletions
+738
-697
extras/package/macosx/Resources/English.lproj/ConvertAndSave.xib
...package/macosx/Resources/English.lproj/ConvertAndSave.xib
+712
-697
modules/gui/macosx/ConvertAndSave.h
modules/gui/macosx/ConvertAndSave.h
+1
-0
modules/gui/macosx/ConvertAndSave.m
modules/gui/macosx/ConvertAndSave.m
+25
-0
No files found.
extras/package/macosx/Resources/English.lproj/ConvertAndSave.xib
View file @
92e62f3c
This source diff could not be displayed because it is too large. You can
view the blob
instead.
modules/gui/macosx/ConvertAndSave.h
View file @
92e62f3c
...
...
@@ -51,6 +51,7 @@
IBOutlet
id
_customize_panel
;
IBOutlet
id
_customize_ok_btn
;
IBOutlet
id
_customize_cancel_btn
;
IBOutlet
id
_customize_tabview
;
IBOutlet
id
_customize_encap_matrix
;
IBOutlet
id
_customize_vid_ckb
;
IBOutlet
id
_customize_vid_keep_ckb
;
...
...
modules/gui/macosx/ConvertAndSave.m
View file @
92e62f3c
...
...
@@ -82,6 +82,31 @@ static VLCConvertAndSave *_o_sharedInstance = nil;
[
_destination_lbl
setStringValue
:
_NS
(
"Choose Destination"
)];
[
_destination_filename_stub_lbl
setStringValue
:
_NS
(
"Choose an output location"
)];
[
_destination_filename_lbl
setHidden
:
YES
];
[
_customize_ok_btn
setTitle
:
_NS
(
"Apply"
)];
[
_customize_cancel_btn
setTitle
:
_NS
(
"Cancel"
)];
[[
_customize_tabview
tabViewItemAtIndex
:
0
]
setLabel
:
_NS
(
"Encapsulation"
)];
[[
_customize_tabview
tabViewItemAtIndex
:
1
]
setLabel
:
_NS
(
"Video codec"
)];
[[
_customize_tabview
tabViewItemAtIndex
:
2
]
setLabel
:
_NS
(
"Audio codec"
)];
[[
_customize_tabview
tabViewItemAtIndex
:
3
]
setLabel
:
_NS
(
"Subtitles"
)];
[
_customize_tabview
selectTabViewItemAtIndex
:
0
];
[
_customize_vid_ckb
setTitle
:
_NS
(
"Video"
)];
[
_customize_vid_keep_ckb
setTitle
:
_NS
(
"Keep original video track"
)];
[
_customize_vid_codec_lbl
setStringValue
:
_NS
(
"Codec"
)];
[
_customize_vid_bitrate_lbl
setStringValue
:
_NS
(
"Bitrate"
)];
[
_customize_vid_framerate_lbl
setStringValue
:
_NS
(
"Frame Rate"
)];
[
_customize_vid_res_box
setTitle
:
_NS
(
"Resolution"
)];
[
_customize_vid_res_lbl
setStringValue
:
_NS
(
"You just need to fill one of the three following parameters, VLC will autodetect the other using the original aspect ratio"
)];
[
_customize_vid_width_lbl
setStringValue
:
_NS
(
"Width"
)];
[
_customize_vid_height_lbl
setStringValue
:
_NS
(
"Height"
)];
[
_customize_vid_scale_lbl
setStringValue
:
_NS
(
"Scale"
)];
[
_customize_aud_ckb
setTitle
:
_NS
(
"Audio"
)];
[
_customize_aud_keep_ckb
setTitle
:
_NS
(
"Keep original audio track"
)];
[
_customize_aud_codec_lbl
setStringValue
:
_NS
(
"Codec"
)];
[
_customize_aud_bitrate_lbl
setStringValue
:
_NS
(
"Bitrate"
)];
[
_customize_aud_channels_lbl
setStringValue
:
_NS
(
"Channels"
)];
[
_customize_aud_samplerate_lbl
setStringValue
:
_NS
(
"Sample Rate"
)];
[
_customize_subs_ckb
setTitle
:
_NS
(
"Subtitles"
)];
[
_customize_subs_overlay_ckb
setTitle
:
_NS
(
"Overlay subtitles on the video"
)];
_profileNames
=
[[
NSArray
alloc
]
initWithObjects
:
@"Video - H.264 + MP3 (MP4)"
,
...
...
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