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 | Options Framework |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.8.1
- css/optionsframework.css +6 -0
- includes/class-options-framework-admin.php +14 -5
- includes/class-options-framework.php +3 -3
- includes/class-options-interface.php +1 -1
- includes/class-options-media-uploader.php +1 -1
- includes/class-options-sanitization.php +8 -8
- js/options-custom.js +14 -19
- languages/{optionsframework-da_DK.mo → options-framework-da_DK.mo} +0 -0
- languages/{optionsframework-da_DK.po → options-framework-da_DK.po} +0 -0
- languages/{optionsframework-es_ES.mo → options-framework-es_ES.mo} +0 -0
- languages/{optionsframework-es_ES.po → options-framework-es_ES.po} +0 -0
- languages/{optionsframework-fa_IR.mo → options-framework-fa_IR.mo} +0 -0
- languages/{optionsframework-fa_IR.po → options-framework-fa_IR.po} +0 -0
- languages/{optionsframework-fr_FR.mo → options-framework-fr_FR.mo} +0 -0
- languages/{optionsframework-fr_FR.po → options-framework-fr_FR.po} +0 -0
- languages/options-framework-hu_HU.po +89 -76
- languages/options-framework-id_ID.mo +0 -0
- languages/options-framework-id_ID.po +148 -0
- languages/{optionsframework-it_IT.mo → options-framework-it_IT.mo} +0 -0
- languages/{optionsframework-it_IT.po → options-framework-it_IT.po} +0 -0
- languages/options-framework-plugin.pot +141 -0
- languages/{optionsframework-pt_BR.mo → options-framework-pt_BR.mo} +0 -0
- languages/{optionsframework-pt_BR.po → options-framework-pt_BR.po} +0 -0
- languages/options-framework-pt_PT.mo +0 -0
- languages/options-framework-pt_PT.po +238 -285
- languages/{optionsframework-ru_RU.mo → options-framework-ru_RU.mo} +0 -0
- languages/{optionsframework-ru_RU.po → options-framework-ru_RU.po} +0 -0
- languages/{optionsframework-sv_SE.mo → options-framework-sv_SE.mo} +0 -0
- languages/{optionsframework-sv_SE.po → options-framework-sv_SE.po} +0 -0
- languages/{optionsframework-zh_CN.mo → options-framework-zh_CN.mo} +0 -0
- languages/{optionsframework-zh_CN.po → options-framework-zh_CN.po} +0 -0
- options-framework.php +2 -2
- 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
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
'parent' => 'appearance',
|
373 |
'id' => 'of_theme_options',
|
374 |
-
'title' =>
|
375 |
-
'href' =>
|
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
|
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.
|
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
|
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
|
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
|
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 |
-
$
|
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(
|
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 |
-
$
|
48 |
|
49 |
-
|
50 |
|
51 |
// Remove active class from all tabs
|
52 |
-
$
|
53 |
|
54 |
$(this).addClass('nav-tab-active').blur();
|
55 |
|
56 |
-
var group = $(this).attr('href');
|
57 |
-
|
58 |
if (typeof(localStorage) != 'undefined' ) {
|
59 |
-
localStorage.setItem(
|
60 |
}
|
61 |
|
62 |
-
$(
|
63 |
-
$(group).fadeIn();
|
64 |
|
65 |
-
|
66 |
-
$(
|
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 |
-
#
|
2 |
-
# This file is distributed under the same license as the
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"Project-Id-Version: Options Framework\n"
|
12 |
|
13 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "Repeat Horizontally"
|
15 |
msgstr "Vízszintes ismétlődés"
|
16 |
|
17 |
-
#: options-
|
18 |
msgid "Repeat Vertically"
|
19 |
msgstr "Függőleges ismétlődés"
|
20 |
|
21 |
-
#: options-
|
22 |
msgid "Repeat All"
|
23 |
msgstr "Mindegyik ismétlődjön"
|
24 |
|
25 |
-
#: options-
|
26 |
msgid "Top Left"
|
27 |
msgstr "Bal felső"
|
28 |
|
29 |
-
#: options-
|
30 |
msgid "Top Center"
|
31 |
msgstr "Középen fent"
|
32 |
|
33 |
-
#: options-
|
34 |
msgid "Top Right"
|
35 |
msgstr "Jobb felső"
|
36 |
|
37 |
-
#: options-
|
38 |
msgid "Middle Left"
|
39 |
msgstr "Közép bal"
|
40 |
|
41 |
-
#: options-
|
42 |
msgid "Middle Center"
|
43 |
msgstr "Közép középen"
|
44 |
|
45 |
-
#: options-
|
46 |
msgid "Middle Right"
|
47 |
msgstr "Közép jobb"
|
48 |
|
49 |
-
#: options-
|
50 |
msgid "Bottom Left"
|
51 |
msgstr "Bal alsó"
|
52 |
|
53 |
-
#: options-
|
54 |
msgid "Bottom Center"
|
55 |
msgstr "Középen alul"
|
56 |
|
57 |
-
#: options-
|
58 |
msgid "Bottom Right"
|
59 |
msgstr "Jobb alsó"
|
60 |
|
61 |
-
#: options-
|
62 |
msgid "Scroll Normally"
|
63 |
msgstr "Normál lapozás"
|
64 |
|
65 |
-
#: options-
|
66 |
msgid "Fixed in Place"
|
67 |
msgstr "Hely javítása"
|
68 |
|
69 |
-
#: options-
|
70 |
msgid "Normal"
|
71 |
msgstr "Normál"
|
72 |
|
73 |
-
#: options-
|
74 |
msgid "Italic"
|
75 |
msgstr "Dőlt"
|
76 |
|
77 |
-
#: options-
|
78 |
msgid "Bold"
|
79 |
msgstr "Félkövér"
|
80 |
|
81 |
-
#: options-
|
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:
|
8 |
-
"PO-Revision-Date:
|
9 |
-
"Last-Translator: Pedro
|
10 |
-
"Language-Team:
|
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.
|
|
|
16 |
|
17 |
-
#: options-
|
18 |
-
msgid "
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
#: options-
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
-
#: options-
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: options-
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: options-
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: options-
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#: options-
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#: options-
|
46 |
-
msgid "
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: options-
|
50 |
-
|
51 |
-
|
|
|
52 |
|
53 |
-
#: options-
|
54 |
-
|
55 |
-
|
|
|
56 |
|
57 |
-
#: options-
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
|
|
60 |
|
61 |
-
#: options-
|
62 |
-
msgid "
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#: options-
|
66 |
-
msgid "
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: options-
|
70 |
-
msgid "
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: options-
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: options-
|
78 |
-
msgid "
|
79 |
-
msgstr "
|
80 |
|
81 |
-
#: options-
|
82 |
-
msgid "
|
83 |
-
msgstr "
|
84 |
|
85 |
-
#: options-
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: options-
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
|
93 |
-
#: options-
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#: options-
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: options-
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: options-
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: options-
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: options-
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
|
117 |
-
#: options-
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: options-
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: options-
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#: options-
|
130 |
-
msgid "
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#: options-
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: options-
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
|
142 |
-
|
143 |
-
msgstr "Caixa de Verificação"
|
144 |
|
145 |
-
|
146 |
-
|
147 |
-
msgstr "Caixa de verificação de exemplo, valor por defeito igual a \"true\"."
|
148 |
|
149 |
-
|
150 |
-
|
151 |
-
msgstr "Definições Avançadas"
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
msgstr "Seleccionar para Mostrar um Campo de Texto Escondido"
|
156 |
|
157 |
-
|
158 |
-
|
159 |
-
msgstr "Click aqui e veja o que acontece."
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
msgstr "Campo de Texto Escondido"
|
164 |
|
165 |
-
|
166 |
-
|
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 |
-
|
172 |
-
|
173 |
-
msgstr "Texte de Upload"
|
174 |
|
175 |
-
|
176 |
-
|
177 |
-
msgstr "Isto cria um campo de upload com pré-visualização da imagem."
|
178 |
|
179 |
-
|
180 |
-
|
181 |
-
msgstr "Fundo de Exemplo"
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
msgstr "Alterar o fundo CSS."
|
186 |
|
187 |
-
|
188 |
-
|
189 |
-
msgstr "Multi-verificação"
|
190 |
|
191 |
-
|
192 |
-
|
193 |
-
msgstr "Descrição da multi-verificação."
|
194 |
|
195 |
-
|
196 |
-
|
197 |
-
msgstr "Selector de Cor"
|
198 |
|
199 |
-
|
200 |
-
|
201 |
-
msgstr "Sem cor seleccionada por defeito."
|
202 |
|
203 |
-
|
204 |
-
|
205 |
-
msgstr "Tipografia"
|
206 |
|
207 |
-
|
208 |
-
|
209 |
-
msgstr "Tipografia de exemplo."
|
210 |
|
211 |
-
|
212 |
-
|
213 |
-
msgstr "Tipografia Customizada"
|
214 |
|
215 |
-
|
216 |
-
|
217 |
-
msgstr "Opções de tipografia customizada."
|
218 |
|
219 |
-
|
220 |
-
|
221 |
-
msgstr "Editor de Texto"
|
222 |
|
223 |
-
|
224 |
-
|
225 |
-
msgstr "Editor de Texto Padrão"
|
226 |
|
227 |
-
|
228 |
-
|
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 |
-
|
236 |
-
|
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 |
-
|
245 |
-
|
246 |
-
msgid "Theme Options"
|
247 |
-
msgstr "Opções do Tema"
|
248 |
|
249 |
-
|
250 |
-
|
251 |
-
msgstr "Limpar"
|
252 |
|
253 |
-
|
254 |
-
|
255 |
-
msgstr "Padrão"
|
256 |
|
257 |
-
|
258 |
-
|
259 |
-
msgstr "Seleccionar Cor"
|
260 |
|
261 |
-
|
262 |
-
|
263 |
-
msgstr "Guardar Opções"
|
264 |
|
265 |
-
|
266 |
-
|
267 |
-
msgstr "Restaurar Opções Padrão"
|
268 |
|
269 |
-
|
270 |
-
|
271 |
-
msgstr "Click OK para restaurar. Todas as opções do tema serão perdidas."
|
272 |
|
273 |
-
|
274 |
-
|
275 |
-
msgstr "Opções padrão restauradas."
|
276 |
|
277 |
-
|
278 |
-
|
279 |
-
msgstr "Opções guardadas."
|
280 |
|
281 |
-
|
282 |
-
|
283 |
-
msgstr "Nenhum ficheiro escolhido."
|
284 |
|
285 |
-
|
286 |
-
|
287 |
-
msgstr "Upload"
|
288 |
|
289 |
-
|
290 |
-
|
291 |
-
msgstr "Remover"
|
292 |
|
293 |
-
|
294 |
-
|
295 |
-
msgstr "Actualize a sua versão do WordPress para total suporte media."
|
296 |
|
297 |
-
|
298 |
-
|
299 |
-
msgstr "Ver Ficheiro"
|
300 |
|
301 |
-
|
302 |
-
|
303 |
-
|
|
|
304 |
|
305 |
-
|
306 |
-
|
307 |
-
msgstr "Repetir Horizontalmente"
|
308 |
|
309 |
-
|
310 |
-
|
311 |
-
msgstr "Repetir Verticalmente"
|
312 |
|
313 |
-
|
314 |
-
|
315 |
-
msgstr "Repetir Todos"
|
316 |
|
317 |
-
|
318 |
-
|
319 |
-
msgstr "Esquerda Topo"
|
320 |
|
321 |
-
|
322 |
-
|
323 |
-
msgstr "Centro Topo"
|
324 |
|
325 |
-
|
326 |
-
|
327 |
-
msgstr "Direita Topo"
|
328 |
|
329 |
-
|
330 |
-
|
331 |
-
msgstr "Esquerda Meio"
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
msgstr "Centro Meio"
|
336 |
|
337 |
-
|
338 |
-
|
339 |
-
msgstr "Direita Meio"
|
340 |
|
341 |
-
|
342 |
-
|
343 |
-
msgstr "Esquerda Fundo"
|
344 |
|
345 |
-
|
346 |
-
|
347 |
-
msgstr "Centro Fundo"
|
348 |
|
349 |
-
|
350 |
-
|
351 |
-
msgstr "Direita Fundo"
|
352 |
|
353 |
-
|
354 |
-
|
355 |
-
msgstr "Rolar Normalmente"
|
356 |
|
357 |
-
|
358 |
-
|
359 |
-
msgstr "Fixo"
|
360 |
|
361 |
-
|
362 |
-
|
363 |
-
|
|
|
|
|
|
|
364 |
|
365 |
-
|
366 |
-
|
367 |
-
msgstr "Itálico"
|
368 |
|
369 |
-
|
370 |
-
|
371 |
-
msgstr "Negrito"
|
372 |
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
msgstr "Básico"
|
380 |
|
381 |
-
|
382 |
-
|
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
|
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.
|
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 |
-
Stable tag: 1.8.
|
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
|
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 |
-
*
|
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
|