Commit 01169d8f authored by Felix Paul Kühne's avatar Felix Paul Kühne

* equalizer.m: use preset_list_text instead of preset_list when creating the...

* equalizer.m: use preset_list_text instead of preset_list when creating the popup-entries to enable l10n of the presets
* MainMenu.nib: made the equaliser's popup a wider so it fits all l10ns
parent f8266436
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key> <key>IBDocumentLocation</key>
<string>-2 60 496 270 0 0 1024 746 </string> <string>36 197 496 270 0 0 800 578 </string>
<key>IBEditorPositions</key> <key>IBEditorPositions</key>
<dict> <dict>
<key>1617</key> <key>1617</key>
...@@ -21,9 +21,10 @@ ...@@ -21,9 +21,10 @@
<array/> <array/>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>2029</integer>
<integer>21</integer> <integer>21</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>7U16</string> <string>7W98</string>
</dict> </dict>
</plist> </plist>
...@@ -149,7 +149,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf, ...@@ -149,7 +149,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf,
[o_popup_presets removeAllItems]; [o_popup_presets removeAllItems];
for( i = 0; i < 18 ; i++ ) for( i = 0; i < 18 ; i++ )
{ {
[o_popup_presets insertItemWithTitle: _NS(preset_list[i]) atIndex: i]; [o_popup_presets insertItemWithTitle: _NS(preset_list_text[i]) atIndex: i];
} }
[o_window setTitle: _NS("Equalizer")]; [o_window setTitle: _NS("Equalizer")];
......
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