Changeset 805760
- Timestamp:
- 11/17/2013 12:53:26 PM (12 years ago)
- Location:
- bmo-expo/trunk
- Files:
-
- 3 edited
-
classes/admin/admin_page_options.php (modified) (2 diffs)
-
languages/bmo-expo-de_DE.mo (modified) (previous)
-
languages/bmo-expo-de_DE.po (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bmo-expo/trunk/classes/admin/admin_page_options.php
r805189 r805760 68 68 if($isSpecial){//special fields e.g. design 69 69 if(!$withoutDesign){ 70 add_settings_field('BMo_Expo_options_field_'.$key, $option['desc'], array($this,'BMo_Expo_options_field_html_design'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option));70 add_settings_field('BMo_Expo_options_field_'.$key, __($option['desc'], 'bmo-expo'), array($this,'BMo_Expo_options_field_html_design'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option)); 71 71 } 72 72 }else{ … … 74 74 switch ($option['valtype']){ 75 75 case 'bool': 76 add_settings_field('BMo_Expo_options_field_'.$key, $option['desc'], array($this,'BMo_Expo_options_field_html_bool'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option));76 add_settings_field('BMo_Expo_options_field_'.$key, __($option['desc'], 'bmo-expo'), array($this,'BMo_Expo_options_field_html_bool'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option)); 77 77 break; 78 78 case 'int': 79 add_settings_field('BMo_Expo_options_field_'.$key, $option['desc'], array($this,'BMo_Expo_options_field_html_int'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option));79 add_settings_field('BMo_Expo_options_field_'.$key, __($option['desc'], 'bmo-expo'), array($this,'BMo_Expo_options_field_html_int'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option)); 80 80 break; 81 81 case 'string': 82 add_settings_field('BMo_Expo_options_field_'.$key, $option['desc'], array($this,'BMo_Expo_options_field_html_string'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option));82 add_settings_field('BMo_Expo_options_field_'.$key, __($option['desc'], 'bmo-expo'), array($this,'BMo_Expo_options_field_html_string'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option)); 83 83 break; 84 84 case 'select': 85 add_settings_field('BMo_Expo_options_field_'.$key, $option['desc'], array($this,'BMo_Expo_options_field_html_select'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option));85 add_settings_field('BMo_Expo_options_field_'.$key, __($option['desc'], 'bmo-expo'), array($this,'BMo_Expo_options_field_html_select'), 'BMo_Expo_options_section_'.$option["type"].'_el', 'BMo_Expo_options_section_'.$option["type"], array("key"=>$key,"option"=>$option)); 86 86 break; 87 87 default: -
bmo-expo/trunk/languages/bmo-expo-de_DE.po
r805738 r805760 2 2 msgstr "" 3 3 "Project-Id-Version: BMo-Expo\n" 4 "POT-Creation-Date: 2013-11-1 6 01:19+0100\n"5 "PO-Revision-Date: 2013-11-17 1 2:47+0100\n"4 "POT-Creation-Date: 2013-11-17 12:47+0100\n" 5 "PO-Revision-Date: 2013-11-17 13:49+0100\n" 6 6 "Last-Translator: BMo <[email protected]>\n" 7 7 "Language-Team: BMo <[email protected]>\n"
Note: See TracChangeset
for help on using the changeset viewer.