Options Framework - Version 1.8

Version Description

Download this release

Release Info

Developer downstairsdev
Plugin Icon wp plugin Options Framework
Version 1.8
Comparing to
See all releases

Code changes from version 1.7.1 to 1.8

css/optionsframework.css CHANGED
@@ -38,6 +38,9 @@
38
  #optionsframework .section-checkbox .explain {
39
  max-width:94%;
40
  }
 
 
 
41
  #optionsframework .controls select, #optionsframework .controls textarea {
42
  margin-bottom:10px;
43
  width:100%;
38
  #optionsframework .section-checkbox .explain {
39
  max-width:94%;
40
  }
41
+ #optionsframework .controls input[type=text] {
42
+ width:100%;
43
+ }
44
  #optionsframework .controls select, #optionsframework .controls textarea {
45
  margin-bottom:10px;
46
  width:100%;
includes/class-options-framework-admin.php CHANGED
@@ -31,7 +31,7 @@ class Options_Framework_Admin {
31
  if ( $options ) {
32
 
33
  // Add the options page and menu item.
34
- add_action( 'admin_menu', array( $this, 'add_options_page' ) );
35
 
36
  // Add the required scripts and styles
37
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
@@ -113,10 +113,21 @@ class Options_Framework_Admin {
113
  static function menu_settings() {
114
 
115
  $menu = array(
116
- 'page_title' => __( 'Theme Options', 'optionsframework'),
 
 
 
 
 
117
  'menu_title' => __('Theme Options', 'optionsframework'),
118
  'capability' => 'edit_theme_options',
119
- 'menu_slug' => 'options-framework'
 
 
 
 
 
 
120
  );
121
 
122
  return apply_filters( 'optionsframework_menu', $menu );
@@ -127,11 +138,36 @@ class Options_Framework_Admin {
127
  *
128
  * @since 1.7.0
129
  */
130
- function add_options_page() {
131
 
132
  $menu = $this->menu_settings();
133
- $this->options_screen = add_theme_page( $menu['page_title'], $menu['menu_title'], $menu['capability'], $menu['menu_slug'], array( $this, 'options_page' ) );
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  }
136
 
137
  /**
@@ -139,7 +175,11 @@ class Options_Framework_Admin {
139
  *
140
  * @since 1.7.0
141
  */
142
- function enqueue_admin_styles() {
 
 
 
 
143
  wp_enqueue_style( 'optionsframework', plugin_dir_url( dirname(__FILE__) ) . 'css/optionsframework.css', array(), Options_Framework::VERSION );
144
  wp_enqueue_style( 'wp-color-picker' );
145
  }
@@ -151,9 +191,7 @@ class Options_Framework_Admin {
151
  */
152
  function enqueue_admin_scripts( $hook ) {
153
 
154
- $menu = $this->menu_settings();
155
-
156
- if ( 'appearance_page_' . $menu['menu_slug'] != $hook )
157
  return;
158
 
159
  // Enqueue custom option panel JS
31
  if ( $options ) {
32
 
33
  // Add the options page and menu item.
34
+ add_action( 'admin_menu', array( $this, 'add_custom_options_page' ) );
35
 
36
  // Add the required scripts and styles
37
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
113
  static function menu_settings() {
114
 
115
  $menu = array(
116
+
117
+ // Modes: submenu, menu
118
+ 'mode' => 'submenu',
119
+
120
+ // Submenu default settings
121
+ 'page_title' => __( 'Theme Options', 'optionsframework'),
122
  'menu_title' => __('Theme Options', 'optionsframework'),
123
  'capability' => 'edit_theme_options',
124
+ 'menu_slug' => 'options-framework',
125
+ 'parent_slug' => 'themes.php',
126
+
127
+ // Menu default settings
128
+ 'icon_url' => 'dashicons-admin-generic',
129
+ 'position' => '61'
130
+
131
  );
132
 
133
  return apply_filters( 'optionsframework_menu', $menu );
138
  *
139
  * @since 1.7.0
140
  */
141
+ function add_custom_options_page() {
142
 
143
  $menu = $this->menu_settings();
 
144
 
145
+ switch( $menu['mode'] ) {
146
+
147
+ case 'menu':
148
+ // http://codex.wordpress.org/Function_Reference/add_menu_page
149
+ $this->options_screen = add_menu_page(
150
+ $menu['page_title'],
151
+ $menu['menu_title'],
152
+ $menu['capability'],
153
+ $menu['menu_slug'],
154
+ array( $this, 'options_page' ),
155
+ $menu['icon_url'],
156
+ $menu['position']
157
+ );
158
+ break;
159
+
160
+ default:
161
+ // http://codex.wordpress.org/Function_Reference/add_submenu_page
162
+ $this->options_screen = add_submenu_page(
163
+ $menu['parent_slug'],
164
+ $menu['page_title'],
165
+ $menu['menu_title'],
166
+ $menu['capability'],
167
+ $menu['menu_slug'],
168
+ array( $this, 'options_page' ) );
169
+ break;
170
+ }
171
  }
172
 
173
  /**
175
  *
176
  * @since 1.7.0
177
  */
178
+ function enqueue_admin_styles( $hook ) {
179
+
180
+ if ( $this->options_screen != $hook )
181
+ return;
182
+
183
  wp_enqueue_style( 'optionsframework', plugin_dir_url( dirname(__FILE__) ) . 'css/optionsframework.css', array(), Options_Framework::VERSION );
184
  wp_enqueue_style( 'wp-color-picker' );
185
  }
191
  */
192
  function enqueue_admin_scripts( $hook ) {
193
 
194
+ if ( $this->options_screen != $hook )
 
 
195
  return;
196
 
197
  // Enqueue custom option panel JS
includes/class-options-framework.php CHANGED
@@ -15,7 +15,7 @@ class Options_Framework {
15
  * @since 1.7.0
16
  * @type string
17
  */
18
- const VERSION = '1.7.1';
19
 
20
  /**
21
  * Initialize the plugin.
@@ -24,27 +24,11 @@ class Options_Framework {
24
  */
25
  public function init() {
26
 
27
- // Load plugin text domain
28
- add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
29
-
30
  // Needs to run every time in case theme has been changed
31
  add_action( 'admin_init', array( $this, 'set_theme_option' ) );
32
 
33
  }
34
 
35
- /**
36
- * Load the plugin text domain for translation.
37
- *
38
- * @since 1.7.0
39
- */
40
- public function load_plugin_textdomain() {
41
- $domain = 'optionsframework';
42
- $locale = apply_filters( 'plugin_locale', get_locale(), $domain );
43
-
44
- load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
45
- load_plugin_textdomain( $domain, FALSE, basename( dirname( __FILE__ ) ) . '/languages' );
46
- }
47
-
48
  /**
49
  * Sets option defaults
50
  *
@@ -135,4 +119,4 @@ class Options_Framework {
135
  return $options;
136
  }
137
 
138
- }
15
  * @since 1.7.0
16
  * @type string
17
  */
18
+ const VERSION = '1.8.0';
19
 
20
  /**
21
  * Initialize the plugin.
24
  */
25
  public function init() {
26
 
 
 
 
27
  // Needs to run every time in case theme has been changed
28
  add_action( 'admin_init', array( $this, 'set_theme_option' ) );
29
 
30
  }
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  /**
33
  * Sets option defaults
34
  *
119
  return $options;
120
  }
121
 
122
+ }
includes/class-options-interface.php CHANGED
@@ -382,7 +382,7 @@ class Options_Framework_Interface {
382
  if ( isset($value['name']) ) {
383
  $output .= '<h4 class="heading">' . esc_html( $value['name'] ) . '</h4>' . "\n";
384
  }
385
- if ( $value['desc'] ) {
386
  $output .= apply_filters('of_sanitize_info', $value['desc'] ) . "\n";
387
  }
388
  $output .= '</div>' . "\n";
382
  if ( isset($value['name']) ) {
383
  $output .= '<h4 class="heading">' . esc_html( $value['name'] ) . '</h4>' . "\n";
384
  }
385
+ if ( isset( $value['desc'] ) ) {
386
  $output .= apply_filters('of_sanitize_info', $value['desc'] ) . "\n";
387
  }
388
  $output .= '</div>' . "\n";
includes/class-options-media-uploader.php CHANGED
@@ -107,7 +107,7 @@ class Options_Framework_Media_Uploader {
107
 
108
  $menu = Options_Framework_Admin::menu_settings();
109
 
110
- if ( 'appearance_page_' . $menu['menu_slug'] != $hook )
111
  return;
112
 
113
  if ( function_exists( 'wp_enqueue_media' ) )
107
 
108
  $menu = Options_Framework_Admin::menu_settings();
109
 
110
+ if ( substr( $hook, -strlen( $menu['menu_slug'] ) ) !== $menu['menu_slug'] )
111
  return;
112
 
113
  if ( function_exists( 'wp_enqueue_media' ) )
languages/optionsframework-da_DK.mo ADDED
Binary file
languages/optionsframework-da_DK.po ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: options-framework\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
7
+ "POT-Creation-Date: 2013-11-26 23:01:08+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2014-03-06 12:26+0100\n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: \n"
14
+ "X-Generator: Poedit 1.5.4\n"
15
+
16
+ #: includes/class-options-framework-admin.php:64
17
+ msgid ""
18
+ "Your current theme does not have support for the Options Framework plugin. "
19
+ "<a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide "
20
+ "Notice</a>"
21
+ msgstr ""
22
+ "Dit nuværende tema understøtter ikke Options Framework pluginen. <a href="
23
+ "\"%1$s\" target=\"_blank\">Lær mere</a> | <a href=\"%2$s\">Fjern besked</a>"
24
+
25
+ #: includes/class-options-framework-admin.php:116
26
+ #: includes/class-options-framework-admin.php:117
27
+ #: includes/class-options-framework-admin.php:336
28
+ msgid "Theme Options"
29
+ msgstr "Temaindstillinger"
30
+
31
+ #: includes/class-options-framework-admin.php:202
32
+ msgid "Save Options"
33
+ msgstr "Gem indstillinger"
34
+
35
+ #: includes/class-options-framework-admin.php:203
36
+ msgid "Restore Defaults"
37
+ msgstr "Nulstil indstillinger"
38
+
39
+ #: includes/class-options-framework-admin.php:203
40
+ msgid "Click OK to reset. Any theme settings will be lost!"
41
+ msgstr "Klik OK for at nulstille. Alle temaindstillinger vil gå tabt!"
42
+
43
+ #: includes/class-options-framework-admin.php:234
44
+ msgid "Default options restored."
45
+ msgstr "Standardindstillinger nulstillet."
46
+
47
+ #: includes/class-options-framework-admin.php:288
48
+ msgid "Options saved."
49
+ msgstr "Indstillinger gemt."
50
+
51
+ #: includes/class-options-media-uploader.php:63
52
+ msgid "No file chosen"
53
+ msgstr "Ingen fil valgt"
54
+
55
+ #: includes/class-options-media-uploader.php:66
56
+ #: includes/class-options-media-uploader.php:119
57
+ msgid "Upload"
58
+ msgstr "Upload"
59
+
60
+ #: includes/class-options-media-uploader.php:68
61
+ #: includes/class-options-media-uploader.php:120
62
+ msgid "Remove"
63
+ msgstr "Fjern"
64
+
65
+ #: includes/class-options-media-uploader.php:71
66
+ msgid "Upgrade your version of WordPress for full media support."
67
+ msgstr "Opgrader din WordPress version for at få fuld medie understøttelse."
68
+
69
+ #: includes/class-options-media-uploader.php:95
70
+ msgid "View File"
71
+ msgstr "Se fil"
72
+
73
+ #: includes/class-options-sanitization.php:241
74
+ msgid "No Repeat"
75
+ msgstr "Gentag ikke"
76
+
77
+ #: includes/class-options-sanitization.php:242
78
+ msgid "Repeat Horizontally"
79
+ msgstr "Gentag vandred"
80
+
81
+ #: includes/class-options-sanitization.php:243
82
+ msgid "Repeat Vertically"
83
+ msgstr "Gentag lodret"
84
+
85
+ #: includes/class-options-sanitization.php:244
86
+ msgid "Repeat All"
87
+ msgstr "Gentag alle"
88
+
89
+ #: includes/class-options-sanitization.php:257
90
+ msgid "Top Left"
91
+ msgstr "Top Venstre"
92
+
93
+ #: includes/class-options-sanitization.php:258
94
+ msgid "Top Center"
95
+ msgstr "Top Center"
96
+
97
+ #: includes/class-options-sanitization.php:259
98
+ msgid "Top Right"
99
+ msgstr "Top Højre"
100
+
101
+ #: includes/class-options-sanitization.php:260
102
+ msgid "Middle Left"
103
+ msgstr "Midt Venstre"
104
+
105
+ #: includes/class-options-sanitization.php:261
106
+ msgid "Middle Center"
107
+ msgstr "Midt Center"
108
+
109
+ #: includes/class-options-sanitization.php:262
110
+ msgid "Middle Right"
111
+ msgstr "Midt Højre"
112
+
113
+ #: includes/class-options-sanitization.php:263
114
+ msgid "Bottom Left"
115
+ msgstr "Bund Venstre"
116
+
117
+ #: includes/class-options-sanitization.php:264
118
+ msgid "Bottom Center"
119
+ msgstr "Bund Center"
120
+
121
+ #: includes/class-options-sanitization.php:265
122
+ msgid "Bottom Right"
123
+ msgstr "Bund Højre"
124
+
125
+ #: includes/class-options-sanitization.php:278
126
+ msgid "Scroll Normally"
127
+ msgstr "Scroll normalt"
128
+
129
+ #: includes/class-options-sanitization.php:279
130
+ msgid "Fixed in Place"
131
+ msgstr "Fast position"
132
+
133
+ #: includes/class-options-sanitization.php:353
134
+ msgid "Normal"
135
+ msgstr "Normal"
136
+
137
+ #: includes/class-options-sanitization.php:354
138
+ msgid "Italic"
139
+ msgstr "Kursiv"
140
+
141
+ #: includes/class-options-sanitization.php:355
142
+ msgid "Bold"
143
+ msgstr "Fed"
144
+
145
+ #: includes/class-options-sanitization.php:356
146
+ msgid "Bold Italic"
147
+ msgstr "Fed kursiv"
148
+
149
+ #: options-check/options.php:32
150
+ msgid "One"
151
+ msgstr "En"
152
+
153
+ #: options-check/options.php:33
154
+ msgid "Two"
155
+ msgstr "To"
156
+
157
+ #: options-check/options.php:34
158
+ msgid "Three"
159
+ msgstr "Tre"
160
+
161
+ #: options-check/options.php:35
162
+ msgid "Four"
163
+ msgstr "Fire"
164
+
165
+ #: options-check/options.php:36
166
+ msgid "Five"
167
+ msgstr "Fem"
168
+
169
+ #: options-check/options.php:41
170
+ msgid "French Toast"
171
+ msgstr "Fransk Toast"
172
+
173
+ #: options-check/options.php:42
174
+ msgid "Pancake"
175
+ msgstr "Pandekage"
176
+
177
+ #: options-check/options.php:43
178
+ msgid "Omelette"
179
+ msgstr "Omelet"
180
+
181
+ #: options-check/options.php:44
182
+ msgid "Crepe"
183
+ msgstr "Crepe"
184
+
185
+ #: options-check/options.php:45
186
+ msgid "Waffle"
187
+ msgstr "Vaffel"
188
+
189
+ #: options-check/options.php:105
190
+ msgid "Basic Settings"
191
+ msgstr "Basisindstillinger"
192
+
193
+ #: options-check/options.php:109
194
+ msgid "Input Text Mini"
195
+ msgstr "Input Tekst Mini"
196
+
197
+ #: options-check/options.php:110
198
+ msgid "A mini text input field."
199
+ msgstr "Et mini tekstinput felt"
200
+
201
+ #: options-check/options.php:117
202
+ msgid "Input Text"
203
+ msgstr "Inputtekst"
204
+
205
+ #: options-check/options.php:118
206
+ msgid "A text input field."
207
+ msgstr "Et tekstinput felt"
208
+
209
+ #: options-check/options.php:124
210
+ msgid "Textarea"
211
+ msgstr "Textarea"
212
+
213
+ #: options-check/options.php:125
214
+ msgid "Textarea description."
215
+ msgstr "Textarea beskrivelse"
216
+
217
+ #: options-check/options.php:131
218
+ msgid "Input Select Small"
219
+ msgstr "Inout Vælg Lille"
220
+
221
+ #: options-check/options.php:132
222
+ msgid "Small Select Box."
223
+ msgstr "Lille Select Boks"
224
+
225
+ #: options-check/options.php:140
226
+ msgid "Input Select Wide"
227
+ msgstr "Inout Select Bred"
228
+
229
+ #: options-check/options.php:141
230
+ msgid "A wider select box."
231
+ msgstr "En bredere select boks."
232
+
233
+ #: options-check/options.php:148
234
+ msgid "Select a Category"
235
+ msgstr "Vælg en kategori"
236
+
237
+ #: options-check/options.php:149
238
+ msgid "Passed an array of categories with cat_ID and cat_name"
239
+ msgstr "Sendte et array med kategorier med cat_ID og cat_name"
240
+
241
+ #: options-check/options.php:156
242
+ msgid "Select a Tag"
243
+ msgstr "Vælg et Tag"
244
+
245
+ #: options-check/options.php:157
246
+ msgid "Passed an array of tags with term_id and term_name"
247
+ msgstr "Sendte et array med tags med term_id og term_name"
248
+
249
+ #: options-check/options.php:164
250
+ msgid "Select a Page"
251
+ msgstr "Vælg en Side"
252
+
253
+ #: options-check/options.php:165
254
+ msgid "Passed an array of pages with ID and post_title"
255
+ msgstr "Sendte et array med sider med ID og post_title"
256
+
257
+ #: options-check/options.php:171
258
+ msgid "Input Radio (one)"
259
+ msgstr "Input Radio (en)"
260
+
261
+ #: options-check/options.php:172
262
+ msgid "Radio select with default options \"one\"."
263
+ msgstr "Radio select med standard indstillingen \"en\"."
264
+
265
+ #: options-check/options.php:179
266
+ msgid "Example Info"
267
+ msgstr "Eksempel info"
268
+
269
+ #: options-check/options.php:180
270
+ msgid "This is just some example information you can put in the panel."
271
+ msgstr "Dette er bare noget eksempelinformation you kan "
272
+
273
+ #: options-check/options.php:184
274
+ msgid "Input Checkbox"
275
+ msgstr "Input Checkbox"
276
+
277
+ #: options-check/options.php:185
278
+ msgid "Example checkbox, defaults to true."
279
+ msgstr "Eksempel checkbox, standard er true"
280
+
281
+ #: options-check/options.php:191
282
+ msgid "Advanced Settings"
283
+ msgstr "Avancerede indstillinger"
284
+
285
+ #: options-check/options.php:195
286
+ msgid "Check to Show a Hidden Text Input"
287
+ msgstr "Klik for at vise et skjult Tekst input"
288
+
289
+ #: options-check/options.php:196
290
+ msgid "Click here and see what happens."
291
+ msgstr "klik her og se hvad der sker"
292
+
293
+ #: options-check/options.php:201
294
+ msgid "Hidden Text Input"
295
+ msgstr "Skjult Tekst Input"
296
+
297
+ #: options-check/options.php:202
298
+ msgid "This option is hidden unless activated by a checkbox click."
299
+ msgstr ""
300
+ "Denne valgmulithed er skjult medmindre den bliver aktiveret med et checkbox "
301
+ "klik"
302
+
303
+ #: options-check/options.php:209
304
+ msgid "Uploader Test"
305
+ msgstr "Uploader Test"
306
+
307
+ #: options-check/options.php:210
308
+ msgid "This creates a full size uploader that previews the image."
309
+ msgstr "Dette skaber en fuldstørrelse uploader der forhåndsviser billedet."
310
+
311
+ #: options-check/options.php:227
312
+ msgid "Example Background"
313
+ msgstr "Eksempel baggrund"
314
+
315
+ #: options-check/options.php:228
316
+ msgid "Change the background CSS."
317
+ msgstr "Rediger baggrundens CSS"
318
+
319
+ #: options-check/options.php:234
320
+ msgid "Multicheck"
321
+ msgstr "Multicheck"
322
+
323
+ #: options-check/options.php:235
324
+ msgid "Multicheck description."
325
+ msgstr "Multicheck beskrivelse"
326
+
327
+ #: options-check/options.php:242
328
+ msgid "Colorpicker"
329
+ msgstr "Farvevælger"
330
+
331
+ #: options-check/options.php:243
332
+ msgid "No color selected by default."
333
+ msgstr "Ingen farve valgt som standard"
334
+
335
+ #: options-check/options.php:248
336
+ msgid "Typography"
337
+ msgstr "Typografi"
338
+
339
+ #: options-check/options.php:249
340
+ msgid "Example typography."
341
+ msgstr "Eksempel typografi"
342
+
343
+ #: options-check/options.php:255
344
+ msgid "Custom Typography"
345
+ msgstr "Egen typografi"
346
+
347
+ #: options-check/options.php:256
348
+ msgid "Custom typography options."
349
+ msgstr "Egen typografi valgmuligheder"
350
+
351
+ #: options-check/options.php:263
352
+ msgid "Text Editor"
353
+ msgstr "Tekst Editor"
354
+
355
+ #: options-check/options.php:281
356
+ msgid "Default Text Editor"
357
+ msgstr "Standard Tekst Editor"
358
+
359
+ #: options-check/options.php:282
360
+ msgid ""
361
+ "You can also pass settings to the editor. Read more about wp_editor in <a "
362
+ "href=\"%1$s\" target=\"_blank\">the WordPress codex</a>"
363
+ msgstr ""
364
+ "Du kan også sende indstillinger til editoren. Læs mere om wp_editor i <a "
365
+ "href=\"%1$s\" target=\"_blank\">WordPress codexet</a>"
366
+
367
+ #: options-check/options.php:294
368
+ msgid "Additional Text Editor"
369
+ msgstr "Ekstra Tekst Editor"
370
+
371
+ #: options-check/options.php:295
372
+ msgid "This editor includes media button."
373
+ msgstr "Denne editor inkluderer media knap."
374
+
375
+ #: options-theme-customizer/options.php:101
376
+ msgid "Basic"
377
+ msgstr "Standard"
378
+
379
+ #: options-theme-customizer/options.php:158
380
+ msgid "Extended"
381
+ msgstr "Udvidet"
languages/optionsframework-pt_BR.mo CHANGED
Binary file
languages/optionsframework-pt_BR.po CHANGED
@@ -1,142 +1,393 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-22 15:51-0300\n"
6
- "PO-Revision-Date: 2012-04-22 16:04-0300\n"
7
  "Last-Translator: Weslly Honorato <weslly.honorato@gmail.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_attr_e\n"
13
- "X-Poedit-Language: Portuguese\n"
14
- "X-Poedit-Country: BRAZIL\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: options-framework.php:71
18
- #, php-format
19
- msgid "Your current theme does not have support for the Options Framework plugin. <a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide Notice</a>"
20
- msgstr "Seu tema atual não suporta o plugin Options Framework. <a href=\"%1$s\" target=\"_blank\">Saiba Mais</a> | <a href=\"%2$s\">Esconder Alerta</a>"
 
 
 
 
21
 
22
- #: options-framework.php:254
23
- #: options-framework.php:456
 
24
  msgid "Theme Options"
25
  msgstr "Opções do Tema"
26
 
27
- #: options-framework.php:323
28
  msgid "Save Options"
29
  msgstr "Salvar Opções"
30
 
31
- #: options-framework.php:324
32
  msgid "Restore Defaults"
33
  msgstr "Restaurar Padrões"
34
 
35
- #: options-framework.php:324
36
  msgid "Click OK to reset. Any theme settings will be lost!"
37
- msgstr "Clique em OK para restaurar. As configurações feitas anteriormente serão perdidas!"
 
 
38
 
39
- #: options-framework.php:358
40
  msgid "Default options restored."
41
  msgstr "Opções padrão restauradas."
42
 
43
- #: options-framework.php:400
44
  msgid "Options saved."
45
  msgstr "Opções salvas."
46
 
47
- #: options-medialibrary-uploader.php:26
48
- msgid "Options Framework Internal Container"
49
- msgstr "Container Interno do Options Framework"
50
 
51
- #: options-medialibrary-uploader.php:128
 
52
  msgid "Upload"
53
  msgstr "Upload"
54
 
55
- #: options-medialibrary-uploader.php:151
56
- msgid "View File"
57
- msgstr "Visualizar Arquivo"
 
58
 
59
- #: options-medialibrary-uploader.php:288
60
- msgid "Gallery"
61
- msgstr "Galeria"
62
 
63
- #: options-medialibrary-uploader.php:288
64
- msgid "Previously Uploaded"
65
- msgstr "Enviado Anteriormente"
66
 
67
- #: options-sanitize.php:232
68
  msgid "No Repeat"
69
  msgstr "Sem Repetição"
70
 
71
- #: options-sanitize.php:233
72
  msgid "Repeat Horizontally"
73
  msgstr "Repetir Horizontalmente"
74
 
75
- #: options-sanitize.php:234
76
  msgid "Repeat Vertically"
77
  msgstr "Repetir Verticalmente"
78
 
79
- #: options-sanitize.php:235
80
  msgid "Repeat All"
81
  msgstr "Repetir"
82
 
83
- #: options-sanitize.php:248
84
  msgid "Top Left"
85
  msgstr "Superior Esquerda"
86
 
87
- #: options-sanitize.php:249
88
  msgid "Top Center"
89
  msgstr "Superior Centro"
90
 
91
- #: options-sanitize.php:250
92
  msgid "Top Right"
93
  msgstr "Superior Direita"
94
 
95
- #: options-sanitize.php:251
96
  msgid "Middle Left"
97
  msgstr "Meio Esquerda"
98
 
99
- #: options-sanitize.php:252
100
  msgid "Middle Center"
101
  msgstr "Meio Centro"
102
 
103
- #: options-sanitize.php:253
104
  msgid "Middle Right"
105
  msgstr "Meio Direita"
106
 
107
- #: options-sanitize.php:254
108
  msgid "Bottom Left"
109
  msgstr "Inferior Esquerda"
110
 
111
- #: options-sanitize.php:255
112
  msgid "Bottom Center"
113
  msgstr "Inferior Centro"
114
 
115
- #: options-sanitize.php:256
116
  msgid "Bottom Right"
117
  msgstr "Inferior Direita"
118
 
119
- #: options-sanitize.php:269
120
  msgid "Scroll Normally"
121
  msgstr "Rolar Normalmente"
122
 
123
- #: options-sanitize.php:270
124
  msgid "Fixed in Place"
125
  msgstr "Fixado no Local"
126
 
127
- #: options-sanitize.php:344
128
  msgid "Normal"
129
  msgstr "Normal"
130
 
131
- #: options-sanitize.php:345
132
  msgid "Italic"
133
  msgstr "Itálico"
134
 
135
- #: options-sanitize.php:346
136
  msgid "Bold"
137
  msgstr "Negrito"
138
 
139
- #: options-sanitize.php:347
140
  msgid "Bold Italic"
141
  msgstr "Negrito e Itálico"
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Options Framework\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
5
+ "POT-Creation-Date: 2013-11-26 23:01:08+00:00\n"
6
+ "PO-Revision-Date: 2014-03-05 20:44-0300\n"
7
  "Last-Translator: Weslly Honorato <weslly.honorato@gmail.com>\n"
8
  "Language-Team: \n"
9
+ "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_attr_e\n"
14
+ "X-Generator: Poedit 1.6.3\n"
15
+ "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: includes/class-options-framework-admin.php:64
19
+ msgid ""
20
+ "Your current theme does not have support for the Options Framework plugin. "
21
+ "<a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide "
22
+ "Notice</a>"
23
+ msgstr ""
24
+ "Seu tema atual não suporta o plugin Options Framework. <a href=\"%1$s\" "
25
+ "target=\"_blank\">Saiba Mais</a> | <a href=\"%2$s\">Esconder Alerta</a>"
26
 
27
+ #: includes/class-options-framework-admin.php:116
28
+ #: includes/class-options-framework-admin.php:117
29
+ #: includes/class-options-framework-admin.php:336
30
  msgid "Theme Options"
31
  msgstr "Opções do Tema"
32
 
33
+ #: includes/class-options-framework-admin.php:202
34
  msgid "Save Options"
35
  msgstr "Salvar Opções"
36
 
37
+ #: includes/class-options-framework-admin.php:203
38
  msgid "Restore Defaults"
39
  msgstr "Restaurar Padrões"
40
 
41
+ #: includes/class-options-framework-admin.php:203
42
  msgid "Click OK to reset. Any theme settings will be lost!"
43
+ msgstr ""
44
+ "Clique em OK para restaurar. As configurações feitas anteriormente serão "
45
+ "perdidas!"
46
 
47
+ #: includes/class-options-framework-admin.php:234
48
  msgid "Default options restored."
49
  msgstr "Opções padrão restauradas."
50
 
51
+ #: includes/class-options-framework-admin.php:288
52
  msgid "Options saved."
53
  msgstr "Opções salvas."
54
 
55
+ #: includes/class-options-media-uploader.php:63
56
+ msgid "No file chosen"
57
+ msgstr "Nenhum arquivo escolhido"
58
 
59
+ #: includes/class-options-media-uploader.php:66
60
+ #: includes/class-options-media-uploader.php:119
61
  msgid "Upload"
62
  msgstr "Upload"
63
 
64
+ #: includes/class-options-media-uploader.php:68
65
+ #: includes/class-options-media-uploader.php:120
66
+ msgid "Remove"
67
+ msgstr "Remover"
68
 
69
+ #: includes/class-options-media-uploader.php:71
70
+ msgid "Upgrade your version of WordPress for full media support."
71
+ msgstr "Atualize sua versão do Wordpress para suporte completo de mídia."
72
 
73
+ #: includes/class-options-media-uploader.php:95
74
+ msgid "View File"
75
+ msgstr "Visualizar Arquivo"
76
 
77
+ #: includes/class-options-sanitization.php:241
78
  msgid "No Repeat"
79
  msgstr "Sem Repetição"
80
 
81
+ #: includes/class-options-sanitization.php:242
82
  msgid "Repeat Horizontally"
83
  msgstr "Repetir Horizontalmente"
84
 
85
+ #: includes/class-options-sanitization.php:243
86
  msgid "Repeat Vertically"
87
  msgstr "Repetir Verticalmente"
88
 
89
+ #: includes/class-options-sanitization.php:244
90
  msgid "Repeat All"
91
  msgstr "Repetir"
92
 
93
+ #: includes/class-options-sanitization.php:257
94
  msgid "Top Left"
95
  msgstr "Superior Esquerda"
96
 
97
+ #: includes/class-options-sanitization.php:258
98
  msgid "Top Center"
99
  msgstr "Superior Centro"
100
 
101
+ #: includes/class-options-sanitization.php:259
102
  msgid "Top Right"
103
  msgstr "Superior Direita"
104
 
105
+ #: includes/class-options-sanitization.php:260
106
  msgid "Middle Left"
107
  msgstr "Meio Esquerda"
108
 
109
+ #: includes/class-options-sanitization.php:261
110
  msgid "Middle Center"
111
  msgstr "Meio Centro"
112
 
113
+ #: includes/class-options-sanitization.php:262
114
  msgid "Middle Right"
115
  msgstr "Meio Direita"
116
 
117
+ #: includes/class-options-sanitization.php:263
118
  msgid "Bottom Left"
119
  msgstr "Inferior Esquerda"
120
 
121
+ #: includes/class-options-sanitization.php:264
122
  msgid "Bottom Center"
123
  msgstr "Inferior Centro"
124
 
125
+ #: includes/class-options-sanitization.php:265
126
  msgid "Bottom Right"
127
  msgstr "Inferior Direita"
128
 
129
+ #: includes/class-options-sanitization.php:278
130
  msgid "Scroll Normally"
131
  msgstr "Rolar Normalmente"
132
 
133
+ #: includes/class-options-sanitization.php:279
134
  msgid "Fixed in Place"
135
  msgstr "Fixado no Local"
136
 
137
+ #: includes/class-options-sanitization.php:353
138
  msgid "Normal"
139
  msgstr "Normal"
140
 
141
+ #: includes/class-options-sanitization.php:354
142
  msgid "Italic"
143
  msgstr "Itálico"
144
 
145
+ #: includes/class-options-sanitization.php:355
146
  msgid "Bold"
147
  msgstr "Negrito"
148
 
149
+ #: includes/class-options-sanitization.php:356
150
  msgid "Bold Italic"
151
  msgstr "Negrito e Itálico"
152
 
153
+ #: options-check/options.php:32
154
+ msgid "One"
155
+ msgstr "Um"
156
+
157
+ #: options-check/options.php:33
158
+ msgid "Two"
159
+ msgstr "Dois"
160
+
161
+ #: options-check/options.php:34
162
+ msgid "Three"
163
+ msgstr "Três"
164
+
165
+ #: options-check/options.php:35
166
+ msgid "Four"
167
+ msgstr "Quatro"
168
+
169
+ #: options-check/options.php:36
170
+ msgid "Five"
171
+ msgstr "Cinco"
172
+
173
+ #: options-check/options.php:41
174
+ msgid "French Toast"
175
+ msgstr "Torrada"
176
+
177
+ #: options-check/options.php:42
178
+ msgid "Pancake"
179
+ msgstr "Panqueca"
180
+
181
+ #: options-check/options.php:43
182
+ msgid "Omelette"
183
+ msgstr "Omelete"
184
+
185
+ #: options-check/options.php:44
186
+ msgid "Crepe"
187
+ msgstr "Crepe"
188
+
189
+ #: options-check/options.php:45
190
+ msgid "Waffle"
191
+ msgstr "Waffle"
192
+
193
+ #: options-check/options.php:105
194
+ msgid "Basic Settings"
195
+ msgstr "Configurações Básicas"
196
+
197
+ #: options-check/options.php:109
198
+ msgid "Input Text Mini"
199
+ msgstr "Mini Campo de Texto"
200
+
201
+ #: options-check/options.php:110
202
+ msgid "A mini text input field."
203
+ msgstr "Um mini campo de texto."
204
+
205
+ #: options-check/options.php:117
206
+ msgid "Input Text"
207
+ msgstr "Campo de Texto"
208
+
209
+ #: options-check/options.php:118
210
+ msgid "A text input field."
211
+ msgstr "Um campo de texto."
212
+
213
+ #: options-check/options.php:124
214
+ msgid "Textarea"
215
+ msgstr "Área de Texto"
216
+
217
+ #: options-check/options.php:125
218
+ msgid "Textarea description."
219
+ msgstr "Descrição da área de texto"
220
+
221
+ #: options-check/options.php:131
222
+ msgid "Input Select Small"
223
+ msgstr "Campo de Seleção Pequeno"
224
+
225
+ #: options-check/options.php:132
226
+ msgid "Small Select Box."
227
+ msgstr "Caixa de Seleção Pequena"
228
+
229
+ #: options-check/options.php:140
230
+ msgid "Input Select Wide"
231
+ msgstr "Campo de Seleção Largo"
232
+
233
+ #: options-check/options.php:141
234
+ msgid "A wider select box."
235
+ msgstr "Uma caixa de seleção mais larga"
236
+
237
+ #: options-check/options.php:148
238
+ msgid "Select a Category"
239
+ msgstr "Selecione a Categoria"
240
+
241
+ #: options-check/options.php:149
242
+ msgid "Passed an array of categories with cat_ID and cat_name"
243
+ msgstr "Passa uma array de categorias com cat_ID e cat_name"
244
+
245
+ #: options-check/options.php:156
246
+ msgid "Select a Tag"
247
+ msgstr "Selecione a Tag"
248
+
249
+ #: options-check/options.php:157
250
+ msgid "Passed an array of tags with term_id and term_name"
251
+ msgstr "Passa uma array de tags com term_ID e term_name"
252
+
253
+ #: options-check/options.php:164
254
+ msgid "Select a Page"
255
+ msgstr "Selecione a Página"
256
+
257
+ #: options-check/options.php:165
258
+ msgid "Passed an array of pages with ID and post_title"
259
+ msgstr "Passa uma array de páginas com ID e post_title"
260
+
261
+ #: options-check/options.php:171
262
+ msgid "Input Radio (one)"
263
+ msgstr "Campo de Radio (um)"
264
+
265
+ #: options-check/options.php:172
266
+ msgid "Radio select with default options \"one\"."
267
+ msgstr "Campo de Radio com a opção padrão \"um\"."
268
+
269
+ #: options-check/options.php:179
270
+ msgid "Example Info"
271
+ msgstr "Informação de Exemplo"
272
+
273
+ #: options-check/options.php:180
274
+ msgid "This is just some example information you can put in the panel."
275
+ msgstr ""
276
+ "Isto é apenas um exemplo de informação que você pode colocar no painel."
277
+
278
+ #: options-check/options.php:184
279
+ msgid "Input Checkbox"
280
+ msgstr "Campo de Checkbox"
281
+
282
+ #: options-check/options.php:185
283
+ msgid "Example checkbox, defaults to true."
284
+ msgstr "Exemplo de checkbox, selecionada por padrão."
285
+
286
+ #: options-check/options.php:191
287
+ msgid "Advanced Settings"
288
+ msgstr "Configurações Avançadas"
289
+
290
+ #: options-check/options.php:195
291
+ msgid "Check to Show a Hidden Text Input"
292
+ msgstr "Marque para mostrar um campo de texto oculto"
293
+
294
+ #: options-check/options.php:196
295
+ msgid "Click here and see what happens."
296
+ msgstr "Clique aqui para saber o que acontece."
297
+
298
+ #: options-check/options.php:201
299
+ msgid "Hidden Text Input"
300
+ msgstr "Campo de texto oculto"
301
+
302
+ #: options-check/options.php:202
303
+ msgid "This option is hidden unless activated by a checkbox click."
304
+ msgstr "Esta opção fica oculta até ser ativada por um clique na checkbox"
305
+
306
+ #: options-check/options.php:209
307
+ msgid "Uploader Test"
308
+ msgstr "Teste de Upload"
309
+
310
+ #: options-check/options.php:210
311
+ msgid "This creates a full size uploader that previews the image."
312
+ msgstr "Isto cria um campo de upload com visualização prévia da imagem."
313
+
314
+ #: options-check/options.php:227
315
+ msgid "Example Background"
316
+ msgstr "Exemplo de Fundo"
317
+
318
+ #: options-check/options.php:228
319
+ msgid "Change the background CSS."
320
+ msgstr "Trocar o CSS do fundo."
321
+
322
+ #: options-check/options.php:234
323
+ msgid "Multicheck"
324
+ msgstr "Multicheck"
325
+
326
+ #: options-check/options.php:235
327
+ msgid "Multicheck description."
328
+ msgstr "Descrição do Multicheck"
329
+
330
+ #: options-check/options.php:242
331
+ msgid "Colorpicker"
332
+ msgstr "Escolha de cores"
333
+
334
+ #: options-check/options.php:243
335
+ msgid "No color selected by default."
336
+ msgstr "Nenhuma cor selecionada por padrão."
337
+
338
+ #: options-check/options.php:248
339
+ msgid "Typography"
340
+ msgstr "Tipografia"
341
+
342
+ #: options-check/options.php:249
343
+ msgid "Example typography."
344
+ msgstr "Exemplo de tipografia."
345
+
346
+ #: options-check/options.php:255
347
+ msgid "Custom Typography"
348
+ msgstr "Tipografia personalizada"
349
+
350
+ #: options-check/options.php:256
351
+ msgid "Custom typography options."
352
+ msgstr "Opções de personalização de tipografia."
353
+
354
+ #: options-check/options.php:263
355
+ msgid "Text Editor"
356
+ msgstr "Editor de Texto"
357
+
358
+ #: options-check/options.php:281
359
+ msgid "Default Text Editor"
360
+ msgstr "Editor de Texto Padrão"
361
+
362
+ #: options-check/options.php:282
363
+ msgid ""
364
+ "You can also pass settings to the editor. Read more about wp_editor in <a "
365
+ "href=\"%1$s\" target=\"_blank\">the WordPress codex</a>"
366
+ msgstr ""
367
+ "Você também pode passar configurações para o editor. Leia mais sobre o "
368
+ "wp_editor no <a href=\"%1$s\" target=\"_blank\">codex do Wordpress</a>"
369
+
370
+ #: options-check/options.php:294
371
+ msgid "Additional Text Editor"
372
+ msgstr "Editor de Texto Adicional"
373
+
374
+ #: options-check/options.php:295
375
+ msgid "This editor includes media button."
376
+ msgstr "Este editor inclui um botão de mídia."
377
+
378
+ #: options-theme-customizer/options.php:101
379
+ msgid "Basic"
380
+ msgstr "Básico"
381
+
382
+ #: options-theme-customizer/options.php:158
383
+ msgid "Extended"
384
+ msgstr "Extendido"
385
+
386
+ #~ msgid "Options Framework Internal Container"
387
+ #~ msgstr "Container Interno do Options Framework"
388
+
389
+ #~ msgid "Gallery"
390
+ #~ msgstr "Galeria"
391
+
392
+ #~ msgid "Previously Uploaded"
393
+ #~ msgstr "Enviado Anteriormente"
options-framework.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Options Framework
13
  * Plugin URI: http://wptheming.com
14
  * Description: A framework for building theme options.
15
- * Version: 1.7.1
16
  * Author: Devin Price
17
  * Author URI: http://wptheming.com
18
  * License: GPL-2.0+
@@ -32,6 +32,9 @@ function optionsframework_init() {
32
  if ( !current_user_can( 'edit_theme_options' ) )
33
  return;
34
 
 
 
 
35
  // Loads the required Options Framework classes.
36
  require plugin_dir_path( __FILE__ ) . 'includes/class-options-framework.php';
37
  require plugin_dir_path( __FILE__ ) . 'includes/class-options-framework-admin.php';
12
  * Plugin Name: Options Framework
13
  * Plugin URI: http://wptheming.com
14
  * Description: A framework for building theme options.
15
+ * Version: 1.8.0
16
  * Author: Devin Price
17
  * Author URI: http://wptheming.com
18
  * License: GPL-2.0+
32
  if ( !current_user_can( 'edit_theme_options' ) )
33
  return;
34
 
35
+ // Load translation files
36
+ load_plugin_textdomain( 'optionsframework', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
37
+
38
  // Loads the required Options Framework classes.
39
  require plugin_dir_path( __FILE__ ) . 'includes/class-options-framework.php';
40
  require plugin_dir_path( __FILE__ ) . 'includes/class-options-framework-admin.php';
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: @downstairsdev
4
  Tags: options, theme options
5
  Donate link: http://bit.ly/options-donate-2
6
  Requires at least: 3.6
7
- Tested up to: 3.7.1
8
- Stable tag: 1.7.1
9
  License: GPLv2
10
 
11
  == Description ==
@@ -67,6 +67,17 @@ You can also watch the video screencast I have at [http://wptheming.com/options-
67
 
68
  == Changelog ==
69
 
 
 
 
 
 
 
 
 
 
 
 
70
  = 1.7.1 =
71
 
72
  * Fix to use option name if set in options.php
4
  Tags: options, theme options
5
  Donate link: http://bit.ly/options-donate-2
6
  Requires at least: 3.6
7
+ Tested up to: 3.8.1
8
+ Stable tag: 1.8.0
9
  License: GPLv2
10
 
11
  == Description ==
67
 
68
  == Changelog ==
69
 
70
+ = 1.8.0 =
71
+
72
+ * Increase default width of text inputs
73
+ * Rename add_options_page function to resolve automatic theme check conflicts
74
+ * Check isset for $value['desc'] in info option
75
+ * Only load styles on options page (props @AndorChen)
76
+ * Fix loading of translation files (props @weslly)
77
+ * Update Portuguese (BR) translations (props @weslly)
78
+ * Add Danish translations (props @Tosak)
79
+ * Allow menu parent to be filtered (props @nvsnkv)
80
+
81
  = 1.7.1 =
82
 
83
  * Fix to use option name if set in options.php