Options Framework - Version 1.8.1

Version Description

  • Fix for colorpicker spacing
  • Better sanitization of upload option
  • Update translation .pot
  • Updated Portuguese translations by @pedro-mendonca
  • Indonesian translations props @aryaprakasa)
  • Use filtered values for optionsframework_admin_bar
Download this release

Release Info

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

Code changes from version 1.8 to 1.8.1

Files changed (33) hide show
  1. css/optionsframework.css +6 -0
  2. includes/class-options-framework-admin.php +14 -5
  3. includes/class-options-framework.php +3 -3
  4. includes/class-options-interface.php +1 -1
  5. includes/class-options-media-uploader.php +1 -1
  6. includes/class-options-sanitization.php +8 -8
  7. js/options-custom.js +14 -19
  8. languages/{optionsframework-da_DK.mo → options-framework-da_DK.mo} +0 -0
  9. languages/{optionsframework-da_DK.po → options-framework-da_DK.po} +0 -0
  10. languages/{optionsframework-es_ES.mo → options-framework-es_ES.mo} +0 -0
  11. languages/{optionsframework-es_ES.po → options-framework-es_ES.po} +0 -0
  12. languages/{optionsframework-fa_IR.mo → options-framework-fa_IR.mo} +0 -0
  13. languages/{optionsframework-fa_IR.po → options-framework-fa_IR.po} +0 -0
  14. languages/{optionsframework-fr_FR.mo → options-framework-fr_FR.mo} +0 -0
  15. languages/{optionsframework-fr_FR.po → options-framework-fr_FR.po} +0 -0
  16. languages/options-framework-hu_HU.po +89 -76
  17. languages/options-framework-id_ID.mo +0 -0
  18. languages/options-framework-id_ID.po +148 -0
  19. languages/{optionsframework-it_IT.mo → options-framework-it_IT.mo} +0 -0
  20. languages/{optionsframework-it_IT.po → options-framework-it_IT.po} +0 -0
  21. languages/options-framework-plugin.pot +141 -0
  22. languages/{optionsframework-pt_BR.mo → options-framework-pt_BR.mo} +0 -0
  23. languages/{optionsframework-pt_BR.po → options-framework-pt_BR.po} +0 -0
  24. languages/options-framework-pt_PT.mo +0 -0
  25. languages/options-framework-pt_PT.po +238 -285
  26. languages/{optionsframework-ru_RU.mo → options-framework-ru_RU.mo} +0 -0
  27. languages/{optionsframework-ru_RU.po → options-framework-ru_RU.po} +0 -0
  28. languages/{optionsframework-sv_SE.mo → options-framework-sv_SE.mo} +0 -0
  29. languages/{optionsframework-sv_SE.po → options-framework-sv_SE.po} +0 -0
  30. languages/{optionsframework-zh_CN.mo → options-framework-zh_CN.mo} +0 -0
  31. languages/{optionsframework-zh_CN.po → options-framework-zh_CN.po} +0 -0
  32. options-framework.php +2 -2
  33. readme.txt +15 -5
css/optionsframework.css CHANGED
@@ -41,6 +41,9 @@
41
  #optionsframework .controls input[type=text] {
42
  width:100%;
43
  }
 
 
 
44
  #optionsframework .controls select, #optionsframework .controls textarea {
45
  margin-bottom:10px;
46
  width:100%;
@@ -84,6 +87,9 @@
84
  margin-right:5px;
85
  float:left
86
  }
 
 
 
87
  #optionsframework .of-background-properties {
88
  clear:both;
89
  margin-top: 18px;
41
  #optionsframework .controls input[type=text] {
42
  width:100%;
43
  }
44
+ #optionsframework .controls input[type=text].wp-color-picker {
45
+ width: 65px;
46
+ }
47
  #optionsframework .controls select, #optionsframework .controls textarea {
48
  margin-bottom:10px;
49
  width:100%;
87
  margin-right:5px;
88
  float:left
89
  }
90
+ #optionsframework .section-typography .wp-picker-container {
91
+ margin-top:2px;
92
+ }
93
  #optionsframework .of-background-properties {
94
  clear:both;
95
  margin-top: 18px;
includes/class-options-framework-admin.php CHANGED
@@ -4,7 +4,7 @@
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
- * @copyright 2013 WP Theming
8
  */
9
 
10
  class Options_Framework_Admin {
@@ -366,14 +366,23 @@ class Options_Framework_Admin {
366
  function optionsframework_admin_bar() {
367
 
368
  $menu = $this->menu_settings();
 
369
  global $wp_admin_bar;
370
 
371
- $wp_admin_bar->add_menu( array(
 
 
 
 
 
 
372
  'parent' => 'appearance',
373
  'id' => 'of_theme_options',
374
- 'title' => __( 'Theme Options', 'optionsframework' ),
375
- 'href' => admin_url( 'themes.php?page=' . $menu['menu_slug'] )
376
- ) );
 
 
377
  }
378
 
379
  }
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
+ * @copyright 2010-2014 WP Theming
8
  */
9
 
10
  class Options_Framework_Admin {
366
  function optionsframework_admin_bar() {
367
 
368
  $menu = $this->menu_settings();
369
+
370
  global $wp_admin_bar;
371
 
372
+ if ( 'menu' == $menu['mode'] ) {
373
+ $href = admin_url( 'admin.php?page=' . $menu['menu_slug'] );
374
+ } else {
375
+ $href = admin_url( 'themes.php?page=' . $menu['menu_slug'] );
376
+ }
377
+
378
+ $args = array(
379
  'parent' => 'appearance',
380
  'id' => 'of_theme_options',
381
+ 'title' => $menu['menu_title'],
382
+ 'href' => $href
383
+ );
384
+
385
+ $wp_admin_bar->add_menu( apply_filters( 'optionsframework_admin_bar', $args ) );
386
  }
387
 
388
  }
includes/class-options-framework.php CHANGED
@@ -4,7 +4,7 @@
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
- * @copyright 2013 WP Theming
8
  */
9
 
10
  class Options_Framework {
@@ -15,7 +15,7 @@ class Options_Framework {
15
  * @since 1.7.0
16
  * @type string
17
  */
18
- const VERSION = '1.8.0';
19
 
20
  /**
21
  * Initialize the plugin.
@@ -119,4 +119,4 @@ class Options_Framework {
119
  return $options;
120
  }
121
 
122
- }
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
+ * @copyright 2010-2014 WP Theming
8
  */
9
 
10
  class Options_Framework {
15
  * @since 1.7.0
16
  * @type string
17
  */
18
+ const VERSION = '1.8.1';
19
 
20
  /**
21
  * Initialize the plugin.
119
  return $options;
120
  }
121
 
122
+ }
includes/class-options-interface.php CHANGED
@@ -4,7 +4,7 @@
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
- * @copyright 2013 WP Theming
8
  */
9
 
10
  class Options_Framework_Interface {
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
+ * @copyright 2010-2014 WP Theming
8
  */
9
 
10
  class Options_Framework_Interface {
includes/class-options-media-uploader.php CHANGED
@@ -4,7 +4,7 @@
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
- * @copyright 2013 WP Theming
8
  */
9
 
10
  class Options_Framework_Media_Uploader {
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
+ * @copyright 2010-2014 WP Theming
8
  */
9
 
10
  class Options_Framework_Media_Uploader {
includes/class-options-sanitization.php CHANGED
@@ -4,7 +4,7 @@
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
- * @copyright 2013 WP Theming
8
  */
9
 
10
  /* Text */
@@ -27,15 +27,15 @@ add_filter( 'of_sanitize_textarea', 'of_sanitize_textarea' );
27
 
28
  /* Select */
29
 
30
- add_filter( 'of_sanitize_select', 'of_sanitize_enum', 10, 2);
31
 
32
  /* Radio */
33
 
34
- add_filter( 'of_sanitize_radio', 'of_sanitize_enum', 10, 2);
35
 
36
  /* Images */
37
 
38
- add_filter( 'of_sanitize_images', 'of_sanitize_enum', 10, 2);
39
 
40
  /* Checkbox */
41
 
@@ -75,9 +75,9 @@ add_filter( 'of_sanitize_color', 'of_sanitize_hex' );
75
 
76
  function of_sanitize_upload( $input ) {
77
  $output = '';
78
- $filetype = wp_check_filetype($input);
79
  if ( $filetype["ext"] ) {
80
- $output = $input;
81
  }
82
  return $output;
83
  }
@@ -85,7 +85,7 @@ add_filter( 'of_sanitize_upload', 'of_sanitize_upload' );
85
 
86
  /* Editor */
87
 
88
- function of_sanitize_editor($input) {
89
  if ( current_user_can( 'unfiltered_html' ) ) {
90
  $output = $input;
91
  }
@@ -109,7 +109,7 @@ function of_sanitize_allowedtags( $input ) {
109
 
110
  function of_sanitize_allowedposttags( $input ) {
111
  global $allowedposttags;
112
- $output = wpautop(wp_kses( $input, $allowedposttags));
113
  return $output;
114
  }
115
  add_filter( 'of_sanitize_info', 'of_sanitize_allowedposttags' );
4
  * @author Devin Price <devin@wptheming.com>
5
  * @license GPL-2.0+
6
  * @link http://wptheming.com
7
+ * @copyright 2010-2014 WP Theming
8
  */
9
 
10
  /* Text */
27
 
28
  /* Select */
29
 
30
+ add_filter( 'of_sanitize_select', 'of_sanitize_enum', 10, 2 );
31
 
32
  /* Radio */
33
 
34
+ add_filter( 'of_sanitize_radio', 'of_sanitize_enum', 10, 2 );
35
 
36
  /* Images */
37
 
38
+ add_filter( 'of_sanitize_images', 'of_sanitize_enum', 10, 2 );
39
 
40
  /* Checkbox */
41
 
75
 
76
  function of_sanitize_upload( $input ) {
77
  $output = '';
78
+ $filetype = wp_check_filetype( $input );
79
  if ( $filetype["ext"] ) {
80
+ $output = esc_url( $input );
81
  }
82
  return $output;
83
  }
85
 
86
  /* Editor */
87
 
88
+ function of_sanitize_editor( $input ) {
89
  if ( current_user_can( 'unfiltered_html' ) ) {
90
  $output = $input;
91
  }
109
 
110
  function of_sanitize_allowedposttags( $input ) {
111
  global $allowedposttags;
112
+ $output = wpautop( wp_kses( $input, $allowedposttags) );
113
  return $output;
114
  }
115
  add_filter( 'of_sanitize_info', 'of_sanitize_allowedposttags' );
js/options-custom.js CHANGED
@@ -25,17 +25,20 @@ jQuery(document).ready(function($) {
25
 
26
  function options_framework_tabs() {
27
 
 
 
 
 
28
  // Hides all the .group sections to start
29
- $('.group').hide();
30
 
31
  // Find if a selected tab is saved in localStorage
32
- var active_tab = '';
33
  if ( typeof(localStorage) != 'undefined' ) {
34
- active_tab = localStorage.getItem("active_tab");
35
  }
36
 
37
  // If active tab is saved and exists, load it's .group
38
- if (active_tab != '' && $(active_tab).length ) {
39
  $(active_tab).fadeIn();
40
  $(active_tab + '-tab').addClass('nav-tab-active');
41
  } else {
@@ -44,31 +47,23 @@ jQuery(document).ready(function($) {
44
  }
45
 
46
  // Bind tabs clicks
47
- $('.nav-tab-wrapper a').click(function(evt) {
48
 
49
- evt.preventDefault();
50
 
51
  // Remove active class from all tabs
52
- $('.nav-tab-wrapper a').removeClass('nav-tab-active');
53
 
54
  $(this).addClass('nav-tab-active').blur();
55
 
56
- var group = $(this).attr('href');
57
-
58
  if (typeof(localStorage) != 'undefined' ) {
59
- localStorage.setItem("active_tab", $(this).attr('href') );
60
  }
61
 
62
- $('.group').hide();
63
- $(group).fadeIn();
64
 
65
- // Editor height sometimes needs adjustment when unhidden
66
- $('.wp-editor-wrap').each(function() {
67
- var editor_iframe = $(this).find('iframe');
68
- if ( editor_iframe.height() < 30 ) {
69
- editor_iframe.css({'height':'auto'});
70
- }
71
- });
72
 
73
  });
74
  }
25
 
26
  function options_framework_tabs() {
27
 
28
+ var $group = $('.group'),
29
+ $navtabs = $('.nav-tab-wrapper a'),
30
+ active_tab = '';
31
+
32
  // Hides all the .group sections to start
33
+ $group.hide();
34
 
35
  // Find if a selected tab is saved in localStorage
 
36
  if ( typeof(localStorage) != 'undefined' ) {
37
+ active_tab = localStorage.getItem('active_tab');
38
  }
39
 
40
  // If active tab is saved and exists, load it's .group
41
+ if ( active_tab != '' && $(active_tab).length ) {
42
  $(active_tab).fadeIn();
43
  $(active_tab + '-tab').addClass('nav-tab-active');
44
  } else {
47
  }
48
 
49
  // Bind tabs clicks
50
+ $navtabs.click(function(e) {
51
 
52
+ e.preventDefault();
53
 
54
  // Remove active class from all tabs
55
+ $navtabs.removeClass('nav-tab-active');
56
 
57
  $(this).addClass('nav-tab-active').blur();
58
 
 
 
59
  if (typeof(localStorage) != 'undefined' ) {
60
+ localStorage.setItem('active_tab', $(this).attr('href') );
61
  }
62
 
63
+ var selected = $(this).attr('href');
 
64
 
65
+ $group.hide();
66
+ $(selected).fadeIn();
 
 
 
 
 
67
 
68
  });
69
  }
languages/{optionsframework-da_DK.mo → options-framework-da_DK.mo} RENAMED
File without changes
languages/{optionsframework-da_DK.po → options-framework-da_DK.po} RENAMED
File without changes
languages/{optionsframework-es_ES.mo → options-framework-es_ES.mo} RENAMED
File without changes
languages/{optionsframework-es_ES.po → options-framework-es_ES.po} RENAMED
File without changes
languages/{optionsframework-fa_IR.mo → options-framework-fa_IR.mo} RENAMED
File without changes
languages/{optionsframework-fa_IR.po → options-framework-fa_IR.po} RENAMED
File without changes
languages/{optionsframework-fr_FR.mo → options-framework-fr_FR.mo} RENAMED
File without changes
languages/{optionsframework-fr_FR.po → options-framework-fr_FR.po} RENAMED
File without changes
languages/options-framework-hu_HU.po CHANGED
@@ -1,135 +1,148 @@
1
- # Translation of Options Framework in Hungarian
2
- # This file is distributed under the same license as the Options Framework package.
 
 
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-17 03:04:08+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Options Framework\n"
12
 
13
- #: options-sanitize.php:233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Repeat Horizontally"
15
  msgstr "Vízszintes ismétlődés"
16
 
17
- #: options-sanitize.php:234
18
  msgid "Repeat Vertically"
19
  msgstr "Függőleges ismétlődés"
20
 
21
- #: options-sanitize.php:235
22
  msgid "Repeat All"
23
  msgstr "Mindegyik ismétlődjön"
24
 
25
- #: options-sanitize.php:248
26
  msgid "Top Left"
27
  msgstr "Bal felső"
28
 
29
- #: options-sanitize.php:249
30
  msgid "Top Center"
31
  msgstr "Középen fent"
32
 
33
- #: options-sanitize.php:250
34
  msgid "Top Right"
35
  msgstr "Jobb felső"
36
 
37
- #: options-sanitize.php:251
38
  msgid "Middle Left"
39
  msgstr "Közép bal"
40
 
41
- #: options-sanitize.php:252
42
  msgid "Middle Center"
43
  msgstr "Közép középen"
44
 
45
- #: options-sanitize.php:253
46
  msgid "Middle Right"
47
  msgstr "Közép jobb"
48
 
49
- #: options-sanitize.php:254
50
  msgid "Bottom Left"
51
  msgstr "Bal alsó"
52
 
53
- #: options-sanitize.php:255
54
  msgid "Bottom Center"
55
  msgstr "Középen alul"
56
 
57
- #: options-sanitize.php:256
58
  msgid "Bottom Right"
59
  msgstr "Jobb alsó"
60
 
61
- #: options-sanitize.php:269
62
  msgid "Scroll Normally"
63
  msgstr "Normál lapozás"
64
 
65
- #: options-sanitize.php:270
66
  msgid "Fixed in Place"
67
  msgstr "Hely javítása"
68
 
69
- #: options-sanitize.php:344
70
  msgid "Normal"
71
  msgstr "Normál"
72
 
73
- #: options-sanitize.php:345
74
  msgid "Italic"
75
  msgstr "Dőlt"
76
 
77
- #: options-sanitize.php:346
78
  msgid "Bold"
79
  msgstr "Félkövér"
80
 
81
- #: options-sanitize.php:347
82
  msgid "Bold Italic"
83
  msgstr "Félkövér dőlt"
84
-
85
- #: options-framework.php:71
86
- 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>"
87
- msgstr "A jelenlegi sablon nem támogatja az Options Framework bővítményt. <a href=\"%1$s\" target=\"_blank\">Bővebben</a> | <a href=\"%2$s\">Elrejtés</a>"
88
-
89
- #: options-framework.php:254 options-framework.php:456
90
- msgid "Theme Options"
91
- msgstr "Sablon beállítások"
92
-
93
- #: options-framework.php:323
94
- msgid "Save Options"
95
- msgstr "Beállítások mentése"
96
-
97
- #: options-framework.php:324
98
- msgid "Restore Defaults"
99
- msgstr "Alapértékek visszaállítása"
100
-
101
- #: options-framework.php:324
102
- msgid "Click OK to reset. Any theme settings will be lost!"
103
- msgstr "Kattintsunk az OK gombra az alapértékek visszaállításához. Minden jelenlegi beállítás elvész!"
104
-
105
- #: options-framework.php:358
106
- msgid "Default options restored."
107
- msgstr "Alapértékek visszaállítása."
108
-
109
- #: options-framework.php:400
110
- msgid "Options saved."
111
- msgstr "Sikeres mentés."
112
-
113
- #: options-medialibrary-uploader.php:26
114
- msgid "Options Framework Internal Container"
115
- msgstr "Options Framework belső tároló"
116
-
117
- #: options-medialibrary-uploader.php:128
118
- msgid "Upload"
119
- msgstr "Feltőltés"
120
-
121
- #: options-medialibrary-uploader.php:151
122
- msgid "View File"
123
- msgstr "Fájl megtekintése"
124
-
125
- #: options-medialibrary-uploader.php:288
126
- msgid "Gallery"
127
- msgstr "Galéria"
128
-
129
- #: options-medialibrary-uploader.php:288
130
- msgid "Previously Uploaded"
131
- msgstr "Elöző feltőltés"
132
-
133
- #: options-sanitize.php:232
134
- msgid "No Repeat"
135
- msgstr "Ne ismétlődjön"
1
+ # Copyright (C) 2014
2
+ # This file is distributed under the same license as the package.
3
+ # Translators:
4
+ # Laszlo Espadas <kw@kardiweb.org>, 2014
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: Options Framework plugin\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
9
+ "POT-Creation-Date: 2014-04-22 15:02:20+00:00\n"
10
+ "PO-Revision-Date: 2014-04-23 06:45+0000\n"
11
+ "Last-Translator: Laszlo Espadas <kw @NOSPAM@ kardiweb dot org>\n"
12
+ "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/options-framework-plugin/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: hu_HU\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
18
 
19
+ #: includes/class-options-framework-admin.php:64
20
+ msgid ""
21
+ "Your current theme does not have support for the Options Framework plugin. "
22
+ "<a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide "
23
+ "Notice</a>"
24
+ msgstr "A jelenlegi sablon nem támogatja az Options Framework bővítményt. <a href=\"%1$s\" target=\"_blank\">Bővebben</a> | <a href=\"%2$s\">Elrejtés</a>"
25
+
26
+ #: includes/class-options-framework-admin.php:121
27
+ #: includes/class-options-framework-admin.php:122
28
+ #: includes/class-options-framework-admin.php:374
29
+ msgid "Theme Options"
30
+ msgstr "Sablon beállítások"
31
+
32
+ #: includes/class-options-framework-admin.php:240
33
+ msgid "Save Options"
34
+ msgstr "Beállítások mentése"
35
+
36
+ #: includes/class-options-framework-admin.php:241
37
+ msgid "Restore Defaults"
38
+ msgstr "Alapértékek visszaállítása"
39
+
40
+ #: includes/class-options-framework-admin.php:241
41
+ msgid "Click OK to reset. Any theme settings will be lost!"
42
+ msgstr "Kattintsunk az OK gombra az alapértékek visszaállításához. Minden jelenlegi beállítás elvész!"
43
+
44
+ #: includes/class-options-framework-admin.php:272
45
+ msgid "Default options restored."
46
+ msgstr "Alapértékek visszaállítása."
47
+
48
+ #: includes/class-options-framework-admin.php:326
49
+ msgid "Options saved."
50
+ msgstr "Sikeres mentés."
51
+
52
+ #: includes/class-options-media-uploader.php:63
53
+ msgid "No file chosen"
54
+ msgstr "Nincs fájl kiválasztva"
55
+
56
+ #: includes/class-options-media-uploader.php:66
57
+ #: includes/class-options-media-uploader.php:119
58
+ msgid "Upload"
59
+ msgstr "Feltőltés"
60
+
61
+ #: includes/class-options-media-uploader.php:68
62
+ #: includes/class-options-media-uploader.php:120
63
+ msgid "Remove"
64
+ msgstr "Törlés"
65
+
66
+ #: includes/class-options-media-uploader.php:71
67
+ msgid "Upgrade your version of WordPress for full media support."
68
+ msgstr "Frissítsük a WordPress rendszerünket a jobb media támogatásért."
69
+
70
+ #: includes/class-options-media-uploader.php:95
71
+ msgid "View File"
72
+ msgstr "Fájl megtekintése"
73
+
74
+ #: includes/class-options-sanitization.php:241
75
+ msgid "No Repeat"
76
+ msgstr "Ne ismétlődjön"
77
+
78
+ #: includes/class-options-sanitization.php:242
79
  msgid "Repeat Horizontally"
80
  msgstr "Vízszintes ismétlődés"
81
 
82
+ #: includes/class-options-sanitization.php:243
83
  msgid "Repeat Vertically"
84
  msgstr "Függőleges ismétlődés"
85
 
86
+ #: includes/class-options-sanitization.php:244
87
  msgid "Repeat All"
88
  msgstr "Mindegyik ismétlődjön"
89
 
90
+ #: includes/class-options-sanitization.php:257
91
  msgid "Top Left"
92
  msgstr "Bal felső"
93
 
94
+ #: includes/class-options-sanitization.php:258
95
  msgid "Top Center"
96
  msgstr "Középen fent"
97
 
98
+ #: includes/class-options-sanitization.php:259
99
  msgid "Top Right"
100
  msgstr "Jobb felső"
101
 
102
+ #: includes/class-options-sanitization.php:260
103
  msgid "Middle Left"
104
  msgstr "Közép bal"
105
 
106
+ #: includes/class-options-sanitization.php:261
107
  msgid "Middle Center"
108
  msgstr "Közép középen"
109
 
110
+ #: includes/class-options-sanitization.php:262
111
  msgid "Middle Right"
112
  msgstr "Közép jobb"
113
 
114
+ #: includes/class-options-sanitization.php:263
115
  msgid "Bottom Left"
116
  msgstr "Bal alsó"
117
 
118
+ #: includes/class-options-sanitization.php:264
119
  msgid "Bottom Center"
120
  msgstr "Középen alul"
121
 
122
+ #: includes/class-options-sanitization.php:265
123
  msgid "Bottom Right"
124
  msgstr "Jobb alsó"
125
 
126
+ #: includes/class-options-sanitization.php:278
127
  msgid "Scroll Normally"
128
  msgstr "Normál lapozás"
129
 
130
+ #: includes/class-options-sanitization.php:279
131
  msgid "Fixed in Place"
132
  msgstr "Hely javítása"
133
 
134
+ #: includes/class-options-sanitization.php:353
135
  msgid "Normal"
136
  msgstr "Normál"
137
 
138
+ #: includes/class-options-sanitization.php:354
139
  msgid "Italic"
140
  msgstr "Dőlt"
141
 
142
+ #: includes/class-options-sanitization.php:355
143
  msgid "Bold"
144
  msgstr "Félkövér"
145
 
146
+ #: includes/class-options-sanitization.php:356
147
  msgid "Bold Italic"
148
  msgstr "Félkövér dőlt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/options-framework-id_ID.mo ADDED
Binary file
languages/options-framework-id_ID.po ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Options Framework Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-22 19:13-0300\n"
6
+ "PO-Revision-Date: 2014-03-16 20:20+0700\n"
7
+ "Last-Translator: Andrea Bersi\n"
8
+ "Language-Team: Arya Prakasa <arya@prakasa.me>\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;_x;__;esc_attr_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Language: id\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: options-framework.php:71
20
+ #, php-format
21
+ msgid ""
22
+ "Your current theme does not have support for the Options Framework plugin. "
23
+ "<a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide "
24
+ "Notice</a>"
25
+ msgstr ""
26
+ "Tema Anda saat ini tidak memiliki dukungan untuk plugin Options Framework. "
27
+ "<a href=\"%1$s\" target=\"_blank\">Pelajari Lebih Lanjut</a> | <a href=\"%2$s"
28
+ "\">Sembunyikan Pemberitahuan</a>"
29
+
30
+ #: options-framework.php:254 options-framework.php:456
31
+ msgid "Theme Options"
32
+ msgstr "Opsi Tema"
33
+
34
+ #: options-framework.php:323
35
+ msgid "Save Options"
36
+ msgstr "Simpan Opsi"
37
+
38
+ #: options-framework.php:324
39
+ msgid "Restore Defaults"
40
+ msgstr "Kembali ke Awal"
41
+
42
+ #: options-framework.php:324
43
+ msgid "Click OK to reset. Any theme settings will be lost!"
44
+ msgstr "Klik OK untuk me-reset. Setiap pengaturan tema akan hilang!"
45
+
46
+ #: options-framework.php:358
47
+ msgid "Default options restored."
48
+ msgstr "Opsi dikembalikan ke awal."
49
+
50
+ #: options-framework.php:400
51
+ msgid "Options saved."
52
+ msgstr "Opsi tersimpan."
53
+
54
+ #: options-medialibrary-uploader.php:26
55
+ msgid "Options Framework Internal Container"
56
+ msgstr "Options Framework Internal Kontainer"
57
+
58
+ #: options-medialibrary-uploader.php:128
59
+ msgid "Upload"
60
+ msgstr "Unggah"
61
+
62
+ #: options-medialibrary-uploader.php:151
63
+ msgid "View File"
64
+ msgstr "Tampilkan Berkas"
65
+
66
+ #: options-medialibrary-uploader.php:288
67
+ msgid "Gallery"
68
+ msgstr "Galeri"
69
+
70
+ #: options-medialibrary-uploader.php:288
71
+ msgid "Previously Uploaded"
72
+ msgstr "Unggahan Sebelumnya"
73
+
74
+ #: options-sanitize.php:232
75
+ msgid "No Repeat"
76
+ msgstr "Tidak Berulang"
77
+
78
+ #: options-sanitize.php:233
79
+ msgid "Repeat Horizontally"
80
+ msgstr "Pengulanagan Horizontal"
81
+
82
+ #: options-sanitize.php:234
83
+ msgid "Repeat Vertically"
84
+ msgstr "Pengulangan Vertikal"
85
+
86
+ #: options-sanitize.php:235
87
+ msgid "Repeat All"
88
+ msgstr "Pengulangan Semua"
89
+
90
+ #: options-sanitize.php:248
91
+ msgid "Top Left"
92
+ msgstr "Puncak Kiri"
93
+
94
+ #: options-sanitize.php:249
95
+ msgid "Top Center"
96
+ msgstr "Puncak Pusat"
97
+
98
+ #: options-sanitize.php:250
99
+ msgid "Top Right"
100
+ msgstr "Puncak Kanan"
101
+
102
+ #: options-sanitize.php:251
103
+ msgid "Middle Left"
104
+ msgstr "Tengah Kiri"
105
+
106
+ #: options-sanitize.php:252
107
+ msgid "Middle Center"
108
+ msgstr "Tengah Pusat"
109
+
110
+ #: options-sanitize.php:253
111
+ msgid "Middle Right"
112
+ msgstr "Tengah Kanan"
113
+
114
+ #: options-sanitize.php:254
115
+ msgid "Bottom Left"
116
+ msgstr "Dasar Kiri"
117
+
118
+ #: options-sanitize.php:255
119
+ msgid "Bottom Center"
120
+ msgstr "Dasar Pusat"
121
+
122
+ #: options-sanitize.php:256
123
+ msgid "Bottom Right"
124
+ msgstr "Dasar Kanan"
125
+
126
+ #: options-sanitize.php:269
127
+ msgid "Scroll Normally"
128
+ msgstr "Gulir Normal"
129
+
130
+ #: options-sanitize.php:270
131
+ msgid "Fixed in Place"
132
+ msgstr "Tetap di Tempat"
133
+
134
+ #: options-sanitize.php:344
135
+ msgid "Normal"
136
+ msgstr "Normal"
137
+
138
+ #: options-sanitize.php:345
139
+ msgid "Italic"
140
+ msgstr "Cetak Miring"
141
+
142
+ #: options-sanitize.php:346
143
+ msgid "Bold"
144
+ msgstr "Cetak Tebal"
145
+
146
+ #: options-sanitize.php:347
147
+ msgid "Bold Italic"
148
+ msgstr "Cetak Tebal Miring"
languages/{optionsframework-it_IT.mo → options-framework-it_IT.mo} RENAMED
File without changes
languages/{optionsframework-it_IT.po → options-framework-it_IT.po} RENAMED
File without changes
languages/options-framework-plugin.pot ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: \n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
7
+ "POT-Creation-Date: 2014-04-22 15:02:20+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-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+
15
+ #: includes/class-options-framework-admin.php:64
16
+ 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>"
17
+ msgstr ""
18
+
19
+ #: includes/class-options-framework-admin.php:121
20
+ #: includes/class-options-framework-admin.php:122
21
+ #: includes/class-options-framework-admin.php:374
22
+ msgid "Theme Options"
23
+ msgstr ""
24
+
25
+ #: includes/class-options-framework-admin.php:240
26
+ msgid "Save Options"
27
+ msgstr ""
28
+
29
+ #: includes/class-options-framework-admin.php:241
30
+ msgid "Restore Defaults"
31
+ msgstr ""
32
+
33
+ #: includes/class-options-framework-admin.php:241
34
+ msgid "Click OK to reset. Any theme settings will be lost!"
35
+ msgstr ""
36
+
37
+ #: includes/class-options-framework-admin.php:272
38
+ msgid "Default options restored."
39
+ msgstr ""
40
+
41
+ #: includes/class-options-framework-admin.php:326
42
+ msgid "Options saved."
43
+ msgstr ""
44
+
45
+ #: includes/class-options-media-uploader.php:63
46
+ msgid "No file chosen"
47
+ msgstr ""
48
+
49
+ #: includes/class-options-media-uploader.php:66
50
+ #: includes/class-options-media-uploader.php:119
51
+ msgid "Upload"
52
+ msgstr ""
53
+
54
+ #: includes/class-options-media-uploader.php:68
55
+ #: includes/class-options-media-uploader.php:120
56
+ msgid "Remove"
57
+ msgstr ""
58
+
59
+ #: includes/class-options-media-uploader.php:71
60
+ msgid "Upgrade your version of WordPress for full media support."
61
+ msgstr ""
62
+
63
+ #: includes/class-options-media-uploader.php:95
64
+ msgid "View File"
65
+ msgstr ""
66
+
67
+ #: includes/class-options-sanitization.php:241
68
+ msgid "No Repeat"
69
+ msgstr ""
70
+
71
+ #: includes/class-options-sanitization.php:242
72
+ msgid "Repeat Horizontally"
73
+ msgstr ""
74
+
75
+ #: includes/class-options-sanitization.php:243
76
+ msgid "Repeat Vertically"
77
+ msgstr ""
78
+
79
+ #: includes/class-options-sanitization.php:244
80
+ msgid "Repeat All"
81
+ msgstr ""
82
+
83
+ #: includes/class-options-sanitization.php:257
84
+ msgid "Top Left"
85
+ msgstr ""
86
+
87
+ #: includes/class-options-sanitization.php:258
88
+ msgid "Top Center"
89
+ msgstr ""
90
+
91
+ #: includes/class-options-sanitization.php:259
92
+ msgid "Top Right"
93
+ msgstr ""
94
+
95
+ #: includes/class-options-sanitization.php:260
96
+ msgid "Middle Left"
97
+ msgstr ""
98
+
99
+ #: includes/class-options-sanitization.php:261
100
+ msgid "Middle Center"
101
+ msgstr ""
102
+
103
+ #: includes/class-options-sanitization.php:262
104
+ msgid "Middle Right"
105
+ msgstr ""
106
+
107
+ #: includes/class-options-sanitization.php:263
108
+ msgid "Bottom Left"
109
+ msgstr ""
110
+
111
+ #: includes/class-options-sanitization.php:264
112
+ msgid "Bottom Center"
113
+ msgstr ""
114
+
115
+ #: includes/class-options-sanitization.php:265
116
+ msgid "Bottom Right"
117
+ msgstr ""
118
+
119
+ #: includes/class-options-sanitization.php:278
120
+ msgid "Scroll Normally"
121
+ msgstr ""
122
+
123
+ #: includes/class-options-sanitization.php:279
124
+ msgid "Fixed in Place"
125
+ msgstr ""
126
+
127
+ #: includes/class-options-sanitization.php:353
128
+ msgid "Normal"
129
+ msgstr ""
130
+
131
+ #: includes/class-options-sanitization.php:354
132
+ msgid "Italic"
133
+ msgstr ""
134
+
135
+ #: includes/class-options-sanitization.php:355
136
+ msgid "Bold"
137
+ msgstr ""
138
+
139
+ #: includes/class-options-sanitization.php:356
140
+ msgid "Bold Italic"
141
+ msgstr ""
languages/{optionsframework-pt_BR.mo → options-framework-pt_BR.mo} RENAMED
File without changes
languages/{optionsframework-pt_BR.po → options-framework-pt_BR.po} RENAMED
File without changes
languages/options-framework-pt_PT.mo CHANGED
Binary file
languages/options-framework-pt_PT.po CHANGED
@@ -2,382 +2,335 @@
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Options Framework Plugin\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
7
- "POT-Creation-Date: 2013-10-23 13:35:37+00:00\n"
8
- "PO-Revision-Date: 2013-10-23 14:37-0000\n"
9
- "Last-Translator: Pedro Duarte <pedroduarte@djope.com>\n"
10
- "Language-Team: \n"
11
  "Language: pt_PT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.5.7\n"
 
16
 
17
- #: options-check/options.php:32
18
- msgid "One"
19
- msgstr "Um"
 
 
 
 
 
20
 
21
- #: options-check/options.php:33
22
- msgid "Two"
23
- msgstr "Dois"
 
 
24
 
25
- #: options-check/options.php:34
26
- msgid "Three"
27
- msgstr "Três"
28
 
29
- #: options-check/options.php:35
30
- msgid "Four"
31
- msgstr "Quatro"
32
 
33
- #: options-check/options.php:36
34
- msgid "Five"
35
- msgstr "Cinco"
36
 
37
- #: options-check/options.php:41
38
- msgid "French Toast"
39
- msgstr "Tosta"
40
 
41
- #: options-check/options.php:42
42
- msgid "Pancake"
43
- msgstr "Panqueca"
44
 
45
- #: options-check/options.php:43
46
- msgid "Omelette"
47
- msgstr "Omolete"
48
 
49
- #: options-check/options.php:44
50
- msgid "Crepe"
51
- msgstr "Crepe"
 
52
 
53
- #: options-check/options.php:45
54
- msgid "Waffle"
55
- msgstr "Waffle"
 
56
 
57
- #: options-check/options.php:105
58
- msgid "Basic Settings"
59
- msgstr "Definições Básicas"
 
60
 
61
- #: options-check/options.php:109
62
- msgid "Input Text Mini"
63
- msgstr "Campo de Texto Mini"
64
 
65
- #: options-check/options.php:110
66
- msgid "A mini text input field."
67
- msgstr "Um campo de texto mini."
68
 
69
- #: options-check/options.php:117
70
- msgid "Input Text"
71
- msgstr "Campo de Texto"
72
 
73
- #: options-check/options.php:118
74
- msgid "A text input field."
75
- msgstr "Um campo de texto."
76
 
77
- #: options-check/options.php:124
78
- msgid "Textarea"
79
- msgstr "Área de Texto"
80
 
81
- #: options-check/options.php:125
82
- msgid "Textarea description."
83
- msgstr "Descrição da área de texto."
84
 
85
- #: options-check/options.php:131
86
- msgid "Input Select Small"
87
- msgstr "Campo de Selecção Pequeno"
88
 
89
- #: options-check/options.php:132
90
- msgid "Small Select Box."
91
- msgstr "Caixa de selecção pequena."
92
 
93
- #: options-check/options.php:140
94
- msgid "Input Select Wide"
95
- msgstr "Campo de Selecção Largo"
96
 
97
- #: options-check/options.php:141
98
- msgid "A wider select box."
99
- msgstr "Uma caixa de selecção mais larga."
100
 
101
- #: options-check/options.php:148
102
- msgid "Select a Category"
103
- msgstr "Seleccione uma Categoria"
104
 
105
- #: options-check/options.php:149
106
- msgid "Passed an array of categories with cat_ID and cat_name"
107
- msgstr "Passou uma série de categorias com cat_ID e cat_name"
108
 
109
- #: options-check/options.php:155
110
- msgid "Select a Tag"
111
- msgstr "Seleccionar uma Etiqueta"
112
 
113
- #: options-check/options.php:156
114
- msgid "Passed an array of tags with term_id and term_name"
115
- msgstr "Passou uma série de etiquetas com term_id e term_name"
116
 
117
- #: options-check/options.php:162
118
- msgid "Select a Page"
119
- msgstr "Seleccione uma Página"
120
 
121
- #: options-check/options.php:163
122
- msgid "Passed an array of pages with ID and post_title"
123
- msgstr "Passou uma série de categorias com cat_ID e cat_name"
124
 
125
- #: options-check/options.php:169
126
- msgid "Input Radio (one)"
127
- msgstr "Campo de Rádio (um)"
128
 
129
- #: options-check/options.php:170
130
- msgid "Radio select with default options \"one\"."
131
- msgstr "Selector rádio com opções por defeito \"um\""
132
 
133
- #: options-check/options.php:177
134
- msgid "Example Info"
135
- msgstr "Exemplo de Informação"
136
 
137
- #: options-check/options.php:178
138
- msgid "This is just some example information you can put in the panel."
139
- msgstr "Isto é apenas informação de exemplo que pode colocar no painel."
140
 
141
- #: options-check/options.php:182
142
- msgid "Input Checkbox"
143
- msgstr "Caixa de Verificação"
144
 
145
- #: options-check/options.php:183
146
- msgid "Example checkbox, defaults to true."
147
- msgstr "Caixa de verificação de exemplo, valor por defeito igual a \"true\"."
148
 
149
- #: options-check/options.php:189
150
- msgid "Advanced Settings"
151
- msgstr "Definições Avançadas"
152
 
153
- #: options-check/options.php:193
154
- msgid "Check to Show a Hidden Text Input"
155
- msgstr "Seleccionar para Mostrar um Campo de Texto Escondido"
156
 
157
- #: options-check/options.php:194
158
- msgid "Click here and see what happens."
159
- msgstr "Click aqui e veja o que acontece."
160
 
161
- #: options-check/options.php:199
162
- msgid "Hidden Text Input"
163
- msgstr "Campo de Texto Escondido"
164
 
165
- #: options-check/options.php:200
166
- msgid "This option is hidden unless activated by a checkbox click."
167
- msgstr ""
168
- "Esta opção encontra-se escondida a não ser que seja activada por uma caixa "
169
- "de verificação."
170
 
171
- #: options-check/options.php:207
172
- msgid "Uploader Test"
173
- msgstr "Texte de Upload"
174
 
175
- #: options-check/options.php:208
176
- msgid "This creates a full size uploader that previews the image."
177
- msgstr "Isto cria um campo de upload com pré-visualização da imagem."
178
 
179
- #: options-check/options.php:225
180
- msgid "Example Background"
181
- msgstr "Fundo de Exemplo"
182
 
183
- #: options-check/options.php:226
184
- msgid "Change the background CSS."
185
- msgstr "Alterar o fundo CSS."
186
 
187
- #: options-check/options.php:232
188
- msgid "Multicheck"
189
- msgstr "Multi-verificação"
190
 
191
- #: options-check/options.php:233
192
- msgid "Multicheck description."
193
- msgstr "Descrição da multi-verificação."
194
 
195
- #: options-check/options.php:240
196
- msgid "Colorpicker"
197
- msgstr "Selector de Cor"
198
 
199
- #: options-check/options.php:241
200
- msgid "No color selected by default."
201
- msgstr "Sem cor seleccionada por defeito."
202
 
203
- #: options-check/options.php:246
204
- msgid "Typography"
205
- msgstr "Tipografia"
206
 
207
- #: options-check/options.php:247
208
- msgid "Example typography."
209
- msgstr "Tipografia de exemplo."
210
 
211
- #: options-check/options.php:253
212
- msgid "Custom Typography"
213
- msgstr "Tipografia Customizada"
214
 
215
- #: options-check/options.php:254
216
- msgid "Custom typography options."
217
- msgstr "Opções de tipografia customizada."
218
 
219
- #: options-check/options.php:261
220
- msgid "Text Editor"
221
- msgstr "Editor de Texto"
222
 
223
- #: options-check/options.php:279
224
- msgid "Default Text Editor"
225
- msgstr "Editor de Texto Padrão"
226
 
227
- #: options-check/options.php:280
228
- msgid ""
229
- "You can also pass settings to the editor. Read more about wp_editor in <a "
230
- "href=\"%1$s\" target=\"_blank\">the WordPress codex</a>"
231
- msgstr ""
232
- "Também é possível passer opções para o editor. Ler mais sobre wp_editor no "
233
- "<a href=\"%1$s\" target=\"_blank\">codex do WordPress</a>"
234
 
235
- #: options-framework.php:70
236
- msgid ""
237
- "Your current theme does not have support for the Options Framework plugin. "
238
- "<a href=\"%1$s\" target=\"_blank\">Learn More</a> | <a href=\"%2$s\">Hide "
239
- "Notice</a>"
240
- msgstr ""
241
- "O set tema actual não ten support para o plugin Options Framework. <a href="
242
- "\"%1$s\" target=\"_blank\">Saber Mais</a> | <a href=\"%2$s\">Esconder</a>"
243
 
244
- #: options-framework.php:259 options-framework.php:260
245
- #: options-framework.php:490
246
- msgid "Theme Options"
247
- msgstr "Opções do Tema"
248
 
249
- #: options-framework.php:305
250
- msgid "Clear"
251
- msgstr "Limpar"
252
 
253
- #: options-framework.php:306
254
- msgid "Default"
255
- msgstr "Padrão"
256
 
257
- #: options-framework.php:307
258
- msgid "Select Color"
259
- msgstr "Seleccionar Cor"
260
 
261
- #: options-framework.php:353
262
- msgid "Save Options"
263
- msgstr "Guardar Opções"
264
 
265
- #: options-framework.php:354
266
- msgid "Restore Defaults"
267
- msgstr "Restaurar Opções Padrão"
268
 
269
- #: options-framework.php:354
270
- msgid "Click OK to reset. Any theme settings will be lost!"
271
- msgstr "Click OK para restaurar. Todas as opções do tema serão perdidas."
272
 
273
- #: options-framework.php:386
274
- msgid "Default options restored."
275
- msgstr "Opções padrão restauradas."
276
 
277
- #: options-framework.php:440
278
- msgid "Options saved."
279
- msgstr "Opções guardadas."
280
 
281
- #: options-media-uploader.php:46
282
- msgid "No file chosen"
283
- msgstr "Nenhum ficheiro escolhido."
284
 
285
- #: options-media-uploader.php:49 options-media-uploader.php:106
286
- msgid "Upload"
287
- msgstr "Upload"
288
 
289
- #: options-media-uploader.php:51 options-media-uploader.php:107
290
- msgid "Remove"
291
- msgstr "Remover"
292
 
293
- #: options-media-uploader.php:54
294
- msgid "Upgrade your version of WordPress for full media support."
295
- msgstr "Actualize a sua versão do WordPress para total suporte media."
296
 
297
- #: options-media-uploader.php:78
298
- msgid "View File"
299
- msgstr "Ver Ficheiro"
300
 
301
- #: options-sanitize.php:236
302
- msgid "No Repeat"
303
- msgstr "Não Repetir"
 
304
 
305
- #: options-sanitize.php:237
306
- msgid "Repeat Horizontally"
307
- msgstr "Repetir Horizontalmente"
308
 
309
- #: options-sanitize.php:238
310
- msgid "Repeat Vertically"
311
- msgstr "Repetir Verticalmente"
312
 
313
- #: options-sanitize.php:239
314
- msgid "Repeat All"
315
- msgstr "Repetir Todos"
316
 
317
- #: options-sanitize.php:252
318
- msgid "Top Left"
319
- msgstr "Esquerda Topo"
320
 
321
- #: options-sanitize.php:253
322
- msgid "Top Center"
323
- msgstr "Centro Topo"
324
 
325
- #: options-sanitize.php:254
326
- msgid "Top Right"
327
- msgstr "Direita Topo"
328
 
329
- #: options-sanitize.php:255
330
- msgid "Middle Left"
331
- msgstr "Esquerda Meio"
332
 
333
- #: options-sanitize.php:256
334
- msgid "Middle Center"
335
- msgstr "Centro Meio"
336
 
337
- #: options-sanitize.php:257
338
- msgid "Middle Right"
339
- msgstr "Direita Meio"
340
 
341
- #: options-sanitize.php:258
342
- msgid "Bottom Left"
343
- msgstr "Esquerda Fundo"
344
 
345
- #: options-sanitize.php:259
346
- msgid "Bottom Center"
347
- msgstr "Centro Fundo"
348
 
349
- #: options-sanitize.php:260
350
- msgid "Bottom Right"
351
- msgstr "Direita Fundo"
352
 
353
- #: options-sanitize.php:273
354
- msgid "Scroll Normally"
355
- msgstr "Rolar Normalmente"
356
 
357
- #: options-sanitize.php:274
358
- msgid "Fixed in Place"
359
- msgstr "Fixo"
360
 
361
- #: options-sanitize.php:348
362
- msgid "Normal"
363
- msgstr "Normal"
 
 
 
364
 
365
- #: options-sanitize.php:349
366
- msgid "Italic"
367
- msgstr "Itálico"
368
 
369
- #: options-sanitize.php:350
370
- msgid "Bold"
371
- msgstr "Negrito"
372
 
373
- #: options-sanitize.php:351
374
- msgid "Bold Italic"
375
- msgstr "Itálico Negrito"
 
 
 
 
 
376
 
377
- #: options-theme-customizer/options.php:101
378
- msgid "Basic"
379
- msgstr "Básico"
380
 
381
- #: options-theme-customizer/options.php:158
382
- msgid "Extended"
383
- msgstr "Extended"
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Options Framework Plugin em português\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/options-framework-plugin\n"
7
+ "POT-Creation-Date: 2014-04-22 15:02:20+00:00\n"
8
+ "PO-Revision-Date: 2014-04-22 18:54-0000\n"
9
+ "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
10
+ "Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
11
  "Language: pt_PT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.6.4\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\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
+ "O seu tema actual não suporta o plugin Options Framework. <a href=\"%1$s\" "
25
+ "target=\"_blank\">Saber Mais</a> | <a href=\"%2$s\">Esconder notificação</a>"
26
 
27
+ #: includes/class-options-framework-admin.php:121
28
+ #: includes/class-options-framework-admin.php:122
29
+ #: includes/class-options-framework-admin.php:374
30
+ msgid "Theme Options"
31
+ msgstr "Opções do tema"
32
 
33
+ #: includes/class-options-framework-admin.php:240
34
+ msgid "Save Options"
35
+ msgstr "Guardar opções"
36
 
37
+ #: includes/class-options-framework-admin.php:241
38
+ msgid "Restore Defaults"
39
+ msgstr "Restaurar predefinições"
40
 
41
+ #: includes/class-options-framework-admin.php:241
42
+ msgid "Click OK to reset. Any theme settings will be lost!"
43
+ msgstr "Clique em OK para restaurar. Todas as opções do tema serão perdidas!"
44
 
45
+ #: includes/class-options-framework-admin.php:272
46
+ msgid "Default options restored."
47
+ msgstr "Opções predefinidas restauradas."
48
 
49
+ #: includes/class-options-framework-admin.php:326
50
+ msgid "Options saved."
51
+ msgstr "Opções guardadas."
52
 
53
+ #: includes/class-options-media-uploader.php:63
54
+ msgid "No file chosen"
55
+ msgstr "Nenhum ficheiro escolhido."
56
 
57
+ #: includes/class-options-media-uploader.php:66
58
+ #: includes/class-options-media-uploader.php:119
59
+ msgid "Upload"
60
+ msgstr "Carregar"
61
 
62
+ #: includes/class-options-media-uploader.php:68
63
+ #: includes/class-options-media-uploader.php:120
64
+ msgid "Remove"
65
+ msgstr "Remover"
66
 
67
+ #: includes/class-options-media-uploader.php:71
68
+ msgid "Upgrade your version of WordPress for full media support."
69
+ msgstr ""
70
+ "Actualize a sua versão do WordPress para suporte completo de multimédia."
71
 
72
+ #: includes/class-options-media-uploader.php:95
73
+ msgid "View File"
74
+ msgstr "Ver ficheiro"
75
 
76
+ #: includes/class-options-sanitization.php:241
77
+ msgid "No Repeat"
78
+ msgstr "Não repetir"
79
 
80
+ #: includes/class-options-sanitization.php:242
81
+ msgid "Repeat Horizontally"
82
+ msgstr "Repetir horizontalmente"
83
 
84
+ #: includes/class-options-sanitization.php:243
85
+ msgid "Repeat Vertically"
86
+ msgstr "Repetir verticalmente"
87
 
88
+ #: includes/class-options-sanitization.php:244
89
+ msgid "Repeat All"
90
+ msgstr "Repetir todos"
91
 
92
+ #: includes/class-options-sanitization.php:257
93
+ msgid "Top Left"
94
+ msgstr "Topo à esquerda"
95
 
96
+ #: includes/class-options-sanitization.php:258
97
+ msgid "Top Center"
98
+ msgstr "Topo ao centro"
99
 
100
+ #: includes/class-options-sanitization.php:259
101
+ msgid "Top Right"
102
+ msgstr "Topo à direita"
103
 
104
+ #: includes/class-options-sanitization.php:260
105
+ msgid "Middle Left"
106
+ msgstr "Meio à esquerda"
107
 
108
+ #: includes/class-options-sanitization.php:261
109
+ msgid "Middle Center"
110
+ msgstr "Meio ao centro"
111
 
112
+ #: includes/class-options-sanitization.php:262
113
+ msgid "Middle Right"
114
+ msgstr "Meio à direita"
115
 
116
+ #: includes/class-options-sanitization.php:263
117
+ msgid "Bottom Left"
118
+ msgstr "Fundo à esquerda"
119
 
120
+ #: includes/class-options-sanitization.php:264
121
+ msgid "Bottom Center"
122
+ msgstr "Fundo ao centro"
123
 
124
+ #: includes/class-options-sanitization.php:265
125
+ msgid "Bottom Right"
126
+ msgstr "Fundo à direita"
127
 
128
+ #: includes/class-options-sanitization.php:278
129
+ msgid "Scroll Normally"
130
+ msgstr "Fluir normalmente"
131
 
132
+ #: includes/class-options-sanitization.php:279
133
+ msgid "Fixed in Place"
134
+ msgstr "Fixo"
135
 
136
+ #: includes/class-options-sanitization.php:353
137
+ msgid "Normal"
138
+ msgstr "Normal"
139
 
140
+ #: includes/class-options-sanitization.php:354
141
+ msgid "Italic"
142
+ msgstr "Itálico"
143
 
144
+ #: includes/class-options-sanitization.php:355
145
+ msgid "Bold"
146
+ msgstr "Negrito"
147
 
148
+ #: includes/class-options-sanitization.php:356
149
+ msgid "Bold Italic"
150
+ msgstr "Itálico Negrito"
151
 
152
+ #~ msgid "One"
153
+ #~ msgstr "Um"
 
154
 
155
+ #~ msgid "Two"
156
+ #~ msgstr "Dois"
 
157
 
158
+ #~ msgid "Three"
159
+ #~ msgstr "Três"
 
160
 
161
+ #~ msgid "Four"
162
+ #~ msgstr "Quatro"
 
163
 
164
+ #~ msgid "Five"
165
+ #~ msgstr "Cinco"
 
166
 
167
+ #~ msgid "French Toast"
168
+ #~ msgstr "Tosta"
 
169
 
170
+ #~ msgid "Pancake"
171
+ #~ msgstr "Panqueca"
 
 
 
172
 
173
+ #~ msgid "Omelette"
174
+ #~ msgstr "Omolete"
 
175
 
176
+ #~ msgid "Crepe"
177
+ #~ msgstr "Crepe"
 
178
 
179
+ #~ msgid "Waffle"
180
+ #~ msgstr "Waffle"
 
181
 
182
+ #~ msgid "Basic Settings"
183
+ #~ msgstr "Definições básicas"
 
184
 
185
+ #~ msgid "Input Text Mini"
186
+ #~ msgstr "Campo de texto pequeno"
 
187
 
188
+ #~ msgid "A mini text input field."
189
+ #~ msgstr "Um pequeno campo de texto."
 
190
 
191
+ #~ msgid "Input Text"
192
+ #~ msgstr "Campo de texto"
 
193
 
194
+ #~ msgid "A text input field."
195
+ #~ msgstr "Um campo de texto."
 
196
 
197
+ #~ msgid "Textarea"
198
+ #~ msgstr "Área de Texto"
 
199
 
200
+ #~ msgid "Textarea description."
201
+ #~ msgstr "Descrição da área de texto."
 
202
 
203
+ #~ msgid "Input Select Small"
204
+ #~ msgstr "Campo de selecção pequeno"
 
205
 
206
+ #~ msgid "Small Select Box."
207
+ #~ msgstr "Caixa de selecção pequena."
 
208
 
209
+ #~ msgid "Input Select Wide"
210
+ #~ msgstr "Campo de selecção grande"
 
211
 
212
+ #~ msgid "A wider select box."
213
+ #~ msgstr "Caixa de selecção mais larga."
 
214
 
215
+ #~ msgid "Select a Category"
216
+ #~ msgstr "Seleccione uma categoria"
 
 
 
 
 
217
 
218
+ #~ msgid "Passed an array of categories with cat_ID and cat_name"
219
+ #~ msgstr "Passou uma série de categorias com cat_ID e cat_name"
 
 
 
 
 
 
220
 
221
+ #~ msgid "Select a Tag"
222
+ #~ msgstr "Seleccione uma etiqueta"
 
 
223
 
224
+ #~ msgid "Passed an array of tags with term_id and term_name"
225
+ #~ msgstr "Passou uma série de etiquetas com term_id e term_name"
 
226
 
227
+ #~ msgid "Select a Page"
228
+ #~ msgstr "Seleccione uma página"
 
229
 
230
+ #~ msgid "Passed an array of pages with ID and post_title"
231
+ #~ msgstr "Passou uma série de categorias com cat_ID e cat_name"
 
232
 
233
+ #~ msgid "Input Radio (one)"
234
+ #~ msgstr "Selector de opção"
 
235
 
236
+ #~ msgid "Radio select with default options \"one\"."
237
+ #~ msgstr "Selector de opção, seleccionado por omissão."
 
238
 
239
+ #~ msgid "Example Info"
240
+ #~ msgstr "Informação de exemplo"
 
241
 
242
+ #~ msgid "This is just some example information you can put in the panel."
243
+ #~ msgstr "Isto é apenas informação de exemplo que pode colocar no painel."
 
244
 
245
+ #~ msgid "Input Checkbox"
246
+ #~ msgstr "Caixa de verificação"
 
247
 
248
+ #~ msgid "Example checkbox, defaults to true."
249
+ #~ msgstr "Caixa de verificação de exemplo, seleccionada por omissão."
 
250
 
251
+ #~ msgid "Advanced Settings"
252
+ #~ msgstr "Definições avançadas"
 
253
 
254
+ #~ msgid "Check to Show a Hidden Text Input"
255
+ #~ msgstr "Seleccionar para mostrar um campo de texto escondido"
 
256
 
257
+ #~ msgid "Click here and see what happens."
258
+ #~ msgstr "Click aqui e veja o que acontece."
 
259
 
260
+ #~ msgid "Hidden Text Input"
261
+ #~ msgstr "Campo de texto escondido"
 
262
 
263
+ #~ msgid "This option is hidden unless activated by a checkbox click."
264
+ #~ msgstr ""
265
+ #~ "Esta opção encontra-se escondida a não ser que seja activada por uma "
266
+ #~ "caixa de verificação."
267
 
268
+ #~ msgid "Uploader Test"
269
+ #~ msgstr "Texte de carregamento"
 
270
 
271
+ #~ msgid "This creates a full size uploader that previews the image."
272
+ #~ msgstr "Isto cria um campo de carregamento com pré-visualização da imagem."
 
273
 
274
+ #~ msgid "Example Background"
275
+ #~ msgstr "Fundo de exemplo"
 
276
 
277
+ #~ msgid "Change the background CSS."
278
+ #~ msgstr "Modificar o CSS do fundo."
 
279
 
280
+ #~ msgid "Multicheck"
281
+ #~ msgstr "Multi-verificação"
 
282
 
283
+ #~ msgid "Multicheck description."
284
+ #~ msgstr "Descrição da multi-verificação."
 
285
 
286
+ #~ msgid "Colorpicker"
287
+ #~ msgstr "Selector de Cor"
 
288
 
289
+ #~ msgid "No color selected by default."
290
+ #~ msgstr "Sem cor seleccionada por defeito."
 
291
 
292
+ #~ msgid "Typography"
293
+ #~ msgstr "Tipografia"
 
294
 
295
+ #~ msgid "Example typography."
296
+ #~ msgstr "Exemplo de tipografia."
 
297
 
298
+ #~ msgid "Custom Typography"
299
+ #~ msgstr "Tipografia personalizada."
 
300
 
301
+ #~ msgid "Custom typography options."
302
+ #~ msgstr "Opções de tipografia personalizada."
 
303
 
304
+ #~ msgid "Text Editor"
305
+ #~ msgstr "Editor de texto"
 
306
 
307
+ #~ msgid "Default Text Editor"
308
+ #~ msgstr "Editor de texto padrão"
 
309
 
310
+ #~ msgid ""
311
+ #~ "You can also pass settings to the editor. Read more about wp_editor in "
312
+ #~ "<a href=\"%1$s\" target=\"_blank\">the WordPress codex</a>"
313
+ #~ msgstr ""
314
+ #~ "Também é possível passar opções para o editor. Ler mais sobre wp_editor "
315
+ #~ "no <a href=\"%1$s\" target=\"_blank\">codex do WordPress</a>"
316
 
317
+ #~ msgid "Additional Text Editor"
318
+ #~ msgstr "Editor de texto adicional"
 
319
 
320
+ #~ msgid "This editor includes media button."
321
+ #~ msgstr "Este editor inclui um botão de multimédia."
 
322
 
323
+ #~ msgid "Basic"
324
+ #~ msgstr "Básico"
325
+
326
+ #~ msgid "Extended"
327
+ #~ msgstr "Avançado"
328
+
329
+ #~ msgid "Clear"
330
+ #~ msgstr "Limpar"
331
 
332
+ #~ msgid "Default"
333
+ #~ msgstr "Padrão"
 
334
 
335
+ #~ msgid "Select Color"
336
+ #~ msgstr "Seleccionar Cor"
 
languages/{optionsframework-ru_RU.mo → options-framework-ru_RU.mo} RENAMED
File without changes
languages/{optionsframework-ru_RU.po → options-framework-ru_RU.po} RENAMED
File without changes
languages/{optionsframework-sv_SE.mo → options-framework-sv_SE.mo} RENAMED
File without changes
languages/{optionsframework-sv_SE.po → options-framework-sv_SE.po} RENAMED
File without changes
languages/{optionsframework-zh_CN.mo → options-framework-zh_CN.mo} RENAMED
File without changes
languages/{optionsframework-zh_CN.po → options-framework-zh_CN.po} RENAMED
File without changes
options-framework.php CHANGED
@@ -6,13 +6,13 @@
6
  * @author Devin Price <devin@wptheming.com>
7
  * @license GPL-2.0+
8
  * @link http://wptheming.com
9
- * @copyright 2013 WP Theming
10
  *
11
  * @wordpress-plugin
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+
6
  * @author Devin Price <devin@wptheming.com>
7
  * @license GPL-2.0+
8
  * @link http://wptheming.com
9
+ * @copyright 2010-2014 WP Theming
10
  *
11
  * @wordpress-plugin
12
  * Plugin Name: Options Framework
13
  * Plugin URI: http://wptheming.com
14
  * Description: A framework for building theme options.
15
+ * Version: 1.8.1
16
  * Author: Devin Price
17
  * Author URI: http://wptheming.com
18
  * License: GPL-2.0+
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.8.1
8
- Stable tag: 1.8.0
9
  License: GPLv2
10
 
11
  == Description ==
@@ -53,13 +53,14 @@ You can also watch the video screencast I have at [http://wptheming.com/options-
53
  * textarea
54
  * checkbox
55
  * select
56
- * radio button
57
- * upload (image uploader)
58
  * images (use images instead of radio buttons)
59
  * background (a set of options to define a background)
60
  * multicheck
61
- * color (a jquery color picker)
62
  * typography (a set of options to define typography)
 
63
 
64
  == Screenshots ==
65
 
@@ -67,6 +68,15 @@ You can also watch the video screencast I have at [http://wptheming.com/options-
67
 
68
  == Changelog ==
69
 
 
 
 
 
 
 
 
 
 
70
  = 1.8.0 =
71
 
72
  * Increase default width of text inputs
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.9
8
+ Stable tag: 1.8.1
9
  License: GPLv2
10
 
11
  == Description ==
53
  * textarea
54
  * checkbox
55
  * select
56
+ * radio buttons
57
+ * upload (image/file uploader)
58
  * images (use images instead of radio buttons)
59
  * background (a set of options to define a background)
60
  * multicheck
61
+ * colorpicker
62
  * typography (a set of options to define typography)
63
+ * editor
64
 
65
  == Screenshots ==
66
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.8.1 =
72
+
73
+ * Fix for colorpicker spacing
74
+ * Better sanitization of upload option
75
+ * Update translation .pot
76
+ * Updated Portuguese translations by @pedro-mendonca
77
+ * Indonesian translations props @aryaprakasa)
78
+ * Use filtered values for optionsframework_admin_bar
79
+
80
  = 1.8.0 =
81
 
82
  * Increase default width of text inputs