Version Description
- General: Improved load_value function to better handle false and default values
- Number field: Added new options for min, max and step - http://support.advancedcustomfields.com/discussion/6263/fork-on-numbers-field
- Radio field: Improved logic for selecting the value. Now works with 0, false, null and any other 'empty' value - http://support.advancedcustomfields.com/discussion/6305/radio-button-issue-with-0-values-fix-included-
- Date picker field: Fixed PHP error - http://support.advancedcustomfields.com/discussion/6312/date-picker-php-error-date_picker-php-line-138-screenshot-attached
- Language: Added Portuguese translation - https://github.com/elliotcondon/acf/pull/64
- Taxonomy: Updated JS to clear image / file and checkbox elements when a new category is added via AJAX - http://support.advancedcustomfields.com/discussion/6326/image-field-added-to-categories-field-remains-set-after-category-created
- Validation: Added logic to allow a field to bypass validation if it is part of a tab group which is hidden via conditional logic
- API: Improved the acf_form function to better handle form attributes
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.1.6 |
Comparing to | |
See all releases |
Code changes from version 4.1.5 to 4.1.6
- acf.php +2 -2
- core/actions/export.php +2 -2
- core/api.php +12 -11
- core/controllers/addons.php +27 -4
- core/controllers/everything_fields.php +18 -4
- core/controllers/export.php +3 -3
- core/controllers/field_groups.php +2 -2
- core/controllers/location.php +1 -1
- core/controllers/upgrade.php +2 -2
- core/fields/_functions.php +26 -41
- core/fields/date_picker/date_picker.php +4 -0
- core/fields/number.php +83 -16
- core/fields/radio.php +19 -10
- core/fields/relationship.php +3 -3
- css/acf.css +12 -0
- css/global.css +3 -2
- js/input/validation.js +10 -0
- lang/acf-cs_CZ.mo +0 -0
- lang/acf-cs_CZ.po +202 -252
- lang/acf-de_DE.mo +0 -0
- lang/acf-de_DE.po +3 -3
- lang/acf-es_ES.mo +0 -0
- lang/acf-es_ES.po +118 -117
- lang/acf-fr_FR.mo +0 -0
- lang/acf-fr_FR.po +3 -3
- lang/acf-it_IT.mo +0 -0
- lang/acf-it_IT.po +1 -1
- lang/acf-ja.mo +0 -0
- lang/acf-ja.po +3 -3
- lang/acf-nl_NL.po +3 -2
- lang/acf-pl_PL.mo +0 -0
- lang/acf-pl_PL.po +134 -162
- lang/acf-pt_BR.mo +0 -0
- lang/acf-pt_BR.po +1646 -966
- lang/acf-uk.mo +0 -0
- lang/acf-uk.po +4 -4
- lang/acf-zh_CN.mo +0 -0
- lang/acf-zh_CN.po +1925 -0
- lang/acf.pot +5 -4
- readme.txt +10 -0
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
-
Version: 4.1.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -67,7 +67,7 @@ class Acf
|
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
70 |
-
'version' => '4.1.
|
71 |
'upgrade_version' => '3.4.1',
|
72 |
);
|
73 |
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
+
Version: 4.1.6
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
70 |
+
'version' => '4.1.6',
|
71 |
'upgrade_version' => '3.4.1',
|
72 |
);
|
73 |
|
core/actions/export.php
CHANGED
@@ -189,7 +189,7 @@ echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . "\" ?>\n";
|
|
189 |
<?php wxr_authors_list(); ?>
|
190 |
<?php if ( $my_options['acf_posts'] ) {
|
191 |
|
192 |
-
global $wp_query, $wpdb;
|
193 |
$wp_query->in_the_loop = true; // Fake being in the loop.
|
194 |
|
195 |
// create SQL with %d placeholders
|
@@ -235,4 +235,4 @@ echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . "\" ?>\n";
|
|
235 |
}
|
236 |
?>
|
237 |
</channel>
|
238 |
-
</rss>
|
189 |
<?php wxr_authors_list(); ?>
|
190 |
<?php if ( $my_options['acf_posts'] ) {
|
191 |
|
192 |
+
global $wp_query, $wpdb, $post;
|
193 |
$wp_query->in_the_loop = true; // Fake being in the loop.
|
194 |
|
195 |
// create SQL with %d placeholders
|
235 |
}
|
236 |
?>
|
237 |
</channel>
|
238 |
+
</rss>
|
core/api.php
CHANGED
@@ -1069,7 +1069,7 @@ function acf_form_wp_head()
|
|
1069 |
* @return N/A
|
1070 |
*/
|
1071 |
|
1072 |
-
function acf_form( $options =
|
1073 |
{
|
1074 |
global $post;
|
1075 |
|
@@ -1094,13 +1094,16 @@ function acf_form( $options = false )
|
|
1094 |
|
1095 |
|
1096 |
// merge defaults with options
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
{
|
1103 |
-
$
|
|
|
|
|
|
|
1104 |
}
|
1105 |
|
1106 |
|
@@ -1109,10 +1112,8 @@ function acf_form( $options = false )
|
|
1109 |
|
1110 |
|
1111 |
// attributes
|
1112 |
-
|
1113 |
-
|
1114 |
-
$options['form_attributes']['class'] = 'acf-form acf-form-' . $options['post_id'];
|
1115 |
-
}
|
1116 |
|
1117 |
|
1118 |
// register post box
|
1069 |
* @return N/A
|
1070 |
*/
|
1071 |
|
1072 |
+
function acf_form( $options = array() )
|
1073 |
{
|
1074 |
global $post;
|
1075 |
|
1094 |
|
1095 |
|
1096 |
// merge defaults with options
|
1097 |
+
$options = array_merge($defaults, $options);
|
1098 |
+
|
1099 |
+
|
1100 |
+
// merge sub arrays
|
1101 |
+
foreach( $options as $k => $v )
|
1102 |
{
|
1103 |
+
if( is_array($v) )
|
1104 |
+
{
|
1105 |
+
$options[ $k ] = array_merge($defaults[ $k ], $options[ $k ]);
|
1106 |
+
}
|
1107 |
}
|
1108 |
|
1109 |
|
1112 |
|
1113 |
|
1114 |
// attributes
|
1115 |
+
$options['form_attributes']['class'] .= 'acf-form';
|
1116 |
+
|
|
|
|
|
1117 |
|
1118 |
|
1119 |
// register post box
|
core/controllers/addons.php
CHANGED
@@ -204,6 +204,7 @@ class acf_addons
|
|
204 |
|
205 |
<div id="add-ons" class="clearfix">
|
206 |
|
|
|
207 |
<?php foreach( $premium as $addon ): ?>
|
208 |
<div class="add-on wp-box <?php if( $addon['active'] ): ?>add-on-active<?php endif; ?>">
|
209 |
<a target="_blank" href="<?php echo $addon['url']; ?>">
|
@@ -221,10 +222,10 @@ class acf_addons
|
|
221 |
<?php endif; ?>
|
222 |
</div>
|
223 |
</div>
|
224 |
-
<?php endforeach; ?>
|
225 |
-
|
226 |
-
<div class="add-on-title"></div>
|
227 |
|
|
|
228 |
<?php foreach( $free as $addon ): ?>
|
229 |
<div class="add-on wp-box <?php if( $addon['active'] ): ?>add-on-active<?php endif; ?>">
|
230 |
<a target="_blank" href="<?php echo $addon['url']; ?>">
|
@@ -243,11 +244,33 @@ class acf_addons
|
|
243 |
</div>
|
244 |
</div>
|
245 |
<?php endforeach; ?>
|
246 |
-
|
|
|
247 |
|
248 |
</div>
|
249 |
|
250 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
<?php
|
252 |
|
253 |
return;
|
204 |
|
205 |
<div id="add-ons" class="clearfix">
|
206 |
|
207 |
+
<div class="add-on-group clearfix">
|
208 |
<?php foreach( $premium as $addon ): ?>
|
209 |
<div class="add-on wp-box <?php if( $addon['active'] ): ?>add-on-active<?php endif; ?>">
|
210 |
<a target="_blank" href="<?php echo $addon['url']; ?>">
|
222 |
<?php endif; ?>
|
223 |
</div>
|
224 |
</div>
|
225 |
+
<?php endforeach; ?>
|
226 |
+
</div>
|
|
|
227 |
|
228 |
+
<div class="add-on-group clearfix">
|
229 |
<?php foreach( $free as $addon ): ?>
|
230 |
<div class="add-on wp-box <?php if( $addon['active'] ): ?>add-on-active<?php endif; ?>">
|
231 |
<a target="_blank" href="<?php echo $addon['url']; ?>">
|
244 |
</div>
|
245 |
</div>
|
246 |
<?php endforeach; ?>
|
247 |
+
</div>
|
248 |
+
|
249 |
|
250 |
</div>
|
251 |
|
252 |
</div>
|
253 |
+
<script type="text/javascript">
|
254 |
+
(function($) {
|
255 |
+
|
256 |
+
$('#add-ons .add-on-group').each(function(){
|
257 |
+
|
258 |
+
var $el = $(this),
|
259 |
+
h = 0;
|
260 |
+
|
261 |
+
|
262 |
+
$el.find('.add-on').each(function(){
|
263 |
+
|
264 |
+
h = Math.max( $(this).height(), h );
|
265 |
+
|
266 |
+
});
|
267 |
+
|
268 |
+
$el.find('.add-on').height( h );
|
269 |
+
|
270 |
+
});
|
271 |
+
|
272 |
+
})(jQuery);
|
273 |
+
</script>
|
274 |
<?php
|
275 |
|
276 |
return;
|
core/controllers/everything_fields.php
CHANGED
@@ -346,8 +346,12 @@ $(document).ready(function(){
|
|
346 |
}
|
347 |
|
348 |
|
|
|
|
|
|
|
|
|
349 |
// clear WYSIWYG field
|
350 |
-
$
|
351 |
|
352 |
|
353 |
// vars
|
@@ -355,11 +359,21 @@ $(document).ready(function(){
|
|
355 |
id = textarea.attr('id'),
|
356 |
editor = tinyMCE.get( id );
|
357 |
|
358 |
-
editor
|
359 |
-
|
360 |
-
|
|
|
|
|
361 |
|
362 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
|
364 |
});
|
365 |
|
346 |
}
|
347 |
|
348 |
|
349 |
+
// vars
|
350 |
+
var $el = $('#addtag');
|
351 |
+
|
352 |
+
|
353 |
// clear WYSIWYG field
|
354 |
+
$el.find('.acf_wysiwyg textarea').each(function(){
|
355 |
|
356 |
|
357 |
// vars
|
359 |
id = textarea.attr('id'),
|
360 |
editor = tinyMCE.get( id );
|
361 |
|
362 |
+
if( editor )
|
363 |
+
{
|
364 |
+
editor.setContent('');
|
365 |
+
editor.save();
|
366 |
+
}
|
367 |
|
368 |
});
|
369 |
+
|
370 |
+
|
371 |
+
// clear image / file fields
|
372 |
+
$el.find('.field .active').removeClass('active');
|
373 |
+
|
374 |
+
|
375 |
+
// clear checkbox
|
376 |
+
$el.find('input[type="checkbox"]').removeAttr('checked');
|
377 |
|
378 |
});
|
379 |
|
core/controllers/export.php
CHANGED
@@ -267,7 +267,7 @@ class acf_export
|
|
267 |
<h3><?php _e("Export to PHP",'acf'); ?></h3>
|
268 |
<p><?php _e("ACF will create the PHP code to include in your theme.",'acf'); ?></p>
|
269 |
<p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
|
270 |
-
<p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the
|
271 |
<ol>
|
272 |
<li><?php _e("Select field group(s) from the list and click \"Create PHP\"",'acf'); ?></li>
|
273 |
<li><?php _e("Copy the PHP code generated",'acf'); ?></li>
|
@@ -308,7 +308,7 @@ class acf_export
|
|
308 |
|
309 |
<h3><?php _e("Notes",'acf'); ?></h3>
|
310 |
<p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
|
311 |
-
<p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the
|
312 |
|
313 |
|
314 |
<p><br /></p>
|
@@ -320,7 +320,7 @@ class acf_export
|
|
320 |
include_once('advanced-custom-fields/acf.php');
|
321 |
</pre>
|
322 |
|
323 |
-
<p><?php _e("To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to
|
324 |
|
325 |
<pre>
|
326 |
define( 'ACF_LITE', true );
|
267 |
<h3><?php _e("Export to PHP",'acf'); ?></h3>
|
268 |
<p><?php _e("ACF will create the PHP code to include in your theme.",'acf'); ?></p>
|
269 |
<p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
|
270 |
+
<p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file.",'acf'); ?></p>
|
271 |
<ol>
|
272 |
<li><?php _e("Select field group(s) from the list and click \"Create PHP\"",'acf'); ?></li>
|
273 |
<li><?php _e("Copy the PHP code generated",'acf'); ?></li>
|
308 |
|
309 |
<h3><?php _e("Notes",'acf'); ?></h3>
|
310 |
<p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
|
311 |
+
<p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file.",'acf'); ?></p>
|
312 |
|
313 |
|
314 |
<p><br /></p>
|
320 |
include_once('advanced-custom-fields/acf.php');
|
321 |
</pre>
|
322 |
|
323 |
+
<p><?php _e("To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:",'acf'); ?></p>
|
324 |
|
325 |
<pre>
|
326 |
define( 'ACF_LITE', true );
|
core/controllers/field_groups.php
CHANGED
@@ -350,10 +350,10 @@ class acf_field_groups
|
|
350 |
<?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
|
351 |
|
352 |
<h4><?php _e("Actions & Filters",'acf'); ?></h4>
|
353 |
-
<p><?php _e("All actions & filters have
|
354 |
|
355 |
<h4><?php _e("Preview draft is now working!",'acf'); ?></h4>
|
356 |
-
<p><?php _e("This bug has been squashed along with many other little critters!",'acf'); ?> <a class="acf-tab-toggle" href="
|
357 |
|
358 |
<hr />
|
359 |
|
350 |
<?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
|
351 |
|
352 |
<h4><?php _e("Actions & Filters",'acf'); ?></h4>
|
353 |
+
<p><?php _e("All actions & filters have received a major facelift to make customizing ACF even easier! Please",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("read this guide",'acf'); ?></a> <?php _e("to find the updated naming convention.",'acf'); ?></p>
|
354 |
|
355 |
<h4><?php _e("Preview draft is now working!",'acf'); ?></h4>
|
356 |
+
<p><?php _e("This bug has been squashed along with many other little critters!",'acf'); ?> <a class="acf-tab-toggle" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>" data-tab="2"><?php _e("See the full changelog",'acf'); ?></a></p>
|
357 |
|
358 |
<hr />
|
359 |
|
core/controllers/location.php
CHANGED
@@ -263,7 +263,7 @@ class acf_location
|
|
263 |
|
264 |
|
265 |
// translate $rule['value']
|
266 |
-
// - this variable will hold the
|
267 |
//if( function_exists('icl_object_id') )
|
268 |
//{
|
269 |
// $rule['value'] = icl_object_id( $rule['value'], $options['post_type'], true );
|
263 |
|
264 |
|
265 |
// translate $rule['value']
|
266 |
+
// - this variable will hold the original post_id, but $options['post_id'] will hold the translated version
|
267 |
//if( function_exists('icl_object_id') )
|
268 |
//{
|
269 |
// $rule['value'] = icl_object_id( $rule['value'], $options['post_type'], true );
|
core/controllers/upgrade.php
CHANGED
@@ -107,7 +107,7 @@ class acf_upgrade
|
|
107 |
// vars
|
108 |
$version = apply_filters('acf/get_info', 'version');
|
109 |
$readme = file_get_contents( 'http://plugins.svn.wordpress.org/advanced-custom-fields/trunk/readme.txt' );
|
110 |
-
$regexp = '/== Changelog ==(.*)=
|
111 |
$o = '';
|
112 |
|
113 |
|
@@ -627,7 +627,7 @@ class acf_upgrade
|
|
627 |
{
|
628 |
foreach($rows as $row)
|
629 |
{
|
630 |
-
//
|
631 |
$field_name = $row['meta_key'];
|
632 |
|
633 |
|
107 |
// vars
|
108 |
$version = apply_filters('acf/get_info', 'version');
|
109 |
$readme = file_get_contents( 'http://plugins.svn.wordpress.org/advanced-custom-fields/trunk/readme.txt' );
|
110 |
+
$regexp = '/== Changelog ==(.*)= ' . $version . ' =/sm';
|
111 |
$o = '';
|
112 |
|
113 |
|
627 |
{
|
628 |
foreach($rows as $row)
|
629 |
{
|
630 |
+
// original name
|
631 |
$field_name = $row['meta_key'];
|
632 |
|
633 |
|
core/fields/_functions.php
CHANGED
@@ -59,26 +59,19 @@ class acf_field_functions
|
|
59 |
}
|
60 |
|
61 |
|
|
|
|
|
|
|
|
|
62 |
// if $post_id is a string, then it is used in the everything fields and can be found in the options table
|
63 |
if( is_numeric($post_id) )
|
64 |
{
|
65 |
-
$
|
66 |
|
67 |
-
// value is an array
|
68 |
-
if(
|
69 |
{
|
70 |
-
|
71 |
-
{
|
72 |
-
$value = $field['default_value'];
|
73 |
-
}
|
74 |
-
else
|
75 |
-
{
|
76 |
-
$value = false;
|
77 |
-
}
|
78 |
-
}
|
79 |
-
else
|
80 |
-
{
|
81 |
-
$value = $value[0];
|
82 |
}
|
83 |
|
84 |
}
|
@@ -86,41 +79,33 @@ class acf_field_functions
|
|
86 |
{
|
87 |
$post_id = str_replace('user_', '', $post_id);
|
88 |
|
89 |
-
$
|
90 |
|
91 |
-
// value is an array
|
92 |
-
if(
|
93 |
{
|
94 |
-
|
95 |
-
{
|
96 |
-
$value = $field['default_value'];
|
97 |
-
}
|
98 |
-
else
|
99 |
-
{
|
100 |
-
$value = false;
|
101 |
-
}
|
102 |
-
}
|
103 |
-
else
|
104 |
-
{
|
105 |
-
$value = $value[0];
|
106 |
}
|
|
|
107 |
}
|
108 |
else
|
109 |
{
|
110 |
-
$
|
111 |
|
112 |
-
if( is_null($value) )
|
113 |
{
|
114 |
-
|
115 |
-
{
|
116 |
-
$value = $field['default_value'];
|
117 |
-
}
|
118 |
-
else
|
119 |
-
{
|
120 |
-
$value = false;
|
121 |
-
}
|
122 |
}
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
}
|
125 |
|
126 |
|
59 |
}
|
60 |
|
61 |
|
62 |
+
// set default value
|
63 |
+
$value = false;
|
64 |
+
|
65 |
+
|
66 |
// if $post_id is a string, then it is used in the everything fields and can be found in the options table
|
67 |
if( is_numeric($post_id) )
|
68 |
{
|
69 |
+
$v = get_post_meta( $post_id, $field['name'], false );
|
70 |
|
71 |
+
// value is an array
|
72 |
+
if( isset($v[0]) )
|
73 |
{
|
74 |
+
$value = $v[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
|
77 |
}
|
79 |
{
|
80 |
$post_id = str_replace('user_', '', $post_id);
|
81 |
|
82 |
+
$v = get_user_meta( $post_id, $field['name'], false );
|
83 |
|
84 |
+
// value is an array
|
85 |
+
if( isset($v[0]) )
|
86 |
{
|
87 |
+
$value = $v[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
+
|
90 |
}
|
91 |
else
|
92 |
{
|
93 |
+
$v = get_option( $post_id . '_' . $field['name'], null );
|
94 |
|
95 |
+
if( !is_null($value) )
|
96 |
{
|
97 |
+
$value = $v;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
+
}
|
100 |
+
|
101 |
+
|
102 |
+
// no value?
|
103 |
+
if( $value === false )
|
104 |
+
{
|
105 |
+
if( isset($field['default_value']) && $field['default_value'] !== "" )
|
106 |
+
{
|
107 |
+
$value = $field['default_value'];
|
108 |
+
}
|
109 |
}
|
110 |
|
111 |
|
core/fields/date_picker/date_picker.php
CHANGED
@@ -92,6 +92,10 @@ class acf_field_date_picker extends acf_field
|
|
92 |
|
93 |
function create_options( $field )
|
94 |
{
|
|
|
|
|
|
|
|
|
95 |
// vars
|
96 |
$key = $field['name'];
|
97 |
|
92 |
|
93 |
function create_options( $field )
|
94 |
{
|
95 |
+
// global
|
96 |
+
global $wp_locale;
|
97 |
+
|
98 |
+
|
99 |
// vars
|
100 |
$key = $field['name'];
|
101 |
|
core/fields/number.php
CHANGED
@@ -19,6 +19,9 @@ class acf_field_number extends acf_field
|
|
19 |
$this->label = __("Number",'acf');
|
20 |
$this->defaults = array(
|
21 |
'default_value' => '',
|
|
|
|
|
|
|
22 |
);
|
23 |
|
24 |
|
@@ -41,7 +44,19 @@ class acf_field_number extends acf_field
|
|
41 |
|
42 |
function create_field( $field )
|
43 |
{
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
|
@@ -64,22 +79,74 @@ class acf_field_number extends acf_field
|
|
64 |
$key = $field['name'];
|
65 |
|
66 |
?>
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
-
?>
|
81 |
-
</td>
|
82 |
-
</tr>
|
83 |
<?php
|
84 |
}
|
85 |
|
19 |
$this->label = __("Number",'acf');
|
20 |
$this->defaults = array(
|
21 |
'default_value' => '',
|
22 |
+
'min' => '',
|
23 |
+
'max' => '',
|
24 |
+
'step' => ''
|
25 |
);
|
26 |
|
27 |
|
44 |
|
45 |
function create_field( $field )
|
46 |
{
|
47 |
+
$o = array( 'id', 'class', 'min', 'max', 'step', 'name', 'value' );
|
48 |
+
|
49 |
+
$e = '<input type="number"';
|
50 |
+
|
51 |
+
foreach( $o as $k )
|
52 |
+
{
|
53 |
+
$e .= ' ' . $k . '="' . esc_attr( $field[ $k ] ) . '"';
|
54 |
+
}
|
55 |
+
|
56 |
+
$e .= ' />';
|
57 |
+
|
58 |
+
echo $e;
|
59 |
+
|
60 |
}
|
61 |
|
62 |
|
79 |
$key = $field['name'];
|
80 |
|
81 |
?>
|
82 |
+
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
83 |
+
<td class="label">
|
84 |
+
<label><?php _e("Default Value",'acf'); ?></label>
|
85 |
+
</td>
|
86 |
+
<td>
|
87 |
+
<?php
|
88 |
+
|
89 |
+
do_action('acf/create_field', array(
|
90 |
+
'type' => 'number',
|
91 |
+
'name' => 'fields['.$key.'][default_value]',
|
92 |
+
'value' => $field['default_value'],
|
93 |
+
));
|
94 |
+
|
95 |
+
?>
|
96 |
+
</td>
|
97 |
+
</tr>
|
98 |
+
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
99 |
+
<td class="label">
|
100 |
+
<label><?php _e("Min",'acf'); ?></label>
|
101 |
+
<p><?php _e("Specifies the minimum value allowed",'acf'); ?></p>
|
102 |
+
</td>
|
103 |
+
<td>
|
104 |
+
<?php
|
105 |
+
|
106 |
+
do_action('acf/create_field', array(
|
107 |
+
'type' => 'number',
|
108 |
+
'name' => 'fields['.$key.'][min]',
|
109 |
+
'value' => $field['min'],
|
110 |
+
));
|
111 |
+
|
112 |
+
?>
|
113 |
+
</td>
|
114 |
+
</tr>
|
115 |
+
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
116 |
+
<td class="label">
|
117 |
+
<label><?php _e("Max",'acf'); ?></label>
|
118 |
+
<p><?php _e("Specifies the maximim value allowed",'acf'); ?></p>
|
119 |
+
</td>
|
120 |
+
<td>
|
121 |
+
<?php
|
122 |
+
|
123 |
+
do_action('acf/create_field', array(
|
124 |
+
'type' => 'number',
|
125 |
+
'name' => 'fields['.$key.'][max]',
|
126 |
+
'value' => $field['max'],
|
127 |
+
));
|
128 |
+
|
129 |
+
?>
|
130 |
+
</td>
|
131 |
+
</tr>
|
132 |
+
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
133 |
+
<td class="label">
|
134 |
+
<label><?php _e("Step",'acf'); ?></label>
|
135 |
+
<p><?php _e("Specifies the legal number intervals",'acf'); ?></p>
|
136 |
+
</td>
|
137 |
+
<td>
|
138 |
+
<?php
|
139 |
+
|
140 |
+
do_action('acf/create_field', array(
|
141 |
+
'type' => 'number',
|
142 |
+
'name' => 'fields['.$key.'][step]',
|
143 |
+
'value' => $field['step'],
|
144 |
+
));
|
145 |
+
|
146 |
+
?>
|
147 |
+
</td>
|
148 |
+
</tr>
|
149 |
|
|
|
|
|
|
|
150 |
<?php
|
151 |
}
|
152 |
|
core/fields/radio.php
CHANGED
@@ -47,31 +47,40 @@ class acf_field_radio extends acf_field
|
|
47 |
// vars
|
48 |
echo '<ul class="radio_list ' . $field['class'] . ' ' . $field['layout'] . '">';
|
49 |
|
|
|
50 |
$i = 0;
|
51 |
if( $field['choices'] )
|
52 |
{
|
53 |
-
foreach($field['choices'] as $key => $value)
|
54 |
{
|
|
|
55 |
$i++;
|
|
|
|
|
56 |
|
57 |
// if there is no value and this is the first of the choices, select this on by default
|
58 |
-
|
59 |
-
if( $field['value'] !== 0 && !$field['value'] && $i == 1 )
|
60 |
{
|
61 |
-
$
|
|
|
|
|
|
|
62 |
}
|
63 |
-
|
64 |
-
$selected = '';
|
65 |
-
|
66 |
-
if($key == $field['value'])
|
67 |
{
|
68 |
-
$
|
|
|
|
|
|
|
69 |
}
|
70 |
|
|
|
|
|
71 |
echo '<li><label><input id="' . $field['id'] . '-' . $key . '" type="radio" name="' . $field['name'] . '" value="' . $key . '" ' . $selected . ' />' . $value . '</label></li>';
|
72 |
}
|
73 |
}
|
74 |
-
|
|
|
75 |
echo '</ul>';
|
76 |
}
|
77 |
|
47 |
// vars
|
48 |
echo '<ul class="radio_list ' . $field['class'] . ' ' . $field['layout'] . '">';
|
49 |
|
50 |
+
|
51 |
$i = 0;
|
52 |
if( $field['choices'] )
|
53 |
{
|
54 |
+
foreach( $field['choices'] as $key => $value )
|
55 |
{
|
56 |
+
// vars
|
57 |
$i++;
|
58 |
+
$selected = '';
|
59 |
+
|
60 |
|
61 |
// if there is no value and this is the first of the choices, select this on by default
|
62 |
+
if( $field['value'] === false )
|
|
|
63 |
{
|
64 |
+
if( $i === 1 )
|
65 |
+
{
|
66 |
+
$selected = 'checked="checked" data-checked="checked"';
|
67 |
+
}
|
68 |
}
|
69 |
+
else
|
|
|
|
|
|
|
70 |
{
|
71 |
+
if( strval($key) === strval($field['value']) )
|
72 |
+
{
|
73 |
+
$selected = 'checked="checked" data-checked="checked"';
|
74 |
+
}
|
75 |
}
|
76 |
|
77 |
+
|
78 |
+
// HTML
|
79 |
echo '<li><label><input id="' . $field['id'] . '-' . $key . '" type="radio" name="' . $field['name'] . '" value="' . $key . '" ' . $selected . ' />' . $value . '</label></li>';
|
80 |
}
|
81 |
}
|
82 |
+
|
83 |
+
|
84 |
echo '</ul>';
|
85 |
}
|
86 |
|
core/fields/relationship.php
CHANGED
@@ -398,7 +398,7 @@ class acf_field_relationship extends acf_field
|
|
398 |
<?php if(in_array( 'search', $field['filters']) ): ?>
|
399 |
<tr>
|
400 |
<th>
|
401 |
-
<label class="relationship_label" for="relationship_<?php echo $field['name']; ?>"><?php _e("Search",'acf');
|
402 |
<input class="relationship_search" type="text" id="relationship_<?php echo $field['name']; ?>" />
|
403 |
<!-- <div class="clear_relationship_search"></div> -->
|
404 |
</th>
|
@@ -411,7 +411,7 @@ class acf_field_relationship extends acf_field
|
|
411 |
|
412 |
// vars
|
413 |
$choices = array(
|
414 |
-
'all' =>
|
415 |
);
|
416 |
|
417 |
|
@@ -621,7 +621,7 @@ class acf_field_relationship extends acf_field
|
|
621 |
'name' => 'fields['.$key.'][result_elements]',
|
622 |
'value' => $field['result_elements'],
|
623 |
'choices' => array(
|
624 |
-
'featured_image' =>
|
625 |
'post_title' => __("Post Title",'acf'),
|
626 |
'post_type' => __("Post Type",'acf'),
|
627 |
),
|
398 |
<?php if(in_array( 'search', $field['filters']) ): ?>
|
399 |
<tr>
|
400 |
<th>
|
401 |
+
<label class="relationship_label" for="relationship_<?php echo $field['name']; ?>"><?php _e("Search...",'acf'); ?></label>
|
402 |
<input class="relationship_search" type="text" id="relationship_<?php echo $field['name']; ?>" />
|
403 |
<!-- <div class="clear_relationship_search"></div> -->
|
404 |
</th>
|
411 |
|
412 |
// vars
|
413 |
$choices = array(
|
414 |
+
'all' => __("Filter by post type",'acf')
|
415 |
);
|
416 |
|
417 |
|
621 |
'name' => 'fields['.$key.'][result_elements]',
|
622 |
'value' => $field['result_elements'],
|
623 |
'choices' => array(
|
624 |
+
'featured_image' => __("Featured Image",'acf'),
|
625 |
'post_title' => __("Post Title",'acf'),
|
626 |
'post_type' => __("Post Type",'acf'),
|
627 |
),
|
css/acf.css
CHANGED
@@ -131,6 +131,18 @@ body.custom-fields_page_acf-settings .wp-pointer-arrow {
|
|
131 |
margin-bottom: 20px;
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
#add-ons .add-on {
|
135 |
float: left;
|
136 |
width: 220px;
|
131 |
margin-bottom: 20px;
|
132 |
}
|
133 |
|
134 |
+
#add-ons .add-on-group {
|
135 |
+
margin-top: 20px;
|
136 |
+
padding-top: 20px;
|
137 |
+
border-top: #F5F5F5 solid 1px;
|
138 |
+
}
|
139 |
+
|
140 |
+
#add-ons .add-on-group:first-child {
|
141 |
+
margin-top: 0;
|
142 |
+
padding-top: 0;
|
143 |
+
border-top: 0 none;
|
144 |
+
}
|
145 |
+
|
146 |
#add-ons .add-on {
|
147 |
float: left;
|
148 |
width: 220px;
|
css/global.css
CHANGED
@@ -291,7 +291,8 @@ table.acf_input tbody tr td.label p {
|
|
291 |
color: #666;
|
292 |
}
|
293 |
|
294 |
-
table.acf_input input[type=text],
|
|
|
295 |
table.acf_input textarea,
|
296 |
table.acf_input select{
|
297 |
width: 99.95%;
|
@@ -307,7 +308,7 @@ table.acf_input select option {
|
|
307 |
padding: 3px;
|
308 |
}
|
309 |
|
310 |
-
table.acf_input input[type=text]:focus,
|
311 |
table.acf_input textarea:focus,
|
312 |
table.acf_input select:focus {
|
313 |
border-color:#98B6CB;
|
291 |
color: #666;
|
292 |
}
|
293 |
|
294 |
+
table.acf_input input[type="text"],
|
295 |
+
table.acf_input input[type="number"],
|
296 |
table.acf_input textarea,
|
297 |
table.acf_input select{
|
298 |
width: 99.95%;
|
308 |
padding: 3px;
|
309 |
}
|
310 |
|
311 |
+
table.acf_input input[type="text"]:focus,
|
312 |
table.acf_input textarea:focus,
|
313 |
table.acf_input select:focus {
|
314 |
border-color:#98B6CB;
|
js/input/validation.js
CHANGED
@@ -40,6 +40,16 @@
|
|
40 |
}
|
41 |
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
// text / textarea
|
44 |
if( div.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val() == "" )
|
45 |
{
|
40 |
}
|
41 |
|
42 |
|
43 |
+
// if is hidden by conditional logic on a parent tab, ignore
|
44 |
+
if( div.hasClass('acf-tab_group-hide') )
|
45 |
+
{
|
46 |
+
if( div.prevAll('.field_type-tab:first').hasClass('acf-conditional_logic-hide') )
|
47 |
+
{
|
48 |
+
return;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
// text / textarea
|
54 |
if( div.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val() == "" )
|
55 |
{
|
lang/acf-cs_CZ.mo
CHANGED
Binary file
|
lang/acf-cs_CZ.po
CHANGED
@@ -5,15 +5,15 @@ msgstr ""
|
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2012-08-11 08:33:20+00:00\n"
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
|
10 |
"Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
14 |
|
15 |
-
#: acf.php:281
|
16 |
-
#: core/views/meta_box_options.php:94
|
17 |
msgid "Custom Fields"
|
18 |
msgstr "Vlastní pole"
|
19 |
|
@@ -21,14 +21,12 @@ msgstr "Vlastní pole"
|
|
21 |
msgid "Field Groups"
|
22 |
msgstr "Skupiny polí"
|
23 |
|
24 |
-
#: acf.php:303
|
25 |
-
#: core/controllers/field_groups.php:283
|
26 |
#: core/controllers/upgrade.php:70
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Pokročilá vlastní pole"
|
29 |
|
30 |
-
#: acf.php:304
|
31 |
-
#: core/fields/flexible_content.php:325
|
32 |
msgid "Add New"
|
33 |
msgstr "Přidat nové"
|
34 |
|
@@ -60,8 +58,7 @@ msgstr "Nebyly nalezeny žádné skupiny polí"
|
|
60 |
msgid "No Field Groups found in Trash"
|
61 |
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
62 |
|
63 |
-
#: acf.php:346
|
64 |
-
#: acf.php:349
|
65 |
msgid "Field group updated."
|
66 |
msgstr "Skupina polí aktualizována"
|
67 |
|
@@ -98,9 +95,7 @@ msgstr "Skupina polí naplánována."
|
|
98 |
msgid "Field group draft updated."
|
99 |
msgstr "Koncept skupiny polí aktualizován."
|
100 |
|
101 |
-
#: acf.php:375
|
102 |
-
#: core/fields/gallery.php:66
|
103 |
-
#: core/fields/gallery.php:229
|
104 |
msgid "Title"
|
105 |
msgstr "Název"
|
106 |
|
@@ -120,8 +115,7 @@ msgstr "Střední"
|
|
120 |
msgid "Large"
|
121 |
msgstr "Velký"
|
122 |
|
123 |
-
#: acf.php:1602
|
124 |
-
#: core/fields/wysiwyg.php:85
|
125 |
msgid "Full"
|
126 |
msgstr "Plný"
|
127 |
|
@@ -129,8 +123,7 @@ msgstr "Plný"
|
|
129 |
msgid "No ACF groups selected"
|
130 |
msgstr "Nejsou vybrány žádné ACF skupiny"
|
131 |
|
132 |
-
#: core/controllers/field_group.php:148
|
133 |
-
#: core/controllers/field_groups.php:190
|
134 |
msgid "Fields"
|
135 |
msgstr "Pole"
|
136 |
|
@@ -142,10 +135,8 @@ msgstr "Umístění"
|
|
142 |
msgid "Add Fields to Edit Screens"
|
143 |
msgstr "Přidat pole na obrazovky úprav"
|
144 |
|
145 |
-
#: core/controllers/field_group.php:150
|
146 |
-
#: core/controllers/
|
147 |
-
#: core/controllers/options_page.php:62
|
148 |
-
#: core/controllers/options_page.php:74
|
149 |
#: core/views/meta_box_location.php:143
|
150 |
msgid "Options"
|
151 |
msgstr "Konfigurace"
|
@@ -166,34 +157,26 @@ msgstr "Podstránka"
|
|
166 |
msgid "Default Template"
|
167 |
msgstr "Výchozí šablona"
|
168 |
|
169 |
-
#: core/controllers/field_group.php:424
|
170 |
-
#: core/controllers/field_group.php:
|
171 |
-
#: core/
|
172 |
-
#: core/fields/
|
173 |
-
#: core/fields/post_object.php:222
|
174 |
-
#: core/fields/post_object.php:250
|
175 |
-
#: core/fields/relationship.php:320
|
176 |
-
#: core/fields/relationship.php:349
|
177 |
msgid "All"
|
178 |
msgstr "Vše"
|
179 |
|
180 |
-
#: core/controllers/field_groups.php:243
|
181 |
-
#: core/views/meta_box_options.php:50
|
182 |
msgid "Normal"
|
183 |
msgstr "Normální"
|
184 |
|
185 |
-
#: core/controllers/field_groups.php:244
|
186 |
-
#: core/views/meta_box_options.php:51
|
187 |
msgid "Side"
|
188 |
msgstr "Na straně"
|
189 |
|
190 |
-
#: core/controllers/field_groups.php:254
|
191 |
-
#: core/views/meta_box_options.php:70
|
192 |
msgid "Standard Metabox"
|
193 |
msgstr "Standardní metabox"
|
194 |
|
195 |
-
#: core/controllers/field_groups.php:255
|
196 |
-
#: core/views/meta_box_options.php:71
|
197 |
msgid "No Metabox"
|
198 |
msgstr "Žádný metabox"
|
199 |
|
@@ -210,8 +193,12 @@ msgid "Resources"
|
|
210 |
msgstr "Zdroje"
|
211 |
|
212 |
#: core/controllers/field_groups.php:289
|
213 |
-
msgid "
|
214 |
-
|
|
|
|
|
|
|
|
|
215 |
|
216 |
#: core/controllers/field_groups.php:290
|
217 |
msgid "Visit the ACF website"
|
@@ -245,8 +232,7 @@ msgstr "Upravit soubor"
|
|
245 |
msgid "Add Image to Field"
|
246 |
msgstr "Přidat obrázek do pole"
|
247 |
|
248 |
-
#: core/controllers/input.php:453
|
249 |
-
#: core/controllers/input.php:456
|
250 |
msgid "Edit Image"
|
251 |
msgstr "Upravit obrázek"
|
252 |
|
@@ -327,19 +313,20 @@ msgid "Activate Add-ons."
|
|
327 |
msgstr "Aktivovat přídavky."
|
328 |
|
329 |
#: core/controllers/settings.php:217
|
330 |
-
msgid "
|
331 |
-
|
|
|
|
|
|
|
|
|
332 |
|
333 |
#: core/controllers/settings.php:218
|
334 |
msgid "Find Add-ons"
|
335 |
msgstr "Hledat přídavky"
|
336 |
|
337 |
-
#: core/controllers/settings.php:225
|
338 |
-
#: core/fields/flexible_content.php:
|
339 |
-
#: core/fields/
|
340 |
-
#: core/fields/repeater.php:288
|
341 |
-
#: core/fields/repeater.php:364
|
342 |
-
#: core/views/meta_box_fields.php:63
|
343 |
#: core/views/meta_box_fields.php:136
|
344 |
msgid "Field Type"
|
345 |
msgstr "Typ pole"
|
@@ -356,31 +343,23 @@ msgstr "Aktivační kód"
|
|
356 |
msgid "Repeater Field"
|
357 |
msgstr "Opakovací pole"
|
358 |
|
359 |
-
#: core/controllers/settings.php:233
|
360 |
-
#: core/controllers/settings.php:
|
361 |
-
#: core/controllers/settings.php:271
|
362 |
-
#: core/controllers/settings.php:290
|
363 |
msgid "Active"
|
364 |
msgstr "Aktivní"
|
365 |
|
366 |
-
#: core/controllers/settings.php:233
|
367 |
-
#: core/controllers/settings.php:
|
368 |
-
#: core/controllers/settings.php:271
|
369 |
-
#: core/controllers/settings.php:290
|
370 |
msgid "Inactive"
|
371 |
msgstr "Neaktivní"
|
372 |
|
373 |
-
#: core/controllers/settings.php:239
|
374 |
-
#: core/controllers/settings.php:
|
375 |
-
#: core/controllers/settings.php:277
|
376 |
-
#: core/controllers/settings.php:296
|
377 |
msgid "Deactivate"
|
378 |
msgstr "Deaktivovat"
|
379 |
|
380 |
-
#: core/controllers/settings.php:245
|
381 |
-
#: core/controllers/settings.php:
|
382 |
-
#: core/controllers/settings.php:283
|
383 |
-
#: core/controllers/settings.php:302
|
384 |
msgid "Activate"
|
385 |
msgstr "Aktivovat"
|
386 |
|
@@ -392,8 +371,7 @@ msgstr "Pole flexibilního obsahu"
|
|
392 |
msgid "Gallery Field"
|
393 |
msgstr "Pole galerie"
|
394 |
|
395 |
-
#: core/controllers/settings.php:289
|
396 |
-
#: core/views/meta_box_location.php:74
|
397 |
msgid "Options Page"
|
398 |
msgstr "Stránka konfigurace"
|
399 |
|
@@ -402,11 +380,14 @@ msgid "Export Field Groups to XML"
|
|
402 |
msgstr "Exportovat skupiny polí do XML"
|
403 |
|
404 |
#: core/controllers/settings.php:315
|
405 |
-
msgid "
|
406 |
-
|
|
|
|
|
|
|
|
|
407 |
|
408 |
-
#: core/controllers/settings.php:316
|
409 |
-
#: core/controllers/settings.php:354
|
410 |
msgid "Instructions"
|
411 |
msgstr "Instrukce"
|
412 |
|
@@ -415,8 +396,12 @@ msgid "Import Field Groups"
|
|
415 |
msgstr "Importovat skupiny polí"
|
416 |
|
417 |
#: core/controllers/settings.php:319
|
418 |
-
msgid "
|
419 |
-
|
|
|
|
|
|
|
|
|
420 |
|
421 |
#: core/controllers/settings.php:321
|
422 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
@@ -458,39 +443,47 @@ msgstr "Exportujte skupiny polí do PHP"
|
|
458 |
msgid "ACF will create the PHP code to include in your theme."
|
459 |
msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony."
|
460 |
|
461 |
-
#: core/controllers/settings.php:356
|
462 |
-
#: core/controllers/settings.php:473
|
463 |
msgid "Register Field Groups"
|
464 |
msgstr "Registrovat skupiny polí"
|
465 |
|
466 |
-
#: core/controllers/settings.php:357
|
467 |
-
|
468 |
-
|
469 |
-
|
|
|
|
|
|
|
470 |
|
471 |
-
#: core/controllers/settings.php:358
|
472 |
-
|
473 |
-
|
474 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
|
476 |
#: core/controllers/settings.php:360
|
477 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
478 |
msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
|
479 |
|
480 |
-
#: core/controllers/settings.php:361
|
481 |
-
#: core/controllers/settings.php:477
|
482 |
msgid "Copy the PHP code generated"
|
483 |
msgstr "Zkopírujte vygenerovaný PHP kód"
|
484 |
|
485 |
-
#: core/controllers/settings.php:362
|
486 |
-
#: core/controllers/settings.php:478
|
487 |
msgid "Paste into your functions.php file"
|
488 |
msgstr "Vložte jej do vašeho souboru functions.php"
|
489 |
|
490 |
-
#: core/controllers/settings.php:363
|
491 |
-
#: core/controllers/settings.php:479
|
492 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
493 |
-
msgstr "
|
|
|
|
|
494 |
|
495 |
#: core/controllers/settings.php:382
|
496 |
msgid "Create PHP"
|
@@ -504,33 +497,45 @@ msgstr "Zpět na nastavení"
|
|
504 |
msgid ""
|
505 |
"/**\n"
|
506 |
" * Activate Add-ons\n"
|
507 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your
|
508 |
-
"
|
509 |
-
" *
|
510 |
-
"
|
|
|
|
|
|
|
|
|
511 |
" */"
|
512 |
msgstr ""
|
513 |
"/**\n"
|
514 |
" * Aktivovat přídavky\n"
|
515 |
-
" * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve
|
516 |
-
"
|
517 |
-
" *
|
518 |
-
"
|
|
|
|
|
|
|
|
|
519 |
" */"
|
520 |
|
521 |
#: core/controllers/settings.php:518
|
522 |
msgid ""
|
523 |
"/**\n"
|
524 |
" * Register field groups\n"
|
525 |
-
" * The register_field_group function accepts 1 array which holds the
|
526 |
-
"
|
|
|
|
|
527 |
" * This code must run every time the functions.php file is read\n"
|
528 |
" */"
|
529 |
msgstr ""
|
530 |
"/**\n"
|
531 |
" * Registrace skupiny polí\n"
|
532 |
-
" * Funkce register_field_group akceptuje pole, které obsahuje relevatní data
|
533 |
-
"
|
|
|
|
|
534 |
" * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
|
535 |
" */"
|
536 |
|
@@ -582,44 +587,37 @@ msgstr "Úprava možností pole 'taxonomie'"
|
|
582 |
msgid "Checkbox"
|
583 |
msgstr "Zaškrtávátko"
|
584 |
|
585 |
-
#: core/fields/checkbox.php:55
|
586 |
-
#: core/fields/radio.php:45
|
587 |
#: core/fields/select.php:50
|
588 |
msgid "No choices to choose from"
|
589 |
msgstr "Žádné možnosti, z nichž by bylo možné vybírat"
|
590 |
|
591 |
-
#: core/fields/checkbox.php:113
|
592 |
-
#: core/fields/radio.php:114
|
593 |
#: core/fields/select.php:164
|
594 |
msgid "Choices"
|
595 |
msgstr "Možnosti"
|
596 |
|
597 |
-
#: core/fields/checkbox.php:114
|
598 |
-
#: core/fields/radio.php:115
|
599 |
#: core/fields/select.php:165
|
600 |
msgid "Enter your choices one per line"
|
601 |
msgstr "Vložte vaše možnosti po jedné na řádek"
|
602 |
|
603 |
-
#: core/fields/checkbox.php:116
|
604 |
-
#: core/fields/radio.php:117
|
605 |
#: core/fields/select.php:167
|
606 |
msgid "Red"
|
607 |
msgstr "Červená"
|
608 |
|
609 |
-
#: core/fields/checkbox.php:117
|
610 |
-
#: core/fields/radio.php:118
|
611 |
#: core/fields/select.php:168
|
612 |
msgid "Blue"
|
613 |
msgstr "Modrá"
|
614 |
|
615 |
-
#: core/fields/checkbox.php:119
|
616 |
-
#: core/fields/radio.php:120
|
617 |
#: core/fields/select.php:170
|
618 |
msgid "red : Red"
|
619 |
msgstr "cervena : Červená"
|
620 |
|
621 |
-
#: core/fields/checkbox.php:120
|
622 |
-
#: core/fields/radio.php:121
|
623 |
#: core/fields/select.php:171
|
624 |
msgid "blue : Blue"
|
625 |
msgstr "modra: Modrá"
|
@@ -648,20 +646,15 @@ msgstr "Soubor"
|
|
648 |
msgid "File Updated."
|
649 |
msgstr "Soubor aktualizován."
|
650 |
|
651 |
-
#: core/fields/file.php:89
|
652 |
-
#: core/fields/
|
653 |
-
#: core/fields/
|
654 |
-
#: core/fields/gallery.php:281
|
655 |
-
#: core/fields/image.php:187
|
656 |
-
#: core/fields/repeater.php:314
|
657 |
#: core/views/meta_box_fields.php:87
|
658 |
msgid "Edit"
|
659 |
msgstr "Upravit"
|
660 |
|
661 |
-
#: core/fields/file.php:90
|
662 |
-
#: core/fields/gallery.php:
|
663 |
-
#: core/fields/gallery.php:280
|
664 |
-
#: core/fields/image.php:186
|
665 |
msgid "Remove"
|
666 |
msgstr "Odstranit"
|
667 |
|
@@ -673,8 +666,7 @@ msgstr "Nebyl vybrán žádný soubor"
|
|
673 |
msgid "Add File"
|
674 |
msgstr "Přidat soubor"
|
675 |
|
676 |
-
#: core/fields/file.php:224
|
677 |
-
#: core/fields/image.php:223
|
678 |
msgid "Return Value"
|
679 |
msgstr "Vrátit hodnotu"
|
680 |
|
@@ -686,8 +678,7 @@ msgstr "Adresa souboru"
|
|
686 |
msgid "Attachment ID"
|
687 |
msgstr "ID přílohy"
|
688 |
|
689 |
-
#: core/fields/file.php:268
|
690 |
-
#: core/fields/image.php:291
|
691 |
msgid "Media attachment updated."
|
692 |
msgstr "Příloha aktualizována."
|
693 |
|
@@ -711,19 +702,16 @@ msgstr "Aktualizovat soubor"
|
|
711 |
msgid "Flexible Content"
|
712 |
msgstr "Flexibilní obsah"
|
713 |
|
714 |
-
#: core/fields/flexible_content.php:38
|
715 |
-
#: core/fields/flexible_content.php:286
|
716 |
msgid "+ Add Row"
|
717 |
msgstr "+ Přidat řádek"
|
718 |
|
719 |
-
#: core/fields/flexible_content.php:313
|
720 |
-
#: core/fields/repeater.php:261
|
721 |
#: core/views/meta_box_fields.php:25
|
722 |
msgid "New Field"
|
723 |
msgstr "Nové pole"
|
724 |
|
725 |
-
#: core/fields/flexible_content.php:322
|
726 |
-
#: core/fields/radio.php:144
|
727 |
#: core/fields/repeater.php:440
|
728 |
msgid "Layout"
|
729 |
msgstr "Typ zobrazení"
|
@@ -744,10 +732,8 @@ msgstr "Přidat nový typ zobrazení"
|
|
744 |
msgid "Delete Layout"
|
745 |
msgstr "Smazat typ zobrazení"
|
746 |
|
747 |
-
#: core/fields/flexible_content.php:326
|
748 |
-
#: core/fields/
|
749 |
-
#: core/fields/repeater.php:317
|
750 |
-
#: core/views/meta_box_fields.php:90
|
751 |
msgid "Delete"
|
752 |
msgstr "Smazat"
|
753 |
|
@@ -767,120 +753,98 @@ msgstr "Zobrazovat"
|
|
767 |
msgid "Table"
|
768 |
msgstr "Tabulka"
|
769 |
|
770 |
-
#: core/fields/flexible_content.php:364
|
771 |
-
#: core/fields/repeater.php:451
|
772 |
msgid "Row"
|
773 |
msgstr "Řádek"
|
774 |
|
775 |
-
#: core/fields/flexible_content.php:377
|
776 |
-
#: core/fields/repeater.php:285
|
777 |
#: core/views/meta_box_fields.php:60
|
778 |
msgid "Field Order"
|
779 |
msgstr "Pořadí pole"
|
780 |
|
781 |
-
#: core/fields/flexible_content.php:378
|
782 |
-
#: core/fields/
|
783 |
-
#: core/
|
784 |
-
#: core/fields/repeater.php:333
|
785 |
-
#: core/views/meta_box_fields.php:61
|
786 |
-
#: core/views/meta_box_fields.php:105
|
787 |
msgid "Field Label"
|
788 |
msgstr "Název pole"
|
789 |
|
790 |
-
#: core/fields/flexible_content.php:379
|
791 |
-
#: core/fields/
|
792 |
-
#: core/
|
793 |
-
#: core/fields/repeater.php:349
|
794 |
-
#: core/views/meta_box_fields.php:62
|
795 |
-
#: core/views/meta_box_fields.php:121
|
796 |
msgid "Field Name"
|
797 |
msgstr "Jméno pole"
|
798 |
|
799 |
-
#: core/fields/flexible_content.php:388
|
800 |
-
|
801 |
-
|
802 |
-
msgstr "
|
|
|
|
|
803 |
|
804 |
-
#: core/fields/flexible_content.php:404
|
805 |
-
#: core/fields/
|
806 |
-
#: core/
|
807 |
-
#: core/fields/repeater.php:314
|
808 |
-
#: core/views/meta_box_fields.php:84
|
809 |
-
#: core/views/meta_box_fields.php:87
|
810 |
msgid "Edit this Field"
|
811 |
msgstr "Upravit toto pole"
|
812 |
|
813 |
-
#: core/fields/flexible_content.php:408
|
814 |
-
#: core/fields/repeater.php:315
|
815 |
#: core/views/meta_box_fields.php:88
|
816 |
msgid "Read documentation for this field"
|
817 |
msgstr "Přečtěte si dokumentaci pro toto pole"
|
818 |
|
819 |
-
#: core/fields/flexible_content.php:408
|
820 |
-
#: core/fields/repeater.php:315
|
821 |
#: core/views/meta_box_fields.php:88
|
822 |
msgid "Docs"
|
823 |
msgstr "Dokumenty"
|
824 |
|
825 |
-
#: core/fields/flexible_content.php:409
|
826 |
-
#: core/fields/repeater.php:316
|
827 |
#: core/views/meta_box_fields.php:89
|
828 |
msgid "Duplicate this Field"
|
829 |
msgstr "Duplikovat toto pole"
|
830 |
|
831 |
-
#: core/fields/flexible_content.php:409
|
832 |
-
#: core/fields/repeater.php:316
|
833 |
#: core/views/meta_box_fields.php:89
|
834 |
msgid "Duplicate"
|
835 |
msgstr "Duplikovat"
|
836 |
|
837 |
-
#: core/fields/flexible_content.php:410
|
838 |
-
#: core/fields/repeater.php:317
|
839 |
#: core/views/meta_box_fields.php:90
|
840 |
msgid "Delete this Field"
|
841 |
msgstr "Smazat toto pole"
|
842 |
|
843 |
-
#: core/fields/flexible_content.php:426
|
844 |
-
#: core/fields/repeater.php:334
|
845 |
#: core/views/meta_box_fields.php:106
|
846 |
msgid "This is the name which will appear on the EDIT page"
|
847 |
msgstr "Toto je jméno, které se zobrazí na stránce úprav"
|
848 |
|
849 |
-
#: core/fields/flexible_content.php:442
|
850 |
-
#: core/fields/repeater.php:350
|
851 |
#: core/views/meta_box_fields.php:122
|
852 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
853 |
msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny."
|
854 |
|
855 |
-
#: core/fields/flexible_content.php:476
|
856 |
-
#: core/fields/repeater.php:384
|
857 |
msgid "Save Field"
|
858 |
msgstr "Uložit pole"
|
859 |
|
860 |
-
#: core/fields/flexible_content.php:481
|
861 |
-
#: core/fields/repeater.php:389
|
862 |
#: core/views/meta_box_fields.php:188
|
863 |
msgid "Close Field"
|
864 |
msgstr "Zavřít pole"
|
865 |
|
866 |
-
#: core/fields/flexible_content.php:481
|
867 |
-
#: core/fields/repeater.php:389
|
868 |
msgid "Close Sub Field"
|
869 |
msgstr "Zavřít podpole"
|
870 |
|
871 |
-
#: core/fields/flexible_content.php:495
|
872 |
-
#: core/fields/repeater.php:404
|
873 |
#: core/views/meta_box_fields.php:201
|
874 |
msgid "Drag and drop to reorder"
|
875 |
msgstr "Chytněte a táhněte pro změnu pořadí"
|
876 |
|
877 |
-
#: core/fields/flexible_content.php:496
|
878 |
-
#: core/fields/repeater.php:405
|
879 |
msgid "+ Add Sub Field"
|
880 |
msgstr "+ Přidat podpole"
|
881 |
|
882 |
-
#: core/fields/flexible_content.php:503
|
883 |
-
#: core/fields/repeater.php:459
|
884 |
msgid "Button Label"
|
885 |
msgstr "Nápis tlačítka"
|
886 |
|
@@ -888,23 +852,19 @@ msgstr "Nápis tlačítka"
|
|
888 |
msgid "Gallery"
|
889 |
msgstr "Galerie"
|
890 |
|
891 |
-
#: core/fields/gallery.php:70
|
892 |
-
#: core/fields/gallery.php:233
|
893 |
msgid "Alternate Text"
|
894 |
msgstr "Alternativní text"
|
895 |
|
896 |
-
#: core/fields/gallery.php:74
|
897 |
-
#: core/fields/gallery.php:237
|
898 |
msgid "Caption"
|
899 |
msgstr "Popisek"
|
900 |
|
901 |
-
#: core/fields/gallery.php:78
|
902 |
-
#: core/fields/gallery.php:241
|
903 |
msgid "Description"
|
904 |
msgstr "Popis"
|
905 |
|
906 |
-
#: core/fields/gallery.php:117
|
907 |
-
#: core/fields/image.php:243
|
908 |
msgid "Preview Size"
|
909 |
msgstr "Velikost náhledu"
|
910 |
|
@@ -916,8 +876,7 @@ msgstr "Je doporučen náhled"
|
|
916 |
msgid "Image Updated"
|
917 |
msgstr "Obrázek aktualizován"
|
918 |
|
919 |
-
#: core/fields/gallery.php:262
|
920 |
-
#: core/fields/gallery.php:642
|
921 |
#: core/fields/image.php:193
|
922 |
msgid "Add Image"
|
923 |
msgstr "Přidat obrázek"
|
@@ -930,8 +889,7 @@ msgstr "Mřížka"
|
|
930 |
msgid "List"
|
931 |
msgstr "Seznam"
|
932 |
|
933 |
-
#: core/fields/gallery.php:266
|
934 |
-
#: core/fields/image.php:428
|
935 |
msgid "No images selected"
|
936 |
msgstr "Není vybrán žádný obrázek"
|
937 |
|
@@ -951,8 +909,7 @@ msgstr "Obrázek v galerii už existuje"
|
|
951 |
msgid "Image Added"
|
952 |
msgstr "Obrázek přidán"
|
953 |
|
954 |
-
#: core/fields/gallery.php:645
|
955 |
-
#: core/fields/image.php:556
|
956 |
msgid "Update Image"
|
957 |
msgstr "Aktualizovat obrázek"
|
958 |
|
@@ -992,43 +949,31 @@ msgstr "Vybrat obrázek"
|
|
992 |
msgid "Page Link"
|
993 |
msgstr "Odkaz stránky"
|
994 |
|
995 |
-
#: core/fields/page_link.php:70
|
996 |
-
#: core/fields/
|
997 |
-
#: core/fields/relationship.php:314
|
998 |
-
#: core/views/meta_box_location.php:48
|
999 |
msgid "Post Type"
|
1000 |
msgstr "Typ příspěvku"
|
1001 |
|
1002 |
-
#: core/fields/page_link.php:98
|
1003 |
-
#: core/fields/post_object.php:267
|
1004 |
#: core/fields/select.php:194
|
1005 |
msgid "Allow Null?"
|
1006 |
msgstr "Povolit prázdné?"
|
1007 |
|
1008 |
-
#: core/fields/page_link.php:107
|
1009 |
-
#: core/fields/
|
1010 |
-
#: core/fields/
|
1011 |
-
#: core/fields/
|
1012 |
-
#: core/fields/select.php:203
|
1013 |
-
#: core/fields/select.php:222
|
1014 |
-
#: core/fields/wysiwyg.php:104
|
1015 |
-
#: core/views/meta_box_fields.php:170
|
1016 |
msgid "Yes"
|
1017 |
msgstr "Ano"
|
1018 |
|
1019 |
-
#: core/fields/page_link.php:108
|
1020 |
-
#: core/fields/
|
1021 |
-
#: core/fields/
|
1022 |
-
#: core/fields/
|
1023 |
-
#: core/fields/select.php:204
|
1024 |
-
#: core/fields/select.php:223
|
1025 |
-
#: core/fields/wysiwyg.php:105
|
1026 |
-
#: core/views/meta_box_fields.php:171
|
1027 |
msgid "No"
|
1028 |
msgstr "Ne"
|
1029 |
|
1030 |
-
#: core/fields/page_link.php:117
|
1031 |
-
#: core/fields/post_object.php:286
|
1032 |
#: core/fields/select.php:213
|
1033 |
msgid "Select multiple values?"
|
1034 |
msgstr "Vybrat více hodnot?"
|
@@ -1037,8 +982,7 @@ msgstr "Vybrat více hodnot?"
|
|
1037 |
msgid "Post Object"
|
1038 |
msgstr "Objekt příspěvku"
|
1039 |
|
1040 |
-
#: core/fields/post_object.php:244
|
1041 |
-
#: core/fields/relationship.php:343
|
1042 |
msgid "Filter from Taxonomy"
|
1043 |
msgstr "Filtrovat z taxonomie"
|
1044 |
|
@@ -1046,10 +990,8 @@ msgstr "Filtrovat z taxonomie"
|
|
1046 |
msgid "Radio Button"
|
1047 |
msgstr "Přepínač"
|
1048 |
|
1049 |
-
#: core/fields/radio.php:130
|
1050 |
-
#: core/fields/
|
1051 |
-
#: core/fields/text.php:61
|
1052 |
-
#: core/fields/textarea.php:62
|
1053 |
msgid "Default Value"
|
1054 |
msgstr "Výchozí hodnota"
|
1055 |
|
@@ -1077,8 +1019,7 @@ msgstr "Maximum příspěvků"
|
|
1077 |
msgid "Repeater"
|
1078 |
msgstr "Opakovač"
|
1079 |
|
1080 |
-
#: core/fields/repeater.php:66
|
1081 |
-
#: core/fields/repeater.php:248
|
1082 |
msgid "Add Row"
|
1083 |
msgstr "Přidat řádek"
|
1084 |
|
@@ -1106,8 +1047,7 @@ msgstr "Vybrat"
|
|
1106 |
msgid "Text"
|
1107 |
msgstr "Text"
|
1108 |
|
1109 |
-
#: core/fields/text.php:75
|
1110 |
-
#: core/fields/textarea.php:76
|
1111 |
msgid "Formatting"
|
1112 |
msgstr "Formátování"
|
1113 |
|
@@ -1115,13 +1055,11 @@ msgstr "Formátování"
|
|
1115 |
msgid "Define how to render html tags"
|
1116 |
msgstr "Definujte způsob vypisování HTML tagů"
|
1117 |
|
1118 |
-
#: core/fields/text.php:85
|
1119 |
-
#: core/fields/textarea.php:86
|
1120 |
msgid "None"
|
1121 |
msgstr "Žádný"
|
1122 |
|
1123 |
-
#: core/fields/text.php:86
|
1124 |
-
#: core/fields/textarea.php:88
|
1125 |
msgid "HTML"
|
1126 |
msgstr "HTML"
|
1127 |
|
@@ -1157,8 +1095,7 @@ msgstr "Wysiwyg Editor"
|
|
1157 |
msgid "Toolbar"
|
1158 |
msgstr "Lišta nástrojů"
|
1159 |
|
1160 |
-
#: core/fields/wysiwyg.php:86
|
1161 |
-
#: core/views/meta_box_location.php:47
|
1162 |
msgid "Basic"
|
1163 |
msgstr "Základní"
|
1164 |
|
@@ -1175,8 +1112,12 @@ msgid "Move to trash. Are you sure?"
|
|
1175 |
msgstr "Přesunout do koše. Jste si jistí?"
|
1176 |
|
1177 |
#: core/views/meta_box_fields.php:73
|
1178 |
-
msgid "
|
1179 |
-
|
|
|
|
|
|
|
|
|
1180 |
|
1181 |
#: core/views/meta_box_fields.php:149
|
1182 |
msgid "Field Instructions"
|
@@ -1199,8 +1140,12 @@ msgid "Rules"
|
|
1199 |
msgstr "Pravidla"
|
1200 |
|
1201 |
#: core/views/meta_box_location.php:36
|
1202 |
-
msgid "
|
1203 |
-
|
|
|
|
|
|
|
|
|
1204 |
|
1205 |
#: core/views/meta_box_location.php:49
|
1206 |
msgid "Logged in User Type"
|
@@ -1296,7 +1241,8 @@ msgstr "Pořadí"
|
|
1296 |
|
1297 |
#: core/views/meta_box_options.php:24
|
1298 |
msgid "Field groups are created in order <br />from lowest to highest."
|
1299 |
-
msgstr "
|
|
|
1300 |
|
1301 |
#: core/views/meta_box_options.php:40
|
1302 |
msgid "Position"
|
@@ -1315,8 +1261,12 @@ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
|
1315 |
msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
|
1316 |
|
1317 |
#: core/views/meta_box_options.php:82
|
1318 |
-
msgid "
|
1319 |
-
|
|
|
|
|
|
|
|
|
1320 |
|
1321 |
#: core/views/meta_box_options.php:92
|
1322 |
msgid "Content Editor"
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2012-08-11 08:33:20+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 18:58-0600\n"
|
9 |
"Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
|
10 |
"Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
|
16 |
+
#: acf.php:281 core/views/meta_box_options.php:94
|
|
|
17 |
msgid "Custom Fields"
|
18 |
msgstr "Vlastní pole"
|
19 |
|
21 |
msgid "Field Groups"
|
22 |
msgstr "Skupiny polí"
|
23 |
|
24 |
+
#: acf.php:303 core/controllers/field_groups.php:283
|
|
|
25 |
#: core/controllers/upgrade.php:70
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr "Pokročilá vlastní pole"
|
28 |
|
29 |
+
#: acf.php:304 core/fields/flexible_content.php:325
|
|
|
30 |
msgid "Add New"
|
31 |
msgstr "Přidat nové"
|
32 |
|
58 |
msgid "No Field Groups found in Trash"
|
59 |
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
60 |
|
61 |
+
#: acf.php:346 acf.php:349
|
|
|
62 |
msgid "Field group updated."
|
63 |
msgstr "Skupina polí aktualizována"
|
64 |
|
95 |
msgid "Field group draft updated."
|
96 |
msgstr "Koncept skupiny polí aktualizován."
|
97 |
|
98 |
+
#: acf.php:375 core/fields/gallery.php:66 core/fields/gallery.php:229
|
|
|
|
|
99 |
msgid "Title"
|
100 |
msgstr "Název"
|
101 |
|
115 |
msgid "Large"
|
116 |
msgstr "Velký"
|
117 |
|
118 |
+
#: acf.php:1602 core/fields/wysiwyg.php:85
|
|
|
119 |
msgid "Full"
|
120 |
msgstr "Plný"
|
121 |
|
123 |
msgid "No ACF groups selected"
|
124 |
msgstr "Nejsou vybrány žádné ACF skupiny"
|
125 |
|
126 |
+
#: core/controllers/field_group.php:148 core/controllers/field_groups.php:190
|
|
|
127 |
msgid "Fields"
|
128 |
msgstr "Pole"
|
129 |
|
135 |
msgid "Add Fields to Edit Screens"
|
136 |
msgstr "Přidat pole na obrazovky úprav"
|
137 |
|
138 |
+
#: core/controllers/field_group.php:150 core/controllers/field_group.php:400
|
139 |
+
#: core/controllers/options_page.php:62 core/controllers/options_page.php:74
|
|
|
|
|
140 |
#: core/views/meta_box_location.php:143
|
141 |
msgid "Options"
|
142 |
msgstr "Konfigurace"
|
157 |
msgid "Default Template"
|
158 |
msgstr "Výchozí šablona"
|
159 |
|
160 |
+
#: core/controllers/field_group.php:424 core/controllers/field_group.php:445
|
161 |
+
#: core/controllers/field_group.php:452 core/fields/page_link.php:76
|
162 |
+
#: core/fields/post_object.php:222 core/fields/post_object.php:250
|
163 |
+
#: core/fields/relationship.php:320 core/fields/relationship.php:349
|
|
|
|
|
|
|
|
|
164 |
msgid "All"
|
165 |
msgstr "Vše"
|
166 |
|
167 |
+
#: core/controllers/field_groups.php:243 core/views/meta_box_options.php:50
|
|
|
168 |
msgid "Normal"
|
169 |
msgstr "Normální"
|
170 |
|
171 |
+
#: core/controllers/field_groups.php:244 core/views/meta_box_options.php:51
|
|
|
172 |
msgid "Side"
|
173 |
msgstr "Na straně"
|
174 |
|
175 |
+
#: core/controllers/field_groups.php:254 core/views/meta_box_options.php:70
|
|
|
176 |
msgid "Standard Metabox"
|
177 |
msgstr "Standardní metabox"
|
178 |
|
179 |
+
#: core/controllers/field_groups.php:255 core/views/meta_box_options.php:71
|
|
|
180 |
msgid "No Metabox"
|
181 |
msgstr "Žádný metabox"
|
182 |
|
193 |
msgstr "Zdroje"
|
194 |
|
195 |
#: core/controllers/field_groups.php:289
|
196 |
+
msgid ""
|
197 |
+
"Read documentation, learn the functions and find some tips & tricks for "
|
198 |
+
"your next web project."
|
199 |
+
msgstr ""
|
200 |
+
"Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & "
|
201 |
+
"triky pro váš další webový projekt."
|
202 |
|
203 |
#: core/controllers/field_groups.php:290
|
204 |
msgid "Visit the ACF website"
|
232 |
msgid "Add Image to Field"
|
233 |
msgstr "Přidat obrázek do pole"
|
234 |
|
235 |
+
#: core/controllers/input.php:453 core/controllers/input.php:456
|
|
|
236 |
msgid "Edit Image"
|
237 |
msgstr "Upravit obrázek"
|
238 |
|
313 |
msgstr "Aktivovat přídavky."
|
314 |
|
315 |
#: core/controllers/settings.php:217
|
316 |
+
msgid ""
|
317 |
+
"Add-ons can be unlocked by purchasing a license key. Each key can be used on "
|
318 |
+
"multiple sites."
|
319 |
+
msgstr ""
|
320 |
+
"Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být "
|
321 |
+
"použit na více webech."
|
322 |
|
323 |
#: core/controllers/settings.php:218
|
324 |
msgid "Find Add-ons"
|
325 |
msgstr "Hledat přídavky"
|
326 |
|
327 |
+
#: core/controllers/settings.php:225 core/fields/flexible_content.php:380
|
328 |
+
#: core/fields/flexible_content.php:456 core/fields/repeater.php:288
|
329 |
+
#: core/fields/repeater.php:364 core/views/meta_box_fields.php:63
|
|
|
|
|
|
|
330 |
#: core/views/meta_box_fields.php:136
|
331 |
msgid "Field Type"
|
332 |
msgstr "Typ pole"
|
343 |
msgid "Repeater Field"
|
344 |
msgstr "Opakovací pole"
|
345 |
|
346 |
+
#: core/controllers/settings.php:233 core/controllers/settings.php:252
|
347 |
+
#: core/controllers/settings.php:271 core/controllers/settings.php:290
|
|
|
|
|
348 |
msgid "Active"
|
349 |
msgstr "Aktivní"
|
350 |
|
351 |
+
#: core/controllers/settings.php:233 core/controllers/settings.php:252
|
352 |
+
#: core/controllers/settings.php:271 core/controllers/settings.php:290
|
|
|
|
|
353 |
msgid "Inactive"
|
354 |
msgstr "Neaktivní"
|
355 |
|
356 |
+
#: core/controllers/settings.php:239 core/controllers/settings.php:258
|
357 |
+
#: core/controllers/settings.php:277 core/controllers/settings.php:296
|
|
|
|
|
358 |
msgid "Deactivate"
|
359 |
msgstr "Deaktivovat"
|
360 |
|
361 |
+
#: core/controllers/settings.php:245 core/controllers/settings.php:264
|
362 |
+
#: core/controllers/settings.php:283 core/controllers/settings.php:302
|
|
|
|
|
363 |
msgid "Activate"
|
364 |
msgstr "Aktivovat"
|
365 |
|
371 |
msgid "Gallery Field"
|
372 |
msgstr "Pole galerie"
|
373 |
|
374 |
+
#: core/controllers/settings.php:289 core/views/meta_box_location.php:74
|
|
|
375 |
msgid "Options Page"
|
376 |
msgstr "Stránka konfigurace"
|
377 |
|
380 |
msgstr "Exportovat skupiny polí do XML"
|
381 |
|
382 |
#: core/controllers/settings.php:315
|
383 |
+
msgid ""
|
384 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
385 |
+
"import plugin."
|
386 |
+
msgstr ""
|
387 |
+
"ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním "
|
388 |
+
"importním pluginem WP."
|
389 |
|
390 |
+
#: core/controllers/settings.php:316 core/controllers/settings.php:354
|
|
|
391 |
msgid "Instructions"
|
392 |
msgstr "Instrukce"
|
393 |
|
396 |
msgstr "Importovat skupiny polí"
|
397 |
|
398 |
#: core/controllers/settings.php:319
|
399 |
+
msgid ""
|
400 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
401 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
402 |
+
msgstr ""
|
403 |
+
"Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných "
|
404 |
+
"skupin polí. Toto je užitečné pro přesouvání skupin polí mezi WP weby."
|
405 |
|
406 |
#: core/controllers/settings.php:321
|
407 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
443 |
msgid "ACF will create the PHP code to include in your theme."
|
444 |
msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony."
|
445 |
|
446 |
+
#: core/controllers/settings.php:356 core/controllers/settings.php:473
|
|
|
447 |
msgid "Register Field Groups"
|
448 |
msgstr "Registrovat skupiny polí"
|
449 |
|
450 |
+
#: core/controllers/settings.php:357 core/controllers/settings.php:474
|
451 |
+
msgid ""
|
452 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
453 |
+
"groups. This is useful for including fields in themes."
|
454 |
+
msgstr ""
|
455 |
+
"Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu upravitelných "
|
456 |
+
"skupin polí. Toto je užitečné při používání polí v šablonách."
|
457 |
|
458 |
+
#: core/controllers/settings.php:358 core/controllers/settings.php:475
|
459 |
+
msgid ""
|
460 |
+
"Please note that if you export and register field groups within the same WP, "
|
461 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
462 |
+
"the original field group to the trash or remove the code from your functions."
|
463 |
+
"php file."
|
464 |
+
msgstr ""
|
465 |
+
"Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí v "
|
466 |
+
"rámci stejného WordPressu, uvidíte na obrazovkách úprav duplikovaná pole. "
|
467 |
+
"Pro nápravu prosím přesuňte původní skupinu polí do koše nebo odstraňte kód "
|
468 |
+
"ze souboru functions.php."
|
469 |
|
470 |
#: core/controllers/settings.php:360
|
471 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
472 |
msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
|
473 |
|
474 |
+
#: core/controllers/settings.php:361 core/controllers/settings.php:477
|
|
|
475 |
msgid "Copy the PHP code generated"
|
476 |
msgstr "Zkopírujte vygenerovaný PHP kód"
|
477 |
|
478 |
+
#: core/controllers/settings.php:362 core/controllers/settings.php:478
|
|
|
479 |
msgid "Paste into your functions.php file"
|
480 |
msgstr "Vložte jej do vašeho souboru functions.php"
|
481 |
|
482 |
+
#: core/controllers/settings.php:363 core/controllers/settings.php:479
|
|
|
483 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
484 |
+
msgstr ""
|
485 |
+
"K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika "
|
486 |
+
"řádcích."
|
487 |
|
488 |
#: core/controllers/settings.php:382
|
489 |
msgid "Create PHP"
|
497 |
msgid ""
|
498 |
"/**\n"
|
499 |
" * Activate Add-ons\n"
|
500 |
+
" * Here you can enter your activation codes to unlock Add-ons to use in your "
|
501 |
+
"theme. \n"
|
502 |
+
" * Since all activation codes are multi-site licenses, you are allowed to "
|
503 |
+
"include your key in premium themes. \n"
|
504 |
+
" * Use the commented out code to update the database with your activation "
|
505 |
+
"code. \n"
|
506 |
+
" * You may place this code inside an IF statement that only runs on theme "
|
507 |
+
"activation.\n"
|
508 |
" */"
|
509 |
msgstr ""
|
510 |
"/**\n"
|
511 |
" * Aktivovat přídavky\n"
|
512 |
+
" * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve "
|
513 |
+
"vaší šabloně. \n"
|
514 |
+
" * Jelikož jsou všechny aktivační kódy licencovány pro použití na více "
|
515 |
+
"webech, můžete je použít ve vaší premium šabloně. \n"
|
516 |
+
" * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním "
|
517 |
+
"kódem. \n"
|
518 |
+
" * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po "
|
519 |
+
"aktivaci šablony.\n"
|
520 |
" */"
|
521 |
|
522 |
#: core/controllers/settings.php:518
|
523 |
msgid ""
|
524 |
"/**\n"
|
525 |
" * Register field groups\n"
|
526 |
+
" * The register_field_group function accepts 1 array which holds the "
|
527 |
+
"relevant data to register a field group\n"
|
528 |
+
" * You may edit the array as you see fit. However, this may result in errors "
|
529 |
+
"if the array is not compatible with ACF\n"
|
530 |
" * This code must run every time the functions.php file is read\n"
|
531 |
" */"
|
532 |
msgstr ""
|
533 |
"/**\n"
|
534 |
" * Registrace skupiny polí\n"
|
535 |
+
" * Funkce register_field_group akceptuje pole, které obsahuje relevatní data "
|
536 |
+
"k registraci skupiny polí\n"
|
537 |
+
" * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole "
|
538 |
+
"nekompatibilní s ACF\n"
|
539 |
" * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
|
540 |
" */"
|
541 |
|
587 |
msgid "Checkbox"
|
588 |
msgstr "Zaškrtávátko"
|
589 |
|
590 |
+
#: core/fields/checkbox.php:55 core/fields/radio.php:45
|
|
|
591 |
#: core/fields/select.php:50
|
592 |
msgid "No choices to choose from"
|
593 |
msgstr "Žádné možnosti, z nichž by bylo možné vybírat"
|
594 |
|
595 |
+
#: core/fields/checkbox.php:113 core/fields/radio.php:114
|
|
|
596 |
#: core/fields/select.php:164
|
597 |
msgid "Choices"
|
598 |
msgstr "Možnosti"
|
599 |
|
600 |
+
#: core/fields/checkbox.php:114 core/fields/radio.php:115
|
|
|
601 |
#: core/fields/select.php:165
|
602 |
msgid "Enter your choices one per line"
|
603 |
msgstr "Vložte vaše možnosti po jedné na řádek"
|
604 |
|
605 |
+
#: core/fields/checkbox.php:116 core/fields/radio.php:117
|
|
|
606 |
#: core/fields/select.php:167
|
607 |
msgid "Red"
|
608 |
msgstr "Červená"
|
609 |
|
610 |
+
#: core/fields/checkbox.php:117 core/fields/radio.php:118
|
|
|
611 |
#: core/fields/select.php:168
|
612 |
msgid "Blue"
|
613 |
msgstr "Modrá"
|
614 |
|
615 |
+
#: core/fields/checkbox.php:119 core/fields/radio.php:120
|
|
|
616 |
#: core/fields/select.php:170
|
617 |
msgid "red : Red"
|
618 |
msgstr "cervena : Červená"
|
619 |
|
620 |
+
#: core/fields/checkbox.php:120 core/fields/radio.php:121
|
|
|
621 |
#: core/fields/select.php:171
|
622 |
msgid "blue : Blue"
|
623 |
msgstr "modra: Modrá"
|
646 |
msgid "File Updated."
|
647 |
msgstr "Soubor aktualizován."
|
648 |
|
649 |
+
#: core/fields/file.php:89 core/fields/flexible_content.php:407
|
650 |
+
#: core/fields/gallery.php:251 core/fields/gallery.php:281
|
651 |
+
#: core/fields/image.php:187 core/fields/repeater.php:314
|
|
|
|
|
|
|
652 |
#: core/views/meta_box_fields.php:87
|
653 |
msgid "Edit"
|
654 |
msgstr "Upravit"
|
655 |
|
656 |
+
#: core/fields/file.php:90 core/fields/gallery.php:250
|
657 |
+
#: core/fields/gallery.php:280 core/fields/image.php:186
|
|
|
|
|
658 |
msgid "Remove"
|
659 |
msgstr "Odstranit"
|
660 |
|
666 |
msgid "Add File"
|
667 |
msgstr "Přidat soubor"
|
668 |
|
669 |
+
#: core/fields/file.php:224 core/fields/image.php:223
|
|
|
670 |
msgid "Return Value"
|
671 |
msgstr "Vrátit hodnotu"
|
672 |
|
678 |
msgid "Attachment ID"
|
679 |
msgstr "ID přílohy"
|
680 |
|
681 |
+
#: core/fields/file.php:268 core/fields/image.php:291
|
|
|
682 |
msgid "Media attachment updated."
|
683 |
msgstr "Příloha aktualizována."
|
684 |
|
702 |
msgid "Flexible Content"
|
703 |
msgstr "Flexibilní obsah"
|
704 |
|
705 |
+
#: core/fields/flexible_content.php:38 core/fields/flexible_content.php:286
|
|
|
706 |
msgid "+ Add Row"
|
707 |
msgstr "+ Přidat řádek"
|
708 |
|
709 |
+
#: core/fields/flexible_content.php:313 core/fields/repeater.php:261
|
|
|
710 |
#: core/views/meta_box_fields.php:25
|
711 |
msgid "New Field"
|
712 |
msgstr "Nové pole"
|
713 |
|
714 |
+
#: core/fields/flexible_content.php:322 core/fields/radio.php:144
|
|
|
715 |
#: core/fields/repeater.php:440
|
716 |
msgid "Layout"
|
717 |
msgstr "Typ zobrazení"
|
732 |
msgid "Delete Layout"
|
733 |
msgstr "Smazat typ zobrazení"
|
734 |
|
735 |
+
#: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
|
736 |
+
#: core/fields/repeater.php:317 core/views/meta_box_fields.php:90
|
|
|
|
|
737 |
msgid "Delete"
|
738 |
msgstr "Smazat"
|
739 |
|
753 |
msgid "Table"
|
754 |
msgstr "Tabulka"
|
755 |
|
756 |
+
#: core/fields/flexible_content.php:364 core/fields/repeater.php:451
|
|
|
757 |
msgid "Row"
|
758 |
msgstr "Řádek"
|
759 |
|
760 |
+
#: core/fields/flexible_content.php:377 core/fields/repeater.php:285
|
|
|
761 |
#: core/views/meta_box_fields.php:60
|
762 |
msgid "Field Order"
|
763 |
msgstr "Pořadí pole"
|
764 |
|
765 |
+
#: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
|
766 |
+
#: core/fields/repeater.php:286 core/fields/repeater.php:333
|
767 |
+
#: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:105
|
|
|
|
|
|
|
768 |
msgid "Field Label"
|
769 |
msgstr "Název pole"
|
770 |
|
771 |
+
#: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
|
772 |
+
#: core/fields/repeater.php:287 core/fields/repeater.php:349
|
773 |
+
#: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:121
|
|
|
|
|
|
|
774 |
msgid "Field Name"
|
775 |
msgstr "Jméno pole"
|
776 |
|
777 |
+
#: core/fields/flexible_content.php:388 core/fields/repeater.php:296
|
778 |
+
msgid ""
|
779 |
+
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
780 |
+
msgstr ""
|
781 |
+
"Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního "
|
782 |
+
"pole."
|
783 |
|
784 |
+
#: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
|
785 |
+
#: core/fields/repeater.php:311 core/fields/repeater.php:314
|
786 |
+
#: core/views/meta_box_fields.php:84 core/views/meta_box_fields.php:87
|
|
|
|
|
|
|
787 |
msgid "Edit this Field"
|
788 |
msgstr "Upravit toto pole"
|
789 |
|
790 |
+
#: core/fields/flexible_content.php:408 core/fields/repeater.php:315
|
|
|
791 |
#: core/views/meta_box_fields.php:88
|
792 |
msgid "Read documentation for this field"
|
793 |
msgstr "Přečtěte si dokumentaci pro toto pole"
|
794 |
|
795 |
+
#: core/fields/flexible_content.php:408 core/fields/repeater.php:315
|
|
|
796 |
#: core/views/meta_box_fields.php:88
|
797 |
msgid "Docs"
|
798 |
msgstr "Dokumenty"
|
799 |
|
800 |
+
#: core/fields/flexible_content.php:409 core/fields/repeater.php:316
|
|
|
801 |
#: core/views/meta_box_fields.php:89
|
802 |
msgid "Duplicate this Field"
|
803 |
msgstr "Duplikovat toto pole"
|
804 |
|
805 |
+
#: core/fields/flexible_content.php:409 core/fields/repeater.php:316
|
|
|
806 |
#: core/views/meta_box_fields.php:89
|
807 |
msgid "Duplicate"
|
808 |
msgstr "Duplikovat"
|
809 |
|
810 |
+
#: core/fields/flexible_content.php:410 core/fields/repeater.php:317
|
|
|
811 |
#: core/views/meta_box_fields.php:90
|
812 |
msgid "Delete this Field"
|
813 |
msgstr "Smazat toto pole"
|
814 |
|
815 |
+
#: core/fields/flexible_content.php:426 core/fields/repeater.php:334
|
|
|
816 |
#: core/views/meta_box_fields.php:106
|
817 |
msgid "This is the name which will appear on the EDIT page"
|
818 |
msgstr "Toto je jméno, které se zobrazí na stránce úprav"
|
819 |
|
820 |
+
#: core/fields/flexible_content.php:442 core/fields/repeater.php:350
|
|
|
821 |
#: core/views/meta_box_fields.php:122
|
822 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
823 |
msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny."
|
824 |
|
825 |
+
#: core/fields/flexible_content.php:476 core/fields/repeater.php:384
|
|
|
826 |
msgid "Save Field"
|
827 |
msgstr "Uložit pole"
|
828 |
|
829 |
+
#: core/fields/flexible_content.php:481 core/fields/repeater.php:389
|
|
|
830 |
#: core/views/meta_box_fields.php:188
|
831 |
msgid "Close Field"
|
832 |
msgstr "Zavřít pole"
|
833 |
|
834 |
+
#: core/fields/flexible_content.php:481 core/fields/repeater.php:389
|
|
|
835 |
msgid "Close Sub Field"
|
836 |
msgstr "Zavřít podpole"
|
837 |
|
838 |
+
#: core/fields/flexible_content.php:495 core/fields/repeater.php:404
|
|
|
839 |
#: core/views/meta_box_fields.php:201
|
840 |
msgid "Drag and drop to reorder"
|
841 |
msgstr "Chytněte a táhněte pro změnu pořadí"
|
842 |
|
843 |
+
#: core/fields/flexible_content.php:496 core/fields/repeater.php:405
|
|
|
844 |
msgid "+ Add Sub Field"
|
845 |
msgstr "+ Přidat podpole"
|
846 |
|
847 |
+
#: core/fields/flexible_content.php:503 core/fields/repeater.php:459
|
|
|
848 |
msgid "Button Label"
|
849 |
msgstr "Nápis tlačítka"
|
850 |
|
852 |
msgid "Gallery"
|
853 |
msgstr "Galerie"
|
854 |
|
855 |
+
#: core/fields/gallery.php:70 core/fields/gallery.php:233
|
|
|
856 |
msgid "Alternate Text"
|
857 |
msgstr "Alternativní text"
|
858 |
|
859 |
+
#: core/fields/gallery.php:74 core/fields/gallery.php:237
|
|
|
860 |
msgid "Caption"
|
861 |
msgstr "Popisek"
|
862 |
|
863 |
+
#: core/fields/gallery.php:78 core/fields/gallery.php:241
|
|
|
864 |
msgid "Description"
|
865 |
msgstr "Popis"
|
866 |
|
867 |
+
#: core/fields/gallery.php:117 core/fields/image.php:243
|
|
|
868 |
msgid "Preview Size"
|
869 |
msgstr "Velikost náhledu"
|
870 |
|
876 |
msgid "Image Updated"
|
877 |
msgstr "Obrázek aktualizován"
|
878 |
|
879 |
+
#: core/fields/gallery.php:262 core/fields/gallery.php:642
|
|
|
880 |
#: core/fields/image.php:193
|
881 |
msgid "Add Image"
|
882 |
msgstr "Přidat obrázek"
|
889 |
msgid "List"
|
890 |
msgstr "Seznam"
|
891 |
|
892 |
+
#: core/fields/gallery.php:266 core/fields/image.php:428
|
|
|
893 |
msgid "No images selected"
|
894 |
msgstr "Není vybrán žádný obrázek"
|
895 |
|
909 |
msgid "Image Added"
|
910 |
msgstr "Obrázek přidán"
|
911 |
|
912 |
+
#: core/fields/gallery.php:645 core/fields/image.php:556
|
|
|
913 |
msgid "Update Image"
|
914 |
msgstr "Aktualizovat obrázek"
|
915 |
|
949 |
msgid "Page Link"
|
950 |
msgstr "Odkaz stránky"
|
951 |
|
952 |
+
#: core/fields/page_link.php:70 core/fields/post_object.php:216
|
953 |
+
#: core/fields/relationship.php:314 core/views/meta_box_location.php:48
|
|
|
|
|
954 |
msgid "Post Type"
|
955 |
msgstr "Typ příspěvku"
|
956 |
|
957 |
+
#: core/fields/page_link.php:98 core/fields/post_object.php:267
|
|
|
958 |
#: core/fields/select.php:194
|
959 |
msgid "Allow Null?"
|
960 |
msgstr "Povolit prázdné?"
|
961 |
|
962 |
+
#: core/fields/page_link.php:107 core/fields/page_link.php:126
|
963 |
+
#: core/fields/post_object.php:276 core/fields/post_object.php:295
|
964 |
+
#: core/fields/select.php:203 core/fields/select.php:222
|
965 |
+
#: core/fields/wysiwyg.php:104 core/views/meta_box_fields.php:170
|
|
|
|
|
|
|
|
|
966 |
msgid "Yes"
|
967 |
msgstr "Ano"
|
968 |
|
969 |
+
#: core/fields/page_link.php:108 core/fields/page_link.php:127
|
970 |
+
#: core/fields/post_object.php:277 core/fields/post_object.php:296
|
971 |
+
#: core/fields/select.php:204 core/fields/select.php:223
|
972 |
+
#: core/fields/wysiwyg.php:105 core/views/meta_box_fields.php:171
|
|
|
|
|
|
|
|
|
973 |
msgid "No"
|
974 |
msgstr "Ne"
|
975 |
|
976 |
+
#: core/fields/page_link.php:117 core/fields/post_object.php:286
|
|
|
977 |
#: core/fields/select.php:213
|
978 |
msgid "Select multiple values?"
|
979 |
msgstr "Vybrat více hodnot?"
|
982 |
msgid "Post Object"
|
983 |
msgstr "Objekt příspěvku"
|
984 |
|
985 |
+
#: core/fields/post_object.php:244 core/fields/relationship.php:343
|
|
|
986 |
msgid "Filter from Taxonomy"
|
987 |
msgstr "Filtrovat z taxonomie"
|
988 |
|
990 |
msgid "Radio Button"
|
991 |
msgstr "Přepínač"
|
992 |
|
993 |
+
#: core/fields/radio.php:130 core/fields/select.php:180
|
994 |
+
#: core/fields/text.php:61 core/fields/textarea.php:62
|
|
|
|
|
995 |
msgid "Default Value"
|
996 |
msgstr "Výchozí hodnota"
|
997 |
|
1019 |
msgid "Repeater"
|
1020 |
msgstr "Opakovač"
|
1021 |
|
1022 |
+
#: core/fields/repeater.php:66 core/fields/repeater.php:248
|
|
|
1023 |
msgid "Add Row"
|
1024 |
msgstr "Přidat řádek"
|
1025 |
|
1047 |
msgid "Text"
|
1048 |
msgstr "Text"
|
1049 |
|
1050 |
+
#: core/fields/text.php:75 core/fields/textarea.php:76
|
|
|
1051 |
msgid "Formatting"
|
1052 |
msgstr "Formátování"
|
1053 |
|
1055 |
msgid "Define how to render html tags"
|
1056 |
msgstr "Definujte způsob vypisování HTML tagů"
|
1057 |
|
1058 |
+
#: core/fields/text.php:85 core/fields/textarea.php:86
|
|
|
1059 |
msgid "None"
|
1060 |
msgstr "Žádný"
|
1061 |
|
1062 |
+
#: core/fields/text.php:86 core/fields/textarea.php:88
|
|
|
1063 |
msgid "HTML"
|
1064 |
msgstr "HTML"
|
1065 |
|
1095 |
msgid "Toolbar"
|
1096 |
msgstr "Lišta nástrojů"
|
1097 |
|
1098 |
+
#: core/fields/wysiwyg.php:86 core/views/meta_box_location.php:47
|
|
|
1099 |
msgid "Basic"
|
1100 |
msgstr "Základní"
|
1101 |
|
1112 |
msgstr "Přesunout do koše. Jste si jistí?"
|
1113 |
|
1114 |
#: core/views/meta_box_fields.php:73
|
1115 |
+
msgid ""
|
1116 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1117 |
+
"first field."
|
1118 |
+
msgstr ""
|
1119 |
+
"Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření "
|
1120 |
+
"prvního pole."
|
1121 |
|
1122 |
#: core/views/meta_box_fields.php:149
|
1123 |
msgid "Field Instructions"
|
1140 |
msgstr "Pravidla"
|
1141 |
|
1142 |
#: core/views/meta_box_location.php:36
|
1143 |
+
msgid ""
|
1144 |
+
"Create a set of rules to determine which edit screens will use these "
|
1145 |
+
"advanced custom fields"
|
1146 |
+
msgstr ""
|
1147 |
+
"Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita "
|
1148 |
+
"tato vlastní pole"
|
1149 |
|
1150 |
#: core/views/meta_box_location.php:49
|
1151 |
msgid "Logged in User Type"
|
1241 |
|
1242 |
#: core/views/meta_box_options.php:24
|
1243 |
msgid "Field groups are created in order <br />from lowest to highest."
|
1244 |
+
msgstr ""
|
1245 |
+
"Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
|
1246 |
|
1247 |
#: core/views/meta_box_options.php:40
|
1248 |
msgid "Position"
|
1261 |
msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
|
1262 |
|
1263 |
#: core/views/meta_box_options.php:82
|
1264 |
+
msgid ""
|
1265 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
1266 |
+
"options will be used. (the one with the lowest order number)"
|
1267 |
+
msgstr ""
|
1268 |
+
"Pokud se na obrazovce úprav objeví několik skupin polí, bude použito "
|
1269 |
+
"nastavení první skupiny. (s nejžším pořadovým číslem)"
|
1270 |
|
1271 |
#: core/views/meta_box_options.php:92
|
1272 |
msgid "Content Editor"
|
lang/acf-de_DE.mo
CHANGED
Binary file
|
lang/acf-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2013-04-27 17:35+0100\n"
|
8 |
-
"PO-Revision-Date: 2013-
|
9 |
"Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de\n"
|
@@ -498,8 +498,8 @@ msgstr ""
|
|
498 |
msgid ""
|
499 |
"Please note that if you export and register field groups within the same WP, "
|
500 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
501 |
-
"the
|
502 |
-
"
|
503 |
msgstr ""
|
504 |
"Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die <i>Registrierte "
|
505 |
"Felder-Gruppe</i> verwenden, werden die Felder im Bearbeitungs-Fenster "
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2013-04-27 17:35+0100\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 18:59-0600\n"
|
9 |
"Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de\n"
|
498 |
msgid ""
|
499 |
"Please note that if you export and register field groups within the same WP, "
|
500 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
501 |
+
"the original field group to the trash or remove the code from your functions."
|
502 |
+
"php file."
|
503 |
msgstr ""
|
504 |
"Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die <i>Registrierte "
|
505 |
"Felder-Gruppe</i> verwenden, werden die Felder im Bearbeitungs-Fenster "
|
lang/acf-es_ES.mo
CHANGED
Binary file
|
lang/acf-es_ES.po
CHANGED
@@ -8,11 +8,11 @@ msgstr ""
|
|
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:
|
12 |
"Last-Translator: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
13 |
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
14 |
-
"
|
15 |
-
"X-
|
16 |
|
17 |
#: acf.php:206
|
18 |
msgid "Custom Fields"
|
@@ -42,13 +42,11 @@ msgstr "No hay grupos de ACF seleccionados"
|
|
42 |
msgid "Field Groups"
|
43 |
msgstr "Field Groups"
|
44 |
|
45 |
-
#: core/actions/init.php:108
|
46 |
-
#: core/admin/page_acf.php:14
|
47 |
msgid "Advanced Custom Fields"
|
48 |
msgstr "Advanced Custom Fields"
|
49 |
|
50 |
-
#: core/actions/init.php:109
|
51 |
-
#: core/fields/flexible_content.php:219
|
52 |
msgid "Add New"
|
53 |
msgstr "Añadir nuevo"
|
54 |
|
@@ -80,49 +78,42 @@ msgstr "No se han encontrado Field Groups"
|
|
80 |
msgid "No Field Groups found in Trash"
|
81 |
msgstr "No se han encontrado Field Groups en la Papelera"
|
82 |
|
83 |
-
#: core/admin/meta_box_fields.php:17
|
84 |
-
#: core/fields/flexible_content.php:207
|
85 |
#: core/fields/repeater.php:344
|
86 |
msgid "New Field"
|
87 |
msgstr "Nuevo Campo"
|
88 |
|
89 |
-
#: core/admin/meta_box_fields.php:37
|
90 |
-
#: core/fields/flexible_content.php:268
|
91 |
#: core/fields/repeater.php:370
|
92 |
msgid "Field Order"
|
93 |
msgstr "Orden de los campos"
|
94 |
|
95 |
-
#: core/admin/meta_box_fields.php:38
|
96 |
-
#: core/
|
97 |
-
#: core/fields/
|
98 |
-
#: core/fields/flexible_content.php:314
|
99 |
-
#: core/fields/repeater.php:371
|
100 |
-
#: core/fields/repeater.php:416
|
101 |
msgid "Field Label"
|
102 |
msgstr "Label del campo"
|
103 |
|
104 |
-
#: core/admin/meta_box_fields.php:39
|
105 |
-
#: core/
|
106 |
-
#: core/fields/
|
107 |
-
#: core/fields/flexible_content.php:330
|
108 |
-
#: core/fields/repeater.php:372
|
109 |
-
#: core/fields/repeater.php:432
|
110 |
msgid "Field Name"
|
111 |
msgstr "Nombre del campo"
|
112 |
|
113 |
-
#: core/admin/meta_box_fields.php:40
|
114 |
-
#: core/admin/
|
115 |
-
#: core/
|
116 |
-
#: core/fields/flexible_content.php:271
|
117 |
-
#: core/fields/flexible_content.php:345
|
118 |
-
#: core/fields/repeater.php:373
|
119 |
#: core/fields/repeater.php:447
|
120 |
msgid "Field Type"
|
121 |
msgstr "Tipo de campo"
|
122 |
|
123 |
#: core/admin/meta_box_fields.php:47
|
124 |
-
msgid "
|
125 |
-
|
|
|
|
|
|
|
|
|
126 |
|
127 |
#: core/admin/meta_box_fields.php:61
|
128 |
msgid "Edit"
|
@@ -132,19 +123,16 @@ msgstr "Editar"
|
|
132 |
msgid "Docs"
|
133 |
msgstr "Docs"
|
134 |
|
135 |
-
#: core/admin/meta_box_fields.php:63
|
136 |
-
#: core/fields/flexible_content.php:220
|
137 |
msgid "Delete"
|
138 |
msgstr "Borrar"
|
139 |
|
140 |
-
#: core/admin/meta_box_fields.php:79
|
141 |
-
#: core/fields/flexible_content.php:315
|
142 |
#: core/fields/repeater.php:417
|
143 |
msgid "This is the name which will appear on the EDIT page"
|
144 |
msgstr "Este es el nombre que aparecerá en la página EDITAR"
|
145 |
|
146 |
-
#: core/admin/meta_box_fields.php:95
|
147 |
-
#: core/fields/flexible_content.php:331
|
148 |
#: core/fields/repeater.php:433
|
149 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
150 |
msgstr "Una sola palabra, sin espacios. Underscores y barras están permitidos."
|
@@ -155,38 +143,34 @@ msgstr "Instrucciones del campo"
|
|
155 |
|
156 |
#: core/admin/meta_box_fields.php:123
|
157 |
msgid "Instructions for authors. Shown when submitting data"
|
158 |
-
msgstr "
|
|
|
159 |
|
160 |
#: core/admin/meta_box_fields.php:135
|
161 |
msgid "Required?"
|
162 |
msgstr "¿Requerido?"
|
163 |
|
164 |
-
#: core/admin/meta_box_fields.php:158
|
165 |
-
#: core/fields/flexible_content.php:365
|
166 |
#: core/fields/repeater.php:467
|
167 |
msgid "Save Field"
|
168 |
msgstr "Guardar Field"
|
169 |
|
170 |
-
#: core/admin/meta_box_fields.php:161
|
171 |
-
#: core/fields/flexible_content.php:368
|
172 |
#: core/fields/repeater.php:470
|
173 |
msgid "or"
|
174 |
msgstr "o"
|
175 |
|
176 |
-
#: core/admin/meta_box_fields.php:161
|
177 |
-
#: core/fields/flexible_content.php:368
|
178 |
#: core/fields/repeater.php:470
|
179 |
msgid "Hide this edit screen"
|
180 |
msgstr "Ocultar esta pantalla de edición"
|
181 |
|
182 |
-
#: core/admin/meta_box_fields.php:161
|
183 |
-
#: core/fields/flexible_content.php:368
|
184 |
#: core/fields/repeater.php:470
|
185 |
msgid "continue editing ACF"
|
186 |
msgstr "continuar editando ACF"
|
187 |
|
188 |
-
#: core/admin/meta_box_fields.php:173
|
189 |
-
#: core/fields/flexible_content.php:381
|
190 |
#: core/fields/repeater.php:484
|
191 |
msgid "+ Add Field"
|
192 |
msgstr "+ Añadir Campo"
|
@@ -196,8 +180,12 @@ msgid "Rules"
|
|
196 |
msgstr "Reglas"
|
197 |
|
198 |
#: core/admin/meta_box_location.php:26
|
199 |
-
msgid "
|
200 |
-
|
|
|
|
|
|
|
|
|
201 |
|
202 |
#: core/admin/meta_box_location.php:305
|
203 |
msgid "match"
|
@@ -232,8 +220,13 @@ msgid "Deselect items to hide them on the edit page"
|
|
232 |
msgstr "Deselecciona items para esconderlos en la página de edición"
|
233 |
|
234 |
#: core/admin/meta_box_options.php:72
|
235 |
-
msgid "
|
236 |
-
|
|
|
|
|
|
|
|
|
|
|
237 |
|
238 |
#: core/admin/page_acf.php:16
|
239 |
msgid "Changelog"
|
@@ -248,8 +241,12 @@ msgid "Resources"
|
|
248 |
msgstr "Recursos"
|
249 |
|
250 |
#: core/admin/page_acf.php:20
|
251 |
-
msgid "
|
252 |
-
|
|
|
|
|
|
|
|
|
253 |
|
254 |
#: core/admin/page_acf.php:21
|
255 |
msgid "View the ACF website"
|
@@ -287,14 +284,12 @@ msgstr "Código de activación"
|
|
287 |
msgid "Repeater Field"
|
288 |
msgstr "Repeater Field"
|
289 |
|
290 |
-
#: core/admin/page_settings.php:53
|
291 |
-
#: core/admin/page_settings.php:73
|
292 |
#: core/admin/page_settings.php:93
|
293 |
msgid "Active"
|
294 |
msgstr "Activo"
|
295 |
|
296 |
-
#: core/admin/page_settings.php:53
|
297 |
-
#: core/admin/page_settings.php:73
|
298 |
#: core/admin/page_settings.php:93
|
299 |
msgid "Inactive"
|
300 |
msgstr "Inactivo"
|
@@ -308,8 +303,12 @@ msgid "Options Page"
|
|
308 |
msgstr "Página de Opciones"
|
309 |
|
310 |
#: core/admin/page_settings.php:115
|
311 |
-
msgid "
|
312 |
-
|
|
|
|
|
|
|
|
|
313 |
|
314 |
#: core/admin/page_settings.php:115
|
315 |
msgid "Find Add-ons"
|
@@ -320,8 +319,12 @@ msgid "Export Field Groups to XML"
|
|
320 |
msgstr "Exportar Field Groups a XML"
|
321 |
|
322 |
#: core/admin/page_settings.php:166
|
323 |
-
msgid "
|
324 |
-
|
|
|
|
|
|
|
|
|
325 |
|
326 |
#: core/admin/page_settings.php:169
|
327 |
msgid "Export XML"
|
@@ -371,25 +374,23 @@ msgstr "ACF creará el código PHP para incluir en tu tema"
|
|
371 |
msgid "Create PHP"
|
372 |
msgstr "Crear PHP"
|
373 |
|
374 |
-
#: core/admin/page_settings.php:242
|
375 |
-
#: core/admin/page_settings.php:270
|
376 |
msgid "Register Field Groups with PHP"
|
377 |
msgstr "Registrar Field Groups con PHP"
|
378 |
|
379 |
-
#: core/admin/page_settings.php:244
|
380 |
-
#: core/admin/page_settings.php:272
|
381 |
msgid "Copy the PHP code generated"
|
382 |
msgstr "Copia el código PHP generado"
|
383 |
|
384 |
-
#: core/admin/page_settings.php:245
|
385 |
-
#: core/admin/page_settings.php:273
|
386 |
msgid "Paste into your functions.php file"
|
387 |
msgstr "Pegalo en tu archivo functions.php"
|
388 |
|
389 |
-
#: core/admin/page_settings.php:246
|
390 |
-
#: core/admin/page_settings.php:274
|
391 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
392 |
-
msgstr "
|
|
|
|
|
393 |
|
394 |
#: core/admin/page_settings.php:267
|
395 |
msgid "Back to settings"
|
@@ -399,33 +400,45 @@ msgstr "Volver a los ajustes"
|
|
399 |
msgid ""
|
400 |
"/**\n"
|
401 |
" * Activate Add-ons\n"
|
402 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your
|
403 |
-
"
|
404 |
-
" *
|
405 |
-
"
|
|
|
|
|
|
|
|
|
406 |
" */"
|
407 |
msgstr ""
|
408 |
"/**\n"
|
409 |
" * Activar Add-ons\n"
|
410 |
-
" * Aquí puedes introducir tus códigos de activación para desbloquear Add-ons
|
411 |
-
"
|
412 |
-
" *
|
413 |
-
"
|
|
|
|
|
|
|
|
|
414 |
" */"
|
415 |
|
416 |
#: core/admin/page_settings.php:308
|
417 |
msgid ""
|
418 |
"/**\n"
|
419 |
" * Register field groups\n"
|
420 |
-
" * The register_field_group function accepts 1 array which holds the
|
421 |
-
"
|
|
|
|
|
422 |
" * This code must run every time the functions.php file is read\n"
|
423 |
" */"
|
424 |
msgstr ""
|
425 |
"/**\n"
|
426 |
" * Registrar field groups\n"
|
427 |
-
" * La función register_field_group acepta un 1 array que contiene los datos
|
428 |
-
"
|
|
|
|
|
429 |
" * Este código debe ejecutarse cada vez que se lee el archivo functions.php\n"
|
430 |
" */"
|
431 |
|
@@ -437,20 +450,17 @@ msgstr "No hay ningún Field Group seleccionado"
|
|
437 |
msgid "Checkbox"
|
438 |
msgstr "Checkbox"
|
439 |
|
440 |
-
#: core/fields/checkbox.php:44
|
441 |
-
#: core/fields/radio.php:45
|
442 |
#: core/fields/select.php:50
|
443 |
msgid "No choices to choose from"
|
444 |
msgstr "No hay opciones para escojer"
|
445 |
|
446 |
-
#: core/fields/checkbox.php:101
|
447 |
-
#: core/fields/radio.php:114
|
448 |
#: core/fields/select.php:164
|
449 |
msgid "Choices"
|
450 |
msgstr "Opciones"
|
451 |
|
452 |
-
#: core/fields/checkbox.php:102
|
453 |
-
#: core/fields/radio.php:115
|
454 |
#: core/fields/select.php:165
|
455 |
msgid ""
|
456 |
"Enter your choices one per line<br />\n"
|
@@ -505,8 +515,7 @@ msgstr "No hay ningún archivo seleccionado"
|
|
505 |
msgid "Add File"
|
506 |
msgstr "Añadir archivo"
|
507 |
|
508 |
-
#: core/fields/file.php:175
|
509 |
-
#: core/fields/image.php:179
|
510 |
msgid "Return Value"
|
511 |
msgstr "Retornar valor"
|
512 |
|
@@ -520,15 +529,14 @@ msgstr "Contenido Flexible"
|
|
520 |
|
521 |
#: core/fields/flexible_content.php:50
|
522 |
msgid "Click the \"add row\" button below to start creating your layout"
|
523 |
-
msgstr "
|
|
|
524 |
|
525 |
-
#: core/fields/flexible_content.php:155
|
526 |
-
#: core/fields/repeater.php:315
|
527 |
msgid "+ Add Row"
|
528 |
msgstr "+ Añadir fila"
|
529 |
|
530 |
-
#: core/fields/flexible_content.php:216
|
531 |
-
#: core/fields/radio.php:145
|
532 |
#: core/fields/repeater.php:506
|
533 |
msgid "Layout"
|
534 |
msgstr "Layout"
|
@@ -549,10 +557,11 @@ msgstr "Nombre"
|
|
549 |
msgid "Display"
|
550 |
msgstr "Mostrar"
|
551 |
|
552 |
-
#: core/fields/flexible_content.php:279
|
553 |
-
#: core/fields/repeater.php:381
|
554 |
msgid "No fields. Click the \"+ Add Field button\" to create your first field."
|
555 |
-
msgstr "
|
|
|
|
|
556 |
|
557 |
#: core/fields/image.php:21
|
558 |
msgid "Image"
|
@@ -578,8 +587,7 @@ msgstr "Seleccionar Imagen"
|
|
578 |
msgid "Page Link"
|
579 |
msgstr "Link de página"
|
580 |
|
581 |
-
#: core/fields/page_link.php:185
|
582 |
-
#: core/fields/post_object.php:199
|
583 |
#: core/fields/relationship.php:420
|
584 |
msgid "Post Type"
|
585 |
msgstr "Post Type"
|
@@ -590,16 +598,15 @@ msgid ""
|
|
590 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
591 |
msgstr ""
|
592 |
"Filtrar posts seleccionando un post type<br />\n"
|
593 |
-
"\t\t\t\tConsejo: deselecciona todos los post type para mostrar todos los
|
|
|
594 |
|
595 |
-
#: core/fields/page_link.php:214
|
596 |
-
#: core/fields/post_object.php:271
|
597 |
#: core/fields/select.php:195
|
598 |
msgid "Allow Null?"
|
599 |
msgstr "Permitir Null?"
|
600 |
|
601 |
-
#: core/fields/page_link.php:233
|
602 |
-
#: core/fields/post_object.php:290
|
603 |
#: core/fields/select.php:214
|
604 |
msgid "Select multiple values?"
|
605 |
msgstr "¿Seleccionar valores múltiples?"
|
@@ -608,8 +615,7 @@ msgstr "¿Seleccionar valores múltiples?"
|
|
608 |
msgid "Post Object"
|
609 |
msgstr "Post Object"
|
610 |
|
611 |
-
#: core/fields/post_object.php:221
|
612 |
-
#: core/fields/relationship.php:469
|
613 |
msgid "Filter from Taxonomy"
|
614 |
msgstr "Filtrar por Taxonomía"
|
615 |
|
@@ -617,10 +623,8 @@ msgstr "Filtrar por Taxonomía"
|
|
617 |
msgid "Radio Button"
|
618 |
msgstr "Radio Button"
|
619 |
|
620 |
-
#: core/fields/radio.php:131
|
621 |
-
#: core/fields/
|
622 |
-
#: core/fields/text.php:61
|
623 |
-
#: core/fields/textarea.php:62
|
624 |
msgid "Default Value"
|
625 |
msgstr "Valor por defecto"
|
626 |
|
@@ -656,8 +660,7 @@ msgstr "Select"
|
|
656 |
msgid "Text"
|
657 |
msgstr "Texto"
|
658 |
|
659 |
-
#: core/fields/text.php:75
|
660 |
-
#: core/fields/textarea.php:76
|
661 |
msgid "Formatting"
|
662 |
msgstr "Formato"
|
663 |
|
@@ -697,12 +700,10 @@ msgstr "Barra de Herramientas"
|
|
697 |
msgid "Show Media Upload Buttons?"
|
698 |
msgstr "¿Mostrar el botón Media Upload?"
|
699 |
|
700 |
-
#: core/options_page.php:62
|
701 |
-
#: core/options_page.php:74
|
702 |
msgid "Options"
|
703 |
msgstr "Opciones"
|
704 |
|
705 |
#: core/options_page.php:284
|
706 |
msgid "Save"
|
707 |
msgstr "Guardar"
|
708 |
-
|
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: 2013-06-10 18:59-0600\n"
|
12 |
"Last-Translator: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
13 |
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
14 |
+
"Language: es_ES\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
|
17 |
#: acf.php:206
|
18 |
msgid "Custom Fields"
|
42 |
msgid "Field Groups"
|
43 |
msgstr "Field Groups"
|
44 |
|
45 |
+
#: core/actions/init.php:108 core/admin/page_acf.php:14
|
|
|
46 |
msgid "Advanced Custom Fields"
|
47 |
msgstr "Advanced Custom Fields"
|
48 |
|
49 |
+
#: core/actions/init.php:109 core/fields/flexible_content.php:219
|
|
|
50 |
msgid "Add New"
|
51 |
msgstr "Añadir nuevo"
|
52 |
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "No se han encontrado Field Groups en la Papelera"
|
80 |
|
81 |
+
#: core/admin/meta_box_fields.php:17 core/fields/flexible_content.php:207
|
|
|
82 |
#: core/fields/repeater.php:344
|
83 |
msgid "New Field"
|
84 |
msgstr "Nuevo Campo"
|
85 |
|
86 |
+
#: core/admin/meta_box_fields.php:37 core/fields/flexible_content.php:268
|
|
|
87 |
#: core/fields/repeater.php:370
|
88 |
msgid "Field Order"
|
89 |
msgstr "Orden de los campos"
|
90 |
|
91 |
+
#: core/admin/meta_box_fields.php:38 core/admin/meta_box_fields.php:78
|
92 |
+
#: core/fields/flexible_content.php:269 core/fields/flexible_content.php:314
|
93 |
+
#: core/fields/repeater.php:371 core/fields/repeater.php:416
|
|
|
|
|
|
|
94 |
msgid "Field Label"
|
95 |
msgstr "Label del campo"
|
96 |
|
97 |
+
#: core/admin/meta_box_fields.php:39 core/admin/meta_box_fields.php:94
|
98 |
+
#: core/fields/flexible_content.php:270 core/fields/flexible_content.php:330
|
99 |
+
#: core/fields/repeater.php:372 core/fields/repeater.php:432
|
|
|
|
|
|
|
100 |
msgid "Field Name"
|
101 |
msgstr "Nombre del campo"
|
102 |
|
103 |
+
#: core/admin/meta_box_fields.php:40 core/admin/meta_box_fields.php:109
|
104 |
+
#: core/admin/page_settings.php:44 core/fields/flexible_content.php:271
|
105 |
+
#: core/fields/flexible_content.php:345 core/fields/repeater.php:373
|
|
|
|
|
|
|
106 |
#: core/fields/repeater.php:447
|
107 |
msgid "Field Type"
|
108 |
msgstr "Tipo de campo"
|
109 |
|
110 |
#: core/admin/meta_box_fields.php:47
|
111 |
+
msgid ""
|
112 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
113 |
+
"first field."
|
114 |
+
msgstr ""
|
115 |
+
"No hay campos. Haz Click en el botón <strong>+ Añadir campo</strong> para "
|
116 |
+
"crear tu primer campo."
|
117 |
|
118 |
#: core/admin/meta_box_fields.php:61
|
119 |
msgid "Edit"
|
123 |
msgid "Docs"
|
124 |
msgstr "Docs"
|
125 |
|
126 |
+
#: core/admin/meta_box_fields.php:63 core/fields/flexible_content.php:220
|
|
|
127 |
msgid "Delete"
|
128 |
msgstr "Borrar"
|
129 |
|
130 |
+
#: core/admin/meta_box_fields.php:79 core/fields/flexible_content.php:315
|
|
|
131 |
#: core/fields/repeater.php:417
|
132 |
msgid "This is the name which will appear on the EDIT page"
|
133 |
msgstr "Este es el nombre que aparecerá en la página EDITAR"
|
134 |
|
135 |
+
#: core/admin/meta_box_fields.php:95 core/fields/flexible_content.php:331
|
|
|
136 |
#: core/fields/repeater.php:433
|
137 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
138 |
msgstr "Una sola palabra, sin espacios. Underscores y barras están permitidos."
|
143 |
|
144 |
#: core/admin/meta_box_fields.php:123
|
145 |
msgid "Instructions for authors. Shown when submitting data"
|
146 |
+
msgstr ""
|
147 |
+
"Instrucciones para los autores. Se muestra a la hora de introducir los datos."
|
148 |
|
149 |
#: core/admin/meta_box_fields.php:135
|
150 |
msgid "Required?"
|
151 |
msgstr "¿Requerido?"
|
152 |
|
153 |
+
#: core/admin/meta_box_fields.php:158 core/fields/flexible_content.php:365
|
|
|
154 |
#: core/fields/repeater.php:467
|
155 |
msgid "Save Field"
|
156 |
msgstr "Guardar Field"
|
157 |
|
158 |
+
#: core/admin/meta_box_fields.php:161 core/fields/flexible_content.php:368
|
|
|
159 |
#: core/fields/repeater.php:470
|
160 |
msgid "or"
|
161 |
msgstr "o"
|
162 |
|
163 |
+
#: core/admin/meta_box_fields.php:161 core/fields/flexible_content.php:368
|
|
|
164 |
#: core/fields/repeater.php:470
|
165 |
msgid "Hide this edit screen"
|
166 |
msgstr "Ocultar esta pantalla de edición"
|
167 |
|
168 |
+
#: core/admin/meta_box_fields.php:161 core/fields/flexible_content.php:368
|
|
|
169 |
#: core/fields/repeater.php:470
|
170 |
msgid "continue editing ACF"
|
171 |
msgstr "continuar editando ACF"
|
172 |
|
173 |
+
#: core/admin/meta_box_fields.php:173 core/fields/flexible_content.php:381
|
|
|
174 |
#: core/fields/repeater.php:484
|
175 |
msgid "+ Add Field"
|
176 |
msgstr "+ Añadir Campo"
|
180 |
msgstr "Reglas"
|
181 |
|
182 |
#: core/admin/meta_box_location.php:26
|
183 |
+
msgid ""
|
184 |
+
"Create a set of rules to determine which edit screens will use these "
|
185 |
+
"advanced custom fields"
|
186 |
+
msgstr ""
|
187 |
+
"Crear un conjunto de reglas para determinar qué pantallas de edición "
|
188 |
+
"utilizarán estos custom fields"
|
189 |
|
190 |
#: core/admin/meta_box_location.php:305
|
191 |
msgid "match"
|
220 |
msgstr "Deselecciona items para esconderlos en la página de edición"
|
221 |
|
222 |
#: core/admin/meta_box_options.php:72
|
223 |
+
msgid ""
|
224 |
+
"If multiple ACF groups appear on an edit page, the first ACF group's options "
|
225 |
+
"will be used. The first ACF group is the one with the lowest order number."
|
226 |
+
msgstr ""
|
227 |
+
"Si aparecen multiples grupos de ACF en una página de edición, se usarán las "
|
228 |
+
"opciones del primer grupo. Se considera primer grupo de ACF al que cuenta "
|
229 |
+
"con el número de orden más bajo."
|
230 |
|
231 |
#: core/admin/page_acf.php:16
|
232 |
msgid "Changelog"
|
241 |
msgstr "Recursos"
|
242 |
|
243 |
#: core/admin/page_acf.php:20
|
244 |
+
msgid ""
|
245 |
+
"Read documentation, learn the functions and find some tips & tricks for "
|
246 |
+
"your next web project."
|
247 |
+
msgstr ""
|
248 |
+
"Lee la documentación, aprende sobre las funciones y encuentra algunos trucos "
|
249 |
+
"y consejos para tu siguiente proyecto web."
|
250 |
|
251 |
#: core/admin/page_acf.php:21
|
252 |
msgid "View the ACF website"
|
284 |
msgid "Repeater Field"
|
285 |
msgstr "Repeater Field"
|
286 |
|
287 |
+
#: core/admin/page_settings.php:53 core/admin/page_settings.php:73
|
|
|
288 |
#: core/admin/page_settings.php:93
|
289 |
msgid "Active"
|
290 |
msgstr "Activo"
|
291 |
|
292 |
+
#: core/admin/page_settings.php:53 core/admin/page_settings.php:73
|
|
|
293 |
#: core/admin/page_settings.php:93
|
294 |
msgid "Inactive"
|
295 |
msgstr "Inactivo"
|
303 |
msgstr "Página de Opciones"
|
304 |
|
305 |
#: core/admin/page_settings.php:115
|
306 |
+
msgid ""
|
307 |
+
"Add-ons can be unlocked by purchasing a license key. Each key can be used on "
|
308 |
+
"multiple sites."
|
309 |
+
msgstr ""
|
310 |
+
"Las Add-ons pueden desbloquearse comprando una clave de licencia. Cada clave "
|
311 |
+
"puede usarse en multiple sites."
|
312 |
|
313 |
#: core/admin/page_settings.php:115
|
314 |
msgid "Find Add-ons"
|
319 |
msgstr "Exportar Field Groups a XML"
|
320 |
|
321 |
#: core/admin/page_settings.php:166
|
322 |
+
msgid ""
|
323 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
324 |
+
"import plugin."
|
325 |
+
msgstr ""
|
326 |
+
"ACF creará un archivo .xml que es compatible con el plugin de importación "
|
327 |
+
"nativo de WP."
|
328 |
|
329 |
#: core/admin/page_settings.php:169
|
330 |
msgid "Export XML"
|
374 |
msgid "Create PHP"
|
375 |
msgstr "Crear PHP"
|
376 |
|
377 |
+
#: core/admin/page_settings.php:242 core/admin/page_settings.php:270
|
|
|
378 |
msgid "Register Field Groups with PHP"
|
379 |
msgstr "Registrar Field Groups con PHP"
|
380 |
|
381 |
+
#: core/admin/page_settings.php:244 core/admin/page_settings.php:272
|
|
|
382 |
msgid "Copy the PHP code generated"
|
383 |
msgstr "Copia el código PHP generado"
|
384 |
|
385 |
+
#: core/admin/page_settings.php:245 core/admin/page_settings.php:273
|
|
|
386 |
msgid "Paste into your functions.php file"
|
387 |
msgstr "Pegalo en tu archivo functions.php"
|
388 |
|
389 |
+
#: core/admin/page_settings.php:246 core/admin/page_settings.php:274
|
|
|
390 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
391 |
+
msgstr ""
|
392 |
+
"Para activar cualquier Add-on, edita y usa el código en las primeras pocas "
|
393 |
+
"lineas."
|
394 |
|
395 |
#: core/admin/page_settings.php:267
|
396 |
msgid "Back to settings"
|
400 |
msgid ""
|
401 |
"/**\n"
|
402 |
" * Activate Add-ons\n"
|
403 |
+
" * Here you can enter your activation codes to unlock Add-ons to use in your "
|
404 |
+
"theme. \n"
|
405 |
+
" * Since all activation codes are multi-site licenses, you are allowed to "
|
406 |
+
"include your key in premium themes. \n"
|
407 |
+
" * Use the commented out code to update the database with your activation "
|
408 |
+
"code. \n"
|
409 |
+
" * You may place this code inside an IF statement that only runs on theme "
|
410 |
+
"activation.\n"
|
411 |
" */"
|
412 |
msgstr ""
|
413 |
"/**\n"
|
414 |
" * Activar Add-ons\n"
|
415 |
+
" * Aquí puedes introducir tus códigos de activación para desbloquear Add-ons "
|
416 |
+
"y utilizarlos en tu tema. \n"
|
417 |
+
" * Ya que todos los códigos de activación tiene licencia multi-site, se te "
|
418 |
+
"permite incluir tu clave en temas premium. \n"
|
419 |
+
" * Utiliza el código comentado para actualizar la base de datos con tu "
|
420 |
+
"código de activación. \n"
|
421 |
+
" * Puedes colocar este código dentro de una instrucción IF para que sólo "
|
422 |
+
"funcione en la activación del tema.\n"
|
423 |
" */"
|
424 |
|
425 |
#: core/admin/page_settings.php:308
|
426 |
msgid ""
|
427 |
"/**\n"
|
428 |
" * Register field groups\n"
|
429 |
+
" * The register_field_group function accepts 1 array which holds the "
|
430 |
+
"relevant data to register a field group\n"
|
431 |
+
" * You may edit the array as you see fit. However, this may result in errors "
|
432 |
+
"if the array is not compatible with ACF\n"
|
433 |
" * This code must run every time the functions.php file is read\n"
|
434 |
" */"
|
435 |
msgstr ""
|
436 |
"/**\n"
|
437 |
" * Registrar field groups\n"
|
438 |
+
" * La función register_field_group acepta un 1 array que contiene los datos "
|
439 |
+
"pertinentes para registrar un Field Group\n"
|
440 |
+
" * Puedes editar el array como mejor te parezca. Sin embargo, esto puede dar "
|
441 |
+
"lugar a errores si la matriz no es compatible con ACF\n"
|
442 |
" * Este código debe ejecutarse cada vez que se lee el archivo functions.php\n"
|
443 |
" */"
|
444 |
|
450 |
msgid "Checkbox"
|
451 |
msgstr "Checkbox"
|
452 |
|
453 |
+
#: core/fields/checkbox.php:44 core/fields/radio.php:45
|
|
|
454 |
#: core/fields/select.php:50
|
455 |
msgid "No choices to choose from"
|
456 |
msgstr "No hay opciones para escojer"
|
457 |
|
458 |
+
#: core/fields/checkbox.php:101 core/fields/radio.php:114
|
|
|
459 |
#: core/fields/select.php:164
|
460 |
msgid "Choices"
|
461 |
msgstr "Opciones"
|
462 |
|
463 |
+
#: core/fields/checkbox.php:102 core/fields/radio.php:115
|
|
|
464 |
#: core/fields/select.php:165
|
465 |
msgid ""
|
466 |
"Enter your choices one per line<br />\n"
|
515 |
msgid "Add File"
|
516 |
msgstr "Añadir archivo"
|
517 |
|
518 |
+
#: core/fields/file.php:175 core/fields/image.php:179
|
|
|
519 |
msgid "Return Value"
|
520 |
msgstr "Retornar valor"
|
521 |
|
529 |
|
530 |
#: core/fields/flexible_content.php:50
|
531 |
msgid "Click the \"add row\" button below to start creating your layout"
|
532 |
+
msgstr ""
|
533 |
+
"Haz click sobre el botón \"añadir fila\" para empezar a crear tu Layout"
|
534 |
|
535 |
+
#: core/fields/flexible_content.php:155 core/fields/repeater.php:315
|
|
|
536 |
msgid "+ Add Row"
|
537 |
msgstr "+ Añadir fila"
|
538 |
|
539 |
+
#: core/fields/flexible_content.php:216 core/fields/radio.php:145
|
|
|
540 |
#: core/fields/repeater.php:506
|
541 |
msgid "Layout"
|
542 |
msgstr "Layout"
|
557 |
msgid "Display"
|
558 |
msgstr "Mostrar"
|
559 |
|
560 |
+
#: core/fields/flexible_content.php:279 core/fields/repeater.php:381
|
|
|
561 |
msgid "No fields. Click the \"+ Add Field button\" to create your first field."
|
562 |
+
msgstr ""
|
563 |
+
"No hay campos. Haz click en el botón \"+ Añadir Campo\" para crear tu primer "
|
564 |
+
"campo."
|
565 |
|
566 |
#: core/fields/image.php:21
|
567 |
msgid "Image"
|
587 |
msgid "Page Link"
|
588 |
msgstr "Link de página"
|
589 |
|
590 |
+
#: core/fields/page_link.php:185 core/fields/post_object.php:199
|
|
|
591 |
#: core/fields/relationship.php:420
|
592 |
msgid "Post Type"
|
593 |
msgstr "Post Type"
|
598 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
599 |
msgstr ""
|
600 |
"Filtrar posts seleccionando un post type<br />\n"
|
601 |
+
"\t\t\t\tConsejo: deselecciona todos los post type para mostrar todos los "
|
602 |
+
"tipos de post"
|
603 |
|
604 |
+
#: core/fields/page_link.php:214 core/fields/post_object.php:271
|
|
|
605 |
#: core/fields/select.php:195
|
606 |
msgid "Allow Null?"
|
607 |
msgstr "Permitir Null?"
|
608 |
|
609 |
+
#: core/fields/page_link.php:233 core/fields/post_object.php:290
|
|
|
610 |
#: core/fields/select.php:214
|
611 |
msgid "Select multiple values?"
|
612 |
msgstr "¿Seleccionar valores múltiples?"
|
615 |
msgid "Post Object"
|
616 |
msgstr "Post Object"
|
617 |
|
618 |
+
#: core/fields/post_object.php:221 core/fields/relationship.php:469
|
|
|
619 |
msgid "Filter from Taxonomy"
|
620 |
msgstr "Filtrar por Taxonomía"
|
621 |
|
623 |
msgid "Radio Button"
|
624 |
msgstr "Radio Button"
|
625 |
|
626 |
+
#: core/fields/radio.php:131 core/fields/select.php:181
|
627 |
+
#: core/fields/text.php:61 core/fields/textarea.php:62
|
|
|
|
|
628 |
msgid "Default Value"
|
629 |
msgstr "Valor por defecto"
|
630 |
|
660 |
msgid "Text"
|
661 |
msgstr "Texto"
|
662 |
|
663 |
+
#: core/fields/text.php:75 core/fields/textarea.php:76
|
|
|
664 |
msgid "Formatting"
|
665 |
msgstr "Formato"
|
666 |
|
700 |
msgid "Show Media Upload Buttons?"
|
701 |
msgstr "¿Mostrar el botón Media Upload?"
|
702 |
|
703 |
+
#: core/options_page.php:62 core/options_page.php:74
|
|
|
704 |
msgid "Options"
|
705 |
msgstr "Opciones"
|
706 |
|
707 |
#: core/options_page.php:284
|
708 |
msgid "Save"
|
709 |
msgstr "Guardar"
|
|
lang/acf-fr_FR.mo
CHANGED
Binary file
|
lang/acf-fr_FR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
|
8 |
"Language-Team: RVOLA <hello@rvola.com>\n"
|
9 |
"Language: French\n"
|
@@ -353,8 +353,8 @@ msgstr ""
|
|
353 |
msgid ""
|
354 |
"Please note that if you export and register field groups within the same WP, "
|
355 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
356 |
-
"the
|
357 |
-
"
|
358 |
msgstr ""
|
359 |
"Si vous exportez ET inscrivez les groupes dans la même installation WP, vous "
|
360 |
"verrez les champs en double dans votre page d‘édition. Pour éviter cela, "
|
3 |
"Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
6 |
+
"PO-Revision-Date: 2013-06-10 18:59-0600\n"
|
7 |
"Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
|
8 |
"Language-Team: RVOLA <hello@rvola.com>\n"
|
9 |
"Language: French\n"
|
353 |
msgid ""
|
354 |
"Please note that if you export and register field groups within the same WP, "
|
355 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
356 |
+
"the original field group to the trash or remove the code from your functions."
|
357 |
+
"php file."
|
358 |
msgstr ""
|
359 |
"Si vous exportez ET inscrivez les groupes dans la même installation WP, vous "
|
360 |
"verrez les champs en double dans votre page d‘édition. Pour éviter cela, "
|
lang/acf-it_IT.mo
CHANGED
Binary file
|
lang/acf-it_IT.po
CHANGED
@@ -8,7 +8,7 @@ msgstr ""
|
|
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: 2013-
|
12 |
"Last-Translator: ale <alala@asdasda.it>\n"
|
13 |
"Language-Team: <a.mignogna@asernet.it>\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\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: 2013-06-10 18:59-0600\n"
|
12 |
"Last-Translator: ale <alala@asdasda.it>\n"
|
13 |
"Language-Team: <a.mignogna@asernet.it>\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
lang/acf-ja.mo
CHANGED
Binary file
|
lang/acf-ja.po
CHANGED
@@ -8,7 +8,7 @@ msgstr ""
|
|
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: 2013-
|
12 |
"Last-Translator: Fumito MIZUNO <ounziw@gmail.com>\n"
|
13 |
"Language-Team: Fumito MIZUNO <ounziw@gmail.com>\n"
|
14 |
"X-Generator: Poedit 1.5.5\n"
|
@@ -465,8 +465,8 @@ msgstr ""
|
|
465 |
msgid ""
|
466 |
"Please note that if you export and register field groups within the same WP, "
|
467 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
468 |
-
"the
|
469 |
-
"
|
470 |
msgstr ""
|
471 |
"同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で重"
|
472 |
"複フィールドになることに注意してください。これを修正するには、元のフィールド"
|
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: 2013-06-10 18:59-0600\n"
|
12 |
"Last-Translator: Fumito MIZUNO <ounziw@gmail.com>\n"
|
13 |
"Language-Team: Fumito MIZUNO <ounziw@gmail.com>\n"
|
14 |
"X-Generator: Poedit 1.5.5\n"
|
465 |
msgid ""
|
466 |
"Please note that if you export and register field groups within the same WP, "
|
467 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
468 |
+
"the original field group to the trash or remove the code from your functions."
|
469 |
+
"php file."
|
470 |
msgstr ""
|
471 |
"同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で重"
|
472 |
"複フィールドになることに注意してください。これを修正するには、元のフィールド"
|
lang/acf-nl_NL.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Advanced Custom Fields - Dutch translation\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: 2012-09-10 08:45+0100\n"
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Derk Oosterveld <derk@inpoint.nl>\n"
|
10 |
"Language-Team: Inpoint <derk@inpoint.nl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
@@ -13,6 +13,7 @@ msgstr ""
|
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: acf.php:287 core/views/meta_box_options.php:94
|
@@ -431,7 +432,7 @@ msgid "Registered field groups <b>will not</b> appear in the list of editable fi
|
|
431 |
msgstr "Geregistreerde veld groepen verschijnen <b>niet</b> in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema\'s"
|
432 |
|
433 |
#: core/controllers/settings.php:358 core/controllers/settings.php:475
|
434 |
-
msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the
|
435 |
msgstr "Houd er rekening mee dat wanneer je veld groepen exporteert en registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde velden in je edit screens. Om dit te verhelpen: verwijder de originele veld groepen naar de prullenbak of verwijder de code uit je functions.php bestand."
|
436 |
|
437 |
#: core/controllers/settings.php:360
|
5 |
"Project-Id-Version: Advanced Custom Fields - Dutch translation\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: 2012-09-10 08:45+0100\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 18:59-0600\n"
|
9 |
"Last-Translator: Derk Oosterveld <derk@inpoint.nl>\n"
|
10 |
"Language-Team: Inpoint <derk@inpoint.nl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: acf.php:287 core/views/meta_box_options.php:94
|
432 |
msgstr "Geregistreerde veld groepen verschijnen <b>niet</b> in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema\'s"
|
433 |
|
434 |
#: core/controllers/settings.php:358 core/controllers/settings.php:475
|
435 |
+
msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
|
436 |
msgstr "Houd er rekening mee dat wanneer je veld groepen exporteert en registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde velden in je edit screens. Om dit te verhelpen: verwijder de originele veld groepen naar de prullenbak of verwijder de code uit je functions.php bestand."
|
437 |
|
438 |
#: core/controllers/settings.php:360
|
lang/acf-pl_PL.mo
CHANGED
Binary file
|
lang/acf-pl_PL.po
CHANGED
@@ -5,17 +5,17 @@ msgstr ""
|
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: 2012-07-13 15:51+0100\n"
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
10 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Poedit-Language: Polish\n"
|
15 |
-
"X-Poedit-Country: POLAND\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;_n;_getttext\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
#: ../acf.php:281
|
@@ -26,8 +26,7 @@ msgstr "Własne pola"
|
|
26 |
msgid "Field Groups"
|
27 |
msgstr "Grupy Pól"
|
28 |
|
29 |
-
#: ../acf.php:303
|
30 |
-
#: ../core/controllers/field_groups.php:153
|
31 |
#: ../core/controllers/upgrade.php:70
|
32 |
msgid "Advanced Custom Fields"
|
33 |
msgstr "Zaawansowane własne pola"
|
@@ -64,8 +63,7 @@ msgstr "Nie znaleziono grupy pól"
|
|
64 |
msgid "No Field Groups found in Trash"
|
65 |
msgstr "Brak grup pól w koszu"
|
66 |
|
67 |
-
#: ../acf.php:346
|
68 |
-
#: ../acf.php:349
|
69 |
msgid "Field group updated."
|
70 |
msgstr "Grupa pól została zaktualizowana."
|
71 |
|
@@ -126,14 +124,12 @@ msgstr "Duży"
|
|
126 |
msgid "Full"
|
127 |
msgstr "Pełny"
|
128 |
|
129 |
-
#: ../core/everything_fields.php:201
|
130 |
-
#: ../core/options_page.php:178
|
131 |
#: ../core/controllers/input.php:450
|
132 |
msgid "Validation Failed. One or more fields below are required."
|
133 |
msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
134 |
|
135 |
-
#: ../core/options_page.php:62
|
136 |
-
#: ../core/options_page.php:74
|
137 |
#: ../core/controllers/field_group.php:150
|
138 |
#: ../core/controllers/field_group.php:386
|
139 |
#: ../core/controllers/options_page.php:62
|
@@ -141,23 +137,19 @@ msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
|
141 |
msgid "Options"
|
142 |
msgstr "Opcje"
|
143 |
|
144 |
-
#: ../core/options_page.php:157
|
145 |
-
#: ../core/controllers/options_page.php:140
|
146 |
msgid "Options Updated"
|
147 |
msgstr "Ustawienia zostały zaktualizowane"
|
148 |
|
149 |
-
#: ../core/options_page.php:271
|
150 |
-
#: ../core/controllers/options_page.php:249
|
151 |
msgid "No Custom Field Group found for the options page"
|
152 |
msgstr "Brak grup własnych pól dla strony opcji"
|
153 |
|
154 |
-
#: ../core/options_page.php:271
|
155 |
-
#: ../core/controllers/options_page.php:249
|
156 |
msgid "Create a Custom Field Group"
|
157 |
msgstr "Utwórz grupę własnych pól"
|
158 |
|
159 |
-
#: ../core/options_page.php:282
|
160 |
-
#: ../core/controllers/options_page.php:260
|
161 |
msgid "Publish"
|
162 |
msgstr "Opublikuj"
|
163 |
|
@@ -212,8 +204,12 @@ msgid "Resources"
|
|
212 |
msgstr "Zasoby"
|
213 |
|
214 |
#: ../core/controllers/field_groups.php:159
|
215 |
-
msgid "
|
216 |
-
|
|
|
|
|
|
|
|
|
217 |
|
218 |
#: ../core/controllers/field_groups.php:160
|
219 |
msgid "View the ACF website"
|
@@ -243,8 +239,7 @@ msgstr "Edytuj plik"
|
|
243 |
msgid "Add Image to Field"
|
244 |
msgstr "Dodaj zdjęcie do pola"
|
245 |
|
246 |
-
#: ../core/controllers/input.php:454
|
247 |
-
#: ../core/controllers/input.php:457
|
248 |
msgid "Edit Image"
|
249 |
msgstr "Edytuj zdjęcie"
|
250 |
|
@@ -320,17 +315,13 @@ msgstr "Kod aktywacyjny"
|
|
320 |
msgid "Repeater Field"
|
321 |
msgstr "Pole powtarzalne"
|
322 |
|
323 |
-
#: ../core/controllers/settings.php:196
|
324 |
-
#: ../core/controllers/settings.php:
|
325 |
-
#: ../core/controllers/settings.php:234
|
326 |
-
#: ../core/controllers/settings.php:253
|
327 |
msgid "Active"
|
328 |
msgstr "Aktywne"
|
329 |
|
330 |
-
#: ../core/controllers/settings.php:196
|
331 |
-
#: ../core/controllers/settings.php:
|
332 |
-
#: ../core/controllers/settings.php:234
|
333 |
-
#: ../core/controllers/settings.php:253
|
334 |
msgid "Inactive"
|
335 |
msgstr "Nieaktywne"
|
336 |
|
@@ -347,8 +338,12 @@ msgid "Options Page"
|
|
347 |
msgstr "Strona opcji"
|
348 |
|
349 |
#: ../core/controllers/settings.php:275
|
350 |
-
msgid "
|
351 |
-
|
|
|
|
|
|
|
|
|
352 |
|
353 |
#: ../core/controllers/settings.php:275
|
354 |
msgid "Find Add-ons"
|
@@ -359,8 +354,12 @@ msgid "Export Field Groups to XML"
|
|
359 |
msgstr "Eksportuj Grupy pól do XML"
|
360 |
|
361 |
#: ../core/controllers/settings.php:326
|
362 |
-
msgid "
|
363 |
-
|
|
|
|
|
|
|
|
|
364 |
|
365 |
#: ../core/controllers/settings.php:329
|
366 |
msgid "Export XML"
|
@@ -410,23 +409,19 @@ msgstr "ACF wygeneruje kod PHP, który możesz wkleić do swego szablonu"
|
|
410 |
msgid "Create PHP"
|
411 |
msgstr "Utwórz PHP"
|
412 |
|
413 |
-
#: ../core/controllers/settings.php:402
|
414 |
-
#: ../core/controllers/settings.php:430
|
415 |
msgid "Register Field Groups with PHP"
|
416 |
msgstr "Utwórz grupę pól z PHP"
|
417 |
|
418 |
-
#: ../core/controllers/settings.php:404
|
419 |
-
#: ../core/controllers/settings.php:432
|
420 |
msgid "Copy the PHP code generated"
|
421 |
msgstr "Skopij wygenerowany kod PHP"
|
422 |
|
423 |
-
#: ../core/controllers/settings.php:405
|
424 |
-
#: ../core/controllers/settings.php:433
|
425 |
msgid "Paste into your functions.php file"
|
426 |
msgstr "Wklej do pliku functions.php"
|
427 |
|
428 |
-
#: ../core/controllers/settings.php:406
|
429 |
-
#: ../core/controllers/settings.php:434
|
430 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
431 |
msgstr "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach."
|
432 |
|
@@ -438,33 +433,43 @@ msgstr "Wróć do ustawień"
|
|
438 |
msgid ""
|
439 |
"/**\n"
|
440 |
" * Activate Add-ons\n"
|
441 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your
|
442 |
-
"
|
443 |
-
" *
|
444 |
-
"
|
|
|
|
|
|
|
|
|
445 |
" */"
|
446 |
msgstr ""
|
447 |
"/**\n"
|
448 |
" * Aktywuj dodatki\n"
|
449 |
" * Możesz tu wpisać kody aktywacyjne uruchamiające dodatkowe funkcje. \n"
|
450 |
-
" * W związku z tym, że kody są na dowolną ilość licencji, możesz je stosować
|
|
|
451 |
" * Użyj kodu aby zaktualizować bazę danych. \n"
|
452 |
-
" * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy
|
|
|
453 |
" */"
|
454 |
|
455 |
#: ../core/controllers/settings.php:468
|
456 |
msgid ""
|
457 |
"/**\n"
|
458 |
" * Register field groups\n"
|
459 |
-
" * The register_field_group function accepts 1 array which holds the
|
460 |
-
"
|
|
|
|
|
461 |
" * This code must run every time the functions.php file is read\n"
|
462 |
" */"
|
463 |
msgstr ""
|
464 |
"/**\n"
|
465 |
" * Zarejestruj grupy pól\n"
|
466 |
-
" * Funkcja register_field_group akceptuje 1 ciąg zmiennych, która zawiera
|
467 |
-
"
|
|
|
|
|
468 |
" * Kod musi być uruchamiany każdorazowo w pliku functions.php\n"
|
469 |
" */"
|
470 |
|
@@ -597,14 +602,12 @@ msgstr "Elastyczna treść"
|
|
597 |
msgid "+ Add Row"
|
598 |
msgstr "+ Dodaj rząd"
|
599 |
|
600 |
-
#: ../core/fields/flexible_content.php:259
|
601 |
-
#: ../core/fields/repeater.php:261
|
602 |
#: ../core/views/meta_box_fields.php:25
|
603 |
msgid "New Field"
|
604 |
msgstr "Nowe pole"
|
605 |
|
606 |
-
#: ../core/fields/flexible_content.php:268
|
607 |
-
#: ../core/fields/radio.php:144
|
608 |
#: ../core/fields/repeater.php:440
|
609 |
msgid "Layout"
|
610 |
msgstr "Szablon"
|
@@ -626,8 +629,7 @@ msgid "Delete Layout"
|
|
626 |
msgstr "Usuń szablon"
|
627 |
|
628 |
#: ../core/fields/flexible_content.php:272
|
629 |
-
#: ../core/fields/flexible_content.php:356
|
630 |
-
#: ../core/fields/repeater.php:317
|
631 |
#: ../core/views/meta_box_fields.php:90
|
632 |
msgid "Delete"
|
633 |
msgstr "Usuń"
|
@@ -648,120 +650,101 @@ msgstr "Wyświetl"
|
|
648 |
msgid "Table"
|
649 |
msgstr "Tabela"
|
650 |
|
651 |
-
#: ../core/fields/flexible_content.php:310
|
652 |
-
#: ../core/fields/repeater.php:451
|
653 |
msgid "Row"
|
654 |
msgstr "Rząd"
|
655 |
|
656 |
-
#: ../core/fields/flexible_content.php:323
|
657 |
-
#: ../core/fields/repeater.php:285
|
658 |
#: ../core/views/meta_box_fields.php:60
|
659 |
msgid "Field Order"
|
660 |
msgstr "Kolejność pola"
|
661 |
|
662 |
#: ../core/fields/flexible_content.php:324
|
663 |
-
#: ../core/fields/flexible_content.php:371
|
664 |
-
#: ../core/fields/repeater.php:
|
665 |
-
#: ../core/fields/repeater.php:333
|
666 |
-
#: ../core/views/meta_box_fields.php:61
|
667 |
#: ../core/views/meta_box_fields.php:105
|
668 |
msgid "Field Label"
|
669 |
msgstr "Etykieta pola"
|
670 |
|
671 |
#: ../core/fields/flexible_content.php:325
|
672 |
-
#: ../core/fields/flexible_content.php:387
|
673 |
-
#: ../core/fields/repeater.php:
|
674 |
-
#: ../core/fields/repeater.php:349
|
675 |
-
#: ../core/views/meta_box_fields.php:62
|
676 |
#: ../core/views/meta_box_fields.php:121
|
677 |
msgid "Field Name"
|
678 |
msgstr "Nazwa pola"
|
679 |
|
680 |
-
#: ../core/fields/flexible_content.php:334
|
681 |
-
|
682 |
-
|
683 |
-
msgstr "
|
|
|
|
|
684 |
|
685 |
#: ../core/fields/flexible_content.php:350
|
686 |
-
#: ../core/fields/flexible_content.php:353
|
687 |
-
#: ../core/fields/repeater.php:
|
688 |
-
#: ../core/fields/repeater.php:314
|
689 |
-
#: ../core/views/meta_box_fields.php:84
|
690 |
#: ../core/views/meta_box_fields.php:87
|
691 |
msgid "Edit this Field"
|
692 |
msgstr "Edytuj to pole"
|
693 |
|
694 |
-
#: ../core/fields/flexible_content.php:354
|
695 |
-
#: ../core/fields/repeater.php:315
|
696 |
#: ../core/views/meta_box_fields.php:88
|
697 |
msgid "Read documentation for this field"
|
698 |
msgstr "Przeczytaj dokumentację tego pola"
|
699 |
|
700 |
-
#: ../core/fields/flexible_content.php:354
|
701 |
-
#: ../core/fields/repeater.php:315
|
702 |
#: ../core/views/meta_box_fields.php:88
|
703 |
msgid "Docs"
|
704 |
msgstr "Dokumentacja"
|
705 |
|
706 |
-
#: ../core/fields/flexible_content.php:355
|
707 |
-
#: ../core/fields/repeater.php:316
|
708 |
#: ../core/views/meta_box_fields.php:89
|
709 |
msgid "Duplicate this Field"
|
710 |
msgstr "Duplikuj to pole"
|
711 |
|
712 |
-
#: ../core/fields/flexible_content.php:355
|
713 |
-
#: ../core/fields/repeater.php:316
|
714 |
#: ../core/views/meta_box_fields.php:89
|
715 |
msgid "Duplicate"
|
716 |
msgstr "Duplikuj"
|
717 |
|
718 |
-
#: ../core/fields/flexible_content.php:356
|
719 |
-
#: ../core/fields/repeater.php:317
|
720 |
#: ../core/views/meta_box_fields.php:90
|
721 |
msgid "Delete this Field"
|
722 |
msgstr "Usuń to pole"
|
723 |
|
724 |
-
#: ../core/fields/flexible_content.php:372
|
725 |
-
#: ../core/fields/repeater.php:334
|
726 |
#: ../core/views/meta_box_fields.php:106
|
727 |
msgid "This is the name which will appear on the EDIT page"
|
728 |
msgstr "To jest nawa, która pojawi się na stronie edycji"
|
729 |
|
730 |
-
#: ../core/fields/flexible_content.php:388
|
731 |
-
#: ../core/fields/repeater.php:350
|
732 |
#: ../core/views/meta_box_fields.php:122
|
733 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
734 |
msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki"
|
735 |
|
736 |
-
#: ../core/fields/flexible_content.php:422
|
737 |
-
#: ../core/fields/repeater.php:384
|
738 |
msgid "Save Field"
|
739 |
msgstr "Zapisz pole"
|
740 |
|
741 |
-
#: ../core/fields/flexible_content.php:427
|
742 |
-
#: ../core/fields/repeater.php:389
|
743 |
#: ../core/views/meta_box_fields.php:188
|
744 |
msgid "Close Field"
|
745 |
msgstr "Zamknij to pole"
|
746 |
|
747 |
-
#: ../core/fields/flexible_content.php:427
|
748 |
-
#: ../core/fields/repeater.php:389
|
749 |
msgid "Close Sub Field"
|
750 |
msgstr "Zamknij pole"
|
751 |
|
752 |
-
#: ../core/fields/flexible_content.php:441
|
753 |
-
#: ../core/fields/repeater.php:404
|
754 |
#: ../core/views/meta_box_fields.php:201
|
755 |
msgid "Drag and drop to reorder"
|
756 |
msgstr "Przeciągnij i zmień kolejność"
|
757 |
|
758 |
-
#: ../core/fields/flexible_content.php:442
|
759 |
-
#: ../core/fields/repeater.php:405
|
760 |
msgid "+ Add Sub Field"
|
761 |
msgstr "+ Dodaj pole podrzędne"
|
762 |
|
763 |
-
#: ../core/fields/flexible_content.php:449
|
764 |
-
#: ../core/fields/repeater.php:459
|
765 |
msgid "Button Label"
|
766 |
msgstr "Tekst przycisku"
|
767 |
|
@@ -769,23 +752,19 @@ msgstr "Tekst przycisku"
|
|
769 |
msgid "Gallery"
|
770 |
msgstr "Galeria"
|
771 |
|
772 |
-
#: ../core/fields/gallery.php:70
|
773 |
-
#: ../core/fields/gallery.php:233
|
774 |
msgid "Alternate Text"
|
775 |
msgstr "Tekst alternatywny"
|
776 |
|
777 |
-
#: ../core/fields/gallery.php:74
|
778 |
-
#: ../core/fields/gallery.php:237
|
779 |
msgid "Caption"
|
780 |
msgstr "Podpis"
|
781 |
|
782 |
-
#: ../core/fields/gallery.php:78
|
783 |
-
#: ../core/fields/gallery.php:241
|
784 |
msgid "Description"
|
785 |
msgstr "Opis"
|
786 |
|
787 |
-
#: ../core/fields/gallery.php:117
|
788 |
-
#: ../core/fields/image.php:242
|
789 |
msgid "Preview Size"
|
790 |
msgstr "Wielkość obrazka"
|
791 |
|
@@ -797,8 +776,7 @@ msgstr "Zalecana jest miniatura."
|
|
797 |
msgid "Image Updated"
|
798 |
msgstr "Zdjęcie zostało zaktualizowane."
|
799 |
|
800 |
-
#: ../core/fields/gallery.php:262
|
801 |
-
#: ../core/fields/gallery.php:642
|
802 |
#: ../core/fields/image.php:193
|
803 |
msgid "Add Image"
|
804 |
msgstr "Dodaj obrazek"
|
@@ -819,8 +797,7 @@ msgstr "To zdjęcie już jest w galerii."
|
|
819 |
msgid "Image Added"
|
820 |
msgstr "Zdjęcie zostało dodane."
|
821 |
|
822 |
-
#: ../core/fields/gallery.php:645
|
823 |
-
#: ../core/fields/image.php:555
|
824 |
msgid "Update Image"
|
825 |
msgstr "Aktualizuj obrazek"
|
826 |
|
@@ -860,16 +837,13 @@ msgstr "Wybierz obrazek"
|
|
860 |
msgid "Page Link"
|
861 |
msgstr "Link do strony"
|
862 |
|
863 |
-
#: ../core/fields/page_link.php:71
|
864 |
-
#: ../core/fields/post_object.php:64
|
865 |
#: ../core/fields/select.php:21
|
866 |
msgid "Select"
|
867 |
msgstr "Przycisk wyboru (dropdown)"
|
868 |
|
869 |
-
#: ../core/fields/page_link.php:196
|
870 |
-
#: ../core/fields/
|
871 |
-
#: ../core/fields/relationship.php:247
|
872 |
-
#: ../core/views/meta_box_location.php:48
|
873 |
msgid "Post Type"
|
874 |
msgstr "Typ wpisu"
|
875 |
|
@@ -879,36 +853,29 @@ msgid ""
|
|
879 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
880 |
msgstr ""
|
881 |
"Filtruj wpisy wybierając typ wpisu<br />\n"
|
882 |
-
"\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje
|
|
|
883 |
|
884 |
-
#: ../core/fields/page_link.php:225
|
885 |
-
#: ../core/fields/post_object.php:283
|
886 |
#: ../core/fields/select.php:194
|
887 |
msgid "Allow Null?"
|
888 |
msgstr "Zezwolić na pustą wartość?"
|
889 |
|
890 |
-
#: ../core/fields/page_link.php:234
|
891 |
-
#: ../core/fields/
|
892 |
-
#: ../core/fields/
|
893 |
-
#: ../core/fields/post_object.php:311
|
894 |
-
#: ../core/fields/select.php:203
|
895 |
-
#: ../core/fields/select.php:222
|
896 |
#: ../core/fields/wysiwyg.php:104
|
897 |
msgid "Yes"
|
898 |
msgstr "Tak"
|
899 |
|
900 |
-
#: ../core/fields/page_link.php:235
|
901 |
-
#: ../core/fields/
|
902 |
-
#: ../core/fields/
|
903 |
-
#: ../core/fields/post_object.php:312
|
904 |
-
#: ../core/fields/select.php:204
|
905 |
-
#: ../core/fields/select.php:223
|
906 |
#: ../core/fields/wysiwyg.php:105
|
907 |
msgid "No"
|
908 |
msgstr "Nie"
|
909 |
|
910 |
-
#: ../core/fields/page_link.php:244
|
911 |
-
#: ../core/fields/post_object.php:302
|
912 |
#: ../core/fields/select.php:213
|
913 |
msgid "Select multiple values?"
|
914 |
msgstr "Możliwość wyboru wielu wartości?"
|
@@ -917,8 +884,7 @@ msgstr "Możliwość wyboru wielu wartości?"
|
|
917 |
msgid "Post Object"
|
918 |
msgstr "Wpisy"
|
919 |
|
920 |
-
#: ../core/fields/post_object.php:233
|
921 |
-
#: ../core/fields/relationship.php:296
|
922 |
msgid "Filter from Taxonomy"
|
923 |
msgstr "Filtruj wg taksonomii"
|
924 |
|
@@ -926,10 +892,8 @@ msgstr "Filtruj wg taksonomii"
|
|
926 |
msgid "Radio Button"
|
927 |
msgstr "Przycisk wyboru (radio)"
|
928 |
|
929 |
-
#: ../core/fields/radio.php:130
|
930 |
-
#: ../core/fields/
|
931 |
-
#: ../core/fields/text.php:61
|
932 |
-
#: ../core/fields/textarea.php:62
|
933 |
msgid "Default Value"
|
934 |
msgstr "Domyślna wartość"
|
935 |
|
@@ -961,8 +925,7 @@ msgstr "Wpisanie -1 oznacza nieskończoność"
|
|
961 |
msgid "Repeater"
|
962 |
msgstr "Pole powtarzalne"
|
963 |
|
964 |
-
#: ../core/fields/repeater.php:66
|
965 |
-
#: ../core/fields/repeater.php:248
|
966 |
msgid "Add Row"
|
967 |
msgstr "Dodaj rząd"
|
968 |
|
@@ -986,8 +949,7 @@ msgstr "Tabela (domyślne)"
|
|
986 |
msgid "Text"
|
987 |
msgstr "Tekst"
|
988 |
|
989 |
-
#: ../core/fields/text.php:75
|
990 |
-
#: ../core/fields/textarea.php:76
|
991 |
msgid "Formatting"
|
992 |
msgstr "Formatowanie"
|
993 |
|
@@ -995,13 +957,11 @@ msgstr "Formatowanie"
|
|
995 |
msgid "Define how to render html tags"
|
996 |
msgstr "Określ jak traktować znaczniki HTML"
|
997 |
|
998 |
-
#: ../core/fields/text.php:85
|
999 |
-
#: ../core/fields/textarea.php:86
|
1000 |
msgid "None"
|
1001 |
msgstr "Brak"
|
1002 |
|
1003 |
-
#: ../core/fields/text.php:86
|
1004 |
-
#: ../core/fields/textarea.php:88
|
1005 |
msgid "HTML"
|
1006 |
msgstr "HTML"
|
1007 |
|
@@ -1037,8 +997,7 @@ msgstr "Edytor WYSIWYG"
|
|
1037 |
msgid "Toolbar"
|
1038 |
msgstr "Pasek narzędzi"
|
1039 |
|
1040 |
-
#: ../core/fields/wysiwyg.php:86
|
1041 |
-
#: ../core/views/meta_box_location.php:47
|
1042 |
msgid "Basic"
|
1043 |
msgstr "Podstawowe"
|
1044 |
|
@@ -1063,8 +1022,12 @@ msgid "Move to trash. Are you sure?"
|
|
1063 |
msgstr "Przenieś do kosza. Jesteś pewny?"
|
1064 |
|
1065 |
#: ../core/views/meta_box_fields.php:73
|
1066 |
-
msgid "
|
1067 |
-
|
|
|
|
|
|
|
|
|
1068 |
|
1069 |
#: ../core/views/meta_box_fields.php:149
|
1070 |
msgid "Field Instructions"
|
@@ -1087,8 +1050,12 @@ msgid "Rules"
|
|
1087 |
msgstr "Warunki"
|
1088 |
|
1089 |
#: ../core/views/meta_box_location.php:36
|
1090 |
-
msgid "
|
1091 |
-
|
|
|
|
|
|
|
|
|
1092 |
|
1093 |
#: ../core/views/meta_box_location.php:49
|
1094 |
msgid "Logged in User Type"
|
@@ -1219,8 +1186,13 @@ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
|
1219 |
msgstr "<b>Wybierz</b> elementy, które chcesz <b>ukryć</b> na stronie edycji."
|
1220 |
|
1221 |
#: ../core/views/meta_box_options.php:82
|
1222 |
-
msgid "
|
1223 |
-
|
|
|
|
|
|
|
|
|
|
|
1224 |
|
1225 |
#: ../core/views/meta_box_options.php:92
|
1226 |
msgid "Content Editor"
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: 2012-07-13 15:51+0100\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 19:00-0600\n"
|
9 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
10 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;_n;_getttext\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"Language: pl_PL\n"
|
18 |
+
"X-Generator: Poedit 1.5.5\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
#: ../acf.php:281
|
26 |
msgid "Field Groups"
|
27 |
msgstr "Grupy Pól"
|
28 |
|
29 |
+
#: ../acf.php:303 ../core/controllers/field_groups.php:153
|
|
|
30 |
#: ../core/controllers/upgrade.php:70
|
31 |
msgid "Advanced Custom Fields"
|
32 |
msgstr "Zaawansowane własne pola"
|
63 |
msgid "No Field Groups found in Trash"
|
64 |
msgstr "Brak grup pól w koszu"
|
65 |
|
66 |
+
#: ../acf.php:346 ../acf.php:349
|
|
|
67 |
msgid "Field group updated."
|
68 |
msgstr "Grupa pól została zaktualizowana."
|
69 |
|
124 |
msgid "Full"
|
125 |
msgstr "Pełny"
|
126 |
|
127 |
+
#: ../core/everything_fields.php:201 ../core/options_page.php:178
|
|
|
128 |
#: ../core/controllers/input.php:450
|
129 |
msgid "Validation Failed. One or more fields below are required."
|
130 |
msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
131 |
|
132 |
+
#: ../core/options_page.php:62 ../core/options_page.php:74
|
|
|
133 |
#: ../core/controllers/field_group.php:150
|
134 |
#: ../core/controllers/field_group.php:386
|
135 |
#: ../core/controllers/options_page.php:62
|
137 |
msgid "Options"
|
138 |
msgstr "Opcje"
|
139 |
|
140 |
+
#: ../core/options_page.php:157 ../core/controllers/options_page.php:140
|
|
|
141 |
msgid "Options Updated"
|
142 |
msgstr "Ustawienia zostały zaktualizowane"
|
143 |
|
144 |
+
#: ../core/options_page.php:271 ../core/controllers/options_page.php:249
|
|
|
145 |
msgid "No Custom Field Group found for the options page"
|
146 |
msgstr "Brak grup własnych pól dla strony opcji"
|
147 |
|
148 |
+
#: ../core/options_page.php:271 ../core/controllers/options_page.php:249
|
|
|
149 |
msgid "Create a Custom Field Group"
|
150 |
msgstr "Utwórz grupę własnych pól"
|
151 |
|
152 |
+
#: ../core/options_page.php:282 ../core/controllers/options_page.php:260
|
|
|
153 |
msgid "Publish"
|
154 |
msgstr "Opublikuj"
|
155 |
|
204 |
msgstr "Zasoby"
|
205 |
|
206 |
#: ../core/controllers/field_groups.php:159
|
207 |
+
msgid ""
|
208 |
+
"Read documentation, learn the functions and find some tips & tricks for "
|
209 |
+
"your next web project."
|
210 |
+
msgstr ""
|
211 |
+
"Przeczytaj dokumentację, naucz się funkcji i poznaj parę tricków, które mogą "
|
212 |
+
"przydać Ci się w Twoim kolejnym projekcie."
|
213 |
|
214 |
#: ../core/controllers/field_groups.php:160
|
215 |
msgid "View the ACF website"
|
239 |
msgid "Add Image to Field"
|
240 |
msgstr "Dodaj zdjęcie do pola"
|
241 |
|
242 |
+
#: ../core/controllers/input.php:454 ../core/controllers/input.php:457
|
|
|
243 |
msgid "Edit Image"
|
244 |
msgstr "Edytuj zdjęcie"
|
245 |
|
315 |
msgid "Repeater Field"
|
316 |
msgstr "Pole powtarzalne"
|
317 |
|
318 |
+
#: ../core/controllers/settings.php:196 ../core/controllers/settings.php:215
|
319 |
+
#: ../core/controllers/settings.php:234 ../core/controllers/settings.php:253
|
|
|
|
|
320 |
msgid "Active"
|
321 |
msgstr "Aktywne"
|
322 |
|
323 |
+
#: ../core/controllers/settings.php:196 ../core/controllers/settings.php:215
|
324 |
+
#: ../core/controllers/settings.php:234 ../core/controllers/settings.php:253
|
|
|
|
|
325 |
msgid "Inactive"
|
326 |
msgstr "Nieaktywne"
|
327 |
|
338 |
msgstr "Strona opcji"
|
339 |
|
340 |
#: ../core/controllers/settings.php:275
|
341 |
+
msgid ""
|
342 |
+
"Add-ons can be unlocked by purchasing a license key. Each key can be used on "
|
343 |
+
"multiple sites."
|
344 |
+
msgstr ""
|
345 |
+
"Dodatki można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może "
|
346 |
+
"być wykorzystywany na dowolnej liczbie stron."
|
347 |
|
348 |
#: ../core/controllers/settings.php:275
|
349 |
msgid "Find Add-ons"
|
354 |
msgstr "Eksportuj Grupy pól do XML"
|
355 |
|
356 |
#: ../core/controllers/settings.php:326
|
357 |
+
msgid ""
|
358 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
359 |
+
"import plugin."
|
360 |
+
msgstr ""
|
361 |
+
"Wtyczka utworzy plik eksportu .xml, który jest kompatybilny z domyślną "
|
362 |
+
"wtyczką importu plików."
|
363 |
|
364 |
#: ../core/controllers/settings.php:329
|
365 |
msgid "Export XML"
|
409 |
msgid "Create PHP"
|
410 |
msgstr "Utwórz PHP"
|
411 |
|
412 |
+
#: ../core/controllers/settings.php:402 ../core/controllers/settings.php:430
|
|
|
413 |
msgid "Register Field Groups with PHP"
|
414 |
msgstr "Utwórz grupę pól z PHP"
|
415 |
|
416 |
+
#: ../core/controllers/settings.php:404 ../core/controllers/settings.php:432
|
|
|
417 |
msgid "Copy the PHP code generated"
|
418 |
msgstr "Skopij wygenerowany kod PHP"
|
419 |
|
420 |
+
#: ../core/controllers/settings.php:405 ../core/controllers/settings.php:433
|
|
|
421 |
msgid "Paste into your functions.php file"
|
422 |
msgstr "Wklej do pliku functions.php"
|
423 |
|
424 |
+
#: ../core/controllers/settings.php:406 ../core/controllers/settings.php:434
|
|
|
425 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
426 |
msgstr "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach."
|
427 |
|
433 |
msgid ""
|
434 |
"/**\n"
|
435 |
" * Activate Add-ons\n"
|
436 |
+
" * Here you can enter your activation codes to unlock Add-ons to use in your "
|
437 |
+
"theme. \n"
|
438 |
+
" * Since all activation codes are multi-site licenses, you are allowed to "
|
439 |
+
"include your key in premium themes. \n"
|
440 |
+
" * Use the commented out code to update the database with your activation "
|
441 |
+
"code. \n"
|
442 |
+
" * You may place this code inside an IF statement that only runs on theme "
|
443 |
+
"activation.\n"
|
444 |
" */"
|
445 |
msgstr ""
|
446 |
"/**\n"
|
447 |
" * Aktywuj dodatki\n"
|
448 |
" * Możesz tu wpisać kody aktywacyjne uruchamiające dodatkowe funkcje. \n"
|
449 |
+
" * W związku z tym, że kody są na dowolną ilość licencji, możesz je stosować "
|
450 |
+
"także w płatnych szablonach. \n"
|
451 |
" * Użyj kodu aby zaktualizować bazę danych. \n"
|
452 |
+
" * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy "
|
453 |
+
"aktywacji szablonu.\n"
|
454 |
" */"
|
455 |
|
456 |
#: ../core/controllers/settings.php:468
|
457 |
msgid ""
|
458 |
"/**\n"
|
459 |
" * Register field groups\n"
|
460 |
+
" * The register_field_group function accepts 1 array which holds the "
|
461 |
+
"relevant data to register a field group\n"
|
462 |
+
" * You may edit the array as you see fit. However, this may result in errors "
|
463 |
+
"if the array is not compatible with ACF\n"
|
464 |
" * This code must run every time the functions.php file is read\n"
|
465 |
" */"
|
466 |
msgstr ""
|
467 |
"/**\n"
|
468 |
" * Zarejestruj grupy pól\n"
|
469 |
+
" * Funkcja register_field_group akceptuje 1 ciąg zmiennych, która zawiera "
|
470 |
+
"wszystkie dane służące rejestracji grupy\n"
|
471 |
+
" * Możesz edytować tę zmienną i dopasowywać ją do swoich potrzeb. Ale może "
|
472 |
+
"to też powodować błąd jeśli ta zmienna nie jest kompatybilna z ACF\n"
|
473 |
" * Kod musi być uruchamiany każdorazowo w pliku functions.php\n"
|
474 |
" */"
|
475 |
|
602 |
msgid "+ Add Row"
|
603 |
msgstr "+ Dodaj rząd"
|
604 |
|
605 |
+
#: ../core/fields/flexible_content.php:259 ../core/fields/repeater.php:261
|
|
|
606 |
#: ../core/views/meta_box_fields.php:25
|
607 |
msgid "New Field"
|
608 |
msgstr "Nowe pole"
|
609 |
|
610 |
+
#: ../core/fields/flexible_content.php:268 ../core/fields/radio.php:144
|
|
|
611 |
#: ../core/fields/repeater.php:440
|
612 |
msgid "Layout"
|
613 |
msgstr "Szablon"
|
629 |
msgstr "Usuń szablon"
|
630 |
|
631 |
#: ../core/fields/flexible_content.php:272
|
632 |
+
#: ../core/fields/flexible_content.php:356 ../core/fields/repeater.php:317
|
|
|
633 |
#: ../core/views/meta_box_fields.php:90
|
634 |
msgid "Delete"
|
635 |
msgstr "Usuń"
|
650 |
msgid "Table"
|
651 |
msgstr "Tabela"
|
652 |
|
653 |
+
#: ../core/fields/flexible_content.php:310 ../core/fields/repeater.php:451
|
|
|
654 |
msgid "Row"
|
655 |
msgstr "Rząd"
|
656 |
|
657 |
+
#: ../core/fields/flexible_content.php:323 ../core/fields/repeater.php:285
|
|
|
658 |
#: ../core/views/meta_box_fields.php:60
|
659 |
msgid "Field Order"
|
660 |
msgstr "Kolejność pola"
|
661 |
|
662 |
#: ../core/fields/flexible_content.php:324
|
663 |
+
#: ../core/fields/flexible_content.php:371 ../core/fields/repeater.php:286
|
664 |
+
#: ../core/fields/repeater.php:333 ../core/views/meta_box_fields.php:61
|
|
|
|
|
665 |
#: ../core/views/meta_box_fields.php:105
|
666 |
msgid "Field Label"
|
667 |
msgstr "Etykieta pola"
|
668 |
|
669 |
#: ../core/fields/flexible_content.php:325
|
670 |
+
#: ../core/fields/flexible_content.php:387 ../core/fields/repeater.php:287
|
671 |
+
#: ../core/fields/repeater.php:349 ../core/views/meta_box_fields.php:62
|
|
|
|
|
672 |
#: ../core/views/meta_box_fields.php:121
|
673 |
msgid "Field Name"
|
674 |
msgstr "Nazwa pola"
|
675 |
|
676 |
+
#: ../core/fields/flexible_content.php:334 ../core/fields/repeater.php:296
|
677 |
+
msgid ""
|
678 |
+
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
679 |
+
msgstr ""
|
680 |
+
"Brak pól. Kliknij przycisk \"+ Dodaj pole podrzędne\" aby utworzyć pierwsze "
|
681 |
+
"własne pole."
|
682 |
|
683 |
#: ../core/fields/flexible_content.php:350
|
684 |
+
#: ../core/fields/flexible_content.php:353 ../core/fields/repeater.php:311
|
685 |
+
#: ../core/fields/repeater.php:314 ../core/views/meta_box_fields.php:84
|
|
|
|
|
686 |
#: ../core/views/meta_box_fields.php:87
|
687 |
msgid "Edit this Field"
|
688 |
msgstr "Edytuj to pole"
|
689 |
|
690 |
+
#: ../core/fields/flexible_content.php:354 ../core/fields/repeater.php:315
|
|
|
691 |
#: ../core/views/meta_box_fields.php:88
|
692 |
msgid "Read documentation for this field"
|
693 |
msgstr "Przeczytaj dokumentację tego pola"
|
694 |
|
695 |
+
#: ../core/fields/flexible_content.php:354 ../core/fields/repeater.php:315
|
|
|
696 |
#: ../core/views/meta_box_fields.php:88
|
697 |
msgid "Docs"
|
698 |
msgstr "Dokumentacja"
|
699 |
|
700 |
+
#: ../core/fields/flexible_content.php:355 ../core/fields/repeater.php:316
|
|
|
701 |
#: ../core/views/meta_box_fields.php:89
|
702 |
msgid "Duplicate this Field"
|
703 |
msgstr "Duplikuj to pole"
|
704 |
|
705 |
+
#: ../core/fields/flexible_content.php:355 ../core/fields/repeater.php:316
|
|
|
706 |
#: ../core/views/meta_box_fields.php:89
|
707 |
msgid "Duplicate"
|
708 |
msgstr "Duplikuj"
|
709 |
|
710 |
+
#: ../core/fields/flexible_content.php:356 ../core/fields/repeater.php:317
|
|
|
711 |
#: ../core/views/meta_box_fields.php:90
|
712 |
msgid "Delete this Field"
|
713 |
msgstr "Usuń to pole"
|
714 |
|
715 |
+
#: ../core/fields/flexible_content.php:372 ../core/fields/repeater.php:334
|
|
|
716 |
#: ../core/views/meta_box_fields.php:106
|
717 |
msgid "This is the name which will appear on the EDIT page"
|
718 |
msgstr "To jest nawa, która pojawi się na stronie edycji"
|
719 |
|
720 |
+
#: ../core/fields/flexible_content.php:388 ../core/fields/repeater.php:350
|
|
|
721 |
#: ../core/views/meta_box_fields.php:122
|
722 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
723 |
msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki"
|
724 |
|
725 |
+
#: ../core/fields/flexible_content.php:422 ../core/fields/repeater.php:384
|
|
|
726 |
msgid "Save Field"
|
727 |
msgstr "Zapisz pole"
|
728 |
|
729 |
+
#: ../core/fields/flexible_content.php:427 ../core/fields/repeater.php:389
|
|
|
730 |
#: ../core/views/meta_box_fields.php:188
|
731 |
msgid "Close Field"
|
732 |
msgstr "Zamknij to pole"
|
733 |
|
734 |
+
#: ../core/fields/flexible_content.php:427 ../core/fields/repeater.php:389
|
|
|
735 |
msgid "Close Sub Field"
|
736 |
msgstr "Zamknij pole"
|
737 |
|
738 |
+
#: ../core/fields/flexible_content.php:441 ../core/fields/repeater.php:404
|
|
|
739 |
#: ../core/views/meta_box_fields.php:201
|
740 |
msgid "Drag and drop to reorder"
|
741 |
msgstr "Przeciągnij i zmień kolejność"
|
742 |
|
743 |
+
#: ../core/fields/flexible_content.php:442 ../core/fields/repeater.php:405
|
|
|
744 |
msgid "+ Add Sub Field"
|
745 |
msgstr "+ Dodaj pole podrzędne"
|
746 |
|
747 |
+
#: ../core/fields/flexible_content.php:449 ../core/fields/repeater.php:459
|
|
|
748 |
msgid "Button Label"
|
749 |
msgstr "Tekst przycisku"
|
750 |
|
752 |
msgid "Gallery"
|
753 |
msgstr "Galeria"
|
754 |
|
755 |
+
#: ../core/fields/gallery.php:70 ../core/fields/gallery.php:233
|
|
|
756 |
msgid "Alternate Text"
|
757 |
msgstr "Tekst alternatywny"
|
758 |
|
759 |
+
#: ../core/fields/gallery.php:74 ../core/fields/gallery.php:237
|
|
|
760 |
msgid "Caption"
|
761 |
msgstr "Podpis"
|
762 |
|
763 |
+
#: ../core/fields/gallery.php:78 ../core/fields/gallery.php:241
|
|
|
764 |
msgid "Description"
|
765 |
msgstr "Opis"
|
766 |
|
767 |
+
#: ../core/fields/gallery.php:117 ../core/fields/image.php:242
|
|
|
768 |
msgid "Preview Size"
|
769 |
msgstr "Wielkość obrazka"
|
770 |
|
776 |
msgid "Image Updated"
|
777 |
msgstr "Zdjęcie zostało zaktualizowane."
|
778 |
|
779 |
+
#: ../core/fields/gallery.php:262 ../core/fields/gallery.php:642
|
|
|
780 |
#: ../core/fields/image.php:193
|
781 |
msgid "Add Image"
|
782 |
msgstr "Dodaj obrazek"
|
797 |
msgid "Image Added"
|
798 |
msgstr "Zdjęcie zostało dodane."
|
799 |
|
800 |
+
#: ../core/fields/gallery.php:645 ../core/fields/image.php:555
|
|
|
801 |
msgid "Update Image"
|
802 |
msgstr "Aktualizuj obrazek"
|
803 |
|
837 |
msgid "Page Link"
|
838 |
msgstr "Link do strony"
|
839 |
|
840 |
+
#: ../core/fields/page_link.php:71 ../core/fields/post_object.php:64
|
|
|
841 |
#: ../core/fields/select.php:21
|
842 |
msgid "Select"
|
843 |
msgstr "Przycisk wyboru (dropdown)"
|
844 |
|
845 |
+
#: ../core/fields/page_link.php:196 ../core/fields/post_object.php:211
|
846 |
+
#: ../core/fields/relationship.php:247 ../core/views/meta_box_location.php:48
|
|
|
|
|
847 |
msgid "Post Type"
|
848 |
msgstr "Typ wpisu"
|
849 |
|
853 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
854 |
msgstr ""
|
855 |
"Filtruj wpisy wybierając typ wpisu<br />\n"
|
856 |
+
"\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje "
|
857 |
+
"wyświetlenie wszystkich"
|
858 |
|
859 |
+
#: ../core/fields/page_link.php:225 ../core/fields/post_object.php:283
|
|
|
860 |
#: ../core/fields/select.php:194
|
861 |
msgid "Allow Null?"
|
862 |
msgstr "Zezwolić na pustą wartość?"
|
863 |
|
864 |
+
#: ../core/fields/page_link.php:234 ../core/fields/page_link.php:253
|
865 |
+
#: ../core/fields/post_object.php:292 ../core/fields/post_object.php:311
|
866 |
+
#: ../core/fields/select.php:203 ../core/fields/select.php:222
|
|
|
|
|
|
|
867 |
#: ../core/fields/wysiwyg.php:104
|
868 |
msgid "Yes"
|
869 |
msgstr "Tak"
|
870 |
|
871 |
+
#: ../core/fields/page_link.php:235 ../core/fields/page_link.php:254
|
872 |
+
#: ../core/fields/post_object.php:293 ../core/fields/post_object.php:312
|
873 |
+
#: ../core/fields/select.php:204 ../core/fields/select.php:223
|
|
|
|
|
|
|
874 |
#: ../core/fields/wysiwyg.php:105
|
875 |
msgid "No"
|
876 |
msgstr "Nie"
|
877 |
|
878 |
+
#: ../core/fields/page_link.php:244 ../core/fields/post_object.php:302
|
|
|
879 |
#: ../core/fields/select.php:213
|
880 |
msgid "Select multiple values?"
|
881 |
msgstr "Możliwość wyboru wielu wartości?"
|
884 |
msgid "Post Object"
|
885 |
msgstr "Wpisy"
|
886 |
|
887 |
+
#: ../core/fields/post_object.php:233 ../core/fields/relationship.php:296
|
|
|
888 |
msgid "Filter from Taxonomy"
|
889 |
msgstr "Filtruj wg taksonomii"
|
890 |
|
892 |
msgid "Radio Button"
|
893 |
msgstr "Przycisk wyboru (radio)"
|
894 |
|
895 |
+
#: ../core/fields/radio.php:130 ../core/fields/select.php:180
|
896 |
+
#: ../core/fields/text.php:61 ../core/fields/textarea.php:62
|
|
|
|
|
897 |
msgid "Default Value"
|
898 |
msgstr "Domyślna wartość"
|
899 |
|
925 |
msgid "Repeater"
|
926 |
msgstr "Pole powtarzalne"
|
927 |
|
928 |
+
#: ../core/fields/repeater.php:66 ../core/fields/repeater.php:248
|
|
|
929 |
msgid "Add Row"
|
930 |
msgstr "Dodaj rząd"
|
931 |
|
949 |
msgid "Text"
|
950 |
msgstr "Tekst"
|
951 |
|
952 |
+
#: ../core/fields/text.php:75 ../core/fields/textarea.php:76
|
|
|
953 |
msgid "Formatting"
|
954 |
msgstr "Formatowanie"
|
955 |
|
957 |
msgid "Define how to render html tags"
|
958 |
msgstr "Określ jak traktować znaczniki HTML"
|
959 |
|
960 |
+
#: ../core/fields/text.php:85 ../core/fields/textarea.php:86
|
|
|
961 |
msgid "None"
|
962 |
msgstr "Brak"
|
963 |
|
964 |
+
#: ../core/fields/text.php:86 ../core/fields/textarea.php:88
|
|
|
965 |
msgid "HTML"
|
966 |
msgstr "HTML"
|
967 |
|
997 |
msgid "Toolbar"
|
998 |
msgstr "Pasek narzędzi"
|
999 |
|
1000 |
+
#: ../core/fields/wysiwyg.php:86 ../core/views/meta_box_location.php:47
|
|
|
1001 |
msgid "Basic"
|
1002 |
msgstr "Podstawowe"
|
1003 |
|
1022 |
msgstr "Przenieś do kosza. Jesteś pewny?"
|
1023 |
|
1024 |
#: ../core/views/meta_box_fields.php:73
|
1025 |
+
msgid ""
|
1026 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1027 |
+
"first field."
|
1028 |
+
msgstr ""
|
1029 |
+
"Brak pól. Kliknij przycisk <strong>+ Dodaj pole</strong> aby utworzyć "
|
1030 |
+
"pierwsze własne pole."
|
1031 |
|
1032 |
#: ../core/views/meta_box_fields.php:149
|
1033 |
msgid "Field Instructions"
|
1050 |
msgstr "Warunki"
|
1051 |
|
1052 |
#: ../core/views/meta_box_location.php:36
|
1053 |
+
msgid ""
|
1054 |
+
"Create a set of rules to determine which edit screens will use these "
|
1055 |
+
"advanced custom fields"
|
1056 |
+
msgstr ""
|
1057 |
+
"Utwórz zestaw warunków, które określą w których miejscach będą wykorzystane "
|
1058 |
+
"określone własne pola"
|
1059 |
|
1060 |
#: ../core/views/meta_box_location.php:49
|
1061 |
msgid "Logged in User Type"
|
1186 |
msgstr "<b>Wybierz</b> elementy, które chcesz <b>ukryć</b> na stronie edycji."
|
1187 |
|
1188 |
#: ../core/views/meta_box_options.php:82
|
1189 |
+
msgid ""
|
1190 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
1191 |
+
"options will be used. (the one with the lowest order number)"
|
1192 |
+
msgstr ""
|
1193 |
+
"Jeśli na stronie edycji znajduje się kilka grup pól, zostaną zastosowane "
|
1194 |
+
"ustawienia z pierwszej z nich. (pierwsza grupa pól to ta, która ma "
|
1195 |
+
"najmniejszy numer w kolejności)"
|
1196 |
|
1197 |
#: ../core/views/meta_box_options.php:92
|
1198 |
msgid "Content Editor"
|
lang/acf-pt_BR.mo
CHANGED
Binary file
|
lang/acf-pt_BR.po
CHANGED
@@ -1,1412 +1,2092 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
17 |
-
"
|
18 |
-
"X-
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
msgid "Custom Fields"
|
26 |
msgstr "Campos Personalizados"
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
msgid "Settings"
|
31 |
-
msgstr "Configurações"
|
32 |
-
|
33 |
-
#: acf.php:291
|
34 |
-
#@ acf
|
35 |
msgid "Upgrade"
|
36 |
msgstr "Atualizar"
|
37 |
|
38 |
-
|
39 |
-
|
|
|
40 |
msgid "Fields"
|
41 |
msgstr "Campos"
|
42 |
|
43 |
-
|
44 |
-
|
45 |
msgid "Location"
|
46 |
msgstr "Local"
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
msgid "Add Fields to Edit Screens"
|
51 |
-
msgstr "Adicionar Campos para Telas de Edição"
|
52 |
-
|
53 |
-
#: acf.php:505
|
54 |
-
#: core/admin/meta_box_location.php:133
|
55 |
-
#: core/options_page.php:62
|
56 |
-
#: core/options_page.php:74
|
57 |
-
#@ acf
|
58 |
msgid "Options"
|
59 |
msgstr "Opções"
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
msgid "Customise the edit page"
|
64 |
-
msgstr "Customizar a página de edição"
|
65 |
-
|
66 |
-
#: acf.php:533
|
67 |
-
#: core/api.php:503
|
68 |
-
#: core/everything_fields.php:202
|
69 |
-
#: core/options_page.php:182
|
70 |
-
#@ acf
|
71 |
msgid "Validation Failed. One or more fields below are required."
|
72 |
-
msgstr "Validação
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
msgid "Error: Field Type does not exist!"
|
77 |
-
msgstr "Erro: Tipo de Campo não existe!"
|
78 |
-
|
79 |
-
#: acf.php:2086
|
80 |
-
#@ acf
|
81 |
-
msgid "required"
|
82 |
-
msgstr "obrigatório"
|
83 |
-
|
84 |
-
#: acf.php:2184
|
85 |
-
#@ acf
|
86 |
-
msgid "Parent Page"
|
87 |
-
msgstr "Página Parente"
|
88 |
-
|
89 |
-
#: acf.php:2185
|
90 |
-
#@ acf
|
91 |
-
msgid "Child Page"
|
92 |
-
msgstr "Pagina Filho"
|
93 |
-
|
94 |
-
#: acf.php:2193
|
95 |
-
#@ acf
|
96 |
msgid "Default Template"
|
97 |
-
msgstr "
|
98 |
|
99 |
-
|
100 |
-
|
101 |
msgid "No ACF groups selected"
|
102 |
msgstr "Nenhum grupo ACF selecionado"
|
103 |
|
104 |
-
|
105 |
-
#: core/
|
106 |
-
#: core/admin/page_acf.php:14
|
107 |
-
#@ acf
|
108 |
msgid "Advanced Custom Fields"
|
109 |
msgstr "Advanced Custom Fields"
|
110 |
|
111 |
-
|
112 |
-
|
113 |
-
msgid "requires a database upgrade"
|
114 |
-
msgstr "necessita uma atualização na base de dados"
|
115 |
-
|
116 |
-
#: core/actions/init.php:21
|
117 |
-
#@ acf
|
118 |
-
msgid "why?"
|
119 |
-
msgstr "porquê?"
|
120 |
-
|
121 |
-
#: core/actions/init.php:21
|
122 |
-
#@ acf
|
123 |
-
msgid "Please"
|
124 |
-
msgstr "Por favor"
|
125 |
-
|
126 |
-
#: core/actions/init.php:21
|
127 |
-
#@ acf
|
128 |
-
msgid "backup your database"
|
129 |
-
msgstr "faça um backup do banco de dados"
|
130 |
-
|
131 |
-
#: core/actions/init.php:21
|
132 |
-
#@ acf
|
133 |
-
msgid "then click"
|
134 |
-
msgstr "então clique"
|
135 |
-
|
136 |
-
#: core/actions/init.php:21
|
137 |
-
#@ acf
|
138 |
-
msgid "Upgrade Database"
|
139 |
-
msgstr "Atualizar Banco de Dados"
|
140 |
-
|
141 |
-
#: core/actions/init.php:47
|
142 |
-
#@ acf
|
143 |
-
msgid "Repeater field deactivated"
|
144 |
-
msgstr "Campo repetidor desativado"
|
145 |
-
|
146 |
-
#: core/actions/init.php:51
|
147 |
-
#@ acf
|
148 |
-
msgid "Options page deactivated"
|
149 |
-
msgstr "Página de opções desativada"
|
150 |
-
|
151 |
-
#: core/actions/init.php:55
|
152 |
-
#@ acf
|
153 |
-
msgid "Flexible Content field deactivated"
|
154 |
-
msgstr "Conteúdo flexível desativado"
|
155 |
-
|
156 |
-
#: core/actions/init.php:59
|
157 |
-
#@ acf
|
158 |
-
msgid "Everything Fields deactivated"
|
159 |
-
msgstr "Campos Gerais desativado"
|
160 |
-
|
161 |
-
#: core/actions/init.php:87
|
162 |
-
#@ acf
|
163 |
-
msgid "Repeater field activated"
|
164 |
-
msgstr "Campo repetidor ativado"
|
165 |
-
|
166 |
-
#: core/actions/init.php:91
|
167 |
-
#@ acf
|
168 |
-
msgid "Options page activated"
|
169 |
-
msgstr "Página de opções ativada"
|
170 |
-
|
171 |
-
#: core/actions/init.php:95
|
172 |
-
#@ acf
|
173 |
-
msgid "Flexible Content field activated"
|
174 |
-
msgstr "Campo de Conteúdo Flexível ativado"
|
175 |
-
|
176 |
-
#: core/actions/init.php:99
|
177 |
-
#@ acf
|
178 |
-
msgid "Everything Fields activated"
|
179 |
-
msgstr "Campos Gerais ativado"
|
180 |
-
|
181 |
-
#: core/actions/init.php:104
|
182 |
-
#@ acf
|
183 |
-
msgid "License key unrecognised"
|
184 |
-
msgstr "Chave de licença desconhecida"
|
185 |
-
|
186 |
-
#: core/actions/init.php:115
|
187 |
-
#@ acf
|
188 |
msgid "Field Groups"
|
189 |
msgstr "Grupos de Campos"
|
190 |
|
191 |
-
|
192 |
-
#:
|
193 |
-
#@ acf
|
194 |
msgid "Add New"
|
195 |
msgstr "Adicionar Novo"
|
196 |
|
197 |
-
|
198 |
-
|
199 |
msgid "Add New Field Group"
|
200 |
-
msgstr "Adicionar Novo Grupo de
|
201 |
|
202 |
-
|
203 |
-
|
204 |
msgid "Edit Field Group"
|
205 |
-
msgstr "Editar Grupo de
|
206 |
|
207 |
-
|
208 |
-
|
209 |
msgid "New Field Group"
|
210 |
-
msgstr "Novo Grupo de
|
211 |
|
212 |
-
|
213 |
-
|
214 |
msgid "View Field Group"
|
215 |
-
msgstr "Ver Grupo de
|
216 |
|
217 |
-
|
218 |
-
|
219 |
msgid "Search Field Groups"
|
220 |
-
msgstr "Pesquisar
|
221 |
|
222 |
-
|
223 |
-
|
224 |
msgid "No Field Groups found"
|
225 |
-
msgstr "Nenhum Grupo de
|
226 |
|
227 |
-
|
228 |
-
|
229 |
msgid "No Field Groups found in Trash"
|
230 |
-
msgstr "Nenhum Grupo de
|
231 |
|
232 |
-
|
233 |
-
#:
|
234 |
-
#@ default
|
235 |
msgid "Field group updated."
|
236 |
-
msgstr ""
|
237 |
|
238 |
-
|
239 |
-
|
240 |
msgid "Custom field updated."
|
241 |
-
msgstr ""
|
242 |
|
243 |
-
|
244 |
-
|
245 |
msgid "Custom field deleted."
|
246 |
-
msgstr ""
|
247 |
|
|
|
248 |
#. translators: %s: date and time of the revision
|
249 |
-
#:
|
250 |
#, php-format
|
251 |
-
#@ default
|
252 |
msgid "Field group restored to revision from %s"
|
253 |
-
msgstr ""
|
254 |
|
255 |
-
|
256 |
-
|
257 |
msgid "Field group published."
|
258 |
-
msgstr ""
|
259 |
|
260 |
-
|
261 |
-
|
262 |
msgid "Field group saved."
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
|
266 |
-
|
267 |
msgid "Field group submitted."
|
268 |
-
msgstr ""
|
269 |
|
270 |
-
|
271 |
-
|
272 |
msgid "Field group scheduled for."
|
273 |
-
msgstr ""
|
274 |
|
275 |
-
|
276 |
-
|
277 |
msgid "Field group draft updated."
|
278 |
-
msgstr ""
|
279 |
|
280 |
-
|
281 |
-
|
282 |
msgid "Title"
|
283 |
-
msgstr ""
|
284 |
|
285 |
-
|
286 |
-
#: core/
|
287 |
-
#: core/fields/repeater.php:218
|
288 |
-
#@ acf
|
289 |
msgid "New Field"
|
290 |
msgstr "Novo Campo"
|
291 |
|
292 |
-
|
293 |
-
|
294 |
msgid "Move to trash. Are you sure?"
|
295 |
-
msgstr "Mover para
|
296 |
|
297 |
-
|
298 |
-
#: core/
|
299 |
-
#: core/fields/repeater.php:244
|
300 |
-
#@ acf
|
301 |
msgid "Field Order"
|
302 |
msgstr "Ordem do Campo"
|
303 |
|
304 |
-
|
305 |
-
#: core/
|
306 |
-
#: core/fields/flexible_content.php:310
|
307 |
-
#: core/fields/flexible_content.php:357
|
308 |
-
#: core/fields/repeater.php:245
|
309 |
-
#: core/fields/repeater.php:292
|
310 |
-
#@ acf
|
311 |
msgid "Field Label"
|
312 |
msgstr "Rótulo do Campo"
|
313 |
|
314 |
-
|
315 |
-
#: core/
|
316 |
-
#: core/fields/flexible_content.php:311
|
317 |
-
#: core/fields/flexible_content.php:373
|
318 |
-
#: core/fields/repeater.php:246
|
319 |
-
#: core/fields/repeater.php:308
|
320 |
-
#@ acf
|
321 |
msgid "Field Name"
|
322 |
msgstr "Nome do Campo"
|
323 |
|
324 |
-
|
325 |
-
#: core/
|
326 |
-
#: core/
|
327 |
-
#: core/fields/flexible_content.php:312
|
328 |
-
#: core/fields/flexible_content.php:388
|
329 |
-
#: core/fields/repeater.php:247
|
330 |
-
#: core/fields/repeater.php:323
|
331 |
-
#@ acf
|
332 |
msgid "Field Type"
|
333 |
-
msgstr "Tipo
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
msgid "
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
#: core/
|
346 |
-
#@ acf
|
347 |
msgid "Edit this Field"
|
348 |
-
msgstr "Editar
|
349 |
|
350 |
-
|
351 |
-
#: core/fields/
|
352 |
-
#: core/
|
353 |
-
#@ acf
|
354 |
msgid "Edit"
|
355 |
msgstr "Editar"
|
356 |
|
357 |
-
|
358 |
-
#: core/
|
359 |
-
#: core/fields/repeater.php:274
|
360 |
-
#@ acf
|
361 |
msgid "Read documentation for this field"
|
362 |
msgstr "Ler a documentação para esse campo"
|
363 |
|
364 |
-
|
365 |
-
#: core/
|
366 |
-
#: core/fields/repeater.php:274
|
367 |
-
#@ acf
|
368 |
msgid "Docs"
|
369 |
msgstr "Docs"
|
370 |
|
371 |
-
|
372 |
-
#: core/
|
373 |
-
#: core/fields/repeater.php:275
|
374 |
-
#@ acf
|
375 |
msgid "Duplicate this Field"
|
376 |
msgstr "Duplicar este Campo"
|
377 |
|
378 |
-
|
379 |
-
#: core/
|
380 |
-
#: core/fields/repeater.php:275
|
381 |
-
#@ acf
|
382 |
msgid "Duplicate"
|
383 |
msgstr "Duplicar"
|
384 |
|
385 |
-
|
386 |
-
#: core/
|
387 |
-
#: core/fields/repeater.php:276
|
388 |
-
#@ acf
|
389 |
msgid "Delete this Field"
|
390 |
-
msgstr "
|
391 |
|
392 |
-
|
393 |
-
#: core/
|
394 |
-
#: core/fields/flexible_content.php:342
|
395 |
-
#: core/fields/repeater.php:276
|
396 |
-
#@ acf
|
397 |
msgid "Delete"
|
398 |
-
msgstr "
|
399 |
|
400 |
-
|
401 |
-
#: core/
|
402 |
-
#: core/fields/repeater.php:293
|
403 |
-
#@ acf
|
404 |
msgid "This is the name which will appear on the EDIT page"
|
405 |
-
msgstr "
|
406 |
|
407 |
-
|
408 |
-
#: core/
|
409 |
-
#: core/fields/repeater.php:309
|
410 |
-
#@ acf
|
411 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
412 |
-
msgstr "
|
|
|
413 |
|
414 |
-
|
415 |
-
|
416 |
msgid "Field Instructions"
|
417 |
msgstr "Instruções do Campo"
|
418 |
|
419 |
-
|
420 |
-
|
421 |
msgid "Instructions for authors. Shown when submitting data"
|
422 |
-
msgstr "Instrução para os autores.
|
423 |
|
424 |
-
|
425 |
-
|
426 |
msgid "Required?"
|
427 |
msgstr "Obrigatório?"
|
428 |
|
429 |
-
|
430 |
-
#: core/
|
431 |
-
#: core/fields/repeater.php:343
|
432 |
-
#@ acf
|
433 |
-
msgid "Save Field"
|
434 |
-
msgstr "Salvar Campo"
|
435 |
-
|
436 |
-
#: core/admin/meta_box_fields.php:177
|
437 |
-
#: core/fields/flexible_content.php:413
|
438 |
-
#: core/fields/repeater.php:348
|
439 |
-
#@ acf
|
440 |
msgid "Close Field"
|
441 |
msgstr "Fechar Campo"
|
442 |
|
443 |
-
|
444 |
-
#: core/
|
445 |
-
#: core/fields/repeater.php:363
|
446 |
-
#@ acf
|
447 |
msgid "Drag and drop to reorder"
|
448 |
msgstr "Clique e arraste para reorganizar"
|
449 |
|
450 |
-
|
451 |
-
|
452 |
msgid "+ Add Field"
|
453 |
msgstr "+ Adicionar Campo"
|
454 |
|
455 |
-
|
456 |
-
|
457 |
msgid "Rules"
|
458 |
msgstr "Regras"
|
459 |
|
460 |
-
|
461 |
-
|
462 |
-
msgid "
|
463 |
-
|
|
|
|
|
|
|
|
|
464 |
|
465 |
-
|
466 |
-
#: core/fields/
|
467 |
-
#@ acf
|
468 |
msgid "Basic"
|
469 |
msgstr "Básico"
|
470 |
|
471 |
-
|
472 |
-
#: core/fields/page_link.php:
|
473 |
-
#: core/fields/
|
474 |
-
#: core/
|
475 |
-
#@ acf
|
476 |
msgid "Post Type"
|
477 |
msgstr "Tipo de Post"
|
478 |
|
479 |
-
|
480 |
-
|
481 |
msgid "Logged in User Type"
|
482 |
msgstr "Tipo de Usuário Logado"
|
483 |
|
484 |
-
|
485 |
-
|
486 |
-
msgid "Page Specific"
|
487 |
-
msgstr "Página Específica"
|
488 |
-
|
489 |
-
#: core/admin/meta_box_location.php:42
|
490 |
-
#@ acf
|
491 |
msgid "Page"
|
492 |
msgstr "Página"
|
493 |
|
494 |
-
|
495 |
-
|
496 |
msgid "Page Type"
|
497 |
msgstr "Tipo de Página"
|
498 |
|
499 |
-
|
500 |
-
|
501 |
msgid "Page Parent"
|
502 |
-
msgstr "Página
|
503 |
|
504 |
-
|
505 |
-
|
506 |
msgid "Page Template"
|
507 |
-
msgstr "
|
508 |
-
|
509 |
-
#: core/admin/meta_box_location.php:47
|
510 |
-
#@ acf
|
511 |
-
msgid "Post Specific"
|
512 |
-
msgstr "Post Específico"
|
513 |
|
514 |
-
|
515 |
-
|
516 |
msgid "Post"
|
517 |
msgstr "Post"
|
518 |
|
519 |
-
|
520 |
-
|
521 |
msgid "Post Category"
|
522 |
msgstr "Categoria de Post"
|
523 |
|
524 |
-
|
525 |
-
|
526 |
msgid "Post Format"
|
527 |
msgstr "Formato de Post"
|
528 |
|
529 |
-
|
530 |
-
|
531 |
msgid "Post Taxonomy"
|
532 |
msgstr "Taxonomia de Post"
|
533 |
|
534 |
-
|
535 |
-
|
536 |
msgid "Other"
|
537 |
msgstr "Outro"
|
538 |
|
539 |
-
|
540 |
-
|
541 |
-
msgid "Taxonomy (Add / Edit)"
|
542 |
-
msgstr "Taxonomia (Adicionar / Editar)"
|
543 |
-
|
544 |
-
#: core/admin/meta_box_location.php:55
|
545 |
-
#@ acf
|
546 |
msgid "User (Add / Edit)"
|
547 |
-
msgstr "Usuário (
|
548 |
-
|
549 |
-
#: core/admin/meta_box_location.php:56
|
550 |
-
#@ acf
|
551 |
-
msgid "Media (Edit)"
|
552 |
-
msgstr "Mídia (Editar)"
|
553 |
|
554 |
-
|
555 |
-
#: core/
|
556 |
-
|
557 |
msgid "Options Page"
|
558 |
msgstr "Página de Opções"
|
559 |
|
560 |
-
|
561 |
-
|
562 |
msgid "is equal to"
|
563 |
msgstr "é igual a"
|
564 |
|
565 |
-
|
566 |
-
|
567 |
msgid "is not equal to"
|
568 |
msgstr "não é igual a"
|
569 |
|
570 |
-
|
571 |
-
|
572 |
-
msgid "match"
|
573 |
-
msgstr "iguala"
|
574 |
-
|
575 |
-
#: core/admin/meta_box_location.php:117
|
576 |
-
#@ acf
|
577 |
msgid "all"
|
578 |
-
msgstr "
|
579 |
|
580 |
-
|
581 |
-
|
582 |
msgid "any"
|
583 |
-
msgstr "
|
584 |
-
|
585 |
-
#: core/admin/meta_box_location.php:121
|
586 |
-
#@ acf
|
587 |
-
msgid "of the above"
|
588 |
-
msgstr "do acima"
|
589 |
|
590 |
-
|
591 |
-
|
592 |
msgid "Unlock options add-on with an activation code"
|
593 |
-
msgstr "
|
594 |
|
595 |
-
|
596 |
-
|
597 |
msgid "Order No."
|
598 |
msgstr "No. de Ordem"
|
599 |
|
600 |
-
|
601 |
-
|
602 |
-
msgid "Field groups are created in order <br />from lowest to highest."
|
603 |
-
msgstr "Campos são criados em ordem <br/>do menor para maior."
|
604 |
-
|
605 |
-
#: core/admin/meta_box_options.php:30
|
606 |
-
#@ acf
|
607 |
msgid "Position"
|
608 |
msgstr "Posição"
|
609 |
|
610 |
-
|
611 |
-
|
612 |
msgid "Normal"
|
613 |
msgstr "Normal"
|
614 |
|
615 |
-
|
616 |
-
|
617 |
msgid "Side"
|
618 |
-
msgstr "
|
619 |
|
620 |
-
|
621 |
-
|
622 |
msgid "Style"
|
623 |
msgstr "Estilo"
|
624 |
|
625 |
-
|
626 |
-
|
627 |
msgid "Standard Metabox"
|
628 |
msgstr "Metabox Padrão"
|
629 |
|
630 |
-
|
631 |
-
|
632 |
msgid "No Metabox"
|
633 |
msgstr "Sem Metabox"
|
634 |
|
635 |
-
|
636 |
-
|
637 |
-
msgid "Show on page"
|
638 |
-
msgstr "Mostrar na página"
|
639 |
-
|
640 |
-
#: core/admin/meta_box_options.php:71
|
641 |
-
#@ acf
|
642 |
-
msgid "Deselect items to hide them on the edit page"
|
643 |
-
msgstr "De selecionar itens para esconde-los na página de edição"
|
644 |
-
|
645 |
-
#: core/admin/meta_box_options.php:72
|
646 |
-
#@ acf
|
647 |
-
msgid "If multiple ACF groups appear on an edit page, the first ACF group's options will be used. The first ACF group is the one with the lowest order number."
|
648 |
-
msgstr "Se grupos multiplos de ACFs aparecerem na página de edição, as opções do primeiro grupo ACF serão utilizadas. O primeiro grupo ACF é o que tem o menor número de ordem."
|
649 |
-
|
650 |
-
#: core/admin/meta_box_options.php:82
|
651 |
-
#@ acf
|
652 |
msgid "Content Editor"
|
653 |
msgstr "Editor de Conteúdo"
|
654 |
|
655 |
-
|
656 |
-
|
657 |
msgid "Discussion"
|
658 |
msgstr "Discussão"
|
659 |
|
660 |
-
|
661 |
-
|
662 |
msgid "Comments"
|
663 |
msgstr "Comentários"
|
664 |
|
665 |
-
|
666 |
-
|
667 |
msgid "Slug"
|
668 |
msgstr "Slug"
|
669 |
|
670 |
-
|
671 |
-
|
672 |
msgid "Author"
|
673 |
msgstr "Autor"
|
674 |
|
675 |
-
|
676 |
-
|
677 |
msgid "Changelog"
|
678 |
-
msgstr "
|
679 |
|
680 |
-
|
681 |
-
|
682 |
msgid "See what's new in"
|
683 |
-
msgstr "Veja o que
|
684 |
|
685 |
-
|
686 |
-
|
687 |
msgid "Resources"
|
688 |
-
msgstr "Recursos"
|
689 |
-
|
690 |
-
#: core/admin/page_acf.php:20
|
691 |
-
#@ acf
|
692 |
-
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
693 |
-
msgstr "Leia a documentação, aprenda as funções e descubra algumas dicas & truques para o seu próximo projeto web."
|
694 |
-
|
695 |
-
#: core/admin/page_acf.php:21
|
696 |
-
#@ acf
|
697 |
-
msgid "View the ACF website"
|
698 |
-
msgstr "Ver o site do ACF"
|
699 |
|
700 |
-
|
701 |
-
|
702 |
msgid "Created by"
|
703 |
msgstr "Criado por"
|
704 |
|
705 |
-
|
706 |
-
|
707 |
msgid "Vote"
|
708 |
msgstr "Votar"
|
709 |
|
710 |
-
|
711 |
-
|
712 |
msgid "Follow"
|
713 |
msgstr "Seguir"
|
714 |
|
715 |
-
|
716 |
-
|
717 |
-
msgid "Advanced Custom Fields Settings"
|
718 |
-
msgstr "Configurações do Advanced Custom Fields"
|
719 |
-
|
720 |
-
#: core/admin/page_settings.php:40
|
721 |
-
#@ acf
|
722 |
-
msgid "Activate Add-ons."
|
723 |
-
msgstr "Ativar Add-ons."
|
724 |
-
|
725 |
-
#: core/admin/page_settings.php:45
|
726 |
-
#@ acf
|
727 |
-
msgid "Status"
|
728 |
-
msgstr "Status"
|
729 |
-
|
730 |
-
#: core/admin/page_settings.php:46
|
731 |
-
#@ acf
|
732 |
msgid "Activation Code"
|
733 |
msgstr "Código de Ativação"
|
734 |
|
735 |
-
|
736 |
-
|
737 |
msgid "Repeater Field"
|
738 |
msgstr "Campo Repetidor"
|
739 |
|
740 |
-
|
741 |
-
#: core/
|
742 |
-
#: core/admin/page_settings.php:93
|
743 |
-
#@ acf
|
744 |
-
msgid "Active"
|
745 |
-
msgstr "Ativado"
|
746 |
-
|
747 |
-
#: core/admin/page_settings.php:53
|
748 |
-
#: core/admin/page_settings.php:73
|
749 |
-
#: core/admin/page_settings.php:93
|
750 |
-
#@ acf
|
751 |
-
msgid "Inactive"
|
752 |
-
msgstr "Desativado"
|
753 |
-
|
754 |
-
#: core/admin/page_settings.php:72
|
755 |
-
#@ acf
|
756 |
msgid "Flexible Content Field"
|
757 |
msgstr "Campo de Conteúdo Flexível"
|
758 |
|
759 |
-
|
760 |
-
|
761 |
-
msgid "
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
#: core/
|
770 |
-
#@ acf
|
771 |
-
msgid "Export Field Groups to XML"
|
772 |
-
msgstr "Exportar Grupos de Campos para XML"
|
773 |
-
|
774 |
-
#: core/admin/page_settings.php:166
|
775 |
-
#@ acf
|
776 |
-
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
777 |
-
msgstr "ACF vai criar um arquivo de exportação .xml que e compatível com o plugin de importação nativo do WP."
|
778 |
-
|
779 |
-
#: core/admin/page_settings.php:169
|
780 |
-
#@ acf
|
781 |
-
msgid "Export XML"
|
782 |
-
msgstr "Exportar XML"
|
783 |
-
|
784 |
-
#: core/admin/page_settings.php:175
|
785 |
-
#@ acf
|
786 |
-
msgid "Import Field Groups"
|
787 |
-
msgstr "Importar Grupos de Campos"
|
788 |
-
|
789 |
-
#: core/admin/page_settings.php:177
|
790 |
-
#@ acf
|
791 |
-
msgid "Navigate to the"
|
792 |
-
msgstr "Navegar para a"
|
793 |
-
|
794 |
-
#: core/admin/page_settings.php:177
|
795 |
-
#@ acf
|
796 |
-
msgid "Import Tool"
|
797 |
-
msgstr "Ferramenta de Importação"
|
798 |
-
|
799 |
-
#: core/admin/page_settings.php:177
|
800 |
-
#@ acf
|
801 |
-
msgid "and select WordPress"
|
802 |
-
msgstr "e selecione WordPress"
|
803 |
-
|
804 |
-
#: core/admin/page_settings.php:178
|
805 |
-
#@ acf
|
806 |
msgid "Install WP import plugin if prompted"
|
807 |
msgstr "Instale o plugin de importação do WP se necessário"
|
808 |
|
809 |
-
|
810 |
-
|
811 |
msgid "Upload and import your exported .xml file"
|
812 |
-
msgstr "
|
813 |
|
814 |
-
|
815 |
-
|
816 |
msgid "Select your user and ignore Import Attachments"
|
817 |
-
msgstr "Selecione o seu usuário e ignore Anexos
|
818 |
|
819 |
-
|
820 |
-
|
821 |
msgid "That's it! Happy WordPressing"
|
822 |
msgstr "É isso! Feliz WordPressing"
|
823 |
|
824 |
-
|
825 |
-
|
826 |
msgid "Export Field Groups to PHP"
|
827 |
msgstr "Exportar Grupos de Campos para PHP"
|
828 |
|
829 |
-
|
830 |
-
|
831 |
-
msgid "ACF will create the PHP code to include in your theme"
|
832 |
-
msgstr "ACF vai criar o código PHP para incluir no seu tema"
|
833 |
-
|
834 |
-
#: core/admin/page_settings.php:236
|
835 |
-
#@ acf
|
836 |
-
msgid "Create PHP"
|
837 |
-
msgstr "Criar PHP"
|
838 |
-
|
839 |
-
#: core/admin/page_settings.php:242
|
840 |
-
#: core/admin/page_settings.php:270
|
841 |
-
#@ acf
|
842 |
-
msgid "Register Field Groups with PHP"
|
843 |
-
msgstr "Registrar Grupos de Campos com PHP"
|
844 |
-
|
845 |
-
#: core/admin/page_settings.php:244
|
846 |
-
#: core/admin/page_settings.php:272
|
847 |
-
#@ acf
|
848 |
msgid "Copy the PHP code generated"
|
849 |
msgstr "Copie o código PHP gerado"
|
850 |
|
851 |
-
|
852 |
-
#: core/
|
853 |
-
#@ acf
|
854 |
msgid "Paste into your functions.php file"
|
855 |
msgstr "Cole no seu arquivo functions.php"
|
856 |
|
857 |
-
|
858 |
-
#: core/
|
859 |
-
#@ acf
|
860 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
861 |
-
msgstr "Para ativar qualquer Add-on, edite e use o código nas primeiras linhas."
|
862 |
-
|
863 |
-
#: core/admin/page_settings.php:267
|
864 |
-
#@ acf
|
865 |
-
msgid "Back to settings"
|
866 |
-
msgstr "Voltar para configurações"
|
867 |
-
|
868 |
-
#: core/admin/page_settings.php:295
|
869 |
-
#@ acf
|
870 |
-
msgid ""
|
871 |
-
"/**\n"
|
872 |
-
" * Activate Add-ons\n"
|
873 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
|
874 |
-
" * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
|
875 |
-
" * Use the commented out code to update the database with your activation code. \n"
|
876 |
-
" * You may place this code inside an IF statement that only runs on theme activation.\n"
|
877 |
-
" */"
|
878 |
-
msgstr ""
|
879 |
-
"/**\n"
|
880 |
-
" * Ativar Add-ons\n"
|
881 |
-
" * Aqui você pode entrar os seus códigos de ativação para destravar Add-ons para usar no seu tema. \n"
|
882 |
-
" * Já que todos os códigos são licenças para múltiplos sites, é permitido que você coloque sua chave em temas premium. \n"
|
883 |
-
" * Use o código comentado para atualizar a base de dados com o seu código de ativação. \n"
|
884 |
-
" * Você pode colocar o código dentro de uma declaração IF que apenas rode com a ativação do tema. \n"
|
885 |
-
" */"
|
886 |
-
|
887 |
-
#: core/admin/page_settings.php:308
|
888 |
-
#@ acf
|
889 |
-
msgid ""
|
890 |
-
"/**\n"
|
891 |
-
" * Register field groups\n"
|
892 |
-
" * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
|
893 |
-
" * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
|
894 |
-
" * This code must run every time the functions.php file is read\n"
|
895 |
-
" */"
|
896 |
msgstr ""
|
897 |
-
"
|
898 |
-
"
|
899 |
-
" * A função register_field_group aceita 1 array que contém a informação relevante para registrar o grupo de campo\n"
|
900 |
-
" * Você pode editar o array como você quiser. Entretanto, isso pode resultar em erros se o array não for compatível com o ACF\n"
|
901 |
-
" * Esse código precisa rodar toda vez que o functions.php é lido\n"
|
902 |
-
" */"
|
903 |
|
904 |
-
|
905 |
-
|
906 |
msgid "No field groups were selected"
|
907 |
msgstr "Nenhum grupo de campos foi selecionado"
|
908 |
|
909 |
-
|
910 |
-
|
911 |
msgid "Checkbox"
|
912 |
-
msgstr "
|
913 |
-
|
914 |
-
|
915 |
-
#: core/fields/radio.php:
|
916 |
-
#: core/fields/select.php:
|
917 |
-
#@ acf
|
918 |
-
msgid "No choices to choose from"
|
919 |
-
msgstr "Nenhum opção para escolher"
|
920 |
-
|
921 |
-
#: core/fields/checkbox.php:102
|
922 |
-
#: core/fields/radio.php:114
|
923 |
-
#: core/fields/select.php:164
|
924 |
-
#@ acf
|
925 |
msgid "Choices"
|
926 |
msgstr "Escolhas"
|
927 |
|
928 |
-
|
929 |
-
#: core/fields/radio.php:
|
930 |
-
#: core/fields/select.php:165
|
931 |
-
#@ acf
|
932 |
msgid "Enter your choices one per line"
|
933 |
-
msgstr "
|
934 |
|
935 |
-
|
936 |
-
#: core/fields/radio.php:
|
937 |
-
#: core/fields/select.php:167
|
938 |
-
#@ acf
|
939 |
msgid "Red"
|
940 |
msgstr "Vermelho"
|
941 |
|
942 |
-
|
943 |
-
#: core/fields/radio.php:
|
944 |
-
#: core/fields/select.php:168
|
945 |
-
#@ acf
|
946 |
msgid "Blue"
|
947 |
msgstr "Azul"
|
948 |
|
949 |
-
|
950 |
-
#: core/fields/radio.php:
|
951 |
-
#: core/fields/select.php:
|
952 |
-
#@ acf
|
953 |
msgid "red : Red"
|
954 |
msgstr "vermelho : Vermelho"
|
955 |
|
956 |
-
|
957 |
-
#: core/fields/radio.php:
|
958 |
-
#: core/fields/select.php:
|
959 |
-
#@ acf
|
960 |
msgid "blue : Blue"
|
961 |
msgstr "azul : Azul"
|
962 |
|
963 |
-
|
964 |
-
|
965 |
msgid "Color Picker"
|
966 |
-
msgstr "Seletor de
|
967 |
|
968 |
-
|
969 |
-
|
970 |
msgid "Date Picker"
|
971 |
msgstr "Seletor de Datas"
|
972 |
|
973 |
-
|
974 |
-
|
975 |
-
msgid "Date format"
|
976 |
-
msgstr "Formato da data"
|
977 |
-
|
978 |
-
#: core/fields/date_picker/date_picker.php:83
|
979 |
-
#@ acf
|
980 |
-
msgid "eg. dd/mm/yy. read more about"
|
981 |
-
msgstr "ex.: dd/mm/yy. ler mais sobre"
|
982 |
-
|
983 |
-
#: core/fields/file.php:20
|
984 |
-
#@ acf
|
985 |
msgid "File"
|
986 |
msgstr "Arquivo"
|
987 |
|
988 |
-
|
989 |
-
|
990 |
-
msgid "Remove File"
|
991 |
-
msgstr "Remover Arquivo"
|
992 |
-
|
993 |
-
#: core/fields/file.php:165
|
994 |
-
#@ acf
|
995 |
msgid "No File Selected"
|
996 |
msgstr "Nenhum Arquivo Selecionado"
|
997 |
|
998 |
-
|
999 |
-
|
1000 |
msgid "Add File"
|
1001 |
msgstr "Adicionar Arquivo"
|
1002 |
|
1003 |
-
|
1004 |
-
#: core/fields/image.php:
|
1005 |
-
|
1006 |
msgid "Return Value"
|
1007 |
-
msgstr "Valor
|
1008 |
|
1009 |
-
|
1010 |
-
|
1011 |
msgid "No files selected"
|
1012 |
msgstr "Nenhum arquivo selecionado"
|
1013 |
|
1014 |
-
|
1015 |
-
|
1016 |
msgid "Add Selected Files"
|
1017 |
msgstr "Adicionar Arquivos Selecionados"
|
1018 |
|
1019 |
-
|
1020 |
-
|
1021 |
msgid "Select File"
|
1022 |
msgstr "Selecionar Arquivo"
|
1023 |
|
1024 |
-
|
1025 |
-
|
1026 |
msgid "Flexible Content"
|
1027 |
msgstr "Conteúdo Flexível"
|
1028 |
|
1029 |
-
|
1030 |
-
#: core/fields/
|
1031 |
-
#: core/fields/repeater.php:65
|
1032 |
-
#: core/fields/repeater.php:213
|
1033 |
-
#@ acf
|
1034 |
-
msgid "+ Add Row"
|
1035 |
-
msgstr "+ Adicionar Linha"
|
1036 |
-
|
1037 |
-
#: core/fields/flexible_content.php:254
|
1038 |
-
#: core/fields/radio.php:144
|
1039 |
-
#: core/fields/repeater.php:386
|
1040 |
-
#@ acf
|
1041 |
msgid "Layout"
|
1042 |
msgstr "Layout"
|
1043 |
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid "Reorder Layout"
|
1047 |
-
msgstr "Reorganizar Layout"
|
1048 |
-
|
1049 |
-
#: core/fields/flexible_content.php:256
|
1050 |
-
#@ acf
|
1051 |
-
msgid "Reorder"
|
1052 |
-
msgstr "Reorganizar"
|
1053 |
-
|
1054 |
-
#: core/fields/flexible_content.php:257
|
1055 |
-
#@ acf
|
1056 |
-
msgid "Add New Layout"
|
1057 |
-
msgstr "Adicionar Novo Layout"
|
1058 |
-
|
1059 |
-
#: core/fields/flexible_content.php:258
|
1060 |
-
#@ acf
|
1061 |
-
msgid "Delete Layout"
|
1062 |
-
msgstr "Deletar Layout"
|
1063 |
-
|
1064 |
-
#: core/fields/flexible_content.php:268
|
1065 |
-
#@ acf
|
1066 |
-
msgid "Label"
|
1067 |
-
msgstr "Rótulo"
|
1068 |
-
|
1069 |
-
#: core/fields/flexible_content.php:278
|
1070 |
-
#@ acf
|
1071 |
msgid "Name"
|
1072 |
msgstr "Nome"
|
1073 |
|
1074 |
-
|
1075 |
-
|
1076 |
-
msgid "Display"
|
1077 |
-
msgstr "Mostrar"
|
1078 |
-
|
1079 |
-
#: core/fields/flexible_content.php:295
|
1080 |
-
#@ acf
|
1081 |
-
msgid "Table"
|
1082 |
-
msgstr "Tabela"
|
1083 |
-
|
1084 |
-
#: core/fields/flexible_content.php:296
|
1085 |
-
#: core/fields/repeater.php:397
|
1086 |
-
#@ acf
|
1087 |
-
msgid "Row"
|
1088 |
-
msgstr "Linha"
|
1089 |
-
|
1090 |
-
#: core/fields/flexible_content.php:320
|
1091 |
-
#: core/fields/repeater.php:255
|
1092 |
-
#@ acf
|
1093 |
-
msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
1094 |
-
msgstr "Nenhum campo. Clique no botão \" + Adicionar Sub Campo\" para criar seu primeiro campo."
|
1095 |
-
|
1096 |
-
#: core/fields/flexible_content.php:413
|
1097 |
-
#: core/fields/repeater.php:348
|
1098 |
-
#@ acf
|
1099 |
-
msgid "Close Sub Field"
|
1100 |
-
msgstr "Fechar Sub Campo"
|
1101 |
-
|
1102 |
-
#: core/fields/flexible_content.php:428
|
1103 |
-
#: core/fields/repeater.php:364
|
1104 |
-
#@ acf
|
1105 |
-
msgid "+ Add Sub Field"
|
1106 |
-
msgstr "+ Adicionar Sub Campo"
|
1107 |
-
|
1108 |
-
#: core/fields/flexible_content.php:435
|
1109 |
-
#: core/fields/repeater.php:405
|
1110 |
-
#@ acf
|
1111 |
-
msgid "Button Label"
|
1112 |
-
msgstr "Rótulo do Botão"
|
1113 |
-
|
1114 |
-
#: core/fields/image.php:21
|
1115 |
-
#@ acf
|
1116 |
msgid "Image"
|
1117 |
msgstr "Imagem"
|
1118 |
|
1119 |
-
|
1120 |
-
|
1121 |
msgid "No image selected"
|
1122 |
msgstr "Nenhuma imagem selecionada"
|
1123 |
|
1124 |
-
|
1125 |
-
|
1126 |
msgid "Add Image"
|
1127 |
msgstr "Adicionar Imagem"
|
1128 |
|
1129 |
-
|
1130 |
-
|
1131 |
msgid "Image URL"
|
1132 |
msgstr "URL da Imagem"
|
1133 |
|
1134 |
-
|
1135 |
-
|
1136 |
-
msgid "Attachment ID"
|
1137 |
-
msgstr "ID de Anexo"
|
1138 |
-
|
1139 |
-
#: core/fields/image.php:196
|
1140 |
-
#@ acf
|
1141 |
msgid "Preview Size"
|
1142 |
msgstr "Tamanho da Pré-visualização"
|
1143 |
|
1144 |
-
|
1145 |
-
|
1146 |
msgid "Thumbnail"
|
1147 |
msgstr "Miniatura"
|
1148 |
|
1149 |
-
|
1150 |
-
|
1151 |
msgid "Medium"
|
1152 |
msgstr "Média"
|
1153 |
|
1154 |
-
|
1155 |
-
|
1156 |
msgid "Large"
|
1157 |
msgstr "Grande"
|
1158 |
|
1159 |
-
|
1160 |
-
#:
|
1161 |
-
#@ acf
|
1162 |
msgid "Full"
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
-
|
1166 |
-
|
1167 |
msgid "No images selected"
|
1168 |
msgstr "Nenhuma imagem selecionada"
|
1169 |
|
1170 |
-
|
1171 |
-
|
1172 |
-
msgid "Add selected Images"
|
1173 |
-
msgstr "Adicionar Imagens selecionadas"
|
1174 |
-
|
1175 |
-
#: core/fields/image.php:495
|
1176 |
-
#@ acf
|
1177 |
msgid "Select Image"
|
1178 |
msgstr "Selecionar Imagem"
|
1179 |
|
1180 |
-
|
1181 |
-
|
1182 |
msgid "Page Link"
|
1183 |
msgstr "Link da Página"
|
1184 |
|
1185 |
-
|
1186 |
-
#: core/fields/
|
1187 |
-
#: core/fields/
|
1188 |
-
#@ acf
|
1189 |
msgid "Select"
|
1190 |
msgstr "Seleção"
|
1191 |
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
"Filtra os posts selecionando o tipo de post<br />\n"
|
1199 |
-
"\\\t\\\t\\\t\\\tDica: de selecione todos os tipos de post para mostrar todos os tipos de posts"
|
1200 |
-
|
1201 |
-
#: core/fields/page_link.php:200
|
1202 |
-
#: core/fields/post_object.php:213
|
1203 |
-
#: core/fields/post_object.php:237
|
1204 |
-
#: core/fields/relationship.php:250
|
1205 |
-
#: core/fields/relationship.php:301
|
1206 |
-
#@ acf
|
1207 |
msgid "All"
|
1208 |
msgstr "Todos"
|
1209 |
|
1210 |
-
|
1211 |
-
#: core/fields/post_object.php:
|
1212 |
-
#: core/fields/select.php:
|
1213 |
-
|
1214 |
msgid "Allow Null?"
|
1215 |
msgstr "Permitir Nulo?"
|
1216 |
|
1217 |
-
|
1218 |
-
#: core/fields/page_link.php:
|
1219 |
-
#: core/fields/post_object.php:
|
1220 |
-
#: core/fields/post_object.php:
|
1221 |
-
#: core/fields/select.php:
|
1222 |
-
#: core/fields/
|
1223 |
-
#: core/
|
1224 |
-
#@ acf
|
1225 |
msgid "Yes"
|
1226 |
msgstr "Sim"
|
1227 |
|
1228 |
-
|
1229 |
-
#: core/fields/page_link.php:
|
1230 |
-
#: core/fields/post_object.php:
|
1231 |
-
#: core/fields/post_object.php:
|
1232 |
-
#: core/fields/select.php:
|
1233 |
-
#: core/fields/
|
1234 |
-
#: core/
|
1235 |
-
#@ acf
|
1236 |
msgid "No"
|
1237 |
msgstr "Não"
|
1238 |
|
1239 |
-
|
1240 |
-
#: core/fields/post_object.php:
|
1241 |
-
#: core/fields/select.php:
|
1242 |
-
#@ acf
|
1243 |
msgid "Select multiple values?"
|
1244 |
-
msgstr "Selecionar valores
|
1245 |
|
1246 |
-
|
1247 |
-
|
1248 |
msgid "Post Object"
|
1249 |
msgstr "Objeto do Post"
|
1250 |
|
1251 |
-
|
1252 |
-
#: core/fields/relationship.php:
|
1253 |
-
#@ acf
|
1254 |
msgid "Filter from Taxonomy"
|
1255 |
-
msgstr "
|
1256 |
|
1257 |
-
|
1258 |
-
|
1259 |
msgid "Radio Button"
|
1260 |
msgstr "Botão de Rádio"
|
1261 |
|
1262 |
-
|
1263 |
-
#: core/fields/
|
1264 |
-
#: core/fields/
|
1265 |
-
#: core/fields/
|
1266 |
-
|
|
|
1267 |
msgid "Default Value"
|
1268 |
msgstr "Valor Padrão"
|
1269 |
|
1270 |
-
|
1271 |
-
|
1272 |
msgid "Vertical"
|
1273 |
msgstr "Vertical"
|
1274 |
|
1275 |
-
|
1276 |
-
|
1277 |
msgid "Horizontal"
|
1278 |
msgstr "Horizontal"
|
1279 |
|
1280 |
-
|
1281 |
-
|
1282 |
msgid "Relationship"
|
1283 |
msgstr "Relação"
|
1284 |
|
1285 |
-
|
1286 |
-
|
1287 |
msgid "Search"
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
-
|
1291 |
-
|
1292 |
msgid "Maximum posts"
|
1293 |
msgstr "Posts máximos"
|
1294 |
|
1295 |
-
|
1296 |
-
|
1297 |
-
msgid "Set to -1 for infinite"
|
1298 |
-
msgstr "Coloque -1 para infinito"
|
1299 |
-
|
1300 |
-
#: core/fields/repeater.php:21
|
1301 |
-
#@ acf
|
1302 |
-
msgid "Repeater"
|
1303 |
-
msgstr "Repetidor"
|
1304 |
-
|
1305 |
-
#: core/fields/repeater.php:236
|
1306 |
-
#@ acf
|
1307 |
-
msgid "Repeater Fields"
|
1308 |
-
msgstr "Campos Repetidores"
|
1309 |
-
|
1310 |
-
#: core/fields/repeater.php:372
|
1311 |
-
#@ acf
|
1312 |
-
msgid "Row Limit"
|
1313 |
-
msgstr "Limite de Linhas"
|
1314 |
-
|
1315 |
-
#: core/fields/repeater.php:396
|
1316 |
-
#@ acf
|
1317 |
-
msgid "Table (default)"
|
1318 |
-
msgstr "Tabela (padrão)"
|
1319 |
-
|
1320 |
-
#: core/fields/text.php:21
|
1321 |
-
#@ acf
|
1322 |
msgid "Text"
|
1323 |
msgstr "Texto"
|
1324 |
|
1325 |
-
|
1326 |
-
#: core/fields/textarea.php:
|
1327 |
-
#@ acf
|
1328 |
msgid "Formatting"
|
1329 |
msgstr "Formatação"
|
1330 |
|
1331 |
-
|
1332 |
-
|
1333 |
msgid "Define how to render html tags"
|
1334 |
msgstr "Define como renderizar as tags html"
|
1335 |
|
1336 |
-
|
1337 |
-
#: core/fields/
|
1338 |
-
|
1339 |
msgid "None"
|
1340 |
-
msgstr "
|
1341 |
|
1342 |
-
|
1343 |
-
#: core/fields/textarea.php:
|
1344 |
-
#@ acf
|
1345 |
msgid "HTML"
|
1346 |
msgstr "HTML"
|
1347 |
|
1348 |
-
|
1349 |
-
|
1350 |
msgid "Text Area"
|
1351 |
msgstr "Área de Texto"
|
1352 |
|
1353 |
-
|
1354 |
-
|
1355 |
msgid "Define how to render html tags / new lines"
|
1356 |
msgstr "Define como renderizar as tags html / novas linhas"
|
1357 |
|
1358 |
-
|
1359 |
-
|
1360 |
msgid "auto <br />"
|
1361 |
msgstr "auto <br />"
|
1362 |
|
1363 |
-
|
1364 |
-
|
1365 |
msgid "True / False"
|
1366 |
msgstr "Verdadeiro / Falso"
|
1367 |
|
1368 |
-
|
1369 |
-
|
|
|
1370 |
msgid "Message"
|
1371 |
msgstr "Mensagem"
|
1372 |
|
1373 |
-
|
1374 |
-
|
1375 |
msgid "eg. Show extra content"
|
1376 |
-
msgstr "ex.: Mostrar conteúdo
|
1377 |
|
1378 |
-
|
1379 |
-
|
1380 |
msgid "Wysiwyg Editor"
|
1381 |
msgstr "Editor Wysiwyg"
|
1382 |
|
1383 |
-
|
1384 |
-
|
1385 |
msgid "Toolbar"
|
1386 |
msgstr "Barra de Ferramentas"
|
1387 |
|
1388 |
-
|
1389 |
-
|
1390 |
msgid "Show Media Upload Buttons?"
|
1391 |
msgstr "Mostrar Botões de Upload de Mídia?"
|
1392 |
|
1393 |
-
|
1394 |
-
|
1395 |
-
msgid "
|
1396 |
-
msgstr "
|
1397 |
|
1398 |
-
|
1399 |
-
|
1400 |
-
msgid "
|
1401 |
-
msgstr "
|
1402 |
|
1403 |
-
|
1404 |
-
|
1405 |
-
msgid "Create
|
1406 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1407 |
|
1408 |
-
|
1409 |
-
|
1410 |
-
msgid "
|
1411 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields v4.1.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
|
6 |
+
"PO-Revision-Date: 2013-06-10 19:00-0600\n"
|
7 |
+
"Last-Translator: Augusto Simão <augusto@ams.art.br>\n"
|
8 |
+
"Language-Team: Augusto Simão <augusto@ams.art.br>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.5.5\n"
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"Language: pt_BR\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
21 |
+
# @ acf
|
22 |
+
# @ default
|
23 |
+
#: acf.php:386 core/views/meta_box_options.php:94
|
24 |
msgid "Custom Fields"
|
25 |
msgstr "Campos Personalizados"
|
26 |
|
27 |
+
# @ acf
|
28 |
+
#: core/controllers/upgrade.php:72
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "Upgrade"
|
30 |
msgstr "Atualizar"
|
31 |
|
32 |
+
# @ acf
|
33 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:365
|
34 |
+
#: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
|
35 |
msgid "Fields"
|
36 |
msgstr "Campos"
|
37 |
|
38 |
+
# @ acf
|
39 |
+
#: core/controllers/field_group.php:366
|
40 |
msgid "Location"
|
41 |
msgstr "Local"
|
42 |
|
43 |
+
# @ acf
|
44 |
+
#: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Options"
|
46 |
msgstr "Opções"
|
47 |
|
48 |
+
# @ acf
|
49 |
+
#: core/controllers/input.php:480
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgid "Validation Failed. One or more fields below are required."
|
51 |
+
msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios."
|
52 |
+
|
53 |
+
# @ acf
|
54 |
+
#: core/controllers/field_group.php:620
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Default Template"
|
56 |
+
msgstr "Modelo Padrão"
|
57 |
|
58 |
+
# @ acf
|
59 |
+
#: core/actions/export.php:30
|
60 |
msgid "No ACF groups selected"
|
61 |
msgstr "Nenhum grupo ACF selecionado"
|
62 |
|
63 |
+
# @ acf
|
64 |
+
#: acf.php:265 core/controllers/field_groups.php:214
|
|
|
|
|
65 |
msgid "Advanced Custom Fields"
|
66 |
msgstr "Advanced Custom Fields"
|
67 |
|
68 |
+
# @ acf
|
69 |
+
#: acf.php:264
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid "Field Groups"
|
71 |
msgstr "Grupos de Campos"
|
72 |
|
73 |
+
# @ acf
|
74 |
+
#: acf.php:266
|
|
|
75 |
msgid "Add New"
|
76 |
msgstr "Adicionar Novo"
|
77 |
|
78 |
+
# @ acf
|
79 |
+
#: acf.php:267
|
80 |
msgid "Add New Field Group"
|
81 |
+
msgstr "Adicionar Novo Grupo de Campos"
|
82 |
|
83 |
+
# @ acf
|
84 |
+
#: acf.php:268
|
85 |
msgid "Edit Field Group"
|
86 |
+
msgstr "Editar Grupo de Campos"
|
87 |
|
88 |
+
# @ acf
|
89 |
+
#: acf.php:269
|
90 |
msgid "New Field Group"
|
91 |
+
msgstr "Novo Grupo de Campos"
|
92 |
|
93 |
+
# @ acf
|
94 |
+
#: acf.php:270
|
95 |
msgid "View Field Group"
|
96 |
+
msgstr "Ver Grupo de Campos"
|
97 |
|
98 |
+
# @ acf
|
99 |
+
#: acf.php:271
|
100 |
msgid "Search Field Groups"
|
101 |
+
msgstr "Pesquisar Grupos de Campos"
|
102 |
|
103 |
+
# @ acf
|
104 |
+
#: acf.php:272
|
105 |
msgid "No Field Groups found"
|
106 |
+
msgstr "Nenhum Grupo de Campos encontrado"
|
107 |
|
108 |
+
# @ acf
|
109 |
+
#: acf.php:273
|
110 |
msgid "No Field Groups found in Trash"
|
111 |
+
msgstr "Nenhum Grupo de Campos encontrado na Lixeira"
|
112 |
|
113 |
+
# @ acf
|
114 |
+
#: acf.php:404 acf.php:407
|
|
|
115 |
msgid "Field group updated."
|
116 |
+
msgstr "Grupo de campos atualizado."
|
117 |
|
118 |
+
# @ acf
|
119 |
+
#: acf.php:405
|
120 |
msgid "Custom field updated."
|
121 |
+
msgstr "Campo personalizado atualizado."
|
122 |
|
123 |
+
# @ acf
|
124 |
+
#: acf.php:406
|
125 |
msgid "Custom field deleted."
|
126 |
+
msgstr "Campo personalizado excluído."
|
127 |
|
128 |
+
# @ acf
|
129 |
#. translators: %s: date and time of the revision
|
130 |
+
#: acf.php:409
|
131 |
#, php-format
|
|
|
132 |
msgid "Field group restored to revision from %s"
|
133 |
+
msgstr "Grupo de campos restaurado para revisão de %s"
|
134 |
|
135 |
+
# @ acf
|
136 |
+
#: acf.php:410
|
137 |
msgid "Field group published."
|
138 |
+
msgstr "Grupo de campos publicado."
|
139 |
|
140 |
+
# @ acf
|
141 |
+
#: acf.php:411
|
142 |
msgid "Field group saved."
|
143 |
+
msgstr "Grupo de campos salvo."
|
144 |
|
145 |
+
# @ acf
|
146 |
+
#: acf.php:412
|
147 |
msgid "Field group submitted."
|
148 |
+
msgstr "Grupo de campos enviado."
|
149 |
|
150 |
+
# @ acf
|
151 |
+
#: acf.php:413
|
152 |
msgid "Field group scheduled for."
|
153 |
+
msgstr "Grupo de campos agendado."
|
154 |
|
155 |
+
# @ acf
|
156 |
+
#: acf.php:414
|
157 |
msgid "Field group draft updated."
|
158 |
+
msgstr "Rascunho de grupo de campos atualizado."
|
159 |
|
160 |
+
# @ default
|
161 |
+
#: core/controllers/field_groups.php:147
|
162 |
msgid "Title"
|
163 |
+
msgstr "Título"
|
164 |
|
165 |
+
# @ acf
|
166 |
+
#: core/views/meta_box_fields.php:23
|
|
|
|
|
167 |
msgid "New Field"
|
168 |
msgstr "Novo Campo"
|
169 |
|
170 |
+
# @ acf
|
171 |
+
#: core/views/meta_box_fields.php:64
|
172 |
msgid "Move to trash. Are you sure?"
|
173 |
+
msgstr "Mover para a lixeira. Você tem certeza?"
|
174 |
|
175 |
+
# @ acf
|
176 |
+
#: core/views/meta_box_fields.php:79
|
|
|
|
|
177 |
msgid "Field Order"
|
178 |
msgstr "Ordem do Campo"
|
179 |
|
180 |
+
# @ acf
|
181 |
+
#: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "Field Label"
|
183 |
msgstr "Rótulo do Campo"
|
184 |
|
185 |
+
# @ acf
|
186 |
+
#: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Field Name"
|
188 |
msgstr "Nome do Campo"
|
189 |
|
190 |
+
# @ acf
|
191 |
+
#: core/fields/taxonomy.php:317 core/fields/user.php:260
|
192 |
+
#: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
|
|
|
|
|
|
|
|
|
|
|
193 |
msgid "Field Type"
|
194 |
+
msgstr "Tipo de Campo"
|
195 |
+
|
196 |
+
# @ acf
|
197 |
+
#: core/views/meta_box_fields.php:95
|
198 |
+
msgid ""
|
199 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
200 |
+
"first field."
|
201 |
+
msgstr ""
|
202 |
+
"Nenhum campo. Clique no botão <strong>+ Adicionar Campo</strong> para criar "
|
203 |
+
"seu primeiro campo."
|
204 |
+
|
205 |
+
# @ acf
|
206 |
+
#: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
|
|
|
207 |
msgid "Edit this Field"
|
208 |
+
msgstr "Editar este Campo"
|
209 |
|
210 |
+
# @ acf
|
211 |
+
#: core/fields/file.php:76 core/fields/image.php:76
|
212 |
+
#: core/views/meta_box_fields.php:113
|
|
|
213 |
msgid "Edit"
|
214 |
msgstr "Editar"
|
215 |
|
216 |
+
# @ acf
|
217 |
+
#: core/views/meta_box_fields.php:114
|
|
|
|
|
218 |
msgid "Read documentation for this field"
|
219 |
msgstr "Ler a documentação para esse campo"
|
220 |
|
221 |
+
# @ acf
|
222 |
+
#: core/views/meta_box_fields.php:114
|
|
|
|
|
223 |
msgid "Docs"
|
224 |
msgstr "Docs"
|
225 |
|
226 |
+
# @ acf
|
227 |
+
#: core/views/meta_box_fields.php:115
|
|
|
|
|
228 |
msgid "Duplicate this Field"
|
229 |
msgstr "Duplicar este Campo"
|
230 |
|
231 |
+
# @ acf
|
232 |
+
#: core/views/meta_box_fields.php:115
|
|
|
|
|
233 |
msgid "Duplicate"
|
234 |
msgstr "Duplicar"
|
235 |
|
236 |
+
# @ acf
|
237 |
+
#: core/views/meta_box_fields.php:116
|
|
|
|
|
238 |
msgid "Delete this Field"
|
239 |
+
msgstr "Excluir este Campo"
|
240 |
|
241 |
+
# @ acf
|
242 |
+
#: core/views/meta_box_fields.php:116
|
|
|
|
|
|
|
243 |
msgid "Delete"
|
244 |
+
msgstr "Excluir"
|
245 |
|
246 |
+
# @ acf
|
247 |
+
#: core/views/meta_box_fields.php:133
|
|
|
|
|
248 |
msgid "This is the name which will appear on the EDIT page"
|
249 |
+
msgstr "Este é o nome que irá aparecer na página de EDIÇÃO"
|
250 |
|
251 |
+
# @ acf
|
252 |
+
#: core/views/meta_box_fields.php:149
|
|
|
|
|
253 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
254 |
+
msgstr ""
|
255 |
+
"Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos"
|
256 |
|
257 |
+
# @ acf
|
258 |
+
#: core/views/meta_box_fields.php:176
|
259 |
msgid "Field Instructions"
|
260 |
msgstr "Instruções do Campo"
|
261 |
|
262 |
+
# @ acf
|
263 |
+
#: core/views/meta_box_fields.php:177
|
264 |
msgid "Instructions for authors. Shown when submitting data"
|
265 |
+
msgstr "Instrução para os autores. Exibido quando se está enviando dados"
|
266 |
|
267 |
+
# @ acf
|
268 |
+
#: core/views/meta_box_fields.php:189
|
269 |
msgid "Required?"
|
270 |
msgstr "Obrigatório?"
|
271 |
|
272 |
+
# @ acf
|
273 |
+
#: core/views/meta_box_fields.php:306
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Close Field"
|
275 |
msgstr "Fechar Campo"
|
276 |
|
277 |
+
# @ acf
|
278 |
+
#: core/views/meta_box_fields.php:319
|
|
|
|
|
279 |
msgid "Drag and drop to reorder"
|
280 |
msgstr "Clique e arraste para reorganizar"
|
281 |
|
282 |
+
# @ acf
|
283 |
+
#: core/views/meta_box_fields.php:320
|
284 |
msgid "+ Add Field"
|
285 |
msgstr "+ Adicionar Campo"
|
286 |
|
287 |
+
# @ acf
|
288 |
+
#: core/views/meta_box_location.php:45
|
289 |
msgid "Rules"
|
290 |
msgstr "Regras"
|
291 |
|
292 |
+
# @ acf
|
293 |
+
#: core/views/meta_box_location.php:46
|
294 |
+
msgid ""
|
295 |
+
"Create a set of rules to determine which edit screens will use these "
|
296 |
+
"advanced custom fields"
|
297 |
+
msgstr ""
|
298 |
+
"Criar um conjunto de regras para determinar quais telas de edição irão "
|
299 |
+
"utilizar esses campos avançados."
|
300 |
|
301 |
+
# @ acf
|
302 |
+
#: core/fields/_base.php:120 core/views/meta_box_location.php:71
|
|
|
303 |
msgid "Basic"
|
304 |
msgstr "Básico"
|
305 |
|
306 |
+
# @ acf
|
307 |
+
#: core/fields/page_link.php:78 core/fields/post_object.php:263
|
308 |
+
#: core/fields/relationship.php:533 core/fields/relationship.php:612
|
309 |
+
#: core/views/meta_box_location.php:72
|
|
|
310 |
msgid "Post Type"
|
311 |
msgstr "Tipo de Post"
|
312 |
|
313 |
+
# @ acf
|
314 |
+
#: core/views/meta_box_location.php:73
|
315 |
msgid "Logged in User Type"
|
316 |
msgstr "Tipo de Usuário Logado"
|
317 |
|
318 |
+
# @ acf
|
319 |
+
#: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
|
|
|
|
|
|
|
|
|
|
|
320 |
msgid "Page"
|
321 |
msgstr "Página"
|
322 |
|
323 |
+
# @ acf
|
324 |
+
#: core/views/meta_box_location.php:77
|
325 |
msgid "Page Type"
|
326 |
msgstr "Tipo de Página"
|
327 |
|
328 |
+
# @ acf
|
329 |
+
#: core/views/meta_box_location.php:78
|
330 |
msgid "Page Parent"
|
331 |
+
msgstr "Página Mãe"
|
332 |
|
333 |
+
# @ acf
|
334 |
+
#: core/views/meta_box_location.php:79
|
335 |
msgid "Page Template"
|
336 |
+
msgstr "Modelo de Página"
|
|
|
|
|
|
|
|
|
|
|
337 |
|
338 |
+
# @ acf
|
339 |
+
#: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
|
340 |
msgid "Post"
|
341 |
msgstr "Post"
|
342 |
|
343 |
+
# @ acf
|
344 |
+
#: core/views/meta_box_location.php:83
|
345 |
msgid "Post Category"
|
346 |
msgstr "Categoria de Post"
|
347 |
|
348 |
+
# @ acf
|
349 |
+
#: core/views/meta_box_location.php:84
|
350 |
msgid "Post Format"
|
351 |
msgstr "Formato de Post"
|
352 |
|
353 |
+
# @ acf
|
354 |
+
#: core/views/meta_box_location.php:85
|
355 |
msgid "Post Taxonomy"
|
356 |
msgstr "Taxonomia de Post"
|
357 |
|
358 |
+
# @ acf
|
359 |
+
#: core/views/meta_box_location.php:87
|
360 |
msgid "Other"
|
361 |
msgstr "Outro"
|
362 |
|
363 |
+
# @ acf
|
364 |
+
#: core/views/meta_box_location.php:89
|
|
|
|
|
|
|
|
|
|
|
365 |
msgid "User (Add / Edit)"
|
366 |
+
msgstr "Usuário (Pág. de Adição / Edição)"
|
|
|
|
|
|
|
|
|
|
|
367 |
|
368 |
+
# @ acf
|
369 |
+
#: core/controllers/addons.php:144 core/controllers/export.php:380
|
370 |
+
#: core/controllers/field_groups.php:448
|
371 |
msgid "Options Page"
|
372 |
msgstr "Página de Opções"
|
373 |
|
374 |
+
# @ acf
|
375 |
+
#: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
|
376 |
msgid "is equal to"
|
377 |
msgstr "é igual a"
|
378 |
|
379 |
+
# @ acf
|
380 |
+
#: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
|
381 |
msgid "is not equal to"
|
382 |
msgstr "não é igual a"
|
383 |
|
384 |
+
# @ acf
|
385 |
+
#: core/views/meta_box_fields.php:288
|
|
|
|
|
|
|
|
|
|
|
386 |
msgid "all"
|
387 |
+
msgstr "todas"
|
388 |
|
389 |
+
# @ acf
|
390 |
+
#: core/views/meta_box_fields.php:289
|
391 |
msgid "any"
|
392 |
+
msgstr "quaisquer"
|
|
|
|
|
|
|
|
|
|
|
393 |
|
394 |
+
# @ acf
|
395 |
+
#: core/views/meta_box_location.php:168
|
396 |
msgid "Unlock options add-on with an activation code"
|
397 |
+
msgstr "Desbloqueie o complemento de opções com um código de ativação"
|
398 |
|
399 |
+
# @ acf
|
400 |
+
#: core/views/meta_box_options.php:23
|
401 |
msgid "Order No."
|
402 |
msgstr "No. de Ordem"
|
403 |
|
404 |
+
# @ acf
|
405 |
+
#: core/views/meta_box_options.php:40
|
|
|
|
|
|
|
|
|
|
|
406 |
msgid "Position"
|
407 |
msgstr "Posição"
|
408 |
|
409 |
+
# @ acf
|
410 |
+
#: core/views/meta_box_options.php:50
|
411 |
msgid "Normal"
|
412 |
msgstr "Normal"
|
413 |
|
414 |
+
# @ acf
|
415 |
+
#: core/views/meta_box_options.php:51
|
416 |
msgid "Side"
|
417 |
+
msgstr "Lateral"
|
418 |
|
419 |
+
# @ acf
|
420 |
+
#: core/views/meta_box_options.php:60
|
421 |
msgid "Style"
|
422 |
msgstr "Estilo"
|
423 |
|
424 |
+
# @ acf
|
425 |
+
#: core/views/meta_box_options.php:71
|
426 |
msgid "Standard Metabox"
|
427 |
msgstr "Metabox Padrão"
|
428 |
|
429 |
+
# @ acf
|
430 |
+
#: core/views/meta_box_options.php:70
|
431 |
msgid "No Metabox"
|
432 |
msgstr "Sem Metabox"
|
433 |
|
434 |
+
# @ acf
|
435 |
+
#: core/views/meta_box_options.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
msgid "Content Editor"
|
437 |
msgstr "Editor de Conteúdo"
|
438 |
|
439 |
+
# @ default
|
440 |
+
#: core/views/meta_box_options.php:95
|
441 |
msgid "Discussion"
|
442 |
msgstr "Discussão"
|
443 |
|
444 |
+
# @ default
|
445 |
+
#: core/views/meta_box_options.php:96
|
446 |
msgid "Comments"
|
447 |
msgstr "Comentários"
|
448 |
|
449 |
+
# @ default
|
450 |
+
#: core/views/meta_box_options.php:98
|
451 |
msgid "Slug"
|
452 |
msgstr "Slug"
|
453 |
|
454 |
+
# @ default
|
455 |
+
#: core/views/meta_box_options.php:99
|
456 |
msgid "Author"
|
457 |
msgstr "Autor"
|
458 |
|
459 |
+
# @ acf
|
460 |
+
#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
|
461 |
msgid "Changelog"
|
462 |
+
msgstr "Changelog"
|
463 |
|
464 |
+
# @ acf
|
465 |
+
#: core/controllers/field_groups.php:217
|
466 |
msgid "See what's new in"
|
467 |
+
msgstr "Veja o que há de novo na"
|
468 |
|
469 |
+
# @ acf
|
470 |
+
#: core/controllers/field_groups.php:219
|
471 |
msgid "Resources"
|
472 |
+
msgstr "Recursos (em inglês)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
|
474 |
+
# @ acf
|
475 |
+
#: core/controllers/field_groups.php:232
|
476 |
msgid "Created by"
|
477 |
msgstr "Criado por"
|
478 |
|
479 |
+
# @ acf
|
480 |
+
#: core/controllers/field_groups.php:235
|
481 |
msgid "Vote"
|
482 |
msgstr "Votar"
|
483 |
|
484 |
+
# @ acf
|
485 |
+
#: core/controllers/field_groups.php:236
|
486 |
msgid "Follow"
|
487 |
msgstr "Seguir"
|
488 |
|
489 |
+
# @ acf
|
490 |
+
#: core/controllers/field_groups.php:424
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
msgid "Activation Code"
|
492 |
msgstr "Código de Ativação"
|
493 |
|
494 |
+
# @ acf
|
495 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:432
|
496 |
msgid "Repeater Field"
|
497 |
msgstr "Campo Repetidor"
|
498 |
|
499 |
+
# @ acf
|
500 |
+
#: core/controllers/addons.php:151
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
msgid "Flexible Content Field"
|
502 |
msgstr "Campo de Conteúdo Flexível"
|
503 |
|
504 |
+
# @ acf
|
505 |
+
#: core/controllers/export.php:253
|
506 |
+
msgid ""
|
507 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
508 |
+
"import plugin."
|
509 |
+
msgstr ""
|
510 |
+
"O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin "
|
511 |
+
"de importação nativo do WP."
|
512 |
+
|
513 |
+
# @ acf
|
514 |
+
#: core/controllers/export.php:259
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
msgid "Install WP import plugin if prompted"
|
516 |
msgstr "Instale o plugin de importação do WP se necessário"
|
517 |
|
518 |
+
# @ acf
|
519 |
+
#: core/controllers/export.php:260
|
520 |
msgid "Upload and import your exported .xml file"
|
521 |
+
msgstr "Faça o upload e importe o arquivo .xml exportado"
|
522 |
|
523 |
+
# @ acf
|
524 |
+
#: core/controllers/export.php:261
|
525 |
msgid "Select your user and ignore Import Attachments"
|
526 |
+
msgstr "Selecione o seu usuário e ignore a Importação de Anexos"
|
527 |
|
528 |
+
# @ acf
|
529 |
+
#: core/controllers/export.php:262
|
530 |
msgid "That's it! Happy WordPressing"
|
531 |
msgstr "É isso! Feliz WordPressing"
|
532 |
|
533 |
+
# @ acf
|
534 |
+
#: core/controllers/export.php:295
|
535 |
msgid "Export Field Groups to PHP"
|
536 |
msgstr "Exportar Grupos de Campos para PHP"
|
537 |
|
538 |
+
# @ acf
|
539 |
+
#: core/controllers/export.php:273 core/controllers/export.php:302
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
msgid "Copy the PHP code generated"
|
541 |
msgstr "Copie o código PHP gerado"
|
542 |
|
543 |
+
# @ acf
|
544 |
+
#: core/controllers/export.php:274 core/controllers/export.php:303
|
|
|
545 |
msgid "Paste into your functions.php file"
|
546 |
msgstr "Cole no seu arquivo functions.php"
|
547 |
|
548 |
+
# @ acf
|
549 |
+
#: core/controllers/export.php:275 core/controllers/export.php:304
|
|
|
550 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
msgstr ""
|
552 |
+
"Para ativar qualquer Complemento, edite e utilize o código que estão nas "
|
553 |
+
"linhas iniciais."
|
|
|
|
|
|
|
|
|
554 |
|
555 |
+
# @ acf
|
556 |
+
#: core/controllers/export.php:435
|
557 |
msgid "No field groups were selected"
|
558 |
msgstr "Nenhum grupo de campos foi selecionado"
|
559 |
|
560 |
+
# @ acf
|
561 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
|
562 |
msgid "Checkbox"
|
563 |
+
msgstr "Checkbox"
|
564 |
+
|
565 |
+
# @ acf
|
566 |
+
#: core/fields/checkbox.php:147 core/fields/radio.php:121
|
567 |
+
#: core/fields/select.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
msgid "Choices"
|
569 |
msgstr "Escolhas"
|
570 |
|
571 |
+
# @ acf
|
572 |
+
#: core/fields/radio.php:122
|
|
|
|
|
573 |
msgid "Enter your choices one per line"
|
574 |
+
msgstr "Digite cada uma de suas opções em uma nova linha."
|
575 |
|
576 |
+
# @ acf
|
577 |
+
#: core/fields/radio.php:124
|
|
|
|
|
578 |
msgid "Red"
|
579 |
msgstr "Vermelho"
|
580 |
|
581 |
+
# @ acf
|
582 |
+
#: core/fields/radio.php:125
|
|
|
|
|
583 |
msgid "Blue"
|
584 |
msgstr "Azul"
|
585 |
|
586 |
+
# @ acf
|
587 |
+
#: core/fields/checkbox.php:150 core/fields/radio.php:127
|
588 |
+
#: core/fields/select.php:186
|
|
|
589 |
msgid "red : Red"
|
590 |
msgstr "vermelho : Vermelho"
|
591 |
|
592 |
+
# @ acf
|
593 |
+
#: core/fields/checkbox.php:150 core/fields/radio.php:128
|
594 |
+
#: core/fields/select.php:186
|
|
|
595 |
msgid "blue : Blue"
|
596 |
msgstr "azul : Azul"
|
597 |
|
598 |
+
# @ acf
|
599 |
+
#: core/fields/color_picker.php:19
|
600 |
msgid "Color Picker"
|
601 |
+
msgstr "Seletor de Cor"
|
602 |
|
603 |
+
# @ acf
|
604 |
+
#: core/fields/date_picker/date_picker.php:19
|
605 |
msgid "Date Picker"
|
606 |
msgstr "Seletor de Datas"
|
607 |
|
608 |
+
# @ acf
|
609 |
+
#: core/fields/file.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
msgid "File"
|
611 |
msgstr "Arquivo"
|
612 |
|
613 |
+
# @ acf
|
614 |
+
#: core/fields/file.php:84
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "No File Selected"
|
616 |
msgstr "Nenhum Arquivo Selecionado"
|
617 |
|
618 |
+
# @ acf
|
619 |
+
#: core/fields/file.php:84
|
620 |
msgid "Add File"
|
621 |
msgstr "Adicionar Arquivo"
|
622 |
|
623 |
+
# @ acf
|
624 |
+
#: core/fields/file.php:119 core/fields/image.php:116
|
625 |
+
#: core/fields/taxonomy.php:376
|
626 |
msgid "Return Value"
|
627 |
+
msgstr "Valor Retornado"
|
628 |
|
629 |
+
# @ acf
|
630 |
+
#: core/fields/file.php:493
|
631 |
msgid "No files selected"
|
632 |
msgstr "Nenhum arquivo selecionado"
|
633 |
|
634 |
+
# @ acf
|
635 |
+
#: core/fields/file.php:634
|
636 |
msgid "Add Selected Files"
|
637 |
msgstr "Adicionar Arquivos Selecionados"
|
638 |
|
639 |
+
# @ acf
|
640 |
+
#: core/fields/file.php:667
|
641 |
msgid "Select File"
|
642 |
msgstr "Selecionar Arquivo"
|
643 |
|
644 |
+
# @ acf
|
645 |
+
#: core/controllers/field_groups.php:456
|
646 |
msgid "Flexible Content"
|
647 |
msgstr "Conteúdo Flexível"
|
648 |
|
649 |
+
# @ acf
|
650 |
+
#: core/fields/message.php:20 core/fields/radio.php:162 core/fields/tab.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
msgid "Layout"
|
652 |
msgstr "Layout"
|
653 |
|
654 |
+
# @ acf
|
655 |
+
#: core/controllers/field_groups.php:423
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
msgid "Name"
|
657 |
msgstr "Nome"
|
658 |
|
659 |
+
# @ acf
|
660 |
+
#: core/fields/image.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
msgid "Image"
|
662 |
msgstr "Imagem"
|
663 |
|
664 |
+
# @ acf
|
665 |
+
#: core/fields/image.php:82
|
666 |
msgid "No image selected"
|
667 |
msgstr "Nenhuma imagem selecionada"
|
668 |
|
669 |
+
# @ acf
|
670 |
+
#: core/fields/image.php:82
|
671 |
msgid "Add Image"
|
672 |
msgstr "Adicionar Imagem"
|
673 |
|
674 |
+
# @ acf
|
675 |
+
#: core/fields/image.php:127
|
676 |
msgid "Image URL"
|
677 |
msgstr "URL da Imagem"
|
678 |
|
679 |
+
# @ acf
|
680 |
+
#: core/fields/image.php:136
|
|
|
|
|
|
|
|
|
|
|
681 |
msgid "Preview Size"
|
682 |
msgstr "Tamanho da Pré-visualização"
|
683 |
|
684 |
+
# @ acf
|
685 |
+
#: acf.php:549
|
686 |
msgid "Thumbnail"
|
687 |
msgstr "Miniatura"
|
688 |
|
689 |
+
# @ acf
|
690 |
+
#: acf.php:550
|
691 |
msgid "Medium"
|
692 |
msgstr "Média"
|
693 |
|
694 |
+
# @ acf
|
695 |
+
#: acf.php:551
|
696 |
msgid "Large"
|
697 |
msgstr "Grande"
|
698 |
|
699 |
+
# @ acf
|
700 |
+
#: acf.php:552
|
|
|
701 |
msgid "Full"
|
702 |
+
msgstr "Completo"
|
703 |
|
704 |
+
# @ acf
|
705 |
+
#: core/fields/image.php:525
|
706 |
msgid "No images selected"
|
707 |
msgstr "Nenhuma imagem selecionada"
|
708 |
|
709 |
+
# @ acf
|
710 |
+
#: core/fields/image.php:696
|
|
|
|
|
|
|
|
|
|
|
711 |
msgid "Select Image"
|
712 |
msgstr "Selecionar Imagem"
|
713 |
|
714 |
+
# @ acf
|
715 |
+
#: core/fields/page_link.php:19
|
716 |
msgid "Page Link"
|
717 |
msgstr "Link da Página"
|
718 |
|
719 |
+
# @ acf
|
720 |
+
#: core/fields/select.php:22 core/fields/taxonomy.php:333
|
721 |
+
#: core/fields/user.php:275
|
|
|
722 |
msgid "Select"
|
723 |
msgstr "Seleção"
|
724 |
|
725 |
+
# @ acf
|
726 |
+
#: core/controllers/field_group.php:712 core/controllers/field_group.php:733
|
727 |
+
#: core/controllers/field_group.php:740 core/fields/page_link.php:84
|
728 |
+
#: core/fields/post_object.php:269 core/fields/post_object.php:293
|
729 |
+
#: core/fields/relationship.php:539 core/fields/relationship.php:563
|
730 |
+
#: core/fields/user.php:238
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
731 |
msgid "All"
|
732 |
msgstr "Todos"
|
733 |
|
734 |
+
# @ acf
|
735 |
+
#: core/fields/page_link.php:102 core/fields/post_object.php:312
|
736 |
+
#: core/fields/select.php:220 core/fields/taxonomy.php:342
|
737 |
+
#: core/fields/user.php:284
|
738 |
msgid "Allow Null?"
|
739 |
msgstr "Permitir Nulo?"
|
740 |
|
741 |
+
# @ acf
|
742 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:112
|
743 |
+
#: core/fields/page_link.php:133 core/fields/post_object.php:322
|
744 |
+
#: core/fields/post_object.php:343 core/fields/select.php:229
|
745 |
+
#: core/fields/select.php:248 core/fields/taxonomy.php:351
|
746 |
+
#: core/fields/user.php:293 core/fields/wysiwyg.php:235
|
747 |
+
#: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
|
|
|
748 |
msgid "Yes"
|
749 |
msgstr "Sim"
|
750 |
|
751 |
+
# @ acf
|
752 |
+
#: core/controllers/field_group.php:430 core/fields/page_link.php:113
|
753 |
+
#: core/fields/page_link.php:134 core/fields/post_object.php:323
|
754 |
+
#: core/fields/post_object.php:344 core/fields/select.php:230
|
755 |
+
#: core/fields/select.php:249 core/fields/taxonomy.php:352
|
756 |
+
#: core/fields/user.php:294 core/fields/wysiwyg.php:236
|
757 |
+
#: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
|
|
|
758 |
msgid "No"
|
759 |
msgstr "Não"
|
760 |
|
761 |
+
# @ acf
|
762 |
+
#: core/fields/page_link.php:123 core/fields/post_object.php:333
|
763 |
+
#: core/fields/select.php:239
|
|
|
764 |
msgid "Select multiple values?"
|
765 |
+
msgstr "Selecionar vários valores?"
|
766 |
|
767 |
+
# @ acf
|
768 |
+
#: core/fields/post_object.php:22
|
769 |
msgid "Post Object"
|
770 |
msgstr "Objeto do Post"
|
771 |
|
772 |
+
# @ acf
|
773 |
+
#: core/fields/post_object.php:287 core/fields/relationship.php:557
|
|
|
774 |
msgid "Filter from Taxonomy"
|
775 |
+
msgstr "Filtro de Taxonomia"
|
776 |
|
777 |
+
# @ acf
|
778 |
+
#: core/fields/radio.php:19
|
779 |
msgid "Radio Button"
|
780 |
msgstr "Botão de Rádio"
|
781 |
|
782 |
+
# @ acf
|
783 |
+
#: core/fields/checkbox.php:167 core/fields/color_picker.php:73
|
784 |
+
#: core/fields/email.php:71 core/fields/number.php:71
|
785 |
+
#: core/fields/radio.php:146 core/fields/select.php:203
|
786 |
+
#: core/fields/text.php:73 core/fields/textarea.php:73
|
787 |
+
#: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
|
788 |
msgid "Default Value"
|
789 |
msgstr "Valor Padrão"
|
790 |
|
791 |
+
# @ acf
|
792 |
+
#: core/fields/radio.php:173
|
793 |
msgid "Vertical"
|
794 |
msgstr "Vertical"
|
795 |
|
796 |
+
# @ acf
|
797 |
+
#: core/fields/radio.php:174
|
798 |
msgid "Horizontal"
|
799 |
msgstr "Horizontal"
|
800 |
|
801 |
+
# @ acf
|
802 |
+
#: core/fields/relationship.php:22
|
803 |
msgid "Relationship"
|
804 |
msgstr "Relação"
|
805 |
|
806 |
+
# @ acf
|
807 |
+
#: core/fields/relationship.php:591
|
808 |
msgid "Search"
|
809 |
+
msgstr "Pesquisa"
|
810 |
|
811 |
+
# @ acf
|
812 |
+
#: core/fields/relationship.php:623
|
813 |
msgid "Maximum posts"
|
814 |
msgstr "Posts máximos"
|
815 |
|
816 |
+
# @ acf
|
817 |
+
#: core/fields/text.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
msgid "Text"
|
819 |
msgstr "Texto"
|
820 |
|
821 |
+
# @ acf
|
822 |
+
#: core/fields/text.php:87 core/fields/textarea.php:87
|
|
|
823 |
msgid "Formatting"
|
824 |
msgstr "Formatação"
|
825 |
|
826 |
+
# @ acf
|
827 |
+
#: core/fields/text.php:88
|
828 |
msgid "Define how to render html tags"
|
829 |
msgstr "Define como renderizar as tags html"
|
830 |
|
831 |
+
# @ acf
|
832 |
+
#: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
|
833 |
+
#: core/fields/text.php:97 core/fields/textarea.php:97
|
834 |
msgid "None"
|
835 |
+
msgstr "Nenhuma"
|
836 |
|
837 |
+
# @ acf
|
838 |
+
#: core/fields/text.php:98 core/fields/textarea.php:99
|
|
|
839 |
msgid "HTML"
|
840 |
msgstr "HTML"
|
841 |
|
842 |
+
# @ acf
|
843 |
+
#: core/fields/textarea.php:19
|
844 |
msgid "Text Area"
|
845 |
msgstr "Área de Texto"
|
846 |
|
847 |
+
# @ acf
|
848 |
+
#: core/fields/textarea.php:88
|
849 |
msgid "Define how to render html tags / new lines"
|
850 |
msgstr "Define como renderizar as tags html / novas linhas"
|
851 |
|
852 |
+
# @ acf
|
853 |
+
#: core/fields/textarea.php:98
|
854 |
msgid "auto <br />"
|
855 |
msgstr "auto <br />"
|
856 |
|
857 |
+
# @ acf
|
858 |
+
#: core/fields/true_false.php:19
|
859 |
msgid "True / False"
|
860 |
msgstr "Verdadeiro / Falso"
|
861 |
|
862 |
+
# @ acf
|
863 |
+
#: core/fields/message.php:19 core/fields/message.php:71
|
864 |
+
#: core/fields/true_false.php:89
|
865 |
msgid "Message"
|
866 |
msgstr "Mensagem"
|
867 |
|
868 |
+
# @ acf
|
869 |
+
#: core/fields/true_false.php:90
|
870 |
msgid "eg. Show extra content"
|
871 |
+
msgstr "ex.: Mostrar conteúdo adicional"
|
872 |
|
873 |
+
# @ acf
|
874 |
+
#: core/fields/wysiwyg.php:19
|
875 |
msgid "Wysiwyg Editor"
|
876 |
msgstr "Editor Wysiwyg"
|
877 |
|
878 |
+
# @ acf
|
879 |
+
#: core/fields/wysiwyg.php:193
|
880 |
msgid "Toolbar"
|
881 |
msgstr "Barra de Ferramentas"
|
882 |
|
883 |
+
# @ acf
|
884 |
+
#: core/fields/wysiwyg.php:225
|
885 |
msgid "Show Media Upload Buttons?"
|
886 |
msgstr "Mostrar Botões de Upload de Mídia?"
|
887 |
|
888 |
+
# @ acf
|
889 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:57
|
890 |
+
msgid "Error"
|
891 |
+
msgstr "Erro"
|
892 |
|
893 |
+
# @ acf
|
894 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
895 |
+
msgid "Add-ons"
|
896 |
+
msgstr "Complementos"
|
897 |
|
898 |
+
# @ acf
|
899 |
+
#: core/controllers/addons.php:131
|
900 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
901 |
+
msgstr ""
|
902 |
+
"Através desta versátil interface é prossível criar infinitas linhas de dados "
|
903 |
+
"repetitíveis!"
|
904 |
+
|
905 |
+
# @ acf
|
906 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:440
|
907 |
+
msgid "Gallery Field"
|
908 |
+
msgstr "Campo de Galeria"
|
909 |
+
|
910 |
+
# @ acf
|
911 |
+
#: core/controllers/addons.php:138
|
912 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
913 |
+
msgstr "Cria galerias de imagens em uma interface simples e intuitiva!"
|
914 |
+
|
915 |
+
# @ acf
|
916 |
+
#: core/controllers/addons.php:145
|
917 |
+
msgid "Create global data to use throughout your website!"
|
918 |
+
msgstr "Cria dados globais para serem usados em todo o seu site!"
|
919 |
+
|
920 |
+
# @ acf
|
921 |
+
#: core/controllers/addons.php:152
|
922 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
923 |
+
msgstr ""
|
924 |
+
"Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!"
|
925 |
+
|
926 |
+
# @ acf
|
927 |
+
#: core/controllers/addons.php:161
|
928 |
+
msgid "Gravity Forms Field"
|
929 |
+
msgstr "Campo Gravity Forms"
|
930 |
+
|
931 |
+
# @ acf
|
932 |
+
#: core/controllers/addons.php:162
|
933 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
934 |
+
msgstr "Cria um campo de seleção preenchido com Gravity Forms!"
|
935 |
+
|
936 |
+
# @ acf
|
937 |
+
#: core/controllers/addons.php:168
|
938 |
+
msgid "Date & Time Picker"
|
939 |
+
msgstr "Seletor de Data e Hora"
|
940 |
+
|
941 |
+
# @ acf
|
942 |
+
#: core/controllers/addons.php:169
|
943 |
+
msgid "jQuery date & time picker"
|
944 |
+
msgstr "Seletor jQuery de data e hora"
|
945 |
+
|
946 |
+
# @ acf
|
947 |
+
#: core/controllers/addons.php:175
|
948 |
+
msgid "Location Field"
|
949 |
+
msgstr "Campo de Localização"
|
950 |
+
|
951 |
+
# @ acf
|
952 |
+
#: core/controllers/addons.php:176
|
953 |
+
msgid "Find addresses and coordinates of a desired location"
|
954 |
+
msgstr "Busca endereços e coordenadas de um local desejado"
|
955 |
+
|
956 |
+
# @ acf
|
957 |
+
#: core/controllers/addons.php:182
|
958 |
+
msgid "Contact Form 7 Field"
|
959 |
+
msgstr "Campo Contact Form 7"
|
960 |
+
|
961 |
+
# @ acf
|
962 |
+
#: core/controllers/addons.php:183
|
963 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
964 |
+
msgstr "Atribui um ou mais formulários Contact Form 7 para um post"
|
965 |
+
|
966 |
+
# @ acf
|
967 |
+
#: core/controllers/addons.php:193
|
968 |
+
msgid "Advanced Custom Fields Add-Ons"
|
969 |
+
msgstr "Complementos do Advanced Custom Fields"
|
970 |
+
|
971 |
+
# @ acf
|
972 |
+
#: core/controllers/addons.php:196
|
973 |
+
msgid ""
|
974 |
+
"The following Add-ons are available to increase the functionality of the "
|
975 |
+
"Advanced Custom Fields plugin."
|
976 |
+
msgstr ""
|
977 |
+
"Os Complementos a seguir estão disponíveis para ampliar as funcionalidades "
|
978 |
+
"do plugin Advanced Custom Fields."
|
979 |
|
980 |
+
# @ acf
|
981 |
+
#: core/controllers/addons.php:197
|
982 |
+
msgid ""
|
983 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
984 |
+
"included in your theme (does not receive updates)."
|
985 |
+
msgstr ""
|
986 |
+
"Cada Complemento pode ser instalado como um plugin separado (recebendo "
|
987 |
+
"atualizações) ou pode ser incluído em seu tema (sem atualizações)."
|
988 |
+
|
989 |
+
# @ acf
|
990 |
+
#: core/controllers/addons.php:218 core/controllers/addons.php:239
|
991 |
+
msgid "Installed"
|
992 |
+
msgstr "Instalado"
|
993 |
+
|
994 |
+
# @ acf
|
995 |
+
#: core/controllers/addons.php:220
|
996 |
+
msgid "Purchase & Install"
|
997 |
+
msgstr "Comprar & Instalar"
|
998 |
+
|
999 |
+
# @ acf
|
1000 |
+
#: core/controllers/addons.php:241 core/controllers/field_groups.php:425
|
1001 |
+
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
1002 |
+
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
1003 |
+
msgid "Download"
|
1004 |
+
msgstr "Download"
|
1005 |
+
|
1006 |
+
# @ acf
|
1007 |
+
#: core/controllers/export.php:50 core/controllers/export.php:159
|
1008 |
+
msgid "Export"
|
1009 |
+
msgstr "Exportar"
|
1010 |
+
|
1011 |
+
# @ acf
|
1012 |
+
#: core/controllers/export.php:216
|
1013 |
+
msgid "Export Field Groups"
|
1014 |
+
msgstr "Exportar Grupos de Campos"
|
1015 |
+
|
1016 |
+
# @ acf
|
1017 |
+
#: core/controllers/export.php:221
|
1018 |
+
msgid "Field Groups"
|
1019 |
+
msgstr "Grupos de Campos"
|
1020 |
+
|
1021 |
+
# @ acf
|
1022 |
+
#: core/controllers/export.php:222
|
1023 |
+
msgid "Select the field groups to be exported"
|
1024 |
+
msgstr "Selecione os grupos de campos para serem exportados"
|
1025 |
+
|
1026 |
+
# @ acf
|
1027 |
+
#: core/controllers/export.php:239 core/controllers/export.php:252
|
1028 |
+
msgid "Export to XML"
|
1029 |
+
msgstr "Exportar como XML"
|
1030 |
+
|
1031 |
+
# @ acf
|
1032 |
+
#: core/controllers/export.php:242 core/controllers/export.php:267
|
1033 |
+
msgid "Export to PHP"
|
1034 |
+
msgstr "Exportar como PHP"
|
1035 |
+
|
1036 |
+
# @ acf
|
1037 |
+
#: core/controllers/export.php:254
|
1038 |
+
msgid ""
|
1039 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
1040 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
1041 |
+
msgstr ""
|
1042 |
+
"Os grupos de campos importados <b>irão</b> aparecer na lista de grupos "
|
1043 |
+
"editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP."
|
1044 |
+
|
1045 |
+
# @ acf
|
1046 |
+
#: core/controllers/export.php:256
|
1047 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
1048 |
+
msgstr ""
|
1049 |
+
"Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\""
|
1050 |
+
|
1051 |
+
# @ acf
|
1052 |
+
#: core/controllers/export.php:257
|
1053 |
+
msgid "Save the .xml file when prompted"
|
1054 |
+
msgstr "Salvar o arquivo .xml quando solicitado"
|
1055 |
+
|
1056 |
+
# @ acf
|
1057 |
+
#: core/controllers/export.php:258
|
1058 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
1059 |
+
msgstr "Navegue até Ferramentas » Importar e selecione WordPress"
|
1060 |
+
|
1061 |
+
# @ acf
|
1062 |
+
#: core/controllers/export.php:268
|
1063 |
+
msgid "ACF will create the PHP code to include in your theme."
|
1064 |
+
msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema."
|
1065 |
+
|
1066 |
+
# @ acf
|
1067 |
+
#: core/controllers/export.php:269 core/controllers/export.php:310
|
1068 |
+
msgid ""
|
1069 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
1070 |
+
"groups. This is useful for including fields in themes."
|
1071 |
+
msgstr ""
|
1072 |
+
"Os grupos de campos registrados <b>não irão</b> aparecer na lista de campos "
|
1073 |
+
"editáveis. Isso pode ser útil para incluir grupos de campos em temas."
|
1074 |
|
1075 |
+
# @ acf
|
1076 |
+
#: core/controllers/export.php:272
|
1077 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
1078 |
+
msgstr ""
|
1079 |
+
"Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\""
|
1080 |
+
|
1081 |
+
# @ acf
|
1082 |
+
#: core/controllers/export.php:300 core/fields/tab.php:64
|
1083 |
+
msgid "Instructions"
|
1084 |
+
msgstr "Instruções"
|
1085 |
+
|
1086 |
+
# @ acf
|
1087 |
+
#: core/controllers/export.php:309
|
1088 |
+
msgid "Notes"
|
1089 |
+
msgstr "Observações"
|
1090 |
+
|
1091 |
+
# @ acf
|
1092 |
+
#: core/controllers/export.php:316
|
1093 |
+
msgid "Include in theme"
|
1094 |
+
msgstr "Inclusão no tema"
|
1095 |
+
|
1096 |
+
# @ acf
|
1097 |
+
#: core/controllers/export.php:317
|
1098 |
+
msgid ""
|
1099 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
1100 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
1101 |
+
"functions.php file:"
|
1102 |
+
msgstr ""
|
1103 |
+
"O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer "
|
1104 |
+
"isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o "
|
1105 |
+
"seguinte código em seu arquivo functions.php"
|
1106 |
+
|
1107 |
+
# @ acf
|
1108 |
+
#: core/controllers/export.php:331
|
1109 |
+
msgid "Back to export"
|
1110 |
+
msgstr "Voltar para a exportação"
|
1111 |
+
|
1112 |
+
# @ acf
|
1113 |
+
#: core/controllers/export.php:352
|
1114 |
+
msgid ""
|
1115 |
+
"/**\n"
|
1116 |
+
" * Install Add-ons\n"
|
1117 |
+
" * \n"
|
1118 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
1119 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
1120 |
+
"produce an error.\n"
|
1121 |
+
" * \n"
|
1122 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
1123 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
1124 |
+
"of this action.\n"
|
1125 |
+
" * \n"
|
1126 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
1127 |
+
"theme.\n"
|
1128 |
+
" *\n"
|
1129 |
+
" * IMPORTANT\n"
|
1130 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
1131 |
+
"conditions.\n"
|
1132 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
1133 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
1134 |
+
"terms-conditions/\n"
|
1135 |
+
" */"
|
1136 |
+
msgstr ""
|
1137 |
+
"/**\n"
|
1138 |
+
" * Instalar Complementos\n"
|
1139 |
+
" * \n"
|
1140 |
+
" * O código a seguir irá incluir todos os 4 Complementos Premium em seu "
|
1141 |
+
"tema.\n"
|
1142 |
+
" * Não tente incluir um arquivo que não existe. Isso irá produzir um erro.\n"
|
1143 |
+
" * \n"
|
1144 |
+
" * Todos os campos devem ser incluídos durante a ação 'acf/"
|
1145 |
+
"register_fields'.\n"
|
1146 |
+
" * Outros tipos de Complementos (como a Página de Opções) podem ser "
|
1147 |
+
"incluídos fora desta action.\n"
|
1148 |
+
" * \n"
|
1149 |
+
" * O código a seguir pressupõe que você tenha uma pasta 'add-ons' dentro de "
|
1150 |
+
"seu tema.\n"
|
1151 |
+
" *\n"
|
1152 |
+
" * IMPORTANTE\n"
|
1153 |
+
" * Complementos podem ser incluídos em temas premium conforme descrito nos "
|
1154 |
+
"termos e condições.\n"
|
1155 |
+
" * No entanto, eles NÃO podem ser incluídos em plugins premium / "
|
1156 |
+
"gratuitos.\n"
|
1157 |
+
" * Para mais informações, por favor leia http://www.advancedcustomfields."
|
1158 |
+
"com/terms-conditions/\n"
|
1159 |
+
" */"
|
1160 |
+
|
1161 |
+
# @ acf
|
1162 |
+
#: core/controllers/export.php:384
|
1163 |
+
msgid ""
|
1164 |
+
"/**\n"
|
1165 |
+
" * Register Field Groups\n"
|
1166 |
+
" *\n"
|
1167 |
+
" * The register_field_group function accepts 1 array which holds the "
|
1168 |
+
"relevant data to register a field group\n"
|
1169 |
+
" * You may edit the array as you see fit. However, this may result in "
|
1170 |
+
"errors if the array is not compatible with ACF\n"
|
1171 |
+
" */"
|
1172 |
+
msgstr ""
|
1173 |
+
"/**\n"
|
1174 |
+
" * Registrar Grupos de Campos\n"
|
1175 |
+
" *\n"
|
1176 |
+
" * A função register_field_group aceita 1 array que retém os dados "
|
1177 |
+
"necessários para registrar um grupo de campos.\n"
|
1178 |
+
" * Você pode editar o array conforme a sua necessidade, entretanto, isso "
|
1179 |
+
"pode resultar em erros caso o array não esteja compatível com o ACF.\n"
|
1180 |
+
" */"
|
1181 |
+
|
1182 |
+
# @ acf
|
1183 |
+
#: core/controllers/field_group.php:429
|
1184 |
+
msgid "Show Field Key:"
|
1185 |
+
msgstr "Mostrar a Chave do Campo"
|
1186 |
+
|
1187 |
+
# @ acf
|
1188 |
+
#: core/controllers/field_group.php:608
|
1189 |
+
msgid "Front Page"
|
1190 |
+
msgstr "Página Inicial"
|
1191 |
+
|
1192 |
+
# @ acf
|
1193 |
+
#: core/controllers/field_group.php:609
|
1194 |
+
msgid "Posts Page"
|
1195 |
+
msgstr "Página de Posts"
|
1196 |
+
|
1197 |
+
# @ acf
|
1198 |
+
#: core/controllers/field_group.php:610
|
1199 |
+
msgid "Top Level Page (parent of 0)"
|
1200 |
+
msgstr "Página de nível mais alto (sem mãe)"
|
1201 |
+
|
1202 |
+
# @ acf
|
1203 |
+
#: core/controllers/field_group.php:611
|
1204 |
+
msgid "Parent Page (has children)"
|
1205 |
+
msgstr "Página Mãe (tem filhos)"
|
1206 |
+
|
1207 |
+
# @ acf
|
1208 |
+
#: core/controllers/field_group.php:612
|
1209 |
+
msgid "Child Page (has parent)"
|
1210 |
+
msgstr "Página filha (possui mãe)"
|
1211 |
+
|
1212 |
+
# @ acf
|
1213 |
+
#: core/controllers/field_groups.php:217
|
1214 |
+
msgid "version"
|
1215 |
+
msgstr "versão"
|
1216 |
+
|
1217 |
+
# @ acf
|
1218 |
+
#: core/controllers/field_groups.php:221
|
1219 |
+
msgid "Getting Started"
|
1220 |
+
msgstr "Primeiros Passos"
|
1221 |
+
|
1222 |
+
# @ acf
|
1223 |
+
#: core/controllers/field_groups.php:222
|
1224 |
+
msgid "Field Types"
|
1225 |
+
msgstr "Tipos de Campos"
|
1226 |
+
|
1227 |
+
# @ acf
|
1228 |
+
#: core/controllers/field_groups.php:223
|
1229 |
+
msgid "Functions"
|
1230 |
+
msgstr "Funções"
|
1231 |
+
|
1232 |
+
# @ acf
|
1233 |
+
#: core/controllers/field_groups.php:224
|
1234 |
+
msgid "Actions"
|
1235 |
+
msgstr "Ações"
|
1236 |
+
|
1237 |
+
# @ acf
|
1238 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:582
|
1239 |
+
msgid "Filters"
|
1240 |
+
msgstr "Filtros"
|
1241 |
+
|
1242 |
+
# @ acf
|
1243 |
+
#: core/controllers/field_groups.php:226
|
1244 |
+
msgid "'How to' guides"
|
1245 |
+
msgstr "Guias práticos"
|
1246 |
+
|
1247 |
+
# @ acf
|
1248 |
+
#: core/controllers/field_groups.php:227
|
1249 |
+
msgid "Tutorials"
|
1250 |
+
msgstr "Tutoriais"
|
1251 |
+
|
1252 |
+
# @ acf
|
1253 |
+
#: core/controllers/field_groups.php:248
|
1254 |
+
msgid "Welcome to Advanced Custom Fields"
|
1255 |
+
msgstr "Bem-vindo ao Advanced Custom Fields"
|
1256 |
+
|
1257 |
+
# @ acf
|
1258 |
+
#: core/controllers/field_groups.php:249
|
1259 |
+
msgid "Thank you for updating to the latest version!"
|
1260 |
+
msgstr "Ele foi atualizado para a última versão!"
|
1261 |
+
|
1262 |
+
# @ acf
|
1263 |
+
#: core/controllers/field_groups.php:249
|
1264 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
1265 |
+
msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta."
|
1266 |
+
|
1267 |
+
# @ acf
|
1268 |
+
#: core/controllers/field_groups.php:256
|
1269 |
+
msgid "What’s New"
|
1270 |
+
msgstr "O que há de novo"
|
1271 |
+
|
1272 |
+
# @ acf
|
1273 |
+
#: core/controllers/field_groups.php:259
|
1274 |
+
msgid "Download Add-ons"
|
1275 |
+
msgstr "Fazer download de Complementos"
|
1276 |
+
|
1277 |
+
# @ acf
|
1278 |
+
#: core/controllers/field_groups.php:313
|
1279 |
+
msgid "Activation codes have grown into plugins!"
|
1280 |
+
msgstr "Os códigos de ativação se transformaram em plugins!"
|
1281 |
+
|
1282 |
+
# @ acf
|
1283 |
+
#: core/controllers/field_groups.php:314
|
1284 |
+
msgid ""
|
1285 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
1286 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
1287 |
+
"each Add-on will continue to receive updates in the usual way."
|
1288 |
+
msgstr ""
|
1289 |
+
"Os complementos agora são ativados fazendo download e instalando plugins "
|
1290 |
+
"individuais. Embora esses plugins não estejam hospedados no repositório "
|
1291 |
+
"wordpress.org, cada Complemento continuará recebendo as atualizações da "
|
1292 |
+
"maneira habitual."
|
1293 |
+
|
1294 |
+
# @ acf
|
1295 |
+
#: core/controllers/field_groups.php:320
|
1296 |
+
msgid "All previous Add-ons have been successfully installed"
|
1297 |
+
msgstr "Todos os Complementos anteriores foram instalados com sucesso"
|
1298 |
+
|
1299 |
+
# @ acf
|
1300 |
+
#: core/controllers/field_groups.php:324
|
1301 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
1302 |
+
msgstr "Este site usa Complementos Premium que precisam ser baixados"
|
1303 |
+
|
1304 |
+
# @ acf
|
1305 |
+
#: core/controllers/field_groups.php:324
|
1306 |
+
msgid "Download your activated Add-ons"
|
1307 |
+
msgstr "Faça o download dos Complementos ativados"
|
1308 |
+
|
1309 |
+
# @ acf
|
1310 |
+
#: core/controllers/field_groups.php:329
|
1311 |
+
msgid ""
|
1312 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
1313 |
+
"change."
|
1314 |
+
msgstr ""
|
1315 |
+
"Este site não utiliza nenhum Complemento Premium e não será afetado por esta "
|
1316 |
+
"mudança."
|
1317 |
+
|
1318 |
+
# @ acf
|
1319 |
+
#: core/controllers/field_groups.php:339
|
1320 |
+
msgid "Easier Development"
|
1321 |
+
msgstr "Desenvolvimento mais fácil"
|
1322 |
+
|
1323 |
+
# @ acf
|
1324 |
+
#: core/controllers/field_groups.php:341
|
1325 |
+
msgid "New Field Types"
|
1326 |
+
msgstr "Novos Tipos de Campos"
|
1327 |
+
|
1328 |
+
# @ acf
|
1329 |
+
#: core/controllers/field_groups.php:343
|
1330 |
+
msgid "Taxonomy Field"
|
1331 |
+
msgstr "Campo de Taxonomia"
|
1332 |
+
|
1333 |
+
# @ acf
|
1334 |
+
#: core/controllers/field_groups.php:344
|
1335 |
+
msgid "User Field"
|
1336 |
+
msgstr "Campo de Usuário"
|
1337 |
+
|
1338 |
+
# @ acf
|
1339 |
+
#: core/controllers/field_groups.php:345
|
1340 |
+
msgid "Email Field"
|
1341 |
+
msgstr "Campo de Email"
|
1342 |
+
|
1343 |
+
# @ acf
|
1344 |
+
#: core/controllers/field_groups.php:346
|
1345 |
+
msgid "Password Field"
|
1346 |
+
msgstr "Campo de Senha"
|
1347 |
+
|
1348 |
+
# @ acf
|
1349 |
+
#: core/controllers/field_groups.php:348
|
1350 |
+
msgid "Custom Field Types"
|
1351 |
+
msgstr "Tipos de Campos Personalizados"
|
1352 |
+
|
1353 |
+
# @ acf
|
1354 |
+
#: core/controllers/field_groups.php:349
|
1355 |
+
msgid ""
|
1356 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
1357 |
+
"field types are not compatible with version 4."
|
1358 |
+
msgstr ""
|
1359 |
+
"Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os "
|
1360 |
+
"tipos de campos da versão 3 não são compatíveis com a versão 4."
|
1361 |
+
|
1362 |
+
# @ acf
|
1363 |
+
#: core/controllers/field_groups.php:350
|
1364 |
+
msgid "Migrating your field types is easy, please"
|
1365 |
+
msgstr "Migrar os seus tipos de campos é fácil, "
|
1366 |
+
|
1367 |
+
# @ acf
|
1368 |
+
#: core/controllers/field_groups.php:350
|
1369 |
+
msgid "follow this tutorial"
|
1370 |
+
msgstr "siga este tutorial (em inglês)"
|
1371 |
+
|
1372 |
+
# @ acf
|
1373 |
+
#: core/controllers/field_groups.php:350
|
1374 |
+
msgid "to learn more."
|
1375 |
+
msgstr "para saber mais."
|
1376 |
+
|
1377 |
+
# @ acf
|
1378 |
+
#: core/controllers/field_groups.php:352
|
1379 |
+
msgid "Actions & Filters"
|
1380 |
+
msgstr "Ações & Filtros"
|
1381 |
+
|
1382 |
+
# @ acf
|
1383 |
+
#: core/controllers/field_groups.php:353
|
1384 |
+
msgid "read this guide"
|
1385 |
+
msgstr "Leia este guia (em inglês)"
|
1386 |
+
|
1387 |
+
# @ acf
|
1388 |
+
#: core/controllers/field_groups.php:353
|
1389 |
+
msgid "to find the updated naming convention."
|
1390 |
+
msgstr "para encontrar convenção de nomenclaturas atualizada."
|
1391 |
+
|
1392 |
+
# @ acf
|
1393 |
+
#: core/controllers/field_groups.php:355
|
1394 |
+
msgid "Preview draft is now working!"
|
1395 |
+
msgstr "A visualização de rascunhos agora está funcionando!"
|
1396 |
+
|
1397 |
+
# @ acf
|
1398 |
+
#: core/controllers/field_groups.php:356
|
1399 |
+
msgid "This bug has been squashed along with many other little critters!"
|
1400 |
+
msgstr "Este problema foi liquidado junto com muitos outros bugs!"
|
1401 |
+
|
1402 |
+
# @ acf
|
1403 |
+
#: core/controllers/field_groups.php:356
|
1404 |
+
msgid "See the full changelog"
|
1405 |
+
msgstr "Veja o changelog completo (em inglês)"
|
1406 |
+
|
1407 |
+
# @ acf
|
1408 |
+
#: core/controllers/field_groups.php:360
|
1409 |
+
msgid "Important"
|
1410 |
+
msgstr "Importante"
|
1411 |
+
|
1412 |
+
# @ acf
|
1413 |
+
#: core/controllers/field_groups.php:362
|
1414 |
+
msgid "Database Changes"
|
1415 |
+
msgstr "Alterações do Banco de Dados"
|
1416 |
+
|
1417 |
+
# @ acf
|
1418 |
+
#: core/controllers/field_groups.php:363
|
1419 |
+
msgid ""
|
1420 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
1421 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
1422 |
+
"any issues."
|
1423 |
+
msgstr ""
|
1424 |
+
"Não foi feita absolutamente <strong>nenhuma</strong> alteração no banco de "
|
1425 |
+
"dados entre as versões 3 e 4. Isso significa que você pode reverter para a "
|
1426 |
+
"versão 3 sem quaisquer problemas."
|
1427 |
+
|
1428 |
+
# @ acf
|
1429 |
+
#: core/controllers/field_groups.php:365
|
1430 |
+
msgid "Potential Issues"
|
1431 |
+
msgstr "Possíveis Problemas"
|
1432 |
+
|
1433 |
+
# @ acf
|
1434 |
+
#: core/controllers/field_groups.php:366
|
1435 |
+
msgid ""
|
1436 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
1437 |
+
"filters, your website may not operate correctly. It is important that you "
|
1438 |
+
"read the full"
|
1439 |
+
msgstr ""
|
1440 |
+
"Em virtude das mudanças significativas que ocorreram com os Complementos, "
|
1441 |
+
"nos tipos de campos e nas ações/filtros, seu site poderá não funcionar "
|
1442 |
+
"corretamente. É importante que você leia todo o guia"
|
1443 |
+
|
1444 |
+
# @ acf
|
1445 |
+
#: core/controllers/field_groups.php:366
|
1446 |
+
msgid "Migrating from v3 to v4"
|
1447 |
+
msgstr "Migrando da v3 para v4 (em inglês)"
|
1448 |
+
|
1449 |
+
# @ acf
|
1450 |
+
#: core/controllers/field_groups.php:366
|
1451 |
+
msgid "guide to view the full list of changes."
|
1452 |
+
msgstr "para ver a lista completa de mudanças."
|
1453 |
+
|
1454 |
+
# @ acf
|
1455 |
+
#: core/controllers/field_groups.php:369
|
1456 |
+
msgid "Really Important!"
|
1457 |
+
msgstr "Muito Importante!"
|
1458 |
+
|
1459 |
+
# @ acf
|
1460 |
+
#: core/controllers/field_groups.php:369
|
1461 |
+
msgid ""
|
1462 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
1463 |
+
"Please roll back to the latest"
|
1464 |
+
msgstr ""
|
1465 |
+
"Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas "
|
1466 |
+
"mudanças, reverta para a última"
|
1467 |
+
|
1468 |
+
# @ acf
|
1469 |
+
#: core/controllers/field_groups.php:369
|
1470 |
+
msgid "version 3"
|
1471 |
+
msgstr "versão 3"
|
1472 |
+
|
1473 |
+
# @ acf
|
1474 |
+
#: core/controllers/field_groups.php:369
|
1475 |
+
msgid "of this plugin."
|
1476 |
+
msgstr "disponível deste plugin."
|
1477 |
+
|
1478 |
+
# @ acf
|
1479 |
+
#: core/controllers/field_groups.php:374
|
1480 |
+
msgid "Thank You"
|
1481 |
+
msgstr "Obrigado"
|
1482 |
+
|
1483 |
+
# @ acf
|
1484 |
+
#: core/controllers/field_groups.php:375
|
1485 |
+
msgid ""
|
1486 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
1487 |
+
"4 beta and for all the support I have received."
|
1488 |
+
msgstr ""
|
1489 |
+
"Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 "
|
1490 |
+
"beta e por todo o apoio que recebi."
|
1491 |
+
|
1492 |
+
# @ acf
|
1493 |
+
#: core/controllers/field_groups.php:376
|
1494 |
+
msgid "Without you all, this release would not have been possible!"
|
1495 |
+
msgstr "Sem vocês este release não seria possível!"
|
1496 |
+
|
1497 |
+
# @ acf
|
1498 |
+
#: core/controllers/field_groups.php:380
|
1499 |
+
msgid "Changelog for"
|
1500 |
+
msgstr "Changelog da versão"
|
1501 |
+
|
1502 |
+
# @ acf
|
1503 |
+
#: core/controllers/field_groups.php:396
|
1504 |
+
msgid "Learn more"
|
1505 |
+
msgstr "Saiba mais"
|
1506 |
+
|
1507 |
+
# @ acf
|
1508 |
+
#: core/controllers/field_groups.php:402
|
1509 |
+
msgid "Overview"
|
1510 |
+
msgstr "Visão geral"
|
1511 |
+
|
1512 |
+
# @ acf
|
1513 |
+
#: core/controllers/field_groups.php:404
|
1514 |
+
msgid ""
|
1515 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
1516 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
1517 |
+
"need to be individually downloaded, installed and updated."
|
1518 |
+
msgstr ""
|
1519 |
+
"Antes, todos os Complementos eram desbloqueados através de códigos de "
|
1520 |
+
"ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que "
|
1521 |
+
"todos os Complementos funcionam como plugins separados, que precisam ser "
|
1522 |
+
"baixados invididualmente, instalados e atualizados."
|
1523 |
+
|
1524 |
+
# @ acf
|
1525 |
+
#: core/controllers/field_groups.php:406
|
1526 |
+
msgid ""
|
1527 |
+
"This page will assist you in downloading and installing each available Add-"
|
1528 |
+
"on."
|
1529 |
+
msgstr ""
|
1530 |
+
"Esta página irá te ajudar a fazer o download e a realizar a instalação de "
|
1531 |
+
"cada Complemento disponível."
|
1532 |
+
|
1533 |
+
# @ acf
|
1534 |
+
#: core/controllers/field_groups.php:408
|
1535 |
+
msgid "Available Add-ons"
|
1536 |
+
msgstr "Complementos Disponíveis"
|
1537 |
+
|
1538 |
+
# @ acf
|
1539 |
+
#: core/controllers/field_groups.php:410
|
1540 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
1541 |
+
msgstr "Os seguintes Complementos foram detectados como ativados neste site."
|
1542 |
+
|
1543 |
+
# @ acf
|
1544 |
+
#: core/controllers/field_groups.php:466
|
1545 |
+
msgid "Installation"
|
1546 |
+
msgstr "Instalação"
|
1547 |
+
|
1548 |
+
# @ acf
|
1549 |
+
#: core/controllers/field_groups.php:468
|
1550 |
+
msgid "For each Add-on available, please perform the following:"
|
1551 |
+
msgstr "Para cada Complemento disponível, faça o seguinte:"
|
1552 |
+
|
1553 |
+
# @ acf
|
1554 |
+
#: core/controllers/field_groups.php:470
|
1555 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
1556 |
+
msgstr ""
|
1557 |
+
"Faça o download do Complemento (arquivo .zip) para a sua área de trabalho"
|
1558 |
+
|
1559 |
+
# @ acf
|
1560 |
+
#: core/controllers/field_groups.php:471
|
1561 |
+
msgid "Navigate to"
|
1562 |
+
msgstr "Navegue para"
|
1563 |
+
|
1564 |
+
# @ acf
|
1565 |
+
#: core/controllers/field_groups.php:471
|
1566 |
+
msgid "Plugins > Add New > Upload"
|
1567 |
+
msgstr "Plugins > Adicionar Novo > Enviar"
|
1568 |
+
|
1569 |
+
# @ acf
|
1570 |
+
#: core/controllers/field_groups.php:472
|
1571 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
1572 |
+
msgstr ""
|
1573 |
+
"Utilize o uploader para procurar, selecionar e instalar o seu Complemento "
|
1574 |
+
"(arquivo .zip)"
|
1575 |
+
|
1576 |
+
# @ acf
|
1577 |
+
#: core/controllers/field_groups.php:473
|
1578 |
+
msgid ""
|
1579 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
1580 |
+
"link"
|
1581 |
+
msgstr ""
|
1582 |
+
"Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'"
|
1583 |
+
|
1584 |
+
# @ acf
|
1585 |
+
#: core/controllers/field_groups.php:474
|
1586 |
+
msgid "The Add-on is now installed and activated!"
|
1587 |
+
msgstr "O Complemento agora está instalado e ativado!"
|
1588 |
+
|
1589 |
+
# @ acf
|
1590 |
+
#: core/controllers/field_groups.php:488
|
1591 |
+
msgid "Awesome. Let's get to work"
|
1592 |
+
msgstr "Fantástico. Vamos trabalhar"
|
1593 |
+
|
1594 |
+
# @ acf
|
1595 |
+
#: core/controllers/input.php:482
|
1596 |
+
msgid "Maximum values reached ( {max} values )"
|
1597 |
+
msgstr "Quantidade máxima atingida ( {max} item(s) )"
|
1598 |
+
|
1599 |
+
# @ acf
|
1600 |
+
#: core/controllers/upgrade.php:616
|
1601 |
+
msgid "Modifying field group options 'show on page'"
|
1602 |
+
msgstr "Modificando as opções 'exibir na página' do grupo de campos"
|
1603 |
+
|
1604 |
+
# @ acf
|
1605 |
+
#: core/controllers/upgrade.php:670
|
1606 |
+
msgid "Modifying field option 'taxonomy'"
|
1607 |
+
msgstr "Modificando a opção 'taxonomia' do campo"
|
1608 |
+
|
1609 |
+
# @ acf
|
1610 |
+
#: core/controllers/upgrade.php:767
|
1611 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
1612 |
+
msgstr ""
|
1613 |
+
"Movendo os campos personalizados do usuário de wp_options para wp_usermeta"
|
1614 |
+
|
1615 |
+
# @ acf
|
1616 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:20
|
1617 |
+
#: core/fields/select.php:23 core/fields/true_false.php:20
|
1618 |
+
msgid "Choice"
|
1619 |
+
msgstr "Escolhas"
|
1620 |
+
|
1621 |
+
# @ acf
|
1622 |
+
#: core/fields/checkbox.php:148 core/fields/select.php:184
|
1623 |
+
msgid "Enter each choice on a new line."
|
1624 |
+
msgstr "Digite cada opção em uma nova linha."
|
1625 |
+
|
1626 |
+
# @ acf
|
1627 |
+
#: core/fields/checkbox.php:149 core/fields/select.php:185
|
1628 |
+
msgid "For more control, you may specify both a value and label like this:"
|
1629 |
+
msgstr ""
|
1630 |
+
"Para mais controle, você pode especificar tanto os valores quanto os "
|
1631 |
+
"rótulos, como nos exemplos:"
|
1632 |
+
|
1633 |
+
# @ acf
|
1634 |
+
#: core/fields/checkbox.php:168 core/fields/select.php:204
|
1635 |
+
msgid "Enter each default value on a new line"
|
1636 |
+
msgstr "Digite cada valor padrão em uma nova linha"
|
1637 |
+
|
1638 |
+
# @ acf
|
1639 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
|
1640 |
+
msgid "jQuery"
|
1641 |
+
msgstr "jQuery"
|
1642 |
+
|
1643 |
+
# @ acf
|
1644 |
+
#: core/fields/color_picker.php:74
|
1645 |
+
msgid "eg: #ffffff"
|
1646 |
+
msgstr "ex.: #ffffff"
|
1647 |
+
|
1648 |
+
# @ acf
|
1649 |
+
#: core/fields/date_picker/date_picker.php:52
|
1650 |
+
#: core/fields/date_picker/date_picker.php:132
|
1651 |
+
msgid "Done"
|
1652 |
+
msgstr "Concluído"
|
1653 |
+
|
1654 |
+
# @ acf
|
1655 |
+
#: core/fields/date_picker/date_picker.php:53
|
1656 |
+
#: core/fields/date_picker/date_picker.php:133
|
1657 |
+
msgid "Today"
|
1658 |
+
msgstr "Hoje"
|
1659 |
+
|
1660 |
+
# @ acf
|
1661 |
+
#: core/fields/date_picker/date_picker.php:56
|
1662 |
+
#: core/fields/date_picker/date_picker.php:136
|
1663 |
+
msgid "Show a different month"
|
1664 |
+
msgstr "Mostrar um mês diferente"
|
1665 |
+
|
1666 |
+
# @ acf
|
1667 |
+
#: core/fields/date_picker/date_picker.php:146
|
1668 |
+
msgid "Save format"
|
1669 |
+
msgstr "Formato dos dados"
|
1670 |
+
|
1671 |
+
# @ acf
|
1672 |
+
#: core/fields/date_picker/date_picker.php:147
|
1673 |
+
msgid ""
|
1674 |
+
"This format will determin the value saved to the database and returned via "
|
1675 |
+
"the API"
|
1676 |
+
msgstr ""
|
1677 |
+
"Este será o formato salvo no banco de dados e depois devolvido através da API"
|
1678 |
+
|
1679 |
+
# @ acf
|
1680 |
+
#: core/fields/date_picker/date_picker.php:148
|
1681 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1682 |
+
msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre"
|
1683 |
+
|
1684 |
+
# @ acf
|
1685 |
+
#: core/fields/date_picker/date_picker.php:148
|
1686 |
+
#: core/fields/date_picker/date_picker.php:164
|
1687 |
+
msgid "jQuery date formats"
|
1688 |
+
msgstr "formatos de data jQuery"
|
1689 |
+
|
1690 |
+
# @ acf
|
1691 |
+
#: core/fields/date_picker/date_picker.php:162
|
1692 |
+
msgid "Display format"
|
1693 |
+
msgstr "Formato de exibição"
|
1694 |
+
|
1695 |
+
# @ acf
|
1696 |
+
#: core/fields/date_picker/date_picker.php:163
|
1697 |
+
msgid "This format will be seen by the user when entering a value"
|
1698 |
+
msgstr ""
|
1699 |
+
"Este é o formato que será visto pelo usuário quando um valor for digitado"
|
1700 |
+
|
1701 |
+
# @ acf
|
1702 |
+
#: core/fields/date_picker/date_picker.php:164
|
1703 |
+
msgid ""
|
1704 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1705 |
+
"about"
|
1706 |
+
msgstr ""
|
1707 |
+
"\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. "
|
1708 |
+
"Leia mais sobre"
|
1709 |
+
|
1710 |
+
# @ acf
|
1711 |
+
#: core/fields/date_picker/date_picker.php:178
|
1712 |
+
msgid "Week Starts On"
|
1713 |
+
msgstr "Semana começa em"
|
1714 |
+
|
1715 |
+
# @ default
|
1716 |
+
#: core/fields/dummy.php:19
|
1717 |
+
msgid "Dummy"
|
1718 |
+
msgstr "Dummy"
|
1719 |
+
|
1720 |
+
# @ acf
|
1721 |
+
#: core/fields/email.php:19
|
1722 |
+
msgid "Email"
|
1723 |
+
msgstr "Email"
|
1724 |
+
|
1725 |
+
# @ acf
|
1726 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1727 |
+
msgid "Content"
|
1728 |
+
msgstr "Conteúdo"
|
1729 |
+
|
1730 |
+
# @ acf
|
1731 |
+
#: core/fields/file.php:77 core/fields/image.php:75
|
1732 |
+
msgid "Remove"
|
1733 |
+
msgstr "Remover"
|
1734 |
+
|
1735 |
+
# @ acf
|
1736 |
+
#: core/fields/file.php:130
|
1737 |
+
msgid "File Object"
|
1738 |
+
msgstr "Objeto do Arquivo"
|
1739 |
+
|
1740 |
+
# @ acf
|
1741 |
+
#: core/fields/file.php:131
|
1742 |
+
msgid "File URL"
|
1743 |
+
msgstr "URL do Arquivo"
|
1744 |
+
|
1745 |
+
# @ acf
|
1746 |
+
#: core/fields/file.php:132
|
1747 |
+
msgid "File ID"
|
1748 |
+
msgstr "ID do Arquivo"
|
1749 |
+
|
1750 |
+
# @ acf
|
1751 |
+
#: core/fields/file.php:243
|
1752 |
+
msgid "File Updated."
|
1753 |
+
msgstr "Arquivo Atualizado."
|
1754 |
+
|
1755 |
+
# @ default
|
1756 |
+
#: core/fields/file.php:335 core/fields/image.php:374
|
1757 |
+
msgid "Media attachment updated."
|
1758 |
+
msgstr "Arquivo de mídia atualizado."
|
1759 |
+
|
1760 |
+
# @ acf
|
1761 |
+
#: core/fields/file.php:670
|
1762 |
+
msgid "Update File"
|
1763 |
+
msgstr "Atualizar Arquivo"
|
1764 |
+
|
1765 |
+
# @ acf
|
1766 |
+
#: core/fields/image.php:126
|
1767 |
+
msgid "Image Object"
|
1768 |
+
msgstr "Objeto da Imagem"
|
1769 |
+
|
1770 |
+
# @ acf
|
1771 |
+
#: core/fields/image.php:128
|
1772 |
+
msgid "Image ID"
|
1773 |
+
msgstr "ID da Imagem"
|
1774 |
+
|
1775 |
+
# @ acf
|
1776 |
+
#: core/fields/image.php:283
|
1777 |
+
msgid "Image Updated."
|
1778 |
+
msgstr "Imagem Atualizada."
|
1779 |
+
|
1780 |
+
# @ acf
|
1781 |
+
#: core/fields/image.php:667
|
1782 |
+
msgid "Add Selected Images"
|
1783 |
+
msgstr "Adicionar Imagens Selecionadas"
|
1784 |
+
|
1785 |
+
# @ acf
|
1786 |
+
#: core/fields/image.php:699
|
1787 |
+
msgid "Update Image"
|
1788 |
+
msgstr "Atualizar Imagem"
|
1789 |
+
|
1790 |
+
# @ acf
|
1791 |
+
#: core/fields/message.php:72
|
1792 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1793 |
+
msgstr ""
|
1794 |
+
"O Texto & HTML digitados aqui irão aparecer em linha, como os campos"
|
1795 |
+
|
1796 |
+
# @ acf
|
1797 |
+
#: core/fields/message.php:73
|
1798 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1799 |
+
msgstr "Antes, todo o texto irá passar pela função "
|
1800 |
+
|
1801 |
+
# @ acf
|
1802 |
+
#: core/fields/number.php:19
|
1803 |
+
msgid "Number"
|
1804 |
+
msgstr "Número"
|
1805 |
+
|
1806 |
+
# @ acf
|
1807 |
+
#: core/fields/page_link.php:20 core/fields/post_object.php:23
|
1808 |
+
#: core/fields/relationship.php:23 core/fields/taxonomy.php:23
|
1809 |
+
#: core/fields/user.php:23
|
1810 |
+
msgid "Relational"
|
1811 |
+
msgstr "Relacional"
|
1812 |
+
|
1813 |
+
# @ acf
|
1814 |
+
#: core/fields/password.php:19
|
1815 |
+
msgid "Password"
|
1816 |
+
msgstr "Senha"
|
1817 |
+
|
1818 |
+
# @ acf
|
1819 |
+
#: core/fields/relationship.php:592
|
1820 |
+
msgid "Post Type Select"
|
1821 |
+
msgstr "Seleção de Tipos de Post"
|
1822 |
+
|
1823 |
+
# @ acf
|
1824 |
+
#: core/fields/relationship.php:600
|
1825 |
+
msgid "Elements"
|
1826 |
+
msgstr "Elementos"
|
1827 |
+
|
1828 |
+
# @ acf
|
1829 |
+
#: core/fields/relationship.php:601
|
1830 |
+
msgid "Selected elements will be displayed in each result"
|
1831 |
+
msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro"
|
1832 |
+
|
1833 |
+
# @ acf
|
1834 |
+
#: core/fields/relationship.php:611
|
1835 |
+
msgid "Post Title"
|
1836 |
+
msgstr "Título do Post"
|
1837 |
+
|
1838 |
+
# @ acf
|
1839 |
+
#: core/fields/tab.php:19
|
1840 |
+
msgid "Tab"
|
1841 |
+
msgstr "Aba"
|
1842 |
+
|
1843 |
+
# @ acf
|
1844 |
+
#: core/fields/tab.php:67
|
1845 |
+
msgid ""
|
1846 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1847 |
+
"defined) will appear grouped on the edit screen."
|
1848 |
+
msgstr ""
|
1849 |
+
"Todos os campos que procedem esta \"Aba\" (ou até que outra \"Aba\" seja "
|
1850 |
+
"definida) aparecerão agrupados na tela de edição."
|
1851 |
+
|
1852 |
+
# @ acf
|
1853 |
+
#: core/fields/tab.php:68
|
1854 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1855 |
+
msgstr "Você pode utilizar várias abas para dividir seus campos em seções."
|
1856 |
+
|
1857 |
+
# @ acf
|
1858 |
+
#: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
|
1859 |
+
msgid "Taxonomy"
|
1860 |
+
msgstr "Taxonomia"
|
1861 |
+
|
1862 |
+
# @ acf
|
1863 |
+
#: core/fields/taxonomy.php:327 core/fields/user.php:269
|
1864 |
+
msgid "Multiple Values"
|
1865 |
+
msgstr "Vários valores"
|
1866 |
+
|
1867 |
+
# @ acf
|
1868 |
+
#: core/fields/taxonomy.php:329 core/fields/user.php:271
|
1869 |
+
msgid "Multi Select"
|
1870 |
+
msgstr "Seleção Múltipla"
|
1871 |
+
|
1872 |
+
# @ acf
|
1873 |
+
#: core/fields/taxonomy.php:331 core/fields/user.php:273
|
1874 |
+
msgid "Single Value"
|
1875 |
+
msgstr "Um único valor"
|
1876 |
+
|
1877 |
+
# @ acf
|
1878 |
+
#: core/fields/taxonomy.php:332
|
1879 |
+
msgid "Radio Buttons"
|
1880 |
+
msgstr "Botões de Rádio"
|
1881 |
+
|
1882 |
+
# @ acf
|
1883 |
+
#: core/fields/taxonomy.php:361
|
1884 |
+
msgid "Load & Save Terms to Post"
|
1885 |
+
msgstr "Carregar & Salvar Termos do Post"
|
1886 |
+
|
1887 |
+
# @ acf
|
1888 |
+
#: core/fields/taxonomy.php:369
|
1889 |
+
msgid ""
|
1890 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1891 |
+
msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar."
|
1892 |
+
|
1893 |
+
# @ acf
|
1894 |
+
#: core/fields/taxonomy.php:386
|
1895 |
+
msgid "Term Object"
|
1896 |
+
msgstr "Objeto do Termo"
|
1897 |
+
|
1898 |
+
# @ acf
|
1899 |
+
#: core/fields/taxonomy.php:387
|
1900 |
+
msgid "Term ID"
|
1901 |
+
msgstr "ID do Termo"
|
1902 |
+
|
1903 |
+
# @ acf
|
1904 |
+
#: core/fields/user.php:22
|
1905 |
+
msgid "User"
|
1906 |
+
msgstr "Usuário"
|
1907 |
+
|
1908 |
+
# @ acf
|
1909 |
+
#: core/fields/user.php:233
|
1910 |
+
msgid "Filter by role"
|
1911 |
+
msgstr "Filtrar por função"
|
1912 |
+
|
1913 |
+
# @ acf
|
1914 |
+
#: core/views/meta_box_fields.php:24
|
1915 |
+
msgid "new_field"
|
1916 |
+
msgstr "novo_campo"
|
1917 |
+
|
1918 |
+
# @ acf
|
1919 |
+
#: core/views/meta_box_fields.php:57
|
1920 |
+
msgid "Field type does not exist"
|
1921 |
+
msgstr "Tipo de campo não existe"
|
1922 |
+
|
1923 |
+
# @ acf
|
1924 |
+
#: core/views/meta_box_fields.php:65
|
1925 |
+
msgid "checked"
|
1926 |
+
msgstr "selecionado"
|
1927 |
+
|
1928 |
+
# @ acf
|
1929 |
+
#: core/views/meta_box_fields.php:66
|
1930 |
+
msgid "No toggle fields available"
|
1931 |
+
msgstr "Não há campos de alternância disponíveis"
|
1932 |
+
|
1933 |
+
# @ acf
|
1934 |
+
#: core/views/meta_box_fields.php:67
|
1935 |
+
msgid "copy"
|
1936 |
+
msgstr "copiar"
|
1937 |
+
|
1938 |
+
# @ acf
|
1939 |
+
#: core/views/meta_box_fields.php:83
|
1940 |
+
msgid "Field Key"
|
1941 |
+
msgstr "Chave do Campo"
|
1942 |
+
|
1943 |
+
# @ acf
|
1944 |
+
#: core/views/meta_box_fields.php:212
|
1945 |
+
msgid "Conditional Logic"
|
1946 |
+
msgstr "Condições para exibição"
|
1947 |
+
|
1948 |
+
# @ acf
|
1949 |
+
#: core/views/meta_box_fields.php:282
|
1950 |
+
msgid "Show this field when"
|
1951 |
+
msgstr "Mostrar este campo se"
|
1952 |
+
|
1953 |
+
# @ acf
|
1954 |
+
#: core/views/meta_box_fields.php:292
|
1955 |
+
msgid "these rules are met"
|
1956 |
+
msgstr "regras forem atendidas"
|
1957 |
+
|
1958 |
+
# @ acf
|
1959 |
+
#: core/views/meta_box_location.php:57
|
1960 |
+
msgid "Show this field group if"
|
1961 |
+
msgstr "Mostrar este grupo de campos se"
|
1962 |
+
|
1963 |
+
# @ acf
|
1964 |
+
#: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
|
1965 |
+
#: core/views/meta_box_location.php:172
|
1966 |
+
msgid "or"
|
1967 |
+
msgstr "ou"
|
1968 |
+
|
1969 |
+
# @ acf
|
1970 |
+
#: core/views/meta_box_location.php:88
|
1971 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1972 |
+
msgstr "Taxonomia (Pág. de Adição / Edição)"
|
1973 |
+
|
1974 |
+
# @ acf
|
1975 |
+
#: core/views/meta_box_location.php:90
|
1976 |
+
msgid "Media Attachment (Edit)"
|
1977 |
+
msgstr "Mídia (Pág. de Edição)"
|
1978 |
+
|
1979 |
+
# @ acf
|
1980 |
+
#: core/views/meta_box_location.php:142
|
1981 |
+
msgid "and"
|
1982 |
+
msgstr "e"
|
1983 |
+
|
1984 |
+
# @ acf
|
1985 |
+
#: core/views/meta_box_location.php:157
|
1986 |
+
msgid "Add rule group"
|
1987 |
+
msgstr "Adicionar grupo de regras"
|
1988 |
+
|
1989 |
+
# @ acf
|
1990 |
+
#: core/views/meta_box_options.php:24
|
1991 |
+
msgid "Field groups are created in order <br />from lowest to highest"
|
1992 |
+
msgstr "Grupos de campo são criados na ordem <br />do menor para o maior valor"
|
1993 |
+
|
1994 |
+
# @ acf
|
1995 |
+
#: core/views/meta_box_options.php:80
|
1996 |
+
msgid "Hide on screen"
|
1997 |
+
msgstr "Ocultar na tela"
|
1998 |
+
|
1999 |
+
# @ acf
|
2000 |
+
#: core/views/meta_box_options.php:81
|
2001 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
2002 |
+
msgstr "<b>Selecione</b> os itens para <b>ocultar</b> na tela de edição"
|
2003 |
+
|
2004 |
+
# @ acf
|
2005 |
+
#: core/views/meta_box_options.php:82
|
2006 |
+
msgid ""
|
2007 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
2008 |
+
"options will be used. (the one with the lowest order number)"
|
2009 |
+
msgstr ""
|
2010 |
+
"Se vários grupos de campos aparecem em uma tela de edição, as opções do "
|
2011 |
+
"primeiro grupo de campos é a que será utilizada. (aquele com o menor número "
|
2012 |
+
"de ordem)"
|
2013 |
+
|
2014 |
+
# @ default
|
2015 |
+
#: core/views/meta_box_options.php:93
|
2016 |
+
msgid "Excerpt"
|
2017 |
+
msgstr "Resumo"
|
2018 |
+
|
2019 |
+
# @ default
|
2020 |
+
#: core/views/meta_box_options.php:97
|
2021 |
+
msgid "Revisions"
|
2022 |
+
msgstr "Revisões"
|
2023 |
+
|
2024 |
+
# @ default
|
2025 |
+
#: core/views/meta_box_options.php:100
|
2026 |
+
msgid "Format"
|
2027 |
+
msgstr "Formato"
|
2028 |
+
|
2029 |
+
# @ acf
|
2030 |
+
# @ default
|
2031 |
+
#: core/fields/relationship.php:610 core/views/meta_box_options.php:101
|
2032 |
+
msgid "Featured Image"
|
2033 |
+
msgstr "Imagem Destacada"
|
2034 |
+
|
2035 |
+
# @ default
|
2036 |
+
#: core/views/meta_box_options.php:102
|
2037 |
+
msgid "Categories"
|
2038 |
+
msgstr "Categorias"
|
2039 |
+
|
2040 |
+
# @ default
|
2041 |
+
#: core/views/meta_box_options.php:103
|
2042 |
+
msgid "Tags"
|
2043 |
+
msgstr "Tags"
|
2044 |
+
|
2045 |
+
# @ default
|
2046 |
+
#: core/views/meta_box_options.php:104
|
2047 |
+
msgid "Send Trackbacks"
|
2048 |
+
msgstr "Enviar Trackbacks"
|
2049 |
+
|
2050 |
+
# @ acf
|
2051 |
+
#: core/controllers/export.php:270 core/controllers/export.php:311
|
2052 |
+
msgid ""
|
2053 |
+
"Please note that if you export and register field groups within the same WP, "
|
2054 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
2055 |
+
"the original field group to the trash or remove the code from your functions."
|
2056 |
+
"php file."
|
2057 |
+
msgstr ""
|
2058 |
+
"Note que se você exportar e registrar os grupos de campos dentro de um mesmo "
|
2059 |
+
"WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, "
|
2060 |
+
"mova o grupo de campos original para a lixeira ou remova o código de seu "
|
2061 |
+
"arquivo functions.php."
|
2062 |
+
|
2063 |
+
# @ acf
|
2064 |
+
#: core/controllers/export.php:323
|
2065 |
+
msgid ""
|
2066 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
2067 |
+
"to enable lite mode. Add the following code to your functions.php file "
|
2068 |
+
"<b>before</b> the include_once code:"
|
2069 |
+
msgstr ""
|
2070 |
+
"Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma "
|
2071 |
+
"constante para habilitar o <i>modo Lite</i>. Adicione o seguinte código em "
|
2072 |
+
"seu arquivo functions.php, <b>antes</b> do código include_once (sugerido "
|
2073 |
+
"anteriormente):"
|
2074 |
+
|
2075 |
+
# @ acf
|
2076 |
+
#: core/controllers/field_groups.php:353
|
2077 |
+
msgid ""
|
2078 |
+
"All actions & filters have received a major facelift to make customizing ACF "
|
2079 |
+
"even easier! Please"
|
2080 |
+
msgstr ""
|
2081 |
+
"Todas as ações & filtros sofreram alterações significativas para tornar a "
|
2082 |
+
"personalização do ACF ainda mai fácil! "
|
2083 |
+
|
2084 |
+
# @ acf
|
2085 |
+
#: core/fields/relationship.php:380
|
2086 |
+
msgid "Filter by post type"
|
2087 |
+
msgstr "Filtrar por tipo de post"
|
2088 |
+
|
2089 |
+
# @ acf
|
2090 |
+
#: core/fields/relationship.php:367
|
2091 |
+
msgid "Search..."
|
2092 |
+
msgstr "Pesquisar..."
|
lang/acf-uk.mo
CHANGED
Binary file
|
lang/acf-uk.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: ACF\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2012-10-04 22:38:59+00:00\n"
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Jurko Chervony <info@skinik.name>\n"
|
10 |
"Language-Team: UA WordPress <skinik@wordpress.co.ua>\n"
|
11 |
"Language: Ukrainian\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
-
"X-Generator: Poedit 1.5.
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: acf.php:286 core/views/meta_box_options.php:94
|
@@ -451,8 +451,8 @@ msgstr ""
|
|
451 |
msgid ""
|
452 |
"Please note that if you export and register field groups within the same WP, "
|
453 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
454 |
-
"the
|
455 |
-
"
|
456 |
msgstr ""
|
457 |
|
458 |
#: core/controllers/settings.php:361
|
5 |
"Project-Id-Version: ACF\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2012-10-04 22:38:59+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 19:00-0600\n"
|
9 |
"Last-Translator: Jurko Chervony <info@skinik.name>\n"
|
10 |
"Language-Team: UA WordPress <skinik@wordpress.co.ua>\n"
|
11 |
"Language: Ukrainian\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
+
"X-Generator: Poedit 1.5.5\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: acf.php:286 core/views/meta_box_options.php:94
|
451 |
msgid ""
|
452 |
"Please note that if you export and register field groups within the same WP, "
|
453 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
454 |
+
"the original field group to the trash or remove the code from your functions."
|
455 |
+
"php file."
|
456 |
msgstr ""
|
457 |
|
458 |
#: core/controllers/settings.php:361
|
lang/acf-zh_CN.mo
ADDED
Binary file
|
lang/acf-zh_CN.po
ADDED
@@ -0,0 +1,1925 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2012
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: acf chinese\n"
|
6 |
+
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2013-05-11 19:59+0800\n"
|
8 |
+
"PO-Revision-Date: 2013-06-10 19:00-0600\n"
|
9 |
+
"Last-Translator: Amos Lee <4626395@gmail.com>\n"
|
10 |
+
"Language-Team: Amos Lee <470266798@qq.com>\n"
|
11 |
+
"Language: zh_CN\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Generator: Poedit 1.5.5\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
|
21 |
+
#: ../acf.php:264
|
22 |
+
msgid "Field Groups"
|
23 |
+
msgstr "字段和表单域"
|
24 |
+
|
25 |
+
#: ../acf.php:265 ../core/controllers/field_groups.php:214
|
26 |
+
msgid "Advanced Custom Fields"
|
27 |
+
msgstr "高级自定义字段"
|
28 |
+
|
29 |
+
#: ../acf.php:266
|
30 |
+
msgid "Add New"
|
31 |
+
msgstr "新建"
|
32 |
+
|
33 |
+
#: ../acf.php:267
|
34 |
+
msgid "Add New Field Group"
|
35 |
+
msgstr "添加新字段组"
|
36 |
+
|
37 |
+
#: ../acf.php:268
|
38 |
+
msgid "Edit Field Group"
|
39 |
+
msgstr "编辑当前字段组"
|
40 |
+
|
41 |
+
#: ../acf.php:269
|
42 |
+
msgid "New Field Group"
|
43 |
+
msgstr "添加新字段组"
|
44 |
+
|
45 |
+
#: ../acf.php:270
|
46 |
+
msgid "View Field Group"
|
47 |
+
msgstr "查看字段组"
|
48 |
+
|
49 |
+
#: ../acf.php:271
|
50 |
+
msgid "Search Field Groups"
|
51 |
+
msgstr "搜索字段组"
|
52 |
+
|
53 |
+
#: ../acf.php:272
|
54 |
+
msgid "No Field Groups found"
|
55 |
+
msgstr "没有找到字段组"
|
56 |
+
|
57 |
+
#: ../acf.php:273
|
58 |
+
msgid "No Field Groups found in Trash"
|
59 |
+
msgstr "回收站中没有找到字段组"
|
60 |
+
|
61 |
+
#: ../acf.php:386 ../core/views/meta_box_options.php:94
|
62 |
+
msgid "Custom Fields"
|
63 |
+
msgstr "字段"
|
64 |
+
|
65 |
+
#: ../acf.php:404 ../acf.php:407
|
66 |
+
msgid "Field group updated."
|
67 |
+
msgstr "自定义字段组已更新。"
|
68 |
+
|
69 |
+
#: ../acf.php:405
|
70 |
+
msgid "Custom field updated."
|
71 |
+
msgstr "自定义字段已更新。"
|
72 |
+
|
73 |
+
#: ../acf.php:406
|
74 |
+
msgid "Custom field deleted."
|
75 |
+
msgstr "自定义字段已删除。"
|
76 |
+
|
77 |
+
#: ../acf.php:409
|
78 |
+
#, php-format
|
79 |
+
msgid "Field group restored to revision from %s"
|
80 |
+
msgstr "字段组已恢复到版本%s"
|
81 |
+
|
82 |
+
#: ../acf.php:410
|
83 |
+
msgid "Field group published."
|
84 |
+
msgstr "字段组已发布。"
|
85 |
+
|
86 |
+
#: ../acf.php:411
|
87 |
+
msgid "Field group saved."
|
88 |
+
msgstr "设置已保存。"
|
89 |
+
|
90 |
+
#: ../acf.php:412
|
91 |
+
msgid "Field group submitted."
|
92 |
+
msgstr "字段组已提交"
|
93 |
+
|
94 |
+
#: ../acf.php:413
|
95 |
+
msgid "Field group scheduled for."
|
96 |
+
msgstr "字段组已定时。"
|
97 |
+
|
98 |
+
#: ../acf.php:414
|
99 |
+
msgid "Field group draft updated."
|
100 |
+
msgstr "字段组草稿已更新。"
|
101 |
+
|
102 |
+
#: ../acf.php:549
|
103 |
+
msgid "Thumbnail"
|
104 |
+
msgstr "缩略图"
|
105 |
+
|
106 |
+
#: ../acf.php:550
|
107 |
+
msgid "Medium"
|
108 |
+
msgstr "中"
|
109 |
+
|
110 |
+
#: ../acf.php:551
|
111 |
+
msgid "Large"
|
112 |
+
msgstr "大"
|
113 |
+
|
114 |
+
#: ../acf.php:552
|
115 |
+
msgid "Full"
|
116 |
+
msgstr "原图"
|
117 |
+
|
118 |
+
#: ../core/actions/export.php:23 ../core/views/meta_box_fields.php:57
|
119 |
+
msgid "Error"
|
120 |
+
msgstr "错误"
|
121 |
+
|
122 |
+
#: ../core/actions/export.php:30
|
123 |
+
msgid "No ACF groups selected"
|
124 |
+
msgstr "没有选择ACF组"
|
125 |
+
|
126 |
+
#: ../core/controllers/addons.php:42 ../core/controllers/field_groups.php:311
|
127 |
+
msgid "Add-ons"
|
128 |
+
msgstr "附加功能"
|
129 |
+
|
130 |
+
#: ../core/controllers/addons.php:130 ../core/controllers/field_groups.php:432
|
131 |
+
msgid "Repeater Field"
|
132 |
+
msgstr "复制字段"
|
133 |
+
|
134 |
+
#: ../core/controllers/addons.php:131
|
135 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
136 |
+
msgstr "使用这个方面的界面为重复数据创建无限行。 "
|
137 |
+
|
138 |
+
#: ../core/controllers/addons.php:137 ../core/controllers/field_groups.php:440
|
139 |
+
msgid "Gallery Field"
|
140 |
+
msgstr "相册字段"
|
141 |
+
|
142 |
+
#: ../core/controllers/addons.php:138
|
143 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
144 |
+
msgstr "使用简单直观的界面创建画廊!"
|
145 |
+
|
146 |
+
#: ../core/controllers/addons.php:144 ../core/controllers/export.php:380
|
147 |
+
#: ../core/controllers/field_groups.php:448
|
148 |
+
msgid "Options Page"
|
149 |
+
msgstr "选项页面"
|
150 |
+
|
151 |
+
#: ../core/controllers/addons.php:145
|
152 |
+
msgid "Create global data to use throughout your website!"
|
153 |
+
msgstr "创建整个站点可用的全局数据。"
|
154 |
+
|
155 |
+
#: ../core/controllers/addons.php:151
|
156 |
+
msgid "Flexible Content Field"
|
157 |
+
msgstr "多样内容字段"
|
158 |
+
|
159 |
+
#: ../core/controllers/addons.php:152
|
160 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
161 |
+
msgstr "通过强大的内容布局管理功能创建一个独有的设计。"
|
162 |
+
|
163 |
+
#: ../core/controllers/addons.php:161
|
164 |
+
msgid "Gravity Forms Field"
|
165 |
+
msgstr "Gravity表单字段"
|
166 |
+
|
167 |
+
#: ../core/controllers/addons.php:162
|
168 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
169 |
+
msgstr "创建一个由Gravity表单处理的选择字段。"
|
170 |
+
|
171 |
+
#: ../core/controllers/addons.php:168
|
172 |
+
msgid "Date & Time Picker"
|
173 |
+
msgstr "日期&时间选择器"
|
174 |
+
|
175 |
+
#: ../core/controllers/addons.php:169
|
176 |
+
msgid "jQuery date & time picker"
|
177 |
+
msgstr "jQuery 日期 & 时间选择器"
|
178 |
+
|
179 |
+
#: ../core/controllers/addons.php:175
|
180 |
+
msgid "Location Field"
|
181 |
+
msgstr "位置字段"
|
182 |
+
|
183 |
+
#: ../core/controllers/addons.php:176
|
184 |
+
msgid "Find addresses and coordinates of a desired location"
|
185 |
+
msgstr "查找需要的位置的地址和坐标。"
|
186 |
+
|
187 |
+
#: ../core/controllers/addons.php:182
|
188 |
+
msgid "Contact Form 7 Field"
|
189 |
+
msgstr "Contact Form 7 字段"
|
190 |
+
|
191 |
+
#: ../core/controllers/addons.php:183
|
192 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
193 |
+
msgstr "分配一个或多个contact form 7表单到文章"
|
194 |
+
|
195 |
+
#: ../core/controllers/addons.php:193
|
196 |
+
msgid "Advanced Custom Fields Add-Ons"
|
197 |
+
msgstr "自定义字段附加功能"
|
198 |
+
|
199 |
+
#: ../core/controllers/addons.php:196
|
200 |
+
msgid ""
|
201 |
+
"The following Add-ons are available to increase the functionality of the "
|
202 |
+
"Advanced Custom Fields plugin."
|
203 |
+
msgstr "下面的附加项可以提高插件功能。"
|
204 |
+
|
205 |
+
#: ../core/controllers/addons.php:197
|
206 |
+
msgid ""
|
207 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
208 |
+
"included in your theme (does not receive updates)."
|
209 |
+
msgstr ""
|
210 |
+
"每个附件都可以作为一个单独的插件安装(可以获取更新)或包含在你的主题中(不能"
|
211 |
+
"获取更新)"
|
212 |
+
|
213 |
+
#: ../core/controllers/addons.php:218 ../core/controllers/addons.php:239
|
214 |
+
msgid "Installed"
|
215 |
+
msgstr "已安装"
|
216 |
+
|
217 |
+
#: ../core/controllers/addons.php:220
|
218 |
+
msgid "Purchase & Install"
|
219 |
+
msgstr "购买和安装"
|
220 |
+
|
221 |
+
#: ../core/controllers/addons.php:241 ../core/controllers/field_groups.php:425
|
222 |
+
#: ../core/controllers/field_groups.php:434
|
223 |
+
#: ../core/controllers/field_groups.php:442
|
224 |
+
#: ../core/controllers/field_groups.php:450
|
225 |
+
#: ../core/controllers/field_groups.php:458
|
226 |
+
msgid "Download"
|
227 |
+
msgstr "下载"
|
228 |
+
|
229 |
+
#: ../core/controllers/export.php:50 ../core/controllers/export.php:159
|
230 |
+
msgid "Export"
|
231 |
+
msgstr "导出"
|
232 |
+
|
233 |
+
#: ../core/controllers/export.php:216
|
234 |
+
msgid "Export Field Groups"
|
235 |
+
msgstr "导出字段组"
|
236 |
+
|
237 |
+
#: ../core/controllers/export.php:221
|
238 |
+
msgid "Field Groups"
|
239 |
+
msgstr "字段组"
|
240 |
+
|
241 |
+
#: ../core/controllers/export.php:222
|
242 |
+
msgid "Select the field groups to be exported"
|
243 |
+
msgstr "选择需要导出的字段组。"
|
244 |
+
|
245 |
+
#: ../core/controllers/export.php:239 ../core/controllers/export.php:252
|
246 |
+
msgid "Export to XML"
|
247 |
+
msgstr "导出到XML"
|
248 |
+
|
249 |
+
#: ../core/controllers/export.php:242 ../core/controllers/export.php:267
|
250 |
+
msgid "Export to PHP"
|
251 |
+
msgstr "导出到PHP"
|
252 |
+
|
253 |
+
#: ../core/controllers/export.php:253
|
254 |
+
msgid ""
|
255 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
256 |
+
"import plugin."
|
257 |
+
msgstr "ACF将创建一个兼容WP导入插件的.xml文件。"
|
258 |
+
|
259 |
+
#: ../core/controllers/export.php:254
|
260 |
+
msgid ""
|
261 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
262 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
263 |
+
msgstr ""
|
264 |
+
"导入字段组将出现在可编辑字段组后面,在几个WP站点之间迁移字段组时,这将非常有"
|
265 |
+
"用。"
|
266 |
+
|
267 |
+
#: ../core/controllers/export.php:256
|
268 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
269 |
+
msgstr "从列表中选择字段组,然后点击 \"导出XML\" "
|
270 |
+
|
271 |
+
#: ../core/controllers/export.php:257
|
272 |
+
msgid "Save the .xml file when prompted"
|
273 |
+
msgstr "导出后保存.xml文件"
|
274 |
+
|
275 |
+
#: ../core/controllers/export.php:258
|
276 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
277 |
+
msgstr "转到工具 » 导入,然后选择WordPress "
|
278 |
+
|
279 |
+
#: ../core/controllers/export.php:259
|
280 |
+
msgid "Install WP import plugin if prompted"
|
281 |
+
msgstr "安装WP导入插件后开始"
|
282 |
+
|
283 |
+
#: ../core/controllers/export.php:260
|
284 |
+
msgid "Upload and import your exported .xml file"
|
285 |
+
msgstr "上传并导入.xml文件"
|
286 |
+
|
287 |
+
#: ../core/controllers/export.php:261
|
288 |
+
msgid "Select your user and ignore Import Attachments"
|
289 |
+
msgstr "选择用户,忽略导入附件"
|
290 |
+
|
291 |
+
#: ../core/controllers/export.php:262
|
292 |
+
msgid "That's it! Happy WordPressing"
|
293 |
+
msgstr "成功了,使用愉快!"
|
294 |
+
|
295 |
+
#: ../core/controllers/export.php:268
|
296 |
+
msgid "ACF will create the PHP code to include in your theme."
|
297 |
+
msgstr "ACP将导出可以包含到主题中的PHP代码"
|
298 |
+
|
299 |
+
#: ../core/controllers/export.php:269 ../core/controllers/export.php:310
|
300 |
+
msgid ""
|
301 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
302 |
+
"groups. This is useful for including fields in themes."
|
303 |
+
msgstr ""
|
304 |
+
"已注册字段<b>不会</b>出现在可编辑分组中,这对主题中包含的字段非常有用。"
|
305 |
+
|
306 |
+
#: ../core/controllers/export.php:270 ../core/controllers/export.php:311
|
307 |
+
msgid ""
|
308 |
+
"Please note that if you export and register field groups within the same WP, "
|
309 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
310 |
+
"the original field group to the trash or remove the code from your functions."
|
311 |
+
"php file."
|
312 |
+
msgstr ""
|
313 |
+
"请注意,如果在同一个网站导出并注册字段组,您会在您的编辑屏幕上看到重复的字"
|
314 |
+
"段,为了解决这个问题,请将原字段组移动到回收站或删除您的functions.php文件中的"
|
315 |
+
"代码。"
|
316 |
+
|
317 |
+
#: ../core/controllers/export.php:272
|
318 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
319 |
+
msgstr "参加列表中选择表单组,然后点击 \"生成PHP\""
|
320 |
+
|
321 |
+
#: ../core/controllers/export.php:273 ../core/controllers/export.php:302
|
322 |
+
msgid "Copy the PHP code generated"
|
323 |
+
msgstr "复制生成的PHP代码。"
|
324 |
+
|
325 |
+
#: ../core/controllers/export.php:274 ../core/controllers/export.php:303
|
326 |
+
msgid "Paste into your functions.php file"
|
327 |
+
msgstr "请插入您的function.php文件"
|
328 |
+
|
329 |
+
#: ../core/controllers/export.php:275 ../core/controllers/export.php:304
|
330 |
+
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
331 |
+
msgstr "要激活附加组件,编辑和应用代码中的前几行。"
|
332 |
+
|
333 |
+
#: ../core/controllers/export.php:295
|
334 |
+
msgid "Export Field Groups to PHP"
|
335 |
+
msgstr "导出字段组到PHP"
|
336 |
+
|
337 |
+
#: ../core/controllers/export.php:300 ../core/fields/tab.php:64
|
338 |
+
msgid "Instructions"
|
339 |
+
msgstr "结构"
|
340 |
+
|
341 |
+
#: ../core/controllers/export.php:309
|
342 |
+
msgid "Notes"
|
343 |
+
msgstr "注意"
|
344 |
+
|
345 |
+
#: ../core/controllers/export.php:316
|
346 |
+
msgid "Include in theme"
|
347 |
+
msgstr "包含在主题中"
|
348 |
+
|
349 |
+
#: ../core/controllers/export.php:317
|
350 |
+
msgid ""
|
351 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
352 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
353 |
+
"functions.php file:"
|
354 |
+
msgstr ""
|
355 |
+
"字段插件可以包含到主题中,如果需要进行此操作,请移动字段插件到themes文件夹并"
|
356 |
+
"添加以下代码到functions.php文件:"
|
357 |
+
|
358 |
+
#: ../core/controllers/export.php:323
|
359 |
+
msgid ""
|
360 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
361 |
+
"to enable lite mode. Add the following code to you functions.php file "
|
362 |
+
"<b>before</b> the include_once code:"
|
363 |
+
msgstr ""
|
364 |
+
"要删除所有ACF插件的可视化界面,你可以用一个常数,使精简版模式,将下面的代码添"
|
365 |
+
"加到functions.php文件中include_once代码<b>之前</b>。"
|
366 |
+
|
367 |
+
#: ../core/controllers/export.php:331
|
368 |
+
msgid "Back to export"
|
369 |
+
msgstr "返回到导出器"
|
370 |
+
|
371 |
+
#: ../core/controllers/export.php:352
|
372 |
+
msgid ""
|
373 |
+
"/**\n"
|
374 |
+
" * Install Add-ons\n"
|
375 |
+
" * \n"
|
376 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
377 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
378 |
+
"produce an error.\n"
|
379 |
+
" * \n"
|
380 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
381 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
382 |
+
"of this action.\n"
|
383 |
+
" * \n"
|
384 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
385 |
+
"theme.\n"
|
386 |
+
" *\n"
|
387 |
+
" * IMPORTANT\n"
|
388 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
389 |
+
"conditions.\n"
|
390 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
391 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
392 |
+
"terms-conditions/\n"
|
393 |
+
" */"
|
394 |
+
msgstr ""
|
395 |
+
"/ **\n"
|
396 |
+
" *安装附加组件\n"
|
397 |
+
" *\n"
|
398 |
+
" *下面的代码将包括所有4个高级附加组件到您的主题\n"
|
399 |
+
" *请不要试图包含一个不存在的文件,这将产生一个错误。\n"
|
400 |
+
" *\n"
|
401 |
+
" *所有字段都必须在'acf/register_fields'动作执行时包含。\n"
|
402 |
+
" *其他类型的加载项(如选项页)可以包含在这个动作之外。\n"
|
403 |
+
" *\n"
|
404 |
+
" *下面的代码假定你在你的主题里面有一个“add-ons”文件夹。\n"
|
405 |
+
" *\n"
|
406 |
+
" *重要\n"
|
407 |
+
" *附加组件可能在一个高级主题中包含下面的条款及条件。\n"
|
408 |
+
" *但是,他们都没有被列入高级或免费插件。\n"
|
409 |
+
" *欲了解更多信息,请读取http://www.advancedcustomfields.com/terms-"
|
410 |
+
"conditions/\n"
|
411 |
+
" */"
|
412 |
+
|
413 |
+
#: ../core/controllers/export.php:370 ../core/controllers/field_group.php:365
|
414 |
+
#: ../core/controllers/field_group.php:427
|
415 |
+
#: ../core/controllers/field_groups.php:148
|
416 |
+
msgid "Fields"
|
417 |
+
msgstr "字段"
|
418 |
+
|
419 |
+
#: ../core/controllers/export.php:384
|
420 |
+
msgid ""
|
421 |
+
"/**\n"
|
422 |
+
" * Register Field Groups\n"
|
423 |
+
" *\n"
|
424 |
+
" * The register_field_group function accepts 1 array which holds the "
|
425 |
+
"relevant data to register a field group\n"
|
426 |
+
" * You may edit the array as you see fit. However, this may result in "
|
427 |
+
"errors if the array is not compatible with ACF\n"
|
428 |
+
" */"
|
429 |
+
msgstr ""
|
430 |
+
"/**\n"
|
431 |
+
" * 注册字段组\n"
|
432 |
+
" *\n"
|
433 |
+
" * register_field_group函数接受一个包含注册字段组有关数据的数组\n"
|
434 |
+
" *您可以编辑您认为合适的数组,然而,如果数组不兼容ACF,这可能会导致错误\n"
|
435 |
+
" */"
|
436 |
+
|
437 |
+
#: ../core/controllers/export.php:435
|
438 |
+
msgid "No field groups were selected"
|
439 |
+
msgstr "没有选择字段组"
|
440 |
+
|
441 |
+
#: ../core/controllers/field_group.php:366
|
442 |
+
msgid "Location"
|
443 |
+
msgstr "位置"
|
444 |
+
|
445 |
+
#: ../core/controllers/field_group.php:367
|
446 |
+
#: ../core/views/meta_box_location.php:167
|
447 |
+
msgid "Options"
|
448 |
+
msgstr "选项"
|
449 |
+
|
450 |
+
#: ../core/controllers/field_group.php:429
|
451 |
+
msgid "Show Field Key:"
|
452 |
+
msgstr "显示字段密钥:"
|
453 |
+
|
454 |
+
#: ../core/controllers/field_group.php:430 ../core/fields/page_link.php:113
|
455 |
+
#: ../core/fields/page_link.php:134 ../core/fields/post_object.php:288
|
456 |
+
#: ../core/fields/post_object.php:309 ../core/fields/select.php:230
|
457 |
+
#: ../core/fields/select.php:249 ../core/fields/taxonomy.php:352
|
458 |
+
#: ../core/fields/user.php:294 ../core/fields/wysiwyg.php:236
|
459 |
+
#: ../core/views/meta_box_fields.php:198 ../core/views/meta_box_fields.php:221
|
460 |
+
msgid "No"
|
461 |
+
msgstr "否"
|
462 |
+
|
463 |
+
#: ../core/controllers/field_group.php:431 ../core/fields/page_link.php:112
|
464 |
+
#: ../core/fields/page_link.php:133 ../core/fields/post_object.php:287
|
465 |
+
#: ../core/fields/post_object.php:308 ../core/fields/select.php:229
|
466 |
+
#: ../core/fields/select.php:248 ../core/fields/taxonomy.php:351
|
467 |
+
#: ../core/fields/user.php:293 ../core/fields/wysiwyg.php:235
|
468 |
+
#: ../core/views/meta_box_fields.php:197 ../core/views/meta_box_fields.php:220
|
469 |
+
msgid "Yes"
|
470 |
+
msgstr "是"
|
471 |
+
|
472 |
+
#: ../core/controllers/field_group.php:608
|
473 |
+
msgid "Front Page"
|
474 |
+
msgstr "首页"
|
475 |
+
|
476 |
+
#: ../core/controllers/field_group.php:609
|
477 |
+
msgid "Posts Page"
|
478 |
+
msgstr "文章页"
|
479 |
+
|
480 |
+
#: ../core/controllers/field_group.php:610
|
481 |
+
msgid "Top Level Page (parent of 0)"
|
482 |
+
msgstr "顶级分类(父级为0)"
|
483 |
+
|
484 |
+
#: ../core/controllers/field_group.php:611
|
485 |
+
msgid "Parent Page (has children)"
|
486 |
+
msgstr "父分类(有子分类)"
|
487 |
+
|
488 |
+
#: ../core/controllers/field_group.php:612
|
489 |
+
msgid "Child Page (has parent)"
|
490 |
+
msgstr "子分类(有父分类)"
|
491 |
+
|
492 |
+
#: ../core/controllers/field_group.php:620
|
493 |
+
msgid "Default Template"
|
494 |
+
msgstr "默认模板"
|
495 |
+
|
496 |
+
#: ../core/controllers/field_group.php:712
|
497 |
+
#: ../core/controllers/field_group.php:733
|
498 |
+
#: ../core/controllers/field_group.php:740 ../core/fields/page_link.php:84
|
499 |
+
#: ../core/fields/post_object.php:234 ../core/fields/post_object.php:258
|
500 |
+
#: ../core/fields/relationship.php:529 ../core/fields/relationship.php:553
|
501 |
+
#: ../core/fields/user.php:238
|
502 |
+
msgid "All"
|
503 |
+
msgstr "所有"
|
504 |
+
|
505 |
+
#: ../core/controllers/field_groups.php:147
|
506 |
+
msgid "Title"
|
507 |
+
msgstr "标题"
|
508 |
+
|
509 |
+
#: ../core/controllers/field_groups.php:216
|
510 |
+
#: ../core/controllers/field_groups.php:257
|
511 |
+
msgid "Changelog"
|
512 |
+
msgstr "更新日志"
|
513 |
+
|
514 |
+
#: ../core/controllers/field_groups.php:217
|
515 |
+
msgid "See what's new in"
|
516 |
+
msgstr "查看更新内容于"
|
517 |
+
|
518 |
+
#: ../core/controllers/field_groups.php:217
|
519 |
+
msgid "version"
|
520 |
+
msgstr "版本"
|
521 |
+
|
522 |
+
#: ../core/controllers/field_groups.php:219
|
523 |
+
msgid "Resources"
|
524 |
+
msgstr "资源"
|
525 |
+
|
526 |
+
#: ../core/controllers/field_groups.php:221
|
527 |
+
msgid "Getting Started"
|
528 |
+
msgstr "开始"
|
529 |
+
|
530 |
+
#: ../core/controllers/field_groups.php:222
|
531 |
+
msgid "Field Types"
|
532 |
+
msgstr "字段类型"
|
533 |
+
|
534 |
+
#: ../core/controllers/field_groups.php:223
|
535 |
+
msgid "Functions"
|
536 |
+
msgstr "功能"
|
537 |
+
|
538 |
+
#: ../core/controllers/field_groups.php:224
|
539 |
+
msgid "Actions"
|
540 |
+
msgstr "操作"
|
541 |
+
|
542 |
+
#: ../core/controllers/field_groups.php:225
|
543 |
+
#: ../core/fields/relationship.php:572
|
544 |
+
msgid "Filters"
|
545 |
+
msgstr "过滤器"
|
546 |
+
|
547 |
+
#: ../core/controllers/field_groups.php:226
|
548 |
+
msgid "'How to' guides"
|
549 |
+
msgstr "新手向导"
|
550 |
+
|
551 |
+
#: ../core/controllers/field_groups.php:227
|
552 |
+
msgid "Tutorials"
|
553 |
+
msgstr "向导"
|
554 |
+
|
555 |
+
#: ../core/controllers/field_groups.php:232
|
556 |
+
msgid "Created by"
|
557 |
+
msgstr "创建者"
|
558 |
+
|
559 |
+
#: ../core/controllers/field_groups.php:235
|
560 |
+
msgid "Vote"
|
561 |
+
msgstr "投票"
|
562 |
+
|
563 |
+
#: ../core/controllers/field_groups.php:236
|
564 |
+
msgid "Follow"
|
565 |
+
msgstr "关注"
|
566 |
+
|
567 |
+
#: ../core/controllers/field_groups.php:248
|
568 |
+
msgid "Welcome to Advanced Custom Fields"
|
569 |
+
msgstr "欢迎来到高级自定义字段"
|
570 |
+
|
571 |
+
#: ../core/controllers/field_groups.php:249
|
572 |
+
msgid "Thank you for updating to the latest version!"
|
573 |
+
msgstr "非常感谢你升级插件到最新版本!"
|
574 |
+
|
575 |
+
#: ../core/controllers/field_groups.php:249
|
576 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
577 |
+
msgstr "比任何时候都优雅有趣,希望你喜欢他。"
|
578 |
+
|
579 |
+
#: ../core/controllers/field_groups.php:256
|
580 |
+
msgid "What’s New"
|
581 |
+
msgstr "更新日志"
|
582 |
+
|
583 |
+
#: ../core/controllers/field_groups.php:259
|
584 |
+
msgid "Download Add-ons"
|
585 |
+
msgstr "下载附加功能"
|
586 |
+
|
587 |
+
#: ../core/controllers/field_groups.php:313
|
588 |
+
msgid "Activation codes have grown into plugins!"
|
589 |
+
msgstr "激活码成为了插件!"
|
590 |
+
|
591 |
+
#: ../core/controllers/field_groups.php:314
|
592 |
+
msgid ""
|
593 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
594 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
595 |
+
"each Add-on will continue to receive updates in the usual way."
|
596 |
+
msgstr ""
|
597 |
+
"附加组件现在通过下载和安装单独的插件激活,虽然这些插件不在wordpress.org库托"
|
598 |
+
"管,每个附加组件将通过合适的方式得到更新。"
|
599 |
+
|
600 |
+
#: ../core/controllers/field_groups.php:320
|
601 |
+
msgid "All previous Add-ons have been successfully installed"
|
602 |
+
msgstr "所有附加功能已安装!"
|
603 |
+
|
604 |
+
#: ../core/controllers/field_groups.php:324
|
605 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
606 |
+
msgstr "此站点使用的高级功能需要下载。"
|
607 |
+
|
608 |
+
#: ../core/controllers/field_groups.php:324
|
609 |
+
msgid "Download your activated Add-ons"
|
610 |
+
msgstr "下载已激活的附加功能"
|
611 |
+
|
612 |
+
#: ../core/controllers/field_groups.php:329
|
613 |
+
msgid ""
|
614 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
615 |
+
"change."
|
616 |
+
msgstr "此站点未使用高级功能,这个改变没有影响。"
|
617 |
+
|
618 |
+
#: ../core/controllers/field_groups.php:339
|
619 |
+
msgid "Easier Development"
|
620 |
+
msgstr "快速开发"
|
621 |
+
|
622 |
+
#: ../core/controllers/field_groups.php:341
|
623 |
+
msgid "New Field Types"
|
624 |
+
msgstr "新字段类型"
|
625 |
+
|
626 |
+
#: ../core/controllers/field_groups.php:343
|
627 |
+
msgid "Taxonomy Field"
|
628 |
+
msgstr "分类法字段"
|
629 |
+
|
630 |
+
#: ../core/controllers/field_groups.php:344
|
631 |
+
msgid "User Field"
|
632 |
+
msgstr "用户字段"
|
633 |
+
|
634 |
+
#: ../core/controllers/field_groups.php:345
|
635 |
+
msgid "Email Field"
|
636 |
+
msgstr "电子邮件字段"
|
637 |
+
|
638 |
+
#: ../core/controllers/field_groups.php:346
|
639 |
+
msgid "Password Field"
|
640 |
+
msgstr "密码字段"
|
641 |
+
|
642 |
+
#: ../core/controllers/field_groups.php:348
|
643 |
+
msgid "Custom Field Types"
|
644 |
+
msgstr "自定义字段类型"
|
645 |
+
|
646 |
+
#: ../core/controllers/field_groups.php:349
|
647 |
+
msgid ""
|
648 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
649 |
+
"field types are not compatible with version 4."
|
650 |
+
msgstr ""
|
651 |
+
"创建您自己的字段类型从未如此简单!不幸的是,版本3的字段类型不兼容版本4。"
|
652 |
+
|
653 |
+
#: ../core/controllers/field_groups.php:350
|
654 |
+
msgid "Migrating your field types is easy, please"
|
655 |
+
msgstr "数据迁移非常简单,请"
|
656 |
+
|
657 |
+
#: ../core/controllers/field_groups.php:350
|
658 |
+
msgid "follow this tutorial"
|
659 |
+
msgstr "跟随这个向导"
|
660 |
+
|
661 |
+
#: ../core/controllers/field_groups.php:350
|
662 |
+
msgid "to learn more."
|
663 |
+
msgstr "了解更多。"
|
664 |
+
|
665 |
+
#: ../core/controllers/field_groups.php:352
|
666 |
+
msgid "Actions & Filters"
|
667 |
+
msgstr "动作&过滤器"
|
668 |
+
|
669 |
+
#: ../core/controllers/field_groups.php:353
|
670 |
+
msgid ""
|
671 |
+
"All actions & filters have recieved a major facelift to make customizing ACF "
|
672 |
+
"even easier! Please"
|
673 |
+
msgstr "所有动作和过滤器得到了一次重大改版一遍更方便的定制ACF!请"
|
674 |
+
|
675 |
+
#: ../core/controllers/field_groups.php:353
|
676 |
+
msgid "read this guide"
|
677 |
+
msgstr "阅读此向导"
|
678 |
+
|
679 |
+
#: ../core/controllers/field_groups.php:353
|
680 |
+
msgid "to find the updated naming convention."
|
681 |
+
msgstr "找到更新命名约定。"
|
682 |
+
|
683 |
+
#: ../core/controllers/field_groups.php:355
|
684 |
+
msgid "Preview draft is now working!"
|
685 |
+
msgstr "预览功能已经可用!"
|
686 |
+
|
687 |
+
#: ../core/controllers/field_groups.php:356
|
688 |
+
msgid "This bug has been squashed along with many other little critters!"
|
689 |
+
msgstr "这个错误已经与许多其他小动物一起被压扁了!"
|
690 |
+
|
691 |
+
#: ../core/controllers/field_groups.php:356
|
692 |
+
msgid "See the full changelog"
|
693 |
+
msgstr "查看全部更新日志"
|
694 |
+
|
695 |
+
#: ../core/controllers/field_groups.php:360
|
696 |
+
msgid "Important"
|
697 |
+
msgstr "重要"
|
698 |
+
|
699 |
+
#: ../core/controllers/field_groups.php:362
|
700 |
+
msgid "Database Changes"
|
701 |
+
msgstr "数据库改变"
|
702 |
+
|
703 |
+
#: ../core/controllers/field_groups.php:363
|
704 |
+
msgid ""
|
705 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
706 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
707 |
+
"any issues."
|
708 |
+
msgstr ""
|
709 |
+
"数据库在版本3和4之间<strong>没有</strong>任何修改,这意味你可以安全回滚到版本"
|
710 |
+
"3而不会遇到任何问题。"
|
711 |
+
|
712 |
+
#: ../core/controllers/field_groups.php:365
|
713 |
+
msgid "Potential Issues"
|
714 |
+
msgstr "潜在问题"
|
715 |
+
|
716 |
+
#: ../core/controllers/field_groups.php:366
|
717 |
+
msgid ""
|
718 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
719 |
+
"filters, your website may not operate correctly. It is important that you "
|
720 |
+
"read the full"
|
721 |
+
msgstr ""
|
722 |
+
"需要在附加组件,字段类型和动作/过滤之间做重大修改时,你可的网站可能会出现一些"
|
723 |
+
"问题,所有强烈建议阅读全部"
|
724 |
+
|
725 |
+
#: ../core/controllers/field_groups.php:366
|
726 |
+
msgid "Migrating from v3 to v4"
|
727 |
+
msgstr "从V3迁移到V4"
|
728 |
+
|
729 |
+
#: ../core/controllers/field_groups.php:366
|
730 |
+
msgid "guide to view the full list of changes."
|
731 |
+
msgstr "查看所有更新列表。"
|
732 |
+
|
733 |
+
#: ../core/controllers/field_groups.php:369
|
734 |
+
msgid "Really Important!"
|
735 |
+
msgstr "非常重要!"
|
736 |
+
|
737 |
+
#: ../core/controllers/field_groups.php:369
|
738 |
+
msgid ""
|
739 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
740 |
+
"Please roll back to the latest"
|
741 |
+
msgstr "如果你没有收到更新通知而升级到了ACF插件,请回滚到最近的一个版本。"
|
742 |
+
|
743 |
+
#: ../core/controllers/field_groups.php:369
|
744 |
+
msgid "version 3"
|
745 |
+
msgstr "版本 3"
|
746 |
+
|
747 |
+
#: ../core/controllers/field_groups.php:369
|
748 |
+
msgid "of this plugin."
|
749 |
+
msgstr "这个插件"
|
750 |
+
|
751 |
+
#: ../core/controllers/field_groups.php:374
|
752 |
+
msgid "Thank You"
|
753 |
+
msgstr "谢谢!"
|
754 |
+
|
755 |
+
#: ../core/controllers/field_groups.php:375
|
756 |
+
msgid ""
|
757 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
758 |
+
"4 beta and for all the support I have received."
|
759 |
+
msgstr "非常感谢帮助我测试版本4的所有人。"
|
760 |
+
|
761 |
+
#: ../core/controllers/field_groups.php:376
|
762 |
+
msgid "Without you all, this release would not have been possible!"
|
763 |
+
msgstr "没有你们,此版本可能还没有发布。"
|
764 |
+
|
765 |
+
#: ../core/controllers/field_groups.php:380
|
766 |
+
msgid "Changelog for"
|
767 |
+
msgstr "更新日志:"
|
768 |
+
|
769 |
+
#: ../core/controllers/field_groups.php:396
|
770 |
+
msgid "Learn more"
|
771 |
+
msgstr "了解更多"
|
772 |
+
|
773 |
+
#: ../core/controllers/field_groups.php:402
|
774 |
+
msgid "Overview"
|
775 |
+
msgstr "预览"
|
776 |
+
|
777 |
+
#: ../core/controllers/field_groups.php:404
|
778 |
+
msgid ""
|
779 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
780 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
781 |
+
"need to be individually downloaded, installed and updated."
|
782 |
+
msgstr ""
|
783 |
+
"在此之前,所有附加组件通过一个激活码(从ACF附加组件的商店购买)解锁,到了版本"
|
784 |
+
"V4,所有附加组件作为单独的插件下载,安装和更新。"
|
785 |
+
|
786 |
+
#: ../core/controllers/field_groups.php:406
|
787 |
+
msgid ""
|
788 |
+
"This page will assist you in downloading and installing each available Add-"
|
789 |
+
"on."
|
790 |
+
msgstr "此页将帮助您下载和安装每个可用的附加组件。"
|
791 |
+
|
792 |
+
#: ../core/controllers/field_groups.php:408
|
793 |
+
msgid "Available Add-ons"
|
794 |
+
msgstr "可用附加功能"
|
795 |
+
|
796 |
+
#: ../core/controllers/field_groups.php:410
|
797 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
798 |
+
msgstr "在此网站上检测到以下附加已激活。"
|
799 |
+
|
800 |
+
#: ../core/controllers/field_groups.php:423
|
801 |
+
msgid "Name"
|
802 |
+
msgstr "名称"
|
803 |
+
|
804 |
+
#: ../core/controllers/field_groups.php:424
|
805 |
+
msgid "Activation Code"
|
806 |
+
msgstr "激活码"
|
807 |
+
|
808 |
+
#: ../core/controllers/field_groups.php:456
|
809 |
+
msgid "Flexible Content"
|
810 |
+
msgstr "大段内容"
|
811 |
+
|
812 |
+
#: ../core/controllers/field_groups.php:466
|
813 |
+
msgid "Installation"
|
814 |
+
msgstr "安装"
|
815 |
+
|
816 |
+
#: ../core/controllers/field_groups.php:468
|
817 |
+
msgid "For each Add-on available, please perform the following:"
|
818 |
+
msgstr "对于每个可以用附加组件,请执行以下操作:"
|
819 |
+
|
820 |
+
#: ../core/controllers/field_groups.php:470
|
821 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
822 |
+
msgstr "下载附加功能(.zip文件)到电脑。"
|
823 |
+
|
824 |
+
#: ../core/controllers/field_groups.php:471
|
825 |
+
msgid "Navigate to"
|
826 |
+
msgstr "链接到"
|
827 |
+
|
828 |
+
#: ../core/controllers/field_groups.php:471
|
829 |
+
msgid "Plugins > Add New > Upload"
|
830 |
+
msgstr "插件>添加>上传"
|
831 |
+
|
832 |
+
#: ../core/controllers/field_groups.php:472
|
833 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
834 |
+
msgstr "使用文件上载器,浏览,选择并安装附加组件(zip文件)"
|
835 |
+
|
836 |
+
#: ../core/controllers/field_groups.php:473
|
837 |
+
msgid ""
|
838 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
839 |
+
"link"
|
840 |
+
msgstr "插件上传并安装后,点击'激活插件'链接。"
|
841 |
+
|
842 |
+
#: ../core/controllers/field_groups.php:474
|
843 |
+
msgid "The Add-on is now installed and activated!"
|
844 |
+
msgstr "附加功能已安装并启用。"
|
845 |
+
|
846 |
+
#: ../core/controllers/field_groups.php:488
|
847 |
+
msgid "Awesome. Let's get to work"
|
848 |
+
msgstr "太棒了!我们开始吧。"
|
849 |
+
|
850 |
+
#: ../core/controllers/input.php:480
|
851 |
+
msgid "Validation Failed. One or more fields below are required."
|
852 |
+
msgstr "验证失败,下面一个或多个字段是必需的。"
|
853 |
+
|
854 |
+
#: ../core/controllers/input.php:482
|
855 |
+
msgid "Maximum values reached ( {max} values )"
|
856 |
+
msgstr "达到了最大值 ( {max} 值 ) "
|
857 |
+
|
858 |
+
#: ../core/controllers/upgrade.php:72
|
859 |
+
msgid "Upgrade"
|
860 |
+
msgstr "升级"
|
861 |
+
|
862 |
+
#: ../core/controllers/upgrade.php:616
|
863 |
+
msgid "Modifying field group options 'show on page'"
|
864 |
+
msgstr "修改字段组选项'在页面上显示'"
|
865 |
+
|
866 |
+
#: ../core/controllers/upgrade.php:670
|
867 |
+
msgid "Modifying field option 'taxonomy'"
|
868 |
+
msgstr "修改字段选项'分类法'"
|
869 |
+
|
870 |
+
#: ../core/controllers/upgrade.php:767
|
871 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
872 |
+
msgstr "从wp_options移动用户自定义字段到wp_usermeta"
|
873 |
+
|
874 |
+
#: ../core/fields/checkbox.php:19 ../core/fields/taxonomy.php:328
|
875 |
+
msgid "Checkbox"
|
876 |
+
msgstr "复选框"
|
877 |
+
|
878 |
+
#: ../core/fields/checkbox.php:20 ../core/fields/radio.php:20
|
879 |
+
#: ../core/fields/select.php:23 ../core/fields/true_false.php:20
|
880 |
+
msgid "Choice"
|
881 |
+
msgstr "选项"
|
882 |
+
|
883 |
+
#: ../core/fields/checkbox.php:138 ../core/fields/radio.php:121
|
884 |
+
#: ../core/fields/select.php:183
|
885 |
+
msgid "Choices"
|
886 |
+
msgstr "选项"
|
887 |
+
|
888 |
+
#: ../core/fields/checkbox.php:139 ../core/fields/select.php:184
|
889 |
+
msgid "Enter each choice on a new line."
|
890 |
+
msgstr "输入选项,每行一个"
|
891 |
+
|
892 |
+
#: ../core/fields/checkbox.php:140 ../core/fields/select.php:185
|
893 |
+
msgid "For more control, you may specify both a value and label like this:"
|
894 |
+
msgstr "如果需要更多控制,你按照一下格式,定义一个值和标签对:"
|
895 |
+
|
896 |
+
#: ../core/fields/checkbox.php:141 ../core/fields/radio.php:127
|
897 |
+
#: ../core/fields/select.php:186
|
898 |
+
msgid "red : Red"
|
899 |
+
msgstr " red : Red "
|
900 |
+
|
901 |
+
#: ../core/fields/checkbox.php:141 ../core/fields/radio.php:128
|
902 |
+
#: ../core/fields/select.php:186
|
903 |
+
msgid "blue : Blue"
|
904 |
+
msgstr " blue : Blue "
|
905 |
+
|
906 |
+
#: ../core/fields/checkbox.php:158 ../core/fields/color_picker.php:73
|
907 |
+
#: ../core/fields/email.php:71 ../core/fields/number.php:71
|
908 |
+
#: ../core/fields/radio.php:146 ../core/fields/select.php:203
|
909 |
+
#: ../core/fields/text.php:73 ../core/fields/textarea.php:73
|
910 |
+
#: ../core/fields/true_false.php:104 ../core/fields/wysiwyg.php:179
|
911 |
+
msgid "Default Value"
|
912 |
+
msgstr "默认值"
|
913 |
+
|
914 |
+
#: ../core/fields/checkbox.php:159 ../core/fields/select.php:204
|
915 |
+
msgid "Enter each default value on a new line"
|
916 |
+
msgstr "每行输入一个默认值"
|
917 |
+
|
918 |
+
#: ../core/fields/color_picker.php:19
|
919 |
+
msgid "Color Picker"
|
920 |
+
msgstr "颜色选择"
|
921 |
+
|
922 |
+
#: ../core/fields/color_picker.php:20
|
923 |
+
#: ../core/fields/date_picker/date_picker.php:20
|
924 |
+
msgid "jQuery"
|
925 |
+
msgstr "jQuery"
|
926 |
+
|
927 |
+
#: ../core/fields/color_picker.php:74
|
928 |
+
msgid "eg: #ffffff"
|
929 |
+
msgstr "如: #ffffff "
|
930 |
+
|
931 |
+
#: ../core/fields/dummy.php:19
|
932 |
+
msgid "Dummy"
|
933 |
+
msgstr "二进制"
|
934 |
+
|
935 |
+
#: ../core/fields/email.php:19
|
936 |
+
msgid "Email"
|
937 |
+
msgstr "电子邮件"
|
938 |
+
|
939 |
+
#: ../core/fields/file.php:19
|
940 |
+
msgid "File"
|
941 |
+
msgstr "文件"
|
942 |
+
|
943 |
+
#: ../core/fields/file.php:20 ../core/fields/image.php:20
|
944 |
+
#: ../core/fields/wysiwyg.php:20
|
945 |
+
msgid "Content"
|
946 |
+
msgstr "内容"
|
947 |
+
|
948 |
+
#: ../core/fields/file.php:76 ../core/fields/image.php:76
|
949 |
+
#: ../core/views/meta_box_fields.php:113
|
950 |
+
msgid "Edit"
|
951 |
+
msgstr "编辑"
|
952 |
+
|
953 |
+
#: ../core/fields/file.php:77 ../core/fields/image.php:75
|
954 |
+
msgid "Remove"
|
955 |
+
msgstr "删除"
|
956 |
+
|
957 |
+
#: ../core/fields/file.php:84
|
958 |
+
msgid "No File Selected"
|
959 |
+
msgstr "没有选择文件"
|
960 |
+
|
961 |
+
#: ../core/fields/file.php:84
|
962 |
+
msgid "Add File"
|
963 |
+
msgstr "添加文件"
|
964 |
+
|
965 |
+
#: ../core/fields/file.php:119 ../core/fields/image.php:116
|
966 |
+
#: ../core/fields/taxonomy.php:376
|
967 |
+
msgid "Return Value"
|
968 |
+
msgstr "返回值"
|
969 |
+
|
970 |
+
#: ../core/fields/file.php:130
|
971 |
+
msgid "File Object"
|
972 |
+
msgstr "文件对象"
|
973 |
+
|
974 |
+
#: ../core/fields/file.php:131
|
975 |
+
msgid "File URL"
|
976 |
+
msgstr "文件URL"
|
977 |
+
|
978 |
+
#: ../core/fields/file.php:132
|
979 |
+
msgid "File ID"
|
980 |
+
msgstr "文件ID"
|
981 |
+
|
982 |
+
#: ../core/fields/file.php:243
|
983 |
+
msgid "File Updated."
|
984 |
+
msgstr "文件已更新"
|
985 |
+
|
986 |
+
#: ../core/fields/file.php:335 ../core/fields/image.php:374
|
987 |
+
msgid "Media attachment updated."
|
988 |
+
msgstr "媒体附件已更新。"
|
989 |
+
|
990 |
+
#: ../core/fields/file.php:493
|
991 |
+
msgid "No files selected"
|
992 |
+
msgstr "没有选择文件"
|
993 |
+
|
994 |
+
#: ../core/fields/file.php:634
|
995 |
+
msgid "Add Selected Files"
|
996 |
+
msgstr "添加已选择文件"
|
997 |
+
|
998 |
+
#: ../core/fields/file.php:667
|
999 |
+
msgid "Select File"
|
1000 |
+
msgstr "选择文件"
|
1001 |
+
|
1002 |
+
#: ../core/fields/file.php:670
|
1003 |
+
msgid "Update File"
|
1004 |
+
msgstr "更新文件"
|
1005 |
+
|
1006 |
+
#: ../core/fields/image.php:19
|
1007 |
+
msgid "Image"
|
1008 |
+
msgstr "图像"
|
1009 |
+
|
1010 |
+
#: ../core/fields/image.php:82
|
1011 |
+
msgid "No image selected"
|
1012 |
+
msgstr "没有选择图片"
|
1013 |
+
|
1014 |
+
#: ../core/fields/image.php:82
|
1015 |
+
msgid "Add Image"
|
1016 |
+
msgstr "添加图片"
|
1017 |
+
|
1018 |
+
#: ../core/fields/image.php:126
|
1019 |
+
msgid "Image Object"
|
1020 |
+
msgstr "对象图像"
|
1021 |
+
|
1022 |
+
#: ../core/fields/image.php:127
|
1023 |
+
msgid "Image URL"
|
1024 |
+
msgstr "图像 URL"
|
1025 |
+
|
1026 |
+
#: ../core/fields/image.php:128
|
1027 |
+
msgid "Image ID"
|
1028 |
+
msgstr "图像ID"
|
1029 |
+
|
1030 |
+
#: ../core/fields/image.php:136
|
1031 |
+
msgid "Preview Size"
|
1032 |
+
msgstr "预览图大小"
|
1033 |
+
|
1034 |
+
#: ../core/fields/image.php:283
|
1035 |
+
msgid "Image Updated."
|
1036 |
+
msgstr "图片已更新"
|
1037 |
+
|
1038 |
+
#: ../core/fields/image.php:525
|
1039 |
+
msgid "No images selected"
|
1040 |
+
msgstr "没有选择图片"
|
1041 |
+
|
1042 |
+
#: ../core/fields/image.php:667
|
1043 |
+
msgid "Add Selected Images"
|
1044 |
+
msgstr "添加所选图片"
|
1045 |
+
|
1046 |
+
#: ../core/fields/image.php:696
|
1047 |
+
msgid "Select Image"
|
1048 |
+
msgstr "选择图像"
|
1049 |
+
|
1050 |
+
#: ../core/fields/image.php:699
|
1051 |
+
msgid "Update Image"
|
1052 |
+
msgstr "更新图像"
|
1053 |
+
|
1054 |
+
#: ../core/fields/message.php:19 ../core/fields/message.php:71
|
1055 |
+
#: ../core/fields/true_false.php:89
|
1056 |
+
msgid "Message"
|
1057 |
+
msgstr "消息"
|
1058 |
+
|
1059 |
+
#: ../core/fields/message.php:20 ../core/fields/radio.php:162
|
1060 |
+
#: ../core/fields/tab.php:20
|
1061 |
+
msgid "Layout"
|
1062 |
+
msgstr "样式"
|
1063 |
+
|
1064 |
+
#: ../core/fields/message.php:72
|
1065 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1066 |
+
msgstr "在这里输入的文本和HTML将和此字段一起出现。"
|
1067 |
+
|
1068 |
+
#: ../core/fields/message.php:73
|
1069 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1070 |
+
msgstr "请注意,所有文本将首页通过WP过滤功能"
|
1071 |
+
|
1072 |
+
#: ../core/fields/number.php:19
|
1073 |
+
msgid "Number"
|
1074 |
+
msgstr "号码"
|
1075 |
+
|
1076 |
+
#: ../core/fields/page_link.php:19
|
1077 |
+
msgid "Page Link"
|
1078 |
+
msgstr "页面链接"
|
1079 |
+
|
1080 |
+
#: ../core/fields/page_link.php:20 ../core/fields/post_object.php:20
|
1081 |
+
#: ../core/fields/relationship.php:23 ../core/fields/taxonomy.php:23
|
1082 |
+
#: ../core/fields/user.php:23
|
1083 |
+
msgid "Relational"
|
1084 |
+
msgstr "关系"
|
1085 |
+
|
1086 |
+
#: ../core/fields/page_link.php:78 ../core/fields/post_object.php:228
|
1087 |
+
#: ../core/fields/relationship.php:523 ../core/fields/relationship.php:602
|
1088 |
+
#: ../core/views/meta_box_location.php:72
|
1089 |
+
msgid "Post Type"
|
1090 |
+
msgstr "文章类型"
|
1091 |
+
|
1092 |
+
#: ../core/fields/page_link.php:102 ../core/fields/post_object.php:277
|
1093 |
+
#: ../core/fields/select.php:220 ../core/fields/taxonomy.php:342
|
1094 |
+
#: ../core/fields/user.php:284
|
1095 |
+
msgid "Allow Null?"
|
1096 |
+
msgstr "是否允许空值?"
|
1097 |
+
|
1098 |
+
#: ../core/fields/page_link.php:123 ../core/fields/post_object.php:298
|
1099 |
+
#: ../core/fields/select.php:239
|
1100 |
+
msgid "Select multiple values?"
|
1101 |
+
msgstr "是否选择多个值?"
|
1102 |
+
|
1103 |
+
#: ../core/fields/password.php:19
|
1104 |
+
msgid "Password"
|
1105 |
+
msgstr "密码"
|
1106 |
+
|
1107 |
+
#: ../core/fields/post_object.php:19
|
1108 |
+
msgid "Post Object"
|
1109 |
+
msgstr "文章对象"
|
1110 |
+
|
1111 |
+
#: ../core/fields/post_object.php:252 ../core/fields/relationship.php:547
|
1112 |
+
msgid "Filter from Taxonomy"
|
1113 |
+
msgstr "通过分类法过滤"
|
1114 |
+
|
1115 |
+
#: ../core/fields/radio.php:19
|
1116 |
+
msgid "Radio Button"
|
1117 |
+
msgstr "单选按钮"
|
1118 |
+
|
1119 |
+
#: ../core/fields/radio.php:122
|
1120 |
+
msgid "Enter your choices one per line"
|
1121 |
+
msgstr "输入选项,每行一个"
|
1122 |
+
|
1123 |
+
#: ../core/fields/radio.php:124
|
1124 |
+
msgid "Red"
|
1125 |
+
msgstr "红"
|
1126 |
+
|
1127 |
+
#: ../core/fields/radio.php:125
|
1128 |
+
msgid "Blue"
|
1129 |
+
msgstr "蓝"
|
1130 |
+
|
1131 |
+
#: ../core/fields/radio.php:173
|
1132 |
+
msgid "Vertical"
|
1133 |
+
msgstr "垂直"
|
1134 |
+
|
1135 |
+
#: ../core/fields/radio.php:174
|
1136 |
+
msgid "Horizontal"
|
1137 |
+
msgstr "水平"
|
1138 |
+
|
1139 |
+
#: ../core/fields/relationship.php:22
|
1140 |
+
msgid "Relationship"
|
1141 |
+
msgstr "关系"
|
1142 |
+
|
1143 |
+
#: ../core/fields/relationship.php:362 ../core/fields/relationship.php:581
|
1144 |
+
msgid "Search"
|
1145 |
+
msgstr "搜索"
|
1146 |
+
|
1147 |
+
#: ../core/fields/relationship.php:582
|
1148 |
+
msgid "Post Type Select"
|
1149 |
+
msgstr "文章类型选择"
|
1150 |
+
|
1151 |
+
#: ../core/fields/relationship.php:590
|
1152 |
+
msgid "Elements"
|
1153 |
+
msgstr "元素"
|
1154 |
+
|
1155 |
+
#: ../core/fields/relationship.php:591
|
1156 |
+
msgid "Selected elements will be displayed in each result"
|
1157 |
+
msgstr "选择的元素将在每个结果中显示。"
|
1158 |
+
|
1159 |
+
#: ../core/fields/relationship.php:601
|
1160 |
+
msgid "Post Title"
|
1161 |
+
msgstr "文章类型"
|
1162 |
+
|
1163 |
+
#: ../core/fields/relationship.php:613
|
1164 |
+
msgid "Maximum posts"
|
1165 |
+
msgstr "最大文章数"
|
1166 |
+
|
1167 |
+
#: ../core/fields/select.php:22 ../core/fields/taxonomy.php:333
|
1168 |
+
#: ../core/fields/user.php:275
|
1169 |
+
msgid "Select"
|
1170 |
+
msgstr "选择"
|
1171 |
+
|
1172 |
+
#: ../core/fields/tab.php:19
|
1173 |
+
msgid "Tab"
|
1174 |
+
msgstr "选项卡"
|
1175 |
+
|
1176 |
+
#: ../core/fields/tab.php:67
|
1177 |
+
msgid ""
|
1178 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1179 |
+
"defined) will appear grouped on the edit screen."
|
1180 |
+
msgstr ""
|
1181 |
+
"所有选项处理这个\"选项卡域\" (或等到定义了\"选项卡域\")将在编辑屏幕分组出现。"
|
1182 |
+
|
1183 |
+
#: ../core/fields/tab.php:68
|
1184 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1185 |
+
msgstr "你可以使用选项卡分割字段到多个区域。"
|
1186 |
+
|
1187 |
+
#: ../core/fields/taxonomy.php:22 ../core/fields/taxonomy.php:287
|
1188 |
+
msgid "Taxonomy"
|
1189 |
+
msgstr "分类法"
|
1190 |
+
|
1191 |
+
#: ../core/fields/taxonomy.php:221 ../core/fields/taxonomy.php:230
|
1192 |
+
#: ../core/fields/text.php:97 ../core/fields/textarea.php:97
|
1193 |
+
msgid "None"
|
1194 |
+
msgstr "None"
|
1195 |
+
|
1196 |
+
#: ../core/fields/taxonomy.php:317 ../core/fields/user.php:260
|
1197 |
+
#: ../core/views/meta_box_fields.php:82 ../core/views/meta_box_fields.php:163
|
1198 |
+
msgid "Field Type"
|
1199 |
+
msgstr "字段类型"
|
1200 |
+
|
1201 |
+
#: ../core/fields/taxonomy.php:327 ../core/fields/user.php:269
|
1202 |
+
msgid "Multiple Values"
|
1203 |
+
msgstr "多选"
|
1204 |
+
|
1205 |
+
#: ../core/fields/taxonomy.php:329 ../core/fields/user.php:271
|
1206 |
+
msgid "Multi Select"
|
1207 |
+
msgstr "多选"
|
1208 |
+
|
1209 |
+
#: ../core/fields/taxonomy.php:331 ../core/fields/user.php:273
|
1210 |
+
msgid "Single Value"
|
1211 |
+
msgstr "单个值"
|
1212 |
+
|
1213 |
+
#: ../core/fields/taxonomy.php:332
|
1214 |
+
msgid "Radio Buttons"
|
1215 |
+
msgstr "单选框"
|
1216 |
+
|
1217 |
+
#: ../core/fields/taxonomy.php:361
|
1218 |
+
msgid "Load & Save Terms to Post"
|
1219 |
+
msgstr "加载&保存条目到文章。"
|
1220 |
+
|
1221 |
+
#: ../core/fields/taxonomy.php:369
|
1222 |
+
msgid ""
|
1223 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1224 |
+
msgstr "在文章上加载值,保存时更新文章条目。"
|
1225 |
+
|
1226 |
+
#: ../core/fields/taxonomy.php:386
|
1227 |
+
msgid "Term Object"
|
1228 |
+
msgstr "对象缓存"
|
1229 |
+
|
1230 |
+
#: ../core/fields/taxonomy.php:387
|
1231 |
+
msgid "Term ID"
|
1232 |
+
msgstr "内容ID"
|
1233 |
+
|
1234 |
+
#: ../core/fields/text.php:19
|
1235 |
+
msgid "Text"
|
1236 |
+
msgstr "文本"
|
1237 |
+
|
1238 |
+
#: ../core/fields/text.php:87 ../core/fields/textarea.php:87
|
1239 |
+
msgid "Formatting"
|
1240 |
+
msgstr "格式化"
|
1241 |
+
|
1242 |
+
#: ../core/fields/text.php:88
|
1243 |
+
msgid "Define how to render html tags"
|
1244 |
+
msgstr "定义怎么生成html标签"
|
1245 |
+
|
1246 |
+
#: ../core/fields/text.php:98 ../core/fields/textarea.php:99
|
1247 |
+
msgid "HTML"
|
1248 |
+
msgstr "HTML"
|
1249 |
+
|
1250 |
+
#: ../core/fields/textarea.php:19
|
1251 |
+
msgid "Text Area"
|
1252 |
+
msgstr "文本段"
|
1253 |
+
|
1254 |
+
#: ../core/fields/textarea.php:88
|
1255 |
+
msgid "Define how to render html tags / new lines"
|
1256 |
+
msgstr "定义怎么处理html标签和换行"
|
1257 |
+
|
1258 |
+
#: ../core/fields/textarea.php:98
|
1259 |
+
msgid "auto <br />"
|
1260 |
+
msgstr "自动添加<br />"
|
1261 |
+
|
1262 |
+
#: ../core/fields/true_false.php:19
|
1263 |
+
msgid "True / False"
|
1264 |
+
msgstr "真/假"
|
1265 |
+
|
1266 |
+
#: ../core/fields/true_false.php:90
|
1267 |
+
msgid "eg. Show extra content"
|
1268 |
+
msgstr "例如:显示附加内容"
|
1269 |
+
|
1270 |
+
#: ../core/fields/user.php:22
|
1271 |
+
msgid "User"
|
1272 |
+
msgstr "用户"
|
1273 |
+
|
1274 |
+
#: ../core/fields/user.php:233
|
1275 |
+
msgid "Filter by role"
|
1276 |
+
msgstr "根据角色过滤"
|
1277 |
+
|
1278 |
+
#: ../core/fields/wysiwyg.php:19
|
1279 |
+
msgid "Wysiwyg Editor"
|
1280 |
+
msgstr "可视化编辑器"
|
1281 |
+
|
1282 |
+
#: ../core/fields/wysiwyg.php:193
|
1283 |
+
msgid "Toolbar"
|
1284 |
+
msgstr "工具条"
|
1285 |
+
|
1286 |
+
#: ../core/fields/wysiwyg.php:225
|
1287 |
+
msgid "Show Media Upload Buttons?"
|
1288 |
+
msgstr "是否显示媒体上传按钮?"
|
1289 |
+
|
1290 |
+
#: ../core/fields/_base.php:120 ../core/views/meta_box_location.php:71
|
1291 |
+
msgid "Basic"
|
1292 |
+
msgstr "基本"
|
1293 |
+
|
1294 |
+
#: ../core/fields/date_picker/date_picker.php:19
|
1295 |
+
msgid "Date Picker"
|
1296 |
+
msgstr "日期选择"
|
1297 |
+
|
1298 |
+
#: ../core/fields/date_picker/date_picker.php:52
|
1299 |
+
#: ../core/fields/date_picker/date_picker.php:132
|
1300 |
+
msgid "Done"
|
1301 |
+
msgstr "完成"
|
1302 |
+
|
1303 |
+
#: ../core/fields/date_picker/date_picker.php:53
|
1304 |
+
#: ../core/fields/date_picker/date_picker.php:133
|
1305 |
+
msgid "Today"
|
1306 |
+
msgstr "今天"
|
1307 |
+
|
1308 |
+
#: ../core/fields/date_picker/date_picker.php:56
|
1309 |
+
#: ../core/fields/date_picker/date_picker.php:136
|
1310 |
+
msgid "Show a different month"
|
1311 |
+
msgstr "显示其他月份"
|
1312 |
+
|
1313 |
+
#: ../core/fields/date_picker/date_picker.php:146
|
1314 |
+
msgid "Save format"
|
1315 |
+
msgstr "保存格式"
|
1316 |
+
|
1317 |
+
#: ../core/fields/date_picker/date_picker.php:147
|
1318 |
+
msgid ""
|
1319 |
+
"This format will determin the value saved to the database and returned via "
|
1320 |
+
"the API"
|
1321 |
+
msgstr "此格式将决定存储在数据库中的值,并通过API返回。"
|
1322 |
+
|
1323 |
+
#: ../core/fields/date_picker/date_picker.php:148
|
1324 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1325 |
+
msgstr "\"yymmdd\" 是最常用的格式,如需了解更多,请参考"
|
1326 |
+
|
1327 |
+
#: ../core/fields/date_picker/date_picker.php:148
|
1328 |
+
#: ../core/fields/date_picker/date_picker.php:164
|
1329 |
+
msgid "jQuery date formats"
|
1330 |
+
msgstr "jQuery日期格式"
|
1331 |
+
|
1332 |
+
#: ../core/fields/date_picker/date_picker.php:162
|
1333 |
+
msgid "Display format"
|
1334 |
+
msgstr "显示格式"
|
1335 |
+
|
1336 |
+
#: ../core/fields/date_picker/date_picker.php:163
|
1337 |
+
msgid "This format will be seen by the user when entering a value"
|
1338 |
+
msgstr "这是用户输入日期后看到的格式。"
|
1339 |
+
|
1340 |
+
#: ../core/fields/date_picker/date_picker.php:164
|
1341 |
+
msgid ""
|
1342 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1343 |
+
"about"
|
1344 |
+
msgstr "\"dd/mm/yy\" 或 \"mm/dd/yy\" 为最常用的显示格式,了解更多"
|
1345 |
+
|
1346 |
+
#: ../core/fields/date_picker/date_picker.php:178
|
1347 |
+
msgid "Week Starts On"
|
1348 |
+
msgstr "每周开始于"
|
1349 |
+
|
1350 |
+
#: ../core/views/meta_box_fields.php:23
|
1351 |
+
msgid "New Field"
|
1352 |
+
msgstr "新字段"
|
1353 |
+
|
1354 |
+
#: ../core/views/meta_box_fields.php:24
|
1355 |
+
msgid "new_field"
|
1356 |
+
msgstr "新字段"
|
1357 |
+
|
1358 |
+
#: ../core/views/meta_box_fields.php:57
|
1359 |
+
msgid "Field type does not exist"
|
1360 |
+
msgstr "字段类型不存在!"
|
1361 |
+
|
1362 |
+
#: ../core/views/meta_box_fields.php:64
|
1363 |
+
msgid "Move to trash. Are you sure?"
|
1364 |
+
msgstr "确定要删除吗?"
|
1365 |
+
|
1366 |
+
#: ../core/views/meta_box_fields.php:65
|
1367 |
+
msgid "checked"
|
1368 |
+
msgstr "选中"
|
1369 |
+
|
1370 |
+
#: ../core/views/meta_box_fields.php:66
|
1371 |
+
msgid "No toggle fields available"
|
1372 |
+
msgstr "没有可用的条件字段"
|
1373 |
+
|
1374 |
+
#: ../core/views/meta_box_fields.php:67
|
1375 |
+
msgid "copy"
|
1376 |
+
msgstr "复制"
|
1377 |
+
|
1378 |
+
#: ../core/views/meta_box_fields.php:79
|
1379 |
+
msgid "Field Order"
|
1380 |
+
msgstr "字段顺序"
|
1381 |
+
|
1382 |
+
#: ../core/views/meta_box_fields.php:80 ../core/views/meta_box_fields.php:132
|
1383 |
+
msgid "Field Label"
|
1384 |
+
msgstr "字段标签"
|
1385 |
+
|
1386 |
+
#: ../core/views/meta_box_fields.php:81 ../core/views/meta_box_fields.php:148
|
1387 |
+
msgid "Field Name"
|
1388 |
+
msgstr "字段名称"
|
1389 |
+
|
1390 |
+
#: ../core/views/meta_box_fields.php:83
|
1391 |
+
msgid "Field Key"
|
1392 |
+
msgstr "需要现场:"
|
1393 |
+
|
1394 |
+
#: ../core/views/meta_box_fields.php:95
|
1395 |
+
msgid ""
|
1396 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1397 |
+
"first field."
|
1398 |
+
msgstr "没有字段,点击<strong>添加</strong>按钮创建第一个字段。"
|
1399 |
+
|
1400 |
+
#: ../core/views/meta_box_fields.php:110 ../core/views/meta_box_fields.php:113
|
1401 |
+
msgid "Edit this Field"
|
1402 |
+
msgstr "编辑当前字段"
|
1403 |
+
|
1404 |
+
#: ../core/views/meta_box_fields.php:114
|
1405 |
+
msgid "Read documentation for this field"
|
1406 |
+
msgstr "阅读此字段的文档"
|
1407 |
+
|
1408 |
+
#: ../core/views/meta_box_fields.php:114
|
1409 |
+
msgid "Docs"
|
1410 |
+
msgstr "文档"
|
1411 |
+
|
1412 |
+
#: ../core/views/meta_box_fields.php:115
|
1413 |
+
msgid "Duplicate this Field"
|
1414 |
+
msgstr "复制此项"
|
1415 |
+
|
1416 |
+
#: ../core/views/meta_box_fields.php:115
|
1417 |
+
msgid "Duplicate"
|
1418 |
+
msgstr "复制"
|
1419 |
+
|
1420 |
+
#: ../core/views/meta_box_fields.php:116
|
1421 |
+
msgid "Delete this Field"
|
1422 |
+
msgstr "删除此项"
|
1423 |
+
|
1424 |
+
#: ../core/views/meta_box_fields.php:116
|
1425 |
+
msgid "Delete"
|
1426 |
+
msgstr "删除"
|
1427 |
+
|
1428 |
+
#: ../core/views/meta_box_fields.php:133
|
1429 |
+
msgid "This is the name which will appear on the EDIT page"
|
1430 |
+
msgstr "在编辑界面显示的名字。"
|
1431 |
+
|
1432 |
+
#: ../core/views/meta_box_fields.php:149
|
1433 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1434 |
+
msgstr "单个字符串,不能有空格,可以用横线或下画线。"
|
1435 |
+
|
1436 |
+
#: ../core/views/meta_box_fields.php:176
|
1437 |
+
msgid "Field Instructions"
|
1438 |
+
msgstr "字段说明"
|
1439 |
+
|
1440 |
+
#: ../core/views/meta_box_fields.php:177
|
1441 |
+
msgid "Instructions for authors. Shown when submitting data"
|
1442 |
+
msgstr "字段说明,显示在表单下面。"
|
1443 |
+
|
1444 |
+
#: ../core/views/meta_box_fields.php:189
|
1445 |
+
msgid "Required?"
|
1446 |
+
msgstr "(必填项)"
|
1447 |
+
|
1448 |
+
#: ../core/views/meta_box_fields.php:212
|
1449 |
+
msgid "Conditional Logic"
|
1450 |
+
msgstr "条件逻辑"
|
1451 |
+
|
1452 |
+
#: ../core/views/meta_box_fields.php:263
|
1453 |
+
#: ../core/views/meta_box_location.php:113
|
1454 |
+
msgid "is equal to"
|
1455 |
+
msgstr "等于"
|
1456 |
+
|
1457 |
+
#: ../core/views/meta_box_fields.php:264
|
1458 |
+
#: ../core/views/meta_box_location.php:114
|
1459 |
+
msgid "is not equal to"
|
1460 |
+
msgstr "不等于"
|
1461 |
+
|
1462 |
+
#: ../core/views/meta_box_fields.php:282
|
1463 |
+
msgid "Show this field when"
|
1464 |
+
msgstr "符合这些规则中的"
|
1465 |
+
|
1466 |
+
#: ../core/views/meta_box_fields.php:288
|
1467 |
+
msgid "all"
|
1468 |
+
msgstr "所有"
|
1469 |
+
|
1470 |
+
#: ../core/views/meta_box_fields.php:289
|
1471 |
+
msgid "any"
|
1472 |
+
msgstr "任一个"
|
1473 |
+
|
1474 |
+
#: ../core/views/meta_box_fields.php:292
|
1475 |
+
msgid "these rules are met"
|
1476 |
+
msgstr "项时,显示此字段"
|
1477 |
+
|
1478 |
+
#: ../core/views/meta_box_fields.php:306
|
1479 |
+
msgid "Close Field"
|
1480 |
+
msgstr "关闭字段"
|
1481 |
+
|
1482 |
+
#: ../core/views/meta_box_fields.php:319
|
1483 |
+
msgid "Drag and drop to reorder"
|
1484 |
+
msgstr "托拽排序"
|
1485 |
+
|
1486 |
+
#: ../core/views/meta_box_fields.php:320
|
1487 |
+
msgid "+ Add Field"
|
1488 |
+
msgstr "添加字段"
|
1489 |
+
|
1490 |
+
#: ../core/views/meta_box_location.php:45
|
1491 |
+
msgid "Rules"
|
1492 |
+
msgstr "规则"
|
1493 |
+
|
1494 |
+
#: ../core/views/meta_box_location.php:46
|
1495 |
+
msgid ""
|
1496 |
+
"Create a set of rules to determine which edit screens will use these "
|
1497 |
+
"advanced custom fields"
|
1498 |
+
msgstr "创建一组规则以确定自定义字段在那个编辑界面显示。"
|
1499 |
+
|
1500 |
+
#: ../core/views/meta_box_location.php:57
|
1501 |
+
msgid "Show this field group if"
|
1502 |
+
msgstr "显示此字段组的条件"
|
1503 |
+
|
1504 |
+
#: ../core/views/meta_box_location.php:59
|
1505 |
+
#: ../core/views/meta_box_location.php:155
|
1506 |
+
#: ../core/views/meta_box_location.php:172
|
1507 |
+
msgid "or"
|
1508 |
+
msgstr " 或"
|
1509 |
+
|
1510 |
+
#: ../core/views/meta_box_location.php:73
|
1511 |
+
msgid "Logged in User Type"
|
1512 |
+
msgstr "用户类型已记录"
|
1513 |
+
|
1514 |
+
#: ../core/views/meta_box_location.php:75
|
1515 |
+
#: ../core/views/meta_box_location.php:76
|
1516 |
+
msgid "Page"
|
1517 |
+
msgstr "页面"
|
1518 |
+
|
1519 |
+
#: ../core/views/meta_box_location.php:77
|
1520 |
+
msgid "Page Type"
|
1521 |
+
msgstr "页面类型"
|
1522 |
+
|
1523 |
+
#: ../core/views/meta_box_location.php:78
|
1524 |
+
msgid "Page Parent"
|
1525 |
+
msgstr "父级页面"
|
1526 |
+
|
1527 |
+
#: ../core/views/meta_box_location.php:79
|
1528 |
+
msgid "Page Template"
|
1529 |
+
msgstr "页面模板"
|
1530 |
+
|
1531 |
+
#: ../core/views/meta_box_location.php:81
|
1532 |
+
#: ../core/views/meta_box_location.php:82
|
1533 |
+
msgid "Post"
|
1534 |
+
msgstr "日志"
|
1535 |
+
|
1536 |
+
#: ../core/views/meta_box_location.php:83
|
1537 |
+
msgid "Post Category"
|
1538 |
+
msgstr "文章类别"
|
1539 |
+
|
1540 |
+
#: ../core/views/meta_box_location.php:84
|
1541 |
+
msgid "Post Format"
|
1542 |
+
msgstr "文章格式"
|
1543 |
+
|
1544 |
+
#: ../core/views/meta_box_location.php:85
|
1545 |
+
msgid "Post Taxonomy"
|
1546 |
+
msgstr "分类法"
|
1547 |
+
|
1548 |
+
#: ../core/views/meta_box_location.php:87
|
1549 |
+
msgid "Other"
|
1550 |
+
msgstr "其他"
|
1551 |
+
|
1552 |
+
#: ../core/views/meta_box_location.php:88
|
1553 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1554 |
+
msgstr "分类法条目(添加/编辑)"
|
1555 |
+
|
1556 |
+
#: ../core/views/meta_box_location.php:89
|
1557 |
+
msgid "User (Add / Edit)"
|
1558 |
+
msgstr "用户(添加./编辑)"
|
1559 |
+
|
1560 |
+
#: ../core/views/meta_box_location.php:90
|
1561 |
+
msgid "Media Attachment (Edit)"
|
1562 |
+
msgstr "媒体附件(编辑)"
|
1563 |
+
|
1564 |
+
#: ../core/views/meta_box_location.php:142
|
1565 |
+
msgid "and"
|
1566 |
+
msgstr "+"
|
1567 |
+
|
1568 |
+
#: ../core/views/meta_box_location.php:157
|
1569 |
+
msgid "Add rule group"
|
1570 |
+
msgstr "添加规则组"
|
1571 |
+
|
1572 |
+
#: ../core/views/meta_box_location.php:168
|
1573 |
+
msgid "Unlock options add-on with an activation code"
|
1574 |
+
msgstr "使用激活码解锁附加功能"
|
1575 |
+
|
1576 |
+
#: ../core/views/meta_box_options.php:23
|
1577 |
+
msgid "Order No."
|
1578 |
+
msgstr "序号"
|
1579 |
+
|
1580 |
+
#: ../core/views/meta_box_options.php:24
|
1581 |
+
msgid "Field groups are created in order <br />from lowest to highest"
|
1582 |
+
msgstr "字段组排序<br />从低到高。"
|
1583 |
+
|
1584 |
+
#: ../core/views/meta_box_options.php:40
|
1585 |
+
msgid "Position"
|
1586 |
+
msgstr "位置"
|
1587 |
+
|
1588 |
+
#: ../core/views/meta_box_options.php:50
|
1589 |
+
msgid "Normal"
|
1590 |
+
msgstr "普通"
|
1591 |
+
|
1592 |
+
#: ../core/views/meta_box_options.php:51
|
1593 |
+
msgid "Side"
|
1594 |
+
msgstr "边栏"
|
1595 |
+
|
1596 |
+
#: ../core/views/meta_box_options.php:60
|
1597 |
+
msgid "Style"
|
1598 |
+
msgstr "样式"
|
1599 |
+
|
1600 |
+
#: ../core/views/meta_box_options.php:70
|
1601 |
+
msgid "No Metabox"
|
1602 |
+
msgstr "无Metabox"
|
1603 |
+
|
1604 |
+
#: ../core/views/meta_box_options.php:71
|
1605 |
+
msgid "Standard Metabox"
|
1606 |
+
msgstr "标准Metabox"
|
1607 |
+
|
1608 |
+
#: ../core/views/meta_box_options.php:80
|
1609 |
+
msgid "Hide on screen"
|
1610 |
+
msgstr "隐藏元素"
|
1611 |
+
|
1612 |
+
#: ../core/views/meta_box_options.php:81
|
1613 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1614 |
+
msgstr "<b>选择</b>需要在编辑界面<b>隐藏</b>的条目。 "
|
1615 |
+
|
1616 |
+
#: ../core/views/meta_box_options.php:82
|
1617 |
+
msgid ""
|
1618 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
1619 |
+
"options will be used. (the one with the lowest order number)"
|
1620 |
+
msgstr ""
|
1621 |
+
"如果多个自定组出现在编辑界面,只有第一个字段组的设置有效(序号最小的)。"
|
1622 |
+
|
1623 |
+
#: ../core/views/meta_box_options.php:92
|
1624 |
+
msgid "Content Editor"
|
1625 |
+
msgstr "内容编辑器"
|
1626 |
+
|
1627 |
+
#: ../core/views/meta_box_options.php:93
|
1628 |
+
msgid "Excerpt"
|
1629 |
+
msgstr "摘要"
|
1630 |
+
|
1631 |
+
#: ../core/views/meta_box_options.php:95
|
1632 |
+
msgid "Discussion"
|
1633 |
+
msgstr "讨论"
|
1634 |
+
|
1635 |
+
#: ../core/views/meta_box_options.php:96
|
1636 |
+
msgid "Comments"
|
1637 |
+
msgstr "评论"
|
1638 |
+
|
1639 |
+
#: ../core/views/meta_box_options.php:97
|
1640 |
+
msgid "Revisions"
|
1641 |
+
msgstr "版本控制"
|
1642 |
+
|
1643 |
+
#: ../core/views/meta_box_options.php:98
|
1644 |
+
msgid "Slug"
|
1645 |
+
msgstr "别名"
|
1646 |
+
|
1647 |
+
#: ../core/views/meta_box_options.php:99
|
1648 |
+
msgid "Author"
|
1649 |
+
msgstr "作者"
|
1650 |
+
|
1651 |
+
#: ../core/views/meta_box_options.php:100
|
1652 |
+
msgid "Format"
|
1653 |
+
msgstr "格式"
|
1654 |
+
|
1655 |
+
#: ../core/views/meta_box_options.php:101
|
1656 |
+
msgid "Featured Image"
|
1657 |
+
msgstr "特色图像"
|
1658 |
+
|
1659 |
+
#: ../core/views/meta_box_options.php:102
|
1660 |
+
msgid "Categories"
|
1661 |
+
msgstr "类别"
|
1662 |
+
|
1663 |
+
#: ../core/views/meta_box_options.php:103
|
1664 |
+
msgid "Tags"
|
1665 |
+
msgstr "标签"
|
1666 |
+
|
1667 |
+
#: ../core/views/meta_box_options.php:104
|
1668 |
+
msgid "Send Trackbacks"
|
1669 |
+
msgstr "发送反馈"
|
1670 |
+
|
1671 |
+
#~ msgid "Add-Ons"
|
1672 |
+
#~ msgstr "附加"
|
1673 |
+
|
1674 |
+
#~ msgid "Just updated to version 4?"
|
1675 |
+
#~ msgstr "刚更新到版本4?"
|
1676 |
+
|
1677 |
+
#~ msgid ""
|
1678 |
+
#~ "Activation codes have changed to plugins! Download your purchased add-ons"
|
1679 |
+
#~ msgstr "激活码已改变了插件,请下载已购买的附加功能。"
|
1680 |
+
|
1681 |
+
#~ msgid "here"
|
1682 |
+
#~ msgstr "这里"
|
1683 |
+
|
1684 |
+
#~ msgid "Type"
|
1685 |
+
#~ msgstr "类型"
|
1686 |
+
|
1687 |
+
#~ msgid "match"
|
1688 |
+
#~ msgstr "符合"
|
1689 |
+
|
1690 |
+
#~ msgid "of the above"
|
1691 |
+
#~ msgstr " "
|
1692 |
+
|
1693 |
+
#~ msgid "Parent Page"
|
1694 |
+
#~ msgstr "父页面"
|
1695 |
+
|
1696 |
+
#~ msgid ""
|
1697 |
+
#~ "Read documentation, learn the functions and find some tips & tricks "
|
1698 |
+
#~ "for your next web project."
|
1699 |
+
#~ msgstr "阅读文档,学习功能和发现一些小提示,然后应用到你下一个网站项目中。"
|
1700 |
+
|
1701 |
+
#~ msgid "Visit the ACF website"
|
1702 |
+
#~ msgstr "访问ACF网站"
|
1703 |
+
|
1704 |
+
#~ msgid "Add File to Field"
|
1705 |
+
#~ msgstr "添加文件"
|
1706 |
+
|
1707 |
+
#~ msgid "Edit File"
|
1708 |
+
#~ msgstr "编辑文件"
|
1709 |
+
|
1710 |
+
#~ msgid "Add Image to Field"
|
1711 |
+
#~ msgstr "添加图片"
|
1712 |
+
|
1713 |
+
#~ msgid "Add Image to Gallery"
|
1714 |
+
#~ msgstr "添加图片到相册"
|
1715 |
+
|
1716 |
+
#~ msgid "Attachment updated"
|
1717 |
+
#~ msgstr "附件已更新"
|
1718 |
+
|
1719 |
+
#~ msgid "Options Updated"
|
1720 |
+
#~ msgstr "选项已更新"
|
1721 |
+
|
1722 |
+
#~ msgid "No Custom Field Group found for the options page"
|
1723 |
+
#~ msgstr "没有为选项页找到自定义字段组。"
|
1724 |
+
|
1725 |
+
#~ msgid "Create a Custom Field Group"
|
1726 |
+
#~ msgstr "创建自定义字段组"
|
1727 |
+
|
1728 |
+
#~ msgid "Publish"
|
1729 |
+
#~ msgstr "发布"
|
1730 |
+
|
1731 |
+
#~ msgid "Save Options"
|
1732 |
+
#~ msgstr "保存"
|
1733 |
+
|
1734 |
+
#~ msgid "Settings"
|
1735 |
+
#~ msgstr "设置"
|
1736 |
+
|
1737 |
+
#~ msgid "Repeater field deactivated"
|
1738 |
+
#~ msgstr "检测到复制字段"
|
1739 |
+
|
1740 |
+
#~ msgid "Options page deactivated"
|
1741 |
+
#~ msgstr "检测到选项页面"
|
1742 |
+
|
1743 |
+
#~ msgid "Flexible Content field deactivated"
|
1744 |
+
#~ msgstr "检测到多样内容字段"
|
1745 |
+
|
1746 |
+
#~ msgid "Gallery field deactivated"
|
1747 |
+
#~ msgstr "检测到相册字段"
|
1748 |
+
|
1749 |
+
#~ msgid "Repeater field activated"
|
1750 |
+
#~ msgstr "复制插件已激活。"
|
1751 |
+
|
1752 |
+
#~ msgid "Options page activated"
|
1753 |
+
#~ msgstr "选项页面已激活"
|
1754 |
+
|
1755 |
+
#~ msgid "Flexible Content field activated"
|
1756 |
+
#~ msgstr "多样内容字段已激活"
|
1757 |
+
|
1758 |
+
#~ msgid "Gallery field activated"
|
1759 |
+
#~ msgstr "插件激活成功。"
|
1760 |
+
|
1761 |
+
#~ msgid "License key unrecognised"
|
1762 |
+
#~ msgstr "许可密钥未注册"
|
1763 |
+
|
1764 |
+
#~ msgid ""
|
1765 |
+
#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
|
1766 |
+
#~ "on multiple sites."
|
1767 |
+
#~ msgstr "可以购买一个许可证来激活附加功能,每个许可证可用于许多站点。"
|
1768 |
+
|
1769 |
+
#~ msgid "Status"
|
1770 |
+
#~ msgstr "状态"
|
1771 |
+
|
1772 |
+
#~ msgid "Active"
|
1773 |
+
#~ msgstr "激活"
|
1774 |
+
|
1775 |
+
#~ msgid "Inactive"
|
1776 |
+
#~ msgstr "未禁用"
|
1777 |
+
|
1778 |
+
#~ msgid "Deactivate"
|
1779 |
+
#~ msgstr "禁用"
|
1780 |
+
|
1781 |
+
#~ msgid "Activate"
|
1782 |
+
#~ msgstr "激活"
|
1783 |
+
|
1784 |
+
#~ msgid "Register Field Groups"
|
1785 |
+
#~ msgstr "注册字段组"
|
1786 |
+
|
1787 |
+
#~ msgid "Create PHP"
|
1788 |
+
#~ msgstr "创建PHP"
|
1789 |
+
|
1790 |
+
#~ msgid "Advanced Custom Fields Settings"
|
1791 |
+
#~ msgstr "高级自动设置"
|
1792 |
+
|
1793 |
+
#~ msgid "requires a database upgrade"
|
1794 |
+
#~ msgstr "数据库需要升级"
|
1795 |
+
|
1796 |
+
#~ msgid "why?"
|
1797 |
+
#~ msgstr "为什么?"
|
1798 |
+
|
1799 |
+
#~ msgid "Please"
|
1800 |
+
#~ msgstr "请"
|
1801 |
+
|
1802 |
+
#~ msgid "backup your database"
|
1803 |
+
#~ msgstr "备份数据库"
|
1804 |
+
|
1805 |
+
#~ msgid "then click"
|
1806 |
+
#~ msgstr "然后点击"
|
1807 |
+
|
1808 |
+
#~ msgid "Upgrade Database"
|
1809 |
+
#~ msgstr "升级数据库"
|
1810 |
+
|
1811 |
+
#~ msgid "No choices to choose from"
|
1812 |
+
#~ msgstr "选择表单没有选"
|
1813 |
+
|
1814 |
+
#~ msgid "+ Add Row"
|
1815 |
+
#~ msgstr "添加行"
|
1816 |
+
|
1817 |
+
#~ msgid "Add Row"
|
1818 |
+
#~ msgstr "添加行"
|
1819 |
+
|
1820 |
+
#~ msgid "Reorder Layout"
|
1821 |
+
#~ msgstr "重排序布局"
|
1822 |
+
|
1823 |
+
#~ msgid "Reorder"
|
1824 |
+
#~ msgstr "重排序"
|
1825 |
+
|
1826 |
+
#~ msgid "Delete Layout"
|
1827 |
+
#~ msgstr "删除布局"
|
1828 |
+
|
1829 |
+
#~ msgid "Add New Layout"
|
1830 |
+
#~ msgstr "添加新布局"
|
1831 |
+
|
1832 |
+
#~ msgid "Duplicate Layout"
|
1833 |
+
#~ msgstr "复制布局"
|
1834 |
+
|
1835 |
+
#~ msgid "Label"
|
1836 |
+
#~ msgstr "标签"
|
1837 |
+
|
1838 |
+
#~ msgid "Display"
|
1839 |
+
#~ msgstr "显示"
|
1840 |
+
|
1841 |
+
#~ msgid "Row"
|
1842 |
+
#~ msgstr "行"
|
1843 |
+
|
1844 |
+
#~ msgid ""
|
1845 |
+
#~ "No fields. Click the \"+ Add Sub Field button\" to create your first "
|
1846 |
+
#~ "field."
|
1847 |
+
#~ msgstr "没有字段,点击<strong>添加</strong>按钮创建第一个字段。"
|
1848 |
+
|
1849 |
+
#~ msgid "Column Width"
|
1850 |
+
#~ msgstr "分栏宽度"
|
1851 |
+
|
1852 |
+
#~ msgid "Leave blank for auto"
|
1853 |
+
#~ msgstr "留空为自适应宽度"
|
1854 |
+
|
1855 |
+
#~ msgid "Save Field"
|
1856 |
+
#~ msgstr "保存字段"
|
1857 |
+
|
1858 |
+
#~ msgid "Close Sub Field"
|
1859 |
+
#~ msgstr "选择子字段"
|
1860 |
+
|
1861 |
+
#~ msgid "+ Add Sub Field"
|
1862 |
+
#~ msgstr "添加子字段"
|
1863 |
+
|
1864 |
+
#~ msgid "Button Label"
|
1865 |
+
#~ msgstr "按钮标签"
|
1866 |
+
|
1867 |
+
#~ msgid "Gallery"
|
1868 |
+
#~ msgstr "相册"
|
1869 |
+
|
1870 |
+
#~ msgid "Alternate Text"
|
1871 |
+
#~ msgstr "替换文本"
|
1872 |
+
|
1873 |
+
#~ msgid "Caption"
|
1874 |
+
#~ msgstr "标题"
|
1875 |
+
|
1876 |
+
#~ msgid "Description"
|
1877 |
+
#~ msgstr "描述"
|
1878 |
+
|
1879 |
+
#~ msgid "Thumbnail is advised"
|
1880 |
+
#~ msgstr "建设使用缩略图"
|
1881 |
+
|
1882 |
+
#~ msgid "Image Updated"
|
1883 |
+
#~ msgstr "图片已更新"
|
1884 |
+
|
1885 |
+
#~ msgid "Grid"
|
1886 |
+
#~ msgstr "栅格"
|
1887 |
+
|
1888 |
+
#~ msgid "List"
|
1889 |
+
#~ msgstr "列表"
|
1890 |
+
|
1891 |
+
#~ msgid "1 image selected"
|
1892 |
+
#~ msgstr "已选择1张图片"
|
1893 |
+
|
1894 |
+
#~ msgid "{count} images selected"
|
1895 |
+
#~ msgstr "选择了 {count}张图片"
|
1896 |
+
|
1897 |
+
#~ msgid "Added"
|
1898 |
+
#~ msgstr "已添加"
|
1899 |
+
|
1900 |
+
#~ msgid "Image already exists in gallery"
|
1901 |
+
#~ msgstr "图片已在相册中"
|
1902 |
+
|
1903 |
+
#~ msgid "Image Added"
|
1904 |
+
#~ msgstr "图像已添加"
|
1905 |
+
|
1906 |
+
#~ msgid "Repeater"
|
1907 |
+
#~ msgstr "复制"
|
1908 |
+
|
1909 |
+
#~ msgid "Repeater Fields"
|
1910 |
+
#~ msgstr "复制字段"
|
1911 |
+
|
1912 |
+
#~ msgid "Minimum Rows"
|
1913 |
+
#~ msgstr "最小行数"
|
1914 |
+
|
1915 |
+
#~ msgid "Maximum Rows"
|
1916 |
+
#~ msgstr "最大行数"
|
1917 |
+
|
1918 |
+
#~ msgid "Table (default)"
|
1919 |
+
#~ msgstr "表格(默认)"
|
1920 |
+
|
1921 |
+
#~ msgid "Run filter \"the_content\"?"
|
1922 |
+
#~ msgstr "是否运行过滤器 \"the_content\"?"
|
1923 |
+
|
1924 |
+
#~ msgid "Media (Edit)"
|
1925 |
+
#~ msgstr "媒体(编辑)"
|
lang/acf.pot
CHANGED
@@ -2,15 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2013-05-02 01:19:51+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: 2013-
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
14 |
|
15 |
#: acf.php:264
|
16 |
msgid "Field Groups"
|
@@ -294,8 +295,8 @@ msgstr ""
|
|
294 |
msgid ""
|
295 |
"Please note that if you export and register field groups within the same WP, "
|
296 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
297 |
-
"the
|
298 |
-
"
|
299 |
msgstr ""
|
300 |
|
301 |
#: core/controllers/export.php:272
|
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/advanced-custom-fields\n"
|
7 |
"POT-Creation-Date: 2013-05-02 01:19:51+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: 2013-06-10 19:00-0600\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
|
16 |
#: acf.php:264
|
17 |
msgid "Field Groups"
|
295 |
msgid ""
|
296 |
"Please note that if you export and register field groups within the same WP, "
|
297 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
298 |
+
"the original field group to the trash or remove the code from your functions."
|
299 |
+
"php file."
|
300 |
msgstr ""
|
301 |
|
302 |
#: core/controllers/export.php:272
|
readme.txt
CHANGED
@@ -101,6 +101,16 @@ http://support.advancedcustomfields.com/
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
= 4.1.5.1 =
|
105 |
* Image field: Fixed JS error causing uploader to not work correctly
|
106 |
* File field: Fixed JS error causing uploader to not work correctly
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 4.1.6 =
|
105 |
+
* General: Improved load_value function to better handle false and default values
|
106 |
+
* Number field: Added new options for min, max and step - http://support.advancedcustomfields.com/discussion/6263/fork-on-numbers-field
|
107 |
+
* Radio field: Improved logic for selecting the value. Now works with 0, false, null and any other 'empty' value - http://support.advancedcustomfields.com/discussion/6305/radio-button-issue-with-0-values-fix-included-
|
108 |
+
* Date picker field: Fixed PHP error - http://support.advancedcustomfields.com/discussion/6312/date-picker-php-error-date_picker-php-line-138-screenshot-attached
|
109 |
+
* Language: Added Portuguese translation - https://github.com/elliotcondon/acf/pull/64
|
110 |
+
* Taxonomy: Updated JS to clear image / file and checkbox elements when a new category is added via AJAX - http://support.advancedcustomfields.com/discussion/6326/image-field-added-to-categories-field-remains-set-after-category-created
|
111 |
+
* Validation: Added logic to allow a field to bypass validation if it is part of a tab group which is hidden via conditional logic
|
112 |
+
* API: Improved the acf_form function to better handle form attributes
|
113 |
+
|
114 |
= 4.1.5.1 =
|
115 |
* Image field: Fixed JS error causing uploader to not work correctly
|
116 |
* File field: Fixed JS error causing uploader to not work correctly
|