Version Description
- Relationship field: Fixed bug preventing values from being selected in WP 4.5
- Google Map field: Fixed bug preventing map to load within repeater field
- Core: Fixed PHP error when loading ACF values on 'The Events Calendar' (plugin) page
- Language: Updated Portuguese translation - thanks to Pedro Mendonca
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.4.7 |
Comparing to | |
See all releases |
Code changes from version 4.4.6 to 4.4.7
- README.md +0 -11
- acf.php +46 -27
- core/fields/file.php +1 -1
- core/fields/image.php +1 -1
- core/fields/relationship.php +1 -7
- js/input.js +17 -9
- js/input.min.js +2 -2
- js/input/google-map.js +9 -1
- js/input/relationship.js +8 -8
- lang/acf-pt_PT.mo +0 -0
- lang/acf-pt_PT.po +179 -167
- lang/acf.pot +157 -139
- readme.txt +8 -2
README.md
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
# Advanced Custom Fields
|
2 |
-
|
3 |
-
Welcome to the official repository for Advanced Custom Fields WordPress plugin.
|
4 |
-
|
5 |
-
-----------------------
|
6 |
-
|
7 |
-
* Readme : https://github.com/elliotcondon/acf/blob/master/readme.txt
|
8 |
-
* WordPress repository: https://wordpress.org/plugins/advanced-custom-fields/
|
9 |
-
* Website : http://www.advancedcustomfields.com/
|
10 |
-
* Documentation: http://www.advancedcustomfields.com/resources/
|
11 |
-
* Support: http://support.advancedcustomfields.com/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields
|
6 |
-
Version: 4.4.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -43,7 +43,7 @@ class acf
|
|
43 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
44 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
45 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
46 |
-
'version' => '4.4.
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
@@ -159,8 +159,8 @@ class acf
|
|
159 |
* @return {mixed} $post_id
|
160 |
*/
|
161 |
|
162 |
-
function get_post_id( $post_id )
|
163 |
-
|
164 |
// if not $post_id, load queried object
|
165 |
if( !$post_id ) {
|
166 |
|
@@ -178,28 +178,44 @@ class acf
|
|
178 |
}
|
179 |
|
180 |
|
181 |
-
//
|
182 |
-
if( $post_id
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
// object
|
189 |
-
if( is_object($post_id) )
|
190 |
-
{
|
191 |
-
if( isset($post_id->roles, $post_id->ID) )
|
192 |
-
{
|
193 |
$post_id = 'user_' . $post_id->ID;
|
194 |
-
|
195 |
-
|
196 |
-
{
|
|
|
197 |
$post_id = $post_id->taxonomy . '_' . $post_id->term_id;
|
198 |
-
|
199 |
-
|
200 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
$post_id = $post_id->ID;
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
}
|
204 |
|
205 |
|
@@ -214,13 +230,16 @@ class acf
|
|
214 |
* the user wants to load data from a completely different post_id
|
215 |
*/
|
216 |
|
217 |
-
if( isset($_GET['preview_id']) )
|
218 |
-
|
219 |
$autosave = wp_get_post_autosave( $_GET['preview_id'] );
|
220 |
-
|
221 |
-
{
|
222 |
-
|
|
|
|
|
223 |
}
|
|
|
224 |
}
|
225 |
|
226 |
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields
|
6 |
+
Version: 4.4.7
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
43 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
44 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
45 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
46 |
+
'version' => '4.4.7',
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
159 |
* @return {mixed} $post_id
|
160 |
*/
|
161 |
|
162 |
+
function get_post_id( $post_id ) {
|
163 |
+
|
164 |
// if not $post_id, load queried object
|
165 |
if( !$post_id ) {
|
166 |
|
178 |
}
|
179 |
|
180 |
|
181 |
+
// $post_id may be an object
|
182 |
+
if( is_object($post_id) ) {
|
183 |
+
|
184 |
+
// user
|
185 |
+
if( isset($post_id->roles, $post_id->ID) ) {
|
186 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
$post_id = 'user_' . $post_id->ID;
|
188 |
+
|
189 |
+
// term
|
190 |
+
} elseif( isset($post_id->taxonomy, $post_id->term_id) ) {
|
191 |
+
|
192 |
$post_id = $post_id->taxonomy . '_' . $post_id->term_id;
|
193 |
+
|
194 |
+
// comment
|
195 |
+
} elseif( isset($post_id->comment_ID) ) {
|
196 |
+
|
197 |
+
$post_id = 'comment_' . $post_id->comment_ID;
|
198 |
+
|
199 |
+
// post
|
200 |
+
} elseif( isset($post_id->ID) ) {
|
201 |
+
|
202 |
$post_id = $post_id->ID;
|
203 |
+
|
204 |
+
// default
|
205 |
+
} else {
|
206 |
+
|
207 |
+
$post_id = 0;
|
208 |
+
|
209 |
}
|
210 |
+
|
211 |
+
}
|
212 |
+
|
213 |
+
|
214 |
+
// allow for option == options
|
215 |
+
if( $post_id === 'option' ) {
|
216 |
+
|
217 |
+
$post_id = 'options';
|
218 |
+
|
219 |
}
|
220 |
|
221 |
|
230 |
* the user wants to load data from a completely different post_id
|
231 |
*/
|
232 |
|
233 |
+
if( isset($_GET['preview_id']) ) {
|
234 |
+
|
235 |
$autosave = wp_get_post_autosave( $_GET['preview_id'] );
|
236 |
+
|
237 |
+
if( $autosave && $autosave->post_parent == $post_id ) {
|
238 |
+
|
239 |
+
$post_id = (int) $autosave->ID;
|
240 |
+
|
241 |
}
|
242 |
+
|
243 |
}
|
244 |
|
245 |
|
core/fields/file.php
CHANGED
@@ -26,7 +26,7 @@ class acf_field_file extends acf_field
|
|
26 |
'select' => __("Select File",'acf'),
|
27 |
'edit' => __("Edit File",'acf'),
|
28 |
'update' => __("Update File",'acf'),
|
29 |
-
'uploadedTo' => __("
|
30 |
);
|
31 |
|
32 |
|
26 |
'select' => __("Select File",'acf'),
|
27 |
'edit' => __("Edit File",'acf'),
|
28 |
'update' => __("Update File",'acf'),
|
29 |
+
'uploadedTo' => __("Uploaded to this post",'acf'),
|
30 |
);
|
31 |
|
32 |
|
core/fields/image.php
CHANGED
@@ -27,7 +27,7 @@ class acf_field_image extends acf_field
|
|
27 |
'select' => __("Select Image",'acf'),
|
28 |
'edit' => __("Edit Image",'acf'),
|
29 |
'update' => __("Update Image",'acf'),
|
30 |
-
'uploadedTo' => __("
|
31 |
);
|
32 |
|
33 |
|
27 |
'select' => __("Select Image",'acf'),
|
28 |
'edit' => __("Edit Image",'acf'),
|
29 |
'update' => __("Update Image",'acf'),
|
30 |
+
'uploadedTo' => __("Uploaded to this post",'acf'),
|
31 |
);
|
32 |
|
33 |
|
core/fields/relationship.php
CHANGED
@@ -26,13 +26,7 @@ class acf_field_relationship extends acf_field
|
|
26 |
'return_format' => 'object'
|
27 |
);
|
28 |
$this->l10n = array(
|
29 |
-
'max' => __("Maximum values reached ( {max} values )",'acf')
|
30 |
-
'tmpl_li' => '
|
31 |
-
<li>
|
32 |
-
<a href="#" data-post_id="<%= post_id %>"><%= title %><span class="acf-button-remove"></span></a>
|
33 |
-
<input type="hidden" name="<%= name %>[]" value="<%= post_id %>" />
|
34 |
-
</li>
|
35 |
-
'
|
36 |
);
|
37 |
|
38 |
|
26 |
'return_format' => 'object'
|
27 |
);
|
28 |
$this->l10n = array(
|
29 |
+
'max' => __("Maximum values reached ( {max} values )",'acf')
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
);
|
31 |
|
32 |
|
js/input.js
CHANGED
@@ -1889,7 +1889,7 @@ var acf = {
|
|
1889 |
|
1890 |
|
1891 |
// find input
|
1892 |
-
this.$input = this.$el.find('.
|
1893 |
|
1894 |
|
1895 |
// get options
|
@@ -2317,6 +2317,14 @@ var acf = {
|
|
2317 |
}
|
2318 |
|
2319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2320 |
// return
|
2321 |
return true;
|
2322 |
|
@@ -3110,17 +3118,17 @@ var acf = {
|
|
3110 |
|
3111 |
|
3112 |
// template
|
3113 |
-
var
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
|
3121 |
|
3122 |
// add new li
|
3123 |
-
this.$right.find('.relationship_list').append(
|
3124 |
|
3125 |
|
3126 |
// trigger change on new_li
|
1889 |
|
1890 |
|
1891 |
// find input
|
1892 |
+
this.$input = this.$el.find('.input-address');
|
1893 |
|
1894 |
|
1895 |
// get options
|
2317 |
}
|
2318 |
|
2319 |
|
2320 |
+
// google exists
|
2321 |
+
$fields.each(function(){
|
2322 |
+
|
2323 |
+
acf.fields.google_map.set({ $el : $(this) }).init();
|
2324 |
+
|
2325 |
+
});
|
2326 |
+
|
2327 |
+
|
2328 |
// return
|
2329 |
return true;
|
2330 |
|
3118 |
|
3119 |
|
3120 |
// template
|
3121 |
+
var html = [
|
3122 |
+
'<li>',
|
3123 |
+
'<a href="#" data-post_id="' + $a.attr('data-post_id') + '">',
|
3124 |
+
$a.html() + '<span class="acf-button-remove"></span>',
|
3125 |
+
'</a>',
|
3126 |
+
'<input type="hidden" name="' + this.$input.attr('name') + '[]" value="' + $a.attr('data-post_id') + '" />',
|
3127 |
+
'</li>'].join('');
|
3128 |
|
3129 |
|
3130 |
// add new li
|
3131 |
+
this.$right.find('.relationship_list').append( html )
|
3132 |
|
3133 |
|
3134 |
// trigger change on new_li
|
js/input.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
var acf={ajaxurl:"",admin_url:"",wp_version:"",post_id:0,nonce:"",l10n:null,o:null,helpers:{get_atts:null,version_compare:null,uniqid:null,sortable:null,add_message:null,is_clone_field:null,url_to_object:null},validation:null,conditional_logic:null,media:null,fields:{date_picker:null,color_picker:null,Image:null,file:null,wysiwyg:null,gallery:null,relationship:null}};!function($){acf.helpers.isset=function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;i<t;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},acf.helpers.get_atts=function(e){var t={};return $.each(e[0].attributes,function(e,i){"data-"==i.name.substr(0,5)&&(t[i.name.replace("data-","")]=i.value)}),t},acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;for(var i=e.split("."),a=t.split("."),n=0,s=Math.max(i.length,a.length);s>n;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])<parseInt(a[n]))return-1}return 0},acf.helpers.uniqid=function(){var e=new Date;return e.getTime()},acf.helpers.url_to_object=function(e){var t={},a=e.split("&");for(i in a){var n=a[i].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return t},acf.helpers.sortable=function(e,t){return t.children().each(function(){$(this).width($(this).width())}),t},acf.helpers.is_clone_field=function(e){return e.attr("name")&&-1!=e.attr("name").indexOf("[acfcloneindex]")?!0:!1},acf.helpers.add_message=function(e,t){var e=$('<div class="acf-message-wrapper"><div class="message updated"><p>'+e+"</p></div></div>");t.prepend(e),setTimeout(function(){e.animate({opacity:0},250,function(){e.remove()})},1500)},$.fn.exists=function(){return $(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var e=wp.media.view.AttachmentCompat.prototype;e.orig_render=e.render,e.orig_dispose=e.dispose,e.className="compat-item acf_postbox no_box",e.render=function(){var e=this;return e.ignore_render?this:(this.orig_render(),setTimeout(function(){var t=e.$el.closest(".media-modal");if(!t.hasClass("acf-media-modal")&&!t.find(".media-frame-router .acf-expand-details").exists()){var i=$(['<a href="#" class="acf-expand-details">','<span class="icon"></span>','<span class="is-closed">'+acf.l10n.core.expand_details+"</span>",'<span class="is-open">'+acf.l10n.core.collapse_details+"</span>","</a>"].join(""));i.on("click",function(e){e.preventDefault(),t.hasClass("acf-expanded")?t.removeClass("acf-expanded"):t.addClass("acf-expanded")}),t.find(".media-frame-router").append(i)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){$(document).trigger("acf/setup_fields",[e.$el])},50),this)},e.dispose=function(){$(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},e.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var e=this;$(document).on("change",".field input, .field textarea, .field select",function(){$("#acf-has-changed").exists()&&$("#acf-has-changed").val(1),e.change($(this))}),$(document).on("acf/setup_fields",function(t,i){e.refresh($(i))}),e.refresh()},change:function(e){var t=this,i=e.closest(".field"),a=i.attr("data-field_key");$.each(this.items,function(e,i){$.each(i.rules,function(e,n){n.field==a&&t.refresh_field(i)})})},refresh_field:function(e){var t=this,i=$(".field_key-"+e.field);i.each(function(){var i=!0;"any"==e.allorany&&(i=!1);var a=$(this),n=!0;$.each(e.rules,function(s,o){var l=$(".field_key-"+o.field);l.hasClass("sub_field")&&(l=a.siblings(".field_key-"+o.field),n=!1,l.exists()||(a.parents("tr").each(function(){return l=$(this).find(".field_key-"+o.field),l.exists()?!1:void 0}),n=!0));var r=a.parent("tr").parent().parent("table").parent(".layout");r.exists()&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest(".layout").find("td.field_key-"+o.field)));var r=a.parent("tr").parent().parent("table").parent(".repeater");r.exists()&&"1"==r.attr("data-max_rows")&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest("table").find("td.field_key-"+o.field)));var c=t.calculate(o,l,a);if("all"==e.allorany){if(0==c)return i=!1,!1}else if(1==c)return i=!0,!1}),a.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),i?(a.find("input, textarea, select").removeAttr("disabled"),a.addClass("acf-conditional_logic-show"),$(document).trigger("acf/conditional_logic/show",[a,e])):(a.find("input, textarea, select").attr("disabled","disabled"),a.addClass("acf-conditional_logic-hide"),n||a.addClass("acf-show-blank"),$(document).trigger("acf/conditional_logic/hide",[a,e]))})},refresh:function(e){e=e||$("body");var t=this;$.each(this.items,function(i,a){$.each(a.rules,function(i,n){e.find('.field[data-field_key="'+a.field+'"]').exists()&&t.refresh_field(a)})})},calculate:function(e,t,i){var a=!1;if(t.hasClass("field_type-true_false")||t.hasClass("field_type-checkbox")||t.hasClass("field_type-radio")){var n=t.find('input[value="'+e.value+'"]:checked').exists();"=="==e.operator?n&&(a=!0):n||(a=!0)}else{var s=t.find("input, textarea, select").last().val();$.isArray(s)||(s=[s]),"=="==e.operator?$.inArray(e.value,s)>-1&&(a=!0):$.inArray(e.value,s)<0&&(a=!0)}return a}},$(document).ready(function(){acf.conditional_logic.init(),$(".acf_postbox > .inside > .options").each(function(){$(this).closest(".acf_postbox").addClass($(this).attr("data-layout"))}),$('#metakeyselect option[value^="field_"]').remove()}),$(window).load(function(){acf.media.init(),setTimeout(function(){try{$.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(e){}$(document).trigger("acf/setup_fields",[$("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function($){function e(){var e=[];$(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){$(this).is(":hidden")||$(this).is(":disabled")||$(this).closest(".media-frame").exists()||$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-load_save")||-1===e.indexOf($(this).val())&&e.push($(this).val())}),acf.screen.post_category=e,acf.screen.taxonomy=e,$(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},$(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,$("#icl-als-first").length>0){var e=$("#icl-als-first").children("a").attr("href"),t=new RegExp("lang=([^&#]*)"),i=t.exec(e);acf.screen.lang=i[1]}}),$(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&$.isNumeric(acf.screen.post_id)?void $.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(e){return e?($(".acf_postbox").addClass("acf-hidden"),$(".acf_postbox-toggle").addClass("acf-hidden"),0==e.length?!1:($.each(e,function(e,t){var i=$("#acf_"+t),a=$('#adv-settings .acf_postbox-toggle[for="acf_'+t+'-hide"]');i.removeClass("acf-hidden hide-if-js"),a.removeClass("acf-hidden"),a.find('input[type="checkbox"]').attr("checked","checked"),i.find(".acf-replace-with-fields").each(function(){var e=$(this);$.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:t,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e.replaceWith(t),$(document).trigger("acf/setup_fields",i)}})})}),void $.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:e[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(e){$("#acf_style").html(e)}}))):!1}}):!1}),$(document).on("change","#page_template",function(){acf.screen.page_template=$(this).val(),$(document).trigger("acf/update_field_groups")}),$(document).on("change","#parent_id",function(){var e=$(this).val();""!=e?(acf.screen.page_type="child",acf.screen.page_parent=e):(acf.screen.page_type="parent",acf.screen.page_parent=0),$(document).trigger("acf/update_field_groups")}),$(document).on("change",'#post-formats-select input[type="radio"]',function(){var e=$(this).val();"0"==e&&(e="standard"),acf.screen.post_format=e,$(document).trigger("acf/update_field_groups")}),$(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-save")||$(this).closest(".media-frame").exists()||setTimeout(function(){e()},1)})}(jQuery),function($){var e=acf.fields.color_picker={$el:null,$input:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};$(document).on("acf/setup_fields",function(t,i){$(i).find(".acf-color_picker").each(function(){e.set({$el:$(this)}).init()})})}(jQuery),function($){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var e=$.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(e),this.$input.datepicker("option","dateFormat",this.o.display_format),$("body > #ui-datepicker-div").length>0&&$("#ui-datepicker-div").wrap('<div class="ui-acf" />')}},blur:function(){this.$input.val()||this.$hidden.val("")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:$(this)}).init()})}),$(document).on("blur",'.acf-date_picker input[type="text"]',function(e){acf.fields.date_picker.set({$el:$(this).parent()}).blur()})}(jQuery),function($){var e=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-file-icon").attr("src",t.icon),i.find(".acf-file-title").text(t.title),i.find(".acf-file-name").text(t.name).attr("href",t.url),i.find(".acf-file-size").text(t.size),i.find(".acf-file-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?void("uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var t=0;selection.each(function(i){if(t++,t>1){var a=e.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),e.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},$(document).on("click",".acf-file-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).edit()}),$(document).on("click",".acf-file-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).remove()}),$(document).on("click",".acf-file-uploader .add-file",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function($){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find(".value"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},$(document).on("acf/setup_fields",function(e,t){return $fields=$(t).find(".acf-google-map"),$fields.exists()?acf.helpers.isset(window,"google","load")?acf.helpers.isset(window,"google","maps","places")?!0:(google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}),!1):($.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}})}),!1):!1}),$(document).on("click",".acf-google-map .acf-sprite-remove",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).clear(),$(this).blur()}),$(document).on("click",".acf-google-map .acf-sprite-locate",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).locate(),$(this).blur()}),$(document).on("click",".acf-google-map .title h4",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).edit()}),$(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),$(document).on("blur",".acf-google-map .search",function(e){var t=$(this).closest(".acf-google-map");t.find(".input-lat").val()&&t.addClass("active")}),$(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function($){var e=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-image-image").attr("src",t.url),i.find(".acf-image-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?($.each(i.filters,function(e,t){t.props.type="image"}),"uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),i.$el.find("option").each(function(){var e=$(this).attr("value");("uploaded"!=e||"all"!=t.o.library)&&-1===e.indexOf("image")&&$(this).remove()}),void i.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var i=0;selection.each(function(a){if(i++,i>1){var n=e.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),e.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[t.o.preview_size]&&(c.url=a.attributes.sizes[t.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},$(document).on("click",".acf-image-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).edit()}),$(document).on("click",".acf-image-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).remove()}),$(document).on("click",".acf-image-uploader .add-image",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function($){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},$(document).on("change",'.acf-radio-list input[type="radio"]',function(e){acf.fields.radio.set({$el:$(this).closest(".acf-radio-list")}).change()})}(jQuery),function($){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(e){return $.extend(this,e),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var e=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){e.$input.trigger("change")}});var t=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(i){if(!t.hasClass("loading")&&!t.hasClass("no-results")&&$(this).scrollTop()+$(this).innerHeight()>=$(this).get(0).scrollHeight){var a=parseInt(t.attr("data-paged"));t.attr("data-paged",a+1),e.set({$el:t}).fetch()}}),this.fetch()}},fetch:function(){var e=this,t=this.$el;t.addClass("loading"),$.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:$.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(i){e.set({$el:t}).render(i)}})},render:function(e){var t=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),e&&e.html?(this.$el.find(".relationship_left .load-more").before(e.html),e.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var e=$(this).attr("data-post_id");t.$right.find('a[data-post_id="'+e+'"]').exists()&&$(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},n=_.template(acf.l10n.relationship.tmpl_li,a);this.$right.find(".relationship_list").append(n),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:$(this)}).init()})}),$(document).on("change",".acf_relationship .select-post_type",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-post_type",t),i.attr("data-paged",1),acf.fields.relationship.set({$el:i}).fetch()}),$(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).add($(this)),$(this).blur()}),$(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).remove($(this)),$(this).blur()}),$(document).on("keyup",".acf_relationship input.relationship_search",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-s",t),i.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:i}).fetch()},500)}),$(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function($){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="hl clearfix acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap"><ul class="hl clearfix acf-tab-group"></ul></div>',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('<li><a class="acf-tab-button" href="#" data-key="'+a+'">'+n+"</a></li>")},toggle:function(e){var t=this,i=e.closest(".acf-tab-wrap").parent(),a=e.attr("data-key");e.parent("li").addClass("active").siblings("li").removeClass("active"),i.children(".field_type-tab").each(function(){var e=$(this);e.attr("data-field_key")==a?t.show_tab_fields($(this)):t.hide_tab_fields($(this))})},show_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),$(document).trigger("acf/fields/tab/show",[$(this)])})},hide_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),$(document).trigger("acf/fields/tab/hide",[$(this)])})},refresh:function(e){var t=this;e.find(".acf-tab-group").each(function(){$(this).find(".acf-tab-button:first").each(function(){t.toggle($(this))})})}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-tab").each(function(){acf.fields.tab.add_tab($(this))}),acf.fields.tab.refresh($(t))}),$(document).on("click",".acf-tab-button",function(e){e.preventDefault(),acf.fields.tab.toggle($(this)),$(this).trigger("blur")}),$(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),$(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function($){acf.validation={status:!0,disabled:!1,run:function(){var e=this;e.status=!0,$(".field.required, .form-field.required").each(function(){e.validate($(this))})},show_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},validate:function(e){var t=!1,i=null;if(e.data("validation",!0),e.is(":hidden")&&(t=!0,e.hasClass("acf-tab_group-hide"))){t=!1;var a=e.prevAll(".field_type-tab:first"),n=e.prevAll(".acf-tab-wrap:first");a.hasClass("acf-conditional_logic-hide")?t=!0:i=n.find('.acf-tab-button[data-key="'+a.attr("data-field_key")+'"]')}if(e.hasClass("acf-conditional_logic-hide")&&(t=!0),e.closest(".postbox.acf-hidden").exists()&&(t=!0),!t){if(""==e.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&e.data("validation",!1),e.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){e.data("validation",!0);var s=e.find(".wp-editor-area").attr("id"),o=tinyMCE.get(s);o&&!o.getContent()&&e.data("validation",!1)}if(e.find("select").exists()&&(e.data("validation",!0),"null"!=e.find("select").val()&&e.find("select").val()||e.data("validation",!1)),e.find('input[type="radio"]').exists()&&(e.data("validation",!1),e.find('input[type="radio"]:checked').exists()&&e.data("validation",!0)),e.find('input[type="checkbox"]').exists()&&(e.data("validation",!1),e.find('input[type="checkbox"]:checked').exists()&&e.data("validation",!0)),e.find(".acf_relationship").exists()&&(e.data("validation",!1),e.find(".acf_relationship .relationship_right input").exists()&&e.data("validation",!0)),e.find(".repeater").exists()&&(e.data("validation",!1),e.find(".repeater tr.row").exists()&&e.data("validation",!0)),e.find(".acf-gallery").exists()&&(e.data("validation",!1),e.find(".acf-gallery .thumbnail").exists()&&e.data("validation",!0)),$(document).trigger("acf/validate_field",[e]),!e.data("validation")){if(this.status=!1,e.closest(".field").addClass("error"),e.data("validation_message")){var l=e.find("p.label:first"),r=null;l.children(".acf-error-message").remove(),l.append('<span class="acf-error-message"><i class="bit"></i>'+e.data("validation_message")+"</span>")}i&&i.trigger("click")}}}},$(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(e){$(this).closest(".field").removeClass("error")}),$(document).on("click","#save-post",function(){acf.validation.disabled=!0}),$(document).on("submit","#post",function(){
|
2 |
-
if(acf.validation.disabled)return!0;if(acf.validation.run(),!acf.validation.status){var e=$(this);return e.siblings("#message").remove(),e.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>"),$("#submitdiv").exists()&&($("#submitdiv").find(".disabled").removeClass("disabled"),$("#submitdiv").find(".button-disabled").removeClass("button-disabled"),$("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),acf.validation.hide_spinner($("#submitdiv .spinner"))),!1}return $(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function($){var e=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(e){return $.extend(this,e),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var e=this.get_toolbar(),t="mceAddControl",i="theme_advanced_buttons{i}",a=$.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(t="mceAddEditor",i="toolbar{i}"),e)for(var n=1;5>n;n++){var s="";acf.helpers.isset(e,"theme_advanced_buttons"+n)&&(s=e["theme_advanced_buttons"+n]),tinyMCE.settings[i.replace("{i}",n)]=s}tinyMCE.execCommand(t,!1,this.o.id),$(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=a,wpActiveEditor=null}},add_events:function(){var e=this.o.id,t=tinyMCE.get(e);if(t){var i=$("#wp-"+e+"-wrap"),a=$(t.getBody());i.on("click",function(){$(document).trigger("acf/wysiwyg/click",e)}),a.on("focus",function(){$(document).trigger("acf/wysiwyg/focus",e)}),a.on("blur",function(){$(document).trigger("acf/wysiwyg/blur",e)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};$(document).on("acf/setup_fields",function(t,i){e.has_tinymce()&&($(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()}),setTimeout(function(){$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})},0))}),$(document).on("acf/remove_fields",function(t,i){e.has_tinymce()&&i.find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/wysiwyg/click",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/focus",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/blur",function(e,t){wpActiveEditor=null;var i=tinyMCE.get(t);if(i){var a=i.getElement();i.save(),$(a).trigger("change")}}),$(document).on("acf/sortable_start",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/sortable_stop",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})}),$(window).load(function(){if(e.has_tinymce()){var t=$("#wp-content-wrap").exists(),i=$("#wp-acf_settings-wrap").exists();mode="tmce",i&&$("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-html").trigger("click"),t&&e.set({$el:$("#wp-content-wrap")}).add_events()},11)}}),$(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var e=$(this).closest(".acf_wysiwyg"),t=e.attr("data-upload");"no"==t&&$("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery);
|
1 |
+
var acf={ajaxurl:"",admin_url:"",wp_version:"",post_id:0,nonce:"",l10n:null,o:null,helpers:{get_atts:null,version_compare:null,uniqid:null,sortable:null,add_message:null,is_clone_field:null,url_to_object:null},validation:null,conditional_logic:null,media:null,fields:{date_picker:null,color_picker:null,Image:null,file:null,wysiwyg:null,gallery:null,relationship:null}};!function($){acf.helpers.isset=function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;i<t;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},acf.helpers.get_atts=function(e){var t={};return $.each(e[0].attributes,function(e,i){"data-"==i.name.substr(0,5)&&(t[i.name.replace("data-","")]=i.value)}),t},acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;for(var i=e.split("."),a=t.split("."),n=0,s=Math.max(i.length,a.length);s>n;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])<parseInt(a[n]))return-1}return 0},acf.helpers.uniqid=function(){var e=new Date;return e.getTime()},acf.helpers.url_to_object=function(e){var t={},a=e.split("&");for(i in a){var n=a[i].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return t},acf.helpers.sortable=function(e,t){return t.children().each(function(){$(this).width($(this).width())}),t},acf.helpers.is_clone_field=function(e){return e.attr("name")&&-1!=e.attr("name").indexOf("[acfcloneindex]")?!0:!1},acf.helpers.add_message=function(e,t){var e=$('<div class="acf-message-wrapper"><div class="message updated"><p>'+e+"</p></div></div>");t.prepend(e),setTimeout(function(){e.animate({opacity:0},250,function(){e.remove()})},1500)},$.fn.exists=function(){return $(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var e=wp.media.view.AttachmentCompat.prototype;e.orig_render=e.render,e.orig_dispose=e.dispose,e.className="compat-item acf_postbox no_box",e.render=function(){var e=this;return e.ignore_render?this:(this.orig_render(),setTimeout(function(){var t=e.$el.closest(".media-modal");if(!t.hasClass("acf-media-modal")&&!t.find(".media-frame-router .acf-expand-details").exists()){var i=$(['<a href="#" class="acf-expand-details">','<span class="icon"></span>','<span class="is-closed">'+acf.l10n.core.expand_details+"</span>",'<span class="is-open">'+acf.l10n.core.collapse_details+"</span>","</a>"].join(""));i.on("click",function(e){e.preventDefault(),t.hasClass("acf-expanded")?t.removeClass("acf-expanded"):t.addClass("acf-expanded")}),t.find(".media-frame-router").append(i)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){$(document).trigger("acf/setup_fields",[e.$el])},50),this)},e.dispose=function(){$(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},e.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var e=this;$(document).on("change",".field input, .field textarea, .field select",function(){$("#acf-has-changed").exists()&&$("#acf-has-changed").val(1),e.change($(this))}),$(document).on("acf/setup_fields",function(t,i){e.refresh($(i))}),e.refresh()},change:function(e){var t=this,i=e.closest(".field"),a=i.attr("data-field_key");$.each(this.items,function(e,i){$.each(i.rules,function(e,n){n.field==a&&t.refresh_field(i)})})},refresh_field:function(e){var t=this,i=$(".field_key-"+e.field);i.each(function(){var i=!0;"any"==e.allorany&&(i=!1);var a=$(this),n=!0;$.each(e.rules,function(s,o){var l=$(".field_key-"+o.field);l.hasClass("sub_field")&&(l=a.siblings(".field_key-"+o.field),n=!1,l.exists()||(a.parents("tr").each(function(){return l=$(this).find(".field_key-"+o.field),l.exists()?!1:void 0}),n=!0));var r=a.parent("tr").parent().parent("table").parent(".layout");r.exists()&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest(".layout").find("td.field_key-"+o.field)));var r=a.parent("tr").parent().parent("table").parent(".repeater");r.exists()&&"1"==r.attr("data-max_rows")&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest("table").find("td.field_key-"+o.field)));var c=t.calculate(o,l,a);if("all"==e.allorany){if(0==c)return i=!1,!1}else if(1==c)return i=!0,!1}),a.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),i?(a.find("input, textarea, select").removeAttr("disabled"),a.addClass("acf-conditional_logic-show"),$(document).trigger("acf/conditional_logic/show",[a,e])):(a.find("input, textarea, select").attr("disabled","disabled"),a.addClass("acf-conditional_logic-hide"),n||a.addClass("acf-show-blank"),$(document).trigger("acf/conditional_logic/hide",[a,e]))})},refresh:function(e){e=e||$("body");var t=this;$.each(this.items,function(i,a){$.each(a.rules,function(i,n){e.find('.field[data-field_key="'+a.field+'"]').exists()&&t.refresh_field(a)})})},calculate:function(e,t,i){var a=!1;if(t.hasClass("field_type-true_false")||t.hasClass("field_type-checkbox")||t.hasClass("field_type-radio")){var n=t.find('input[value="'+e.value+'"]:checked').exists();"=="==e.operator?n&&(a=!0):n||(a=!0)}else{var s=t.find("input, textarea, select").last().val();$.isArray(s)||(s=[s]),"=="==e.operator?$.inArray(e.value,s)>-1&&(a=!0):$.inArray(e.value,s)<0&&(a=!0)}return a}},$(document).ready(function(){acf.conditional_logic.init(),$(".acf_postbox > .inside > .options").each(function(){$(this).closest(".acf_postbox").addClass($(this).attr("data-layout"))}),$('#metakeyselect option[value^="field_"]').remove()}),$(window).load(function(){acf.media.init(),setTimeout(function(){try{$.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(e){}$(document).trigger("acf/setup_fields",[$("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function($){function e(){var e=[];$(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){$(this).is(":hidden")||$(this).is(":disabled")||$(this).closest(".media-frame").exists()||$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-load_save")||-1===e.indexOf($(this).val())&&e.push($(this).val())}),acf.screen.post_category=e,acf.screen.taxonomy=e,$(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},$(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,$("#icl-als-first").length>0){var e=$("#icl-als-first").children("a").attr("href"),t=new RegExp("lang=([^&#]*)"),i=t.exec(e);acf.screen.lang=i[1]}}),$(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&$.isNumeric(acf.screen.post_id)?void $.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(e){return e?($(".acf_postbox").addClass("acf-hidden"),$(".acf_postbox-toggle").addClass("acf-hidden"),0==e.length?!1:($.each(e,function(e,t){var i=$("#acf_"+t),a=$('#adv-settings .acf_postbox-toggle[for="acf_'+t+'-hide"]');i.removeClass("acf-hidden hide-if-js"),a.removeClass("acf-hidden"),a.find('input[type="checkbox"]').attr("checked","checked"),i.find(".acf-replace-with-fields").each(function(){var e=$(this);$.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:t,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e.replaceWith(t),$(document).trigger("acf/setup_fields",i)}})})}),void $.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:e[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(e){$("#acf_style").html(e)}}))):!1}}):!1}),$(document).on("change","#page_template",function(){acf.screen.page_template=$(this).val(),$(document).trigger("acf/update_field_groups")}),$(document).on("change","#parent_id",function(){var e=$(this).val();""!=e?(acf.screen.page_type="child",acf.screen.page_parent=e):(acf.screen.page_type="parent",acf.screen.page_parent=0),$(document).trigger("acf/update_field_groups")}),$(document).on("change",'#post-formats-select input[type="radio"]',function(){var e=$(this).val();"0"==e&&(e="standard"),acf.screen.post_format=e,$(document).trigger("acf/update_field_groups")}),$(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-save")||$(this).closest(".media-frame").exists()||setTimeout(function(){e()},1)})}(jQuery),function($){var e=acf.fields.color_picker={$el:null,$input:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};$(document).on("acf/setup_fields",function(t,i){$(i).find(".acf-color_picker").each(function(){e.set({$el:$(this)}).init()})})}(jQuery),function($){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var e=$.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(e),this.$input.datepicker("option","dateFormat",this.o.display_format),$("body > #ui-datepicker-div").length>0&&$("#ui-datepicker-div").wrap('<div class="ui-acf" />')}},blur:function(){this.$input.val()||this.$hidden.val("")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:$(this)}).init()})}),$(document).on("blur",'.acf-date_picker input[type="text"]',function(e){acf.fields.date_picker.set({$el:$(this).parent()}).blur()})}(jQuery),function($){var e=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-file-icon").attr("src",t.icon),i.find(".acf-file-title").text(t.title),i.find(".acf-file-name").text(t.name).attr("href",t.url),i.find(".acf-file-size").text(t.size),i.find(".acf-file-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?void("uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var t=0;selection.each(function(i){if(t++,t>1){var a=e.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),e.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},$(document).on("click",".acf-file-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).edit()}),$(document).on("click",".acf-file-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).remove()}),$(document).on("click",".acf-file-uploader .add-file",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function($){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find(".input-address"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},$(document).on("acf/setup_fields",function(e,t){return $fields=$(t).find(".acf-google-map"),$fields.exists()?acf.helpers.isset(window,"google","load")?acf.helpers.isset(window,"google","maps","places")?($fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()}),!0):(google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}),!1):($.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}})}),!1):!1}),$(document).on("click",".acf-google-map .acf-sprite-remove",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).clear(),$(this).blur()}),$(document).on("click",".acf-google-map .acf-sprite-locate",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).locate(),$(this).blur()}),$(document).on("click",".acf-google-map .title h4",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).edit()}),$(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),$(document).on("blur",".acf-google-map .search",function(e){var t=$(this).closest(".acf-google-map");t.find(".input-lat").val()&&t.addClass("active")}),$(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function($){var e=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-image-image").attr("src",t.url),i.find(".acf-image-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?($.each(i.filters,function(e,t){t.props.type="image"}),"uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),i.$el.find("option").each(function(){var e=$(this).attr("value");("uploaded"!=e||"all"!=t.o.library)&&-1===e.indexOf("image")&&$(this).remove()}),void i.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var i=0;selection.each(function(a){if(i++,i>1){var n=e.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),e.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[t.o.preview_size]&&(c.url=a.attributes.sizes[t.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},$(document).on("click",".acf-image-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).edit()}),$(document).on("click",".acf-image-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).remove()}),$(document).on("click",".acf-image-uploader .add-image",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function($){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},$(document).on("change",'.acf-radio-list input[type="radio"]',function(e){acf.fields.radio.set({$el:$(this).closest(".acf-radio-list")}).change()})}(jQuery),function($){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(e){return $.extend(this,e),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var e=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){e.$input.trigger("change")}});var t=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(i){if(!t.hasClass("loading")&&!t.hasClass("no-results")&&$(this).scrollTop()+$(this).innerHeight()>=$(this).get(0).scrollHeight){var a=parseInt(t.attr("data-paged"));t.attr("data-paged",a+1),e.set({$el:t}).fetch()}}),this.fetch()}},fetch:function(){var e=this,t=this.$el;t.addClass("loading"),$.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:$.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(i){e.set({$el:t}).render(i)}})},render:function(e){var t=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),e&&e.html?(this.$el.find(".relationship_left .load-more").before(e.html),e.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var e=$(this).attr("data-post_id");t.$right.find('a[data-post_id="'+e+'"]').exists()&&$(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a=["<li>",'<a href="#" data-post_id="'+e.attr("data-post_id")+'">',e.html()+'<span class="acf-button-remove"></span>',"</a>",'<input type="hidden" name="'+this.$input.attr("name")+'[]" value="'+e.attr("data-post_id")+'" />',"</li>"].join("");this.$right.find(".relationship_list").append(a),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:$(this)}).init()})}),$(document).on("change",".acf_relationship .select-post_type",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-post_type",t),i.attr("data-paged",1),acf.fields.relationship.set({$el:i}).fetch()}),$(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).add($(this)),$(this).blur()}),$(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).remove($(this)),$(this).blur()}),$(document).on("keyup",".acf_relationship input.relationship_search",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-s",t),i.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:i}).fetch()},500)}),$(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function($){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="hl clearfix acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap"><ul class="hl clearfix acf-tab-group"></ul></div>',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('<li><a class="acf-tab-button" href="#" data-key="'+a+'">'+n+"</a></li>")},toggle:function(e){var t=this,i=e.closest(".acf-tab-wrap").parent(),a=e.attr("data-key");e.parent("li").addClass("active").siblings("li").removeClass("active"),i.children(".field_type-tab").each(function(){var e=$(this);e.attr("data-field_key")==a?t.show_tab_fields($(this)):t.hide_tab_fields($(this))})},show_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),$(document).trigger("acf/fields/tab/show",[$(this)])})},hide_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),$(document).trigger("acf/fields/tab/hide",[$(this)])})},refresh:function(e){var t=this;e.find(".acf-tab-group").each(function(){$(this).find(".acf-tab-button:first").each(function(){t.toggle($(this))})})}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-tab").each(function(){acf.fields.tab.add_tab($(this))}),acf.fields.tab.refresh($(t))}),$(document).on("click",".acf-tab-button",function(e){e.preventDefault(),acf.fields.tab.toggle($(this)),$(this).trigger("blur")}),$(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),$(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function($){acf.validation={status:!0,disabled:!1,run:function(){var e=this;e.status=!0,$(".field.required, .form-field.required").each(function(){e.validate($(this))})},show_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},validate:function(e){var t=!1,i=null;if(e.data("validation",!0),e.is(":hidden")&&(t=!0,e.hasClass("acf-tab_group-hide"))){t=!1;var a=e.prevAll(".field_type-tab:first"),n=e.prevAll(".acf-tab-wrap:first");a.hasClass("acf-conditional_logic-hide")?t=!0:i=n.find('.acf-tab-button[data-key="'+a.attr("data-field_key")+'"]')}if(e.hasClass("acf-conditional_logic-hide")&&(t=!0),e.closest(".postbox.acf-hidden").exists()&&(t=!0),!t){if(""==e.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&e.data("validation",!1),e.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){e.data("validation",!0);var s=e.find(".wp-editor-area").attr("id"),o=tinyMCE.get(s);o&&!o.getContent()&&e.data("validation",!1)}if(e.find("select").exists()&&(e.data("validation",!0),"null"!=e.find("select").val()&&e.find("select").val()||e.data("validation",!1)),e.find('input[type="radio"]').exists()&&(e.data("validation",!1),e.find('input[type="radio"]:checked').exists()&&e.data("validation",!0)),e.find('input[type="checkbox"]').exists()&&(e.data("validation",!1),e.find('input[type="checkbox"]:checked').exists()&&e.data("validation",!0)),e.find(".acf_relationship").exists()&&(e.data("validation",!1),e.find(".acf_relationship .relationship_right input").exists()&&e.data("validation",!0)),e.find(".repeater").exists()&&(e.data("validation",!1),e.find(".repeater tr.row").exists()&&e.data("validation",!0)),e.find(".acf-gallery").exists()&&(e.data("validation",!1),e.find(".acf-gallery .thumbnail").exists()&&e.data("validation",!0)),$(document).trigger("acf/validate_field",[e]),!e.data("validation")){if(this.status=!1,e.closest(".field").addClass("error"),e.data("validation_message")){var l=e.find("p.label:first"),r=null;l.children(".acf-error-message").remove(),l.append('<span class="acf-error-message"><i class="bit"></i>'+e.data("validation_message")+"</span>")}i&&i.trigger("click")}}}},$(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(e){
|
2 |
+
$(this).closest(".field").removeClass("error")}),$(document).on("click","#save-post",function(){acf.validation.disabled=!0}),$(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;if(acf.validation.run(),!acf.validation.status){var e=$(this);return e.siblings("#message").remove(),e.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>"),$("#submitdiv").exists()&&($("#submitdiv").find(".disabled").removeClass("disabled"),$("#submitdiv").find(".button-disabled").removeClass("button-disabled"),$("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),acf.validation.hide_spinner($("#submitdiv .spinner"))),!1}return $(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function($){var e=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(e){return $.extend(this,e),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var e=this.get_toolbar(),t="mceAddControl",i="theme_advanced_buttons{i}",a=$.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(t="mceAddEditor",i="toolbar{i}"),e)for(var n=1;5>n;n++){var s="";acf.helpers.isset(e,"theme_advanced_buttons"+n)&&(s=e["theme_advanced_buttons"+n]),tinyMCE.settings[i.replace("{i}",n)]=s}tinyMCE.execCommand(t,!1,this.o.id),$(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=a,wpActiveEditor=null}},add_events:function(){var e=this.o.id,t=tinyMCE.get(e);if(t){var i=$("#wp-"+e+"-wrap"),a=$(t.getBody());i.on("click",function(){$(document).trigger("acf/wysiwyg/click",e)}),a.on("focus",function(){$(document).trigger("acf/wysiwyg/focus",e)}),a.on("blur",function(){$(document).trigger("acf/wysiwyg/blur",e)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};$(document).on("acf/setup_fields",function(t,i){e.has_tinymce()&&($(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()}),setTimeout(function(){$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})},0))}),$(document).on("acf/remove_fields",function(t,i){e.has_tinymce()&&i.find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/wysiwyg/click",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/focus",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/blur",function(e,t){wpActiveEditor=null;var i=tinyMCE.get(t);if(i){var a=i.getElement();i.save(),$(a).trigger("change")}}),$(document).on("acf/sortable_start",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/sortable_stop",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})}),$(window).load(function(){if(e.has_tinymce()){var t=$("#wp-content-wrap").exists(),i=$("#wp-acf_settings-wrap").exists();mode="tmce",i&&$("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-html").trigger("click"),t&&e.set({$el:$("#wp-content-wrap")}).add_events()},11)}}),$(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var e=$(this).closest(".acf_wysiwyg"),t=e.attr("data-upload");"no"==t&&$("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery);
|
js/input/google-map.js
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
|
30 |
|
31 |
// find input
|
32 |
-
this.$input = this.$el.find('.
|
33 |
|
34 |
|
35 |
// get options
|
@@ -457,6 +457,14 @@
|
|
457 |
}
|
458 |
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
// return
|
461 |
return true;
|
462 |
|
29 |
|
30 |
|
31 |
// find input
|
32 |
+
this.$input = this.$el.find('.input-address');
|
33 |
|
34 |
|
35 |
// get options
|
457 |
}
|
458 |
|
459 |
|
460 |
+
// google exists
|
461 |
+
$fields.each(function(){
|
462 |
+
|
463 |
+
acf.fields.google_map.set({ $el : $(this) }).init();
|
464 |
+
|
465 |
+
});
|
466 |
+
|
467 |
+
|
468 |
// return
|
469 |
return true;
|
470 |
|
js/input/relationship.js
CHANGED
@@ -211,17 +211,17 @@
|
|
211 |
|
212 |
|
213 |
// template
|
214 |
-
var
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
|
222 |
|
223 |
// add new li
|
224 |
-
this.$right.find('.relationship_list').append(
|
225 |
|
226 |
|
227 |
// trigger change on new_li
|
211 |
|
212 |
|
213 |
// template
|
214 |
+
var html = [
|
215 |
+
'<li>',
|
216 |
+
'<a href="#" data-post_id="' + $a.attr('data-post_id') + '">',
|
217 |
+
$a.html() + '<span class="acf-button-remove"></span>',
|
218 |
+
'</a>',
|
219 |
+
'<input type="hidden" name="' + this.$input.attr('name') + '[]" value="' + $a.attr('data-post_id') + '" />',
|
220 |
+
'</li>'].join('');
|
221 |
|
222 |
|
223 |
// add new li
|
224 |
+
this.$right.find('.relationship_list').append( html )
|
225 |
|
226 |
|
227 |
// trigger change on new_li
|
lang/acf-pt_PT.mo
CHANGED
Binary file
|
lang/acf-pt_PT.po
CHANGED
@@ -4,119 +4,121 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date: 2016-04-
|
9 |
-
"Last-Translator:
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
20 |
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
|
|
21 |
"X-Textdomain-Support: yes\n"
|
22 |
"X-Poedit-Basepath: ..\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#: acf.php:
|
26 |
msgid "Field Groups"
|
27 |
msgstr "Grupos de campos"
|
28 |
|
29 |
-
|
|
|
30 |
msgid "Advanced Custom Fields"
|
31 |
msgstr "Advanced Custom Fields"
|
32 |
|
33 |
-
#: acf.php:
|
34 |
msgid "Add New"
|
35 |
msgstr "Adicionar novo"
|
36 |
|
37 |
-
#: acf.php:
|
38 |
msgid "Add New Field Group"
|
39 |
msgstr "Adicionar novo grupo de campos"
|
40 |
|
41 |
-
#: acf.php:
|
42 |
msgid "Edit Field Group"
|
43 |
msgstr "Editar grupo de campos"
|
44 |
|
45 |
-
#: acf.php:
|
46 |
msgid "New Field Group"
|
47 |
msgstr "Novo grupo de campos"
|
48 |
|
49 |
-
#: acf.php:
|
50 |
msgid "View Field Group"
|
51 |
msgstr "Ver grupo de campos"
|
52 |
|
53 |
-
#: acf.php:
|
54 |
msgid "Search Field Groups"
|
55 |
msgstr "Pesquisar grupos de campos"
|
56 |
|
57 |
-
#: acf.php:
|
58 |
msgid "No Field Groups found"
|
59 |
msgstr "Nenhum grupo de campos encontrado"
|
60 |
|
61 |
-
#: acf.php:
|
62 |
msgid "No Field Groups found in Trash"
|
63 |
-
msgstr "Nenhum grupo de campos encontrado no
|
64 |
|
65 |
-
#: acf.php:
|
66 |
msgid "Custom Fields"
|
67 |
msgstr "Campos personalizados"
|
68 |
|
69 |
-
#: acf.php:
|
70 |
msgid "Field group updated."
|
71 |
msgstr "Grupo de campos actualizado."
|
72 |
|
73 |
-
#: acf.php:
|
74 |
msgid "Custom field updated."
|
75 |
msgstr "Campo personalizado actualizado."
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Custom field deleted."
|
79 |
msgstr "Campo personalizado eliminado."
|
80 |
|
81 |
#. translators: %s: date and time of the revision
|
82 |
-
#: acf.php:
|
83 |
#, php-format
|
84 |
msgid "Field group restored to revision from %s"
|
85 |
msgstr "Grupo de campos restaurado para revisão de %s"
|
86 |
|
87 |
-
#: acf.php:
|
88 |
msgid "Field group published."
|
89 |
msgstr "Grupo de campos publicado."
|
90 |
|
91 |
-
#: acf.php:
|
92 |
msgid "Field group saved."
|
93 |
msgstr "Grupo de campos guardado."
|
94 |
|
95 |
-
#: acf.php:
|
96 |
msgid "Field group submitted."
|
97 |
msgstr "Grupo de campos enviado."
|
98 |
|
99 |
-
#: acf.php:
|
100 |
msgid "Field group scheduled for."
|
101 |
msgstr "Grupo de campos agendado."
|
102 |
|
103 |
-
#: acf.php:
|
104 |
msgid "Field group draft updated."
|
105 |
msgstr "Rascunho de grupo de campos actualizado."
|
106 |
|
107 |
-
#: acf.php:
|
108 |
msgid "Thumbnail"
|
109 |
msgstr "Miniatura"
|
110 |
|
111 |
-
#: acf.php:
|
112 |
msgid "Medium"
|
113 |
msgstr "Média"
|
114 |
|
115 |
-
#: acf.php:
|
116 |
msgid "Large"
|
117 |
msgstr "Grande"
|
118 |
|
119 |
-
#: acf.php:
|
120 |
msgid "Full"
|
121 |
msgstr "Completo"
|
122 |
|
@@ -136,19 +138,19 @@ msgstr "Actualizar"
|
|
136 |
msgid "Post updated"
|
137 |
msgstr "Artigo actualizado"
|
138 |
|
139 |
-
#: core/controllers/addons.php:42 core/controllers/field_groups.php:
|
140 |
msgid "Add-ons"
|
141 |
msgstr "Add-ons"
|
142 |
|
143 |
-
#: core/controllers/addons.php:130 core/controllers/field_groups.php:
|
144 |
msgid "Repeater Field"
|
145 |
-
msgstr "Campo
|
146 |
|
147 |
#: core/controllers/addons.php:131
|
148 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
149 |
msgstr "Cria infinitas linhas de dados repetíveis com um interfácil versátil!"
|
150 |
|
151 |
-
#: core/controllers/addons.php:137 core/controllers/field_groups.php:
|
152 |
msgid "Gallery Field"
|
153 |
msgstr "Campo de galeria"
|
154 |
|
@@ -156,7 +158,7 @@ msgstr "Campo de galeria"
|
|
156 |
msgid "Create image galleries in a simple and intuitive interface!"
|
157 |
msgstr "Cria galerias de imagens num interface simples e intuitivo!"
|
158 |
|
159 |
-
#: core/controllers/addons.php:144 core/controllers/field_groups.php:
|
160 |
msgid "Options Page"
|
161 |
msgstr "Página de opções"
|
162 |
|
@@ -189,8 +191,8 @@ msgid "jQuery date & time picker"
|
|
189 |
msgstr "Selector jQuery de data e hora"
|
190 |
|
191 |
#: core/controllers/addons.php:175
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
194 |
|
195 |
#: core/controllers/addons.php:176
|
196 |
msgid "Find addresses and coordinates of a desired location"
|
@@ -232,9 +234,9 @@ msgstr "Instalado"
|
|
232 |
msgid "Purchase & Install"
|
233 |
msgstr "Comprar e instalar"
|
234 |
|
235 |
-
#: core/controllers/addons.php:242 core/controllers/field_groups.php:
|
236 |
-
#: core/controllers/field_groups.php:
|
237 |
-
#: core/controllers/field_groups.php:
|
238 |
msgid "Download"
|
239 |
msgstr "Descarregar"
|
240 |
|
@@ -394,136 +396,136 @@ msgstr "Voltar para a exportação"
|
|
394 |
msgid "No field groups were selected"
|
395 |
msgstr "Nenhum grupo de campos foi seleccionado"
|
396 |
|
397 |
-
#: core/controllers/field_group.php:
|
398 |
msgid "Move to trash. Are you sure?"
|
399 |
msgstr "Mover para o lixo. Tem certeza?"
|
400 |
|
401 |
-
#: core/controllers/field_group.php:
|
402 |
msgid "checked"
|
403 |
msgstr "seleccionado"
|
404 |
|
405 |
-
#: core/controllers/field_group.php:
|
406 |
msgid "No toggle fields available"
|
407 |
msgstr "Nenhum campo de opções disponível"
|
408 |
|
409 |
-
#: core/controllers/field_group.php:
|
410 |
msgid "Field group title is required"
|
411 |
msgstr "O título do grupo de campos é obrigatório"
|
412 |
|
413 |
-
#: core/controllers/field_group.php:
|
414 |
msgid "copy"
|
415 |
msgstr "cópia"
|
416 |
|
417 |
-
#: core/controllers/field_group.php:
|
418 |
#: core/views/meta_box_location.php:159
|
419 |
msgid "or"
|
420 |
msgstr "ou"
|
421 |
|
422 |
-
#: core/controllers/field_group.php:
|
423 |
-
#: core/controllers/field_group.php:
|
424 |
msgid "Fields"
|
425 |
msgstr "Campos"
|
426 |
|
427 |
-
#: core/controllers/field_group.php:
|
428 |
msgid "Parent fields"
|
429 |
msgstr "Campos superiores"
|
430 |
|
431 |
-
#: core/controllers/field_group.php:
|
432 |
msgid "Sibling fields"
|
433 |
msgstr "Campos do grupo"
|
434 |
|
435 |
-
#: core/controllers/field_group.php:
|
436 |
msgid "Hide / Show All"
|
437 |
msgstr "Esconder / Mostrar tudo"
|
438 |
|
439 |
-
#: core/controllers/field_group.php:
|
440 |
msgid "Location"
|
441 |
msgstr "Localização"
|
442 |
|
443 |
-
#: core/controllers/field_group.php:
|
444 |
msgid "Options"
|
445 |
msgstr "Opções"
|
446 |
|
447 |
-
#: core/controllers/field_group.php:
|
448 |
msgid "Show Field Key:"
|
449 |
msgstr "Mostrar campo chave"
|
450 |
|
451 |
-
#: core/controllers/field_group.php:
|
452 |
#: core/fields/page_link.php:159 core/fields/post_object.php:340
|
453 |
#: core/fields/post_object.php:361 core/fields/select.php:224
|
454 |
#: core/fields/select.php:243 core/fields/taxonomy.php:499
|
455 |
-
#: core/fields/user.php:332 core/fields/wysiwyg.php:
|
456 |
#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
|
457 |
msgid "No"
|
458 |
msgstr "Não"
|
459 |
|
460 |
-
#: core/controllers/field_group.php:
|
461 |
#: core/fields/page_link.php:158 core/fields/post_object.php:339
|
462 |
#: core/fields/post_object.php:360 core/fields/select.php:223
|
463 |
#: core/fields/select.php:242 core/fields/taxonomy.php:498
|
464 |
-
#: core/fields/user.php:331 core/fields/wysiwyg.php:
|
465 |
#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
|
466 |
msgid "Yes"
|
467 |
msgstr "Sim"
|
468 |
|
469 |
-
#: core/controllers/field_group.php:
|
470 |
msgid "Front Page"
|
471 |
msgstr "Página inicial"
|
472 |
|
473 |
-
#: core/controllers/field_group.php:
|
474 |
msgid "Posts Page"
|
475 |
msgstr "Página de artigos"
|
476 |
|
477 |
-
#: core/controllers/field_group.php:
|
478 |
msgid "Top Level Page (parent of 0)"
|
479 |
-
msgstr "Página de topo (sem
|
480 |
|
481 |
-
#: core/controllers/field_group.php:
|
482 |
msgid "Parent Page (has children)"
|
483 |
msgstr "Página superior (tem dependentes)"
|
484 |
|
485 |
-
#: core/controllers/field_group.php:
|
486 |
msgid "Child Page (has parent)"
|
487 |
msgstr "Página dependente (tem superior)"
|
488 |
|
489 |
-
#: core/controllers/field_group.php:
|
490 |
msgid "Default Template"
|
491 |
msgstr "Modelo por omissão"
|
492 |
|
493 |
-
#: core/controllers/field_group.php:
|
494 |
msgid "Published"
|
495 |
msgstr "Publicado"
|
496 |
|
497 |
-
#: core/controllers/field_group.php:
|
498 |
msgid "Pending Review"
|
499 |
msgstr "Pendente de revisão"
|
500 |
|
501 |
-
#: core/controllers/field_group.php:
|
502 |
msgid "Draft"
|
503 |
msgstr "Rascunho"
|
504 |
|
505 |
-
#: core/controllers/field_group.php:
|
506 |
msgid "Future"
|
507 |
msgstr "Futuro"
|
508 |
|
509 |
-
#: core/controllers/field_group.php:
|
510 |
msgid "Private"
|
511 |
msgstr "Privado"
|
512 |
|
513 |
-
#: core/controllers/field_group.php:
|
514 |
msgid "Revision"
|
515 |
msgstr "Revisão"
|
516 |
|
517 |
-
#: core/controllers/field_group.php:
|
518 |
msgid "Trash"
|
519 |
msgstr "Lixo"
|
520 |
|
521 |
-
#: core/controllers/field_group.php:
|
522 |
msgid "Super Admin"
|
523 |
msgstr "Super Administrador"
|
524 |
|
525 |
-
#: core/controllers/field_group.php:
|
526 |
-
#: core/controllers/field_group.php:
|
527 |
#: core/fields/image.php:177 core/fields/page_link.php:109
|
528 |
#: core/fields/post_object.php:286 core/fields/post_object.php:310
|
529 |
#: core/fields/relationship.php:588 core/fields/relationship.php:612
|
@@ -535,79 +537,79 @@ msgstr "Todos"
|
|
535 |
msgid "Title"
|
536 |
msgstr "Título"
|
537 |
|
538 |
-
#: core/controllers/field_groups.php:
|
539 |
msgid "Changelog"
|
540 |
msgstr "Registo de alterações"
|
541 |
|
542 |
-
#: core/controllers/field_groups.php:
|
543 |
#, php-format
|
544 |
msgid "See what's new in %1$sversion %2$s%3$s"
|
545 |
msgstr "Veja o que há de novo na %1$sversão %2$s%3$s"
|
546 |
|
547 |
-
#: core/controllers/field_groups.php:
|
548 |
msgid "Resources"
|
549 |
msgstr "Recursos"
|
550 |
|
551 |
-
#: core/controllers/field_groups.php:
|
552 |
msgid "Getting Started"
|
553 |
msgstr "Primeiros passos"
|
554 |
|
555 |
-
#: core/controllers/field_groups.php:
|
556 |
msgid "Field Types"
|
557 |
msgstr "Tipos de campos"
|
558 |
|
559 |
-
#: core/controllers/field_groups.php:
|
560 |
msgid "Functions"
|
561 |
msgstr "Funções"
|
562 |
|
563 |
-
#: core/controllers/field_groups.php:
|
564 |
msgid "Actions"
|
565 |
msgstr "Acções"
|
566 |
|
567 |
-
#: core/controllers/field_groups.php:
|
568 |
msgid "Filters"
|
569 |
msgstr "Filtros"
|
570 |
|
571 |
-
#: core/controllers/field_groups.php:
|
572 |
msgid "'How to' guides"
|
573 |
msgstr "Guias práticos"
|
574 |
|
575 |
-
#: core/controllers/field_groups.php:
|
576 |
msgid "Tutorials"
|
577 |
msgstr "Tutoriais"
|
578 |
|
579 |
-
#: core/controllers/field_groups.php:
|
580 |
msgid "Created by"
|
581 |
msgstr "Criado por"
|
582 |
|
583 |
-
#: core/controllers/field_groups.php:
|
584 |
msgid "Welcome to Advanced Custom Fields"
|
585 |
msgstr "Bem vindo ao Advanced Custom Fields"
|
586 |
|
587 |
-
#: core/controllers/field_groups.php:
|
588 |
msgid "Thank you for updating to the latest version!"
|
589 |
msgstr "Obrigado por atualizar para a última versão!"
|
590 |
|
591 |
-
#: core/controllers/field_groups.php:
|
592 |
#, php-format
|
593 |
msgid ""
|
594 |
"ACF %s is more polished and enjoyable than ever before. We hope you like it."
|
595 |
msgstr ""
|
596 |
"O ACF %s está mais elegante e agradável que nunca. Esperamos que goste."
|
597 |
|
598 |
-
#: core/controllers/field_groups.php:
|
599 |
msgid "What’s New"
|
600 |
msgstr "O que há de novo"
|
601 |
|
602 |
-
#: core/controllers/field_groups.php:
|
603 |
msgid "Download Add-ons"
|
604 |
msgstr "Descarregar add-ons"
|
605 |
|
606 |
-
#: core/controllers/field_groups.php:
|
607 |
msgid "Activation codes have grown into plugins!"
|
608 |
msgstr "Os códigos de activação transformaram-se em plugins!"
|
609 |
|
610 |
-
#: core/controllers/field_groups.php:
|
611 |
msgid ""
|
612 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
613 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
@@ -618,19 +620,19 @@ msgstr ""
|
|
618 |
"wordpress.org, cada add-on continuará a receber as actualizações de modo "
|
619 |
"habitual."
|
620 |
|
621 |
-
#: core/controllers/field_groups.php:
|
622 |
msgid "All previous Add-ons have been successfully installed"
|
623 |
msgstr "Todos os add-ons anteriores foram instalados com sucesso"
|
624 |
|
625 |
-
#: core/controllers/field_groups.php:
|
626 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
627 |
msgstr "Este site utiliza Add-ons premium que têm que ser descarregados"
|
628 |
|
629 |
-
#: core/controllers/field_groups.php:
|
630 |
msgid "Download your activated Add-ons"
|
631 |
msgstr "Descarregue os seus Add-ons activados"
|
632 |
|
633 |
-
#: core/controllers/field_groups.php:
|
634 |
msgid ""
|
635 |
"This website does not use premium Add-ons and will not be affected by this "
|
636 |
"change."
|
@@ -638,35 +640,35 @@ msgstr ""
|
|
638 |
"Este site não utiliza nenhum Add-on premium e não será afetado por esta "
|
639 |
"mudança."
|
640 |
|
641 |
-
#: core/controllers/field_groups.php:
|
642 |
msgid "Easier Development"
|
643 |
msgstr "Desenvolvimento mais fácil"
|
644 |
|
645 |
-
#: core/controllers/field_groups.php:
|
646 |
msgid "New Field Types"
|
647 |
msgstr "Novos tipos de campos"
|
648 |
|
649 |
-
#: core/controllers/field_groups.php:
|
650 |
msgid "Taxonomy Field"
|
651 |
msgstr "Campo de taxonomia"
|
652 |
|
653 |
-
#: core/controllers/field_groups.php:
|
654 |
msgid "User Field"
|
655 |
msgstr "Campo de utilizador"
|
656 |
|
657 |
-
#: core/controllers/field_groups.php:
|
658 |
msgid "Email Field"
|
659 |
msgstr "Campo de email"
|
660 |
|
661 |
-
#: core/controllers/field_groups.php:
|
662 |
msgid "Password Field"
|
663 |
msgstr "Campo de senha"
|
664 |
|
665 |
-
#: core/controllers/field_groups.php:
|
666 |
msgid "Custom Field Types"
|
667 |
msgstr "Tipos de campos personalizados"
|
668 |
|
669 |
-
#: core/controllers/field_groups.php:
|
670 |
msgid ""
|
671 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
672 |
"field types are not compatible with version 4."
|
@@ -674,7 +676,7 @@ msgstr ""
|
|
674 |
"Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente os tipos "
|
675 |
"de campos da versão 3 não são compatíveis com a versão 4."
|
676 |
|
677 |
-
#: core/controllers/field_groups.php:
|
678 |
#, php-format
|
679 |
msgid ""
|
680 |
"Migrating your field types is easy, please %sfollow this tutorial%s to learn "
|
@@ -683,11 +685,11 @@ msgstr ""
|
|
683 |
"Migrar os seus tipos de campos é fácil, por favor %ssiga este tutorial%s "
|
684 |
"para saber mais."
|
685 |
|
686 |
-
#: core/controllers/field_groups.php:
|
687 |
msgid "Actions & Filters"
|
688 |
msgstr "Acções e filtros"
|
689 |
|
690 |
-
#: core/controllers/field_groups.php:
|
691 |
#, php-format
|
692 |
msgid ""
|
693 |
"All actions & filters have received a major facelift to make customizing ACF "
|
@@ -698,27 +700,27 @@ msgstr ""
|
|
698 |
"personalização do ACF ainda mais fácil! Por favor %sleia este guia%s para "
|
699 |
"conhecer as alterações às convenção de nomenclaturas."
|
700 |
|
701 |
-
#: core/controllers/field_groups.php:
|
702 |
msgid "Preview draft is now working!"
|
703 |
msgstr "A visualização de rascunhos agora está a funcionar!"
|
704 |
|
705 |
-
#: core/controllers/field_groups.php:
|
706 |
msgid "This bug has been squashed along with many other little critters!"
|
707 |
msgstr "Este problema foi eliminado juntamente com muitos outros!"
|
708 |
|
709 |
-
#: core/controllers/field_groups.php:
|
710 |
msgid "See the full changelog"
|
711 |
msgstr "Ver o changelog completo"
|
712 |
|
713 |
-
#: core/controllers/field_groups.php:
|
714 |
msgid "Important"
|
715 |
msgstr "Importante"
|
716 |
|
717 |
-
#: core/controllers/field_groups.php:
|
718 |
msgid "Database Changes"
|
719 |
msgstr "Alterações à base de dados"
|
720 |
|
721 |
-
#: core/controllers/field_groups.php:
|
722 |
msgid ""
|
723 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
724 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
@@ -728,11 +730,11 @@ msgstr ""
|
|
728 |
"dados entre as versões 3 e 4. Isso significa que você pode reverter para a "
|
729 |
"versão 3 sem quaisquer problemas."
|
730 |
|
731 |
-
#: core/controllers/field_groups.php:
|
732 |
msgid "Potential Issues"
|
733 |
msgstr "Possíveis problemas"
|
734 |
|
735 |
-
#: core/controllers/field_groups.php:
|
736 |
#, php-format
|
737 |
msgid ""
|
738 |
"Due to the sizable changes surrounding Add-ons, field types and action/"
|
@@ -745,11 +747,11 @@ msgstr ""
|
|
745 |
"importante que leia todo o guia sobre %sMigrar de v3 para v4%s para ver a "
|
746 |
"lista completa de alterações."
|
747 |
|
748 |
-
#: core/controllers/field_groups.php:
|
749 |
msgid "Really Important!"
|
750 |
msgstr "Muito importante!"
|
751 |
|
752 |
-
#: core/controllers/field_groups.php:
|
753 |
#, php-format
|
754 |
msgid ""
|
755 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
@@ -758,11 +760,11 @@ msgstr ""
|
|
758 |
"Se actualizou o plugin ACF sem conhecimento prévio destas alterações, por "
|
759 |
"favor reverta para a última %sversão 3%s deste plugin."
|
760 |
|
761 |
-
#: core/controllers/field_groups.php:
|
762 |
msgid "Thank You"
|
763 |
msgstr "Obrigado"
|
764 |
|
765 |
-
#: core/controllers/field_groups.php:
|
766 |
msgid ""
|
767 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
768 |
"4 beta and for all the support I have received."
|
@@ -770,23 +772,23 @@ msgstr ""
|
|
770 |
"Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 "
|
771 |
"beta e por todo o apoio que recebi."
|
772 |
|
773 |
-
#: core/controllers/field_groups.php:
|
774 |
msgid "Without you all, this release would not have been possible!"
|
775 |
msgstr "Sem vocês este lançamento não teria sido possível!"
|
776 |
|
777 |
-
#: core/controllers/field_groups.php:
|
778 |
msgid "Changelog for"
|
779 |
msgstr "Changelog da versão"
|
780 |
|
781 |
-
#: core/controllers/field_groups.php:
|
782 |
msgid "Learn more"
|
783 |
msgstr "Saiba mais"
|
784 |
|
785 |
-
#: core/controllers/field_groups.php:
|
786 |
msgid "Overview"
|
787 |
msgstr "Visão geral"
|
788 |
|
789 |
-
#: core/controllers/field_groups.php:
|
790 |
msgid ""
|
791 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
792 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
@@ -797,57 +799,57 @@ msgstr ""
|
|
797 |
"todos os add-ons funcionam como plugins que têm que ser descarregados, "
|
798 |
"instalados e actualizados separadamente."
|
799 |
|
800 |
-
#: core/controllers/field_groups.php:
|
801 |
msgid ""
|
802 |
"This page will assist you in downloading and installing each available Add-"
|
803 |
"on."
|
804 |
msgstr ""
|
805 |
"Esta página vai ajudá-lo a descarregar e instalar cada add-on disponível."
|
806 |
|
807 |
-
#: core/controllers/field_groups.php:
|
808 |
msgid "Available Add-ons"
|
809 |
msgstr "Add-ons disponíveis"
|
810 |
|
811 |
-
#: core/controllers/field_groups.php:
|
812 |
msgid "The following Add-ons have been detected as activated on this website."
|
813 |
msgstr "Os seguintes Add-ons foram detectados como activos neste site."
|
814 |
|
815 |
-
#: core/controllers/field_groups.php:
|
816 |
msgid "Name"
|
817 |
msgstr "Nome"
|
818 |
|
819 |
-
#: core/controllers/field_groups.php:
|
820 |
msgid "Activation Code"
|
821 |
msgstr "Código de activação"
|
822 |
|
823 |
-
#: core/controllers/field_groups.php:
|
824 |
msgid "Flexible Content"
|
825 |
msgstr "Conteúdo flexível"
|
826 |
|
827 |
-
#: core/controllers/field_groups.php:
|
828 |
msgid "Installation"
|
829 |
msgstr "Instalação"
|
830 |
|
831 |
-
#: core/controllers/field_groups.php:
|
832 |
msgid "For each Add-on available, please perform the following:"
|
833 |
msgstr "Para cada add-on disponível, por favor aça o seguinte:"
|
834 |
|
835 |
-
#: core/controllers/field_groups.php:
|
836 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
837 |
msgstr "Descarregue o plugin add-on (ficheiro .zip) para o seu computador"
|
838 |
|
839 |
-
#: core/controllers/field_groups.php:
|
840 |
#, php-format
|
841 |
msgid "Navigate to %sPlugins > Add New > Upload%s"
|
842 |
msgstr "Navegue até %sPlugins > Adicionar novo > Carregar plugin%s"
|
843 |
|
844 |
-
#: core/controllers/field_groups.php:
|
845 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
846 |
msgstr ""
|
847 |
"Utilize o carregador para procurar, seleccionar e instalar o seu add-on "
|
848 |
"(ficheiro .zip)"
|
849 |
|
850 |
-
#: core/controllers/field_groups.php:
|
851 |
msgid ""
|
852 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
853 |
"link"
|
@@ -855,11 +857,11 @@ msgstr ""
|
|
855 |
"Assim que o plugin estiver carregado e instalado, clique na ligação 'Activar "
|
856 |
"plugin'"
|
857 |
|
858 |
-
#: core/controllers/field_groups.php:
|
859 |
msgid "The Add-on is now installed and activated!"
|
860 |
msgstr "O add-on está agora instalado e activado!"
|
861 |
|
862 |
-
#: core/controllers/field_groups.php:
|
863 |
msgid "Awesome. Let's get to work"
|
864 |
msgstr "Incrível. Vamos começar a trabalhar"
|
865 |
|
@@ -933,7 +935,7 @@ msgstr "azul : Azul"
|
|
933 |
#: core/fields/email.php:106 core/fields/number.php:116
|
934 |
#: core/fields/radio.php:196 core/fields/select.php:197
|
935 |
#: core/fields/text.php:116 core/fields/textarea.php:103
|
936 |
-
#: core/fields/true_false.php:94 core/fields/wysiwyg.php:
|
937 |
msgid "Default Value"
|
938 |
msgstr "Valor por omissão"
|
939 |
|
@@ -1002,7 +1004,7 @@ msgstr "Formatos de data jQuery"
|
|
1002 |
|
1003 |
#: core/fields/date_picker/date_picker.php:142
|
1004 |
msgid "Display format"
|
1005 |
-
msgstr "Formato de
|
1006 |
|
1007 |
#: core/fields/date_picker/date_picker.php:143
|
1008 |
msgid "This format will be seen by the user when entering a value"
|
@@ -1013,8 +1015,8 @@ msgid ""
|
|
1013 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1014 |
"about"
|
1015 |
msgstr ""
|
1016 |
-
"\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de
|
1017 |
-
"Leia mais sobre"
|
1018 |
|
1019 |
#: core/fields/date_picker/date_picker.php:158
|
1020 |
msgid "Week Starts On"
|
@@ -1030,7 +1032,7 @@ msgstr "Email"
|
|
1030 |
|
1031 |
#: core/fields/email.php:107 core/fields/number.php:117
|
1032 |
#: core/fields/text.php:117 core/fields/textarea.php:104
|
1033 |
-
#: core/fields/wysiwyg.php:
|
1034 |
msgid "Appears when creating a new post"
|
1035 |
msgstr "Aparece quando é criado um novo artigo"
|
1036 |
|
@@ -1070,7 +1072,7 @@ msgstr "Aparece depois do campo"
|
|
1070 |
msgid "File"
|
1071 |
msgstr "Ficheiro"
|
1072 |
|
1073 |
-
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:
|
1074 |
msgid "Content"
|
1075 |
msgstr "Conteúdo"
|
1076 |
|
@@ -1087,8 +1089,8 @@ msgid "Update File"
|
|
1087 |
msgstr "Actualizar ficheiro"
|
1088 |
|
1089 |
#: core/fields/file.php:29 core/fields/image.php:30
|
1090 |
-
msgid "
|
1091 |
-
msgstr "
|
1092 |
|
1093 |
#: core/fields/file.php:113
|
1094 |
msgid "Size"
|
@@ -1125,7 +1127,7 @@ msgstr "Biblioteca"
|
|
1125 |
|
1126 |
#: core/fields/file.php:187 core/fields/image.php:178
|
1127 |
msgid "Uploaded to post"
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
#: core/fields/google-map.php:18
|
1131 |
msgid "Google Map"
|
@@ -1354,7 +1356,7 @@ msgstr "Filtrar por tipo de conteúdo"
|
|
1354 |
|
1355 |
#: core/fields/relationship.php:562
|
1356 |
msgid "Return Format"
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
#: core/fields/relationship.php:573
|
1360 |
msgid "Post Objects"
|
@@ -1366,7 +1368,7 @@ msgstr "IDs dos artigos"
|
|
1366 |
|
1367 |
#: core/fields/relationship.php:640
|
1368 |
msgid "Search"
|
1369 |
-
msgstr "
|
1370 |
|
1371 |
#: core/fields/relationship.php:641
|
1372 |
msgid "Post Type Select"
|
@@ -1395,7 +1397,7 @@ msgstr "Máximo de artigos"
|
|
1395 |
#: core/fields/select.php:18 core/fields/select.php:109
|
1396 |
#: core/fields/taxonomy.php:480 core/fields/user.php:313
|
1397 |
msgid "Select"
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
#: core/fields/tab.php:19
|
1401 |
msgid "Tab"
|
@@ -1527,17 +1529,17 @@ msgstr "Utilizador"
|
|
1527 |
|
1528 |
#: core/fields/user.php:271
|
1529 |
msgid "Filter by role"
|
1530 |
-
msgstr "Filtrar por
|
1531 |
|
1532 |
-
#: core/fields/wysiwyg.php:
|
1533 |
msgid "Wysiwyg Editor"
|
1534 |
msgstr "Editor wysiwyg"
|
1535 |
|
1536 |
-
#: core/fields/wysiwyg.php:
|
1537 |
msgid "Toolbar"
|
1538 |
msgstr "Barra de ferramentas"
|
1539 |
|
1540 |
-
#: core/fields/wysiwyg.php:
|
1541 |
msgid "Show Media Upload Buttons?"
|
1542 |
msgstr "Mostrar botões de carregar multimédia?"
|
1543 |
|
@@ -1768,15 +1770,15 @@ msgstr "Esconder no ecrã"
|
|
1768 |
|
1769 |
#: core/views/meta_box_options.php:85
|
1770 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1771 |
-
msgstr "<b>Seleccione</b> os itens
|
1772 |
|
1773 |
#: core/views/meta_box_options.php:86
|
1774 |
msgid ""
|
1775 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1776 |
"options will be used. (the one with the lowest order number)"
|
1777 |
msgstr ""
|
1778 |
-
"Se vários grupos de campos
|
1779 |
-
"opções do primeiro grupo de campos. (o que tiver menor número de ordem)"
|
1780 |
|
1781 |
#: core/views/meta_box_options.php:96
|
1782 |
msgid "Permalink"
|
@@ -1826,6 +1828,26 @@ msgstr "Etiquetas"
|
|
1826 |
msgid "Send Trackbacks"
|
1827 |
msgstr "Enviar trackbacks"
|
1828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1829 |
#~ msgid "Publish"
|
1830 |
#~ msgstr "Publicado"
|
1831 |
|
@@ -1868,16 +1890,6 @@ msgstr "Enviar trackbacks"
|
|
1868 |
#~ msgid "to find the updated naming convention."
|
1869 |
#~ msgstr "para encontrar convenção de nomenclaturas atualizada."
|
1870 |
|
1871 |
-
#, fuzzy
|
1872 |
-
#~ msgid ""
|
1873 |
-
#~ "Due to the sizable changes surrounding Add-ons, field types and action/"
|
1874 |
-
#~ "filters, your website may not operate correctly. It is important that you "
|
1875 |
-
#~ "read the full"
|
1876 |
-
#~ msgstr ""
|
1877 |
-
#~ "Em virtude das mudanças significativas que ocorreram com os Complementos, "
|
1878 |
-
#~ "nos tipos de campos e nas ações/filtros, seu site poderá não funcionar "
|
1879 |
-
#~ "corretamente. É importante que você leia todo o guia"
|
1880 |
-
|
1881 |
#~ msgid "Migrating from v3 to v4"
|
1882 |
#~ msgstr "Migrar da v3 para v4"
|
1883 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2016-04-06 12:26+0100\n"
|
8 |
+
"PO-Revision-Date: 2016-04-06 16:28+0100\n"
|
9 |
+
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 1.8.7\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
20 |
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
21 |
+
"X-Poedit-WPHeader: acf.php\n"
|
22 |
"X-Textdomain-Support: yes\n"
|
23 |
"X-Poedit-Basepath: ..\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: acf.php:490
|
27 |
msgid "Field Groups"
|
28 |
msgstr "Grupos de campos"
|
29 |
|
30 |
+
#. Plugin Name of the plugin/theme
|
31 |
+
#: acf.php:491 core/controllers/field_groups.php:213
|
32 |
msgid "Advanced Custom Fields"
|
33 |
msgstr "Advanced Custom Fields"
|
34 |
|
35 |
+
#: acf.php:492
|
36 |
msgid "Add New"
|
37 |
msgstr "Adicionar novo"
|
38 |
|
39 |
+
#: acf.php:493
|
40 |
msgid "Add New Field Group"
|
41 |
msgstr "Adicionar novo grupo de campos"
|
42 |
|
43 |
+
#: acf.php:494
|
44 |
msgid "Edit Field Group"
|
45 |
msgstr "Editar grupo de campos"
|
46 |
|
47 |
+
#: acf.php:495
|
48 |
msgid "New Field Group"
|
49 |
msgstr "Novo grupo de campos"
|
50 |
|
51 |
+
#: acf.php:496
|
52 |
msgid "View Field Group"
|
53 |
msgstr "Ver grupo de campos"
|
54 |
|
55 |
+
#: acf.php:497
|
56 |
msgid "Search Field Groups"
|
57 |
msgstr "Pesquisar grupos de campos"
|
58 |
|
59 |
+
#: acf.php:498
|
60 |
msgid "No Field Groups found"
|
61 |
msgstr "Nenhum grupo de campos encontrado"
|
62 |
|
63 |
+
#: acf.php:499
|
64 |
msgid "No Field Groups found in Trash"
|
65 |
+
msgstr "Nenhum grupo de campos encontrado no Lixo"
|
66 |
|
67 |
+
#: acf.php:584 core/views/meta_box_options.php:99
|
68 |
msgid "Custom Fields"
|
69 |
msgstr "Campos personalizados"
|
70 |
|
71 |
+
#: acf.php:602 acf.php:605
|
72 |
msgid "Field group updated."
|
73 |
msgstr "Grupo de campos actualizado."
|
74 |
|
75 |
+
#: acf.php:603
|
76 |
msgid "Custom field updated."
|
77 |
msgstr "Campo personalizado actualizado."
|
78 |
|
79 |
+
#: acf.php:604
|
80 |
msgid "Custom field deleted."
|
81 |
msgstr "Campo personalizado eliminado."
|
82 |
|
83 |
#. translators: %s: date and time of the revision
|
84 |
+
#: acf.php:607
|
85 |
#, php-format
|
86 |
msgid "Field group restored to revision from %s"
|
87 |
msgstr "Grupo de campos restaurado para revisão de %s"
|
88 |
|
89 |
+
#: acf.php:608
|
90 |
msgid "Field group published."
|
91 |
msgstr "Grupo de campos publicado."
|
92 |
|
93 |
+
#: acf.php:609
|
94 |
msgid "Field group saved."
|
95 |
msgstr "Grupo de campos guardado."
|
96 |
|
97 |
+
#: acf.php:610
|
98 |
msgid "Field group submitted."
|
99 |
msgstr "Grupo de campos enviado."
|
100 |
|
101 |
+
#: acf.php:611
|
102 |
msgid "Field group scheduled for."
|
103 |
msgstr "Grupo de campos agendado."
|
104 |
|
105 |
+
#: acf.php:612
|
106 |
msgid "Field group draft updated."
|
107 |
msgstr "Rascunho de grupo de campos actualizado."
|
108 |
|
109 |
+
#: acf.php:747
|
110 |
msgid "Thumbnail"
|
111 |
msgstr "Miniatura"
|
112 |
|
113 |
+
#: acf.php:748
|
114 |
msgid "Medium"
|
115 |
msgstr "Média"
|
116 |
|
117 |
+
#: acf.php:749
|
118 |
msgid "Large"
|
119 |
msgstr "Grande"
|
120 |
|
121 |
+
#: acf.php:750
|
122 |
msgid "Full"
|
123 |
msgstr "Completo"
|
124 |
|
138 |
msgid "Post updated"
|
139 |
msgstr "Artigo actualizado"
|
140 |
|
141 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:306
|
142 |
msgid "Add-ons"
|
143 |
msgstr "Add-ons"
|
144 |
|
145 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:428
|
146 |
msgid "Repeater Field"
|
147 |
+
msgstr "Campo repetidor"
|
148 |
|
149 |
#: core/controllers/addons.php:131
|
150 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
151 |
msgstr "Cria infinitas linhas de dados repetíveis com um interfácil versátil!"
|
152 |
|
153 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:436
|
154 |
msgid "Gallery Field"
|
155 |
msgstr "Campo de galeria"
|
156 |
|
158 |
msgid "Create image galleries in a simple and intuitive interface!"
|
159 |
msgstr "Cria galerias de imagens num interface simples e intuitivo!"
|
160 |
|
161 |
+
#: core/controllers/addons.php:144 core/controllers/field_groups.php:444
|
162 |
msgid "Options Page"
|
163 |
msgstr "Página de opções"
|
164 |
|
191 |
msgstr "Selector jQuery de data e hora"
|
192 |
|
193 |
#: core/controllers/addons.php:175
|
194 |
+
msgid "Google Map Extended"
|
195 |
+
msgstr "Google Map Extended"
|
196 |
|
197 |
#: core/controllers/addons.php:176
|
198 |
msgid "Find addresses and coordinates of a desired location"
|
234 |
msgid "Purchase & Install"
|
235 |
msgstr "Comprar e instalar"
|
236 |
|
237 |
+
#: core/controllers/addons.php:242 core/controllers/field_groups.php:421
|
238 |
+
#: core/controllers/field_groups.php:430 core/controllers/field_groups.php:438
|
239 |
+
#: core/controllers/field_groups.php:446 core/controllers/field_groups.php:454
|
240 |
msgid "Download"
|
241 |
msgstr "Descarregar"
|
242 |
|
396 |
msgid "No field groups were selected"
|
397 |
msgstr "Nenhum grupo de campos foi seleccionado"
|
398 |
|
399 |
+
#: core/controllers/field_group.php:359
|
400 |
msgid "Move to trash. Are you sure?"
|
401 |
msgstr "Mover para o lixo. Tem certeza?"
|
402 |
|
403 |
+
#: core/controllers/field_group.php:360
|
404 |
msgid "checked"
|
405 |
msgstr "seleccionado"
|
406 |
|
407 |
+
#: core/controllers/field_group.php:361
|
408 |
msgid "No toggle fields available"
|
409 |
msgstr "Nenhum campo de opções disponível"
|
410 |
|
411 |
+
#: core/controllers/field_group.php:362
|
412 |
msgid "Field group title is required"
|
413 |
msgstr "O título do grupo de campos é obrigatório"
|
414 |
|
415 |
+
#: core/controllers/field_group.php:363
|
416 |
msgid "copy"
|
417 |
msgstr "cópia"
|
418 |
|
419 |
+
#: core/controllers/field_group.php:364 core/views/meta_box_location.php:62
|
420 |
#: core/views/meta_box_location.php:159
|
421 |
msgid "or"
|
422 |
msgstr "ou"
|
423 |
|
424 |
+
#: core/controllers/field_group.php:365 core/controllers/field_group.php:397
|
425 |
+
#: core/controllers/field_group.php:459 core/controllers/field_groups.php:148
|
426 |
msgid "Fields"
|
427 |
msgstr "Campos"
|
428 |
|
429 |
+
#: core/controllers/field_group.php:366
|
430 |
msgid "Parent fields"
|
431 |
msgstr "Campos superiores"
|
432 |
|
433 |
+
#: core/controllers/field_group.php:367
|
434 |
msgid "Sibling fields"
|
435 |
msgstr "Campos do grupo"
|
436 |
|
437 |
+
#: core/controllers/field_group.php:368
|
438 |
msgid "Hide / Show All"
|
439 |
msgstr "Esconder / Mostrar tudo"
|
440 |
|
441 |
+
#: core/controllers/field_group.php:398
|
442 |
msgid "Location"
|
443 |
msgstr "Localização"
|
444 |
|
445 |
+
#: core/controllers/field_group.php:399
|
446 |
msgid "Options"
|
447 |
msgstr "Opções"
|
448 |
|
449 |
+
#: core/controllers/field_group.php:461
|
450 |
msgid "Show Field Key:"
|
451 |
msgstr "Mostrar campo chave"
|
452 |
|
453 |
+
#: core/controllers/field_group.php:462 core/fields/page_link.php:138
|
454 |
#: core/fields/page_link.php:159 core/fields/post_object.php:340
|
455 |
#: core/fields/post_object.php:361 core/fields/select.php:224
|
456 |
#: core/fields/select.php:243 core/fields/taxonomy.php:499
|
457 |
+
#: core/fields/user.php:332 core/fields/wysiwyg.php:344
|
458 |
#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
|
459 |
msgid "No"
|
460 |
msgstr "Não"
|
461 |
|
462 |
+
#: core/controllers/field_group.php:463 core/fields/page_link.php:137
|
463 |
#: core/fields/page_link.php:158 core/fields/post_object.php:339
|
464 |
#: core/fields/post_object.php:360 core/fields/select.php:223
|
465 |
#: core/fields/select.php:242 core/fields/taxonomy.php:498
|
466 |
+
#: core/fields/user.php:331 core/fields/wysiwyg.php:343
|
467 |
#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
|
468 |
msgid "Yes"
|
469 |
msgstr "Sim"
|
470 |
|
471 |
+
#: core/controllers/field_group.php:635
|
472 |
msgid "Front Page"
|
473 |
msgstr "Página inicial"
|
474 |
|
475 |
+
#: core/controllers/field_group.php:636
|
476 |
msgid "Posts Page"
|
477 |
msgstr "Página de artigos"
|
478 |
|
479 |
+
#: core/controllers/field_group.php:637
|
480 |
msgid "Top Level Page (parent of 0)"
|
481 |
+
msgstr "Página de topo (sem superior)"
|
482 |
|
483 |
+
#: core/controllers/field_group.php:638
|
484 |
msgid "Parent Page (has children)"
|
485 |
msgstr "Página superior (tem dependentes)"
|
486 |
|
487 |
+
#: core/controllers/field_group.php:639
|
488 |
msgid "Child Page (has parent)"
|
489 |
msgstr "Página dependente (tem superior)"
|
490 |
|
491 |
+
#: core/controllers/field_group.php:647
|
492 |
msgid "Default Template"
|
493 |
msgstr "Modelo por omissão"
|
494 |
|
495 |
+
#: core/controllers/field_group.php:729
|
496 |
msgid "Published"
|
497 |
msgstr "Publicado"
|
498 |
|
499 |
+
#: core/controllers/field_group.php:730
|
500 |
msgid "Pending Review"
|
501 |
msgstr "Pendente de revisão"
|
502 |
|
503 |
+
#: core/controllers/field_group.php:731
|
504 |
msgid "Draft"
|
505 |
msgstr "Rascunho"
|
506 |
|
507 |
+
#: core/controllers/field_group.php:732
|
508 |
msgid "Future"
|
509 |
msgstr "Futuro"
|
510 |
|
511 |
+
#: core/controllers/field_group.php:733
|
512 |
msgid "Private"
|
513 |
msgstr "Privado"
|
514 |
|
515 |
+
#: core/controllers/field_group.php:734
|
516 |
msgid "Revision"
|
517 |
msgstr "Revisão"
|
518 |
|
519 |
+
#: core/controllers/field_group.php:735
|
520 |
msgid "Trash"
|
521 |
msgstr "Lixo"
|
522 |
|
523 |
+
#: core/controllers/field_group.php:748
|
524 |
msgid "Super Admin"
|
525 |
msgstr "Super Administrador"
|
526 |
|
527 |
+
#: core/controllers/field_group.php:763 core/controllers/field_group.php:784
|
528 |
+
#: core/controllers/field_group.php:791 core/fields/file.php:186
|
529 |
#: core/fields/image.php:177 core/fields/page_link.php:109
|
530 |
#: core/fields/post_object.php:286 core/fields/post_object.php:310
|
531 |
#: core/fields/relationship.php:588 core/fields/relationship.php:612
|
537 |
msgid "Title"
|
538 |
msgstr "Título"
|
539 |
|
540 |
+
#: core/controllers/field_groups.php:215 core/controllers/field_groups.php:252
|
541 |
msgid "Changelog"
|
542 |
msgstr "Registo de alterações"
|
543 |
|
544 |
+
#: core/controllers/field_groups.php:216
|
545 |
#, php-format
|
546 |
msgid "See what's new in %1$sversion %2$s%3$s"
|
547 |
msgstr "Veja o que há de novo na %1$sversão %2$s%3$s"
|
548 |
|
549 |
+
#: core/controllers/field_groups.php:218
|
550 |
msgid "Resources"
|
551 |
msgstr "Recursos"
|
552 |
|
553 |
+
#: core/controllers/field_groups.php:220
|
554 |
msgid "Getting Started"
|
555 |
msgstr "Primeiros passos"
|
556 |
|
557 |
+
#: core/controllers/field_groups.php:221
|
558 |
msgid "Field Types"
|
559 |
msgstr "Tipos de campos"
|
560 |
|
561 |
+
#: core/controllers/field_groups.php:222
|
562 |
msgid "Functions"
|
563 |
msgstr "Funções"
|
564 |
|
565 |
+
#: core/controllers/field_groups.php:223
|
566 |
msgid "Actions"
|
567 |
msgstr "Acções"
|
568 |
|
569 |
+
#: core/controllers/field_groups.php:224 core/fields/relationship.php:631
|
570 |
msgid "Filters"
|
571 |
msgstr "Filtros"
|
572 |
|
573 |
+
#: core/controllers/field_groups.php:225
|
574 |
msgid "'How to' guides"
|
575 |
msgstr "Guias práticos"
|
576 |
|
577 |
+
#: core/controllers/field_groups.php:226
|
578 |
msgid "Tutorials"
|
579 |
msgstr "Tutoriais"
|
580 |
|
581 |
+
#: core/controllers/field_groups.php:231
|
582 |
msgid "Created by"
|
583 |
msgstr "Criado por"
|
584 |
|
585 |
+
#: core/controllers/field_groups.php:243
|
586 |
msgid "Welcome to Advanced Custom Fields"
|
587 |
msgstr "Bem vindo ao Advanced Custom Fields"
|
588 |
|
589 |
+
#: core/controllers/field_groups.php:244
|
590 |
msgid "Thank you for updating to the latest version!"
|
591 |
msgstr "Obrigado por atualizar para a última versão!"
|
592 |
|
593 |
+
#: core/controllers/field_groups.php:244
|
594 |
#, php-format
|
595 |
msgid ""
|
596 |
"ACF %s is more polished and enjoyable than ever before. We hope you like it."
|
597 |
msgstr ""
|
598 |
"O ACF %s está mais elegante e agradável que nunca. Esperamos que goste."
|
599 |
|
600 |
+
#: core/controllers/field_groups.php:251
|
601 |
msgid "What’s New"
|
602 |
msgstr "O que há de novo"
|
603 |
|
604 |
+
#: core/controllers/field_groups.php:254
|
605 |
msgid "Download Add-ons"
|
606 |
msgstr "Descarregar add-ons"
|
607 |
|
608 |
+
#: core/controllers/field_groups.php:308
|
609 |
msgid "Activation codes have grown into plugins!"
|
610 |
msgstr "Os códigos de activação transformaram-se em plugins!"
|
611 |
|
612 |
+
#: core/controllers/field_groups.php:309
|
613 |
msgid ""
|
614 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
615 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
620 |
"wordpress.org, cada add-on continuará a receber as actualizações de modo "
|
621 |
"habitual."
|
622 |
|
623 |
+
#: core/controllers/field_groups.php:315
|
624 |
msgid "All previous Add-ons have been successfully installed"
|
625 |
msgstr "Todos os add-ons anteriores foram instalados com sucesso"
|
626 |
|
627 |
+
#: core/controllers/field_groups.php:319
|
628 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
629 |
msgstr "Este site utiliza Add-ons premium que têm que ser descarregados"
|
630 |
|
631 |
+
#: core/controllers/field_groups.php:319
|
632 |
msgid "Download your activated Add-ons"
|
633 |
msgstr "Descarregue os seus Add-ons activados"
|
634 |
|
635 |
+
#: core/controllers/field_groups.php:324
|
636 |
msgid ""
|
637 |
"This website does not use premium Add-ons and will not be affected by this "
|
638 |
"change."
|
640 |
"Este site não utiliza nenhum Add-on premium e não será afetado por esta "
|
641 |
"mudança."
|
642 |
|
643 |
+
#: core/controllers/field_groups.php:334
|
644 |
msgid "Easier Development"
|
645 |
msgstr "Desenvolvimento mais fácil"
|
646 |
|
647 |
+
#: core/controllers/field_groups.php:336
|
648 |
msgid "New Field Types"
|
649 |
msgstr "Novos tipos de campos"
|
650 |
|
651 |
+
#: core/controllers/field_groups.php:338
|
652 |
msgid "Taxonomy Field"
|
653 |
msgstr "Campo de taxonomia"
|
654 |
|
655 |
+
#: core/controllers/field_groups.php:339
|
656 |
msgid "User Field"
|
657 |
msgstr "Campo de utilizador"
|
658 |
|
659 |
+
#: core/controllers/field_groups.php:340
|
660 |
msgid "Email Field"
|
661 |
msgstr "Campo de email"
|
662 |
|
663 |
+
#: core/controllers/field_groups.php:341
|
664 |
msgid "Password Field"
|
665 |
msgstr "Campo de senha"
|
666 |
|
667 |
+
#: core/controllers/field_groups.php:343
|
668 |
msgid "Custom Field Types"
|
669 |
msgstr "Tipos de campos personalizados"
|
670 |
|
671 |
+
#: core/controllers/field_groups.php:344
|
672 |
msgid ""
|
673 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
674 |
"field types are not compatible with version 4."
|
676 |
"Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente os tipos "
|
677 |
"de campos da versão 3 não são compatíveis com a versão 4."
|
678 |
|
679 |
+
#: core/controllers/field_groups.php:345
|
680 |
#, php-format
|
681 |
msgid ""
|
682 |
"Migrating your field types is easy, please %sfollow this tutorial%s to learn "
|
685 |
"Migrar os seus tipos de campos é fácil, por favor %ssiga este tutorial%s "
|
686 |
"para saber mais."
|
687 |
|
688 |
+
#: core/controllers/field_groups.php:347
|
689 |
msgid "Actions & Filters"
|
690 |
msgstr "Acções e filtros"
|
691 |
|
692 |
+
#: core/controllers/field_groups.php:348
|
693 |
#, php-format
|
694 |
msgid ""
|
695 |
"All actions & filters have received a major facelift to make customizing ACF "
|
700 |
"personalização do ACF ainda mais fácil! Por favor %sleia este guia%s para "
|
701 |
"conhecer as alterações às convenção de nomenclaturas."
|
702 |
|
703 |
+
#: core/controllers/field_groups.php:350
|
704 |
msgid "Preview draft is now working!"
|
705 |
msgstr "A visualização de rascunhos agora está a funcionar!"
|
706 |
|
707 |
+
#: core/controllers/field_groups.php:351
|
708 |
msgid "This bug has been squashed along with many other little critters!"
|
709 |
msgstr "Este problema foi eliminado juntamente com muitos outros!"
|
710 |
|
711 |
+
#: core/controllers/field_groups.php:351
|
712 |
msgid "See the full changelog"
|
713 |
msgstr "Ver o changelog completo"
|
714 |
|
715 |
+
#: core/controllers/field_groups.php:355
|
716 |
msgid "Important"
|
717 |
msgstr "Importante"
|
718 |
|
719 |
+
#: core/controllers/field_groups.php:357
|
720 |
msgid "Database Changes"
|
721 |
msgstr "Alterações à base de dados"
|
722 |
|
723 |
+
#: core/controllers/field_groups.php:358
|
724 |
msgid ""
|
725 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
726 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
730 |
"dados entre as versões 3 e 4. Isso significa que você pode reverter para a "
|
731 |
"versão 3 sem quaisquer problemas."
|
732 |
|
733 |
+
#: core/controllers/field_groups.php:360
|
734 |
msgid "Potential Issues"
|
735 |
msgstr "Possíveis problemas"
|
736 |
|
737 |
+
#: core/controllers/field_groups.php:361
|
738 |
#, php-format
|
739 |
msgid ""
|
740 |
"Due to the sizable changes surrounding Add-ons, field types and action/"
|
747 |
"importante que leia todo o guia sobre %sMigrar de v3 para v4%s para ver a "
|
748 |
"lista completa de alterações."
|
749 |
|
750 |
+
#: core/controllers/field_groups.php:364
|
751 |
msgid "Really Important!"
|
752 |
msgstr "Muito importante!"
|
753 |
|
754 |
+
#: core/controllers/field_groups.php:364
|
755 |
#, php-format
|
756 |
msgid ""
|
757 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
760 |
"Se actualizou o plugin ACF sem conhecimento prévio destas alterações, por "
|
761 |
"favor reverta para a última %sversão 3%s deste plugin."
|
762 |
|
763 |
+
#: core/controllers/field_groups.php:369
|
764 |
msgid "Thank You"
|
765 |
msgstr "Obrigado"
|
766 |
|
767 |
+
#: core/controllers/field_groups.php:370
|
768 |
msgid ""
|
769 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
770 |
"4 beta and for all the support I have received."
|
772 |
"Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 "
|
773 |
"beta e por todo o apoio que recebi."
|
774 |
|
775 |
+
#: core/controllers/field_groups.php:371
|
776 |
msgid "Without you all, this release would not have been possible!"
|
777 |
msgstr "Sem vocês este lançamento não teria sido possível!"
|
778 |
|
779 |
+
#: core/controllers/field_groups.php:375
|
780 |
msgid "Changelog for"
|
781 |
msgstr "Changelog da versão"
|
782 |
|
783 |
+
#: core/controllers/field_groups.php:392
|
784 |
msgid "Learn more"
|
785 |
msgstr "Saiba mais"
|
786 |
|
787 |
+
#: core/controllers/field_groups.php:398
|
788 |
msgid "Overview"
|
789 |
msgstr "Visão geral"
|
790 |
|
791 |
+
#: core/controllers/field_groups.php:400
|
792 |
msgid ""
|
793 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
794 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
799 |
"todos os add-ons funcionam como plugins que têm que ser descarregados, "
|
800 |
"instalados e actualizados separadamente."
|
801 |
|
802 |
+
#: core/controllers/field_groups.php:402
|
803 |
msgid ""
|
804 |
"This page will assist you in downloading and installing each available Add-"
|
805 |
"on."
|
806 |
msgstr ""
|
807 |
"Esta página vai ajudá-lo a descarregar e instalar cada add-on disponível."
|
808 |
|
809 |
+
#: core/controllers/field_groups.php:404
|
810 |
msgid "Available Add-ons"
|
811 |
msgstr "Add-ons disponíveis"
|
812 |
|
813 |
+
#: core/controllers/field_groups.php:406
|
814 |
msgid "The following Add-ons have been detected as activated on this website."
|
815 |
msgstr "Os seguintes Add-ons foram detectados como activos neste site."
|
816 |
|
817 |
+
#: core/controllers/field_groups.php:419 core/fields/file.php:109
|
818 |
msgid "Name"
|
819 |
msgstr "Nome"
|
820 |
|
821 |
+
#: core/controllers/field_groups.php:420
|
822 |
msgid "Activation Code"
|
823 |
msgstr "Código de activação"
|
824 |
|
825 |
+
#: core/controllers/field_groups.php:452
|
826 |
msgid "Flexible Content"
|
827 |
msgstr "Conteúdo flexível"
|
828 |
|
829 |
+
#: core/controllers/field_groups.php:462
|
830 |
msgid "Installation"
|
831 |
msgstr "Instalação"
|
832 |
|
833 |
+
#: core/controllers/field_groups.php:464
|
834 |
msgid "For each Add-on available, please perform the following:"
|
835 |
msgstr "Para cada add-on disponível, por favor aça o seguinte:"
|
836 |
|
837 |
+
#: core/controllers/field_groups.php:466
|
838 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
839 |
msgstr "Descarregue o plugin add-on (ficheiro .zip) para o seu computador"
|
840 |
|
841 |
+
#: core/controllers/field_groups.php:467
|
842 |
#, php-format
|
843 |
msgid "Navigate to %sPlugins > Add New > Upload%s"
|
844 |
msgstr "Navegue até %sPlugins > Adicionar novo > Carregar plugin%s"
|
845 |
|
846 |
+
#: core/controllers/field_groups.php:468
|
847 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
848 |
msgstr ""
|
849 |
"Utilize o carregador para procurar, seleccionar e instalar o seu add-on "
|
850 |
"(ficheiro .zip)"
|
851 |
|
852 |
+
#: core/controllers/field_groups.php:469
|
853 |
msgid ""
|
854 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
855 |
"link"
|
857 |
"Assim que o plugin estiver carregado e instalado, clique na ligação 'Activar "
|
858 |
"plugin'"
|
859 |
|
860 |
+
#: core/controllers/field_groups.php:470
|
861 |
msgid "The Add-on is now installed and activated!"
|
862 |
msgstr "O add-on está agora instalado e activado!"
|
863 |
|
864 |
+
#: core/controllers/field_groups.php:484
|
865 |
msgid "Awesome. Let's get to work"
|
866 |
msgstr "Incrível. Vamos começar a trabalhar"
|
867 |
|
935 |
#: core/fields/email.php:106 core/fields/number.php:116
|
936 |
#: core/fields/radio.php:196 core/fields/select.php:197
|
937 |
#: core/fields/text.php:116 core/fields/textarea.php:103
|
938 |
+
#: core/fields/true_false.php:94 core/fields/wysiwyg.php:286
|
939 |
msgid "Default Value"
|
940 |
msgstr "Valor por omissão"
|
941 |
|
1004 |
|
1005 |
#: core/fields/date_picker/date_picker.php:142
|
1006 |
msgid "Display format"
|
1007 |
+
msgstr "Formato de apresentação"
|
1008 |
|
1009 |
#: core/fields/date_picker/date_picker.php:143
|
1010 |
msgid "This format will be seen by the user when entering a value"
|
1015 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1016 |
"about"
|
1017 |
msgstr ""
|
1018 |
+
"\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de apresentação mais "
|
1019 |
+
"utilizados. Leia mais sobre"
|
1020 |
|
1021 |
#: core/fields/date_picker/date_picker.php:158
|
1022 |
msgid "Week Starts On"
|
1032 |
|
1033 |
#: core/fields/email.php:107 core/fields/number.php:117
|
1034 |
#: core/fields/text.php:117 core/fields/textarea.php:104
|
1035 |
+
#: core/fields/wysiwyg.php:287
|
1036 |
msgid "Appears when creating a new post"
|
1037 |
msgstr "Aparece quando é criado um novo artigo"
|
1038 |
|
1072 |
msgid "File"
|
1073 |
msgstr "Ficheiro"
|
1074 |
|
1075 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1076 |
msgid "Content"
|
1077 |
msgstr "Conteúdo"
|
1078 |
|
1089 |
msgstr "Actualizar ficheiro"
|
1090 |
|
1091 |
#: core/fields/file.php:29 core/fields/image.php:30
|
1092 |
+
msgid "Uploaded to this post"
|
1093 |
+
msgstr "Carregados neste artigo"
|
1094 |
|
1095 |
#: core/fields/file.php:113
|
1096 |
msgid "Size"
|
1127 |
|
1128 |
#: core/fields/file.php:187 core/fields/image.php:178
|
1129 |
msgid "Uploaded to post"
|
1130 |
+
msgstr "Carregados no artigo"
|
1131 |
|
1132 |
#: core/fields/google-map.php:18
|
1133 |
msgid "Google Map"
|
1356 |
|
1357 |
#: core/fields/relationship.php:562
|
1358 |
msgid "Return Format"
|
1359 |
+
msgstr "Formato a mostrar"
|
1360 |
|
1361 |
#: core/fields/relationship.php:573
|
1362 |
msgid "Post Objects"
|
1368 |
|
1369 |
#: core/fields/relationship.php:640
|
1370 |
msgid "Search"
|
1371 |
+
msgstr "Pesquisar"
|
1372 |
|
1373 |
#: core/fields/relationship.php:641
|
1374 |
msgid "Post Type Select"
|
1397 |
#: core/fields/select.php:18 core/fields/select.php:109
|
1398 |
#: core/fields/taxonomy.php:480 core/fields/user.php:313
|
1399 |
msgid "Select"
|
1400 |
+
msgstr "Selector"
|
1401 |
|
1402 |
#: core/fields/tab.php:19
|
1403 |
msgid "Tab"
|
1529 |
|
1530 |
#: core/fields/user.php:271
|
1531 |
msgid "Filter by role"
|
1532 |
+
msgstr "Filtrar por perfil"
|
1533 |
|
1534 |
+
#: core/fields/wysiwyg.php:19
|
1535 |
msgid "Wysiwyg Editor"
|
1536 |
msgstr "Editor wysiwyg"
|
1537 |
|
1538 |
+
#: core/fields/wysiwyg.php:301
|
1539 |
msgid "Toolbar"
|
1540 |
msgstr "Barra de ferramentas"
|
1541 |
|
1542 |
+
#: core/fields/wysiwyg.php:333
|
1543 |
msgid "Show Media Upload Buttons?"
|
1544 |
msgstr "Mostrar botões de carregar multimédia?"
|
1545 |
|
1770 |
|
1771 |
#: core/views/meta_box_options.php:85
|
1772 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1773 |
+
msgstr "<b>Seleccione</b> os itens a <b>esconder</b> do ecrã de edição."
|
1774 |
|
1775 |
#: core/views/meta_box_options.php:86
|
1776 |
msgid ""
|
1777 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1778 |
"options will be used. (the one with the lowest order number)"
|
1779 |
msgstr ""
|
1780 |
+
"Se aparecerem vários grupos de campos num ecrã de edição, serão utilizadas "
|
1781 |
+
"as opções do primeiro grupo de campos. (o que tiver menor número de ordem)"
|
1782 |
|
1783 |
#: core/views/meta_box_options.php:96
|
1784 |
msgid "Permalink"
|
1828 |
msgid "Send Trackbacks"
|
1829 |
msgstr "Enviar trackbacks"
|
1830 |
|
1831 |
+
#. Plugin URI of the plugin/theme
|
1832 |
+
msgid "http://www.advancedcustomfields.com/"
|
1833 |
+
msgstr "http://www.advancedcustomfields.com/"
|
1834 |
+
|
1835 |
+
#. Description of the plugin/theme
|
1836 |
+
msgid "Customise WordPress with powerful, professional and intuitive fields"
|
1837 |
+
msgstr ""
|
1838 |
+
"Personalize o WordPress com campos intuitivos, poderosos e profissionais."
|
1839 |
+
|
1840 |
+
#. Author of the plugin/theme
|
1841 |
+
msgid "Elliot Condon"
|
1842 |
+
msgstr "Elliot Condon"
|
1843 |
+
|
1844 |
+
#. Author URI of the plugin/theme
|
1845 |
+
msgid "http://www.elliotcondon.com/"
|
1846 |
+
msgstr "http://www.elliotcondon.com/"
|
1847 |
+
|
1848 |
+
#~ msgid "Location Field"
|
1849 |
+
#~ msgstr "Campo de localização"
|
1850 |
+
|
1851 |
#~ msgid "Publish"
|
1852 |
#~ msgstr "Publicado"
|
1853 |
|
1890 |
#~ msgid "to find the updated naming convention."
|
1891 |
#~ msgstr "para encontrar convenção de nomenclaturas atualizada."
|
1892 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1893 |
#~ msgid "Migrating from v3 to v4"
|
1894 |
#~ msgstr "Migrar da v3 para v4"
|
1895 |
|
lang/acf.pot
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Advanced Custom Fields\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"PO-Revision-Date: 2015-04-07 09:42-0000\n"
|
10 |
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language-Team: \n"
|
@@ -14,109 +14,111 @@ msgstr ""
|
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: Poedit 1.8.
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
20 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
21 |
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
|
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#: acf.php:
|
26 |
msgid "Field Groups"
|
27 |
msgstr ""
|
28 |
|
29 |
-
|
|
|
30 |
msgid "Advanced Custom Fields"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: acf.php:
|
34 |
msgid "Add New"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: acf.php:
|
38 |
msgid "Add New Field Group"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: acf.php:
|
42 |
msgid "Edit Field Group"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: acf.php:
|
46 |
msgid "New Field Group"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: acf.php:
|
50 |
msgid "View Field Group"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: acf.php:
|
54 |
msgid "Search Field Groups"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: acf.php:
|
58 |
msgid "No Field Groups found"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: acf.php:
|
62 |
msgid "No Field Groups found in Trash"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: acf.php:
|
66 |
msgid "Custom Fields"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: acf.php:
|
70 |
msgid "Field group updated."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: acf.php:
|
74 |
msgid "Custom field updated."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Custom field deleted."
|
79 |
msgstr ""
|
80 |
|
81 |
#. translators: %s: date and time of the revision
|
82 |
-
#: acf.php:
|
83 |
#, php-format
|
84 |
msgid "Field group restored to revision from %s"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: acf.php:
|
88 |
msgid "Field group published."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: acf.php:
|
92 |
msgid "Field group saved."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: acf.php:
|
96 |
msgid "Field group submitted."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: acf.php:
|
100 |
msgid "Field group scheduled for."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: acf.php:
|
104 |
msgid "Field group draft updated."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: acf.php:
|
108 |
msgid "Thumbnail"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: acf.php:
|
112 |
msgid "Medium"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: acf.php:
|
116 |
msgid "Large"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: acf.php:
|
120 |
msgid "Full"
|
121 |
msgstr ""
|
122 |
|
@@ -136,11 +138,11 @@ msgstr ""
|
|
136 |
msgid "Post updated"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: core/controllers/addons.php:42 core/controllers/field_groups.php:
|
140 |
msgid "Add-ons"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: core/controllers/addons.php:130 core/controllers/field_groups.php:
|
144 |
msgid "Repeater Field"
|
145 |
msgstr ""
|
146 |
|
@@ -148,7 +150,7 @@ msgstr ""
|
|
148 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: core/controllers/addons.php:137 core/controllers/field_groups.php:
|
152 |
msgid "Gallery Field"
|
153 |
msgstr ""
|
154 |
|
@@ -156,7 +158,7 @@ msgstr ""
|
|
156 |
msgid "Create image galleries in a simple and intuitive interface!"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: core/controllers/addons.php:144 core/controllers/field_groups.php:
|
160 |
msgid "Options Page"
|
161 |
msgstr ""
|
162 |
|
@@ -189,7 +191,7 @@ msgid "jQuery date & time picker"
|
|
189 |
msgstr ""
|
190 |
|
191 |
#: core/controllers/addons.php:175
|
192 |
-
msgid "
|
193 |
msgstr ""
|
194 |
|
195 |
#: core/controllers/addons.php:176
|
@@ -228,9 +230,9 @@ msgstr ""
|
|
228 |
msgid "Purchase & Install"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: core/controllers/addons.php:242 core/controllers/field_groups.php:
|
232 |
-
#: core/controllers/field_groups.php:
|
233 |
-
#: core/controllers/field_groups.php:
|
234 |
msgid "Download"
|
235 |
msgstr ""
|
236 |
|
@@ -370,136 +372,136 @@ msgstr ""
|
|
370 |
msgid "No field groups were selected"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: core/controllers/field_group.php:
|
374 |
msgid "Move to trash. Are you sure?"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: core/controllers/field_group.php:
|
378 |
msgid "checked"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: core/controllers/field_group.php:
|
382 |
msgid "No toggle fields available"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: core/controllers/field_group.php:
|
386 |
msgid "Field group title is required"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: core/controllers/field_group.php:
|
390 |
msgid "copy"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: core/controllers/field_group.php:
|
394 |
#: core/views/meta_box_location.php:159
|
395 |
msgid "or"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: core/controllers/field_group.php:
|
399 |
-
#: core/controllers/field_group.php:
|
400 |
msgid "Fields"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: core/controllers/field_group.php:
|
404 |
msgid "Parent fields"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: core/controllers/field_group.php:
|
408 |
msgid "Sibling fields"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: core/controllers/field_group.php:
|
412 |
msgid "Hide / Show All"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: core/controllers/field_group.php:
|
416 |
msgid "Location"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: core/controllers/field_group.php:
|
420 |
msgid "Options"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: core/controllers/field_group.php:
|
424 |
msgid "Show Field Key:"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: core/controllers/field_group.php:
|
428 |
#: core/fields/page_link.php:159 core/fields/post_object.php:340
|
429 |
#: core/fields/post_object.php:361 core/fields/select.php:224
|
430 |
#: core/fields/select.php:243 core/fields/taxonomy.php:499
|
431 |
-
#: core/fields/user.php:332 core/fields/wysiwyg.php:
|
432 |
#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
|
433 |
msgid "No"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: core/controllers/field_group.php:
|
437 |
#: core/fields/page_link.php:158 core/fields/post_object.php:339
|
438 |
#: core/fields/post_object.php:360 core/fields/select.php:223
|
439 |
#: core/fields/select.php:242 core/fields/taxonomy.php:498
|
440 |
-
#: core/fields/user.php:331 core/fields/wysiwyg.php:
|
441 |
#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
|
442 |
msgid "Yes"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: core/controllers/field_group.php:
|
446 |
msgid "Front Page"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: core/controllers/field_group.php:
|
450 |
msgid "Posts Page"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: core/controllers/field_group.php:
|
454 |
msgid "Top Level Page (parent of 0)"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: core/controllers/field_group.php:
|
458 |
msgid "Parent Page (has children)"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: core/controllers/field_group.php:
|
462 |
msgid "Child Page (has parent)"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: core/controllers/field_group.php:
|
466 |
msgid "Default Template"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: core/controllers/field_group.php:
|
470 |
msgid "Published"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: core/controllers/field_group.php:
|
474 |
msgid "Pending Review"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: core/controllers/field_group.php:
|
478 |
msgid "Draft"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: core/controllers/field_group.php:
|
482 |
msgid "Future"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: core/controllers/field_group.php:
|
486 |
msgid "Private"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: core/controllers/field_group.php:
|
490 |
msgid "Revision"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: core/controllers/field_group.php:
|
494 |
msgid "Trash"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: core/controllers/field_group.php:
|
498 |
msgid "Super Admin"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: core/controllers/field_group.php:
|
502 |
-
#: core/controllers/field_group.php:
|
503 |
#: core/fields/image.php:177 core/fields/page_link.php:109
|
504 |
#: core/fields/post_object.php:286 core/fields/post_object.php:310
|
505 |
#: core/fields/relationship.php:588 core/fields/relationship.php:612
|
@@ -511,148 +513,148 @@ msgstr ""
|
|
511 |
msgid "Title"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: core/controllers/field_groups.php:
|
515 |
msgid "Changelog"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: core/controllers/field_groups.php:
|
519 |
#, php-format
|
520 |
msgid "See what's new in %1$sversion %2$s%3$s"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: core/controllers/field_groups.php:
|
524 |
msgid "Resources"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: core/controllers/field_groups.php:
|
528 |
msgid "Getting Started"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: core/controllers/field_groups.php:
|
532 |
msgid "Field Types"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: core/controllers/field_groups.php:
|
536 |
msgid "Functions"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: core/controllers/field_groups.php:
|
540 |
msgid "Actions"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: core/controllers/field_groups.php:
|
544 |
msgid "Filters"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: core/controllers/field_groups.php:
|
548 |
msgid "'How to' guides"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: core/controllers/field_groups.php:
|
552 |
msgid "Tutorials"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: core/controllers/field_groups.php:
|
556 |
msgid "Created by"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: core/controllers/field_groups.php:
|
560 |
msgid "Welcome to Advanced Custom Fields"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: core/controllers/field_groups.php:
|
564 |
msgid "Thank you for updating to the latest version!"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: core/controllers/field_groups.php:
|
568 |
#, php-format
|
569 |
msgid ""
|
570 |
"ACF %s is more polished and enjoyable than ever before. We hope you like it."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: core/controllers/field_groups.php:
|
574 |
msgid "What’s New"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: core/controllers/field_groups.php:
|
578 |
msgid "Download Add-ons"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: core/controllers/field_groups.php:
|
582 |
msgid "Activation codes have grown into plugins!"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: core/controllers/field_groups.php:
|
586 |
msgid ""
|
587 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
588 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
589 |
"each Add-on will continue to receive updates in the usual way."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: core/controllers/field_groups.php:
|
593 |
msgid "All previous Add-ons have been successfully installed"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: core/controllers/field_groups.php:
|
597 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: core/controllers/field_groups.php:
|
601 |
msgid "Download your activated Add-ons"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: core/controllers/field_groups.php:
|
605 |
msgid ""
|
606 |
"This website does not use premium Add-ons and will not be affected by this "
|
607 |
"change."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: core/controllers/field_groups.php:
|
611 |
msgid "Easier Development"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: core/controllers/field_groups.php:
|
615 |
msgid "New Field Types"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: core/controllers/field_groups.php:
|
619 |
msgid "Taxonomy Field"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: core/controllers/field_groups.php:
|
623 |
msgid "User Field"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: core/controllers/field_groups.php:
|
627 |
msgid "Email Field"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: core/controllers/field_groups.php:
|
631 |
msgid "Password Field"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: core/controllers/field_groups.php:
|
635 |
msgid "Custom Field Types"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: core/controllers/field_groups.php:
|
639 |
msgid ""
|
640 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
641 |
"field types are not compatible with version 4."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: core/controllers/field_groups.php:
|
645 |
#, php-format
|
646 |
msgid ""
|
647 |
"Migrating your field types is easy, please %sfollow this tutorial%s to learn "
|
648 |
"more."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: core/controllers/field_groups.php:
|
652 |
msgid "Actions & Filters"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: core/controllers/field_groups.php:
|
656 |
#, php-format
|
657 |
msgid ""
|
658 |
"All actions & filters have received a major facelift to make customizing ACF "
|
@@ -660,38 +662,38 @@ msgid ""
|
|
660 |
"convention."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: core/controllers/field_groups.php:
|
664 |
msgid "Preview draft is now working!"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: core/controllers/field_groups.php:
|
668 |
msgid "This bug has been squashed along with many other little critters!"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: core/controllers/field_groups.php:
|
672 |
msgid "See the full changelog"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: core/controllers/field_groups.php:
|
676 |
msgid "Important"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: core/controllers/field_groups.php:
|
680 |
msgid "Database Changes"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: core/controllers/field_groups.php:
|
684 |
msgid ""
|
685 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
686 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
687 |
"any issues."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: core/controllers/field_groups.php:
|
691 |
msgid "Potential Issues"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: core/controllers/field_groups.php:
|
695 |
#, php-format
|
696 |
msgid ""
|
697 |
"Due to the sizable changes surrounding Add-ons, field types and action/"
|
@@ -700,108 +702,108 @@ msgid ""
|
|
700 |
"changes."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: core/controllers/field_groups.php:
|
704 |
msgid "Really Important!"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: core/controllers/field_groups.php:
|
708 |
#, php-format
|
709 |
msgid ""
|
710 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
711 |
"please roll back to the latest %sversion 3%s of this plugin."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: core/controllers/field_groups.php:
|
715 |
msgid "Thank You"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: core/controllers/field_groups.php:
|
719 |
msgid ""
|
720 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
721 |
"4 beta and for all the support I have received."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: core/controllers/field_groups.php:
|
725 |
msgid "Without you all, this release would not have been possible!"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: core/controllers/field_groups.php:
|
729 |
msgid "Changelog for"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: core/controllers/field_groups.php:
|
733 |
msgid "Learn more"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: core/controllers/field_groups.php:
|
737 |
msgid "Overview"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: core/controllers/field_groups.php:
|
741 |
msgid ""
|
742 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
743 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
744 |
"need to be individually downloaded, installed and updated."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: core/controllers/field_groups.php:
|
748 |
msgid ""
|
749 |
"This page will assist you in downloading and installing each available Add-"
|
750 |
"on."
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: core/controllers/field_groups.php:
|
754 |
msgid "Available Add-ons"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: core/controllers/field_groups.php:
|
758 |
msgid "The following Add-ons have been detected as activated on this website."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: core/controllers/field_groups.php:
|
762 |
msgid "Name"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: core/controllers/field_groups.php:
|
766 |
msgid "Activation Code"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: core/controllers/field_groups.php:
|
770 |
msgid "Flexible Content"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: core/controllers/field_groups.php:
|
774 |
msgid "Installation"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: core/controllers/field_groups.php:
|
778 |
msgid "For each Add-on available, please perform the following:"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: core/controllers/field_groups.php:
|
782 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: core/controllers/field_groups.php:
|
786 |
#, php-format
|
787 |
msgid "Navigate to %sPlugins > Add New > Upload%s"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: core/controllers/field_groups.php:
|
791 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: core/controllers/field_groups.php:
|
795 |
msgid ""
|
796 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
797 |
"link"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: core/controllers/field_groups.php:
|
801 |
msgid "The Add-on is now installed and activated!"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: core/controllers/field_groups.php:
|
805 |
msgid "Awesome. Let's get to work"
|
806 |
msgstr ""
|
807 |
|
@@ -873,7 +875,7 @@ msgstr ""
|
|
873 |
#: core/fields/email.php:106 core/fields/number.php:116
|
874 |
#: core/fields/radio.php:196 core/fields/select.php:197
|
875 |
#: core/fields/text.php:116 core/fields/textarea.php:103
|
876 |
-
#: core/fields/true_false.php:94 core/fields/wysiwyg.php:
|
877 |
msgid "Default Value"
|
878 |
msgstr ""
|
879 |
|
@@ -966,7 +968,7 @@ msgstr ""
|
|
966 |
|
967 |
#: core/fields/email.php:107 core/fields/number.php:117
|
968 |
#: core/fields/text.php:117 core/fields/textarea.php:104
|
969 |
-
#: core/fields/wysiwyg.php:
|
970 |
msgid "Appears when creating a new post"
|
971 |
msgstr ""
|
972 |
|
@@ -1006,7 +1008,7 @@ msgstr ""
|
|
1006 |
msgid "File"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:
|
1010 |
msgid "Content"
|
1011 |
msgstr ""
|
1012 |
|
@@ -1023,7 +1025,7 @@ msgid "Update File"
|
|
1023 |
msgstr ""
|
1024 |
|
1025 |
#: core/fields/file.php:29 core/fields/image.php:30
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: core/fields/file.php:113
|
@@ -1458,15 +1460,15 @@ msgstr ""
|
|
1458 |
msgid "Filter by role"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: core/fields/wysiwyg.php:
|
1462 |
msgid "Wysiwyg Editor"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: core/fields/wysiwyg.php:
|
1466 |
msgid "Toolbar"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: core/fields/wysiwyg.php:
|
1470 |
msgid "Show Media Upload Buttons?"
|
1471 |
msgstr ""
|
1472 |
|
@@ -1747,3 +1749,19 @@ msgstr ""
|
|
1747 |
#: core/views/meta_box_options.php:109
|
1748 |
msgid "Send Trackbacks"
|
1749 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Advanced Custom Fields\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
8 |
+
"POT-Creation-Date: 2016-04-06 12:20+0100\n"
|
9 |
"PO-Revision-Date: 2015-04-07 09:42-0000\n"
|
10 |
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language-Team: \n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Generator: Poedit 1.8.7\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
20 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
21 |
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
22 |
+
"X-Poedit-WPHeader: acf.php\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: acf.php:490
|
27 |
msgid "Field Groups"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#. Plugin Name of the plugin/theme
|
31 |
+
#: acf.php:491 core/controllers/field_groups.php:213
|
32 |
msgid "Advanced Custom Fields"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: acf.php:492
|
36 |
msgid "Add New"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: acf.php:493
|
40 |
msgid "Add New Field Group"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: acf.php:494
|
44 |
msgid "Edit Field Group"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: acf.php:495
|
48 |
msgid "New Field Group"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: acf.php:496
|
52 |
msgid "View Field Group"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: acf.php:497
|
56 |
msgid "Search Field Groups"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: acf.php:498
|
60 |
msgid "No Field Groups found"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: acf.php:499
|
64 |
msgid "No Field Groups found in Trash"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: acf.php:584 core/views/meta_box_options.php:99
|
68 |
msgid "Custom Fields"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: acf.php:602 acf.php:605
|
72 |
msgid "Field group updated."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: acf.php:603
|
76 |
msgid "Custom field updated."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: acf.php:604
|
80 |
msgid "Custom field deleted."
|
81 |
msgstr ""
|
82 |
|
83 |
#. translators: %s: date and time of the revision
|
84 |
+
#: acf.php:607
|
85 |
#, php-format
|
86 |
msgid "Field group restored to revision from %s"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: acf.php:608
|
90 |
msgid "Field group published."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: acf.php:609
|
94 |
msgid "Field group saved."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: acf.php:610
|
98 |
msgid "Field group submitted."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: acf.php:611
|
102 |
msgid "Field group scheduled for."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: acf.php:612
|
106 |
msgid "Field group draft updated."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: acf.php:747
|
110 |
msgid "Thumbnail"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: acf.php:748
|
114 |
msgid "Medium"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: acf.php:749
|
118 |
msgid "Large"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: acf.php:750
|
122 |
msgid "Full"
|
123 |
msgstr ""
|
124 |
|
138 |
msgid "Post updated"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:306
|
142 |
msgid "Add-ons"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:428
|
146 |
msgid "Repeater Field"
|
147 |
msgstr ""
|
148 |
|
150 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:436
|
154 |
msgid "Gallery Field"
|
155 |
msgstr ""
|
156 |
|
158 |
msgid "Create image galleries in a simple and intuitive interface!"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: core/controllers/addons.php:144 core/controllers/field_groups.php:444
|
162 |
msgid "Options Page"
|
163 |
msgstr ""
|
164 |
|
191 |
msgstr ""
|
192 |
|
193 |
#: core/controllers/addons.php:175
|
194 |
+
msgid "Google Map Extended"
|
195 |
msgstr ""
|
196 |
|
197 |
#: core/controllers/addons.php:176
|
230 |
msgid "Purchase & Install"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: core/controllers/addons.php:242 core/controllers/field_groups.php:421
|
234 |
+
#: core/controllers/field_groups.php:430 core/controllers/field_groups.php:438
|
235 |
+
#: core/controllers/field_groups.php:446 core/controllers/field_groups.php:454
|
236 |
msgid "Download"
|
237 |
msgstr ""
|
238 |
|
372 |
msgid "No field groups were selected"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: core/controllers/field_group.php:359
|
376 |
msgid "Move to trash. Are you sure?"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: core/controllers/field_group.php:360
|
380 |
msgid "checked"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: core/controllers/field_group.php:361
|
384 |
msgid "No toggle fields available"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: core/controllers/field_group.php:362
|
388 |
msgid "Field group title is required"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: core/controllers/field_group.php:363
|
392 |
msgid "copy"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: core/controllers/field_group.php:364 core/views/meta_box_location.php:62
|
396 |
#: core/views/meta_box_location.php:159
|
397 |
msgid "or"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: core/controllers/field_group.php:365 core/controllers/field_group.php:397
|
401 |
+
#: core/controllers/field_group.php:459 core/controllers/field_groups.php:148
|
402 |
msgid "Fields"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: core/controllers/field_group.php:366
|
406 |
msgid "Parent fields"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: core/controllers/field_group.php:367
|
410 |
msgid "Sibling fields"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: core/controllers/field_group.php:368
|
414 |
msgid "Hide / Show All"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: core/controllers/field_group.php:398
|
418 |
msgid "Location"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: core/controllers/field_group.php:399
|
422 |
msgid "Options"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: core/controllers/field_group.php:461
|
426 |
msgid "Show Field Key:"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: core/controllers/field_group.php:462 core/fields/page_link.php:138
|
430 |
#: core/fields/page_link.php:159 core/fields/post_object.php:340
|
431 |
#: core/fields/post_object.php:361 core/fields/select.php:224
|
432 |
#: core/fields/select.php:243 core/fields/taxonomy.php:499
|
433 |
+
#: core/fields/user.php:332 core/fields/wysiwyg.php:344
|
434 |
#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
|
435 |
msgid "No"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: core/controllers/field_group.php:463 core/fields/page_link.php:137
|
439 |
#: core/fields/page_link.php:158 core/fields/post_object.php:339
|
440 |
#: core/fields/post_object.php:360 core/fields/select.php:223
|
441 |
#: core/fields/select.php:242 core/fields/taxonomy.php:498
|
442 |
+
#: core/fields/user.php:331 core/fields/wysiwyg.php:343
|
443 |
#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
|
444 |
msgid "Yes"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: core/controllers/field_group.php:635
|
448 |
msgid "Front Page"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: core/controllers/field_group.php:636
|
452 |
msgid "Posts Page"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: core/controllers/field_group.php:637
|
456 |
msgid "Top Level Page (parent of 0)"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: core/controllers/field_group.php:638
|
460 |
msgid "Parent Page (has children)"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: core/controllers/field_group.php:639
|
464 |
msgid "Child Page (has parent)"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: core/controllers/field_group.php:647
|
468 |
msgid "Default Template"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: core/controllers/field_group.php:729
|
472 |
msgid "Published"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: core/controllers/field_group.php:730
|
476 |
msgid "Pending Review"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: core/controllers/field_group.php:731
|
480 |
msgid "Draft"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: core/controllers/field_group.php:732
|
484 |
msgid "Future"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: core/controllers/field_group.php:733
|
488 |
msgid "Private"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: core/controllers/field_group.php:734
|
492 |
msgid "Revision"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: core/controllers/field_group.php:735
|
496 |
msgid "Trash"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: core/controllers/field_group.php:748
|
500 |
msgid "Super Admin"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: core/controllers/field_group.php:763 core/controllers/field_group.php:784
|
504 |
+
#: core/controllers/field_group.php:791 core/fields/file.php:186
|
505 |
#: core/fields/image.php:177 core/fields/page_link.php:109
|
506 |
#: core/fields/post_object.php:286 core/fields/post_object.php:310
|
507 |
#: core/fields/relationship.php:588 core/fields/relationship.php:612
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: core/controllers/field_groups.php:215 core/controllers/field_groups.php:252
|
517 |
msgid "Changelog"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: core/controllers/field_groups.php:216
|
521 |
#, php-format
|
522 |
msgid "See what's new in %1$sversion %2$s%3$s"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: core/controllers/field_groups.php:218
|
526 |
msgid "Resources"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: core/controllers/field_groups.php:220
|
530 |
msgid "Getting Started"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: core/controllers/field_groups.php:221
|
534 |
msgid "Field Types"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: core/controllers/field_groups.php:222
|
538 |
msgid "Functions"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: core/controllers/field_groups.php:223
|
542 |
msgid "Actions"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: core/controllers/field_groups.php:224 core/fields/relationship.php:631
|
546 |
msgid "Filters"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: core/controllers/field_groups.php:225
|
550 |
msgid "'How to' guides"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: core/controllers/field_groups.php:226
|
554 |
msgid "Tutorials"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: core/controllers/field_groups.php:231
|
558 |
msgid "Created by"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: core/controllers/field_groups.php:243
|
562 |
msgid "Welcome to Advanced Custom Fields"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: core/controllers/field_groups.php:244
|
566 |
msgid "Thank you for updating to the latest version!"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: core/controllers/field_groups.php:244
|
570 |
#, php-format
|
571 |
msgid ""
|
572 |
"ACF %s is more polished and enjoyable than ever before. We hope you like it."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: core/controllers/field_groups.php:251
|
576 |
msgid "What’s New"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: core/controllers/field_groups.php:254
|
580 |
msgid "Download Add-ons"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: core/controllers/field_groups.php:308
|
584 |
msgid "Activation codes have grown into plugins!"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: core/controllers/field_groups.php:309
|
588 |
msgid ""
|
589 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
590 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
591 |
"each Add-on will continue to receive updates in the usual way."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: core/controllers/field_groups.php:315
|
595 |
msgid "All previous Add-ons have been successfully installed"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: core/controllers/field_groups.php:319
|
599 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: core/controllers/field_groups.php:319
|
603 |
msgid "Download your activated Add-ons"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: core/controllers/field_groups.php:324
|
607 |
msgid ""
|
608 |
"This website does not use premium Add-ons and will not be affected by this "
|
609 |
"change."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: core/controllers/field_groups.php:334
|
613 |
msgid "Easier Development"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: core/controllers/field_groups.php:336
|
617 |
msgid "New Field Types"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: core/controllers/field_groups.php:338
|
621 |
msgid "Taxonomy Field"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: core/controllers/field_groups.php:339
|
625 |
msgid "User Field"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: core/controllers/field_groups.php:340
|
629 |
msgid "Email Field"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: core/controllers/field_groups.php:341
|
633 |
msgid "Password Field"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: core/controllers/field_groups.php:343
|
637 |
msgid "Custom Field Types"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: core/controllers/field_groups.php:344
|
641 |
msgid ""
|
642 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
643 |
"field types are not compatible with version 4."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: core/controllers/field_groups.php:345
|
647 |
#, php-format
|
648 |
msgid ""
|
649 |
"Migrating your field types is easy, please %sfollow this tutorial%s to learn "
|
650 |
"more."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: core/controllers/field_groups.php:347
|
654 |
msgid "Actions & Filters"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: core/controllers/field_groups.php:348
|
658 |
#, php-format
|
659 |
msgid ""
|
660 |
"All actions & filters have received a major facelift to make customizing ACF "
|
662 |
"convention."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: core/controllers/field_groups.php:350
|
666 |
msgid "Preview draft is now working!"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: core/controllers/field_groups.php:351
|
670 |
msgid "This bug has been squashed along with many other little critters!"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: core/controllers/field_groups.php:351
|
674 |
msgid "See the full changelog"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: core/controllers/field_groups.php:355
|
678 |
msgid "Important"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: core/controllers/field_groups.php:357
|
682 |
msgid "Database Changes"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: core/controllers/field_groups.php:358
|
686 |
msgid ""
|
687 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
688 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
689 |
"any issues."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: core/controllers/field_groups.php:360
|
693 |
msgid "Potential Issues"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: core/controllers/field_groups.php:361
|
697 |
#, php-format
|
698 |
msgid ""
|
699 |
"Due to the sizable changes surrounding Add-ons, field types and action/"
|
702 |
"changes."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: core/controllers/field_groups.php:364
|
706 |
msgid "Really Important!"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: core/controllers/field_groups.php:364
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
713 |
"please roll back to the latest %sversion 3%s of this plugin."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: core/controllers/field_groups.php:369
|
717 |
msgid "Thank You"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: core/controllers/field_groups.php:370
|
721 |
msgid ""
|
722 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
723 |
"4 beta and for all the support I have received."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: core/controllers/field_groups.php:371
|
727 |
msgid "Without you all, this release would not have been possible!"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: core/controllers/field_groups.php:375
|
731 |
msgid "Changelog for"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: core/controllers/field_groups.php:392
|
735 |
msgid "Learn more"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: core/controllers/field_groups.php:398
|
739 |
msgid "Overview"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: core/controllers/field_groups.php:400
|
743 |
msgid ""
|
744 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
745 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
746 |
"need to be individually downloaded, installed and updated."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: core/controllers/field_groups.php:402
|
750 |
msgid ""
|
751 |
"This page will assist you in downloading and installing each available Add-"
|
752 |
"on."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: core/controllers/field_groups.php:404
|
756 |
msgid "Available Add-ons"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: core/controllers/field_groups.php:406
|
760 |
msgid "The following Add-ons have been detected as activated on this website."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: core/controllers/field_groups.php:419 core/fields/file.php:109
|
764 |
msgid "Name"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: core/controllers/field_groups.php:420
|
768 |
msgid "Activation Code"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: core/controllers/field_groups.php:452
|
772 |
msgid "Flexible Content"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: core/controllers/field_groups.php:462
|
776 |
msgid "Installation"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: core/controllers/field_groups.php:464
|
780 |
msgid "For each Add-on available, please perform the following:"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: core/controllers/field_groups.php:466
|
784 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: core/controllers/field_groups.php:467
|
788 |
#, php-format
|
789 |
msgid "Navigate to %sPlugins > Add New > Upload%s"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: core/controllers/field_groups.php:468
|
793 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: core/controllers/field_groups.php:469
|
797 |
msgid ""
|
798 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
799 |
"link"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: core/controllers/field_groups.php:470
|
803 |
msgid "The Add-on is now installed and activated!"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: core/controllers/field_groups.php:484
|
807 |
msgid "Awesome. Let's get to work"
|
808 |
msgstr ""
|
809 |
|
875 |
#: core/fields/email.php:106 core/fields/number.php:116
|
876 |
#: core/fields/radio.php:196 core/fields/select.php:197
|
877 |
#: core/fields/text.php:116 core/fields/textarea.php:103
|
878 |
+
#: core/fields/true_false.php:94 core/fields/wysiwyg.php:286
|
879 |
msgid "Default Value"
|
880 |
msgstr ""
|
881 |
|
968 |
|
969 |
#: core/fields/email.php:107 core/fields/number.php:117
|
970 |
#: core/fields/text.php:117 core/fields/textarea.php:104
|
971 |
+
#: core/fields/wysiwyg.php:287
|
972 |
msgid "Appears when creating a new post"
|
973 |
msgstr ""
|
974 |
|
1008 |
msgid "File"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1012 |
msgid "Content"
|
1013 |
msgstr ""
|
1014 |
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: core/fields/file.php:29 core/fields/image.php:30
|
1028 |
+
msgid "Uploaded to this post"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: core/fields/file.php:113
|
1460 |
msgid "Filter by role"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: core/fields/wysiwyg.php:19
|
1464 |
msgid "Wysiwyg Editor"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: core/fields/wysiwyg.php:301
|
1468 |
msgid "Toolbar"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: core/fields/wysiwyg.php:333
|
1472 |
msgid "Show Media Upload Buttons?"
|
1473 |
msgstr ""
|
1474 |
|
1749 |
#: core/views/meta_box_options.php:109
|
1750 |
msgid "Send Trackbacks"
|
1751 |
msgstr ""
|
1752 |
+
|
1753 |
+
#. Plugin URI of the plugin/theme
|
1754 |
+
msgid "http://www.advancedcustomfields.com/"
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#. Description of the plugin/theme
|
1758 |
+
msgid "Customise WordPress with powerful, professional and intuitive fields"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#. Author of the plugin/theme
|
1762 |
+
msgid "Elliot Condon"
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#. Author URI of the plugin/theme
|
1766 |
+
msgid "http://www.elliotcondon.com/"
|
1767 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: elliotcondon
|
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
Tested up to: 4.5.0
|
6 |
-
Stable tag: 4.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -116,6 +116,12 @@ http://support.advancedcustomfields.com/
|
|
116 |
|
117 |
== Changelog ==
|
118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
= 4.4.6 =
|
120 |
* Google Map field: Improved compatibility with 3rd party plugins including Google JS API
|
121 |
* API: Improved `get_` functions to load value from the current queried object (post, user, term)
|
@@ -124,7 +130,7 @@ http://support.advancedcustomfields.com/
|
|
124 |
* Language: Added Welsh translation - thanks to Carl Morris
|
125 |
* Language: Added Indonesian translation - thanks to Rio Bermano
|
126 |
|
127 |
-
= 4.4.5=
|
128 |
* Core: Fixed metabox title appearing on seamless field groups
|
129 |
* Language: Updated Portuguese translation
|
130 |
* Language: Updated Polish translation
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
Tested up to: 4.5.0
|
6 |
+
Stable tag: 4.4.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
+
= 4.4.7 =
|
120 |
+
* Relationship field: Fixed bug preventing values from being selected in WP 4.5
|
121 |
+
* Google Map field: Fixed bug preventing map to load within repeater field
|
122 |
+
* Core: Fixed PHP error when loading ACF values on 'The Events Calendar' (plugin) page
|
123 |
+
* Language: Updated Portuguese translation - thanks to Pedro Mendonca
|
124 |
+
|
125 |
= 4.4.6 =
|
126 |
* Google Map field: Improved compatibility with 3rd party plugins including Google JS API
|
127 |
* API: Improved `get_` functions to load value from the current queried object (post, user, term)
|
130 |
* Language: Added Welsh translation - thanks to Carl Morris
|
131 |
* Language: Added Indonesian translation - thanks to Rio Bermano
|
132 |
|
133 |
+
= 4.4.5 =
|
134 |
* Core: Fixed metabox title appearing on seamless field groups
|
135 |
* Language: Updated Portuguese translation
|
136 |
* Language: Updated Polish translation
|