Version Description
- Updated Images / JS - Please hard refresh your browser to clear your cache
- Remove caching from acf_field_groups, replace with temp cache
- Add "Duplicate Field" on field group edit page
- Fix link to documentation on field group edit page
- add "update_value" to API
- Include new Polish translation
- Create a nicer style for flexible content
- Create a nicer style for repeater fields with row layout
- Create a nicer style for "no metabox" fields
- Add Spanish translation. Thanks to @hectorgarrofe
- Fix css for options page no metabox
- Added custom post_updated_messages
- Changed "Drag and drop to reorder" from an image to a string for translation
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 3.1.9 |
Comparing to | |
See all releases |
Code changes from version 3.1.8 to 3.1.9
- acf.php +70 -8
- core/actions/init.php +29 -0
- core/admin/meta_box_fields.php +5 -4
- core/api.php +55 -0
- core/fields/flexible_content.php +105 -68
- core/fields/repeater.php +45 -14
- css/acf.css +1 -1
- css/fields.css +16 -9
- css/input.css +125 -87
- images/acf-icon-32.png +0 -0
- images/backgrounds.png +0 -0
- images/drag_and_drop_to_reorder.png +0 -0
- images/loading.gif +0 -0
- images/loading_old.gif +0 -0
- images/popup-bit.png +0 -0
- images/sprite.png +0 -0
- js/fields.js +50 -29
- js/input-actions.js +81 -45
- js/input-ajax.js +0 -30
- lang/acf-es_ES.mo +0 -0
- lang/acf-es_ES.po +708 -0
- lang/acf-pl_PL.mo +0 -0
- lang/acf-pl_PL.po +1228 -871
- lang/acf.pot +127 -73
- readme.txt +15 -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 and more!
|
6 |
-
Version: 3.1.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -26,6 +26,7 @@ class Acf
|
|
26 |
var $upgrade_version;
|
27 |
var $fields;
|
28 |
var $options_page;
|
|
|
29 |
|
30 |
|
31 |
/*--------------------------------------------------------------------------------------
|
@@ -45,18 +46,21 @@ class Acf
|
|
45 |
$this->dir = plugins_url('',__FILE__);
|
46 |
$this->siteurl = get_bloginfo('url');
|
47 |
$this->wpadminurl = admin_url();
|
48 |
-
$this->version = '3.1.
|
49 |
$this->upgrade_version = '3.1.8'; // this is the latest version which requires an upgrade
|
|
|
50 |
|
51 |
|
52 |
// set text domain
|
53 |
//load_plugin_textdomain('acf', false, $this->path.'/lang' );
|
54 |
load_plugin_textdomain('acf', false, basename(dirname(__FILE__)).'/lang' );
|
55 |
|
|
|
56 |
// load options page
|
57 |
$this->setup_options_page();
|
58 |
$this->setup_everything_fields();
|
59 |
|
|
|
60 |
// actions
|
61 |
add_filter('pre_get_posts', array($this, 'pre_get_posts'));
|
62 |
add_action('init', array($this, 'init'));
|
@@ -85,6 +89,58 @@ class Acf
|
|
85 |
}
|
86 |
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
/*--------------------------------------------------------------------------------------
|
89 |
*
|
90 |
* pre_get_posts
|
@@ -417,6 +473,7 @@ class Acf
|
|
417 |
echo '<style type="text/css">
|
418 |
#toplevel_page_edit-post_type-acf a[href="edit.php?post_type=acf&page=acf-upgrade"]{ display:none; }
|
419 |
#toplevel_page_edit-post_type-acf .wp-menu-image { background: url("../wp-admin/images/menu.png") no-repeat scroll 0 -33px transparent; }
|
|
|
420 |
#toplevel_page_edit-post_type-acf .wp-menu-image img { display:none; }
|
421 |
</style>';
|
422 |
|
@@ -450,7 +507,8 @@ class Acf
|
|
450 |
}
|
451 |
else
|
452 |
{
|
453 |
-
|
|
|
454 |
// get style for page
|
455 |
$metabox_ids = $this->get_input_metabox_ids(array('post_id' => $post->ID), false);
|
456 |
$style = isset($metabox_ids[0]) ? $this->get_input_style($metabox_ids[0]) : '';
|
@@ -544,7 +602,7 @@ class Acf
|
|
544 |
function get_field_groups()
|
545 |
{
|
546 |
// return cache
|
547 |
-
$cache =
|
548 |
if($cache != false)
|
549 |
{
|
550 |
return $cache;
|
@@ -581,7 +639,7 @@ class Acf
|
|
581 |
$acfs = apply_filters('acf_register_field_group', $acfs);
|
582 |
|
583 |
// update cache
|
584 |
-
|
585 |
|
586 |
// return
|
587 |
if(empty($acfs))
|
@@ -2002,6 +2060,7 @@ class Acf
|
|
2002 |
|
2003 |
function render_fields_for_input($fields, $post_id)
|
2004 |
{
|
|
|
2005 |
// create fields
|
2006 |
if($fields)
|
2007 |
{
|
@@ -2029,9 +2088,11 @@ class Acf
|
|
2029 |
}
|
2030 |
|
2031 |
echo '<div id="acf-' . $field['name'] . '" class="field field-' . $field['type'] . $required_class . '">';
|
2032 |
-
|
2033 |
-
echo '<
|
2034 |
-
|
|
|
|
|
2035 |
|
2036 |
$field['name'] = 'fields[' . $field['key'] . ']';
|
2037 |
$this->create_field($field);
|
@@ -2040,6 +2101,7 @@ class Acf
|
|
2040 |
|
2041 |
}
|
2042 |
}
|
|
|
2043 |
}
|
2044 |
|
2045 |
|
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 and more!
|
6 |
+
Version: 3.1.9
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
26 |
var $upgrade_version;
|
27 |
var $fields;
|
28 |
var $options_page;
|
29 |
+
var $cache;
|
30 |
|
31 |
|
32 |
/*--------------------------------------------------------------------------------------
|
46 |
$this->dir = plugins_url('',__FILE__);
|
47 |
$this->siteurl = get_bloginfo('url');
|
48 |
$this->wpadminurl = admin_url();
|
49 |
+
$this->version = '3.1.9';
|
50 |
$this->upgrade_version = '3.1.8'; // this is the latest version which requires an upgrade
|
51 |
+
$this->cache = array(); // basic array cache to hold data throughout the page load
|
52 |
|
53 |
|
54 |
// set text domain
|
55 |
//load_plugin_textdomain('acf', false, $this->path.'/lang' );
|
56 |
load_plugin_textdomain('acf', false, basename(dirname(__FILE__)).'/lang' );
|
57 |
|
58 |
+
|
59 |
// load options page
|
60 |
$this->setup_options_page();
|
61 |
$this->setup_everything_fields();
|
62 |
|
63 |
+
|
64 |
// actions
|
65 |
add_filter('pre_get_posts', array($this, 'pre_get_posts'));
|
66 |
add_action('init', array($this, 'init'));
|
89 |
}
|
90 |
|
91 |
|
92 |
+
/*--------------------------------------------------------------------------------------
|
93 |
+
*
|
94 |
+
* get_cache
|
95 |
+
*
|
96 |
+
* @author Elliot Condon
|
97 |
+
* @since 3.1.9
|
98 |
+
*
|
99 |
+
*-------------------------------------------------------------------------------------*/
|
100 |
+
|
101 |
+
function get_cache($key = false)
|
102 |
+
{
|
103 |
+
// key is required
|
104 |
+
if( !$key )
|
105 |
+
return false;
|
106 |
+
|
107 |
+
|
108 |
+
// does cache at key exist?
|
109 |
+
if( !isset($this->cache[$key]) )
|
110 |
+
return false;
|
111 |
+
|
112 |
+
|
113 |
+
// return cahced item
|
114 |
+
return $this->cache[$key];
|
115 |
+
}
|
116 |
+
|
117 |
+
|
118 |
+
/*--------------------------------------------------------------------------------------
|
119 |
+
*
|
120 |
+
* set_cache
|
121 |
+
*
|
122 |
+
* @author Elliot Condon
|
123 |
+
* @since 3.1.9
|
124 |
+
*
|
125 |
+
*-------------------------------------------------------------------------------------*/
|
126 |
+
|
127 |
+
function set_cache($key = false, $value = null)
|
128 |
+
{
|
129 |
+
// key is required
|
130 |
+
if( !$key )
|
131 |
+
return false;
|
132 |
+
|
133 |
+
|
134 |
+
// update the cache array
|
135 |
+
$this->cache[$key] = $value;
|
136 |
+
|
137 |
+
|
138 |
+
// return true. Probably not needed
|
139 |
+
return true;
|
140 |
+
}
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
/*--------------------------------------------------------------------------------------
|
145 |
*
|
146 |
* pre_get_posts
|
473 |
echo '<style type="text/css">
|
474 |
#toplevel_page_edit-post_type-acf a[href="edit.php?post_type=acf&page=acf-upgrade"]{ display:none; }
|
475 |
#toplevel_page_edit-post_type-acf .wp-menu-image { background: url("../wp-admin/images/menu.png") no-repeat scroll 0 -33px transparent; }
|
476 |
+
#toplevel_page_edit-post_type-acf:hover .wp-menu-image { background-position: 0 -1px; }
|
477 |
#toplevel_page_edit-post_type-acf .wp-menu-image img { display:none; }
|
478 |
</style>';
|
479 |
|
507 |
}
|
508 |
else
|
509 |
{
|
510 |
+
$post_type = get_post_type($post);
|
511 |
+
|
512 |
// get style for page
|
513 |
$metabox_ids = $this->get_input_metabox_ids(array('post_id' => $post->ID), false);
|
514 |
$style = isset($metabox_ids[0]) ? $this->get_input_style($metabox_ids[0]) : '';
|
602 |
function get_field_groups()
|
603 |
{
|
604 |
// return cache
|
605 |
+
$cache = $this->get_cache('acf_field_groups');
|
606 |
if($cache != false)
|
607 |
{
|
608 |
return $cache;
|
639 |
$acfs = apply_filters('acf_register_field_group', $acfs);
|
640 |
|
641 |
// update cache
|
642 |
+
$this->set_cache('acf_field_groups', $acfs);
|
643 |
|
644 |
// return
|
645 |
if(empty($acfs))
|
2060 |
|
2061 |
function render_fields_for_input($fields, $post_id)
|
2062 |
{
|
2063 |
+
|
2064 |
// create fields
|
2065 |
if($fields)
|
2066 |
{
|
2088 |
}
|
2089 |
|
2090 |
echo '<div id="acf-' . $field['name'] . '" class="field field-' . $field['type'] . $required_class . '">';
|
2091 |
+
|
2092 |
+
echo '<p class="label">';
|
2093 |
+
echo '<label for="fields[' . $field['key'] . ']">' . $field['label'] . $required_label . '</label>';
|
2094 |
+
echo $field['instructions'];
|
2095 |
+
echo '</p>';
|
2096 |
|
2097 |
$field['name'] = 'fields[' . $field['key'] . ']';
|
2098 |
$this->create_field($field);
|
2101 |
|
2102 |
}
|
2103 |
}
|
2104 |
+
|
2105 |
}
|
2106 |
|
2107 |
|
core/actions/init.php
CHANGED
@@ -139,6 +139,35 @@ register_post_type('acf', array(
|
|
139 |
'show_in_menu' => false,
|
140 |
));
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
/*
|
143 |
* Set Custom Columns
|
144 |
* for the acf edit field groups page
|
139 |
'show_in_menu' => false,
|
140 |
));
|
141 |
|
142 |
+
|
143 |
+
/*
|
144 |
+
* Messages for ACF
|
145 |
+
*/
|
146 |
+
|
147 |
+
function acf_post_updated_messages( $messages )
|
148 |
+
{
|
149 |
+
global $post, $post_ID;
|
150 |
+
|
151 |
+
$messages['acf'] = array(
|
152 |
+
0 => '', // Unused. Messages start at index 1.
|
153 |
+
1 => __('Field group updated.'),
|
154 |
+
2 => __('Custom field updated.'),
|
155 |
+
3 => __('Custom field deleted.'),
|
156 |
+
4 => __('Field group updated.'),
|
157 |
+
/* translators: %s: date and time of the revision */
|
158 |
+
5 => isset($_GET['revision']) ? sprintf( __('Field group restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
159 |
+
6 => __('Field group published.'),
|
160 |
+
7 => __('Field group saved.'),
|
161 |
+
8 => __('Field group submitted.'),
|
162 |
+
9 => __('Field group scheduled for.'),
|
163 |
+
10 => __('Field group draft updated.'),
|
164 |
+
);
|
165 |
+
|
166 |
+
return $messages;
|
167 |
+
}
|
168 |
+
add_filter( 'post_updated_messages', 'acf_post_updated_messages' );
|
169 |
+
|
170 |
+
|
171 |
/*
|
172 |
* Set Custom Columns
|
173 |
* for the acf edit field groups page
|
core/admin/meta_box_fields.php
CHANGED
@@ -60,7 +60,7 @@ foreach($this->fields as $field)
|
|
60 |
<?php _e("No fields. Click the <strong>+ Add Field</strong> button to create your first field.",'acf'); ?>
|
61 |
</div>
|
62 |
<?php foreach($fields as $key => $field): ?>
|
63 |
-
<div class="<?php echo ($key == 999) ? "field_clone" : "field"; ?>">
|
64 |
<?php if(isset($field['key'])): ?><input type="hidden" name="fields[<?php echo $key; ?>][key]" value="<?php echo $field['key']; ?>" /><?php endif; ?>
|
65 |
<div class="field_meta">
|
66 |
<table class="acf widefat">
|
@@ -72,8 +72,9 @@ foreach($this->fields as $field)
|
|
72 |
</strong>
|
73 |
<div class="row_options">
|
74 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
75 |
-
<span><a title="<?php _e("Read documentation for this field",'acf'); ?>" href="http://advancedcustomfields.com/
|
76 |
-
<span><a class="
|
|
|
77 |
</div>
|
78 |
</td>
|
79 |
<td class="field_name"><?php echo $field['name']; ?></td>
|
@@ -186,6 +187,6 @@ foreach($this->fields as $field)
|
|
186 |
<?php endforeach; ?>
|
187 |
</div>
|
188 |
<div class="table_footer">
|
189 |
-
<div class="order_message"
|
190 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Field','acf'); ?></a>
|
191 |
</div>
|
60 |
<?php _e("No fields. Click the <strong>+ Add Field</strong> button to create your first field.",'acf'); ?>
|
61 |
</div>
|
62 |
<?php foreach($fields as $key => $field): ?>
|
63 |
+
<div class="<?php echo ($key == 999) ? "field_clone" : "field"; ?>" data-id="<?php echo $key; ?>">
|
64 |
<?php if(isset($field['key'])): ?><input type="hidden" name="fields[<?php echo $key; ?>][key]" value="<?php echo $field['key']; ?>" /><?php endif; ?>
|
65 |
<div class="field_meta">
|
66 |
<table class="acf widefat">
|
72 |
</strong>
|
73 |
<div class="row_options">
|
74 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
75 |
+
<span><a title="<?php _e("Read documentation for this field",'acf'); ?>" href="http://www.advancedcustomfields.com/docs/field-types/" target="_blank"><?php _e("Docs",'acf'); ?></a> | </span>
|
76 |
+
<span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
|
77 |
+
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
|
78 |
</div>
|
79 |
</td>
|
80 |
<td class="field_name"><?php echo $field['name']; ?></td>
|
187 |
<?php endforeach; ?>
|
188 |
</div>
|
189 |
<div class="table_footer">
|
190 |
+
<div class="order_message"><?php _e('Drag and drop to reorder','acf'); ?></div>
|
191 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Field','acf'); ?></a>
|
192 |
</div>
|
core/api.php
CHANGED
@@ -629,4 +629,59 @@ function acf_form($options = null)
|
|
629 |
}
|
630 |
|
631 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
?>
|
629 |
}
|
630 |
|
631 |
|
632 |
+
/*--------------------------------------------------------------------------------------
|
633 |
+
*
|
634 |
+
* update_field
|
635 |
+
*
|
636 |
+
* @author Elliot Condon
|
637 |
+
* @since 3.1.9
|
638 |
+
*
|
639 |
+
*-------------------------------------------------------------------------------------*/
|
640 |
+
|
641 |
+
function update_field($field_name, $value, $post_id = false)
|
642 |
+
{
|
643 |
+
global $post, $acf;
|
644 |
+
|
645 |
+
if(!$post_id)
|
646 |
+
{
|
647 |
+
$post_id = $post->ID;
|
648 |
+
}
|
649 |
+
|
650 |
+
|
651 |
+
// allow for option == options
|
652 |
+
if( $post_id == "option" )
|
653 |
+
{
|
654 |
+
$post_id = "options";
|
655 |
+
}
|
656 |
+
|
657 |
+
|
658 |
+
// get value
|
659 |
+
$field_key = "";
|
660 |
+
if( is_numeric($post_id) )
|
661 |
+
{
|
662 |
+
$field_key = get_post_meta($post_id, '_' . $field_name, true);
|
663 |
+
}
|
664 |
+
else
|
665 |
+
{
|
666 |
+
$field_key = get_option('_' . $post_id . '_' . $field_name);
|
667 |
+
}
|
668 |
+
|
669 |
+
|
670 |
+
// create default field to save the data as plain text
|
671 |
+
$field = array(
|
672 |
+
'type' => 'text',
|
673 |
+
'name' => $field_name,
|
674 |
+
'key' => ''
|
675 |
+
);
|
676 |
+
|
677 |
+
if($field_key != "")
|
678 |
+
{
|
679 |
+
// we can load the field properly!
|
680 |
+
$field = $acf->get_acf_field($field_key);
|
681 |
+
}
|
682 |
+
|
683 |
+
|
684 |
+
$acf->update_value($post_id, $field, $value);
|
685 |
+
}
|
686 |
+
|
687 |
?>
|
core/fields/flexible_content.php
CHANGED
@@ -52,89 +52,124 @@ class acf_Flexible_content extends acf_Field
|
|
52 |
<div class="clones">
|
53 |
<?php $i = -1; ?>
|
54 |
<?php foreach($layouts as $layout): $i++; ?>
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
<
|
64 |
-
|
65 |
-
|
66 |
-
<?php endif; ?>
|
67 |
-
<tbody>
|
68 |
-
<tr>
|
69 |
-
<td class="order"><?php echo $i+1; ?></td>
|
70 |
-
<?php if($layout['display'] == 'row'): ?><td><?php endif; ?>
|
71 |
-
<?php foreach($layout['sub_fields'] as $sub_field):?>
|
72 |
-
<?php if($layout['display'] == 'table'): ?><td><?php else: ?><label class="field_label"><?php echo $sub_field['label']; ?></label><?php endif; ?>
|
73 |
-
<input type="hidden" name="<?php echo $field['name'] ?>[999][acf_fc_layout]" value="<?php echo $layout['name']; ?>" />
|
74 |
-
<?php
|
75 |
-
// add value
|
76 |
-
$sub_field['value'] = isset($sub_field['default_value']) ? $sub_field['default_value'] : '';
|
77 |
-
|
78 |
-
// add name
|
79 |
-
$sub_field['name'] = $field['name'] . '[999][' . $sub_field['key'] . ']';
|
80 |
-
|
81 |
-
// create field
|
82 |
-
$this->parent->create_field($sub_field);
|
83 |
-
?>
|
84 |
-
<?php if($layout['display'] == 'table'): ?></td><?php endif; ?>
|
85 |
-
<?php endforeach; ?>
|
86 |
-
<?php if($layout['display'] == 'row'): ?></td><?php endif; ?>
|
87 |
-
<td class="remove"><a class="remove_row" id="fc_remove_row" href="javascript:;"></a></td>
|
88 |
-
</tr>
|
89 |
-
</tbody>
|
90 |
-
</table>
|
91 |
-
<?php endforeach; ?>
|
92 |
-
</div>
|
93 |
-
<div class="values">
|
94 |
-
<?php if($field['value']): ?>
|
95 |
-
<?php foreach($field['value'] as $i => $value):?>
|
96 |
-
|
97 |
-
|
98 |
-
<?php if(!isset($layouts[$value['acf_fc_layout']])) continue; ?>
|
99 |
-
<?php $layout = $layouts[$value['acf_fc_layout']]; ?>
|
100 |
|
101 |
-
|
102 |
-
<table class="widefat" data-layout="<?php echo $layout['name'] ?>">
|
103 |
-
<?php if($layout['display'] == 'table'): ?>
|
104 |
-
<thead>
|
105 |
-
<tr>
|
106 |
-
<th class="order"><!-- order --></th>
|
107 |
-
<?php $l = 0; foreach($layout['sub_fields'] as $sub_field): $l++; ?>
|
108 |
-
<th class="<?php echo $sub_field['name']; ?>" <?php if($l != count($layout['sub_fields'])): ?>style="width:<?php echo 100/count($layout['sub_fields']) - 5; ?>%;"<?php endif; ?>><span><?php echo $sub_field['label']; ?></span></th>
|
109 |
-
<?php endforeach; ?>
|
110 |
-
<th class="remove"><!-- remove --></th>
|
111 |
-
</tr>
|
112 |
-
</thead>
|
113 |
-
<?php endif; ?>
|
114 |
<tbody>
|
115 |
<tr>
|
116 |
-
<td class="order"><?php echo $i+1; ?></td>
|
117 |
<?php if($layout['display'] == 'row'): ?><td><?php endif; ?>
|
118 |
-
|
119 |
-
|
120 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
<?php
|
122 |
// add value
|
123 |
-
$sub_field['value'] = isset($
|
124 |
|
125 |
// add name
|
126 |
-
$sub_field['name'] = $field['name'] . '[
|
127 |
|
128 |
// create field
|
129 |
$this->parent->create_field($sub_field);
|
130 |
?>
|
|
|
131 |
<?php if($layout['display'] == 'table'): ?></td><?php endif; ?>
|
|
|
132 |
<?php endforeach; ?>
|
|
|
133 |
<?php if($layout['display'] == 'row'): ?></td><?php endif; ?>
|
134 |
-
<td class="remove"><a class="remove_row" id="fc_remove_row" href="javascript:;"></a></td>
|
135 |
</tr>
|
136 |
</tbody>
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
|
140 |
<?php endforeach; ?>
|
@@ -286,7 +321,7 @@ class acf_Flexible_content extends acf_Field
|
|
286 |
</div>
|
287 |
|
288 |
<?php foreach($layout['sub_fields'] as $key2 => $sub_field): ?>
|
289 |
-
<div class="<?php if($key2 == 999){echo "field_clone";}else{echo "field";} ?> sub_field">
|
290 |
|
291 |
<?php if(isset($sub_field['key'])): ?>
|
292 |
<input type="hidden" name="fields[<?php echo $key; ?>][sub_fields][<?php echo $key2; ?>][key]" value="<?php echo $sub_field['key']; ?>" />
|
@@ -302,6 +337,8 @@ class acf_Flexible_content extends acf_Field
|
|
302 |
</strong>
|
303 |
<div class="row_options">
|
304 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
|
|
|
|
305 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a>
|
306 |
</div>
|
307 |
</td>
|
@@ -387,7 +424,7 @@ class acf_Flexible_content extends acf_Field
|
|
387 |
<?php endforeach; ?>
|
388 |
</div>
|
389 |
<div class="table_footer">
|
390 |
-
<div class="order_message"
|
391 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Sub Field','acf'); ?></a>
|
392 |
</div>
|
393 |
</div>
|
52 |
<div class="clones">
|
53 |
<?php $i = -1; ?>
|
54 |
<?php foreach($layouts as $layout): $i++; ?>
|
55 |
+
|
56 |
+
<div class="layout" data-layout="<?php echo $layout['name']; ?>">
|
57 |
+
|
58 |
+
<ul class="hl actions">
|
59 |
+
<li><a class="order" href="#"></a></li>
|
60 |
+
<li><a class="delete" href="#"></a></li>
|
61 |
+
</ul>
|
62 |
+
|
63 |
+
<p class="layout-label"><?php echo $layout['label']; ?></p>
|
64 |
+
|
65 |
+
<table class="widefat">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
<tbody>
|
68 |
<tr>
|
|
|
69 |
<?php if($layout['display'] == 'row'): ?><td><?php endif; ?>
|
70 |
+
|
71 |
+
<?php $l = 0; foreach($layout['sub_fields'] as $sub_field): $l++; ?>
|
72 |
+
|
73 |
+
<?php if($layout['display'] == 'table'): ?><td style="width:<?php echo 100/count($layout['sub_fields']); ?>%;"><?php endif; ?>
|
74 |
+
|
75 |
+
<p class="label">
|
76 |
+
<label><?php echo $sub_field['label']; ?></label>
|
77 |
+
<?php
|
78 |
+
|
79 |
+
if(!isset($sub_field['instructions']))
|
80 |
+
$sub_field['instructions'] = "";
|
81 |
+
|
82 |
+
echo $sub_field['instructions'];
|
83 |
+
|
84 |
+
?>
|
85 |
+
</p>
|
86 |
+
|
87 |
+
<input type="hidden" name="<?php echo $field['name'] ?>[999][acf_fc_layout]" value="<?php echo $layout['name']; ?>" />
|
88 |
<?php
|
89 |
// add value
|
90 |
+
$sub_field['value'] = isset($sub_field['default_value']) ? $sub_field['default_value'] : '';
|
91 |
|
92 |
// add name
|
93 |
+
$sub_field['name'] = $field['name'] . '[999][' . $sub_field['key'] . ']';
|
94 |
|
95 |
// create field
|
96 |
$this->parent->create_field($sub_field);
|
97 |
?>
|
98 |
+
|
99 |
<?php if($layout['display'] == 'table'): ?></td><?php endif; ?>
|
100 |
+
|
101 |
<?php endforeach; ?>
|
102 |
+
|
103 |
<?php if($layout['display'] == 'row'): ?></td><?php endif; ?>
|
|
|
104 |
</tr>
|
105 |
</tbody>
|
106 |
+
|
107 |
+
</table>
|
108 |
+
</div>
|
109 |
+
<?php endforeach; ?>
|
110 |
+
</div>
|
111 |
+
<div class="values">
|
112 |
+
<?php if($field['value']): ?>
|
113 |
+
<?php foreach($field['value'] as $i => $value):?>
|
114 |
+
|
115 |
+
|
116 |
+
<?php if(!isset($layouts[$value['acf_fc_layout']])) continue; ?>
|
117 |
+
<?php $layout = $layouts[$value['acf_fc_layout']]; ?>
|
118 |
+
|
119 |
+
|
120 |
+
<div class="layout" data-layout="<?php echo $layout['name']; ?>">
|
121 |
+
|
122 |
+
<ul class="hl actions">
|
123 |
+
<li><a class="order" href="#"></a></li>
|
124 |
+
<li><a class="delete" href="#"></a></li>
|
125 |
+
</ul>
|
126 |
+
|
127 |
+
<p class="layout-label"><?php echo $layout['label']; ?></p>
|
128 |
+
|
129 |
+
<table class="widefat">
|
130 |
+
|
131 |
+
<tbody>
|
132 |
+
<tr>
|
133 |
+
<?php if($layout['display'] == 'row'): ?><td><?php endif; ?>
|
134 |
+
|
135 |
+
<?php $l = 0; foreach($layout['sub_fields'] as $sub_field): $l++; ?>
|
136 |
+
|
137 |
+
<?php if($layout['display'] == 'table'): ?><td style="width:<?php echo 100/count($layout['sub_fields']); ?>%;"><?php endif; ?>
|
138 |
+
|
139 |
+
<p class="label">
|
140 |
+
<label><?php echo $sub_field['label']; ?></label>
|
141 |
+
<?php
|
142 |
+
|
143 |
+
if(!isset($sub_field['instructions']))
|
144 |
+
$sub_field['instructions'] = "";
|
145 |
+
|
146 |
+
echo $sub_field['instructions'];
|
147 |
+
|
148 |
+
?>
|
149 |
+
</p>
|
150 |
+
|
151 |
+
<input type="hidden" name="<?php echo $field['name'] ?>[<?php echo $i ?>][acf_fc_layout]" value="<?php echo $layout['name']; ?>" />
|
152 |
+
<?php
|
153 |
+
// add value
|
154 |
+
$sub_field['value'] = isset($value[$sub_field['name']]) ? $value[$sub_field['name']] : '';
|
155 |
+
|
156 |
+
// add name
|
157 |
+
$sub_field['name'] = $field['name'] . '[' . $i . '][' . $sub_field['key'] . ']';
|
158 |
+
|
159 |
+
// create field
|
160 |
+
$this->parent->create_field($sub_field);
|
161 |
+
?>
|
162 |
+
|
163 |
+
<?php if($layout['display'] == 'table'): ?></td><?php endif; ?>
|
164 |
+
|
165 |
+
<?php endforeach; ?>
|
166 |
+
|
167 |
+
<?php if($layout['display'] == 'row'): ?></td><?php endif; ?>
|
168 |
+
</tr>
|
169 |
+
</tbody>
|
170 |
+
|
171 |
+
</table>
|
172 |
+
</div>
|
173 |
|
174 |
|
175 |
<?php endforeach; ?>
|
321 |
</div>
|
322 |
|
323 |
<?php foreach($layout['sub_fields'] as $key2 => $sub_field): ?>
|
324 |
+
<div class="<?php if($key2 == 999){echo "field_clone";}else{echo "field";} ?> sub_field" data-id="<?php echo $key2; ?>">
|
325 |
|
326 |
<?php if(isset($sub_field['key'])): ?>
|
327 |
<input type="hidden" name="fields[<?php echo $key; ?>][sub_fields][<?php echo $key2; ?>][key]" value="<?php echo $sub_field['key']; ?>" />
|
337 |
</strong>
|
338 |
<div class="row_options">
|
339 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
340 |
+
<span><a title="<?php _e("Read documentation for this field",'acf'); ?>" href="http://www.advancedcustomfields.com/docs/field-types/" target="_blank"><?php _e("Docs",'acf'); ?></a> | </span>
|
341 |
+
<span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
|
342 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a>
|
343 |
</div>
|
344 |
</td>
|
424 |
<?php endforeach; ?>
|
425 |
</div>
|
426 |
<div class="table_footer">
|
427 |
+
<div class="order_message"><?php _e('Drag and drop to reorder','acf'); ?></div>
|
428 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Sub Field','acf'); ?></a>
|
429 |
</div>
|
430 |
</div>
|
core/fields/repeater.php
CHANGED
@@ -82,23 +82,41 @@ class acf_Repeater extends acf_Field
|
|
82 |
?>
|
83 |
<div class="repeater" data-row_limit="<?php echo $row_limit; ?>">
|
84 |
<table class="widefat <?php if($layout == 'row'): ?>row_layout<?php endif; ?>">
|
85 |
-
|
86 |
<thead>
|
87 |
<tr>
|
88 |
-
<?php if($row_limit > 1): ?>
|
89 |
-
<th class="order"><!-- order --></th>
|
90 |
-
<?php endif; ?>
|
91 |
|
92 |
-
<?php
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
-
<?php if($row_limit > 1): ?>
|
97 |
-
<th class="remove"></th>
|
98 |
<?php endif; ?>
|
|
|
|
|
99 |
</tr>
|
100 |
</thead>
|
101 |
-
|
102 |
<tbody>
|
103 |
<?php foreach($field['value'] as $i => $value):?>
|
104 |
<?php //if(($i+1) > $row_limit){continue;} ?>
|
@@ -118,7 +136,18 @@ class acf_Repeater extends acf_Field
|
|
118 |
<?php if($layout == 'table'): ?>
|
119 |
<td>
|
120 |
<?php else: ?>
|
121 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
<?php endif; ?>
|
123 |
|
124 |
<?php
|
@@ -135,7 +164,7 @@ class acf_Repeater extends acf_Field
|
|
135 |
<?php if($layout == 'table'): ?>
|
136 |
</td>
|
137 |
<?php else: ?>
|
138 |
-
|
139 |
<?php endif; ?>
|
140 |
|
141 |
<?php endforeach; ?>
|
@@ -227,7 +256,7 @@ class acf_Repeater extends acf_Field
|
|
227 |
</div>
|
228 |
|
229 |
<?php foreach($field['sub_fields'] as $key2 => $sub_field): ?>
|
230 |
-
<div class="<?php if($key2 == 999){echo "field_clone";}else{echo "field";} ?> sub_field">
|
231 |
|
232 |
<?php if(isset($sub_field['key'])): ?>
|
233 |
<input type="hidden" name="fields[<?php echo $key; ?>][sub_fields][<?php echo $key2; ?>][key]" value="<?php echo $sub_field['key']; ?>" />
|
@@ -242,6 +271,8 @@ class acf_Repeater extends acf_Field
|
|
242 |
</strong>
|
243 |
<div class="row_options">
|
244 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
|
|
|
|
245 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a>
|
246 |
</div>
|
247 |
</td>
|
@@ -329,7 +360,7 @@ class acf_Repeater extends acf_Field
|
|
329 |
<?php endforeach; ?>
|
330 |
</div>
|
331 |
<div class="table_footer">
|
332 |
-
<div class="order_message"
|
333 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Sub Field','acf'); ?></a>
|
334 |
</div>
|
335 |
</div>
|
82 |
?>
|
83 |
<div class="repeater" data-row_limit="<?php echo $row_limit; ?>">
|
84 |
<table class="widefat <?php if($layout == 'row'): ?>row_layout<?php endif; ?>">
|
85 |
+
|
86 |
<thead>
|
87 |
<tr>
|
88 |
+
<?php if($row_limit > 1): ?><th class="order"></th><?php endif; ?>
|
|
|
|
|
89 |
|
90 |
+
<?php if($layout == 'table'): ?>
|
91 |
+
|
92 |
+
<?php foreach($sub_fields as $sub_field_i => $sub_field):?>
|
93 |
+
<th class="<?php echo $sub_field['name']; ?>" <?php if($sub_field_i != 0): ?>style="width:<?php echo 95/count($sub_fields); ?>%;"<?php endif; ?>>
|
94 |
+
<span><?php echo $sub_field['label']; ?></span>
|
95 |
+
</th>
|
96 |
+
<?php endforeach; ?>
|
97 |
+
|
98 |
+
<?php else: ?>
|
99 |
+
|
100 |
+
<?php
|
101 |
+
|
102 |
+
$temp_th = array();
|
103 |
+
|
104 |
+
foreach($sub_fields as $sub_field_i => $sub_field)
|
105 |
+
{
|
106 |
+
$temp_th[] = $sub_field['label'];
|
107 |
+
}
|
108 |
+
|
109 |
+
?>
|
110 |
+
<th>
|
111 |
+
<span><?php echo implode(', ', $temp_th); ?></span>
|
112 |
+
</th>
|
113 |
|
|
|
|
|
114 |
<?php endif; ?>
|
115 |
+
|
116 |
+
<?php if($row_limit > 1): ?><th class="remove"></th><?php endif; ?>
|
117 |
</tr>
|
118 |
</thead>
|
119 |
+
|
120 |
<tbody>
|
121 |
<?php foreach($field['value'] as $i => $value):?>
|
122 |
<?php //if(($i+1) > $row_limit){continue;} ?>
|
136 |
<?php if($layout == 'table'): ?>
|
137 |
<td>
|
138 |
<?php else: ?>
|
139 |
+
<div class="row-layout-field">
|
140 |
+
<p class="label">
|
141 |
+
<label><?php echo $sub_field['label']; ?></label>
|
142 |
+
<?php
|
143 |
+
|
144 |
+
if(!isset($sub_field['instructions']))
|
145 |
+
$sub_field['instructions'] = "";
|
146 |
+
|
147 |
+
echo $sub_field['instructions'];
|
148 |
+
|
149 |
+
?>
|
150 |
+
</p>
|
151 |
<?php endif; ?>
|
152 |
|
153 |
<?php
|
164 |
<?php if($layout == 'table'): ?>
|
165 |
</td>
|
166 |
<?php else: ?>
|
167 |
+
</div>
|
168 |
<?php endif; ?>
|
169 |
|
170 |
<?php endforeach; ?>
|
256 |
</div>
|
257 |
|
258 |
<?php foreach($field['sub_fields'] as $key2 => $sub_field): ?>
|
259 |
+
<div class="<?php if($key2 == 999){echo "field_clone";}else{echo "field";} ?> sub_field" data-id="<?php echo $key2; ?>">
|
260 |
|
261 |
<?php if(isset($sub_field['key'])): ?>
|
262 |
<input type="hidden" name="fields[<?php echo $key; ?>][sub_fields][<?php echo $key2; ?>][key]" value="<?php echo $sub_field['key']; ?>" />
|
271 |
</strong>
|
272 |
<div class="row_options">
|
273 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
274 |
+
<span><a title="<?php _e("Read documentation for this field",'acf'); ?>" href="http://www.advancedcustomfields.com/docs/field-types/" target="_blank"><?php _e("Docs",'acf'); ?></a> | </span>
|
275 |
+
<span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
|
276 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a>
|
277 |
</div>
|
278 |
</td>
|
360 |
<?php endforeach; ?>
|
361 |
</div>
|
362 |
<div class="table_footer">
|
363 |
+
<div class="order_message"><?php _e('Drag and drop to reorder','acf'); ?></div>
|
364 |
<a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Sub Field','acf'); ?></a>
|
365 |
</div>
|
366 |
</div>
|
css/acf.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
*--------------------------------------------------------------------------------------------*/
|
6 |
#icon-edit {
|
7 |
-
background: url(../images/
|
8 |
}
|
9 |
|
10 |
#toplevel_page_edit-post_type-acf .wp-menu-image { background: url("../../../../wp-admin/images/menu.png") no-repeat scroll 0 -1px transparent; }
|
4 |
*
|
5 |
*--------------------------------------------------------------------------------------------*/
|
6 |
#icon-edit {
|
7 |
+
background: url(../images/sprite.png) 0 0 no-repeat !important;
|
8 |
}
|
9 |
|
10 |
#toplevel_page_edit-post_type-acf .wp-menu-image { background: url("../../../../wp-admin/images/menu.png") no-repeat scroll 0 -1px transparent; }
|
css/fields.css
CHANGED
@@ -147,7 +147,7 @@ table.widefat.acf td {
|
|
147 |
}
|
148 |
|
149 |
#acf_fields .field.form_open > .field_meta {
|
150 |
-
background: #6e6e6e url(../images/
|
151 |
color: #fff;
|
152 |
text-shadow: #000 0 1px 0;
|
153 |
border: #565656 solid 1px;
|
@@ -176,22 +176,22 @@ table.widefat.acf td {
|
|
176 |
float: left;
|
177 |
margin: 7px 0 0 7px;
|
178 |
text-indent: 0;
|
179 |
-
background: url(../images/
|
180 |
}
|
181 |
|
182 |
#acf_fields .fields .field:nth-child(2n) .field_meta .circle {
|
183 |
-
background-position: 0 -
|
184 |
|
185 |
}
|
186 |
|
187 |
#acf_fields .field.form_open > .field_meta .circle {
|
188 |
-
background-position: 0 -
|
189 |
}
|
190 |
|
191 |
|
192 |
.fields {
|
193 |
position: relative;
|
194 |
-
background: #
|
195 |
box-shadow: inset 0 0 0 1px #DFDFDF;
|
196 |
}
|
197 |
|
@@ -236,9 +236,10 @@ table.widefat.acf td {
|
|
236 |
---------------------------------------------------------------------------------------------*/
|
237 |
.no_fields_message {
|
238 |
padding: 15px 10px;
|
239 |
-
text-shadow: #fff 0 1px 0;
|
240 |
border: #DFDFDF solid 1px;
|
241 |
-
|
|
|
|
|
242 |
}
|
243 |
|
244 |
|
@@ -255,11 +256,17 @@ table.widefat.acf td {
|
|
255 |
}
|
256 |
|
257 |
#acf_fields .table_footer .order_message {
|
258 |
-
background: url(../images/
|
|
|
|
|
|
|
|
|
259 |
width: 161px;
|
260 |
-
height:
|
261 |
float: left;
|
262 |
margin-left: 13px;
|
|
|
|
|
263 |
}
|
264 |
|
265 |
#acf_fields .table_footer a#add_field{
|
147 |
}
|
148 |
|
149 |
#acf_fields .field.form_open > .field_meta {
|
150 |
+
background: #6e6e6e url(../images/sprite.png) 0 -200px repeat-x;
|
151 |
color: #fff;
|
152 |
text-shadow: #000 0 1px 0;
|
153 |
border: #565656 solid 1px;
|
176 |
float: left;
|
177 |
margin: 7px 0 0 7px;
|
178 |
text-indent: 0;
|
179 |
+
background: url(../images/sprite.png) 0 -350px no-repeat;
|
180 |
}
|
181 |
|
182 |
#acf_fields .fields .field:nth-child(2n) .field_meta .circle {
|
183 |
+
background-position: 0 -400px;
|
184 |
|
185 |
}
|
186 |
|
187 |
#acf_fields .field.form_open > .field_meta .circle {
|
188 |
+
background-position: 0 -300px !important;
|
189 |
}
|
190 |
|
191 |
|
192 |
.fields {
|
193 |
position: relative;
|
194 |
+
background: #FCFCFC;
|
195 |
box-shadow: inset 0 0 0 1px #DFDFDF;
|
196 |
}
|
197 |
|
236 |
---------------------------------------------------------------------------------------------*/
|
237 |
.no_fields_message {
|
238 |
padding: 15px 10px;
|
|
|
239 |
border: #DFDFDF solid 1px;
|
240 |
+
|
241 |
+
border: 1px solid #DFDFDF;
|
242 |
+
border-top: 0 none;
|
243 |
}
|
244 |
|
245 |
|
256 |
}
|
257 |
|
258 |
#acf_fields .table_footer .order_message {
|
259 |
+
background: url(../images/sprite.png) -50px -300px no-repeat;
|
260 |
+
color: #7a9bbe;
|
261 |
+
font-size: 11px;
|
262 |
+
line-height: 1em;
|
263 |
+
padding: 7px 0 0 22px;
|
264 |
width: 161px;
|
265 |
+
height: 13px;
|
266 |
float: left;
|
267 |
margin-left: 13px;
|
268 |
+
text-shadow: #fff 0 1px 0;
|
269 |
+
font-family: Comic Sans MS, sans-serif;
|
270 |
}
|
271 |
|
272 |
#acf_fields .table_footer a#add_field{
|
css/input.css
CHANGED
@@ -12,19 +12,39 @@
|
|
12 |
padding: 0;
|
13 |
}
|
14 |
|
|
|
|
|
15 |
#poststuff .acf_postbox .field {
|
16 |
position: relative;
|
17 |
-
padding:
|
18 |
border-top: 1px solid #fff;
|
19 |
border-bottom: #e8e8e8 solid 1px;
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#poststuff .acf_postbox .field.error {
|
23 |
margin: 0;
|
24 |
border: #CC0000 solid 1px !important;
|
25 |
border-radius: 0;
|
26 |
}
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
#poststuff .acf_postbox .field.error + .error {
|
29 |
border-top: 0 none !important;
|
30 |
}
|
@@ -37,17 +57,25 @@
|
|
37 |
color: #CC0000;
|
38 |
}
|
39 |
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
|
44 |
-
#poststuff .acf_postbox label
|
45 |
-
|
46 |
-
|
47 |
-
font-size: 12px;
|
48 |
font-weight: bold;
|
49 |
-
padding:
|
50 |
-
|
|
|
|
|
51 |
}
|
52 |
|
53 |
.field.required label span.required {
|
@@ -59,10 +87,7 @@
|
|
59 |
}
|
60 |
|
61 |
#poststuff .acf_postbox p.instructions {
|
62 |
-
|
63 |
-
margin: -6px 0 10px;
|
64 |
-
padding: 0;
|
65 |
-
color: #999;
|
66 |
}
|
67 |
|
68 |
/* no box style */
|
@@ -76,14 +101,6 @@
|
|
76 |
display: none;
|
77 |
}
|
78 |
|
79 |
-
#poststuff .acf_postbox.no_box .field {
|
80 |
-
border-bottom: 1px solid #F4F4F4;
|
81 |
-
padding: 10px 0;
|
82 |
-
}
|
83 |
-
|
84 |
-
#poststuff .acf_postbox.no_box .field.error {
|
85 |
-
padding: 10px;
|
86 |
-
}
|
87 |
|
88 |
|
89 |
/*---------------------------------------------------------------------------------------------
|
@@ -388,6 +405,19 @@ ul.checkbox_list {
|
|
388 |
display: none;
|
389 |
}
|
390 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
|
392 |
/*---------------------------------------------------------------------------------------------
|
393 |
In Box
|
@@ -539,97 +569,102 @@ ul.checkbox_list {
|
|
539 |
|
540 |
}
|
541 |
|
542 |
-
.acf_flexible_content
|
543 |
-
margin
|
544 |
position: relative;
|
545 |
}
|
546 |
|
547 |
-
.acf_flexible_content
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
.acf_flexible_content > .values > table > tbody > tr:last-child td {
|
556 |
-
border-bottom: 0 none;
|
557 |
-
}
|
558 |
-
|
559 |
-
.acf_flexible_content > .values > table > tbody > tr td:last-child{
|
560 |
-
border-right: 0 none;
|
561 |
-
}
|
562 |
-
|
563 |
-
.acf_flexible_content > .values > table > tbody > tr:nth-child(even) {
|
564 |
-
background: #F9F9F9;
|
565 |
-
}
|
566 |
-
|
567 |
-
.acf_flexible_content > .values > table > tbody > tr:nth-child(odd) {
|
568 |
-
background: #FCFCFC;
|
569 |
-
}
|
570 |
-
|
571 |
-
.acf_flexible_content > .values > table > thead > tr > th {
|
572 |
-
|
573 |
-
border-right: 1px solid #e1e1e1;
|
574 |
}
|
575 |
|
576 |
-
.acf_flexible_content
|
577 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
}
|
579 |
|
580 |
-
.acf_flexible_content
|
|
|
581 |
visibility: visible;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
}
|
583 |
|
584 |
-
.acf_flexible_content
|
|
|
|
|
|
|
585 |
display: block;
|
586 |
-
|
587 |
-
font-size: 12px;
|
588 |
-
font-weight: bold;
|
589 |
-
padding: 20px 0 8px;
|
590 |
-
text-shadow: 0 1px 0 #FFFFFF;
|
591 |
}
|
|
|
|
|
|
|
592 |
|
593 |
-
.acf_flexible_content > .values > table.row_layout > tbody > tr > td > label:first-child {
|
594 |
-
padding-top: 0;
|
595 |
-
}
|
596 |
|
597 |
-
.acf_flexible_content > .values > table > thead > tr > th {
|
598 |
-
width: auto;
|
599 |
-
}
|
600 |
|
601 |
-
|
602 |
-
.acf_flexible_content table tr
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
}
|
609 |
|
610 |
-
.acf_flexible_content table tr td
|
611 |
-
|
612 |
}
|
613 |
|
614 |
-
.acf_flexible_content table tr td
|
615 |
-
|
616 |
-
width: 16px;
|
617 |
-
vertical-align: middle;
|
618 |
}
|
619 |
|
620 |
-
.acf_flexible_content table tr td
|
621 |
-
|
622 |
-
margin: 0;
|
623 |
}
|
624 |
|
625 |
.acf_flexible_content .clones {
|
626 |
display: none;
|
627 |
}
|
628 |
-
|
629 |
|
630 |
-
.acf_flexible_content .
|
631 |
-
|
632 |
-
|
|
|
633 |
}
|
634 |
|
635 |
.acf_popup {
|
@@ -639,7 +674,7 @@ ul.checkbox_list {
|
|
639 |
background: #464646;
|
640 |
border-radius: 5px;
|
641 |
box-shadow: rgba(0,0,0,0.4) 0 0 13px;
|
642 |
-
margin-bottom:
|
643 |
margin-right: -5px;
|
644 |
display: none;
|
645 |
min-width: 135px;
|
@@ -660,7 +695,7 @@ ul.checkbox_list {
|
|
660 |
height: 25px;
|
661 |
right: 17px;
|
662 |
margin: -1px 0 0;
|
663 |
-
background: url(../images/
|
664 |
}
|
665 |
|
666 |
.acf_popup ul {
|
@@ -733,6 +768,9 @@ ul.checkbox_list {
|
|
733 |
border-radius: 4px;
|
734 |
}
|
735 |
|
|
|
|
|
|
|
736 |
|
737 |
/*---------------------------------------------------------------------------------------------
|
738 |
Taxonomy Edit Error
|
12 |
padding: 0;
|
13 |
}
|
14 |
|
15 |
+
|
16 |
+
/* Field */
|
17 |
#poststuff .acf_postbox .field {
|
18 |
position: relative;
|
19 |
+
padding: 15px 10px;
|
20 |
border-top: 1px solid #fff;
|
21 |
border-bottom: #e8e8e8 solid 1px;
|
22 |
}
|
23 |
|
24 |
+
#poststuff .acf_postbox .field:last-child {
|
25 |
+
border-bottom: none;
|
26 |
+
}
|
27 |
+
|
28 |
+
#poststuff .acf_postbox.no_box .field {
|
29 |
+
border-top: 0 none;
|
30 |
+
border-bottom: 0 none;
|
31 |
+
padding: 15px 0;
|
32 |
+
}
|
33 |
+
|
34 |
+
|
35 |
+
/* Field Error */
|
36 |
#poststuff .acf_postbox .field.error {
|
37 |
margin: 0;
|
38 |
border: #CC0000 solid 1px !important;
|
39 |
border-radius: 0;
|
40 |
}
|
41 |
|
42 |
+
#poststuff .acf_postbox.no_box .field.error {
|
43 |
+
padding-left: 10px;
|
44 |
+
padding-right: 10px;
|
45 |
+
}
|
46 |
+
|
47 |
+
|
48 |
#poststuff .acf_postbox .field.error + .error {
|
49 |
border-top: 0 none !important;
|
50 |
}
|
57 |
color: #CC0000;
|
58 |
}
|
59 |
|
60 |
+
|
61 |
+
|
62 |
+
#poststuff .acf_postbox p.label {
|
63 |
+
font-size: 11px;
|
64 |
+
line-height: 1.1em;
|
65 |
+
margin: 0 0 1em;
|
66 |
+
padding: 0;
|
67 |
+
color: #666666;
|
68 |
+
text-shadow: 0 1px 0 #FFFFFF;
|
69 |
}
|
70 |
|
71 |
+
#poststuff .acf_postbox p.label label {
|
72 |
+
color: #333333;
|
73 |
+
font-size: 13px;
|
|
|
74 |
font-weight: bold;
|
75 |
+
padding: 0;
|
76 |
+
margin: 0 5px 0 0;
|
77 |
+
display: inline;
|
78 |
+
vertical-align: text-bottom;
|
79 |
}
|
80 |
|
81 |
.field.required label span.required {
|
87 |
}
|
88 |
|
89 |
#poststuff .acf_postbox p.instructions {
|
90 |
+
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
/* no box style */
|
101 |
display: none;
|
102 |
}
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
|
106 |
/*---------------------------------------------------------------------------------------------
|
405 |
display: none;
|
406 |
}
|
407 |
|
408 |
+
.repeater td .row-layout-field {
|
409 |
+
padding: 30px 0 0;
|
410 |
+
}
|
411 |
+
|
412 |
+
.repeater td .row-layout-field:first-child {
|
413 |
+
padding-top: 10px;
|
414 |
+
}
|
415 |
+
|
416 |
+
|
417 |
+
|
418 |
+
|
419 |
+
|
420 |
+
|
421 |
|
422 |
/*---------------------------------------------------------------------------------------------
|
423 |
In Box
|
569 |
|
570 |
}
|
571 |
|
572 |
+
.acf_flexible_content .layout {
|
573 |
+
margin: 20px 0 30px;
|
574 |
position: relative;
|
575 |
}
|
576 |
|
577 |
+
.acf_flexible_content .layout .layout-label {
|
578 |
+
font-size: 12px;
|
579 |
+
line-height: 1em;
|
580 |
+
font-weight: bold;
|
581 |
+
color: #999999;
|
582 |
+
text-shadow: #fff 0 1px 0;
|
583 |
+
margin: 0 0 0.75em;
|
584 |
+
padding: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
}
|
586 |
|
587 |
+
.acf_flexible_content .layout .actions {
|
588 |
+
position: absolute;
|
589 |
+
top: 7px;
|
590 |
+
right: 5px;
|
591 |
+
float: left;
|
592 |
+
background: #ffffff;
|
593 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea'); /* for IE */
|
594 |
+
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eaeaea)); /* for webkit browsers */
|
595 |
+
background: -moz-linear-gradient(top, #ffffff, #eaeaea); /* for firefox 3.6+ */
|
596 |
+
|
597 |
+
box-shadow: rgba(0,0,0,0.1) 0 1px 3px;
|
598 |
+
border-radius: 3px;
|
599 |
+
border: #d4d4d4 solid 1px;
|
600 |
+
|
601 |
+
z-index: 1;
|
602 |
+
|
603 |
+
visibility: hidden;
|
604 |
+
opacity: 0;
|
605 |
+
|
606 |
+
-webkit-transition: right 0.25s 0s ease-in-out, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
|
607 |
+
-moz-transition: right 0.25s 0s ease-in-out, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
|
608 |
+
-o-transition: right 0.25s 0s ease-in-out, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
|
609 |
+
transition: right 0.25s 0s ease-in-out, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
|
610 |
+
|
611 |
+
|
612 |
}
|
613 |
|
614 |
+
.acf_flexible_content .layout:hover .actions {
|
615 |
+
|
616 |
visibility: visible;
|
617 |
+
opacity: 1;
|
618 |
+
right: 10px;
|
619 |
+
|
620 |
+
-webkit-transition-delay:0s;
|
621 |
+
-moz-transition-delay:0s;
|
622 |
+
-o-transition-delay:0s;
|
623 |
+
transition-delay:0s;
|
624 |
}
|
625 |
|
626 |
+
.acf_flexible_content .layout .actions .order,
|
627 |
+
.acf_flexible_content .layout .actions .delete {
|
628 |
+
width: 30px;
|
629 |
+
height: 25px;
|
630 |
display: block;
|
631 |
+
background: url(../images/sprite.png) 0px -100px no-repeat;
|
|
|
|
|
|
|
|
|
632 |
}
|
633 |
+
.acf_flexible_content .layout .actions .order:hover { background-position: 0px -150px; }
|
634 |
+
.acf_flexible_content .layout .actions .delete { background-position: -50px -100px; }
|
635 |
+
.acf_flexible_content .layout .actions .delete:hover { background-position: -50px -150px; }
|
636 |
|
|
|
|
|
|
|
637 |
|
|
|
|
|
|
|
638 |
|
639 |
+
|
640 |
+
.acf_flexible_content table.widefat > tbody > tr > td {
|
641 |
+
padding: 15px 10px;
|
642 |
+
position: relative;
|
643 |
+
|
644 |
+
border-left: #fff solid 1px;
|
645 |
+
border-right: #DFDFDF solid 1px;
|
646 |
}
|
647 |
|
648 |
+
.acf_flexible_content table.widefat > tbody > tr:first-child > td {
|
649 |
+
|
650 |
}
|
651 |
|
652 |
+
.acf_flexible_content table.widefat > tbody > tr:last-child > td {
|
653 |
+
border-bottom: 0 none;
|
|
|
|
|
654 |
}
|
655 |
|
656 |
+
.acf_flexible_content table.widefat > tbody > tr > td:last-child {
|
657 |
+
border-right: 0 none;
|
|
|
658 |
}
|
659 |
|
660 |
.acf_flexible_content .clones {
|
661 |
display: none;
|
662 |
}
|
|
|
663 |
|
664 |
+
.acf_flexible_content .ui-sortable-placeholder {
|
665 |
+
visibility: visible !important;
|
666 |
+
border: #DFDFDF dashed 2px;
|
667 |
+
border-radius: 3px;
|
668 |
}
|
669 |
|
670 |
.acf_popup {
|
674 |
background: #464646;
|
675 |
border-radius: 5px;
|
676 |
box-shadow: rgba(0,0,0,0.4) 0 0 13px;
|
677 |
+
margin-bottom: 45px;
|
678 |
margin-right: -5px;
|
679 |
display: none;
|
680 |
min-width: 135px;
|
695 |
height: 25px;
|
696 |
right: 17px;
|
697 |
margin: -1px 0 0;
|
698 |
+
background: url(../images/sprite.png) 0 -50px no-repeat;
|
699 |
}
|
700 |
|
701 |
.acf_popup ul {
|
768 |
border-radius: 4px;
|
769 |
}
|
770 |
|
771 |
+
.acf_flexible_content .table_footer {
|
772 |
+
margin: 20px 0;
|
773 |
+
}
|
774 |
|
775 |
/*---------------------------------------------------------------------------------------------
|
776 |
Taxonomy Edit Error
|
images/acf-icon-32.png
DELETED
Binary file
|
images/backgrounds.png
DELETED
Binary file
|
images/drag_and_drop_to_reorder.png
DELETED
Binary file
|
images/loading.gif
DELETED
Binary file
|
images/loading_old.gif
DELETED
Binary file
|
images/popup-bit.png
DELETED
Binary file
|
images/sprite.png
ADDED
Binary file
|
js/fields.js
CHANGED
@@ -108,43 +108,35 @@
|
|
108 |
*
|
109 |
*---------------------------------------------------------------------*/
|
110 |
|
111 |
-
$.fn.update_names = function(
|
112 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
-
|
115 |
-
|
116 |
{
|
117 |
|
118 |
var name = $(this).attr('name');
|
119 |
var id = $(this).attr('id');
|
120 |
|
121 |
-
if(name && name.indexOf(
|
122 |
{
|
123 |
-
name = name.replace('
|
124 |
}
|
125 |
-
if(id && id.indexOf(
|
126 |
{
|
127 |
-
id = id.replace('
|
128 |
-
}
|
129 |
-
|
130 |
-
if($(this).closest('.sub_field').hasClass('field_clone'))
|
131 |
-
{
|
132 |
-
// dont change this input (its the clone sub field!)
|
133 |
-
}
|
134 |
-
else
|
135 |
-
{
|
136 |
-
if(name && name.indexOf("[sub_fields][999]") != -1)
|
137 |
-
{
|
138 |
-
name = name.replace('[sub_fields][999]','[sub_fields]['+new_sub_no+']');
|
139 |
-
}
|
140 |
-
if(id && id.indexOf("[sub_fields][999]") != -1)
|
141 |
-
{
|
142 |
-
id = id.replace('[sub_fields][999]','[sub_fields]['+new_sub_no+']');
|
143 |
-
}
|
144 |
}
|
145 |
|
146 |
$(this).attr('name', name);
|
147 |
$(this).attr('id', id);
|
|
|
148 |
});
|
149 |
}
|
150 |
|
@@ -224,8 +216,36 @@
|
|
224 |
});
|
225 |
|
226 |
|
227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
|
|
|
229 |
|
230 |
// Add Field Button
|
231 |
$('#acf_fields #add_field').live('click',function(){
|
@@ -245,17 +265,17 @@
|
|
245 |
|
246 |
// it is a sub field
|
247 |
//console.log(fields.parents('.fields').last());
|
248 |
-
var field_length = fields.parents('.fields').last().children('.field').length;
|
249 |
-
var sub_field_length = fields.children('.field').length;
|
250 |
//alert(sub_field_length);
|
251 |
//alert('update numbers for sub field! field:'+field_length+', sub:'+sub_field_length);
|
252 |
|
253 |
-
new_field.update_names(
|
254 |
}
|
255 |
else
|
256 |
{
|
257 |
-
var field_length = fields.children('.field').length;
|
258 |
-
new_field.update_names(
|
259 |
|
260 |
//alert('update numbers for field! field:'+field_length);
|
261 |
}
|
@@ -290,6 +310,7 @@
|
|
290 |
});
|
291 |
|
292 |
|
|
|
293 |
// Auto complete field name
|
294 |
$('#acf_fields tr.field_label input.label').live('blur', function()
|
295 |
{
|
108 |
*
|
109 |
*---------------------------------------------------------------------*/
|
110 |
|
111 |
+
$.fn.update_names = function()
|
112 |
{
|
113 |
+
var field = $(this);
|
114 |
+
var old_id = field.attr('data-id');
|
115 |
+
var new_id = uniqid();
|
116 |
+
|
117 |
+
|
118 |
+
// give field a new id
|
119 |
+
field.attr('data-id', new_id);
|
120 |
|
121 |
+
|
122 |
+
field.find('[name]').each(function()
|
123 |
{
|
124 |
|
125 |
var name = $(this).attr('name');
|
126 |
var id = $(this).attr('id');
|
127 |
|
128 |
+
if(name && name.indexOf('[' + old_id + ']') != -1)
|
129 |
{
|
130 |
+
name = name.replace('[' + old_id + ']','[' + new_id + ']');
|
131 |
}
|
132 |
+
if(id && id.indexOf('[' + old_id + ']') != -1)
|
133 |
{
|
134 |
+
id = id.replace('[' + old_id + ']','[' + new_id + ']');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
}
|
136 |
|
137 |
$(this).attr('name', name);
|
138 |
$(this).attr('id', id);
|
139 |
+
|
140 |
});
|
141 |
}
|
142 |
|
216 |
});
|
217 |
|
218 |
|
219 |
+
// add delete button functionality
|
220 |
+
$('#acf_fields a.acf_duplicate_field').live('click', function(){
|
221 |
+
|
222 |
+
|
223 |
+
// vars
|
224 |
+
var field = $(this).closest('.field');
|
225 |
+
var orig_type = field.find('tr.field_type select').val();
|
226 |
+
var new_field = field.clone();
|
227 |
+
|
228 |
+
|
229 |
+
// update names
|
230 |
+
new_field.children('input[type="hidden"]').remove();
|
231 |
+
new_field.update_names();
|
232 |
+
|
233 |
+
|
234 |
+
// add new field
|
235 |
+
field.after( new_field );
|
236 |
+
|
237 |
+
|
238 |
+
// open up form
|
239 |
+
new_field.find('a.acf_edit_field').first().trigger('click');
|
240 |
+
new_field.find('tr.field_type select').val( orig_type ).trigger('change');
|
241 |
+
|
242 |
+
|
243 |
+
// update order numbers
|
244 |
+
update_order_numbers();
|
245 |
+
|
246 |
+
});
|
247 |
|
248 |
+
|
249 |
|
250 |
// Add Field Button
|
251 |
$('#acf_fields #add_field').live('click',function(){
|
265 |
|
266 |
// it is a sub field
|
267 |
//console.log(fields.parents('.fields').last());
|
268 |
+
//var field_length = fields.parents('.fields').last().children('.field').length;
|
269 |
+
//var sub_field_length = fields.children('.field').length;
|
270 |
//alert(sub_field_length);
|
271 |
//alert('update numbers for sub field! field:'+field_length+', sub:'+sub_field_length);
|
272 |
|
273 |
+
new_field.update_names();
|
274 |
}
|
275 |
else
|
276 |
{
|
277 |
+
//var field_length = fields.children('.field').length;
|
278 |
+
new_field.update_names();
|
279 |
|
280 |
//alert('update numbers for field! field:'+field_length);
|
281 |
}
|
310 |
});
|
311 |
|
312 |
|
313 |
+
|
314 |
// Auto complete field name
|
315 |
$('#acf_fields tr.field_label input.label').live('blur', function()
|
316 |
{
|
js/input-actions.js
CHANGED
@@ -28,6 +28,47 @@ var acf = {
|
|
28 |
};
|
29 |
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
/*
|
32 |
* Submit form
|
33 |
*
|
@@ -705,63 +746,65 @@ var acf = {
|
|
705 |
* @created: 3/03/2011
|
706 |
*/
|
707 |
|
708 |
-
// update order numbers
|
709 |
-
function update_fc_order_numbers(div)
|
710 |
-
{
|
711 |
-
div.children('.values').children('table').each(function(i){
|
712 |
-
$(this).children('tbody').children('tr').children('td.order').html(i+1);
|
713 |
-
});
|
714 |
-
|
715 |
-
}
|
716 |
-
|
717 |
|
718 |
// make sortable
|
719 |
function make_fc_sortable(div){
|
720 |
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
|
|
|
|
|
|
|
|
|
|
728 |
});
|
729 |
}
|
730 |
|
731 |
|
732 |
// add row
|
733 |
-
$('.acf_flexible_content #fc_add_row').live('
|
734 |
-
|
735 |
-
|
736 |
-
{
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
|
|
|
|
|
|
|
|
745 |
});
|
746 |
|
747 |
|
748 |
// remove row
|
749 |
-
$('.acf_flexible_content
|
750 |
|
751 |
-
var div = $(this).closest('.acf_flexible_content');
|
752 |
-
var table = $(this).closest('table');
|
753 |
-
var temp = $('<div style="height:' + table.height() + 'px"></div>');
|
754 |
|
755 |
-
|
756 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
757 |
|
758 |
temp.animate({'height' : 0 }, 250, function(){
|
759 |
temp.remove();
|
760 |
});
|
761 |
-
|
762 |
-
update_fc_order_numbers(div);
|
763 |
|
764 |
-
if(!div.children('.values').children('
|
765 |
{
|
766 |
div.children('.no_value_message').show();
|
767 |
}
|
@@ -784,7 +827,7 @@ var acf = {
|
|
784 |
div.children('.clones').acf_deactivate_wysiwyg();
|
785 |
|
786 |
// create new field
|
787 |
-
var new_field = div.children('.clones').children('
|
788 |
|
789 |
// update names
|
790 |
var new_id = uniqid();
|
@@ -804,13 +847,6 @@ var acf = {
|
|
804 |
|
805 |
// activate wysiwyg
|
806 |
$(document).trigger('acf/setup_fields',new_field);
|
807 |
-
//new_field.acf_activate_wysiwyg();
|
808 |
-
|
809 |
-
update_fc_order_numbers(div);
|
810 |
-
|
811 |
-
// hide acf popup
|
812 |
-
$(this).closest('.table_footer').find('#fc_add_row').removeClass('active');
|
813 |
-
$(this).closest('.acf_popup').hide();
|
814 |
|
815 |
// validation
|
816 |
div.closest('.field').removeClass('error');
|
28 |
};
|
29 |
|
30 |
|
31 |
+
/*
|
32 |
+
* Document Ready
|
33 |
+
*
|
34 |
+
* @description: adds ajax data
|
35 |
+
* @created: 1/03/2011
|
36 |
+
*/
|
37 |
+
|
38 |
+
$(document).ready(function(){
|
39 |
+
|
40 |
+
// add classes
|
41 |
+
$('#poststuff .postbox[id*="acf_"]').addClass('acf_postbox');
|
42 |
+
$('#adv-settings label[for*="acf_"]').addClass('acf_hide_label');
|
43 |
+
|
44 |
+
// hide acf stuff
|
45 |
+
$('#poststuff .acf_postbox').hide();
|
46 |
+
$('#adv-settings .acf_hide_label').hide();
|
47 |
+
|
48 |
+
// loop through acf metaboxes
|
49 |
+
$('#poststuff .postbox.acf_postbox').each(function(){
|
50 |
+
|
51 |
+
// vars
|
52 |
+
var options = $(this).find('.inside > .options');
|
53 |
+
var show = options.attr('data-show');
|
54 |
+
var layout = options.attr('data-layout');
|
55 |
+
var id = $(this).attr('id').replace('acf_', '');
|
56 |
+
|
57 |
+
// layout
|
58 |
+
$(this).addClass(layout);
|
59 |
+
|
60 |
+
// show / hide
|
61 |
+
if(show == 'true')
|
62 |
+
{
|
63 |
+
$(this).show();
|
64 |
+
$('#adv-settings .acf_hide_label[for="acf_' + id + '-hide"]').show();
|
65 |
+
}
|
66 |
+
|
67 |
+
});
|
68 |
+
|
69 |
+
});
|
70 |
+
|
71 |
+
|
72 |
/*
|
73 |
* Submit form
|
74 |
*
|
746 |
* @created: 3/03/2011
|
747 |
*/
|
748 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
|
750 |
// make sortable
|
751 |
function make_fc_sortable(div){
|
752 |
|
753 |
+
// only apply once
|
754 |
+
if( div.children('.values').hasClass('ui-sortable') )
|
755 |
+
{
|
756 |
+
return false;
|
757 |
+
}
|
758 |
+
|
759 |
+
|
760 |
+
// add sortable
|
761 |
+
div.children('.values').sortable({
|
762 |
+
items : '> .layout',
|
763 |
+
handle: '> .actions .order',
|
764 |
+
//axis: "y" // limit the dragging to up/down only
|
765 |
});
|
766 |
}
|
767 |
|
768 |
|
769 |
// add row
|
770 |
+
$('.acf_flexible_content #fc_add_row').live('focus', function(){
|
771 |
+
|
772 |
+
$(this).addClass('active');
|
773 |
+
$(this).closest('.table_footer').find('.acf_popup').css({display : 'block', opacity : 0, bottom : '15px'}).animate({ opacity : 1, bottom : '25px' }, 250);
|
774 |
+
|
775 |
+
});
|
776 |
+
|
777 |
+
|
778 |
+
// add row
|
779 |
+
$('.acf_flexible_content #fc_add_row').live('blur', function(){
|
780 |
+
|
781 |
+
$(this).removeClass('active');
|
782 |
+
$(this).closest('.table_footer').find('.acf_popup').animate({ opacity : 0, bottom : '35px' }, 250, function(){
|
783 |
+
$(this).css({ display : 'none' });
|
784 |
+
});
|
785 |
+
|
786 |
});
|
787 |
|
788 |
|
789 |
// remove row
|
790 |
+
$('.acf_flexible_content .actions .delete').live('click', function(){
|
791 |
|
|
|
|
|
|
|
792 |
|
793 |
+
// elements
|
794 |
+
var layout = $(this).closest('.layout');
|
795 |
+
var div = layout.closest('.acf_flexible_content');
|
796 |
+
var temp = $('<div style="height:' + layout.height() + 'px"></div>');
|
797 |
+
|
798 |
+
|
799 |
+
// animate away layout
|
800 |
+
layout.animate({'left' : '50px', 'opacity' : 0}, 250, function(){
|
801 |
+
layout.before(temp).remove();
|
802 |
|
803 |
temp.animate({'height' : 0 }, 250, function(){
|
804 |
temp.remove();
|
805 |
});
|
|
|
|
|
806 |
|
807 |
+
if(!div.children('.values').children('.layout').exists())
|
808 |
{
|
809 |
div.children('.no_value_message').show();
|
810 |
}
|
827 |
div.children('.clones').acf_deactivate_wysiwyg();
|
828 |
|
829 |
// create new field
|
830 |
+
var new_field = div.children('.clones').children('.layout[data-layout="' + layout + '"]').clone(false);
|
831 |
|
832 |
// update names
|
833 |
var new_id = uniqid();
|
847 |
|
848 |
// activate wysiwyg
|
849 |
$(document).trigger('acf/setup_fields',new_field);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
|
851 |
// validation
|
852 |
div.closest('.field').removeClass('error');
|
js/input-ajax.js
CHANGED
@@ -44,36 +44,6 @@
|
|
44 |
post_format : false,
|
45 |
taxonomy : false
|
46 |
};
|
47 |
-
|
48 |
-
|
49 |
-
// add classes
|
50 |
-
$('#poststuff .postbox[id*="acf_"]').addClass('acf_postbox');
|
51 |
-
$('#adv-settings label[for*="acf_"]').addClass('acf_hide_label');
|
52 |
-
|
53 |
-
// hide acf stuff
|
54 |
-
$('#poststuff .acf_postbox').hide();
|
55 |
-
$('#adv-settings .acf_hide_label').hide();
|
56 |
-
|
57 |
-
// loop through acf metaboxes
|
58 |
-
$('#poststuff .postbox.acf_postbox').each(function(){
|
59 |
-
|
60 |
-
// vars
|
61 |
-
var options = $(this).find('.inside > .options');
|
62 |
-
var show = options.attr('data-show');
|
63 |
-
var layout = options.attr('data-layout');
|
64 |
-
var id = $(this).attr('id').replace('acf_', '');
|
65 |
-
|
66 |
-
// layout
|
67 |
-
$(this).addClass(layout);
|
68 |
-
|
69 |
-
// show / hide
|
70 |
-
if(show == 'true')
|
71 |
-
{
|
72 |
-
$(this).show();
|
73 |
-
$('#adv-settings .acf_hide_label[for="acf_' + id + '-hide"]').show();
|
74 |
-
}
|
75 |
-
|
76 |
-
});
|
77 |
|
78 |
});
|
79 |
|
44 |
post_format : false,
|
45 |
taxonomy : false
|
46 |
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
});
|
49 |
|
lang/acf-es_ES.mo
ADDED
Binary file
|
lang/acf-es_ES.po
ADDED
@@ -0,0 +1,708 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 3.1.2\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2012-02-12 02:40:44+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: 2012-02-14 17:00+0100\n"
|
12 |
+
"Last-Translator: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
13 |
+
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
14 |
+
"X-Poedit-Language: Spanish\n"
|
15 |
+
"X-Poedit-Country: SPAIN\n"
|
16 |
+
|
17 |
+
#: acf.php:206
|
18 |
+
msgid "Custom Fields"
|
19 |
+
msgstr "Custom Fields"
|
20 |
+
|
21 |
+
#: acf.php:207
|
22 |
+
msgid "Settings"
|
23 |
+
msgstr "Ajustes"
|
24 |
+
|
25 |
+
#: acf.php:208
|
26 |
+
msgid "Upgrade"
|
27 |
+
msgstr "Actualizar"
|
28 |
+
|
29 |
+
#: acf.php:394
|
30 |
+
msgid "Validation Failed. One or more fields below are required."
|
31 |
+
msgstr "Fallo en la validación. Uno o más campos son requeridos."
|
32 |
+
|
33 |
+
#: acf.php:733
|
34 |
+
msgid "Error: Field Type does not exist!"
|
35 |
+
msgstr "Error: El tipo de campo no existe!"
|
36 |
+
|
37 |
+
#: core/actions/export.php:19
|
38 |
+
msgid "No ACF groups selected"
|
39 |
+
msgstr "No hay grupos de ACF seleccionados"
|
40 |
+
|
41 |
+
#: core/actions/init.php:107
|
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 |
+
|
55 |
+
#: core/actions/init.php:110
|
56 |
+
msgid "Add New Field Group"
|
57 |
+
msgstr "Añadir nuevo Field Group"
|
58 |
+
|
59 |
+
#: core/actions/init.php:111
|
60 |
+
msgid "Edit Field Group"
|
61 |
+
msgstr "Editar Field Group"
|
62 |
+
|
63 |
+
#: core/actions/init.php:112
|
64 |
+
msgid "New Field Group"
|
65 |
+
msgstr "Nuevo Field Group"
|
66 |
+
|
67 |
+
#: core/actions/init.php:113
|
68 |
+
msgid "View Field Group"
|
69 |
+
msgstr "Ver Field Groups"
|
70 |
+
|
71 |
+
#: core/actions/init.php:114
|
72 |
+
msgid "Search Field Groups"
|
73 |
+
msgstr "Buscar Field Groups"
|
74 |
+
|
75 |
+
#: core/actions/init.php:115
|
76 |
+
msgid "No Field Groups found"
|
77 |
+
msgstr "No se han encontrado Field Groups"
|
78 |
+
|
79 |
+
#: core/actions/init.php:116
|
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/admin/meta_box_fields.php:78
|
97 |
+
#: core/fields/flexible_content.php:269
|
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/admin/meta_box_fields.php:94
|
106 |
+
#: core/fields/flexible_content.php:270
|
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/meta_box_fields.php:109
|
115 |
+
#: core/admin/page_settings.php:44
|
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 "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
125 |
+
msgstr "No hay campos. Haz Click en el botón <strong>+ Añadir campo</strong> para crear tu primer campo."
|
126 |
+
|
127 |
+
#: core/admin/meta_box_fields.php:61
|
128 |
+
msgid "Edit"
|
129 |
+
msgstr "Editar"
|
130 |
+
|
131 |
+
#: core/admin/meta_box_fields.php:62
|
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."
|
151 |
+
|
152 |
+
#: core/admin/meta_box_fields.php:122
|
153 |
+
msgid "Field Instructions"
|
154 |
+
msgstr "Instrucciones del campo"
|
155 |
+
|
156 |
+
#: core/admin/meta_box_fields.php:123
|
157 |
+
msgid "Instructions for authors. Shown when submitting data"
|
158 |
+
msgstr "Instrucciones para los autores. Se muestra a la hora de introducir los datos."
|
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"
|
193 |
+
|
194 |
+
#: core/admin/meta_box_location.php:25
|
195 |
+
msgid "Rules"
|
196 |
+
msgstr "Reglas"
|
197 |
+
|
198 |
+
#: core/admin/meta_box_location.php:26
|
199 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
200 |
+
msgstr "Crear un conjunto de reglas para determinar qué pantallas de edición utilizarán estos custom fields"
|
201 |
+
|
202 |
+
#: core/admin/meta_box_location.php:305
|
203 |
+
msgid "match"
|
204 |
+
msgstr "coincide"
|
205 |
+
|
206 |
+
#: core/admin/meta_box_location.php:313
|
207 |
+
msgid "of the above"
|
208 |
+
msgstr "de los superiores"
|
209 |
+
|
210 |
+
#: core/admin/meta_box_options.php:13
|
211 |
+
msgid "Order No."
|
212 |
+
msgstr "Número de orden"
|
213 |
+
|
214 |
+
#: core/admin/meta_box_options.php:14
|
215 |
+
msgid "Field groups are created in order <br />from lowest to highest."
|
216 |
+
msgstr "Los Field Groups son creados en orden <br /> de menor a mayor."
|
217 |
+
|
218 |
+
#: core/admin/meta_box_options.php:30
|
219 |
+
msgid "Position"
|
220 |
+
msgstr "Posición"
|
221 |
+
|
222 |
+
#: core/admin/meta_box_options.php:50
|
223 |
+
msgid "Style"
|
224 |
+
msgstr "Estilo"
|
225 |
+
|
226 |
+
#: core/admin/meta_box_options.php:70
|
227 |
+
msgid "Show on page"
|
228 |
+
msgstr "Mostrar en página"
|
229 |
+
|
230 |
+
#: core/admin/meta_box_options.php:71
|
231 |
+
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 "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."
|
236 |
+
msgstr "Si aparecen multiples grupos de ACF en una página de edición, se usarán las opciones del primer grupo. Se considera primer grupo de ACF al que cuenta con el número de orden más bajo."
|
237 |
+
|
238 |
+
#: core/admin/page_acf.php:16
|
239 |
+
msgid "Changelog"
|
240 |
+
msgstr "Changelog"
|
241 |
+
|
242 |
+
#: core/admin/page_acf.php:17
|
243 |
+
msgid "See what's new in"
|
244 |
+
msgstr "Que hay de nuevo en la"
|
245 |
+
|
246 |
+
#: core/admin/page_acf.php:19
|
247 |
+
msgid "Resources"
|
248 |
+
msgstr "Recursos"
|
249 |
+
|
250 |
+
#: core/admin/page_acf.php:20
|
251 |
+
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
252 |
+
msgstr "Lee la documentación, aprende sobre las funciones y encuentra algunos trucos y consejos para tu siguiente proyecto web."
|
253 |
+
|
254 |
+
#: core/admin/page_acf.php:21
|
255 |
+
msgid "View the ACF website"
|
256 |
+
msgstr "Ver la web de ACF"
|
257 |
+
|
258 |
+
#: core/admin/page_acf.php:26
|
259 |
+
msgid "Created by"
|
260 |
+
msgstr "Creado por"
|
261 |
+
|
262 |
+
#: core/admin/page_acf.php:29
|
263 |
+
msgid "Vote"
|
264 |
+
msgstr "Vota"
|
265 |
+
|
266 |
+
#: core/admin/page_acf.php:30
|
267 |
+
msgid "Follow"
|
268 |
+
msgstr "Sígueme"
|
269 |
+
|
270 |
+
#: core/admin/page_settings.php:23
|
271 |
+
msgid "Advanced Custom Fields Settings"
|
272 |
+
msgstr "Ajustes de Advanced Custom Fields"
|
273 |
+
|
274 |
+
#: core/admin/page_settings.php:40
|
275 |
+
msgid "Activate Add-ons."
|
276 |
+
msgstr "Activar Add-ons."
|
277 |
+
|
278 |
+
#: core/admin/page_settings.php:45
|
279 |
+
msgid "Status"
|
280 |
+
msgstr "Estado"
|
281 |
+
|
282 |
+
#: core/admin/page_settings.php:46
|
283 |
+
msgid "Activation Code"
|
284 |
+
msgstr "Código de activación"
|
285 |
+
|
286 |
+
#: core/admin/page_settings.php:52
|
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"
|
301 |
+
|
302 |
+
#: core/admin/page_settings.php:72
|
303 |
+
msgid "Flexible Content Field"
|
304 |
+
msgstr "Flexible Content Field"
|
305 |
+
|
306 |
+
#: core/admin/page_settings.php:92
|
307 |
+
msgid "Options Page"
|
308 |
+
msgstr "Página de Opciones"
|
309 |
+
|
310 |
+
#: core/admin/page_settings.php:115
|
311 |
+
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
312 |
+
msgstr "Las Add-ons pueden desbloquearse comprando una clave de licencia. Cada clave puede usarse en multiple sites."
|
313 |
+
|
314 |
+
#: core/admin/page_settings.php:115
|
315 |
+
msgid "Find Add-ons"
|
316 |
+
msgstr "Buscar Add-ons"
|
317 |
+
|
318 |
+
#: core/admin/page_settings.php:133
|
319 |
+
msgid "Export Field Groups to XML"
|
320 |
+
msgstr "Exportar Field Groups a XML"
|
321 |
+
|
322 |
+
#: core/admin/page_settings.php:166
|
323 |
+
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
324 |
+
msgstr "ACF creará un archivo .xml que es compatible con el plugin de importación nativo de WP."
|
325 |
+
|
326 |
+
#: core/admin/page_settings.php:169
|
327 |
+
msgid "Export XML"
|
328 |
+
msgstr "Exportar XML"
|
329 |
+
|
330 |
+
#: core/admin/page_settings.php:175
|
331 |
+
msgid "Import Field Groups"
|
332 |
+
msgstr "Importar Field Group"
|
333 |
+
|
334 |
+
#: core/admin/page_settings.php:177
|
335 |
+
msgid "Navigate to the"
|
336 |
+
msgstr "Navegar a"
|
337 |
+
|
338 |
+
#: core/admin/page_settings.php:177
|
339 |
+
msgid "Import Tool"
|
340 |
+
msgstr "Utilidad de importación"
|
341 |
+
|
342 |
+
#: core/admin/page_settings.php:177
|
343 |
+
msgid "and select WordPress"
|
344 |
+
msgstr "y selecciona WordPress"
|
345 |
+
|
346 |
+
#: core/admin/page_settings.php:178
|
347 |
+
msgid "Install WP import plugin if prompted"
|
348 |
+
msgstr "Instalar el plugin de importación de WP si se pide"
|
349 |
+
|
350 |
+
#: core/admin/page_settings.php:179
|
351 |
+
msgid "Upload and import your exported .xml file"
|
352 |
+
msgstr "Subir e importar tu archivo .xml exportado"
|
353 |
+
|
354 |
+
#: core/admin/page_settings.php:180
|
355 |
+
msgid "Select your user and ignore Import Attachments"
|
356 |
+
msgstr "Selecciona tu usuario e ignora Import Attachments"
|
357 |
+
|
358 |
+
#: core/admin/page_settings.php:181
|
359 |
+
msgid "That's it! Happy WordPressing"
|
360 |
+
msgstr "¡Eso es todo! Feliz WordPressing"
|
361 |
+
|
362 |
+
#: core/admin/page_settings.php:200
|
363 |
+
msgid "Export Field Groups to PHP"
|
364 |
+
msgstr "Exportar Field Groups a PHP"
|
365 |
+
|
366 |
+
#: core/admin/page_settings.php:233
|
367 |
+
msgid "ACF will create the PHP code to include in your theme"
|
368 |
+
msgstr "ACF creará el código PHP para incluir en tu tema"
|
369 |
+
|
370 |
+
#: core/admin/page_settings.php:236
|
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 "Para activar cualquier Add-on, edita y usa el código en las primeras pocas lineas."
|
393 |
+
|
394 |
+
#: core/admin/page_settings.php:267
|
395 |
+
msgid "Back to settings"
|
396 |
+
msgstr "Volver a los ajustes"
|
397 |
+
|
398 |
+
#: core/admin/page_settings.php:295
|
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 theme. \n"
|
403 |
+
" * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
|
404 |
+
" * Use the commented out code to update the database with your activation code. \n"
|
405 |
+
" * You may place this code inside an IF statement that only runs on theme activation.\n"
|
406 |
+
" */"
|
407 |
+
msgstr ""
|
408 |
+
"/**\n"
|
409 |
+
" * Activar Add-ons\n"
|
410 |
+
" * Aquí puedes introducir tus códigos de activación para desbloquear Add-ons y utilizarlos en tu tema. \n"
|
411 |
+
" * Ya que todos los códigos de activación tiene licencia multi-site, se te permite incluir tu clave en temas premium. \n"
|
412 |
+
" * Utiliza el código comentado para actualizar la base de datos con tu código de activación. \n"
|
413 |
+
" * Puedes colocar este código dentro de una instrucción IF para que sólo funcione en la activación del tema.\n"
|
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 relevant data to register a field group\n"
|
421 |
+
" * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
|
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 pertinentes para registrar un Field Group\n"
|
428 |
+
" * Puedes editar el array como mejor te parezca. Sin embargo, esto puede dar lugar a errores si la matriz no es compatible con ACF\n"
|
429 |
+
" * Este código debe ejecutarse cada vez que se lee el archivo functions.php\n"
|
430 |
+
" */"
|
431 |
+
|
432 |
+
#: core/admin/page_settings.php:335
|
433 |
+
msgid "No field groups were selected"
|
434 |
+
msgstr "No hay ningún Field Group seleccionado"
|
435 |
+
|
436 |
+
#: core/fields/checkbox.php:21
|
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"
|
457 |
+
"\t\t\t\t<br />\n"
|
458 |
+
"\t\t\t\tRed<br />\n"
|
459 |
+
"\t\t\t\tBlue<br />\n"
|
460 |
+
"\t\t\t\t<br />\n"
|
461 |
+
"\t\t\t\tor<br />\n"
|
462 |
+
"\t\t\t\t<br />\n"
|
463 |
+
"\t\t\t\tred : Red<br />\n"
|
464 |
+
"\t\t\t\tblue : Blue"
|
465 |
+
msgstr ""
|
466 |
+
"Introduce tus opciones, una por línea<br />\n"
|
467 |
+
"\t\t\t\t<br />\n"
|
468 |
+
"\t\t\t\tRojo<br />\n"
|
469 |
+
"\t\t\t\tAzul<br />\n"
|
470 |
+
"\t\t\t\t<br />\n"
|
471 |
+
"\t\t\t\to<br />\n"
|
472 |
+
"\t\t\t\t<br />\n"
|
473 |
+
"\t\t\t\tred : Rojo<br />\n"
|
474 |
+
"\t\t\t\tblue : Azul"
|
475 |
+
|
476 |
+
#: core/fields/color_picker.php:21
|
477 |
+
msgid "Color Picker"
|
478 |
+
msgstr "Selector de color"
|
479 |
+
|
480 |
+
#: core/fields/date_picker/date_picker.php:21
|
481 |
+
msgid "Date Picker"
|
482 |
+
msgstr "Selector de Fecha"
|
483 |
+
|
484 |
+
#: core/fields/date_picker/date_picker.php:120
|
485 |
+
msgid "Date format"
|
486 |
+
msgstr "Formato de Fecha"
|
487 |
+
|
488 |
+
#: core/fields/date_picker/date_picker.php:121
|
489 |
+
msgid "eg. dd/mm/yy. read more about"
|
490 |
+
msgstr "ej. dd/mm/yy. leer más sobre"
|
491 |
+
|
492 |
+
#: core/fields/file.php:20
|
493 |
+
msgid "File"
|
494 |
+
msgstr "Archivo"
|
495 |
+
|
496 |
+
#: core/fields/file.php:148
|
497 |
+
msgid "Remove File"
|
498 |
+
msgstr "Eliminar Archivo"
|
499 |
+
|
500 |
+
#: core/fields/file.php:150
|
501 |
+
msgid "No File selected"
|
502 |
+
msgstr "No hay ningún archivo seleccionado"
|
503 |
+
|
504 |
+
#: core/fields/file.php:150
|
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 |
+
|
513 |
+
#: core/fields/file.php:242
|
514 |
+
msgid "Select File"
|
515 |
+
msgstr "Seleccionar archivo"
|
516 |
+
|
517 |
+
#: core/fields/flexible_content.php:21
|
518 |
+
msgid "Flexible Content"
|
519 |
+
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 "Haz click sobre el botón \"añadir fila\" para empezar a crear tu Layout"
|
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"
|
535 |
+
|
536 |
+
#: core/fields/flexible_content.php:218
|
537 |
+
msgid "Reorder"
|
538 |
+
msgstr "Reordenar"
|
539 |
+
|
540 |
+
#: core/fields/flexible_content.php:230
|
541 |
+
msgid "Label"
|
542 |
+
msgstr "Label"
|
543 |
+
|
544 |
+
#: core/fields/flexible_content.php:240
|
545 |
+
msgid "Name"
|
546 |
+
msgstr "Nombre"
|
547 |
+
|
548 |
+
#: core/fields/flexible_content.php:250
|
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 "No hay campos. Haz click en el botón \"+ Añadir Campo\" para crear tu primer campo."
|
556 |
+
|
557 |
+
#: core/fields/image.php:21
|
558 |
+
msgid "Image"
|
559 |
+
msgstr "Imagen"
|
560 |
+
|
561 |
+
#: core/fields/image.php:155
|
562 |
+
msgid "No image selected"
|
563 |
+
msgstr "No hay ninguna imagen seleccionada"
|
564 |
+
|
565 |
+
#: core/fields/image.php:155
|
566 |
+
msgid "Add Image"
|
567 |
+
msgstr "Añadir Imagen"
|
568 |
+
|
569 |
+
#: core/fields/image.php:198
|
570 |
+
msgid "Preview Size"
|
571 |
+
msgstr "Tamaño del Preview"
|
572 |
+
|
573 |
+
#: core/fields/image.php:269
|
574 |
+
msgid "Select Image"
|
575 |
+
msgstr "Seleccionar Imagen"
|
576 |
+
|
577 |
+
#: core/fields/page_link.php:21
|
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"
|
586 |
+
|
587 |
+
#: core/fields/page_link.php:186
|
588 |
+
msgid ""
|
589 |
+
"Filter posts by selecting a post type<br />\n"
|
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 tipos de post"
|
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?"
|
606 |
+
|
607 |
+
#: core/fields/post_object.php:21
|
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 |
+
|
616 |
+
#: core/fields/radio.php:21
|
617 |
+
msgid "Radio Button"
|
618 |
+
msgstr "Radio Button"
|
619 |
+
|
620 |
+
#: core/fields/radio.php:131
|
621 |
+
#: core/fields/select.php:181
|
622 |
+
#: core/fields/text.php:61
|
623 |
+
#: core/fields/textarea.php:62
|
624 |
+
msgid "Default Value"
|
625 |
+
msgstr "Valor por defecto"
|
626 |
+
|
627 |
+
#: core/fields/relationship.php:21
|
628 |
+
msgid "Relationship"
|
629 |
+
msgstr "Relación"
|
630 |
+
|
631 |
+
#: core/fields/relationship.php:492
|
632 |
+
msgid "Maximum posts"
|
633 |
+
msgstr "Máximos post"
|
634 |
+
|
635 |
+
#: core/fields/relationship.php:493
|
636 |
+
msgid "Set to -1 for inifinit"
|
637 |
+
msgstr "Se establece en -1 para inifinito"
|
638 |
+
|
639 |
+
#: core/fields/repeater.php:21
|
640 |
+
msgid "Repeater"
|
641 |
+
msgstr "Repeater"
|
642 |
+
|
643 |
+
#: core/fields/repeater.php:362
|
644 |
+
msgid "Repeater Fields"
|
645 |
+
msgstr "Repeater Fields"
|
646 |
+
|
647 |
+
#: core/fields/repeater.php:492
|
648 |
+
msgid "Row Limit"
|
649 |
+
msgstr "Limite de filas"
|
650 |
+
|
651 |
+
#: core/fields/select.php:21
|
652 |
+
msgid "Select"
|
653 |
+
msgstr "Select"
|
654 |
+
|
655 |
+
#: core/fields/text.php:21
|
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 |
+
|
664 |
+
#: core/fields/text.php:76
|
665 |
+
msgid "Define how to render html tags"
|
666 |
+
msgstr "Define como renderizar las etiquetas html"
|
667 |
+
|
668 |
+
#: core/fields/textarea.php:21
|
669 |
+
msgid "Text Area"
|
670 |
+
msgstr "Text Area"
|
671 |
+
|
672 |
+
#: core/fields/textarea.php:77
|
673 |
+
msgid "Define how to render html tags / new lines"
|
674 |
+
msgstr "Define como renderizar los tags html / nuevas lineas"
|
675 |
+
|
676 |
+
#: core/fields/true_false.php:21
|
677 |
+
msgid "True / False"
|
678 |
+
msgstr "Verdadero / Falso"
|
679 |
+
|
680 |
+
#: core/fields/true_false.php:68
|
681 |
+
msgid "Message"
|
682 |
+
msgstr "Mensaje"
|
683 |
+
|
684 |
+
#: core/fields/true_false.php:69
|
685 |
+
msgid "eg. Show extra content"
|
686 |
+
msgstr "ej. Mostrar contenido extra"
|
687 |
+
|
688 |
+
#: core/fields/wysiwyg.php:21
|
689 |
+
msgid "Wysiwyg Editor"
|
690 |
+
msgstr "Editor Wysiwyg"
|
691 |
+
|
692 |
+
#: core/fields/wysiwyg.php:252
|
693 |
+
msgid "Toolbar"
|
694 |
+
msgstr "Barra de Herramientas"
|
695 |
+
|
696 |
+
#: core/fields/wysiwyg.php:271
|
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 |
+
|
lang/acf-pl_PL.mo
CHANGED
Binary file
|
lang/acf-pl_PL.po
CHANGED
@@ -1,871 +1,1228 @@
|
|
1 |
-
# Copyright (C) 2010
|
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: \n"
|
7 |
-
"POT-Creation-Date: 2012-03
|
8 |
-
"PO-Revision-Date: 2012-03
|
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:
|
22 |
-
msgid "Custom Fields"
|
23 |
-
msgstr "Własne pola"
|
24 |
-
|
25 |
-
#: ../acf.php:
|
26 |
-
msgid "Settings"
|
27 |
-
msgstr "Ustawienia"
|
28 |
-
|
29 |
-
#: ../acf.php:
|
30 |
-
msgid "Upgrade"
|
31 |
-
msgstr "Aktualizacja"
|
32 |
-
|
33 |
-
#: ../acf.php:
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
#: ../core/
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
#: ../core/
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
-
|
142 |
-
#: ../core/
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
#: ../core/
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
-
|
150 |
-
#: ../core/
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
-
|
154 |
-
#: ../core/
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
#: ../core/
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: ../core/
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: ../core/
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: ../core/
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: ../core/
|
175 |
-
msgid "
|
176 |
-
msgstr "Pole
|
177 |
-
|
178 |
-
#: ../core/
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
#: ../core/
|
221 |
-
#: ../core/
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
#: ../core/
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
-
|
233 |
-
#: ../core/
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
-
|
237 |
-
#: ../core/
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
#: ../core/
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
-
|
257 |
-
#: ../core/
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
#: ../core/
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
-
|
281 |
-
#: ../core/
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
#: ../core/admin/
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
#: ../core/admin/
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
#: ../core/admin/
|
360 |
-
msgid "
|
361 |
-
msgstr "
|
362 |
-
|
363 |
-
#: ../core/admin/
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
#: ../core/admin/
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
-
|
426 |
-
#: ../core/admin/
|
427 |
-
msgid "
|
428 |
-
msgstr "
|
429 |
-
|
430 |
-
#: ../core/admin/
|
431 |
-
msgid "
|
432 |
-
msgstr "
|
433 |
-
|
434 |
-
#: ../core/admin/
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
-
|
438 |
-
#: ../core/admin/
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
-
|
442 |
-
#: ../core/admin/
|
443 |
-
msgid "
|
444 |
-
msgstr "
|
445 |
-
|
446 |
-
#: ../core/admin/
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
-
|
450 |
-
#: ../core/admin/
|
451 |
-
msgid "
|
452 |
-
msgstr "
|
453 |
-
|
454 |
-
#: ../core/admin/
|
455 |
-
msgid "
|
456 |
-
msgstr "
|
457 |
-
|
458 |
-
#: ../core/admin/
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
-
|
462 |
-
#: ../core/admin/
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
-
|
466 |
-
#: ../core/admin/
|
467 |
-
msgid "
|
468 |
-
msgstr "
|
469 |
-
|
470 |
-
#: ../core/admin/
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
473 |
-
|
474 |
-
#: ../core/admin/
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
477 |
-
|
478 |
-
#: ../core/admin/
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
481 |
-
|
482 |
-
#: ../core/admin/
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
-
|
486 |
-
#: ../core/admin/
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
-
|
490 |
-
#: ../core/admin/
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
-
|
494 |
-
#: ../core/admin/
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
-
|
498 |
-
#: ../core/admin/
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
-
|
502 |
-
#: ../core/admin/
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
#: ../core/admin/
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
-
|
522 |
-
#: ../core/admin/
|
523 |
-
msgid "
|
524 |
-
msgstr "
|
525 |
-
|
526 |
-
#: ../core/admin/
|
527 |
-
msgid ""
|
528 |
-
"
|
529 |
-
|
530 |
-
|
531 |
-
"
|
532 |
-
"
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
"
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
"
|
548 |
-
"
|
549 |
-
|
550 |
-
|
551 |
-
"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
|
555 |
-
"
|
556 |
-
"
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
#: ../core/
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
573 |
-
|
574 |
-
#: ../core/
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
#: ../core/
|
583 |
-
msgid ""
|
584 |
-
"
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
"
|
589 |
-
"
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
"
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
"
|
599 |
-
"
|
600 |
-
|
601 |
-
|
602 |
-
"
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
#: ../core/
|
626 |
-
msgid "
|
627 |
-
msgstr "
|
628 |
-
|
629 |
-
#: ../core/
|
630 |
-
msgid "
|
631 |
-
msgstr "
|
632 |
-
|
633 |
-
#: ../core/
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
-
|
637 |
-
#: ../core/
|
638 |
-
msgid "
|
639 |
-
msgstr "
|
640 |
-
|
641 |
-
#: ../core/
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
-
|
645 |
-
#: ../core/
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
#: ../core/
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
#: ../core/
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
"
|
740 |
-
"
|
741 |
-
|
742 |
-
#: ../core/
|
743 |
-
#: ../core/
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
#: ../core/
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
#: ../core/fields/
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
#: ../core/fields/
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
-
|
815 |
-
#: ../core/fields/
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
#: ../core/fields/
|
824 |
-
msgid "
|
825 |
-
msgstr "
|
826 |
-
|
827 |
-
#: ../core/fields/
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
#: ../core/fields/
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
-
|
839 |
-
#: ../core/fields/
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2010
|
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: \n"
|
7 |
+
"POT-Creation-Date: 2012-05-03 18:10+0100\n"
|
8 |
+
"PO-Revision-Date: 2012-05-03 19:10+0100\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-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:233
|
22 |
+
msgid "Custom Fields"
|
23 |
+
msgstr "Własne pola"
|
24 |
+
|
25 |
+
#: ../acf.php:234
|
26 |
+
msgid "Settings"
|
27 |
+
msgstr "Ustawienia"
|
28 |
+
|
29 |
+
#: ../acf.php:235
|
30 |
+
msgid "Upgrade"
|
31 |
+
msgstr "Aktualizacja"
|
32 |
+
|
33 |
+
#: ../acf.php:446
|
34 |
+
msgid "Fields"
|
35 |
+
msgstr "Pola"
|
36 |
+
|
37 |
+
#: ../acf.php:447
|
38 |
+
msgid "Location"
|
39 |
+
msgstr "Pozycja"
|
40 |
+
|
41 |
+
#: ../acf.php:447
|
42 |
+
msgid "Add Fields to Edit Screens"
|
43 |
+
msgstr "Dodaj pola do stron edycji"
|
44 |
+
|
45 |
+
#: ../acf.php:448
|
46 |
+
#: ../core/options_page.php:62
|
47 |
+
#: ../core/options_page.php:74
|
48 |
+
msgid "Options"
|
49 |
+
msgstr "Opcje"
|
50 |
+
|
51 |
+
#: ../acf.php:448
|
52 |
+
msgid "Customise the edit page"
|
53 |
+
msgstr "Modyfikuj stronę edycji"
|
54 |
+
|
55 |
+
#: ../acf.php:475
|
56 |
+
#: ../core/api.php:503
|
57 |
+
#: ../core/everything_fields.php:202
|
58 |
+
#: ../core/options_page.php:182
|
59 |
+
msgid "Validation Failed. One or more fields below are required."
|
60 |
+
msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
61 |
+
|
62 |
+
#: ../acf.php:801
|
63 |
+
msgid "Error: Field Type does not exist!"
|
64 |
+
msgstr "Błąd: Takie pole nie istnieje!"
|
65 |
+
|
66 |
+
#: ../acf.php:2027
|
67 |
+
msgid "required"
|
68 |
+
msgstr "wymagane"
|
69 |
+
|
70 |
+
#: ../acf.php:2122
|
71 |
+
msgid "Parent Page"
|
72 |
+
msgstr "Strona nadrzędna"
|
73 |
+
|
74 |
+
#: ../acf.php:2123
|
75 |
+
msgid "Child Page"
|
76 |
+
msgstr "Strona podrzędna"
|
77 |
+
|
78 |
+
#: ../acf.php:2131
|
79 |
+
msgid "Default Template"
|
80 |
+
msgstr "Domyślny szablon"
|
81 |
+
|
82 |
+
#: ../core/options_page.php:161
|
83 |
+
msgid "Options Updated"
|
84 |
+
msgstr "Ustawienia zostały zaktualizowane"
|
85 |
+
|
86 |
+
#: ../core/options_page.php:275
|
87 |
+
msgid "No Custom Field Group found for the options page"
|
88 |
+
msgstr "Brak grup własnych pól dla strony opcji"
|
89 |
+
|
90 |
+
#: ../core/options_page.php:275
|
91 |
+
msgid "Create a Custom Field Group"
|
92 |
+
msgstr "Utwórz grupę własnych pól"
|
93 |
+
|
94 |
+
#: ../core/options_page.php:286
|
95 |
+
msgid "Publish"
|
96 |
+
msgstr "Opublikuj"
|
97 |
+
|
98 |
+
#: ../core/screen_extra.php:18
|
99 |
+
msgid "Advanced Custom Fields v"
|
100 |
+
msgstr "Zaawansowane własne pola v"
|
101 |
+
|
102 |
+
#: ../core/screen_extra.php:21
|
103 |
+
msgid "Changelog"
|
104 |
+
msgstr "Dziennik zmian"
|
105 |
+
|
106 |
+
#: ../core/screen_extra.php:22
|
107 |
+
msgid "See what's new in"
|
108 |
+
msgstr "Zobacz co słychać nowego w"
|
109 |
+
|
110 |
+
#: ../core/screen_extra.php:25
|
111 |
+
msgid "Resources"
|
112 |
+
msgstr "Zasoby"
|
113 |
+
|
114 |
+
#: ../core/screen_extra.php:26
|
115 |
+
msgid "Watch tutorials, read documentation, learn the API code and find some tips & tricks for your next web project."
|
116 |
+
msgstr "Obejrzyj tutorial, przeczytaj dokumentację, naucz się API i poznaj parę tricków do przydatnych w Twoim kolejnym projekcie."
|
117 |
+
|
118 |
+
#: ../core/screen_extra.php:27
|
119 |
+
msgid "View the plugins website"
|
120 |
+
msgstr "Odwiedź witrynę wtyczki"
|
121 |
+
|
122 |
+
#: ../core/screen_extra.php:30
|
123 |
+
msgid "Support"
|
124 |
+
msgstr "Pomoc"
|
125 |
+
|
126 |
+
#: ../core/screen_extra.php:31
|
127 |
+
msgid "Join the growing community over at the support forum to share ideas, report bugs and keep up to date with ACF"
|
128 |
+
msgstr "Dołącz do rosnącej społeczności użytkowników i forum pomocy, aby dzielić się pomysłami, zgłąszać błedy i być na bierząco z tą wtyczką."
|
129 |
+
|
130 |
+
#: ../core/screen_extra.php:32
|
131 |
+
msgid "View the Support Forum"
|
132 |
+
msgstr "Zobacz forum pomocy"
|
133 |
+
|
134 |
+
#: ../core/screen_extra.php:35
|
135 |
+
msgid "Developed by"
|
136 |
+
msgstr "Opracowana przez"
|
137 |
+
|
138 |
+
#: ../core/screen_extra.php:36
|
139 |
+
msgid "Vote for ACF"
|
140 |
+
msgstr "Głosuj na tę wtyczkę"
|
141 |
+
|
142 |
+
#: ../core/screen_extra.php:36
|
143 |
+
msgid "Twitter"
|
144 |
+
msgstr "Twitter"
|
145 |
+
|
146 |
+
#: ../core/screen_extra.php:36
|
147 |
+
msgid "Blog"
|
148 |
+
msgstr "Blog"
|
149 |
+
|
150 |
+
#: ../core/screen_extra_activate.php:4
|
151 |
+
msgid "Unlock Special Fields."
|
152 |
+
msgstr "Odblokuj pola specjalne"
|
153 |
+
|
154 |
+
#: ../core/screen_extra_activate.php:5
|
155 |
+
msgid "Special Fields can be unlocked by purchasing an activation code. Each activation code can be used on multiple sites."
|
156 |
+
msgstr "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany wielokrotnie."
|
157 |
+
|
158 |
+
#: ../core/screen_extra_activate.php:5
|
159 |
+
msgid "Visit the Plugin Store"
|
160 |
+
msgstr "Odwiedź sklep wtyczki"
|
161 |
+
|
162 |
+
#: ../core/screen_extra_activate.php:9
|
163 |
+
msgid "Field Type"
|
164 |
+
msgstr "Rodzaj pola"
|
165 |
+
|
166 |
+
#: ../core/screen_extra_activate.php:10
|
167 |
+
msgid "Status"
|
168 |
+
msgstr "Status"
|
169 |
+
|
170 |
+
#: ../core/screen_extra_activate.php:11
|
171 |
+
msgid "Activation Code"
|
172 |
+
msgstr "Kod aktywacyjny"
|
173 |
+
|
174 |
+
#: ../core/screen_extra_activate.php:23
|
175 |
+
msgid "Repeater"
|
176 |
+
msgstr "Pole powtarzalne"
|
177 |
+
|
178 |
+
#: ../core/screen_extra_activate.php:25
|
179 |
+
#: ../core/screen_extra_activate.php:57
|
180 |
+
msgid "Active"
|
181 |
+
msgstr "Aktywne"
|
182 |
+
|
183 |
+
#: ../core/screen_extra_activate.php:29
|
184 |
+
#: ../core/screen_extra_activate.php:61
|
185 |
+
msgid "Inactive"
|
186 |
+
msgstr "Nieaktywne"
|
187 |
+
|
188 |
+
#: ../core/screen_extra_activate.php:55
|
189 |
+
msgid "Options Page"
|
190 |
+
msgstr "Strona opcji"
|
191 |
+
|
192 |
+
#: ../core/screen_extra_activate.php:84
|
193 |
+
msgid "Unlock Fields"
|
194 |
+
msgstr "Odblokuj pola"
|
195 |
+
|
196 |
+
#: ../core/screen_extra_export.php:4
|
197 |
+
msgid "Import"
|
198 |
+
msgstr "Import"
|
199 |
+
|
200 |
+
#: ../core/screen_extra_export.php:6
|
201 |
+
msgid "Have an ACF export file? Import it here."
|
202 |
+
msgstr "Wyeksportowałeś plik z polami? Możesz go zaimportować tutaj."
|
203 |
+
|
204 |
+
#: ../core/screen_extra_export.php:13
|
205 |
+
msgid "Export"
|
206 |
+
msgstr "Eksport"
|
207 |
+
|
208 |
+
#: ../core/screen_extra_export.php:14
|
209 |
+
msgid "Want to create an ACF export file? Just select the desired ACF's and hit Export"
|
210 |
+
msgstr "Chcesz stworzyć i wyeksportować plik z polami? Wybierz pola i kliknij Eksport"
|
211 |
+
|
212 |
+
#: ../core/screen_extra_export.php:53
|
213 |
+
msgid "Import / Export"
|
214 |
+
msgstr "Import / Eksport"
|
215 |
+
|
216 |
+
#: ../core/actions/export.php:19
|
217 |
+
msgid "No ACF groups selected"
|
218 |
+
msgstr "Nie zaznaczono żadnej grupy pól"
|
219 |
+
|
220 |
+
#: ../core/actions/init.php:21
|
221 |
+
#: ../core/actions/init.php:116
|
222 |
+
msgid "Advanced Custom Fields"
|
223 |
+
msgstr "Zaawansowane własne pola"
|
224 |
+
|
225 |
+
#: ../core/actions/init.php:21
|
226 |
+
msgid "requires a database upgrade"
|
227 |
+
msgstr "wymagana jest aktualizacja bazy danych"
|
228 |
+
|
229 |
+
#: ../core/actions/init.php:21
|
230 |
+
msgid "why?"
|
231 |
+
msgstr "dlaczego?"
|
232 |
+
|
233 |
+
#: ../core/actions/init.php:21
|
234 |
+
msgid "Please"
|
235 |
+
msgstr "Proszę"
|
236 |
+
|
237 |
+
#: ../core/actions/init.php:21
|
238 |
+
msgid "backup your database"
|
239 |
+
msgstr "zrobić kopię zapasową bazy danych"
|
240 |
+
|
241 |
+
#: ../core/actions/init.php:21
|
242 |
+
msgid "then click"
|
243 |
+
msgstr "a następnie kliknąć"
|
244 |
+
|
245 |
+
#: ../core/actions/init.php:21
|
246 |
+
msgid "Upgrade Database"
|
247 |
+
msgstr "Aktualizuj bazę danych"
|
248 |
+
|
249 |
+
#: ../core/actions/init.php:47
|
250 |
+
msgid "Repeater field deactivated"
|
251 |
+
msgstr "Pole powtarzalne zostało deaktywowane"
|
252 |
+
|
253 |
+
#: ../core/actions/init.php:51
|
254 |
+
msgid "Options page deactivated"
|
255 |
+
msgstr "Strona opcji została deaktywowana"
|
256 |
+
|
257 |
+
#: ../core/actions/init.php:55
|
258 |
+
msgid "Flexible Content field deactivated"
|
259 |
+
msgstr "Pole z elastyczną zawartością zostało deaktywowane"
|
260 |
+
|
261 |
+
#: ../core/actions/init.php:59
|
262 |
+
msgid "Everything Fields deactivated"
|
263 |
+
msgstr "Pola do wszystkiego zostały deaktywowane"
|
264 |
+
|
265 |
+
#: ../core/actions/init.php:87
|
266 |
+
msgid "Repeater field activated"
|
267 |
+
msgstr "Pole powtarzalne zostało aktywowane"
|
268 |
+
|
269 |
+
#: ../core/actions/init.php:91
|
270 |
+
msgid "Options page activated"
|
271 |
+
msgstr "Strona opcji została aktywowana"
|
272 |
+
|
273 |
+
#: ../core/actions/init.php:95
|
274 |
+
msgid "Flexible Content field activated"
|
275 |
+
msgstr "Pole z elastyczną zawartością zostało aktywowane"
|
276 |
+
|
277 |
+
#: ../core/actions/init.php:99
|
278 |
+
msgid "Everything Fields activated"
|
279 |
+
msgstr "Pola do wszystkiego zostały aktywowane"
|
280 |
+
|
281 |
+
#: ../core/actions/init.php:104
|
282 |
+
msgid "License key unrecognised"
|
283 |
+
msgstr "Klucz licencji nie został rozpoznany"
|
284 |
+
|
285 |
+
#: ../core/actions/init.php:115
|
286 |
+
msgid "Field Groups"
|
287 |
+
msgstr "Grupy Pól"
|
288 |
+
|
289 |
+
#: ../core/actions/init.php:117
|
290 |
+
msgid "Add New"
|
291 |
+
msgstr "Dodaj nowe"
|
292 |
+
|
293 |
+
#: ../core/actions/init.php:118
|
294 |
+
msgid "Add New Field Group"
|
295 |
+
msgstr "Dodaj nową grupę pól"
|
296 |
+
|
297 |
+
#: ../core/actions/init.php:119
|
298 |
+
msgid "Edit Field Group"
|
299 |
+
msgstr "Edytuj grupę pól"
|
300 |
+
|
301 |
+
#: ../core/actions/init.php:120
|
302 |
+
msgid "New Field Group"
|
303 |
+
msgstr "Nowa grupa pól"
|
304 |
+
|
305 |
+
#: ../core/actions/init.php:121
|
306 |
+
msgid "View Field Group"
|
307 |
+
msgstr "Zobacz grupę pól"
|
308 |
+
|
309 |
+
#: ../core/actions/init.php:122
|
310 |
+
msgid "Search Field Groups"
|
311 |
+
msgstr "Szukaj grupy pól"
|
312 |
+
|
313 |
+
#: ../core/actions/init.php:123
|
314 |
+
msgid "No Field Groups found"
|
315 |
+
msgstr "Nie znaleziono grupy pól"
|
316 |
+
|
317 |
+
#: ../core/actions/init.php:124
|
318 |
+
msgid "No Field Groups found in Trash"
|
319 |
+
msgstr "Brak grup pól w koszu"
|
320 |
+
|
321 |
+
#: ../core/actions/init.php:152
|
322 |
+
msgid "Title"
|
323 |
+
msgstr "Tytuł"
|
324 |
+
|
325 |
+
#: ../core/admin/fields_meta_box.php:44
|
326 |
+
#: ../core/admin/meta_box_fields.php:50
|
327 |
+
msgid "Field Order"
|
328 |
+
msgstr "Kolejność pola"
|
329 |
+
|
330 |
+
#: ../core/admin/fields_meta_box.php:45
|
331 |
+
#: ../core/admin/fields_meta_box.php:105
|
332 |
+
#: ../core/admin/meta_box_fields.php:51
|
333 |
+
#: ../core/admin/meta_box_fields.php:91
|
334 |
+
msgid "Field Label"
|
335 |
+
msgstr "Etykieta pola"
|
336 |
+
|
337 |
+
#: ../core/admin/fields_meta_box.php:46
|
338 |
+
#: ../core/admin/fields_meta_box.php:124
|
339 |
+
#: ../core/admin/meta_box_fields.php:52
|
340 |
+
#: ../core/admin/meta_box_fields.php:107
|
341 |
+
msgid "Field Name"
|
342 |
+
msgstr "Nazwa pola"
|
343 |
+
|
344 |
+
#: ../core/admin/fields_meta_box.php:55
|
345 |
+
msgid "No fields. Click the \"+ Add Field button\" to create your first field."
|
346 |
+
msgstr "Brak pól. Kliknij przycisk \"+ Dodaj pole\" aby utworzyć pierwsze własne pole."
|
347 |
+
|
348 |
+
#: ../core/admin/fields_meta_box.php:80
|
349 |
+
#: ../core/admin/meta_box_fields.php:74
|
350 |
+
msgid "Edit"
|
351 |
+
msgstr "Edytuj"
|
352 |
+
|
353 |
+
#: ../core/admin/fields_meta_box.php:81
|
354 |
+
#: ../core/admin/meta_box_fields.php:76
|
355 |
+
msgid "Delete"
|
356 |
+
msgstr "Usuń"
|
357 |
+
|
358 |
+
#: ../core/admin/fields_meta_box.php:106
|
359 |
+
#: ../core/admin/meta_box_fields.php:92
|
360 |
+
msgid "This is the name which will appear on the EDIT page"
|
361 |
+
msgstr "To jest nawa, która pojawi się na stronie edycji"
|
362 |
+
|
363 |
+
#: ../core/admin/fields_meta_box.php:125
|
364 |
+
#: ../core/admin/meta_box_fields.php:108
|
365 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
366 |
+
msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki"
|
367 |
+
|
368 |
+
#: ../core/admin/fields_meta_box.php:158
|
369 |
+
#: ../core/admin/meta_box_fields.php:135
|
370 |
+
msgid "Field Instructions"
|
371 |
+
msgstr "Instrukcje pola"
|
372 |
+
|
373 |
+
#: ../core/admin/fields_meta_box.php:159
|
374 |
+
#: ../core/admin/meta_box_fields.php:136
|
375 |
+
msgid "Instructions for authors. Shown when submitting data"
|
376 |
+
msgstr "Instrukcje dla autorów. Będą widoczne w trakcie wpisywania danych"
|
377 |
+
|
378 |
+
#: ../core/admin/fields_meta_box.php:221
|
379 |
+
#: ../core/admin/meta_box_fields.php:190
|
380 |
+
msgid "+ Add Field"
|
381 |
+
msgstr "+ Dodaj pole"
|
382 |
+
|
383 |
+
#: ../core/admin/meta_box_acf.php:14
|
384 |
+
msgid "Special Fields can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
385 |
+
msgstr "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany wielokrotnie."
|
386 |
+
|
387 |
+
#: ../core/admin/meta_box_acf.php:26
|
388 |
+
#: ../core/admin/page_settings.php:52
|
389 |
+
msgid "Repeater Field"
|
390 |
+
msgstr "Pole powtarzalne"
|
391 |
+
|
392 |
+
#: ../core/admin/meta_box_acf.php:94
|
393 |
+
#: ../core/admin/page_settings.php:166
|
394 |
+
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
395 |
+
msgstr "Wtyczka utworzy plik eksportu .xml, który jest kompatybilny z domyślną wtyczką importu plików."
|
396 |
+
|
397 |
+
#: ../core/admin/meta_box_acf.php:99
|
398 |
+
msgid "Select which ACF groups to export"
|
399 |
+
msgstr "Wybierz, które grupy chcesz wyeksportować"
|
400 |
+
|
401 |
+
#: ../core/admin/meta_box_acf.php:143
|
402 |
+
msgid "Have an ACF export file? Import it here. Please note that v2 and v3 .xml files are not compatible."
|
403 |
+
msgstr "Wyeksportowałeś plik z polami? Zaimportuj go tutaj. Zwróć uwagę, że wersje 2 i 3 plików .xml nie są ze sobą kompatybilne."
|
404 |
+
|
405 |
+
#: ../core/admin/meta_box_acf.php:148
|
406 |
+
msgid "Import your .xml file"
|
407 |
+
msgstr "Zaimportuj plik .xml"
|
408 |
+
|
409 |
+
#: ../core/admin/meta_box_fields.php:17
|
410 |
+
msgid "New Field"
|
411 |
+
msgstr "Nowe pole"
|
412 |
+
|
413 |
+
#: ../core/admin/meta_box_fields.php:38
|
414 |
+
msgid "Move to trash. Are you sure?"
|
415 |
+
msgstr "Przenieś do kosza. Jesteś pewny?"
|
416 |
+
|
417 |
+
#: ../core/admin/meta_box_fields.php:60
|
418 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
419 |
+
msgstr "Brak pól. Kliknij przycisk <strong>+ Dodaj pole</strong> aby utworzyć pierwsze własne pole."
|
420 |
+
|
421 |
+
#: ../core/admin/meta_box_fields.php:71
|
422 |
+
#: ../core/admin/meta_box_fields.php:74
|
423 |
+
msgid "Edit this Field"
|
424 |
+
msgstr "Edytuj to pole"
|
425 |
+
|
426 |
+
#: ../core/admin/meta_box_fields.php:75
|
427 |
+
msgid "Read documentation for this field"
|
428 |
+
msgstr "Przeczytaj dokumentację tego pola"
|
429 |
+
|
430 |
+
#: ../core/admin/meta_box_fields.php:75
|
431 |
+
msgid "Docs"
|
432 |
+
msgstr "Dokumentacja"
|
433 |
+
|
434 |
+
#: ../core/admin/meta_box_fields.php:76
|
435 |
+
msgid "Delete this Field"
|
436 |
+
msgstr "Usuń to pole"
|
437 |
+
|
438 |
+
#: ../core/admin/meta_box_fields.php:148
|
439 |
+
msgid "Required?"
|
440 |
+
msgstr "Wymagane?"
|
441 |
+
|
442 |
+
#: ../core/admin/meta_box_fields.php:171
|
443 |
+
msgid "Save Field"
|
444 |
+
msgstr "Zapisz pole"
|
445 |
+
|
446 |
+
#: ../core/admin/meta_box_fields.php:176
|
447 |
+
msgid "Close Field"
|
448 |
+
msgstr "Zamknij to pole"
|
449 |
+
|
450 |
+
#: ../core/admin/meta_box_location.php:25
|
451 |
+
msgid "Rules"
|
452 |
+
msgstr "Warunki"
|
453 |
+
|
454 |
+
#: ../core/admin/meta_box_location.php:26
|
455 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
456 |
+
msgstr "Utwórz zestaw warunków, które określą w których miejscach będą wykorzystane określone własne pola"
|
457 |
+
|
458 |
+
#: ../core/admin/meta_box_location.php:37
|
459 |
+
msgid "Basic"
|
460 |
+
msgstr "Podstawowe"
|
461 |
+
|
462 |
+
#: ../core/admin/meta_box_location.php:38
|
463 |
+
msgid "Post Type"
|
464 |
+
msgstr "Typ wpisu"
|
465 |
+
|
466 |
+
#: ../core/admin/meta_box_location.php:39
|
467 |
+
msgid "Logged in User Type"
|
468 |
+
msgstr "Rola zalogowanego użytkownika"
|
469 |
+
|
470 |
+
#: ../core/admin/meta_box_location.php:41
|
471 |
+
msgid "Page Specific"
|
472 |
+
msgstr "Związane ze stronami"
|
473 |
+
|
474 |
+
#: ../core/admin/meta_box_location.php:42
|
475 |
+
msgid "Page"
|
476 |
+
msgstr "Strona"
|
477 |
+
|
478 |
+
#: ../core/admin/meta_box_location.php:43
|
479 |
+
msgid "Page Type"
|
480 |
+
msgstr "Typ strony"
|
481 |
+
|
482 |
+
#: ../core/admin/meta_box_location.php:44
|
483 |
+
msgid "Page Parent"
|
484 |
+
msgstr "Rodzic strony"
|
485 |
+
|
486 |
+
#: ../core/admin/meta_box_location.php:45
|
487 |
+
msgid "Page Template"
|
488 |
+
msgstr "Szablon strony"
|
489 |
+
|
490 |
+
#: ../core/admin/meta_box_location.php:47
|
491 |
+
msgid "Post Specific"
|
492 |
+
msgstr "Związane z typem wpisu"
|
493 |
+
|
494 |
+
#: ../core/admin/meta_box_location.php:48
|
495 |
+
msgid "Post"
|
496 |
+
msgstr "Wpis"
|
497 |
+
|
498 |
+
#: ../core/admin/meta_box_location.php:49
|
499 |
+
msgid "Post Category"
|
500 |
+
msgstr "Kategoria wpisu"
|
501 |
+
|
502 |
+
#: ../core/admin/meta_box_location.php:50
|
503 |
+
msgid "Post Format"
|
504 |
+
msgstr "Format wpisu"
|
505 |
+
|
506 |
+
#: ../core/admin/meta_box_location.php:51
|
507 |
+
msgid "Post Taxonomy"
|
508 |
+
msgstr "Taksonomia wpisu"
|
509 |
+
|
510 |
+
#: ../core/admin/meta_box_location.php:53
|
511 |
+
msgid "Other"
|
512 |
+
msgstr "Pozostałe"
|
513 |
+
|
514 |
+
#: ../core/admin/meta_box_location.php:54
|
515 |
+
msgid "Taxonomy (Add / Edit)"
|
516 |
+
msgstr "Taksonomia (Dodaj / Edytuj)"
|
517 |
+
|
518 |
+
#: ../core/admin/meta_box_location.php:55
|
519 |
+
msgid "User (Add / Edit)"
|
520 |
+
msgstr "Użytkownik (Dodaj / Edytuj)"
|
521 |
+
|
522 |
+
#: ../core/admin/meta_box_location.php:56
|
523 |
+
msgid "Media (Edit)"
|
524 |
+
msgstr "Medium (Edytuj)"
|
525 |
+
|
526 |
+
#: ../core/admin/meta_box_location.php:86
|
527 |
+
msgid "is equal to"
|
528 |
+
msgstr "jest równe"
|
529 |
+
|
530 |
+
#: ../core/admin/meta_box_location.php:87
|
531 |
+
msgid "is not equal to"
|
532 |
+
msgstr "jest inne niż"
|
533 |
+
|
534 |
+
#: ../core/admin/meta_box_location.php:111
|
535 |
+
msgid "match"
|
536 |
+
msgstr "pasuje"
|
537 |
+
|
538 |
+
#: ../core/admin/meta_box_location.php:117
|
539 |
+
msgid "all"
|
540 |
+
msgstr "wszystkie"
|
541 |
+
|
542 |
+
#: ../core/admin/meta_box_location.php:118
|
543 |
+
msgid "any"
|
544 |
+
msgstr "którykolwiek"
|
545 |
+
|
546 |
+
#: ../core/admin/meta_box_location.php:121
|
547 |
+
msgid "of the above"
|
548 |
+
msgstr "do pozostałych"
|
549 |
+
|
550 |
+
#: ../core/admin/meta_box_location.php:134
|
551 |
+
msgid "Unlock options add-on with an activation code"
|
552 |
+
msgstr "Odblokuj dodatkowe opcje z kodem aktywacyjnym"
|
553 |
+
|
554 |
+
#: ../core/admin/meta_box_options.php:13
|
555 |
+
msgid "Order No."
|
556 |
+
msgstr "Nr w kolejności"
|
557 |
+
|
558 |
+
#: ../core/admin/meta_box_options.php:14
|
559 |
+
msgid "Field groups are created in order <br />from lowest to highest."
|
560 |
+
msgstr "Grupy pól są tworzone w kolejności <br />od najniższej do najwyższej."
|
561 |
+
|
562 |
+
#: ../core/admin/meta_box_options.php:30
|
563 |
+
msgid "Position"
|
564 |
+
msgstr "Pozycja"
|
565 |
+
|
566 |
+
#: ../core/admin/meta_box_options.php:40
|
567 |
+
msgid "Normal"
|
568 |
+
msgstr "Normalna"
|
569 |
+
|
570 |
+
#: ../core/admin/meta_box_options.php:41
|
571 |
+
msgid "Side"
|
572 |
+
msgstr "Boczna"
|
573 |
+
|
574 |
+
#: ../core/admin/meta_box_options.php:50
|
575 |
+
msgid "Style"
|
576 |
+
msgstr "Styl"
|
577 |
+
|
578 |
+
#: ../core/admin/meta_box_options.php:60
|
579 |
+
msgid "Standard Metabox"
|
580 |
+
msgstr "Standardowy metabox"
|
581 |
+
|
582 |
+
#: ../core/admin/meta_box_options.php:61
|
583 |
+
msgid "No Metabox"
|
584 |
+
msgstr "Bez metabox"
|
585 |
+
|
586 |
+
#: ../core/admin/meta_box_options.php:70
|
587 |
+
#: ../core/admin/options_meta_box.php:18
|
588 |
+
msgid "Show on page"
|
589 |
+
msgstr "Wyświetl na stronie"
|
590 |
+
|
591 |
+
#: ../core/admin/meta_box_options.php:71
|
592 |
+
#: ../core/admin/options_meta_box.php:19
|
593 |
+
msgid "Deselect items to hide them on the edit page"
|
594 |
+
msgstr "Usuń elementy, które chcesz ukryć na stronie edycji."
|
595 |
+
|
596 |
+
#: ../core/admin/meta_box_options.php:72
|
597 |
+
#: ../core/admin/options_meta_box.php:20
|
598 |
+
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."
|
599 |
+
msgstr "Jeśli na stronie edycji znajduje się kilka grup pól, zostaną zastosowane ustawienia z pierwszej z nich. Pierwsza grupa pól to ta, która ma najmniejszy numer w kolejności."
|
600 |
+
|
601 |
+
#: ../core/admin/meta_box_options.php:82
|
602 |
+
msgid "Content Editor"
|
603 |
+
msgstr "Edytor treści"
|
604 |
+
|
605 |
+
#: ../core/admin/meta_box_options.php:84
|
606 |
+
msgid "Discussion"
|
607 |
+
msgstr "Dyskusja"
|
608 |
+
|
609 |
+
#: ../core/admin/meta_box_options.php:85
|
610 |
+
msgid "Comments"
|
611 |
+
msgstr "Komentarze"
|
612 |
+
|
613 |
+
#: ../core/admin/meta_box_options.php:86
|
614 |
+
msgid "Slug"
|
615 |
+
msgstr "Bezpośredni odnośnik"
|
616 |
+
|
617 |
+
#: ../core/admin/meta_box_options.php:87
|
618 |
+
msgid "Author"
|
619 |
+
msgstr "Autor"
|
620 |
+
|
621 |
+
#: ../core/admin/options_meta_box.php:49
|
622 |
+
msgid "Field Group Layout"
|
623 |
+
msgstr "Szablon grupy pól"
|
624 |
+
|
625 |
+
#: ../core/admin/options_meta_box.php:50
|
626 |
+
msgid "Display your field group with or without a box"
|
627 |
+
msgstr "Wyświetl grupę pól w ramce lub bez niej"
|
628 |
+
|
629 |
+
#: ../core/admin/options_page.php:247
|
630 |
+
msgid "Settings saved"
|
631 |
+
msgstr "Ustawienia zostały zapisane"
|
632 |
+
|
633 |
+
#: ../core/admin/options_page.php:258
|
634 |
+
msgid "Save"
|
635 |
+
msgstr "Zapisz"
|
636 |
+
|
637 |
+
#: ../core/admin/options_page.php:372
|
638 |
+
msgid "No Options"
|
639 |
+
msgstr "Brak opcji"
|
640 |
+
|
641 |
+
#: ../core/admin/options_page.php:376
|
642 |
+
msgid "Sorry, it seems there are no fields for this options page."
|
643 |
+
msgstr "Przykro mi, ale ta strona opcji nie zawiera pól."
|
644 |
+
|
645 |
+
#: ../core/admin/page_acf.php:20
|
646 |
+
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
647 |
+
msgstr "Przeczytaj dokumentację, naucz się funkcji i poznaj parę tricków, które mogą przydać Ci się w Twoim kolejnym projekcie."
|
648 |
+
|
649 |
+
#: ../core/admin/page_acf.php:21
|
650 |
+
msgid "View the ACF website"
|
651 |
+
msgstr "Odwiedź stronę wtyczki"
|
652 |
+
|
653 |
+
#: ../core/admin/page_acf.php:26
|
654 |
+
msgid "Created by"
|
655 |
+
msgstr "Stworzone przez"
|
656 |
+
|
657 |
+
#: ../core/admin/page_acf.php:29
|
658 |
+
msgid "Vote"
|
659 |
+
msgstr "Głosuj"
|
660 |
+
|
661 |
+
#: ../core/admin/page_acf.php:30
|
662 |
+
msgid "Follow"
|
663 |
+
msgstr "Śledź"
|
664 |
+
|
665 |
+
#: ../core/admin/page_settings.php:23
|
666 |
+
msgid "Advanced Custom Fields Settings"
|
667 |
+
msgstr "Ustawienia Zaawansowanych własnych pól"
|
668 |
+
|
669 |
+
#: ../core/admin/page_settings.php:40
|
670 |
+
msgid "Activate Add-ons."
|
671 |
+
msgstr "Aktywuj dodatki."
|
672 |
+
|
673 |
+
#: ../core/admin/page_settings.php:72
|
674 |
+
msgid "Flexible Content Field"
|
675 |
+
msgstr "Pole z elastyczną zawartością"
|
676 |
+
|
677 |
+
#: ../core/admin/page_settings.php:115
|
678 |
+
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
679 |
+
msgstr "Dodatki można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany na dowolnej liczbie stron."
|
680 |
+
|
681 |
+
#: ../core/admin/page_settings.php:115
|
682 |
+
msgid "Find Add-ons"
|
683 |
+
msgstr "Znajdźj dodatki."
|
684 |
+
|
685 |
+
#: ../core/admin/page_settings.php:133
|
686 |
+
msgid "Export Field Groups to XML"
|
687 |
+
msgstr "Eksportuj Grupy pól do XML"
|
688 |
+
|
689 |
+
#: ../core/admin/page_settings.php:169
|
690 |
+
msgid "Export XML"
|
691 |
+
msgstr "Eksportuj XML"
|
692 |
+
|
693 |
+
#: ../core/admin/page_settings.php:175
|
694 |
+
msgid "Import Field Groups"
|
695 |
+
msgstr "Importuj Grupy pól"
|
696 |
+
|
697 |
+
#: ../core/admin/page_settings.php:177
|
698 |
+
msgid "Navigate to the"
|
699 |
+
msgstr "Przejdź do"
|
700 |
+
|
701 |
+
#: ../core/admin/page_settings.php:177
|
702 |
+
msgid "Import Tool"
|
703 |
+
msgstr "Narzędzi Importu"
|
704 |
+
|
705 |
+
#: ../core/admin/page_settings.php:177
|
706 |
+
msgid "and select WordPress"
|
707 |
+
msgstr "i wybierz Wordpress"
|
708 |
+
|
709 |
+
#: ../core/admin/page_settings.php:178
|
710 |
+
msgid "Install WP import plugin if prompted"
|
711 |
+
msgstr "Zaintaluj wtyczkę importu WP, jeśli zostaniesz o to poproszony"
|
712 |
+
|
713 |
+
#: ../core/admin/page_settings.php:179
|
714 |
+
msgid "Upload and import your exported .xml file"
|
715 |
+
msgstr "Wgraj i zaimportuj wyeksportowany wcześniej plik .xml"
|
716 |
+
|
717 |
+
#: ../core/admin/page_settings.php:180
|
718 |
+
msgid "Select your user and ignore Import Attachments"
|
719 |
+
msgstr "Wybierz użytkownika i ignoruj Importowanie załączników"
|
720 |
+
|
721 |
+
#: ../core/admin/page_settings.php:181
|
722 |
+
msgid "That's it! Happy WordPressing"
|
723 |
+
msgstr "Gotowe!"
|
724 |
+
|
725 |
+
#: ../core/admin/page_settings.php:200
|
726 |
+
msgid "Export Field Groups to PHP"
|
727 |
+
msgstr "Eksportuj Grupy pól do PHP"
|
728 |
+
|
729 |
+
#: ../core/admin/page_settings.php:233
|
730 |
+
msgid "ACF will create the PHP code to include in your theme"
|
731 |
+
msgstr "ACF wygeneruje kod PHP, który możesz wkleić do swego szablonu"
|
732 |
+
|
733 |
+
#: ../core/admin/page_settings.php:236
|
734 |
+
msgid "Create PHP"
|
735 |
+
msgstr "Utwórz PHP"
|
736 |
+
|
737 |
+
#: ../core/admin/page_settings.php:242
|
738 |
+
#: ../core/admin/page_settings.php:270
|
739 |
+
msgid "Register Field Groups with PHP"
|
740 |
+
msgstr "Utwórz grupę pól z PHP"
|
741 |
+
|
742 |
+
#: ../core/admin/page_settings.php:244
|
743 |
+
#: ../core/admin/page_settings.php:272
|
744 |
+
msgid "Copy the PHP code generated"
|
745 |
+
msgstr "Skopij wygenerowany kod PHP"
|
746 |
+
|
747 |
+
#: ../core/admin/page_settings.php:245
|
748 |
+
#: ../core/admin/page_settings.php:273
|
749 |
+
msgid "Paste into your functions.php file"
|
750 |
+
msgstr "Wklej do pliku functions.php"
|
751 |
+
|
752 |
+
#: ../core/admin/page_settings.php:246
|
753 |
+
#: ../core/admin/page_settings.php:274
|
754 |
+
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
755 |
+
msgstr "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach."
|
756 |
+
|
757 |
+
#: ../core/admin/page_settings.php:267
|
758 |
+
msgid "Back to settings"
|
759 |
+
msgstr "Wróć do ustawień"
|
760 |
+
|
761 |
+
#: ../core/admin/page_settings.php:295
|
762 |
+
msgid ""
|
763 |
+
"/**\n"
|
764 |
+
" * Activate Add-ons\n"
|
765 |
+
" * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
|
766 |
+
" * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
|
767 |
+
" * Use the commented out code to update the database with your activation code. \n"
|
768 |
+
" * You may place this code inside an IF statement that only runs on theme activation.\n"
|
769 |
+
" */"
|
770 |
+
msgstr ""
|
771 |
+
"/**\n"
|
772 |
+
" * Aktywuj dodatki\n"
|
773 |
+
" * Możesz tu wpisać kody aktywacyjne uruchamiające dodatkowe funkcje. \n"
|
774 |
+
" * W związku z tym, że kody są na dowolną ilość licencji, możesz je stosować także w płatnych szablonach. \n"
|
775 |
+
" * Użyj kodu aby zaktualizować bazę danych. \n"
|
776 |
+
" * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy aktywacji szablonu.\n"
|
777 |
+
" */"
|
778 |
+
|
779 |
+
#: ../core/admin/page_settings.php:308
|
780 |
+
msgid ""
|
781 |
+
"/**\n"
|
782 |
+
" * Register field groups\n"
|
783 |
+
" * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
|
784 |
+
" * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
|
785 |
+
" * This code must run every time the functions.php file is read\n"
|
786 |
+
" */"
|
787 |
+
msgstr ""
|
788 |
+
"/**\n"
|
789 |
+
" * Zarejestruj grupy pól\n"
|
790 |
+
" * Funkcja register_field_group akceptuje 1 ciąg zmiennych, która zawiera wszystkie dane służące rejestracji grupy\n"
|
791 |
+
" * Możesz edytować tę zmienną i dopasowywać ją do swoich potrzeb. Ale może to też powodować błąd jeśli ta zmienna nie jest kompatybilna z ACF\n"
|
792 |
+
" * Kod musi być uruchamiany każdorazowo w pliku functions.php\n"
|
793 |
+
" */"
|
794 |
+
|
795 |
+
#: ../core/admin/page_settings.php:336
|
796 |
+
msgid "No field groups were selected"
|
797 |
+
msgstr "Nie zaznaczono grup pól"
|
798 |
+
|
799 |
+
#: ../core/fields/checkbox.php:21
|
800 |
+
msgid "Checkbox"
|
801 |
+
msgstr "Akceptowanie (checkbox)"
|
802 |
+
|
803 |
+
#: ../core/fields/checkbox.php:44
|
804 |
+
#: ../core/fields/radio.php:45
|
805 |
+
#: ../core/fields/select.php:50
|
806 |
+
msgid "No choices to choose from"
|
807 |
+
msgstr "Brak możliwościi wyboru"
|
808 |
+
|
809 |
+
#: ../core/fields/checkbox.php:102
|
810 |
+
#: ../core/fields/radio.php:114
|
811 |
+
#: ../core/fields/select.php:164
|
812 |
+
msgid "Choices"
|
813 |
+
msgstr "Opcje"
|
814 |
+
|
815 |
+
#: ../core/fields/checkbox.php:103
|
816 |
+
#: ../core/fields/radio.php:115
|
817 |
+
#: ../core/fields/select.php:165
|
818 |
+
msgid "Enter your choices one per line"
|
819 |
+
msgstr "Wpisz swoje preferencje w oddzielnych liniach"
|
820 |
+
|
821 |
+
#: ../core/fields/checkbox.php:105
|
822 |
+
#: ../core/fields/radio.php:117
|
823 |
+
#: ../core/fields/select.php:167
|
824 |
+
msgid "Red"
|
825 |
+
msgstr "Czerwony"
|
826 |
+
|
827 |
+
#: ../core/fields/checkbox.php:106
|
828 |
+
#: ../core/fields/radio.php:118
|
829 |
+
#: ../core/fields/select.php:168
|
830 |
+
msgid "Blue"
|
831 |
+
msgstr "Niebieski"
|
832 |
+
|
833 |
+
#: ../core/fields/checkbox.php:108
|
834 |
+
#: ../core/fields/radio.php:120
|
835 |
+
#: ../core/fields/select.php:170
|
836 |
+
msgid "red : Red"
|
837 |
+
msgstr "czerwony : Czerwony"
|
838 |
+
|
839 |
+
#: ../core/fields/checkbox.php:109
|
840 |
+
#: ../core/fields/radio.php:121
|
841 |
+
#: ../core/fields/select.php:171
|
842 |
+
msgid "blue : Blue"
|
843 |
+
msgstr "niebieski : Niebieski"
|
844 |
+
|
845 |
+
#: ../core/fields/color_picker.php:21
|
846 |
+
msgid "Color Picker"
|
847 |
+
msgstr "Wybór koloru"
|
848 |
+
|
849 |
+
#: ../core/fields/file.php:20
|
850 |
+
msgid "File"
|
851 |
+
msgstr "Plik"
|
852 |
+
|
853 |
+
#: ../core/fields/file.php:60
|
854 |
+
msgid "Remove File"
|
855 |
+
msgstr "Usuń plik"
|
856 |
+
|
857 |
+
#: ../core/fields/file.php:165
|
858 |
+
msgid "No File Selected"
|
859 |
+
msgstr "Nie zaznaczono pliku"
|
860 |
+
|
861 |
+
#: ../core/fields/file.php:165
|
862 |
+
msgid "Add File"
|
863 |
+
msgstr "Dodaj plik"
|
864 |
+
|
865 |
+
#: ../core/fields/file.php:194
|
866 |
+
#: ../core/fields/image.php:177
|
867 |
+
msgid "Return Value"
|
868 |
+
msgstr "Wartość zwrotna"
|
869 |
+
|
870 |
+
#: ../core/fields/file.php:342
|
871 |
+
msgid "No files selected"
|
872 |
+
msgstr "Nie zaznaczono plików"
|
873 |
+
|
874 |
+
#: ../core/fields/file.php:419
|
875 |
+
msgid "Add Selected Files"
|
876 |
+
msgstr "Dodaj zaznaczone pliki"
|
877 |
+
|
878 |
+
#: ../core/fields/file.php:445
|
879 |
+
msgid "Select File"
|
880 |
+
msgstr "Wybierz plik"
|
881 |
+
|
882 |
+
#: ../core/fields/flexible_content.php:21
|
883 |
+
msgid "Flexible Content"
|
884 |
+
msgstr "Elastyczna treść"
|
885 |
+
|
886 |
+
#: ../core/fields/flexible_content.php:38
|
887 |
+
#: ../core/fields/flexible_content.php:183
|
888 |
+
#: ../core/fields/repeater.php:65
|
889 |
+
#: ../core/fields/repeater.php:184
|
890 |
+
msgid "+ Add Row"
|
891 |
+
msgstr "+ Dodaj rząd"
|
892 |
+
|
893 |
+
#: ../core/fields/flexible_content.php:219
|
894 |
+
#: ../core/fields/radio.php:144
|
895 |
+
#: ../core/fields/repeater.php:355
|
896 |
+
msgid "Layout"
|
897 |
+
msgstr "Szablon"
|
898 |
+
|
899 |
+
#: ../core/fields/flexible_content.php:221
|
900 |
+
msgid "Reorder Layout"
|
901 |
+
msgstr "Zmiana kolejności w szablonie"
|
902 |
+
|
903 |
+
#: ../core/fields/flexible_content.php:221
|
904 |
+
msgid "Reorder"
|
905 |
+
msgstr "Zmiana kolejności"
|
906 |
+
|
907 |
+
#: ../core/fields/flexible_content.php:222
|
908 |
+
msgid "Add New Layout"
|
909 |
+
msgstr "Dodaj nowy szablon"
|
910 |
+
|
911 |
+
#: ../core/fields/flexible_content.php:223
|
912 |
+
msgid "Delete Layout"
|
913 |
+
msgstr "Usuń szablon"
|
914 |
+
|
915 |
+
#: ../core/fields/flexible_content.php:233
|
916 |
+
msgid "Label"
|
917 |
+
msgstr "Etykieta"
|
918 |
+
|
919 |
+
#: ../core/fields/flexible_content.php:243
|
920 |
+
msgid "Name"
|
921 |
+
msgstr "Nazwa"
|
922 |
+
|
923 |
+
#: ../core/fields/flexible_content.php:253
|
924 |
+
msgid "Display"
|
925 |
+
msgstr "Wyświetl"
|
926 |
+
|
927 |
+
#: ../core/fields/flexible_content.php:260
|
928 |
+
msgid "Table"
|
929 |
+
msgstr "Tabela"
|
930 |
+
|
931 |
+
#: ../core/fields/flexible_content.php:261
|
932 |
+
#: ../core/fields/repeater.php:366
|
933 |
+
msgid "Row"
|
934 |
+
msgstr "Rząd"
|
935 |
+
|
936 |
+
#: ../core/fields/flexible_content.php:285
|
937 |
+
#: ../core/fields/repeater.php:226
|
938 |
+
msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
939 |
+
msgstr "Brak pól. Kliknij przycisk \"+ Dodaj pole podrzędne\" aby utworzyć pierwsze własne pole."
|
940 |
+
|
941 |
+
#: ../core/fields/flexible_content.php:376
|
942 |
+
#: ../core/fields/repeater.php:317
|
943 |
+
msgid "Close Sub Field"
|
944 |
+
msgstr "Zamknij pole"
|
945 |
+
|
946 |
+
#: ../core/fields/flexible_content.php:391
|
947 |
+
#: ../core/fields/repeater.php:333
|
948 |
+
msgid "+ Add Sub Field"
|
949 |
+
msgstr "+ Dodaj pole podrzędne"
|
950 |
+
|
951 |
+
#: ../core/fields/flexible_content.php:398
|
952 |
+
#: ../core/fields/repeater.php:374
|
953 |
+
msgid "Button Label"
|
954 |
+
msgstr "Tekst przycisku"
|
955 |
+
|
956 |
+
#: ../core/fields/image.php:21
|
957 |
+
msgid "Image"
|
958 |
+
msgstr "Obrazek"
|
959 |
+
|
960 |
+
#: ../core/fields/image.php:153
|
961 |
+
msgid "No image selected"
|
962 |
+
msgstr "Nie wybrano obrazka"
|
963 |
+
|
964 |
+
#: ../core/fields/image.php:153
|
965 |
+
msgid "Add Image"
|
966 |
+
msgstr "Dodaj obrazek"
|
967 |
+
|
968 |
+
#: ../core/fields/image.php:187
|
969 |
+
msgid "Image URL"
|
970 |
+
msgstr "Adres URL"
|
971 |
+
|
972 |
+
#: ../core/fields/image.php:188
|
973 |
+
msgid "Attachment ID"
|
974 |
+
msgstr "ID załącznika"
|
975 |
+
|
976 |
+
#: ../core/fields/image.php:196
|
977 |
+
msgid "Preview Size"
|
978 |
+
msgstr "Wielkość obrazka"
|
979 |
+
|
980 |
+
#: ../core/fields/image.php:206
|
981 |
+
msgid "Thumbnail"
|
982 |
+
msgstr "Miniatura"
|
983 |
+
|
984 |
+
#: ../core/fields/image.php:207
|
985 |
+
msgid "Medium"
|
986 |
+
msgstr "Średni"
|
987 |
+
|
988 |
+
#: ../core/fields/image.php:208
|
989 |
+
msgid "Large"
|
990 |
+
msgstr "Duży"
|
991 |
+
|
992 |
+
#: ../core/fields/image.php:209
|
993 |
+
msgid "Full"
|
994 |
+
msgstr "Pełny"
|
995 |
+
|
996 |
+
#: ../core/fields/image.php:392
|
997 |
+
msgid "No images selected"
|
998 |
+
msgstr "Nie wybrano obrazków"
|
999 |
+
|
1000 |
+
#: ../core/fields/image.php:469
|
1001 |
+
msgid "Add selected Images"
|
1002 |
+
msgstr "Dodaj zaznaczone obrazki"
|
1003 |
+
|
1004 |
+
#: ../core/fields/image.php:495
|
1005 |
+
msgid "Select Image"
|
1006 |
+
msgstr "Wybierz obrazek"
|
1007 |
+
|
1008 |
+
#: ../core/fields/page_link.php:21
|
1009 |
+
msgid "Page Link"
|
1010 |
+
msgstr "Link do strony"
|
1011 |
+
|
1012 |
+
#: ../core/fields/page_link.php:71
|
1013 |
+
#: ../core/fields/post_object.php:64
|
1014 |
+
#: ../core/fields/select.php:21
|
1015 |
+
msgid "Select"
|
1016 |
+
msgstr "Przycisk wyboru (dropdown)"
|
1017 |
+
|
1018 |
+
#: ../core/fields/page_link.php:195
|
1019 |
+
msgid ""
|
1020 |
+
"Filter posts by selecting a post type<br />\n"
|
1021 |
+
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
1022 |
+
msgstr ""
|
1023 |
+
"Filtruj wpisy wybierając typ wpisu<br />\n"
|
1024 |
+
"\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje wyświetlenie wszystkich"
|
1025 |
+
|
1026 |
+
#: ../core/fields/page_link.php:200
|
1027 |
+
#: ../core/fields/post_object.php:213
|
1028 |
+
#: ../core/fields/post_object.php:237
|
1029 |
+
#: ../core/fields/relationship.php:250
|
1030 |
+
#: ../core/fields/relationship.php:301
|
1031 |
+
msgid "All"
|
1032 |
+
msgstr "Wszystkie"
|
1033 |
+
|
1034 |
+
#: ../core/fields/page_link.php:223
|
1035 |
+
#: ../core/fields/post_object.php:281
|
1036 |
+
#: ../core/fields/select.php:194
|
1037 |
+
msgid "Allow Null?"
|
1038 |
+
msgstr "Zezwolić na pustą wartość?"
|
1039 |
+
|
1040 |
+
#: ../core/fields/page_link.php:232
|
1041 |
+
#: ../core/fields/page_link.php:251
|
1042 |
+
#: ../core/fields/post_object.php:290
|
1043 |
+
#: ../core/fields/post_object.php:309
|
1044 |
+
#: ../core/fields/select.php:203
|
1045 |
+
#: ../core/fields/select.php:222
|
1046 |
+
msgid "Yes"
|
1047 |
+
msgstr "Tak"
|
1048 |
+
|
1049 |
+
#: ../core/fields/page_link.php:233
|
1050 |
+
#: ../core/fields/page_link.php:252
|
1051 |
+
#: ../core/fields/post_object.php:291
|
1052 |
+
#: ../core/fields/post_object.php:310
|
1053 |
+
#: ../core/fields/select.php:204
|
1054 |
+
#: ../core/fields/select.php:223
|
1055 |
+
msgid "No"
|
1056 |
+
msgstr "Nie"
|
1057 |
+
|
1058 |
+
#: ../core/fields/page_link.php:242
|
1059 |
+
#: ../core/fields/post_object.php:300
|
1060 |
+
#: ../core/fields/select.php:213
|
1061 |
+
msgid "Select multiple values?"
|
1062 |
+
msgstr "Możliwość wyboru wielu wartości?"
|
1063 |
+
|
1064 |
+
#: ../core/fields/post_object.php:21
|
1065 |
+
msgid "Post Object"
|
1066 |
+
msgstr "Wpisy"
|
1067 |
+
|
1068 |
+
#: ../core/fields/post_object.php:231
|
1069 |
+
#: ../core/fields/relationship.php:295
|
1070 |
+
msgid "Filter from Taxonomy"
|
1071 |
+
msgstr "Filtruj wg taksonomii"
|
1072 |
+
|
1073 |
+
#: ../core/fields/radio.php:21
|
1074 |
+
msgid "Radio Button"
|
1075 |
+
msgstr "Przycisk wyboru (radio)"
|
1076 |
+
|
1077 |
+
#: ../core/fields/radio.php:130
|
1078 |
+
#: ../core/fields/select.php:180
|
1079 |
+
#: ../core/fields/text.php:61
|
1080 |
+
#: ../core/fields/textarea.php:62
|
1081 |
+
msgid "Default Value"
|
1082 |
+
msgstr "Domyślna wartość"
|
1083 |
+
|
1084 |
+
#: ../core/fields/radio.php:154
|
1085 |
+
msgid "Vertical"
|
1086 |
+
msgstr "Pionowe"
|
1087 |
+
|
1088 |
+
#: ../core/fields/radio.php:155
|
1089 |
+
msgid "Horizontal"
|
1090 |
+
msgstr "Poziome"
|
1091 |
+
|
1092 |
+
#: ../core/fields/relationship.php:21
|
1093 |
+
msgid "Relationship"
|
1094 |
+
msgstr "Relacja"
|
1095 |
+
|
1096 |
+
#: ../core/fields/relationship.php:134
|
1097 |
+
msgid "Search"
|
1098 |
+
msgstr "Szukaj"
|
1099 |
+
|
1100 |
+
#: ../core/fields/relationship.php:318
|
1101 |
+
msgid "Maximum posts"
|
1102 |
+
msgstr "Maksymalna liczba wpisów"
|
1103 |
+
|
1104 |
+
#: ../core/fields/relationship.php:319
|
1105 |
+
msgid "Set to -1 for infinite"
|
1106 |
+
msgstr "Wpisanie -1 oznacza nieskończoność"
|
1107 |
+
|
1108 |
+
#: ../core/fields/repeater.php:207
|
1109 |
+
msgid "Repeater Fields"
|
1110 |
+
msgstr "Pola powtarzalne"
|
1111 |
+
|
1112 |
+
#: ../core/fields/repeater.php:341
|
1113 |
+
msgid "Row Limit"
|
1114 |
+
msgstr "Limit rzędów"
|
1115 |
+
|
1116 |
+
#: ../core/fields/repeater.php:365
|
1117 |
+
msgid "Table (default)"
|
1118 |
+
msgstr "Tabela (domyślne)"
|
1119 |
+
|
1120 |
+
#: ../core/fields/text.php:21
|
1121 |
+
msgid "Text"
|
1122 |
+
msgstr "Tekst"
|
1123 |
+
|
1124 |
+
#: ../core/fields/text.php:75
|
1125 |
+
#: ../core/fields/textarea.php:76
|
1126 |
+
msgid "Formatting"
|
1127 |
+
msgstr "Formatowanie"
|
1128 |
+
|
1129 |
+
#: ../core/fields/text.php:76
|
1130 |
+
msgid "Define how to render html tags"
|
1131 |
+
msgstr "Określ jak traktować znaczniki HTML"
|
1132 |
+
|
1133 |
+
#: ../core/fields/text.php:85
|
1134 |
+
#: ../core/fields/textarea.php:86
|
1135 |
+
msgid "None"
|
1136 |
+
msgstr "Brak"
|
1137 |
+
|
1138 |
+
#: ../core/fields/text.php:86
|
1139 |
+
#: ../core/fields/textarea.php:88
|
1140 |
+
msgid "HTML"
|
1141 |
+
msgstr "HTML"
|
1142 |
+
|
1143 |
+
#: ../core/fields/textarea.php:21
|
1144 |
+
msgid "Text Area"
|
1145 |
+
msgstr "Obszar tekstowy"
|
1146 |
+
|
1147 |
+
#: ../core/fields/textarea.php:77
|
1148 |
+
msgid "Define how to render html tags / new lines"
|
1149 |
+
msgstr "Określ jak traktować znaczniki HTML / nowe wiersze"
|
1150 |
+
|
1151 |
+
#: ../core/fields/textarea.php:87
|
1152 |
+
msgid "auto <br />"
|
1153 |
+
msgstr "auto <br />"
|
1154 |
+
|
1155 |
+
#: ../core/fields/true_false.php:21
|
1156 |
+
msgid "True / False"
|
1157 |
+
msgstr "Prawda / Fałsz"
|
1158 |
+
|
1159 |
+
#: ../core/fields/true_false.php:68
|
1160 |
+
msgid "Message"
|
1161 |
+
msgstr "Komunikat"
|
1162 |
+
|
1163 |
+
#: ../core/fields/true_false.php:69
|
1164 |
+
msgid "eg. Show extra content"
|
1165 |
+
msgstr "np. Wyświetl dodatkową treść"
|
1166 |
+
|
1167 |
+
#: ../core/fields/wysiwyg.php:21
|
1168 |
+
msgid "Wysiwyg Editor"
|
1169 |
+
msgstr "Edytor WYSIWYG"
|
1170 |
+
|
1171 |
+
#: ../core/fields/wysiwyg.php:131
|
1172 |
+
msgid "Toolbar"
|
1173 |
+
msgstr "Pasek narzędzi"
|
1174 |
+
|
1175 |
+
#: ../core/fields/wysiwyg.php:150
|
1176 |
+
msgid "Show Media Upload Buttons?"
|
1177 |
+
msgstr "Wyświetlić przyciski Wyślij / Wstaw?"
|
1178 |
+
|
1179 |
+
#: ../core/fields/date_picker/date_picker.php:21
|
1180 |
+
msgid "Date Picker"
|
1181 |
+
msgstr "Wybór daty"
|
1182 |
+
|
1183 |
+
#: ../core/fields/date_picker/date_picker.php:82
|
1184 |
+
msgid "Date format"
|
1185 |
+
msgstr "Format daty"
|
1186 |
+
|
1187 |
+
#: ../core/fields/date_picker/date_picker.php:83
|
1188 |
+
msgid "eg. dd/mm/yy. read more about"
|
1189 |
+
msgstr "np. dd/mm/rr. czytaj więcej"
|
1190 |
+
|
1191 |
+
#~ msgid ""
|
1192 |
+
#~ "Enter your choices one per line<br />\n"
|
1193 |
+
#~ "\t\t\t\t<br />\n"
|
1194 |
+
#~ "\t\t\t\tRed<br />\n"
|
1195 |
+
#~ "\t\t\t\tBlue<br />\n"
|
1196 |
+
#~ "\t\t\t\t<br />\n"
|
1197 |
+
#~ "\t\t\t\tor<br />\n"
|
1198 |
+
#~ "\t\t\t\t<br />\n"
|
1199 |
+
#~ "\t\t\t\tred : Red<br />\n"
|
1200 |
+
#~ "\t\t\t\tblue : Blue"
|
1201 |
+
#~ msgstr ""
|
1202 |
+
#~ "Wpisz dostęne opcje, każdy w odrębnym rzędzie<br />\n"
|
1203 |
+
#~ "\t\t\t\t<br />\n"
|
1204 |
+
#~ "\t\t\t\tCzerwony<br />\n"
|
1205 |
+
#~ "\t\t\t\tNiebieski<br />\n"
|
1206 |
+
#~ "\t\t\t\t<br />\n"
|
1207 |
+
#~ "\t\t\t\tor<br />\n"
|
1208 |
+
#~ "\t\t\t\t<br />\n"
|
1209 |
+
#~ "\t\t\t\tczerwony : Czerwony<br />\n"
|
1210 |
+
#~ "\t\t\t\tniebieski : Niebieski"
|
1211 |
+
|
1212 |
+
#~ msgid "or"
|
1213 |
+
#~ msgstr "lub"
|
1214 |
+
|
1215 |
+
#~ msgid "Hide this edit screen"
|
1216 |
+
#~ msgstr "Ukryj ten ekran edycji"
|
1217 |
+
|
1218 |
+
#~ msgid "continue editing ACF"
|
1219 |
+
#~ msgstr "kontynuuj edycję"
|
1220 |
+
|
1221 |
+
#~ msgid "Click the \"add row\" button below to start creating your layout"
|
1222 |
+
#~ msgstr "Kliknij przycisk \"dodaj rząd\" poniżej, aby zacząć tworzyć szablon"
|
1223 |
+
|
1224 |
+
#~ msgid "Adv Upgrade"
|
1225 |
+
#~ msgstr "Zaawansowana aktualizacja"
|
1226 |
+
|
1227 |
+
#~ msgid "Advanced Custom Fields"
|
1228 |
+
#~ msgstr "Zaawansowane Włąsne Pola"
|
lang/acf.pot
CHANGED
@@ -4,7 +4,7 @@ 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: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,61 +12,61 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: acf.php:
|
16 |
msgid "Custom Fields"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: acf.php:
|
20 |
msgid "Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: acf.php:
|
24 |
msgid "Upgrade"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: acf.php:
|
28 |
msgid "Fields"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: acf.php:
|
32 |
msgid "Location"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: acf.php:
|
36 |
msgid "Add Fields to Edit Screens"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: acf.php:
|
40 |
#: core/options_page.php:74
|
41 |
msgid "Options"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: acf.php:
|
45 |
msgid "Customise the edit page"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: acf.php:
|
49 |
#: core/options_page.php:182
|
50 |
msgid "Validation Failed. One or more fields below are required."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: acf.php:
|
54 |
msgid "Error: Field Type does not exist!"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: acf.php:
|
58 |
msgid "required"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: acf.php:
|
62 |
msgid "Parent Page"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: acf.php:
|
66 |
msgid "Child Page"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: acf.php:
|
70 |
msgid "Default Template"
|
71 |
msgstr ""
|
72 |
|
@@ -143,7 +143,7 @@ msgstr ""
|
|
143 |
msgid "Field Groups"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: core/actions/init.php:117 core/fields/flexible_content.php:
|
147 |
msgid "Add New"
|
148 |
msgstr ""
|
149 |
|
@@ -175,12 +175,49 @@ msgstr ""
|
|
175 |
msgid "No Field Groups found in Trash"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: core/actions/init.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Title"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: core/admin/meta_box_fields.php:17 core/fields/flexible_content.php:
|
183 |
-
#: core/fields/repeater.php:
|
184 |
msgid "New Field"
|
185 |
msgstr ""
|
186 |
|
@@ -188,27 +225,27 @@ msgstr ""
|
|
188 |
msgid "Move to trash. Are you sure?"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: core/admin/meta_box_fields.php:50 core/fields/flexible_content.php:
|
192 |
-
#: core/fields/repeater.php:
|
193 |
msgid "Field Order"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: core/admin/meta_box_fields.php:51 core/admin/meta_box_fields.php:
|
197 |
-
#: core/fields/flexible_content.php:
|
198 |
-
#: core/fields/repeater.php:
|
199 |
msgid "Field Label"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: core/admin/meta_box_fields.php:52 core/admin/meta_box_fields.php:
|
203 |
-
#: core/fields/flexible_content.php:
|
204 |
-
#: core/fields/repeater.php:
|
205 |
msgid "Field Name"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: core/admin/meta_box_fields.php:53 core/admin/meta_box_fields.php:
|
209 |
-
#: core/admin/page_settings.php:44 core/fields/flexible_content.php:
|
210 |
-
#: core/fields/flexible_content.php:
|
211 |
-
#: core/fields/repeater.php:
|
212 |
msgid "Field Type"
|
213 |
msgstr ""
|
214 |
|
@@ -219,67 +256,84 @@ msgid ""
|
|
219 |
msgstr ""
|
220 |
|
221 |
#: core/admin/meta_box_fields.php:71 core/admin/meta_box_fields.php:74
|
222 |
-
#: core/fields/flexible_content.php:
|
223 |
-
#: core/fields/repeater.php:
|
224 |
msgid "Edit this Field"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: core/admin/meta_box_fields.php:74 core/fields/flexible_content.php:
|
228 |
-
#: core/fields/repeater.php:
|
229 |
msgid "Edit"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: core/admin/meta_box_fields.php:75
|
|
|
233 |
msgid "Read documentation for this field"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: core/admin/meta_box_fields.php:75
|
|
|
237 |
msgid "Docs"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:
|
241 |
-
#: core/fields/repeater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgid "Delete this Field"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: core/admin/meta_box_fields.php:
|
246 |
-
#: core/fields/flexible_content.php:
|
247 |
msgid "Delete"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: core/admin/meta_box_fields.php:
|
251 |
-
#: core/fields/repeater.php:
|
252 |
msgid "This is the name which will appear on the EDIT page"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: core/admin/meta_box_fields.php:
|
256 |
-
#: core/fields/repeater.php:
|
257 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: core/admin/meta_box_fields.php:
|
261 |
msgid "Field Instructions"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: core/admin/meta_box_fields.php:
|
265 |
msgid "Instructions for authors. Shown when submitting data"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: core/admin/meta_box_fields.php:
|
269 |
msgid "Required?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: core/admin/meta_box_fields.php:
|
273 |
-
#: core/fields/repeater.php:
|
274 |
msgid "Save Field"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: core/admin/meta_box_fields.php:
|
278 |
-
#: core/fields/repeater.php:
|
279 |
msgid "Close Field"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: core/admin/meta_box_fields.php:190
|
|
|
|
|
|
|
|
|
|
|
283 |
msgid "+ Add Field"
|
284 |
msgstr ""
|
285 |
|
@@ -738,66 +792,66 @@ msgstr ""
|
|
738 |
msgid "Flexible Content"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: core/fields/flexible_content.php:38 core/fields/flexible_content.php:
|
742 |
-
#: core/fields/repeater.php:65 core/fields/repeater.php:
|
743 |
msgid "+ Add Row"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: core/fields/flexible_content.php:
|
747 |
-
#: core/fields/repeater.php:
|
748 |
msgid "Layout"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: core/fields/flexible_content.php:
|
752 |
msgid "Reorder Layout"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/fields/flexible_content.php:
|
756 |
msgid "Reorder"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: core/fields/flexible_content.php:
|
760 |
msgid "Add New Layout"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: core/fields/flexible_content.php:
|
764 |
msgid "Delete Layout"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: core/fields/flexible_content.php:
|
768 |
msgid "Label"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: core/fields/flexible_content.php:
|
772 |
msgid "Name"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: core/fields/flexible_content.php:
|
776 |
msgid "Display"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: core/fields/flexible_content.php:
|
780 |
msgid "Table"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: core/fields/flexible_content.php:
|
784 |
msgid "Row"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: core/fields/flexible_content.php:
|
788 |
msgid ""
|
789 |
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: core/fields/flexible_content.php:
|
793 |
msgid "Close Sub Field"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: core/fields/flexible_content.php:
|
797 |
msgid "+ Add Sub Field"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: core/fields/flexible_content.php:
|
801 |
msgid "Button Label"
|
802 |
msgstr ""
|
803 |
|
@@ -943,15 +997,15 @@ msgstr ""
|
|
943 |
msgid "Repeater"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: core/fields/repeater.php:
|
947 |
msgid "Repeater Fields"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: core/fields/repeater.php:
|
951 |
msgid "Row Limit"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: core/fields/repeater.php:
|
955 |
msgid "Table (default)"
|
956 |
msgstr ""
|
957 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: acf.php:289 core/admin/meta_box_options.php:83
|
16 |
msgid "Custom Fields"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: acf.php:290
|
20 |
msgid "Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: acf.php:291
|
24 |
msgid "Upgrade"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: acf.php:503
|
28 |
msgid "Fields"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: acf.php:504
|
32 |
msgid "Location"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: acf.php:504
|
36 |
msgid "Add Fields to Edit Screens"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: acf.php:505 core/admin/meta_box_location.php:133 core/options_page.php:62
|
40 |
#: core/options_page.php:74
|
41 |
msgid "Options"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: acf.php:505
|
45 |
msgid "Customise the edit page"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: acf.php:533 core/api.php:503 core/everything_fields.php:202
|
49 |
#: core/options_page.php:182
|
50 |
msgid "Validation Failed. One or more fields below are required."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: acf.php:859
|
54 |
msgid "Error: Field Type does not exist!"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: acf.php:2086
|
58 |
msgid "required"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: acf.php:2184
|
62 |
msgid "Parent Page"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: acf.php:2185
|
66 |
msgid "Child Page"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: acf.php:2193
|
70 |
msgid "Default Template"
|
71 |
msgstr ""
|
72 |
|
143 |
msgid "Field Groups"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: core/actions/init.php:117 core/fields/flexible_content.php:257
|
147 |
msgid "Add New"
|
148 |
msgstr ""
|
149 |
|
175 |
msgid "No Field Groups found in Trash"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: core/actions/init.php:153 core/actions/init.php:156
|
179 |
+
msgid "Field group updated."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: core/actions/init.php:154
|
183 |
+
msgid "Custom field updated."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: core/actions/init.php:155
|
187 |
+
msgid "Custom field deleted."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#. translators: %s: date and time of the revision
|
191 |
+
#: core/actions/init.php:158
|
192 |
+
msgid "Field group restored to revision from %s"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: core/actions/init.php:159
|
196 |
+
msgid "Field group published."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: core/actions/init.php:160
|
200 |
+
msgid "Field group saved."
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: core/actions/init.php:161
|
204 |
+
msgid "Field group submitted."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: core/actions/init.php:162
|
208 |
+
msgid "Field group scheduled for."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: core/actions/init.php:163
|
212 |
+
msgid "Field group draft updated."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: core/actions/init.php:181
|
216 |
msgid "Title"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: core/admin/meta_box_fields.php:17 core/fields/flexible_content.php:245
|
220 |
+
#: core/fields/repeater.php:218
|
221 |
msgid "New Field"
|
222 |
msgstr ""
|
223 |
|
225 |
msgid "Move to trash. Are you sure?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: core/admin/meta_box_fields.php:50 core/fields/flexible_content.php:309
|
229 |
+
#: core/fields/repeater.php:244
|
230 |
msgid "Field Order"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: core/admin/meta_box_fields.php:51 core/admin/meta_box_fields.php:92
|
234 |
+
#: core/fields/flexible_content.php:310 core/fields/flexible_content.php:357
|
235 |
+
#: core/fields/repeater.php:245 core/fields/repeater.php:292
|
236 |
msgid "Field Label"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: core/admin/meta_box_fields.php:52 core/admin/meta_box_fields.php:108
|
240 |
+
#: core/fields/flexible_content.php:311 core/fields/flexible_content.php:373
|
241 |
+
#: core/fields/repeater.php:246 core/fields/repeater.php:308
|
242 |
msgid "Field Name"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: core/admin/meta_box_fields.php:53 core/admin/meta_box_fields.php:123
|
246 |
+
#: core/admin/page_settings.php:44 core/fields/flexible_content.php:312
|
247 |
+
#: core/fields/flexible_content.php:388 core/fields/repeater.php:247
|
248 |
+
#: core/fields/repeater.php:323
|
249 |
msgid "Field Type"
|
250 |
msgstr ""
|
251 |
|
256 |
msgstr ""
|
257 |
|
258 |
#: core/admin/meta_box_fields.php:71 core/admin/meta_box_fields.php:74
|
259 |
+
#: core/fields/flexible_content.php:336 core/fields/flexible_content.php:339
|
260 |
+
#: core/fields/repeater.php:270 core/fields/repeater.php:273
|
261 |
msgid "Edit this Field"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: core/admin/meta_box_fields.php:74 core/fields/flexible_content.php:339
|
265 |
+
#: core/fields/repeater.php:273
|
266 |
msgid "Edit"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
|
270 |
+
#: core/fields/repeater.php:274
|
271 |
msgid "Read documentation for this field"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
|
275 |
+
#: core/fields/repeater.php:274
|
276 |
msgid "Docs"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
|
280 |
+
#: core/fields/repeater.php:275
|
281 |
+
msgid "Duplicate this Field"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
|
285 |
+
#: core/fields/repeater.php:275
|
286 |
+
msgid "Duplicate"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:342
|
290 |
+
#: core/fields/repeater.php:276
|
291 |
msgid "Delete this Field"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:258
|
295 |
+
#: core/fields/flexible_content.php:342 core/fields/repeater.php:276
|
296 |
msgid "Delete"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: core/admin/meta_box_fields.php:93 core/fields/flexible_content.php:358
|
300 |
+
#: core/fields/repeater.php:293
|
301 |
msgid "This is the name which will appear on the EDIT page"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: core/admin/meta_box_fields.php:109 core/fields/flexible_content.php:374
|
305 |
+
#: core/fields/repeater.php:309
|
306 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: core/admin/meta_box_fields.php:136
|
310 |
msgid "Field Instructions"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: core/admin/meta_box_fields.php:137
|
314 |
msgid "Instructions for authors. Shown when submitting data"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: core/admin/meta_box_fields.php:149
|
318 |
msgid "Required?"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: core/admin/meta_box_fields.php:172 core/fields/flexible_content.php:408
|
322 |
+
#: core/fields/repeater.php:343
|
323 |
msgid "Save Field"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: core/admin/meta_box_fields.php:177 core/fields/flexible_content.php:413
|
327 |
+
#: core/fields/repeater.php:348
|
328 |
msgid "Close Field"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: core/admin/meta_box_fields.php:190 core/fields/flexible_content.php:427
|
332 |
+
#: core/fields/repeater.php:363
|
333 |
+
msgid "Drag and drop to reorder"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: core/admin/meta_box_fields.php:191
|
337 |
msgid "+ Add Field"
|
338 |
msgstr ""
|
339 |
|
792 |
msgid "Flexible Content"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: core/fields/flexible_content.php:38 core/fields/flexible_content.php:218
|
796 |
+
#: core/fields/repeater.php:65 core/fields/repeater.php:213
|
797 |
msgid "+ Add Row"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: core/fields/flexible_content.php:254 core/fields/radio.php:144
|
801 |
+
#: core/fields/repeater.php:386
|
802 |
msgid "Layout"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: core/fields/flexible_content.php:256
|
806 |
msgid "Reorder Layout"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: core/fields/flexible_content.php:256
|
810 |
msgid "Reorder"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: core/fields/flexible_content.php:257
|
814 |
msgid "Add New Layout"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: core/fields/flexible_content.php:258
|
818 |
msgid "Delete Layout"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: core/fields/flexible_content.php:268
|
822 |
msgid "Label"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: core/fields/flexible_content.php:278
|
826 |
msgid "Name"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: core/fields/flexible_content.php:288
|
830 |
msgid "Display"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: core/fields/flexible_content.php:295
|
834 |
msgid "Table"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: core/fields/flexible_content.php:296 core/fields/repeater.php:397
|
838 |
msgid "Row"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: core/fields/flexible_content.php:320 core/fields/repeater.php:255
|
842 |
msgid ""
|
843 |
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: core/fields/flexible_content.php:413 core/fields/repeater.php:348
|
847 |
msgid "Close Sub Field"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: core/fields/flexible_content.php:428 core/fields/repeater.php:364
|
851 |
msgid "+ Add Sub Field"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: core/fields/flexible_content.php:435 core/fields/repeater.php:405
|
855 |
msgid "Button Label"
|
856 |
msgstr ""
|
857 |
|
997 |
msgid "Repeater"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: core/fields/repeater.php:236
|
1001 |
msgid "Repeater Fields"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: core/fields/repeater.php:372
|
1005 |
msgid "Row Limit"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: core/fields/repeater.php:396
|
1009 |
msgid "Table (default)"
|
1010 |
msgstr ""
|
1011 |
|
readme.txt
CHANGED
@@ -85,6 +85,21 @@ http://www.advancedcustomfields.com/support/
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 3.1.8 =
|
89 |
* Options page fields now save their data in the wp_options table. This will require a "Database Upgrade" when you update ACF. This upgrade will move your Options page data from the postmeta table to the options table.
|
90 |
* Added _e() and __() functions to more text throughout plugin
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 3.1.9 =
|
89 |
+
* Updated Images / JS - Please hard refresh your browser to clear your cache
|
90 |
+
* Remove caching from acf_field_groups, replace with temp cache
|
91 |
+
* Add "Duplicate Field" on field group edit page
|
92 |
+
* Fix link to documentation on field group edit page
|
93 |
+
* add "update_value" to API
|
94 |
+
* Include new Polish translation
|
95 |
+
* Create a nicer style for flexible content
|
96 |
+
* Create a nicer style for repeater fields with row layout
|
97 |
+
* Create a nicer style for "no metabox" fields
|
98 |
+
* Add Spanish translation. Thanks to @hectorgarrofe
|
99 |
+
* Fix css for options page no metabox
|
100 |
+
* Added custom post_updated_messages
|
101 |
+
* Changed "Drag and drop to reorder" from an image to a string for translation
|
102 |
+
|
103 |
= 3.1.8 =
|
104 |
* Options page fields now save their data in the wp_options table. This will require a "Database Upgrade" when you update ACF. This upgrade will move your Options page data from the postmeta table to the options table.
|
105 |
* Added _e() and __() functions to more text throughout plugin
|