Commit 6f00c8d1 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: Fixed the appereance of playlist items in the Streaming/Transcoding Wizard

Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent b745d031
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key> <key>IBDocumentLocation</key>
<string>255 498 356 241 0 0 1024 746 </string> <string>255 498 356 241 0 0 1024 746 </string>
<key>IBFramework Version</key> <key>IBFramework Version</key>
<string>446.1</string> <string>489.0</string>
<key>IBLockedObjects</key> <key>IBLockedObjects</key>
<array> <array>
<integer>6</integer> <integer>6</integer>
...@@ -17,6 +17,6 @@ ...@@ -17,6 +17,6 @@
<integer>6</integer> <integer>6</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>8R3032</string> <string>9E17</string>
</dict> </dict>
</plist> </plist>
...@@ -344,10 +344,12 @@ static VLCWizard *_o_sharedInstance = nil; ...@@ -344,10 +344,12 @@ static VLCWizard *_o_sharedInstance = nil;
[[o_t2_matrix_inputSourceType cellAtRow:1 column:0] setTitle: [[o_t2_matrix_inputSourceType cellAtRow:1 column:0] setTitle:
_NS("Existing playlist item")]; _NS("Existing playlist item")];
[o_t2_btn_chooseFile setTitle: _NS("Choose...")]; [o_t2_btn_chooseFile setTitle: _NS("Choose...")];
[[[o_t2_tbl_plst tableColumnWithIdentifier:@"1"] headerCell] [[[o_t2_tbl_plst tableColumnWithIdentifier:@"name"] headerCell]
setStringValue: _NS("Title")]; setStringValue: _NS("Title")];
[[[o_t2_tbl_plst tableColumnWithIdentifier:@"2"] headerCell] [[[o_t2_tbl_plst tableColumnWithIdentifier:@"artist"] headerCell]
setStringValue: _NS("Author")]; setStringValue: _NS("Author")];
[[[o_t2_tbl_plst tableColumnWithIdentifier:@"duration"] headerCell]
setStringValue: _NS("Duration")];
[o_t2_box_prtExtrct setTitle: _NS("Partial Extract")]; [o_t2_box_prtExtrct setTitle: _NS("Partial Extract")];
[o_t2_ckb_enblPartExtrct setTitle: _NS("Enable")]; [o_t2_ckb_enblPartExtrct setTitle: _NS("Enable")];
[o_t2_ckb_enblPartExtrct setToolTip: _NS("This can be used to read only a " [o_t2_ckb_enblPartExtrct setToolTip: _NS("This can be used to read only a "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment