Advanced Custom Fields - Version 4.4.6

Version Description

  • Google Map field: Improved compatibility with 3rd party plugins including Google JS API
  • API: Improved get_ functions to load value from the current queried object (post, user, term)
  • Core: Added support for new WP 4.5 term edit page
  • Language: Updated Portuguese translation - thanks to Pedro Mendonca
  • Language: Added Welsh translation - thanks to Carl Morris
  • Language: Added Indonesian translation - thanks to Rio Bermano
Download this release

Release Info

Developer elliotcondon
Plugin Icon 128x128 Advanced Custom Fields
Version 4.4.6
Comparing to
See all releases

Code changes from version 4.4.5 to 4.4.6

Files changed (61) hide show
  1. acf.php +14 -9
  2. core/api.php +1 -1
  3. core/controllers/addons.php +3 -3
  4. core/controllers/everything_fields.php +30 -13
  5. core/controllers/field_groups.php +1 -1
  6. core/controllers/revisions.php +3 -3
  7. core/fields/select.php +1 -1
  8. core/fields/text.php +1 -1
  9. core/fields/textarea.php +1 -1
  10. js/input.js +23 -12
  11. js/input.min.js +2 -2
  12. js/input/google-map.js +23 -12
  13. lang/acf-bg_BG.mo +0 -0
  14. lang/acf-bg_BG.po +1852 -0
  15. lang/acf-cs_CZ.mo +0 -0
  16. lang/acf-cs_CZ.po +6 -6
  17. lang/acf-cy_GB.mo +0 -0
  18. lang/acf-cy_GB.po +1706 -0
  19. lang/acf-de_DE.mo +0 -0
  20. lang/acf-de_DE.po +506 -617
  21. lang/acf-es_ES.mo +0 -0
  22. lang/acf-es_ES.po +3 -3
  23. lang/acf-fa_IR.mo +0 -0
  24. lang/acf-fa_IR.po +8 -7
  25. lang/acf-fi_FI.mo +0 -0
  26. lang/acf-fi_FI.po +6 -6
  27. lang/acf-fr_FR.mo +0 -0
  28. lang/acf-fr_FR.po +4 -4
  29. lang/acf-he_IL.mo +0 -0
  30. lang/acf-he_IL.po +16 -16
  31. lang/acf-id_ID.mo +0 -0
  32. lang/acf-id_ID.po +1821 -0
  33. lang/acf-it_IT.mo +0 -0
  34. lang/acf-it_IT.po +58 -37
  35. lang/acf-ja.mo +0 -0
  36. lang/acf-ja.po +6 -6
  37. lang/acf-nl_NL.mo +0 -0
  38. lang/acf-nl_NL.po +10 -9
  39. lang/acf-pl_PL.mo +0 -0
  40. lang/acf-pl_PL.po +5 -5
  41. lang/acf-pt_BR.mo +0 -0
  42. lang/acf-pt_BR.po +526 -648
  43. lang/acf-pt_PT.mo +0 -0
  44. lang/acf-pt_PT.po +13 -13
  45. lang/acf-ru-RU.mo +0 -0
  46. lang/acf-ru_RU.mo +0 -0
  47. lang/acf-ru_RU.po +7 -7
  48. lang/acf-sk_SK.mo +0 -0
  49. lang/acf-sk_SK.po +6 -6
  50. lang/acf-sr_RS.mo +0 -0
  51. lang/acf-sr_RS.po +18 -17
  52. lang/acf-sv_SE.mo +0 -0
  53. lang/acf-sv_SE.po +7 -7
  54. lang/acf-tr_TR.mo +0 -0
  55. lang/acf-tr_TR.po +8 -8
  56. lang/acf-uk.mo +0 -0
  57. lang/acf-uk.po +5 -5
  58. lang/acf-zh_CN.mo +0 -0
  59. lang/acf-zh_CN.po +5 -5
  60. lang/acf.pot +4 -4
  61. readme.txt +9 -1
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.5
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.5',
47
  'upgrade_version' => '3.4.1',
48
  'include_3rd_party' => false
49
  );
@@ -161,15 +161,20 @@ class acf
161
 
162
  function get_post_id( $post_id )
163
  {
164
- // set post_id to global
165
- if( !$post_id )
166
- {
167
- global $post;
168
 
169
- if( $post )
170
- {
171
- $post_id = intval( $post->ID );
 
 
 
 
 
 
172
  }
 
173
  }
174
 
175
 
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.6
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.6',
47
  'upgrade_version' => '3.4.1',
48
  'include_3rd_party' => false
49
  );
161
 
162
  function get_post_id( $post_id )
163
  {
164
+ // if not $post_id, load queried object
165
+ if( !$post_id ) {
 
 
166
 
167
+ // try for global post (needed for setup_postdata)
168
+ $post_id = (int) get_the_ID();
169
+
170
+
171
+ // try for current screen
172
+ if( !$post_id ) {
173
+
174
+ $post_id = get_queried_object();
175
+
176
  }
177
+
178
  }
179
 
180
 
core/api.php CHANGED
@@ -343,7 +343,7 @@ function the_field( $field_name, $post_id = false ) {
343
  * have_rows
344
  *
345
  * This function will instantiate a global variable containing the rows of a repeater or flexible content field,
346
- * afterwhich, it will determin if another row exists to loop through
347
  *
348
  * @type function
349
  * @date 2/09/13
343
  * have_rows
344
  *
345
  * This function will instantiate a global variable containing the rows of a repeater or flexible content field,
346
+ * afterwhich, it will determine if another row exists to loop through
347
  *
348
  * @type function
349
  * @date 2/09/13
core/controllers/addons.php CHANGED
@@ -172,11 +172,11 @@ class acf_addons
172
  'url' => 'http://wordpress.org/extend/plugins/acf-field-date-time-picker/'
173
  );
174
  $free[] = array(
175
- 'title' => __("Location Field",'acf'),
176
  'description' => __("Find addresses and coordinates of a desired location",'acf'),
177
  'thumbnail' => $dir . 'images/add-ons/google-maps-field-thumb.jpg',
178
- 'active' => class_exists('acf_field_location'),
179
- 'url' => 'https://github.com/elliotcondon/acf-location-field/'
180
  );
181
  $free[] = array(
182
  'title' => __("Contact Form 7 Field",'acf'),
172
  'url' => 'http://wordpress.org/extend/plugins/acf-field-date-time-picker/'
173
  );
174
  $free[] = array(
175
+ 'title' => __("Google Map Extended",'acf'),
176
  'description' => __("Find addresses and coordinates of a desired location",'acf'),
177
  'thumbnail' => $dir . 'images/add-ons/google-maps-field-thumb.jpg',
178
+ 'active' => class_exists('acf_field_google_map_extended'),
179
+ 'url' => 'https://wordpress.org/plugins/advanced-custom-fields-google-map-extended/'
180
  );
181
  $free[] = array(
182
  'title' => __("Contact Form 7 Field",'acf'),
core/controllers/everything_fields.php CHANGED
@@ -209,7 +209,7 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
209
 
210
 
211
  // validate page
212
- if( in_array( $pagenow, array( 'edit-tags.php', 'profile.php', 'user-new.php', 'user-edit.php', 'media.php' ) ) )
213
  {
214
  $return = true;
215
  }
@@ -275,26 +275,43 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
275
  $this->data['option_name'] = "shopp_category_" . $_GET['id'];
276
  }
277
 
278
- }
279
- if( $pagenow == "edit-tags.php" && isset($_GET['taxonomy']) )
280
- {
281
- // filter
282
- $_GET['taxonomy'] = filter_var($_GET['taxonomy'], FILTER_SANITIZE_STRING);
283
 
 
 
 
284
 
285
- $this->data['page_type'] = "taxonomy";
286
- $filter['ef_taxonomy'] = $_GET['taxonomy'];
287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  $this->data['page_action'] = "add";
289
  $this->data['option_name'] = "";
290
 
291
- if( isset($_GET['action']) && $_GET['action'] == "edit" )
292
- {
293
- // filter
294
- $_GET['tag_ID'] = filter_var($_GET['tag_ID'], FILTER_SANITIZE_NUMBER_INT);
295
 
 
 
 
296
  $this->data['page_action'] = "edit";
297
- $this->data['option_name'] = $_GET['taxonomy'] . "_" . $_GET['tag_ID'];
 
298
  }
299
 
300
  }
209
 
210
 
211
  // validate page
212
+ if( in_array( $pagenow, array( 'edit-tags.php', 'term.php', 'profile.php', 'user-new.php', 'user-edit.php', 'media.php' ) ) )
213
  {
214
  $return = true;
215
  }
275
  $this->data['option_name'] = "shopp_category_" . $_GET['id'];
276
  }
277
 
278
+ } elseif( $pagenow == "edit-tags.php" || $pagenow == "term.php" ) {
 
 
 
 
279
 
280
+ // vars
281
+ $taxonomy = 'post_tag';
282
+ $term_id = 0;
283
 
 
 
284
 
285
+ // $_GET
286
+ if( !empty($_GET['taxonomy']) ) {
287
+
288
+ $taxonomy = filter_var($_GET['taxonomy'], FILTER_SANITIZE_STRING);
289
+
290
+ }
291
+
292
+ if( !empty($_GET['tag_ID']) ) {
293
+
294
+ $term_id = filter_var($_GET['tag_ID'], FILTER_SANITIZE_NUMBER_INT);
295
+
296
+ }
297
+
298
+
299
+ // update filter
300
+ $filter['ef_taxonomy'] = $taxonomy;
301
+
302
+
303
+ // add
304
+ $this->data['page_type'] = "taxonomy";
305
  $this->data['page_action'] = "add";
306
  $this->data['option_name'] = "";
307
 
 
 
 
 
308
 
309
+ // edit
310
+ if( $term_id ) {
311
+
312
  $this->data['page_action'] = "edit";
313
+ $this->data['option_name'] = $taxonomy . "_" . $term_id;
314
+
315
  }
316
 
317
  }
core/controllers/field_groups.php CHANGED
@@ -358,7 +358,7 @@ class acf_field_groups
358
  <p><?php _e("Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues.",'acf'); ?></p>
359
 
360
  <h4><?php _e("Potential Issues",'acf'); ?></h4>
361
- <p><?php printf(__('Due to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full %sMigrating from v3 to v4%s guide to view the full list of changes.','acf'),'<a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank">','</a>'); ?></p>
362
 
363
  <div class="acf-alert acf-alert-error">
364
  <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php printf(__('If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest %sversion 3%s of this plugin.','acf'),'<a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/">','</a>'); ?></p>
358
  <p><?php _e("Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues.",'acf'); ?></p>
359
 
360
  <h4><?php _e("Potential Issues",'acf'); ?></h4>
361
+ <p><?php printf(__('Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full %sMigrating from v3 to v4%s guide to view the full list of changes.','acf'),'<a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank">','</a>'); ?></p>
362
 
363
  <div class="acf-alert acf-alert-error">
364
  <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php printf(__('If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest %sversion 3%s of this plugin.','acf'),'<a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/">','</a>'); ?></p>
core/controllers/revisions.php CHANGED
@@ -115,7 +115,7 @@ class acf_revisions
115
  $post_id = 0;
116
 
117
 
118
- // determin $post_id
119
  if( isset($_POST['post_id']) )
120
  {
121
  $post_id = $_POST['post_id'];
@@ -154,7 +154,7 @@ class acf_revisions
154
 
155
 
156
  // WP 3.5: left vs right
157
- // Add a value of the revision ID (as there is no way to determin this within the '_wp_post_revision_field_' filter!)
158
  if( isset($_GET['action'], $_GET['left'], $_GET['right']) && $_GET['action'] == 'diff' )
159
  {
160
  global $left_revision, $right_revision;
@@ -193,7 +193,7 @@ class acf_revisions
193
  $post_id = 0;
194
 
195
 
196
- // determin $post_id
197
  if( isset($post->ID) )
198
  {
199
  // WP 3.6
115
  $post_id = 0;
116
 
117
 
118
+ // determine $post_id
119
  if( isset($_POST['post_id']) )
120
  {
121
  $post_id = $_POST['post_id'];
154
 
155
 
156
  // WP 3.5: left vs right
157
+ // Add a value of the revision ID (as there is no way to determine this within the '_wp_post_revision_field_' filter!)
158
  if( isset($_GET['action'], $_GET['left'], $_GET['right']) && $_GET['action'] == 'diff' )
159
  {
160
  global $left_revision, $right_revision;
193
  $post_id = 0;
194
 
195
 
196
+ // determine $post_id
197
  if( isset($post->ID) )
198
  {
199
  // WP 3.6
core/fields/select.php CHANGED
@@ -54,7 +54,7 @@ class acf_field_select extends acf_field
54
  $optgroup = false;
55
 
56
 
57
- // determin if choices are grouped (2 levels of array)
58
  if( is_array($field['choices']) )
59
  {
60
  foreach( $field['choices'] as $k => $v )
54
  $optgroup = false;
55
 
56
 
57
+ // determine if choices are grouped (2 levels of array)
58
  if( is_array($field['choices']) )
59
  {
60
  foreach( $field['choices'] as $k => $v )
core/fields/text.php CHANGED
@@ -174,7 +174,7 @@ class acf_field_text extends acf_field
174
  <tr class="field_option field_option_<?php echo $this->name; ?>">
175
  <td class="label">
176
  <label><?php _e("Formatting",'acf'); ?></label>
177
- <p><?php _e("Effects value on front end",'acf') ?></p>
178
  </td>
179
  <td>
180
  <?php
174
  <tr class="field_option field_option_<?php echo $this->name; ?>">
175
  <td class="label">
176
  <label><?php _e("Formatting",'acf'); ?></label>
177
+ <p><?php _e("Affects value on front end",'acf') ?></p>
178
  </td>
179
  <td>
180
  <?php
core/fields/textarea.php CHANGED
@@ -162,7 +162,7 @@ class acf_field_textarea extends acf_field
162
  <tr class="field_option field_option_<?php echo $this->name; ?>">
163
  <td class="label">
164
  <label><?php _e("Formatting",'acf'); ?></label>
165
- <p><?php _e("Effects value on front end",'acf') ?></p>
166
  </td>
167
  <td>
168
  <?php
162
  <tr class="field_option field_option_<?php echo $this->name; ?>">
163
  <td class="label">
164
  <label><?php _e("Formatting",'acf'); ?></label>
165
+ <p><?php _e("Affects value on front end",'acf') ?></p>
166
  </td>
167
  <td>
168
  <?php
js/input.js CHANGED
@@ -2272,31 +2272,36 @@ var acf = {
2272
 
2273
 
2274
  // validate
2275
- if( ! $fields.exists() )
2276
- {
2277
- return;
2278
- }
2279
 
2280
 
2281
- // validate google
2282
- if( typeof google === 'undefined' )
2283
- {
2284
- $.getScript('https://www.google.com/jsapi', function(){
2285
 
 
 
 
 
2286
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
2287
-
2288
- $fields.each(function(){
2289
 
2290
  acf.fields.google_map.set({ $el : $(this) }).init();
2291
 
2292
  });
2293
 
2294
  }});
 
2295
  });
2296
 
 
 
2297
  }
2298
- else
2299
- {
 
 
 
2300
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
2301
 
2302
  $fields.each(function(){
@@ -2306,9 +2311,15 @@ var acf = {
2306
  });
2307
 
2308
  }});
 
 
2309
 
2310
  }
2311
 
 
 
 
 
2312
  });
2313
 
2314
 
2272
 
2273
 
2274
  // validate
2275
+ if( ! $fields.exists() ) return false;
 
 
 
2276
 
2277
 
2278
+ // no google
2279
+ if( !acf.helpers.isset(window, 'google', 'load') ) {
 
 
2280
 
2281
+ // load API
2282
+ $.getScript('https://www.google.com/jsapi', function(){
2283
+
2284
+ // load maps
2285
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
2286
+
2287
+ $fields.each(function(){
2288
 
2289
  acf.fields.google_map.set({ $el : $(this) }).init();
2290
 
2291
  });
2292
 
2293
  }});
2294
+
2295
  });
2296
 
2297
+ return false;
2298
+
2299
  }
2300
+
2301
+
2302
+ // no maps or places
2303
+ if( !acf.helpers.isset(window, 'google', 'maps', 'places') ) {
2304
+
2305
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
2306
 
2307
  $fields.each(function(){
2311
  });
2312
 
2313
  }});
2314
+
2315
+ return false;
2316
 
2317
  }
2318
 
2319
+
2320
+ // return
2321
+ return true;
2322
+
2323
  });
2324
 
2325
 
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){$fields=$(t).find(".acf-google-map"),$fields.exists()&&("undefined"==typeof google?$.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()})}})}):google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}))}),$(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(){if(acf.validation.disabled)return!0;if(acf.validation.run(),
2
- !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(".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);
js/input/google-map.js CHANGED
@@ -412,31 +412,36 @@
412
 
413
 
414
  // validate
415
- if( ! $fields.exists() )
416
- {
417
- return;
418
- }
419
 
420
 
421
- // validate google
422
- if( typeof google === 'undefined' )
423
- {
424
- $.getScript('https://www.google.com/jsapi', function(){
425
 
 
 
 
 
426
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
427
-
428
- $fields.each(function(){
429
 
430
  acf.fields.google_map.set({ $el : $(this) }).init();
431
 
432
  });
433
 
434
  }});
 
435
  });
436
 
 
 
437
  }
438
- else
439
- {
 
 
 
440
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
441
 
442
  $fields.each(function(){
@@ -446,9 +451,15 @@
446
  });
447
 
448
  }});
 
 
449
 
450
  }
451
 
 
 
 
 
452
  });
453
 
454
 
412
 
413
 
414
  // validate
415
+ if( ! $fields.exists() ) return false;
 
 
 
416
 
417
 
418
+ // no google
419
+ if( !acf.helpers.isset(window, 'google', 'load') ) {
 
 
420
 
421
+ // load API
422
+ $.getScript('https://www.google.com/jsapi', function(){
423
+
424
+ // load maps
425
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
426
+
427
+ $fields.each(function(){
428
 
429
  acf.fields.google_map.set({ $el : $(this) }).init();
430
 
431
  });
432
 
433
  }});
434
+
435
  });
436
 
437
+ return false;
438
+
439
  }
440
+
441
+
442
+ // no maps or places
443
+ if( !acf.helpers.isset(window, 'google', 'maps', 'places') ) {
444
+
445
  google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
446
 
447
  $fields.each(function(){
451
  });
452
 
453
  }});
454
+
455
+ return false;
456
 
457
  }
458
 
459
+
460
+ // return
461
+ return true;
462
+
463
  });
464
 
465
 
lang/acf-bg_BG.mo ADDED
Binary file
lang/acf-bg_BG.po ADDED
@@ -0,0 +1,1852 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014
2
+ # This file is distributed under the same license as the package.
3
+ 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: 2014-01-05 07:41:49+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
12
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
13
+ "Language-Team: \n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "Language: bg_BG\n"
17
+
18
+ #: acf.php:455
19
+ msgid "Field&nbsp;Groups"
20
+ msgstr "Групи от полета"
21
+
22
+ #: acf.php:456 core/controllers/field_groups.php:214
23
+ msgid "Advanced Custom Fields"
24
+ msgstr "Модерни потребителски полета"
25
+
26
+ #: acf.php:457
27
+ msgid "Add New"
28
+ msgstr "Създай"
29
+
30
+ #: acf.php:458
31
+ msgid "Add New Field Group"
32
+ msgstr "Създай нова група от полета"
33
+
34
+ #: acf.php:459
35
+ msgid "Edit Field Group"
36
+ msgstr "Редактирай група от полета"
37
+
38
+ #: acf.php:460
39
+ msgid "New Field Group"
40
+ msgstr "Нова група от полета"
41
+
42
+ #: acf.php:461
43
+ msgid "View Field Group"
44
+ msgstr "Разгледай група от полета"
45
+
46
+ #: acf.php:462
47
+ msgid "Search Field Groups"
48
+ msgstr "Търсене на групи от полета"
49
+
50
+ #: acf.php:463
51
+ msgid "No Field Groups found"
52
+ msgstr "Няма намерени групи от полета"
53
+
54
+ #: acf.php:464
55
+ msgid "No Field Groups found in Trash"
56
+ msgstr "Няма намерени групи от полета в кошчето"
57
+
58
+ #: acf.php:567 core/views/meta_box_options.php:99
59
+ msgid "Custom Fields"
60
+ msgstr "Потребителски полета"
61
+
62
+ #: acf.php:585 acf.php:588
63
+ msgid "Field group updated."
64
+ msgstr "Групата от полета бе обновена."
65
+
66
+ #: acf.php:586
67
+ msgid "Custom field updated."
68
+ msgstr "Потребителското поле бе обновено."
69
+
70
+ #: acf.php:587
71
+ msgid "Custom field deleted."
72
+ msgstr "Потребителското поле бе изтрито."
73
+
74
+ #. translators: %s: date and time of the revision
75
+ #: acf.php:590
76
+ msgid "Field group restored to revision from %s"
77
+ msgstr "Групата от полета бе възстановена до ревизия от %s"
78
+
79
+ #: acf.php:591
80
+ msgid "Field group published."
81
+ msgstr "Групата от полета бе публикувана."
82
+
83
+ #: acf.php:592
84
+ msgid "Field group saved."
85
+ msgstr "Групата от полета бе запазена."
86
+
87
+ #: acf.php:593
88
+ msgid "Field group submitted."
89
+ msgstr "Групата от полета бе изпратена."
90
+
91
+ #: acf.php:594
92
+ msgid "Field group scheduled for."
93
+ msgstr "Групата от полета бе планирана за публикуване."
94
+
95
+ #: acf.php:595
96
+ msgid "Field group draft updated."
97
+ msgstr "Черновата на групата от полета бе обновена."
98
+
99
+ #: acf.php:730
100
+ msgid "Thumbnail"
101
+ msgstr "Миниатюра"
102
+
103
+ #: acf.php:731
104
+ msgid "Medium"
105
+ msgstr "Среден"
106
+
107
+ #: acf.php:732
108
+ msgid "Large"
109
+ msgstr "Голям"
110
+
111
+ #: acf.php:733
112
+ msgid "Full"
113
+ msgstr "Пълен"
114
+
115
+ #: core/actions/export.php:26 core/views/meta_box_fields.php:58
116
+ msgid "Error"
117
+ msgstr "Грешка"
118
+
119
+ #: core/actions/export.php:33
120
+ msgid "No ACF groups selected"
121
+ msgstr "Не бяха избрани никакви групи от полета"
122
+
123
+ #: core/api.php:1162
124
+ msgid "Update"
125
+ msgstr "Обнови"
126
+
127
+ #: core/api.php:1163
128
+ msgid "Post updated"
129
+ msgstr "Публикацията бе обновена"
130
+
131
+ #: core/controllers/addons.php:42 core/controllers/field_groups.php:307
132
+ msgid "Add-ons"
133
+ msgstr "Разширения"
134
+
135
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:429
136
+ msgid "Repeater Field"
137
+ msgstr "Повтарящо поле"
138
+
139
+ #: core/controllers/addons.php:131
140
+ msgid "Create infinite rows of repeatable data with this versatile interface!"
141
+ msgstr ""
142
+ "Създайте безкраен брой редове от повторяеми данни чрез този гъвкав интерфейс!"
143
+
144
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:437
145
+ msgid "Gallery Field"
146
+ msgstr "Галерия"
147
+
148
+ #: core/controllers/addons.php:138
149
+ msgid "Create image galleries in a simple and intuitive interface!"
150
+ msgstr "Създайте галерии от снимки, използвайки прост и интуитивен интерфейс!"
151
+
152
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:445
153
+ msgid "Options Page"
154
+ msgstr "Страница с настройки"
155
+
156
+ #: core/controllers/addons.php:145
157
+ msgid "Create global data to use throughout your website!"
158
+ msgstr "Създайте глобални настройки, които да ползвате навсякъде в сайта си!"
159
+
160
+ #: core/controllers/addons.php:151
161
+ msgid "Flexible Content Field"
162
+ msgstr "Поле за гъвкаво съдържание"
163
+
164
+ #: core/controllers/addons.php:152
165
+ msgid "Create unique designs with a flexible content layout manager!"
166
+ msgstr ""
167
+ "Създайте уникални дизайни с помощта на мениджъра за управление на гъвкаво "
168
+ "съдържание!"
169
+
170
+ #: core/controllers/addons.php:161
171
+ msgid "Gravity Forms Field"
172
+ msgstr "Gravity Forms поле"
173
+
174
+ #: core/controllers/addons.php:162
175
+ msgid "Creates a select field populated with Gravity Forms!"
176
+ msgstr "Създава падащо поле за избор на Gravity Form!"
177
+
178
+ #: core/controllers/addons.php:168
179
+ msgid "Date & Time Picker"
180
+ msgstr "Избор на дата и час"
181
+
182
+ #: core/controllers/addons.php:169
183
+ msgid "jQuery date & time picker"
184
+ msgstr "jQuery избор на дата и час"
185
+
186
+ #: core/controllers/addons.php:175
187
+ msgid "Location Field"
188
+ msgstr "Поле за местоположение"
189
+
190
+ #: core/controllers/addons.php:176
191
+ msgid "Find addresses and coordinates of a desired location"
192
+ msgstr "Намерете адресите и координатите на желано от вас място"
193
+
194
+ #: core/controllers/addons.php:182
195
+ msgid "Contact Form 7 Field"
196
+ msgstr "Поле за избор на Contact Form 7 форма"
197
+
198
+ #: core/controllers/addons.php:183
199
+ msgid "Assign one or more contact form 7 forms to a post"
200
+ msgstr "Изберете една или повече Contact Form 7 форми."
201
+
202
+ #: core/controllers/addons.php:193
203
+ msgid "Advanced Custom Fields Add-Ons"
204
+ msgstr "Разширения за Модерни потребителски полета"
205
+
206
+ #: core/controllers/addons.php:196
207
+ msgid ""
208
+ "The following Add-ons are available to increase the functionality of the "
209
+ "Advanced Custom Fields plugin."
210
+ msgstr ""
211
+ "Тези разширения са на ваше разположение, за да увеличите наличната "
212
+ "функционалност на Модерните потребителски полета."
213
+
214
+ #: core/controllers/addons.php:197
215
+ msgid ""
216
+ "Each Add-on can be installed as a separate plugin (receives updates) or "
217
+ "included in your theme (does not receive updates)."
218
+ msgstr ""
219
+ "Всяко разширение може да бъде инсталирано като отделно разширение (което да "
220
+ "получава обновявания) или да бъде включено директно в темата ви (и да не "
221
+ "получава обновявания)."
222
+
223
+ #: core/controllers/addons.php:219 core/controllers/addons.php:240
224
+ msgid "Installed"
225
+ msgstr "Инсталиран"
226
+
227
+ #: core/controllers/addons.php:221
228
+ msgid "Purchase & Install"
229
+ msgstr "Купи и инсталирай"
230
+
231
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:422
232
+ #: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439
233
+ #: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455
234
+ msgid "Download"
235
+ msgstr "Изтегли"
236
+
237
+ #: core/controllers/export.php:50 core/controllers/export.php:159
238
+ msgid "Export"
239
+ msgstr "Запази във файл"
240
+
241
+ #: core/controllers/export.php:216
242
+ msgid "Export Field Groups"
243
+ msgstr "Запази във файл групите от полета"
244
+
245
+ #: core/controllers/export.php:221
246
+ msgid "Field Groups"
247
+ msgstr "Групи от полета"
248
+
249
+ #: core/controllers/export.php:222
250
+ msgid "Select the field groups to be exported"
251
+ msgstr "Изберете групи полета, които да бъдат запазени във файл"
252
+
253
+ #: core/controllers/export.php:239 core/controllers/export.php:252
254
+ msgid "Export to XML"
255
+ msgstr "Запази в XML файл"
256
+
257
+ #: core/controllers/export.php:242 core/controllers/export.php:267
258
+ msgid "Export to PHP"
259
+ msgstr "Запази в PHP файл"
260
+
261
+ #: core/controllers/export.php:253
262
+ msgid ""
263
+ "ACF will create a .xml export file which is compatible with the native WP "
264
+ "import plugin."
265
+ msgstr ""
266
+ "Ще бъде създаден .XML файл, който е съвместим с оригиналното разширение за "
267
+ "внасяне на данни в WordPress."
268
+
269
+ #: core/controllers/export.php:254
270
+ msgid ""
271
+ "Imported field groups <b>will</b> appear in the list of editable field "
272
+ "groups. This is useful for migrating fields groups between Wp websites."
273
+ msgstr ""
274
+ "Внесените групи от полета <b>ще</b> се показват в списъка с групи от полета, "
275
+ "налични за редакция. Това е полезно при местене на групи от полета между WP "
276
+ "сайтовете."
277
+
278
+ #: core/controllers/export.php:256
279
+ msgid "Select field group(s) from the list and click \"Export XML\""
280
+ msgstr "Изберете групи полета от списъка и натиснете \"Запази в XML файл\""
281
+
282
+ #: core/controllers/export.php:257
283
+ msgid "Save the .xml file when prompted"
284
+ msgstr "Запазване на .xml файла при поискване"
285
+
286
+ #: core/controllers/export.php:258
287
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
288
+ msgstr "Идете в Инструменти &raquo; Внасяне и изберете WordPress"
289
+
290
+ #: core/controllers/export.php:259
291
+ msgid "Install WP import plugin if prompted"
292
+ msgstr "Инсталиране на WP разширение за внасяне на данни при поискване"
293
+
294
+ #: core/controllers/export.php:260
295
+ msgid "Upload and import your exported .xml file"
296
+ msgstr "Качете и внесете вашия предварително изнесен .xml файл"
297
+
298
+ #: core/controllers/export.php:261
299
+ msgid "Select your user and ignore Import Attachments"
300
+ msgstr ""
301
+ "Изберете желания потребител и игнорирайте \"Внасяне на прикачените файлове\""
302
+
303
+ #: core/controllers/export.php:262
304
+ msgid "That's it! Happy WordPressing"
305
+ msgstr "Това е всичко! Желаем ви приятно WordPress-ване"
306
+
307
+ #: core/controllers/export.php:268
308
+ msgid "ACF will create the PHP code to include in your theme."
309
+ msgstr "Ще бъде създаден PHP код, който да включите в темата си."
310
+
311
+ #: core/controllers/export.php:269 core/controllers/export.php:310
312
+ msgid ""
313
+ "Registered field groups <b>will not</b> appear in the list of editable field "
314
+ "groups. This is useful for including fields in themes."
315
+ msgstr ""
316
+ "Регистрираните групи полета <b>няма</b> да се показват в списъка с "
317
+ "редактируеми групи полета. Това е полезно при включване на полета в теми."
318
+
319
+ #: core/controllers/export.php:270 core/controllers/export.php:311
320
+ msgid ""
321
+ "Please note that if you export and register field groups within the same WP, "
322
+ "you will see duplicate fields on your edit screens. To fix this, please move "
323
+ "the original field group to the trash or remove the code from your functions."
324
+ "php file."
325
+ msgstr ""
326
+ "Забележете, че ако изнесете и регистрирате групи полета в рамките на една "
327
+ "инсталация, ще виждате повторения на полетата си. За да оправите това, моля "
328
+ "преместете оригиналната група полета в кошчето, или премахнете регистриращич "
329
+ "код от вашия functions.php файл."
330
+
331
+ #: core/controllers/export.php:272
332
+ msgid "Select field group(s) from the list and click \"Create PHP\""
333
+ msgstr "Изберете групи полета от списъка и натиснете върху \"Създай PHP\""
334
+
335
+ #: core/controllers/export.php:273 core/controllers/export.php:302
336
+ msgid "Copy the PHP code generated"
337
+ msgstr "Копирай генерирания PHP код"
338
+
339
+ #: core/controllers/export.php:274 core/controllers/export.php:303
340
+ msgid "Paste into your functions.php file"
341
+ msgstr "Сложи в своя functions.php файл"
342
+
343
+ #: core/controllers/export.php:275 core/controllers/export.php:304
344
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
345
+ msgstr ""
346
+ "За да активирате каквито и да е разширения, редактирайте и използвайте "
347
+ "следния код в първите няколко реда."
348
+
349
+ #: core/controllers/export.php:295
350
+ msgid "Export Field Groups to PHP"
351
+ msgstr "Запази групите от полета в PHP файл"
352
+
353
+ #: core/controllers/export.php:300 core/fields/tab.php:65
354
+ msgid "Instructions"
355
+ msgstr "Инструкции"
356
+
357
+ #: core/controllers/export.php:309
358
+ msgid "Notes"
359
+ msgstr "Бележки"
360
+
361
+ #: core/controllers/export.php:316
362
+ msgid "Include in theme"
363
+ msgstr "Включи в темата"
364
+
365
+ #: core/controllers/export.php:317
366
+ msgid ""
367
+ "The Advanced Custom Fields plugin can be included within a theme. To do so, "
368
+ "move the ACF plugin inside your theme and add the following code to your "
369
+ "functions.php file:"
370
+ msgstr ""
371
+ "Това разширение може да бъде вградено в тема. За да направите това, "
372
+ "преместете разширението в темата и добавете следния код към вашия functions."
373
+ "php файл:"
374
+
375
+ #: core/controllers/export.php:323
376
+ msgid ""
377
+ "To remove all visual interfaces from the ACF plugin, you can use a constant "
378
+ "to enable lite mode. Add the following code to your functions.php file "
379
+ "<b>before</b> the include_once code:"
380
+ msgstr ""
381
+ "За да премахнете всички визуални интерфейси от това разширение, можете да "
382
+ "използвате константа за да включите Lite версията. За да направите това, "
383
+ "добавете следния код към вашия functions.php файл <b>преди</b> кода "
384
+ "include_once"
385
+
386
+ #: core/controllers/export.php:331
387
+ msgid "Back to export"
388
+ msgstr "Обратно към Запазване във файл"
389
+
390
+ #: core/controllers/export.php:400
391
+ msgid "No field groups were selected"
392
+ msgstr "Не бяха избрани групи от полета"
393
+
394
+ #: core/controllers/field_group.php:358
395
+ msgid "Move to trash. Are you sure?"
396
+ msgstr "Местене в кошчето. Сигурни ли сте?"
397
+
398
+ #: core/controllers/field_group.php:359
399
+ msgid "checked"
400
+ msgstr "избран"
401
+
402
+ #: core/controllers/field_group.php:360
403
+ msgid "No toggle fields available"
404
+ msgstr "Няма налични полета"
405
+
406
+ #: core/controllers/field_group.php:361
407
+ msgid "Field group title is required"
408
+ msgstr "Заглавието на групата с полета е задължително"
409
+
410
+ #: core/controllers/field_group.php:362
411
+ msgid "copy"
412
+ msgstr "копирай"
413
+
414
+ #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
415
+ #: core/views/meta_box_location.php:159
416
+ msgid "or"
417
+ msgstr "или"
418
+
419
+ #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
420
+ #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
421
+ msgid "Fields"
422
+ msgstr "Полета"
423
+
424
+ #: core/controllers/field_group.php:365
425
+ msgid "Parent fields"
426
+ msgstr "Родителски полета"
427
+
428
+ #: core/controllers/field_group.php:366
429
+ msgid "Sibling fields"
430
+ msgstr "Полета от същото ниво"
431
+
432
+ #: core/controllers/field_group.php:367
433
+ msgid "Hide / Show All"
434
+ msgstr "Скрии / покажи всички"
435
+
436
+ #: core/controllers/field_group.php:396
437
+ msgid "Location"
438
+ msgstr "Местоположение"
439
+
440
+ #: core/controllers/field_group.php:397
441
+ msgid "Options"
442
+ msgstr "Настройки"
443
+
444
+ #: core/controllers/field_group.php:459
445
+ msgid "Show Field Key:"
446
+ msgstr "Покажи ключа на полето"
447
+
448
+ #: core/controllers/field_group.php:460 core/fields/page_link.php:138
449
+ #: core/fields/page_link.php:159 core/fields/post_object.php:328
450
+ #: core/fields/post_object.php:349 core/fields/select.php:224
451
+ #: core/fields/select.php:243 core/fields/taxonomy.php:343
452
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:256
453
+ #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
454
+ msgid "No"
455
+ msgstr "Не"
456
+
457
+ #: core/controllers/field_group.php:461 core/fields/page_link.php:137
458
+ #: core/fields/page_link.php:158 core/fields/post_object.php:327
459
+ #: core/fields/post_object.php:348 core/fields/select.php:223
460
+ #: core/fields/select.php:242 core/fields/taxonomy.php:342
461
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:255
462
+ #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
463
+ msgid "Yes"
464
+ msgstr "Да"
465
+
466
+ #: core/controllers/field_group.php:645
467
+ msgid "Front Page"
468
+ msgstr "Начална страница"
469
+
470
+ #: core/controllers/field_group.php:646
471
+ msgid "Posts Page"
472
+ msgstr "Страница с публикации"
473
+
474
+ #: core/controllers/field_group.php:647
475
+ msgid "Top Level Page (parent of 0)"
476
+ msgstr "Страница от първо ниво (с родител 0)"
477
+
478
+ #: core/controllers/field_group.php:648
479
+ msgid "Parent Page (has children)"
480
+ msgstr "Родителска страница (има деца)"
481
+
482
+ #: core/controllers/field_group.php:649
483
+ msgid "Child Page (has parent)"
484
+ msgstr "Дъщерна страница (има родител)"
485
+
486
+ #: core/controllers/field_group.php:657
487
+ msgid "Default Template"
488
+ msgstr "Шаблон по подразбиране"
489
+
490
+ #: core/controllers/field_group.php:734
491
+ msgid "Publish"
492
+ msgstr "Публикувай"
493
+
494
+ #: core/controllers/field_group.php:735
495
+ msgid "Pending Review"
496
+ msgstr "Чака одобрение"
497
+
498
+ #: core/controllers/field_group.php:736
499
+ msgid "Draft"
500
+ msgstr "Чернова"
501
+
502
+ #: core/controllers/field_group.php:737
503
+ msgid "Future"
504
+ msgstr "Бъдещ"
505
+
506
+ #: core/controllers/field_group.php:738
507
+ msgid "Private"
508
+ msgstr "Частен"
509
+
510
+ #: core/controllers/field_group.php:739
511
+ msgid "Revision"
512
+ msgstr "Ревизия"
513
+
514
+ #: core/controllers/field_group.php:740
515
+ msgid "Trash"
516
+ msgstr "Кошче"
517
+
518
+ #: core/controllers/field_group.php:753
519
+ msgid "Super Admin"
520
+ msgstr "Супер администратор"
521
+
522
+ #: core/controllers/field_group.php:768 core/controllers/field_group.php:789
523
+ #: core/controllers/field_group.php:796 core/fields/file.php:186
524
+ #: core/fields/image.php:170 core/fields/page_link.php:109
525
+ #: core/fields/post_object.php:274 core/fields/post_object.php:298
526
+ #: core/fields/relationship.php:598 core/fields/relationship.php:622
527
+ #: core/fields/user.php:229
528
+ msgid "All"
529
+ msgstr "Всички"
530
+
531
+ #: core/controllers/field_groups.php:147
532
+ msgid "Title"
533
+ msgstr "Заглавие"
534
+
535
+ #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
536
+ msgid "Changelog"
537
+ msgstr "Списък с промени"
538
+
539
+ #: core/controllers/field_groups.php:217
540
+ msgid "See what's new in"
541
+ msgstr "Вижте новостите"
542
+
543
+ #: core/controllers/field_groups.php:217
544
+ msgid "version"
545
+ msgstr "версия"
546
+
547
+ #: core/controllers/field_groups.php:219
548
+ msgid "Resources"
549
+ msgstr "Ресурси"
550
+
551
+ #: core/controllers/field_groups.php:221
552
+ msgid "Getting Started"
553
+ msgstr "Как да започнете"
554
+
555
+ #: core/controllers/field_groups.php:222
556
+ msgid "Field Types"
557
+ msgstr "Типове полета"
558
+
559
+ #: core/controllers/field_groups.php:223
560
+ msgid "Functions"
561
+ msgstr "Функции"
562
+
563
+ #: core/controllers/field_groups.php:224
564
+ msgid "Actions"
565
+ msgstr "Действия"
566
+
567
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:641
568
+ msgid "Filters"
569
+ msgstr "Филтри"
570
+
571
+ #: core/controllers/field_groups.php:226
572
+ msgid "'How to' guides"
573
+ msgstr "Инструкции и насоки"
574
+
575
+ #: core/controllers/field_groups.php:227
576
+ msgid "Tutorials"
577
+ msgstr "Уроци"
578
+
579
+ #: core/controllers/field_groups.php:232
580
+ msgid "Created by"
581
+ msgstr "Създаден от"
582
+
583
+ #: core/controllers/field_groups.php:244
584
+ msgid "Welcome to Advanced Custom Fields"
585
+ msgstr "Добре дошли в Модерни потребителски полета"
586
+
587
+ #: core/controllers/field_groups.php:245
588
+ msgid "Thank you for updating to the latest version!"
589
+ msgstr "Благодарим ви, че обновихте до последната версия!"
590
+
591
+ #: core/controllers/field_groups.php:245
592
+ msgid "is more polished and enjoyable than ever before. We hope you like it."
593
+ msgstr ""
594
+ "е по-лъскав и готин от когато и да е преди. Надяваме се, че ще ви хареса."
595
+
596
+ #: core/controllers/field_groups.php:252
597
+ msgid "What’s New"
598
+ msgstr "Какво ново"
599
+
600
+ #: core/controllers/field_groups.php:255
601
+ msgid "Download Add-ons"
602
+ msgstr "Изтегли разширения"
603
+
604
+ #: core/controllers/field_groups.php:309
605
+ msgid "Activation codes have grown into plugins!"
606
+ msgstr "Кодовете за активация вече са обособени като разширения!"
607
+
608
+ #: core/controllers/field_groups.php:310
609
+ msgid ""
610
+ "Add-ons are now activated by downloading and installing individual plugins. "
611
+ "Although these plugins will not be hosted on the wordpress.org repository, "
612
+ "each Add-on will continue to receive updates in the usual way."
613
+ msgstr ""
614
+ "Добавките вече се активират при сваляне и инсталиране на съответните "
615
+ "разширения. Въпреки, че тези разширения няма да се хостват в хранилището на "
616
+ "wordpress.org, всяка добавка ще продължи да получава обновления по "
617
+ "стандартния начин."
618
+
619
+ #: core/controllers/field_groups.php:316
620
+ msgid "All previous Add-ons have been successfully installed"
621
+ msgstr "Всички предходни разширения бяха инсталирани успешно"
622
+
623
+ #: core/controllers/field_groups.php:320
624
+ msgid "This website uses premium Add-ons which need to be downloaded"
625
+ msgstr ""
626
+ "Този уебсайт използва платени разширения, които трябва да бъдат изтеглени"
627
+
628
+ #: core/controllers/field_groups.php:320
629
+ msgid "Download your activated Add-ons"
630
+ msgstr "Изтеглете активираните си разширения"
631
+
632
+ #: core/controllers/field_groups.php:325
633
+ msgid ""
634
+ "This website does not use premium Add-ons and will not be affected by this "
635
+ "change."
636
+ msgstr ""
637
+ "Този уебсайт не използва платени разширения и няма да бъде повлиян от тази "
638
+ "промяна."
639
+
640
+ #: core/controllers/field_groups.php:335
641
+ msgid "Easier Development"
642
+ msgstr "По-лесна разработка"
643
+
644
+ #: core/controllers/field_groups.php:337
645
+ msgid "New Field Types"
646
+ msgstr "Нови типове полета"
647
+
648
+ #: core/controllers/field_groups.php:339
649
+ msgid "Taxonomy Field"
650
+ msgstr "Поле за таксономия"
651
+
652
+ #: core/controllers/field_groups.php:340
653
+ msgid "User Field"
654
+ msgstr "Поле за потребител"
655
+
656
+ #: core/controllers/field_groups.php:341
657
+ msgid "Email Field"
658
+ msgstr "Email поле"
659
+
660
+ #: core/controllers/field_groups.php:342
661
+ msgid "Password Field"
662
+ msgstr "Поле за парола"
663
+
664
+ #: core/controllers/field_groups.php:344
665
+ msgid "Custom Field Types"
666
+ msgstr "Потребителски типове полета"
667
+
668
+ #: core/controllers/field_groups.php:345
669
+ msgid ""
670
+ "Creating your own field type has never been easier! Unfortunately, version 3 "
671
+ "field types are not compatible with version 4."
672
+ msgstr ""
673
+ "Създаването на ваш собствен тип поле никога не е било по-лесно! За "
674
+ "съжаление, типовете полета на версия 3 не са съвместими с тези от версия 4."
675
+
676
+ #: core/controllers/field_groups.php:346
677
+ msgid "Migrating your field types is easy, please"
678
+ msgstr "Местенето на вашите типове полета е лесно, моля"
679
+
680
+ #: core/controllers/field_groups.php:346
681
+ msgid "follow this tutorial"
682
+ msgstr "следвай този урок"
683
+
684
+ #: core/controllers/field_groups.php:346
685
+ msgid "to learn more."
686
+ msgstr "за да научиш повече."
687
+
688
+ #: core/controllers/field_groups.php:348
689
+ msgid "Actions &amp; Filters"
690
+ msgstr "Действия и филтри"
691
+
692
+ #: core/controllers/field_groups.php:349
693
+ msgid ""
694
+ "All actions & filters have received a major facelift to make customizing ACF "
695
+ "even easier! Please"
696
+ msgstr ""
697
+ "Всички действия и филтри бяха сериозно подобрени, за да направят "
698
+ "персонализирането на това разширение по-лесно! Моля"
699
+
700
+ #: core/controllers/field_groups.php:349
701
+ msgid "read this guide"
702
+ msgstr "прочетете този урок"
703
+
704
+ #: core/controllers/field_groups.php:349
705
+ msgid "to find the updated naming convention."
706
+ msgstr "за да намерите обновената конвенция за именуване."
707
+
708
+ #: core/controllers/field_groups.php:351
709
+ msgid "Preview draft is now working!"
710
+ msgstr "Прегледа на чернова вече работи!"
711
+
712
+ #: core/controllers/field_groups.php:352
713
+ msgid "This bug has been squashed along with many other little critters!"
714
+ msgstr "Този бъг бе оправен, както и много други!"
715
+
716
+ #: core/controllers/field_groups.php:352
717
+ msgid "See the full changelog"
718
+ msgstr "Вижте пълния списък с промени"
719
+
720
+ #: core/controllers/field_groups.php:356
721
+ msgid "Important"
722
+ msgstr "Важно"
723
+
724
+ #: core/controllers/field_groups.php:358
725
+ msgid "Database Changes"
726
+ msgstr "Промени в базата данни"
727
+
728
+ #: core/controllers/field_groups.php:359
729
+ msgid ""
730
+ "Absolutely <strong>no</strong> changes have been made to the database "
731
+ "between versions 3 and 4. This means you can roll back to version 3 without "
732
+ "any issues."
733
+ msgstr ""
734
+ "Абсолютно <strong>никакви</strong> промени не бяха направени по базата данни "
735
+ "между версия 3 и 4. Това означава, че можете да върнете до версия 3 без "
736
+ "никакви проблеми."
737
+
738
+ #: core/controllers/field_groups.php:361
739
+ msgid "Potential Issues"
740
+ msgstr "Потенциални проблеми"
741
+
742
+ #: core/controllers/field_groups.php:362
743
+ msgid ""
744
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
745
+ "filters, your website may not operate correctly. It is important that you "
746
+ "read the full"
747
+ msgstr ""
748
+ "Поради промените свързани с вашите добавки, типове полета и действия/филтри, "
749
+ "вашия уебсайт може да не функционира правилно. Важно е да прочетете пълните"
750
+
751
+ #: core/controllers/field_groups.php:362
752
+ msgid "Migrating from v3 to v4"
753
+ msgstr "Миграция от версия 3 към версия 4"
754
+
755
+ #: core/controllers/field_groups.php:362
756
+ msgid "guide to view the full list of changes."
757
+ msgstr "инструкции за да видите пълния списък с промени."
758
+
759
+ #: core/controllers/field_groups.php:365
760
+ msgid "Really Important!"
761
+ msgstr "Наистина важно!"
762
+
763
+ #: core/controllers/field_groups.php:365
764
+ msgid ""
765
+ "If you updated the ACF plugin without prior knowledge of such changes, "
766
+ "please roll back to the latest"
767
+ msgstr ""
768
+ "Ако сте обновили това разширение без да знаете за тези промени, моля върнете "
769
+ "към последната"
770
+
771
+ #: core/controllers/field_groups.php:365
772
+ msgid "version 3"
773
+ msgstr "версия 3"
774
+
775
+ #: core/controllers/field_groups.php:365
776
+ msgid "of this plugin."
777
+ msgstr "на това разширение."
778
+
779
+ #: core/controllers/field_groups.php:370
780
+ msgid "Thank You"
781
+ msgstr "Благодарим ви"
782
+
783
+ #: core/controllers/field_groups.php:371
784
+ msgid ""
785
+ "A <strong>BIG</strong> thank you to everyone who has helped test the version "
786
+ "4 beta and for all the support I have received."
787
+ msgstr ""
788
+ "<strong>Голямо</strong> благодаря на всички, които помохнаха да тестваме "
789
+ "версия 4 и цялата подкрепа, която получихме."
790
+
791
+ #: core/controllers/field_groups.php:372
792
+ msgid "Without you all, this release would not have been possible!"
793
+ msgstr "Без вас, тази версия нямаше да бъде възможна!"
794
+
795
+ #: core/controllers/field_groups.php:376
796
+ msgid "Changelog for"
797
+ msgstr "Списък с промени за"
798
+
799
+ #: core/controllers/field_groups.php:393
800
+ msgid "Learn more"
801
+ msgstr "Научи повече"
802
+
803
+ #: core/controllers/field_groups.php:399
804
+ msgid "Overview"
805
+ msgstr "Преглед"
806
+
807
+ #: core/controllers/field_groups.php:401
808
+ msgid ""
809
+ "Previously, all Add-ons were unlocked via an activation code (purchased from "
810
+ "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
811
+ "need to be individually downloaded, installed and updated."
812
+ msgstr ""
813
+ "В миналото всички платени добавки се отключваха чрез код за активация "
814
+ "(закупен онлайн). От версия 4 насам, добавките се държат като отделни "
815
+ "разширения, които могат да бъдат отделно сваляни, инсталирани и обновявани."
816
+
817
+ #: core/controllers/field_groups.php:403
818
+ msgid ""
819
+ "This page will assist you in downloading and installing each available Add-"
820
+ "on."
821
+ msgstr ""
822
+ "Тази страница ще ви помогне при свалянето и инсталирането на всяко налично "
823
+ "разширение."
824
+
825
+ #: core/controllers/field_groups.php:405
826
+ msgid "Available Add-ons"
827
+ msgstr "Налични разширения"
828
+
829
+ #: core/controllers/field_groups.php:407
830
+ msgid "The following Add-ons have been detected as activated on this website."
831
+ msgstr "Следните разширения бяха намерени като активирани на този уебсайт."
832
+
833
+ #: core/controllers/field_groups.php:420
834
+ msgid "Name"
835
+ msgstr "Име"
836
+
837
+ #: core/controllers/field_groups.php:421
838
+ msgid "Activation Code"
839
+ msgstr "Код за активация"
840
+
841
+ #: core/controllers/field_groups.php:453
842
+ msgid "Flexible Content"
843
+ msgstr "Гъвкаво съдържание"
844
+
845
+ #: core/controllers/field_groups.php:463
846
+ msgid "Installation"
847
+ msgstr "Инсталация"
848
+
849
+ #: core/controllers/field_groups.php:465
850
+ msgid "For each Add-on available, please perform the following:"
851
+ msgstr "За всяко налично разширение, моля извършете следното:"
852
+
853
+ #: core/controllers/field_groups.php:467
854
+ msgid "Download the Add-on plugin (.zip file) to your desktop"
855
+ msgstr "Изтегли разширението (.zip файл) на работния си плот"
856
+
857
+ #: core/controllers/field_groups.php:468
858
+ msgid "Navigate to"
859
+ msgstr "Идете към"
860
+
861
+ #: core/controllers/field_groups.php:468
862
+ msgid "Plugins > Add New > Upload"
863
+ msgstr "Разширения -> Добави ново -> Качи"
864
+
865
+ #: core/controllers/field_groups.php:469
866
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
867
+ msgstr ""
868
+ "Използвайте инструмента за качване за да изберете, качите и инсталирате "
869
+ "вашата добавка (.zip файл)"
870
+
871
+ #: core/controllers/field_groups.php:470
872
+ msgid ""
873
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
874
+ "link"
875
+ msgstr ""
876
+ "След като разширението е качено и инсталирано, натиснете на връзката "
877
+ "\"Активирай разширението\""
878
+
879
+ #: core/controllers/field_groups.php:471
880
+ msgid "The Add-on is now installed and activated!"
881
+ msgstr "Това разширение бе инсталирано и активирано!"
882
+
883
+ #: core/controllers/field_groups.php:485
884
+ msgid "Awesome. Let's get to work"
885
+ msgstr "Страхотно! Да се залавяме за работа"
886
+
887
+ #: core/controllers/input.php:63
888
+ msgid "Expand Details"
889
+ msgstr "Разтегни за повече детайли"
890
+
891
+ #: core/controllers/input.php:64
892
+ msgid "Collapse Details"
893
+ msgstr "Затвори допълнителните детайли"
894
+
895
+ #: core/controllers/input.php:67
896
+ msgid "Validation Failed. One or more fields below are required."
897
+ msgstr "Валидацията се провали. Едно или повече полета са задължителни."
898
+
899
+ #: core/controllers/upgrade.php:86
900
+ msgid "Upgrade"
901
+ msgstr "Обнови"
902
+
903
+ #: core/controllers/upgrade.php:139
904
+ msgid "What's new"
905
+ msgstr "Какво ново"
906
+
907
+ #: core/controllers/upgrade.php:150
908
+ msgid "credits"
909
+ msgstr "благодарности"
910
+
911
+ #: core/controllers/upgrade.php:684
912
+ msgid "Modifying field group options 'show on page'"
913
+ msgstr "Променяне на настройките на групата полета 'показване на страница'"
914
+
915
+ #: core/controllers/upgrade.php:738
916
+ msgid "Modifying field option 'taxonomy'"
917
+ msgstr "Променяне на настройка на полето 'таксономия'"
918
+
919
+ #: core/controllers/upgrade.php:835
920
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
921
+ msgstr "Местене на потребителски полета от wp_options към wp_usermeta'"
922
+
923
+ #: core/fields/_base.php:124 core/views/meta_box_location.php:74
924
+ msgid "Basic"
925
+ msgstr "Базов"
926
+
927
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:319
928
+ msgid "Checkbox"
929
+ msgstr "Отметка"
930
+
931
+ #: core/fields/checkbox.php:20 core/fields/radio.php:19
932
+ #: core/fields/select.php:19 core/fields/true_false.php:20
933
+ msgid "Choice"
934
+ msgstr "Избор"
935
+
936
+ #: core/fields/checkbox.php:146 core/fields/radio.php:147
937
+ #: core/fields/select.php:177
938
+ msgid "Choices"
939
+ msgstr "Избора"
940
+
941
+ #: core/fields/checkbox.php:147 core/fields/select.php:178
942
+ msgid "Enter each choice on a new line."
943
+ msgstr "Въвеждайте всяка стойност на нов ред."
944
+
945
+ #: core/fields/checkbox.php:148 core/fields/select.php:179
946
+ msgid "For more control, you may specify both a value and label like this:"
947
+ msgstr ""
948
+ "За по-добър контрол можете да зададете и стойност и етикет по следния начин:"
949
+
950
+ #: core/fields/checkbox.php:149 core/fields/radio.php:153
951
+ #: core/fields/select.php:180
952
+ msgid "red : Red"
953
+ msgstr "червено : Червено"
954
+
955
+ #: core/fields/checkbox.php:149 core/fields/radio.php:154
956
+ #: core/fields/select.php:180
957
+ msgid "blue : Blue"
958
+ msgstr "синьо : Синьо"
959
+
960
+ #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
961
+ #: core/fields/email.php:106 core/fields/number.php:116
962
+ #: core/fields/radio.php:196 core/fields/select.php:197
963
+ #: core/fields/text.php:116 core/fields/textarea.php:96
964
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:198
965
+ msgid "Default Value"
966
+ msgstr "Стойност по подразбиране"
967
+
968
+ #: core/fields/checkbox.php:167 core/fields/select.php:198
969
+ msgid "Enter each default value on a new line"
970
+ msgstr "Въведете всяка една стойност по подразбиране на нов ред"
971
+
972
+ #: core/fields/checkbox.php:183 core/fields/message.php:20
973
+ #: core/fields/radio.php:212 core/fields/tab.php:20
974
+ msgid "Layout"
975
+ msgstr "Оформление"
976
+
977
+ #: core/fields/checkbox.php:194 core/fields/radio.php:223
978
+ msgid "Vertical"
979
+ msgstr "Вертикален"
980
+
981
+ #: core/fields/checkbox.php:195 core/fields/radio.php:224
982
+ msgid "Horizontal"
983
+ msgstr "Хоризонтален"
984
+
985
+ #: core/fields/color_picker.php:19
986
+ msgid "Color Picker"
987
+ msgstr "Поле за избор на цвят"
988
+
989
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
990
+ #: core/fields/google-map.php:19
991
+ msgid "jQuery"
992
+ msgstr "jQuery"
993
+
994
+ #: core/fields/date_picker/date_picker.php:19
995
+ msgid "Date Picker"
996
+ msgstr "Поле за избор на дата"
997
+
998
+ #: core/fields/date_picker/date_picker.php:55
999
+ msgid "Done"
1000
+ msgstr "Готов"
1001
+
1002
+ #: core/fields/date_picker/date_picker.php:56
1003
+ msgid "Today"
1004
+ msgstr "Днес"
1005
+
1006
+ #: core/fields/date_picker/date_picker.php:59
1007
+ msgid "Show a different month"
1008
+ msgstr "Покажи различен месец"
1009
+
1010
+ #: core/fields/date_picker/date_picker.php:126
1011
+ msgid "Save format"
1012
+ msgstr "Запази формата"
1013
+
1014
+ #: core/fields/date_picker/date_picker.php:127
1015
+ msgid ""
1016
+ "This format will determine the value saved to the database and returned via "
1017
+ "the API"
1018
+ msgstr ""
1019
+ "Този формат ще определи стойността, запазена в базата данни и върната от API-"
1020
+ "то"
1021
+
1022
+ #: core/fields/date_picker/date_picker.php:128
1023
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1024
+ msgstr "\"yymmdd\" е най-подходящия формат за запазване. Прочети повече за"
1025
+
1026
+ #: core/fields/date_picker/date_picker.php:128
1027
+ #: core/fields/date_picker/date_picker.php:144
1028
+ msgid "jQuery date formats"
1029
+ msgstr "jQuery формати за дата"
1030
+
1031
+ #: core/fields/date_picker/date_picker.php:142
1032
+ msgid "Display format"
1033
+ msgstr "Формат за извеждане"
1034
+
1035
+ #: core/fields/date_picker/date_picker.php:143
1036
+ msgid "This format will be seen by the user when entering a value"
1037
+ msgstr "Този формат ще бъде видян от потребителя при въвеждане на стойност"
1038
+
1039
+ #: core/fields/date_picker/date_picker.php:144
1040
+ msgid ""
1041
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1042
+ "about"
1043
+ msgstr ""
1044
+ "\"dd/mm/yy\" или \"mm/dd/yy\" са най-използваните формати. Прочетете повече "
1045
+ "за"
1046
+
1047
+ #: core/fields/date_picker/date_picker.php:158
1048
+ msgid "Week Starts On"
1049
+ msgstr "Седмицата започва от"
1050
+
1051
+ #: core/fields/dummy.php:19
1052
+ msgid "Dummy"
1053
+ msgstr "Пример"
1054
+
1055
+ #: core/fields/email.php:19
1056
+ msgid "Email"
1057
+ msgstr "Email"
1058
+
1059
+ #: core/fields/email.php:107 core/fields/number.php:117
1060
+ #: core/fields/text.php:117 core/fields/textarea.php:97
1061
+ #: core/fields/wysiwyg.php:199
1062
+ msgid "Appears when creating a new post"
1063
+ msgstr "Появява се когато създавате нова публикация"
1064
+
1065
+ #: core/fields/email.php:123 core/fields/number.php:133
1066
+ #: core/fields/password.php:105 core/fields/text.php:131
1067
+ #: core/fields/textarea.php:111
1068
+ msgid "Placeholder Text"
1069
+ msgstr "Информативен текст"
1070
+
1071
+ #: core/fields/email.php:124 core/fields/number.php:134
1072
+ #: core/fields/password.php:106 core/fields/text.php:132
1073
+ #: core/fields/textarea.php:112
1074
+ msgid "Appears within the input"
1075
+ msgstr "Появява се в текстовото поле"
1076
+
1077
+ #: core/fields/email.php:138 core/fields/number.php:148
1078
+ #: core/fields/password.php:120 core/fields/text.php:146
1079
+ msgid "Prepend"
1080
+ msgstr "Прикрепи"
1081
+
1082
+ #: core/fields/email.php:139 core/fields/number.php:149
1083
+ #: core/fields/password.php:121 core/fields/text.php:147
1084
+ msgid "Appears before the input"
1085
+ msgstr "Показва се преди текстовото поле"
1086
+
1087
+ #: core/fields/email.php:153 core/fields/number.php:163
1088
+ #: core/fields/password.php:135 core/fields/text.php:161
1089
+ msgid "Append"
1090
+ msgstr "Добави"
1091
+
1092
+ #: core/fields/email.php:154 core/fields/number.php:164
1093
+ #: core/fields/password.php:136 core/fields/text.php:162
1094
+ msgid "Appears after the input"
1095
+ msgstr "Показва се след текстовото поле"
1096
+
1097
+ #: core/fields/file.php:19
1098
+ msgid "File"
1099
+ msgstr "Файл"
1100
+
1101
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36
1102
+ msgid "Content"
1103
+ msgstr "Съдържание"
1104
+
1105
+ #: core/fields/file.php:26
1106
+ msgid "Select File"
1107
+ msgstr "Избери файл"
1108
+
1109
+ #: core/fields/file.php:27
1110
+ msgid "Edit File"
1111
+ msgstr "Редактирай файл"
1112
+
1113
+ #: core/fields/file.php:28
1114
+ msgid "Update File"
1115
+ msgstr "Обнови файл"
1116
+
1117
+ #: core/fields/file.php:29 core/fields/image.php:30
1118
+ msgid "uploaded to this post"
1119
+ msgstr "прикачен към тази публикация"
1120
+
1121
+ #: core/fields/file.php:123
1122
+ msgid "No File Selected"
1123
+ msgstr "Не е избран файл"
1124
+
1125
+ #: core/fields/file.php:123
1126
+ msgid "Add File"
1127
+ msgstr "Добави файл"
1128
+
1129
+ #: core/fields/file.php:153 core/fields/image.php:118
1130
+ #: core/fields/taxonomy.php:367
1131
+ msgid "Return Value"
1132
+ msgstr "Върната стойност"
1133
+
1134
+ #: core/fields/file.php:164
1135
+ msgid "File Object"
1136
+ msgstr "Файл под формата на обект"
1137
+
1138
+ #: core/fields/file.php:165
1139
+ msgid "File URL"
1140
+ msgstr "URL на файла"
1141
+
1142
+ #: core/fields/file.php:166
1143
+ msgid "File ID"
1144
+ msgstr "ID на файла"
1145
+
1146
+ #: core/fields/file.php:175 core/fields/image.php:158
1147
+ msgid "Library"
1148
+ msgstr "Библиотека"
1149
+
1150
+ #: core/fields/file.php:187 core/fields/image.php:171
1151
+ msgid "Uploaded to post"
1152
+ msgstr "Прикачен към тази публикация"
1153
+
1154
+ #: core/fields/google-map.php:18
1155
+ msgid "Google Map"
1156
+ msgstr "Google карта"
1157
+
1158
+ #: core/fields/google-map.php:33
1159
+ msgid "Locating"
1160
+ msgstr "Намиране"
1161
+
1162
+ #: core/fields/google-map.php:34
1163
+ msgid "Sorry, this browser does not support geolocation"
1164
+ msgstr ""
1165
+ "Този уеб браузър не поддържа автоматично определяне на географското "
1166
+ "местоположение"
1167
+
1168
+ #: core/fields/google-map.php:120
1169
+ msgid "Clear location"
1170
+ msgstr "Изчисти местоположението"
1171
+
1172
+ #: core/fields/google-map.php:125
1173
+ msgid "Find current location"
1174
+ msgstr "Намери текущото местоположение"
1175
+
1176
+ #: core/fields/google-map.php:126
1177
+ msgid "Search for address..."
1178
+ msgstr "Търси даден адрес..."
1179
+
1180
+ #: core/fields/google-map.php:162
1181
+ msgid "Center"
1182
+ msgstr "Центрирай"
1183
+
1184
+ #: core/fields/google-map.php:163
1185
+ msgid "Center the initial map"
1186
+ msgstr "Центрирай картата при първоначално зареждане"
1187
+
1188
+ #: core/fields/google-map.php:199
1189
+ msgid "Zoom"
1190
+ msgstr "Мащаб"
1191
+
1192
+ #: core/fields/google-map.php:200
1193
+ msgid "Set the initial zoom level"
1194
+ msgstr "Задаване на първоначален мащаб"
1195
+
1196
+ #: core/fields/google-map.php:217
1197
+ msgid "Height"
1198
+ msgstr "Височина"
1199
+
1200
+ #: core/fields/google-map.php:218
1201
+ msgid "Customise the map height"
1202
+ msgstr "Настрой височината на картата"
1203
+
1204
+ #: core/fields/image.php:19
1205
+ msgid "Image"
1206
+ msgstr "Картинка"
1207
+
1208
+ #: core/fields/image.php:27
1209
+ msgid "Select Image"
1210
+ msgstr "Избери картинка"
1211
+
1212
+ #: core/fields/image.php:28
1213
+ msgid "Edit Image"
1214
+ msgstr "Редактирай картинка"
1215
+
1216
+ #: core/fields/image.php:29
1217
+ msgid "Update Image"
1218
+ msgstr "Обнови картинка"
1219
+
1220
+ #: core/fields/image.php:83
1221
+ msgid "Remove"
1222
+ msgstr "Премахни"
1223
+
1224
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:108
1225
+ msgid "Edit"
1226
+ msgstr "Редактирай"
1227
+
1228
+ #: core/fields/image.php:90
1229
+ msgid "No image selected"
1230
+ msgstr "Не е избрана картинка"
1231
+
1232
+ #: core/fields/image.php:90
1233
+ msgid "Add Image"
1234
+ msgstr "Добави картинка"
1235
+
1236
+ #: core/fields/image.php:119 core/fields/relationship.php:573
1237
+ msgid "Specify the returned value on front end"
1238
+ msgstr "Избери стойността, която полето ще върне"
1239
+
1240
+ #: core/fields/image.php:129
1241
+ msgid "Image Object"
1242
+ msgstr "Картинка под формата на обект"
1243
+
1244
+ #: core/fields/image.php:130
1245
+ msgid "Image URL"
1246
+ msgstr "URL на картинката"
1247
+
1248
+ #: core/fields/image.php:131
1249
+ msgid "Image ID"
1250
+ msgstr "ID на картинката"
1251
+
1252
+ #: core/fields/image.php:139
1253
+ msgid "Preview Size"
1254
+ msgstr "Размер на демонстративната миниатюра"
1255
+
1256
+ #: core/fields/image.php:140
1257
+ msgid "Shown when entering data"
1258
+ msgstr "Показва се при въвеждане на данни"
1259
+
1260
+ #: core/fields/image.php:159
1261
+ msgid "Limit the media library choice"
1262
+ msgstr "Ограничи избора от библиотеката с файлове"
1263
+
1264
+ #: core/fields/message.php:19 core/fields/message.php:70
1265
+ #: core/fields/true_false.php:79
1266
+ msgid "Message"
1267
+ msgstr "Съобщение"
1268
+
1269
+ #: core/fields/message.php:71
1270
+ msgid "Text &amp; HTML entered here will appear inline with the fields"
1271
+ msgstr "Текст и HTML, който е въведен тук, ще се показва заедно с полетата"
1272
+
1273
+ #: core/fields/message.php:72
1274
+ msgid "Please note that all text will first be passed through the wp function "
1275
+ msgstr ""
1276
+ "Забележете, че всичкия текст ще бъде първоначално прекаран през WP функцията"
1277
+
1278
+ #: core/fields/number.php:19
1279
+ msgid "Number"
1280
+ msgstr "Число"
1281
+
1282
+ #: core/fields/number.php:178
1283
+ msgid "Minimum Value"
1284
+ msgstr "Минимална стойност"
1285
+
1286
+ #: core/fields/number.php:194
1287
+ msgid "Maximum Value"
1288
+ msgstr "Максимална стойност"
1289
+
1290
+ #: core/fields/number.php:210
1291
+ msgid "Step Size"
1292
+ msgstr "Стъпка"
1293
+
1294
+ #: core/fields/page_link.php:18
1295
+ msgid "Page Link"
1296
+ msgstr "URL към страница"
1297
+
1298
+ #: core/fields/page_link.php:19 core/fields/post_object.php:19
1299
+ #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1300
+ #: core/fields/user.php:19
1301
+ msgid "Relational"
1302
+ msgstr "Релационен"
1303
+
1304
+ #: core/fields/page_link.php:103 core/fields/post_object.php:268
1305
+ #: core/fields/relationship.php:592 core/fields/relationship.php:671
1306
+ #: core/views/meta_box_location.php:75
1307
+ msgid "Post Type"
1308
+ msgstr "Тип публикации"
1309
+
1310
+ #: core/fields/page_link.php:127 core/fields/post_object.php:317
1311
+ #: core/fields/select.php:214 core/fields/taxonomy.php:333
1312
+ #: core/fields/user.php:275
1313
+ msgid "Allow Null?"
1314
+ msgstr "Позволи да няма стойност?"
1315
+
1316
+ #: core/fields/page_link.php:148 core/fields/post_object.php:338
1317
+ #: core/fields/select.php:233
1318
+ msgid "Select multiple values?"
1319
+ msgstr "Избор на множество стойности?"
1320
+
1321
+ #: core/fields/password.php:19
1322
+ msgid "Password"
1323
+ msgstr "Парола"
1324
+
1325
+ #: core/fields/post_object.php:18
1326
+ msgid "Post Object"
1327
+ msgstr "Публикация под формата на обект"
1328
+
1329
+ #: core/fields/post_object.php:292 core/fields/relationship.php:616
1330
+ msgid "Filter from Taxonomy"
1331
+ msgstr "Филтрирай от таксономия"
1332
+
1333
+ #: core/fields/radio.php:18
1334
+ msgid "Radio Button"
1335
+ msgstr "Бутон за избор"
1336
+
1337
+ #: core/fields/radio.php:105 core/views/meta_box_location.php:91
1338
+ msgid "Other"
1339
+ msgstr "Друг"
1340
+
1341
+ #: core/fields/radio.php:148
1342
+ msgid "Enter your choices one per line"
1343
+ msgstr "Въведете възможните избори, по един на ред"
1344
+
1345
+ #: core/fields/radio.php:150
1346
+ msgid "Red"
1347
+ msgstr "Червено"
1348
+
1349
+ #: core/fields/radio.php:151
1350
+ msgid "Blue"
1351
+ msgstr "Синьо"
1352
+
1353
+ #: core/fields/radio.php:175
1354
+ msgid "Add 'other' choice to allow for custom values"
1355
+ msgstr ""
1356
+ "Добавяне на 'друго' опция, която да позволи създаване на потребителски "
1357
+ "стойности"
1358
+
1359
+ #: core/fields/radio.php:187
1360
+ msgid "Save 'other' values to the field's choices"
1361
+ msgstr ""
1362
+ "Запазване на потребителските стойности към възможните стойности на полето"
1363
+
1364
+ #: core/fields/relationship.php:18
1365
+ msgid "Relationship"
1366
+ msgstr "Отношение"
1367
+
1368
+ #: core/fields/relationship.php:29
1369
+ msgid "Maximum values reached ( {max} values )"
1370
+ msgstr "Максималния възможен брой стойности бе достигнат ( {max} стойности )"
1371
+
1372
+ #: core/fields/relationship.php:428
1373
+ msgid "Search..."
1374
+ msgstr "Търсене..."
1375
+
1376
+ #: core/fields/relationship.php:439
1377
+ msgid "Filter by post type"
1378
+ msgstr "Филтрирай по тип на публикацията"
1379
+
1380
+ #: core/fields/relationship.php:572
1381
+ msgid "Return Format"
1382
+ msgstr "Формат на върнатите данни"
1383
+
1384
+ #: core/fields/relationship.php:583
1385
+ msgid "Post Objects"
1386
+ msgstr "Публикации под формата на обекти"
1387
+
1388
+ #: core/fields/relationship.php:584
1389
+ msgid "Post IDs"
1390
+ msgstr "ID-та на публикации"
1391
+
1392
+ #: core/fields/relationship.php:650
1393
+ msgid "Search"
1394
+ msgstr "Търсене"
1395
+
1396
+ #: core/fields/relationship.php:651
1397
+ msgid "Post Type Select"
1398
+ msgstr "Избор на тип публикация"
1399
+
1400
+ #: core/fields/relationship.php:659
1401
+ msgid "Elements"
1402
+ msgstr "Елементи"
1403
+
1404
+ #: core/fields/relationship.php:660
1405
+ msgid "Selected elements will be displayed in each result"
1406
+ msgstr "Избраните елементи ще бъдат показани във всеки резултат"
1407
+
1408
+ #: core/fields/relationship.php:669 core/views/meta_box_options.php:106
1409
+ msgid "Featured Image"
1410
+ msgstr "Главна картинка"
1411
+
1412
+ #: core/fields/relationship.php:670
1413
+ msgid "Post Title"
1414
+ msgstr "Заглавие"
1415
+
1416
+ #: core/fields/relationship.php:682
1417
+ msgid "Maximum posts"
1418
+ msgstr "Максимален брой публикации"
1419
+
1420
+ #: core/fields/select.php:18 core/fields/select.php:109
1421
+ #: core/fields/taxonomy.php:324 core/fields/user.php:266
1422
+ msgid "Select"
1423
+ msgstr "Избери"
1424
+
1425
+ #: core/fields/tab.php:19
1426
+ msgid "Tab"
1427
+ msgstr "Таб"
1428
+
1429
+ #: core/fields/tab.php:68
1430
+ msgid ""
1431
+ "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1432
+ "fields together under separate tab headings."
1433
+ msgstr ""
1434
+ "Използвайте \"Таб полета\" за да организирате по-добре екрана си като "
1435
+ "групирате полетата под съответните табове."
1436
+
1437
+ #: core/fields/tab.php:69
1438
+ msgid ""
1439
+ "All the fields following this \"tab field\" (or until another \"tab field\" "
1440
+ "is defined) will be grouped together."
1441
+ msgstr ""
1442
+ "Всички полета след това \"таб поле\" (или до следващото \"таб поле\") ще "
1443
+ "бъдат групирани в един таб."
1444
+
1445
+ #: core/fields/tab.php:70
1446
+ msgid "Use multiple tabs to divide your fields into sections."
1447
+ msgstr "Използвайте множество табове за да разделяте полетата на секции."
1448
+
1449
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278
1450
+ msgid "Taxonomy"
1451
+ msgstr "Таксономия"
1452
+
1453
+ #: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231
1454
+ msgid "None"
1455
+ msgstr "Няма стойност"
1456
+
1457
+ #: core/fields/taxonomy.php:308 core/fields/user.php:251
1458
+ #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159
1459
+ msgid "Field Type"
1460
+ msgstr "Тип на полето"
1461
+
1462
+ #: core/fields/taxonomy.php:318 core/fields/user.php:260
1463
+ msgid "Multiple Values"
1464
+ msgstr "Множество стойности"
1465
+
1466
+ #: core/fields/taxonomy.php:320 core/fields/user.php:262
1467
+ msgid "Multi Select"
1468
+ msgstr "Поле за множествен избор"
1469
+
1470
+ #: core/fields/taxonomy.php:322 core/fields/user.php:264
1471
+ msgid "Single Value"
1472
+ msgstr "Единична стойност"
1473
+
1474
+ #: core/fields/taxonomy.php:323
1475
+ msgid "Radio Buttons"
1476
+ msgstr "Бутони за избор"
1477
+
1478
+ #: core/fields/taxonomy.php:352
1479
+ msgid "Load & Save Terms to Post"
1480
+ msgstr "Зареди и запази термини към публикацията"
1481
+
1482
+ #: core/fields/taxonomy.php:360
1483
+ msgid ""
1484
+ "Load value based on the post's terms and update the post's terms on save"
1485
+ msgstr ""
1486
+ "Зареждане на стойност, базирана на термините на публикацията и обновяване на "
1487
+ "термините на публикацията при запазване"
1488
+
1489
+ #: core/fields/taxonomy.php:377
1490
+ msgid "Term Object"
1491
+ msgstr "Термин под формата на обект"
1492
+
1493
+ #: core/fields/taxonomy.php:378
1494
+ msgid "Term ID"
1495
+ msgstr "ID на термин"
1496
+
1497
+ #: core/fields/text.php:19
1498
+ msgid "Text"
1499
+ msgstr "Текст"
1500
+
1501
+ #: core/fields/text.php:176 core/fields/textarea.php:141
1502
+ msgid "Formatting"
1503
+ msgstr "Форматиране"
1504
+
1505
+ #: core/fields/text.php:177 core/fields/textarea.php:142
1506
+ msgid "Affects value on front end"
1507
+ msgstr "Рефлектира върху върнатата стойност"
1508
+
1509
+ #: core/fields/text.php:186 core/fields/textarea.php:151
1510
+ msgid "No formatting"
1511
+ msgstr "Без форматиране"
1512
+
1513
+ #: core/fields/text.php:187 core/fields/textarea.php:153
1514
+ msgid "Convert HTML into tags"
1515
+ msgstr "Конвертирай HTML в тагове"
1516
+
1517
+ #: core/fields/text.php:195 core/fields/textarea.php:126
1518
+ msgid "Character Limit"
1519
+ msgstr "Лимит на броя символи"
1520
+
1521
+ #: core/fields/text.php:196 core/fields/textarea.php:127
1522
+ msgid "Leave blank for no limit"
1523
+ msgstr "Оставете празно за да няма лимит"
1524
+
1525
+ #: core/fields/textarea.php:19
1526
+ msgid "Text Area"
1527
+ msgstr "Текстово поле"
1528
+
1529
+ #: core/fields/textarea.php:152
1530
+ msgid "Convert new lines into &lt;br /&gt; tags"
1531
+ msgstr "Конвертирай новите редове в &lt;br /&gt; тагове"
1532
+
1533
+ #: core/fields/true_false.php:19
1534
+ msgid "True / False"
1535
+ msgstr "Истина / лъжа"
1536
+
1537
+ #: core/fields/true_false.php:80
1538
+ msgid "eg. Show extra content"
1539
+ msgstr "например Покажи допълнително съдържание"
1540
+
1541
+ #: core/fields/user.php:18 core/views/meta_box_location.php:94
1542
+ msgid "User"
1543
+ msgstr "Потребител"
1544
+
1545
+ #: core/fields/user.php:224
1546
+ msgid "Filter by role"
1547
+ msgstr "Филтрирай по роля"
1548
+
1549
+ #: core/fields/wysiwyg.php:35
1550
+ msgid "Wysiwyg Editor"
1551
+ msgstr "WYSIWYG редактор"
1552
+
1553
+ #: core/fields/wysiwyg.php:213
1554
+ msgid "Toolbar"
1555
+ msgstr "Лента с инструменти"
1556
+
1557
+ #: core/fields/wysiwyg.php:245
1558
+ msgid "Show Media Upload Buttons?"
1559
+ msgstr "Показване на бутоните за качване на медия?"
1560
+
1561
+ #: core/views/meta_box_fields.php:24
1562
+ msgid "New Field"
1563
+ msgstr "Ново поле"
1564
+
1565
+ #: core/views/meta_box_fields.php:58
1566
+ msgid "Field type does not exist"
1567
+ msgstr "Този тип поле не съществува"
1568
+
1569
+ #: core/views/meta_box_fields.php:74
1570
+ msgid "Field Order"
1571
+ msgstr "Ред на полето"
1572
+
1573
+ #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127
1574
+ msgid "Field Label"
1575
+ msgstr "Етикет на полето"
1576
+
1577
+ #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143
1578
+ msgid "Field Name"
1579
+ msgstr "Име на полето"
1580
+
1581
+ #: core/views/meta_box_fields.php:78
1582
+ msgid "Field Key"
1583
+ msgstr "Ключ на полето"
1584
+
1585
+ #: core/views/meta_box_fields.php:90
1586
+ msgid ""
1587
+ "No fields. Click the <strong>+ Add Field</strong> button to create your "
1588
+ "first field."
1589
+ msgstr ""
1590
+ "Няма създадени полета. Натиснете на <strong>+ Добави поле</strong> бутона за "
1591
+ "да създадете първото си поле."
1592
+
1593
+ #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
1594
+ msgid "Edit this Field"
1595
+ msgstr "Редактирай това поле"
1596
+
1597
+ #: core/views/meta_box_fields.php:109
1598
+ msgid "Read documentation for this field"
1599
+ msgstr "Прочети документацията на това поле"
1600
+
1601
+ #: core/views/meta_box_fields.php:109
1602
+ msgid "Docs"
1603
+ msgstr "Документация"
1604
+
1605
+ #: core/views/meta_box_fields.php:110
1606
+ msgid "Duplicate this Field"
1607
+ msgstr "Направи копие на това поле"
1608
+
1609
+ #: core/views/meta_box_fields.php:110
1610
+ msgid "Duplicate"
1611
+ msgstr "Направи копие"
1612
+
1613
+ #: core/views/meta_box_fields.php:111
1614
+ msgid "Delete this Field"
1615
+ msgstr "Изтрий това поле"
1616
+
1617
+ #: core/views/meta_box_fields.php:111
1618
+ msgid "Delete"
1619
+ msgstr "Изтрий"
1620
+
1621
+ #: core/views/meta_box_fields.php:128
1622
+ msgid "This is the name which will appear on the EDIT page"
1623
+ msgstr "Това име ще бъде показано на страницата за редактиране"
1624
+
1625
+ #: core/views/meta_box_fields.php:144
1626
+ msgid "Single word, no spaces. Underscores and dashes allowed"
1627
+ msgstr "Една дума, без интервали. Долни черти и тирета са позволени"
1628
+
1629
+ #: core/views/meta_box_fields.php:173
1630
+ msgid "Field Instructions"
1631
+ msgstr "Инструкции на това поле"
1632
+
1633
+ #: core/views/meta_box_fields.php:174
1634
+ msgid "Instructions for authors. Shown when submitting data"
1635
+ msgstr "Инструкции за авторите. Показват се когато се изпращат данни."
1636
+
1637
+ #: core/views/meta_box_fields.php:186
1638
+ msgid "Required?"
1639
+ msgstr "Задължително?"
1640
+
1641
+ #: core/views/meta_box_fields.php:209
1642
+ msgid "Conditional Logic"
1643
+ msgstr "Условна логика"
1644
+
1645
+ #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
1646
+ msgid "is equal to"
1647
+ msgstr "е равно на"
1648
+
1649
+ #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
1650
+ msgid "is not equal to"
1651
+ msgstr "не е равно на"
1652
+
1653
+ #: core/views/meta_box_fields.php:279
1654
+ msgid "Show this field when"
1655
+ msgstr "Покажи това поле когато"
1656
+
1657
+ #: core/views/meta_box_fields.php:285
1658
+ msgid "all"
1659
+ msgstr "всички"
1660
+
1661
+ #: core/views/meta_box_fields.php:286
1662
+ msgid "any"
1663
+ msgstr "поне едно"
1664
+
1665
+ #: core/views/meta_box_fields.php:289
1666
+ msgid "these rules are met"
1667
+ msgstr "тези правила са спазени"
1668
+
1669
+ #: core/views/meta_box_fields.php:303
1670
+ msgid "Close Field"
1671
+ msgstr "Затвори полето"
1672
+
1673
+ #: core/views/meta_box_fields.php:316
1674
+ msgid "Drag and drop to reorder"
1675
+ msgstr "Използвайте drag & drop за да смените реда"
1676
+
1677
+ #: core/views/meta_box_fields.php:317
1678
+ msgid "+ Add Field"
1679
+ msgstr "+ Добави поле"
1680
+
1681
+ #: core/views/meta_box_location.php:48
1682
+ msgid "Rules"
1683
+ msgstr "Правила"
1684
+
1685
+ #: core/views/meta_box_location.php:49
1686
+ msgid ""
1687
+ "Create a set of rules to determine which edit screens will use these "
1688
+ "advanced custom fields"
1689
+ msgstr ""
1690
+ "Създайте набор от правила, които да определят кои екрани за редакция ще "
1691
+ "използват тези потребителски полета"
1692
+
1693
+ #: core/views/meta_box_location.php:60
1694
+ msgid "Show this field group if"
1695
+ msgstr "Показвай тази група полета ако"
1696
+
1697
+ #: core/views/meta_box_location.php:76
1698
+ msgid "Logged in User Type"
1699
+ msgstr "Тип на влезлия потребител"
1700
+
1701
+ #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
1702
+ msgid "Page"
1703
+ msgstr "Страница"
1704
+
1705
+ #: core/views/meta_box_location.php:80
1706
+ msgid "Page Type"
1707
+ msgstr "Тип страница"
1708
+
1709
+ #: core/views/meta_box_location.php:81
1710
+ msgid "Page Parent"
1711
+ msgstr "Родителска страница"
1712
+
1713
+ #: core/views/meta_box_location.php:82
1714
+ msgid "Page Template"
1715
+ msgstr "Шаблон на страницата"
1716
+
1717
+ #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
1718
+ msgid "Post"
1719
+ msgstr "Публикация"
1720
+
1721
+ #: core/views/meta_box_location.php:86
1722
+ msgid "Post Category"
1723
+ msgstr "Категория на публикацията"
1724
+
1725
+ #: core/views/meta_box_location.php:87
1726
+ msgid "Post Format"
1727
+ msgstr "Формат на публикацията"
1728
+
1729
+ #: core/views/meta_box_location.php:88
1730
+ msgid "Post Status"
1731
+ msgstr "Статус на публикацията"
1732
+
1733
+ #: core/views/meta_box_location.php:89
1734
+ msgid "Post Taxonomy"
1735
+ msgstr "Таксономия на публикацията"
1736
+
1737
+ #: core/views/meta_box_location.php:92
1738
+ msgid "Attachment"
1739
+ msgstr "Прикачен файл"
1740
+
1741
+ #: core/views/meta_box_location.php:93
1742
+ msgid "Taxonomy Term"
1743
+ msgstr "Термин от дадена таксономия"
1744
+
1745
+ #: core/views/meta_box_location.php:146
1746
+ msgid "and"
1747
+ msgstr "и"
1748
+
1749
+ #: core/views/meta_box_location.php:161
1750
+ msgid "Add rule group"
1751
+ msgstr "Добави група от правила"
1752
+
1753
+ #: core/views/meta_box_options.php:25
1754
+ msgid "Order No."
1755
+ msgstr "Пореден номер"
1756
+
1757
+ #: core/views/meta_box_options.php:26
1758
+ msgid "Field groups are created in order <br />from lowest to highest"
1759
+ msgstr "Групите полета се създават в <br />увеличаващ се ред"
1760
+
1761
+ #: core/views/meta_box_options.php:42
1762
+ msgid "Position"
1763
+ msgstr "Позиция"
1764
+
1765
+ #: core/views/meta_box_options.php:52
1766
+ msgid "High (after title)"
1767
+ msgstr "Висок приоритет (след заглавието)"
1768
+
1769
+ #: core/views/meta_box_options.php:53
1770
+ msgid "Normal (after content)"
1771
+ msgstr "Нормален приоритет (след съдържанието)"
1772
+
1773
+ #: core/views/meta_box_options.php:54
1774
+ msgid "Side"
1775
+ msgstr "Отстрани"
1776
+
1777
+ #: core/views/meta_box_options.php:64
1778
+ msgid "Style"
1779
+ msgstr "Стил"
1780
+
1781
+ #: core/views/meta_box_options.php:74
1782
+ msgid "Seamless (no metabox)"
1783
+ msgstr "Без meta кутия"
1784
+
1785
+ #: core/views/meta_box_options.php:75
1786
+ msgid "Standard (WP metabox)"
1787
+ msgstr "Стандартен (WP мета кутия)"
1788
+
1789
+ #: core/views/meta_box_options.php:84
1790
+ msgid "Hide on screen"
1791
+ msgstr "Скрий на екрана"
1792
+
1793
+ #: core/views/meta_box_options.php:85
1794
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1795
+ msgstr ""
1796
+ "<b>Избери</b> елементи, които да бъдат <b>скрити</b> от екрана за редактиране"
1797
+
1798
+ #: core/views/meta_box_options.php:86
1799
+ msgid ""
1800
+ "If multiple field groups appear on an edit screen, the first field group's "
1801
+ "options will be used. (the one with the lowest order number)"
1802
+ msgstr ""
1803
+ "Ако няколко групи полета се показват на екрана за редакция, опциите на "
1804
+ "първата група ще бъдат използвани (тази с най-ниско число на реда)."
1805
+
1806
+ #: core/views/meta_box_options.php:96
1807
+ msgid "Permalink"
1808
+ msgstr "Постоянен URL"
1809
+
1810
+ #: core/views/meta_box_options.php:97
1811
+ msgid "Content Editor"
1812
+ msgstr "Редактор на съдържание"
1813
+
1814
+ #: core/views/meta_box_options.php:98
1815
+ msgid "Excerpt"
1816
+ msgstr "Откъс"
1817
+
1818
+ #: core/views/meta_box_options.php:100
1819
+ msgid "Discussion"
1820
+ msgstr "Дискусия"
1821
+
1822
+ #: core/views/meta_box_options.php:101
1823
+ msgid "Comments"
1824
+ msgstr "Коментари"
1825
+
1826
+ #: core/views/meta_box_options.php:102
1827
+ msgid "Revisions"
1828
+ msgstr "Ревизии"
1829
+
1830
+ #: core/views/meta_box_options.php:103
1831
+ msgid "Slug"
1832
+ msgstr "SEO наименование"
1833
+
1834
+ #: core/views/meta_box_options.php:104
1835
+ msgid "Author"
1836
+ msgstr "Автор"
1837
+
1838
+ #: core/views/meta_box_options.php:105
1839
+ msgid "Format"
1840
+ msgstr "Формат"
1841
+
1842
+ #: core/views/meta_box_options.php:107
1843
+ msgid "Categories"
1844
+ msgstr "Категории"
1845
+
1846
+ #: core/views/meta_box_options.php:108
1847
+ msgid "Tags"
1848
+ msgstr "Тагове"
1849
+
1850
+ #: core/views/meta_box_options.php:109
1851
+ msgid "Send Trackbacks"
1852
+ msgstr "Изпращай обратно проследяване"
lang/acf-cs_CZ.mo CHANGED
Binary file
lang/acf-cs_CZ.po CHANGED
@@ -5,13 +5,13 @@ 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: 2014-01-05 07:41:49+00:00\n"
8
- "PO-Revision-Date: 2014-01-28 19:03+0100\n"
9
- "Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
10
  "Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
  "Language: cs_CZ\n"
16
  "X-Poedit-Basepath: c:\\Users\\Jakub\\Documents\\GitHub\\wpcz\\Advanced "
17
  "Custom Fields\\moduly\n"
@@ -732,7 +732,7 @@ msgstr "Potenciální problémy"
732
 
733
  #: core/controllers/field_groups.php:362
734
  msgid ""
735
- "Do to the sizable changes surounding Add-ons, field types and action/"
736
  "filters, your website may not operate correctly. It is important that you "
737
  "read the full"
738
  msgstr ""
@@ -1000,7 +1000,7 @@ msgstr "Uložit formát"
1000
 
1001
  #: core/fields/date_picker/date_picker.php:127
1002
  msgid ""
1003
- "This format will determin the value saved to the database and returned via "
1004
  "the API"
1005
  msgstr "Tento formát určí hodnotu uloženou do databáze a vrácenou přes API"
1006
 
@@ -1482,7 +1482,7 @@ msgid "Formatting"
1482
  msgstr "Formátování"
1483
 
1484
  #: core/fields/text.php:177 core/fields/textarea.php:142
1485
- msgid "Effects value on front end"
1486
  msgstr "Ovlivňuje hodnotu na front endu"
1487
 
1488
  #: core/fields/text.php:186 core/fields/textarea.php:151
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: 2014-01-05 07:41:49+00:00\n"
8
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
  "Language: cs_CZ\n"
16
  "X-Poedit-Basepath: c:\\Users\\Jakub\\Documents\\GitHub\\wpcz\\Advanced "
17
  "Custom Fields\\moduly\n"
732
 
733
  #: core/controllers/field_groups.php:362
734
  msgid ""
735
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
736
  "filters, your website may not operate correctly. It is important that you "
737
  "read the full"
738
  msgstr ""
1000
 
1001
  #: core/fields/date_picker/date_picker.php:127
1002
  msgid ""
1003
+ "This format will determine the value saved to the database and returned via "
1004
  "the API"
1005
  msgstr "Tento formát určí hodnotu uloženou do databáze a vrácenou přes API"
1006
 
1482
  msgstr "Formátování"
1483
 
1484
  #: core/fields/text.php:177 core/fields/textarea.php:142
1485
+ msgid "Affects value on front end"
1486
  msgstr "Ovlivňuje hodnotu na front endu"
1487
 
1488
  #: core/fields/text.php:186 core/fields/textarea.php:151
lang/acf-cy_GB.mo ADDED
Binary file
lang/acf-cy_GB.po ADDED
@@ -0,0 +1,1706 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Advanced Custom Fields in Cymraeg
2
+ # This file is distributed under the same license as the Advanced Custom Fields package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
6
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
7
+ "Language-Team: \n"
8
+ "Language: cy_GB\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
13
+ "X-Generator: Poedit 1.8.1\n"
14
+ "Project-Id-Version: Advanced Custom Fields\n"
15
+ "POT-Creation-Date: \n"
16
+
17
+ #: core/views/meta_box_location.php:89
18
+ msgid "Post Taxonomy"
19
+ msgstr "Tacsonomeg E-bost"
20
+
21
+ #: core/views/meta_box_location.php:92
22
+ msgid "Attachment"
23
+ msgstr "Atodiad"
24
+
25
+ #: core/views/meta_box_location.php:93
26
+ msgid "Taxonomy Term"
27
+ msgstr "Term Tacsonomeg"
28
+
29
+ #: core/views/meta_box_location.php:146
30
+ msgid "and"
31
+ msgstr "a"
32
+
33
+ #: core/views/meta_box_location.php:161
34
+ msgid "Add rule group"
35
+ msgstr "Ychwanegu rheol i'r grŵp"
36
+
37
+ #: core/views/meta_box_options.php:25
38
+ msgid "Order No."
39
+ msgstr "Rhif Archeb"
40
+
41
+ #: core/views/meta_box_options.php:26
42
+ msgid "Field groups are created in order <br />from lowest to highest"
43
+ msgstr "Mae grwpiau maes yn cael eu creu mewn trefn <br />o'r isaf i'r uchaf"
44
+
45
+ #: core/views/meta_box_options.php:42
46
+ msgid "Position"
47
+ msgstr "Safle"
48
+
49
+ #: core/views/meta_box_options.php:52
50
+ msgid "High (after title)"
51
+ msgstr "Uchel (ar ôl y teitl)"
52
+
53
+ #: core/views/meta_box_options.php:53
54
+ msgid "Normal (after content)"
55
+ msgstr "Arferol (ar ôl cynnwys)"
56
+
57
+ #: core/views/meta_box_options.php:54
58
+ msgid "Side"
59
+ msgstr "Ochr"
60
+
61
+ #: core/views/meta_box_options.php:64
62
+ msgid "Style"
63
+ msgstr "Arddull"
64
+
65
+ #: core/views/meta_box_options.php:74
66
+ msgid "Seamless (no metabox)"
67
+ msgstr "Yn ddi-dor (dim metaflwch)"
68
+
69
+ #: core/views/meta_box_options.php:75
70
+ msgid "Standard (WP metabox)"
71
+ msgstr "Safonol (metaflwch WP)"
72
+
73
+ #: core/views/meta_box_options.php:84
74
+ msgid "Hide on screen"
75
+ msgstr "Cuddio ar y sgrin"
76
+
77
+ #: core/views/meta_box_options.php:85
78
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
79
+ msgstr "<b>Dewiswch</b> eitemau i'w <b>cuddio</b> o'r sgrin olygu"
80
+
81
+ #: core/views/meta_box_options.php:86
82
+ msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
83
+ msgstr "Os oes mwy nag un grŵp maes yn ymddangos ar sgrin olygu, bydd opsiynau'r grwpiau maes cyntaf yn cael eu defnyddio. (yr un sydd â'r rhif isaf yn y drefn)"
84
+
85
+ #: core/views/meta_box_options.php:96
86
+ msgid "Permalink"
87
+ msgstr "Dolen Barhaol"
88
+
89
+ #: core/views/meta_box_options.php:97
90
+ msgid "Content Editor"
91
+ msgstr "Golygydd Cynnwys"
92
+
93
+ #: core/views/meta_box_options.php:98
94
+ msgid "Excerpt"
95
+ msgstr "Cyfran"
96
+
97
+ #: core/views/meta_box_options.php:100
98
+ msgid "Discussion"
99
+ msgstr "Trafodaeth"
100
+
101
+ #: core/views/meta_box_options.php:101
102
+ msgid "Comments"
103
+ msgstr "Sylwadau"
104
+
105
+ #: core/views/meta_box_options.php:102
106
+ msgid "Revisions"
107
+ msgstr "Adolygiadau"
108
+
109
+ #: core/views/meta_box_options.php:103
110
+ msgid "Slug"
111
+ msgstr "Bonyn"
112
+
113
+ #: core/views/meta_box_options.php:104
114
+ msgid "Author"
115
+ msgstr "Awdur"
116
+
117
+ #: core/views/meta_box_options.php:105
118
+ msgid "Format"
119
+ msgstr "Fformat"
120
+
121
+ #: core/views/meta_box_options.php:107
122
+ msgid "Categories"
123
+ msgstr "Categorïau"
124
+
125
+ #: core/views/meta_box_options.php:108
126
+ msgid "Tags"
127
+ msgstr "Tagiau"
128
+
129
+ #: core/views/meta_box_options.php:109
130
+ msgid "Send Trackbacks"
131
+ msgstr "Anfon Hysbysiadau Cydnabod"
132
+
133
+ #: core/fields/email.php:19
134
+ msgid "Email"
135
+ msgstr "E-bost"
136
+
137
+ #: core/fields/email.php:107 core/fields/number.php:117
138
+ #: core/fields/text.php:117 core/fields/textarea.php:97
139
+ #: core/fields/wysiwyg.php:199
140
+ msgid "Appears when creating a new post"
141
+ msgstr "Mae'n ymddangos wrth greu cofnod newydd"
142
+
143
+ #: core/fields/email.php:123 core/fields/number.php:133
144
+ #: core/fields/password.php:105 core/fields/text.php:131
145
+ #: core/fields/textarea.php:111
146
+ msgid "Placeholder Text"
147
+ msgstr "Testun Dalfan"
148
+
149
+ #: core/fields/email.php:124 core/fields/number.php:134
150
+ #: core/fields/password.php:106 core/fields/text.php:132
151
+ #: core/fields/textarea.php:112
152
+ msgid "Appears within the input"
153
+ msgstr "Mae'n ymddangos yn y mewnbwn"
154
+
155
+ #: core/fields/email.php:138 core/fields/number.php:148
156
+ #: core/fields/password.php:120 core/fields/text.php:146
157
+ msgid "Prepend"
158
+ msgstr "Rhagddodi"
159
+
160
+ #: core/fields/email.php:139 core/fields/number.php:149
161
+ #: core/fields/password.php:121 core/fields/text.php:147
162
+ msgid "Appears before the input"
163
+ msgstr "Mae'n ymddangos cyn y mewnbwn"
164
+
165
+ #: core/fields/email.php:153 core/fields/number.php:163
166
+ #: core/fields/password.php:135 core/fields/text.php:161
167
+ msgid "Append"
168
+ msgstr "Atodi"
169
+
170
+ #: core/fields/email.php:154 core/fields/number.php:164
171
+ #: core/fields/password.php:136 core/fields/text.php:162
172
+ msgid "Appears after the input"
173
+ msgstr "Mae'n ymddangos ar ôl y mewnbwn"
174
+
175
+ #: core/fields/file.php:19
176
+ msgid "File"
177
+ msgstr "Ffeil"
178
+
179
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36
180
+ msgid "Content"
181
+ msgstr "Cynnwys"
182
+
183
+ #: core/fields/file.php:26
184
+ msgid "Select File"
185
+ msgstr "Dewis Ffeil"
186
+
187
+ #: core/fields/file.php:27
188
+ msgid "Edit File"
189
+ msgstr "Golygu Ffeil"
190
+
191
+ #: core/fields/file.php:28
192
+ msgid "Update File"
193
+ msgstr "Diweddaru Ffeil"
194
+
195
+ #: core/fields/file.php:29 core/fields/image.php:30
196
+ msgid "uploaded to this post"
197
+ msgstr "llwythwyd i fyny i'r cofnod yma"
198
+
199
+ #: core/fields/file.php:123
200
+ msgid "No File Selected"
201
+ msgstr "Dim Ffeil wedi'i Dewis"
202
+
203
+ #: core/fields/file.php:123
204
+ msgid "Add File"
205
+ msgstr "Ychwanegu Ffeil"
206
+
207
+ #: core/fields/file.php:153 core/fields/image.php:118
208
+ #: core/fields/taxonomy.php:367
209
+ msgid "Return Value"
210
+ msgstr "Gwerth Dychwelyd"
211
+
212
+ #: core/fields/file.php:164
213
+ msgid "File Object"
214
+ msgstr "Gwrthrych Ffeil"
215
+
216
+ #: core/fields/file.php:165
217
+ msgid "File URL"
218
+ msgstr "URL Ffeil"
219
+
220
+ #: core/fields/file.php:166
221
+ msgid "File ID"
222
+ msgstr "ID Ffeil"
223
+
224
+ #: core/fields/file.php:175 core/fields/image.php:158
225
+ msgid "Library"
226
+ msgstr "Llyfrgell"
227
+
228
+ #: core/fields/file.php:187 core/fields/image.php:171
229
+ msgid "Uploaded to post"
230
+ msgstr "Llwythwyd i fyny i'r cofnod"
231
+
232
+ #: core/fields/google-map.php:18
233
+ msgid "Google Map"
234
+ msgstr "Map Google"
235
+
236
+ #: core/fields/google-map.php:33
237
+ msgid "Locating"
238
+ msgstr "Lleoli"
239
+
240
+ #: core/fields/google-map.php:34
241
+ msgid "Sorry, this browser does not support geolocation"
242
+ msgstr "Nid yw'r porwr yma'n gallu cynnal geoleoli"
243
+
244
+ #: core/fields/google-map.php:120
245
+ msgid "Clear location"
246
+ msgstr "Clirio'r lleoliad"
247
+
248
+ #: core/fields/google-map.php:125
249
+ msgid "Find current location"
250
+ msgstr "Canfod y lleoliad presennol"
251
+
252
+ #: core/fields/google-map.php:126
253
+ msgid "Search for address..."
254
+ msgstr "Chwilio am gyfeiriad..."
255
+
256
+ #: core/fields/google-map.php:162
257
+ msgid "Center"
258
+ msgstr "Canoli"
259
+
260
+ #: core/fields/google-map.php:163
261
+ msgid "Center the initial map"
262
+ msgstr "Canoli'r map cychwynnol"
263
+
264
+ #: core/fields/google-map.php:199
265
+ msgid "Zoom"
266
+ msgstr "Nesáu/Pellhau"
267
+
268
+ #: core/fields/google-map.php:200
269
+ msgid "Set the initial zoom level"
270
+ msgstr "Pennu'r lefel chwyddiant cychwynnol"
271
+
272
+ #: core/fields/google-map.php:217
273
+ msgid "Height"
274
+ msgstr "Uchder"
275
+
276
+ #: core/fields/google-map.php:218
277
+ msgid "Customise the map height"
278
+ msgstr "Cyfaddasu uchder y map"
279
+
280
+ #: core/fields/image.php:19
281
+ msgid "Image"
282
+ msgstr "Delwedd"
283
+
284
+ #: core/fields/image.php:27
285
+ msgid "Select Image"
286
+ msgstr "Dewis Delwedd"
287
+
288
+ #: core/fields/image.php:28
289
+ msgid "Edit Image"
290
+ msgstr "Golygu Delwedd"
291
+
292
+ #: core/fields/image.php:29
293
+ msgid "Update Image"
294
+ msgstr "Diweddaru Delwedd"
295
+
296
+ #: core/fields/image.php:83
297
+ msgid "Remove"
298
+ msgstr "Tynnu"
299
+
300
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:108
301
+ msgid "Edit"
302
+ msgstr "Golygu"
303
+
304
+ #: core/fields/image.php:90
305
+ msgid "No image selected"
306
+ msgstr "Dim delwedd wedi'i dewis"
307
+
308
+ #: core/fields/image.php:90
309
+ msgid "Add Image"
310
+ msgstr "Ychwanegu Delwedd"
311
+
312
+ #: core/fields/image.php:119 core/fields/relationship.php:573
313
+ msgid "Specify the returned value on front end"
314
+ msgstr "Pennu'r gwerth dychwelyd ar y blaen"
315
+
316
+ #: core/fields/image.php:129
317
+ msgid "Image Object"
318
+ msgstr "Gwrthrych Delwedd"
319
+
320
+ #: core/fields/image.php:130
321
+ msgid "Image URL"
322
+ msgstr "URL Delwedd"
323
+
324
+ #: core/fields/image.php:131
325
+ msgid "Image ID"
326
+ msgstr "ID Delwedd"
327
+
328
+ #: core/fields/image.php:139
329
+ msgid "Preview Size"
330
+ msgstr "Maint y Rhagolwg"
331
+
332
+ #: core/fields/image.php:140
333
+ msgid "Shown when entering data"
334
+ msgstr "Yn ymddangos pan fydd data'n cael ei roi mewn"
335
+
336
+ #: core/fields/image.php:159
337
+ msgid "Limit the media library choice"
338
+ msgstr "Cyfyngu ar y dewis yn y llyfrgell cyfryngau"
339
+
340
+ #: core/fields/message.php:19 core/fields/message.php:70
341
+ #: core/fields/true_false.php:79
342
+ msgid "Message"
343
+ msgstr "Neges"
344
+
345
+ #: core/fields/message.php:71
346
+ msgid "Text &amp; HTML entered here will appear inline with the fields"
347
+ msgstr "Bydd testun a HTML sy'n cael ei roi yma'n ymddangos mewn llinell gyda'r meysydd"
348
+
349
+ #: core/fields/message.php:72
350
+ msgid "Please note that all text will first be passed through the wp function "
351
+ msgstr "Sylwer y bydd pob testun yn cael ei basio drwy'r nodwedd WP yn gyntaf"
352
+
353
+ #: core/fields/number.php:19
354
+ msgid "Number"
355
+ msgstr "Rhif"
356
+
357
+ #: core/fields/number.php:178
358
+ msgid "Minimum Value"
359
+ msgstr "Isafswm Gwerth"
360
+
361
+ #: core/fields/number.php:194
362
+ msgid "Maximum Value"
363
+ msgstr "Uchafswm Gwerth"
364
+
365
+ #: core/fields/number.php:210
366
+ msgid "Step Size"
367
+ msgstr "Maint y Step"
368
+
369
+ #: core/fields/page_link.php:18
370
+ msgid "Page Link"
371
+ msgstr "Dolen Tudalen"
372
+
373
+ #: core/fields/page_link.php:19 core/fields/post_object.php:19
374
+ #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
375
+ #: core/fields/user.php:19
376
+ msgid "Relational"
377
+ msgstr "Perthynol"
378
+
379
+ #: core/fields/page_link.php:103 core/fields/post_object.php:268
380
+ #: core/fields/relationship.php:592 core/fields/relationship.php:671
381
+ #: core/views/meta_box_location.php:75
382
+ msgid "Post Type"
383
+ msgstr "Math o Gofnod"
384
+
385
+ #: core/fields/page_link.php:127 core/fields/post_object.php:317
386
+ #: core/fields/select.php:214 core/fields/taxonomy.php:333
387
+ #: core/fields/user.php:275
388
+ msgid "Allow Null?"
389
+ msgstr "Caniatáu Nwl?"
390
+
391
+ #: core/fields/page_link.php:148 core/fields/post_object.php:338
392
+ #: core/fields/select.php:233
393
+ msgid "Select multiple values?"
394
+ msgstr "Dewis gwerthoedd niferus?"
395
+
396
+ #: core/fields/password.php:19
397
+ msgid "Password"
398
+ msgstr "Cyfrinair"
399
+
400
+ #: core/fields/post_object.php:18
401
+ msgid "Post Object"
402
+ msgstr "Gwrthrych Cofnod"
403
+
404
+ #: core/fields/post_object.php:292 core/fields/relationship.php:616
405
+ msgid "Filter from Taxonomy"
406
+ msgstr "Hidlo o'r Tacsonomeg"
407
+
408
+ #: core/fields/radio.php:18
409
+ msgid "Radio Button"
410
+ msgstr "Botwm Radio"
411
+
412
+ #: core/fields/radio.php:105 core/views/meta_box_location.php:91
413
+ msgid "Other"
414
+ msgstr "Arall"
415
+
416
+ #: core/fields/radio.php:148
417
+ msgid "Enter your choices one per line"
418
+ msgstr "Rhowch eich dewisiadau i mewn, un fesul llinell"
419
+
420
+ #: core/fields/radio.php:150
421
+ msgid "Red"
422
+ msgstr "Coch"
423
+
424
+ #: core/fields/radio.php:151
425
+ msgid "Blue"
426
+ msgstr "Glas"
427
+
428
+ #: core/fields/radio.php:175
429
+ msgid "Add 'other' choice to allow for custom values"
430
+ msgstr "Ychwanegwch ddewis 'arall' er mwyn caniatáu gwerthoedd cyfaddas"
431
+
432
+ #: core/fields/radio.php:187
433
+ msgid "Save 'other' values to the field's choices"
434
+ msgstr "Cadw gwerthoedd 'eraill' at y dewis o feysydd"
435
+
436
+ #: core/fields/relationship.php:18
437
+ msgid "Relationship"
438
+ msgstr "Perthynas"
439
+
440
+ #: core/fields/relationship.php:29
441
+ msgid "Maximum values reached ( {max} values )"
442
+ msgstr "Wedi cyrraedd uchafswm gwerthoedd ( {max} gwerthoedd )"
443
+
444
+ #: core/fields/relationship.php:428
445
+ msgid "Search..."
446
+ msgstr "Chwilio..."
447
+
448
+ #: core/fields/relationship.php:439
449
+ msgid "Filter by post type"
450
+ msgstr "Hidlo yn ôl y math o gofnod"
451
+
452
+ #: core/fields/relationship.php:572
453
+ msgid "Return Format"
454
+ msgstr "Fformat Dychwelyd"
455
+
456
+ #: core/fields/relationship.php:583
457
+ msgid "Post Objects"
458
+ msgstr "Gwrthrychau Cofnod"
459
+
460
+ #: core/fields/relationship.php:584
461
+ msgid "Post IDs"
462
+ msgstr "ID Cofnod"
463
+
464
+ #: core/fields/relationship.php:650
465
+ msgid "Search"
466
+ msgstr "Chwilio"
467
+
468
+ #: core/fields/relationship.php:651
469
+ msgid "Post Type Select"
470
+ msgstr "Dewis Math o Gofnod"
471
+
472
+ #: core/fields/relationship.php:659
473
+ msgid "Elements"
474
+ msgstr "Elfennau"
475
+
476
+ #: core/fields/relationship.php:660
477
+ msgid "Selected elements will be displayed in each result"
478
+ msgstr "Bydd yr elfennau a ddewiswyd yn ymddangos ym mhob canlyniad"
479
+
480
+ #: core/fields/relationship.php:669 core/views/meta_box_options.php:106
481
+ msgid "Featured Image"
482
+ msgstr "Delwedd Nodwedd"
483
+
484
+ #: core/fields/relationship.php:670
485
+ msgid "Post Title"
486
+ msgstr "Teitl y Cofnod"
487
+
488
+ #: core/fields/relationship.php:682
489
+ msgid "Maximum posts"
490
+ msgstr "Uchafswm o gofnodion"
491
+
492
+ #: core/fields/select.php:18 core/fields/select.php:109
493
+ #: core/fields/taxonomy.php:324 core/fields/user.php:266
494
+ msgid "Select"
495
+ msgstr "Dewis"
496
+
497
+ #: core/fields/tab.php:19
498
+ msgid "Tab"
499
+ msgstr "Tab"
500
+
501
+ #: core/fields/tab.php:68
502
+ msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings."
503
+ msgstr "Defnyddiwch y \"Meysydd Tab\" i drefnu eich sgrin golygu yn well drwy grwpio eich meysydd gyda'i gilydd o dan benawdau tab ar wahân."
504
+
505
+ #: core/fields/tab.php:69
506
+ msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together."
507
+ msgstr "Bydd pob maes ar ôl y \"maes tab\" yma (neu nes y bydd \"maes tab\" arall yn cael ei greu) yn cael eu grwpio gyda'i gilydd."
508
+
509
+ #: core/fields/tab.php:70
510
+ msgid "Use multiple tabs to divide your fields into sections."
511
+ msgstr "Defnyddiwch dabiau niferus i rannu eich meysydd yn adrannau."
512
+
513
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278
514
+ msgid "Taxonomy"
515
+ msgstr "Tacsonomeg"
516
+
517
+ #: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231
518
+ msgid "None"
519
+ msgstr "Dim"
520
+
521
+ #: core/fields/taxonomy.php:308 core/fields/user.php:251
522
+ #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159
523
+ msgid "Field Type"
524
+ msgstr "Math o Faes"
525
+
526
+ #: core/fields/taxonomy.php:318 core/fields/user.php:260
527
+ msgid "Multiple Values"
528
+ msgstr "Gwerthoedd Niferus"
529
+
530
+ #: core/fields/taxonomy.php:320 core/fields/user.php:262
531
+ msgid "Multi Select"
532
+ msgstr "Aml Ddewis"
533
+
534
+ #: core/fields/taxonomy.php:322 core/fields/user.php:264
535
+ msgid "Single Value"
536
+ msgstr "Gwerth Sengl"
537
+
538
+ #: core/fields/taxonomy.php:323
539
+ msgid "Radio Buttons"
540
+ msgstr "Botymau Radio"
541
+
542
+ #: core/fields/taxonomy.php:352
543
+ msgid "Load & Save Terms to Post"
544
+ msgstr "Llwytho a Chadw Telerau i'r Cofnod"
545
+
546
+ #: core/fields/taxonomy.php:360
547
+ msgid "Load value based on the post's terms and update the post's terms on save"
548
+ msgstr "Llwytho gwerth yn seiliedig ar delerau'r cofnod a diweddaru telerau'r cofnod wrth gadw"
549
+
550
+ #: core/fields/taxonomy.php:377
551
+ msgid "Term Object"
552
+ msgstr "Gwrthrych y Telerau"
553
+
554
+ #: core/fields/taxonomy.php:378
555
+ msgid "Term ID"
556
+ msgstr "ID y Telerau"
557
+
558
+ #: core/fields/text.php:19
559
+ msgid "Text"
560
+ msgstr "Testun"
561
+
562
+ #: core/fields/text.php:176 core/fields/textarea.php:141
563
+ msgid "Formatting"
564
+ msgstr "Fformadu"
565
+
566
+ #: core/fields/text.php:177 core/fields/textarea.php:142
567
+ msgid "Affects value on front end"
568
+ msgstr "Gwerth effeithiau ar y blaen"
569
+
570
+ #: core/fields/text.php:186 core/fields/textarea.php:151
571
+ msgid "No formatting"
572
+ msgstr "Dim fformadu"
573
+
574
+ #: core/fields/text.php:187 core/fields/textarea.php:153
575
+ msgid "Convert HTML into tags"
576
+ msgstr "Trosi HTML yn dagiau"
577
+
578
+ #: core/fields/text.php:195 core/fields/textarea.php:126
579
+ msgid "Character Limit"
580
+ msgstr "Uchafswm Nodau"
581
+
582
+ #: core/fields/text.php:196 core/fields/textarea.php:127
583
+ msgid "Leave blank for no limit"
584
+ msgstr "Gadewch yn wag i beidio cael uchafswm"
585
+
586
+ #: core/fields/textarea.php:19
587
+ msgid "Text Area"
588
+ msgstr "Ardal Testun"
589
+
590
+ #: core/fields/textarea.php:152
591
+ msgid "Convert new lines into &lt;br /&gt; tags"
592
+ msgstr "Trosi llinellau newydd yn dagiau &lt;br /&gt;"
593
+
594
+ #: core/fields/true_false.php:19
595
+ msgid "True / False"
596
+ msgstr "Gwir / Gau"
597
+
598
+ #: core/fields/true_false.php:80
599
+ msgid "eg. Show extra content"
600
+ msgstr "ee. Dangos cynnwys ychwanegol"
601
+
602
+ #: core/fields/user.php:18 core/views/meta_box_location.php:94
603
+ msgid "User"
604
+ msgstr "Defnyddiwr"
605
+
606
+ #: core/fields/user.php:224
607
+ msgid "Filter by role"
608
+ msgstr "Hidlo fesul rôl"
609
+
610
+ #: core/fields/wysiwyg.php:35
611
+ msgid "Wysiwyg Editor"
612
+ msgstr "Golygydd Wysiwyg"
613
+
614
+ #: core/fields/wysiwyg.php:213
615
+ msgid "Toolbar"
616
+ msgstr "Bar Offer"
617
+
618
+ #: core/fields/wysiwyg.php:245
619
+ msgid "Show Media Upload Buttons?"
620
+ msgstr "Dangos Botymau Llwytho Cyfryngau i Fyny?"
621
+
622
+ #: core/views/meta_box_fields.php:24
623
+ msgid "New Field"
624
+ msgstr "Maes Newydd"
625
+
626
+ #: core/views/meta_box_fields.php:58
627
+ msgid "Field type does not exist"
628
+ msgstr "Nid yw'r math o faes yn bodoli"
629
+
630
+ #: core/views/meta_box_fields.php:74
631
+ msgid "Field Order"
632
+ msgstr "Trefn Maes"
633
+
634
+ #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127
635
+ msgid "Field Label"
636
+ msgstr "Label Maes"
637
+
638
+ #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143
639
+ msgid "Field Name"
640
+ msgstr "Enw Maes"
641
+
642
+ #: core/views/meta_box_fields.php:78
643
+ msgid "Field Key"
644
+ msgstr "Allwedd Maes"
645
+
646
+ #: core/views/meta_box_fields.php:90
647
+ msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
648
+ msgstr "Dim meysydd. Cliciwch y botwm <strong>+ Ychwanegu Maes</strong> i greu eich maes cyntaf."
649
+
650
+ #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
651
+ msgid "Edit this Field"
652
+ msgstr "Golygu'r Maes yma"
653
+
654
+ #: core/views/meta_box_fields.php:109
655
+ msgid "Read documentation for this field"
656
+ msgstr "Darllen dogfennaeth am y maes yma"
657
+
658
+ #: core/views/meta_box_fields.php:109
659
+ msgid "Docs"
660
+ msgstr "Dogfennau"
661
+
662
+ #: core/views/meta_box_fields.php:110
663
+ msgid "Duplicate this Field"
664
+ msgstr "Dyblygu'r Maes yma"
665
+
666
+ #: core/views/meta_box_fields.php:110
667
+ msgid "Duplicate"
668
+ msgstr "Dyblygu"
669
+
670
+ #: core/views/meta_box_fields.php:111
671
+ msgid "Delete this Field"
672
+ msgstr "Dileu'r Maes yma"
673
+
674
+ #: core/views/meta_box_fields.php:111
675
+ msgid "Delete"
676
+ msgstr "Dileu"
677
+
678
+ #: core/views/meta_box_fields.php:128
679
+ msgid "This is the name which will appear on the EDIT page"
680
+ msgstr "Dyma'r enw fydd yn ymddangos ar y dudalen GOLYGU"
681
+
682
+ #: core/views/meta_box_fields.php:144
683
+ msgid "Single word, no spaces. Underscores and dashes allowed"
684
+ msgstr "Un gair, dim bylchau. Caniateir defnyddio tanlinellu a dash"
685
+
686
+ #: core/views/meta_box_fields.php:173
687
+ msgid "Field Instructions"
688
+ msgstr "Cyfarwyddiadau Maes"
689
+
690
+ #: core/views/meta_box_fields.php:174
691
+ msgid "Instructions for authors. Shown when submitting data"
692
+ msgstr "Cyfarwyddiadau ar gyfer awduron. Yn ymddangos pan fydd data'n cael ei gyflwyno"
693
+
694
+ #: core/views/meta_box_fields.php:186
695
+ msgid "Required?"
696
+ msgstr "Angenrheidiol?"
697
+
698
+ #: core/views/meta_box_fields.php:209
699
+ msgid "Conditional Logic"
700
+ msgstr "Rhesymeg Amodol"
701
+
702
+ #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
703
+ msgid "is equal to"
704
+ msgstr "yn hafal i"
705
+
706
+ #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
707
+ msgid "is not equal to"
708
+ msgstr "ddim yn hafal i"
709
+
710
+ #: core/views/meta_box_fields.php:279
711
+ msgid "Show this field when"
712
+ msgstr "Dangos y maes yma pan fydd"
713
+
714
+ #: core/views/meta_box_fields.php:285
715
+ msgid "all"
716
+ msgstr "pob un"
717
+
718
+ #: core/views/meta_box_fields.php:286
719
+ msgid "any"
720
+ msgstr "unrhyw un"
721
+
722
+ #: core/views/meta_box_fields.php:289
723
+ msgid "these rules are met"
724
+ msgstr "o'r rheolau yma'n cael eu diwallu"
725
+
726
+ #: core/views/meta_box_fields.php:303
727
+ msgid "Close Field"
728
+ msgstr "Cau'r Maes"
729
+
730
+ #: core/views/meta_box_fields.php:316
731
+ msgid "Drag and drop to reorder"
732
+ msgstr "Llusgwch a gollwng i aildrefnu"
733
+
734
+ #: core/views/meta_box_fields.php:317
735
+ msgid "+ Add Field"
736
+ msgstr "+ Ychwanegu Maes"
737
+
738
+ #: core/views/meta_box_location.php:48
739
+ msgid "Rules"
740
+ msgstr "Rheolau"
741
+
742
+ #: core/views/meta_box_location.php:49
743
+ msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
744
+ msgstr "Creu cyfres o reolau er mwyn penderfynu pa sgriniau golygu fydd yn defnyddio'r meysydd cyfaddas uwch yma"
745
+
746
+ #: core/views/meta_box_location.php:60
747
+ msgid "Show this field group if"
748
+ msgstr "Dangos y grŵp maes yma os"
749
+
750
+ #: core/views/meta_box_location.php:76
751
+ msgid "Logged in User Type"
752
+ msgstr "Math o Ddefnyddiwr sydd wedi Mewngofnodi"
753
+
754
+ #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
755
+ msgid "Page"
756
+ msgstr "Tudalen"
757
+
758
+ #: core/views/meta_box_location.php:80
759
+ msgid "Page Type"
760
+ msgstr "Math o Dudalen"
761
+
762
+ #: core/views/meta_box_location.php:81
763
+ msgid "Page Parent"
764
+ msgstr "Rhiant Dudalen"
765
+
766
+ #: core/views/meta_box_location.php:82
767
+ msgid "Page Template"
768
+ msgstr "Templed Tudalen"
769
+
770
+ #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
771
+ msgid "Post"
772
+ msgstr "Cofnod"
773
+
774
+ #: core/views/meta_box_location.php:86
775
+ msgid "Post Category"
776
+ msgstr "Categori Cofnod"
777
+
778
+ #: core/views/meta_box_location.php:87
779
+ msgid "Post Format"
780
+ msgstr "Fformat Cofnod"
781
+
782
+ #: core/views/meta_box_location.php:88
783
+ msgid "Post Status"
784
+ msgstr "Statws Cofnod"
785
+
786
+ #: core/controllers/field_groups.php:245
787
+ msgid "Thank you for updating to the latest version!"
788
+ msgstr "Diolch am ddiweddaru i'r fersiwn ddiweddaraf!"
789
+
790
+ #: core/controllers/field_groups.php:245
791
+ msgid "is more polished and enjoyable than ever before. We hope you like it."
792
+ msgstr "- gyda mwy o sglein ac yn fwy o hwyl nag erioed o'r blaen. Gobeithio y byddwch chi'n ei hoffi."
793
+
794
+ #: core/controllers/field_groups.php:252
795
+ msgid "What’s New"
796
+ msgstr "Beth sy'n Newydd"
797
+
798
+ #: core/controllers/field_groups.php:255
799
+ msgid "Download Add-ons"
800
+ msgstr "Llwytho Ychwanegion i Lawr"
801
+
802
+ #: core/controllers/field_groups.php:309
803
+ msgid "Activation codes have grown into plugins!"
804
+ msgstr "Mae codau gweithredu wedi tyfu'n ategolion!"
805
+
806
+ #: core/controllers/field_groups.php:310
807
+ msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
808
+ msgstr "Erbyn hyn, mae Ychwanegion yn cael eu gweithredu drwy lwytho ategolion unigol i lawr a'i gosod. Er mai nid ar storfa WordPress.org fydd yr ategolion yma'n lletya, bydd pob Ychwanegyn yn parhau i gael diweddariadau yn y ffordd arferol."
809
+
810
+ #: core/controllers/field_groups.php:316
811
+ msgid "All previous Add-ons have been successfully installed"
812
+ msgstr "Mae pob Ychwanegyn blaenorol wedi'u gosod yn llwyddiannus"
813
+
814
+ #: core/controllers/field_groups.php:320
815
+ msgid "This website uses premium Add-ons which need to be downloaded"
816
+ msgstr "Mae'r wefan yma'n defnyddio Ychwanegion premiwm sydd angen eu llwytho i lawr"
817
+
818
+ #: core/controllers/field_groups.php:320
819
+ msgid "Download your activated Add-ons"
820
+ msgstr "Llwytho'r Ychwanegion rydych chi wedi'u gweithredu i Lawr"
821
+
822
+ #: core/controllers/field_groups.php:325
823
+ msgid "This website does not use premium Add-ons and will not be affected by this change."
824
+ msgstr "Nid yw'r wefan yma'n defnyddio Ychwanegion premiwm ac ni fydd yn cael ei heffeithio gan y newid yma."
825
+
826
+ #: core/controllers/field_groups.php:335
827
+ msgid "Easier Development"
828
+ msgstr "Datblygu Haws"
829
+
830
+ #: core/controllers/field_groups.php:337
831
+ msgid "New Field Types"
832
+ msgstr "Mathau o Faes Newydd"
833
+
834
+ #: core/controllers/field_groups.php:339
835
+ msgid "Taxonomy Field"
836
+ msgstr "Maes Tacsonomeg"
837
+
838
+ #: core/controllers/field_groups.php:340
839
+ msgid "User Field"
840
+ msgstr "Maes Defnyddiwr"
841
+
842
+ #: core/controllers/field_groups.php:341
843
+ msgid "Email Field"
844
+ msgstr "Maes E-bost"
845
+
846
+ #: core/controllers/field_groups.php:342
847
+ msgid "Password Field"
848
+ msgstr "Maes Cyfrinair"
849
+
850
+ #: core/controllers/field_groups.php:344
851
+ msgid "Custom Field Types"
852
+ msgstr "Mathau o Faes Cyfaddas"
853
+
854
+ #: core/controllers/field_groups.php:345
855
+ msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
856
+ msgstr "Mae'n haws nag erioed i greu eich math o faes eich hunan! Yn anffodus, nid yw mathau o faes yn fersiwn 3 yn gydnaws â fersiwn 4."
857
+
858
+ #: core/controllers/field_groups.php:346
859
+ msgid "Migrating your field types is easy, please"
860
+ msgstr "Mae'n hawdd mudo mathau o faes,"
861
+
862
+ #: core/controllers/field_groups.php:346
863
+ msgid "follow this tutorial"
864
+ msgstr "dilynwch y tiwtorial yma"
865
+
866
+ #: core/controllers/field_groups.php:346
867
+ msgid "to learn more."
868
+ msgstr "i ddysgu rhagor."
869
+
870
+ #: core/controllers/field_groups.php:348
871
+ msgid "Actions &amp; Filters"
872
+ msgstr "Gweithredoedd a Hidlyddion"
873
+
874
+ #: core/controllers/field_groups.php:349
875
+ msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
876
+ msgstr "Mae pob Gweithred a Hidlydd wedi cael gweddnewidiad llwyr er mwyn ei gwneud hi hyd yn oed yn haws i gyfaddasu ACF!"
877
+
878
+ #: core/controllers/field_groups.php:349
879
+ msgid "read this guide"
880
+ msgstr "Darllenwch y canllawiau yma"
881
+
882
+ #: core/controllers/field_groups.php:349
883
+ msgid "to find the updated naming convention."
884
+ msgstr "i ganfod y confensiwn enwi diweddaraf."
885
+
886
+ #: core/controllers/field_groups.php:351
887
+ msgid "Preview draft is now working!"
888
+ msgstr "Mae rhagolwg drafft bellach yn gweithio!"
889
+
890
+ #: core/controllers/field_groups.php:352
891
+ msgid "This bug has been squashed along with many other little critters!"
892
+ msgstr "Mae'r chwilen yma, yn ogystal â sawl un arall, wedi cael ei difa!"
893
+
894
+ #: core/controllers/field_groups.php:352
895
+ msgid "See the full changelog"
896
+ msgstr "Gweld log llawn o'r newidiadau"
897
+
898
+ #: core/controllers/field_groups.php:356
899
+ msgid "Important"
900
+ msgstr "Pwysig"
901
+
902
+ #: core/controllers/field_groups.php:358
903
+ msgid "Database Changes"
904
+ msgstr "Newidiadau i Gronfeydd Data"
905
+
906
+ #: core/controllers/field_groups.php:359
907
+ msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
908
+ msgstr "Does <strong>dim un</strong> newid o gwbl wedi cael ei wneud i'r gronfa ddata rhwng fersiwn 3 a 4. Mae hyn yn golygu y gallwch fynd yn ôl i fersiwn 3 heb unrhyw drafferthion."
909
+
910
+ #: core/controllers/field_groups.php:361
911
+ msgid "Potential Issues"
912
+ msgstr "Trafferthion Posibl"
913
+
914
+ #: core/controllers/field_groups.php:362
915
+ msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
916
+ msgstr "Oherwydd newidiadau sy'n digwydd i faint Ychwanegion, mathau o feysydd a gweithredoedd/hidlyddion, mae'n bosibl na fydd eich gwefan yn gweithio'n gywir. Mae'n bwysig eich bod yn darllen y "
917
+
918
+ #: core/controllers/field_groups.php:362
919
+ msgid "Migrating from v3 to v4"
920
+ msgstr "Mudo o fersiwn 3 i fersiwn 4"
921
+
922
+ #: core/controllers/field_groups.php:362
923
+ msgid "guide to view the full list of changes."
924
+ msgstr "canllawiau llawn i weld y rhestr lawn o newidiadau."
925
+
926
+ #: core/controllers/field_groups.php:365
927
+ msgid "Really Important!"
928
+ msgstr "Pwysig Iawn!"
929
+
930
+ #: core/controllers/field_groups.php:365
931
+ msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
932
+ msgstr "Os gwnaethoch chi ddiweddaru'r ategyn ACF heb wybodaeth flaenorol am y newidiadau, dylech newid yn ôl i"
933
+
934
+ #: core/controllers/field_groups.php:365
935
+ msgid "version 3"
936
+ msgstr "fersiwn 3"
937
+
938
+ #: core/controllers/field_groups.php:365
939
+ msgid "of this plugin."
940
+ msgstr "o'r ategyn yma."
941
+
942
+ #: core/controllers/field_groups.php:370
943
+ msgid "Thank You"
944
+ msgstr "Diolch"
945
+
946
+ #: core/controllers/field_groups.php:371
947
+ msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
948
+ msgstr "Diolch <strong>ENFAWR</strong> i bawb sydd wedi helpu i brofi'r fersiwn 4 beta ac am yr holl gymorth rydw o wedi cael."
949
+
950
+ #: core/controllers/field_groups.php:372
951
+ msgid "Without you all, this release would not have been possible!"
952
+ msgstr "Hebddoch chi, fyddai rhyddhau'r fersiwn yma ddim wedi bod yn bosibl!"
953
+
954
+ #: core/controllers/field_groups.php:376
955
+ msgid "Changelog for"
956
+ msgstr "Log o newidiadau ar gyfer"
957
+
958
+ #: core/controllers/field_groups.php:393
959
+ msgid "Learn more"
960
+ msgstr "Dysgu mwy"
961
+
962
+ #: core/controllers/field_groups.php:399
963
+ msgid "Overview"
964
+ msgstr "Trosolwg"
965
+
966
+ #: core/controllers/field_groups.php:401
967
+ msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
968
+ msgstr "Yn flaenorol, roedd pob Ychwanegyn yn cael eu datgloi gyda chod gweithredu (drwy eu prynu o'r siop Ychwanegion ACF). Yn newydd i fersiwn 4, mae pob Ychwanegyn yn ategyn ar wahân sydd angen eu llwytho i lawr, eu gosod a'u diweddaru yn unigol."
969
+
970
+ #: core/controllers/field_groups.php:403
971
+ msgid "This page will assist you in downloading and installing each available Add-on."
972
+ msgstr "Bydd y dudalen yma yn eich cynorthwyo i lwytho pob Ychwanegyn sydd ar gael i lawr a'i gosod."
973
+
974
+ #: core/controllers/field_groups.php:405
975
+ msgid "Available Add-ons"
976
+ msgstr "Ychwanegion sydd Ar Gael"
977
+
978
+ #: core/controllers/field_groups.php:407
979
+ msgid "The following Add-ons have been detected as activated on this website."
980
+ msgstr "Mae'r Ychwanegion canlynol wedi cael eu canfod fel rhai sy'n weithredol ar y wefan yma."
981
+
982
+ #: core/controllers/field_groups.php:420
983
+ msgid "Name"
984
+ msgstr "Enw"
985
+
986
+ #: core/controllers/field_groups.php:421
987
+ msgid "Activation Code"
988
+ msgstr "Cod Gweithredu"
989
+
990
+ #: core/controllers/field_groups.php:453
991
+ msgid "Flexible Content"
992
+ msgstr "Cynnwys Hyblyg"
993
+
994
+ #: core/controllers/field_groups.php:463
995
+ msgid "Installation"
996
+ msgstr "Gosod"
997
+
998
+ #: core/controllers/field_groups.php:465
999
+ msgid "For each Add-on available, please perform the following:"
1000
+ msgstr "Ar gyfer pob Ychwanegyn sydd ar gael, dylech wneud y canlynol:"
1001
+
1002
+ #: core/controllers/field_groups.php:467
1003
+ msgid "Download the Add-on plugin (.zip file) to your desktop"
1004
+ msgstr "Llwytho'r ategyn Ychwanegyn i lawr (ffeil .zip) i'ch bwrdd gwaith"
1005
+
1006
+ #: core/controllers/field_groups.php:468
1007
+ msgid "Navigate to"
1008
+ msgstr "Mynd i"
1009
+
1010
+ #: core/controllers/field_groups.php:468
1011
+ msgid "Plugins > Add New > Upload"
1012
+ msgstr "Ategion > Ychwanegu Newydd > Llwytho i fyny"
1013
+
1014
+ #: core/controllers/field_groups.php:469
1015
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1016
+ msgstr "Defnyddiwch y llwythwr i chwilio, dewis a gosod eich Ychwanegyn (ffeil .zip)"
1017
+
1018
+ #: core/controllers/field_groups.php:470
1019
+ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1020
+ msgstr "Unwaith mae'r ategyn wedi cael ei lwytho i fyny a'i osod, cliciwch y ddolen 'Gweithredu'r Ategyn'"
1021
+
1022
+ #: core/controllers/field_groups.php:471
1023
+ msgid "The Add-on is now installed and activated!"
1024
+ msgstr "Mae'r Ychwanegyn wedi ei osod ac yn weithredol!"
1025
+
1026
+ #: core/controllers/field_groups.php:485
1027
+ msgid "Awesome. Let's get to work"
1028
+ msgstr "Gwych. Beth am ddechrau gweithio"
1029
+
1030
+ #: core/controllers/input.php:63
1031
+ msgid "Expand Details"
1032
+ msgstr "Ehangu Maynlion"
1033
+
1034
+ #: core/controllers/input.php:64
1035
+ msgid "Collapse Details"
1036
+ msgstr "Lleihau Manylion"
1037
+
1038
+ #: core/controllers/input.php:67
1039
+ msgid "Validation Failed. One or more fields below are required."
1040
+ msgstr "Methodd y Dilysiad. Mae angen llenwi un neu ragor o'r meysydd isod."
1041
+
1042
+ #: core/controllers/upgrade.php:86
1043
+ msgid "Upgrade"
1044
+ msgstr "Diweddaru"
1045
+
1046
+ #: core/controllers/upgrade.php:139
1047
+ msgid "What's new"
1048
+ msgstr "Beth sy'n newydd"
1049
+
1050
+ #: core/controllers/upgrade.php:150
1051
+ msgid "credits"
1052
+ msgstr "diolchiadau*"
1053
+
1054
+ #: core/controllers/upgrade.php:684
1055
+ msgid "Modifying field group options 'show on page'"
1056
+ msgstr "Addasu opsiynau grŵp maes 'dangos ar y dudalen'"
1057
+
1058
+ #: core/controllers/upgrade.php:738
1059
+ msgid "Modifying field option 'taxonomy'"
1060
+ msgstr "Addasu opsiwn maes 'tacsonomeg'"
1061
+
1062
+ #: core/controllers/upgrade.php:835
1063
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
1064
+ msgstr "Symud meysydd defnyddwyr cyfaddas o wp_options i wp_usermeta'"
1065
+
1066
+ #: core/fields/_base.php:124 core/views/meta_box_location.php:74
1067
+ msgid "Basic"
1068
+ msgstr "Sylfaenol"
1069
+
1070
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:319
1071
+ msgid "Checkbox"
1072
+ msgstr "Blwch Ticio"
1073
+
1074
+ #: core/fields/checkbox.php:20 core/fields/radio.php:19
1075
+ #: core/fields/select.php:19 core/fields/true_false.php:20
1076
+ msgid "Choice"
1077
+ msgstr "Dewis"
1078
+
1079
+ #: core/fields/checkbox.php:146 core/fields/radio.php:147
1080
+ #: core/fields/select.php:177
1081
+ msgid "Choices"
1082
+ msgstr "Dewisiadau"
1083
+
1084
+ #: core/fields/checkbox.php:147 core/fields/select.php:178
1085
+ msgid "Enter each choice on a new line."
1086
+ msgstr "Rhowch bob dewis ar linell newydd."
1087
+
1088
+ #: core/fields/checkbox.php:148 core/fields/select.php:179
1089
+ msgid "For more control, you may specify both a value and label like this:"
1090
+ msgstr "Er mwyn cael mwy o reolaeth, gallwch nodi gwerth a label fel hyn:"
1091
+
1092
+ #: core/fields/checkbox.php:149 core/fields/radio.php:153
1093
+ #: core/fields/select.php:180
1094
+ msgid "red : Red"
1095
+ msgstr "coch : Coch"
1096
+
1097
+ #: core/fields/checkbox.php:149 core/fields/radio.php:154
1098
+ #: core/fields/select.php:180
1099
+ msgid "blue : Blue"
1100
+ msgstr "glas : Glas"
1101
+
1102
+ #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
1103
+ #: core/fields/email.php:106 core/fields/number.php:116
1104
+ #: core/fields/radio.php:196 core/fields/select.php:197
1105
+ #: core/fields/text.php:116 core/fields/textarea.php:96
1106
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:198
1107
+ msgid "Default Value"
1108
+ msgstr "Gwerth Diofyn"
1109
+
1110
+ #: core/fields/checkbox.php:167 core/fields/select.php:198
1111
+ msgid "Enter each default value on a new line"
1112
+ msgstr "Rhowch bob gwerth diofyn ar linell newydd"
1113
+
1114
+ #: core/fields/checkbox.php:183 core/fields/message.php:20
1115
+ #: core/fields/radio.php:212 core/fields/tab.php:20
1116
+ msgid "Layout"
1117
+ msgstr "Cynllun"
1118
+
1119
+ #: core/fields/checkbox.php:194 core/fields/radio.php:223
1120
+ msgid "Vertical"
1121
+ msgstr "Fertigol"
1122
+
1123
+ #: core/fields/checkbox.php:195 core/fields/radio.php:224
1124
+ msgid "Horizontal"
1125
+ msgstr "Llorweddol"
1126
+
1127
+ #: core/fields/color_picker.php:19
1128
+ msgid "Color Picker"
1129
+ msgstr "Dewiswr Lliw"
1130
+
1131
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
1132
+ #: core/fields/google-map.php:19
1133
+ msgid "jQuery"
1134
+ msgstr "jQuery"
1135
+
1136
+ #: core/fields/date_picker/date_picker.php:19
1137
+ msgid "Date Picker"
1138
+ msgstr "Dewiswr Dyddiad"
1139
+
1140
+ #: core/fields/date_picker/date_picker.php:55
1141
+ msgid "Done"
1142
+ msgstr "Wedi Gorffen"
1143
+
1144
+ #: core/fields/date_picker/date_picker.php:56
1145
+ msgid "Today"
1146
+ msgstr "Heddiw"
1147
+
1148
+ #: core/fields/date_picker/date_picker.php:59
1149
+ msgid "Show a different month"
1150
+ msgstr "Dangos mis gwahanol"
1151
+
1152
+ #: core/fields/date_picker/date_picker.php:126
1153
+ msgid "Save format"
1154
+ msgstr "Cadw'r fformat"
1155
+
1156
+ #: core/fields/date_picker/date_picker.php:127
1157
+ msgid "This format will determine the value saved to the database and returned via the API"
1158
+ msgstr "Bydd y fformat yma yn pennu'r gwerth sydd wedi'i gadw i'r gronfa ddata ac sy'n cael ei ddychwelyd drwy'r API"
1159
+
1160
+ #: core/fields/date_picker/date_picker.php:128
1161
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1162
+ msgstr "\"yymmdd\" yw'r fformat cadw mwyaf amlbwrpas. Darllenwch fwy am"
1163
+
1164
+ #: core/fields/date_picker/date_picker.php:128
1165
+ #: core/fields/date_picker/date_picker.php:144
1166
+ msgid "jQuery date formats"
1167
+ msgstr "Fformatau dyddiad jQuery"
1168
+
1169
+ #: core/fields/date_picker/date_picker.php:142
1170
+ msgid "Display format"
1171
+ msgstr "Fformat arddangos"
1172
+
1173
+ #: core/fields/date_picker/date_picker.php:143
1174
+ msgid "This format will be seen by the user when entering a value"
1175
+ msgstr "Dyma'r fformat fydd y defnyddiwr yn ei weld wrth roi gwerth i mewn"
1176
+
1177
+ #: core/fields/date_picker/date_picker.php:144
1178
+ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1179
+ msgstr "\"dd/mm/yy\" neu \"mm/dd/yy\" yw'r fformatau arddangos sy'n cael eu defnyddio fwyaf. Darllenwch fwy am"
1180
+
1181
+ #: core/fields/date_picker/date_picker.php:158
1182
+ msgid "Week Starts On"
1183
+ msgstr "Wythnos yn Cychwyn Ar"
1184
+
1185
+ #: core/fields/dummy.php:19
1186
+ msgid "Dummy"
1187
+ msgstr "Dirprwy"
1188
+
1189
+ #: acf.php:455
1190
+ msgid "Field&nbsp;Groups"
1191
+ msgstr "Grwpiau o feysydd"
1192
+
1193
+ #: acf.php:456 core/controllers/field_groups.php:214
1194
+ msgid "Advanced Custom Fields"
1195
+ msgstr "Advanced Custom Fields"
1196
+
1197
+ #: acf.php:457
1198
+ msgid "Add New"
1199
+ msgstr "Ychwanegu Newydd"
1200
+
1201
+ #: acf.php:458
1202
+ msgid "Add New Field Group"
1203
+ msgstr "Ychwanegu Grŵp Maes Newydd"
1204
+
1205
+ #: acf.php:459
1206
+ msgid "Edit Field Group"
1207
+ msgstr "Golygu Grŵp Maes"
1208
+
1209
+ #: acf.php:460
1210
+ msgid "New Field Group"
1211
+ msgstr "Grŵp Maes Newydd"
1212
+
1213
+ #: acf.php:461
1214
+ msgid "View Field Group"
1215
+ msgstr "Gweld Grŵp Maes"
1216
+
1217
+ #: acf.php:462
1218
+ msgid "Search Field Groups"
1219
+ msgstr "Chwilio'r Grwpiau Maes"
1220
+
1221
+ #: acf.php:463
1222
+ msgid "No Field Groups found"
1223
+ msgstr "Ni ddaethpwyd o hyd i Grwpiau Maes"
1224
+
1225
+ #: acf.php:464
1226
+ msgid "No Field Groups found in Trash"
1227
+ msgstr "Ni ddaethpwyd o hyd i Grwpiau Maes yn y Bin"
1228
+
1229
+ #: acf.php:567 core/views/meta_box_options.php:99
1230
+ msgid "Custom Fields"
1231
+ msgstr "Meysydd Cyfaddas"
1232
+
1233
+ #: acf.php:585 acf.php:588
1234
+ msgid "Field group updated."
1235
+ msgstr "Y grŵp maes wedi'i ddiweddaru."
1236
+
1237
+ #: acf.php:586
1238
+ msgid "Custom field updated."
1239
+ msgstr "Y maes cyfaddas wedi'i ddiweddaru."
1240
+
1241
+ #: acf.php:587
1242
+ msgid "Custom field deleted."
1243
+ msgstr "Y maes cyfaddas wedi'i ddileu."
1244
+
1245
+ #: acf.php:590
1246
+ msgid "Field group restored to revision from %s"
1247
+ msgstr "Y grŵp maes wedi ei adfer i'r adolygiad gan %s"
1248
+
1249
+ #: acf.php:591
1250
+ msgid "Field group published."
1251
+ msgstr "Y grŵp maes wedi'i gyhoeddi."
1252
+
1253
+ #: acf.php:592
1254
+ msgid "Field group saved."
1255
+ msgstr "Y grŵp maes wedi'i gadw."
1256
+
1257
+ #: acf.php:593
1258
+ msgid "Field group submitted."
1259
+ msgstr "Y grŵp maes wedi'i gyflwyno."
1260
+
1261
+ #: acf.php:594
1262
+ msgid "Field group scheduled for."
1263
+ msgstr "Y grŵp maes wedi'i amserlennu."
1264
+
1265
+ #: acf.php:595
1266
+ msgid "Field group draft updated."
1267
+ msgstr "Y drafft grŵp maes wedi'i ddiweddaru."
1268
+
1269
+ #: acf.php:730
1270
+ msgid "Thumbnail"
1271
+ msgstr "Llun Bach"
1272
+
1273
+ #: acf.php:731
1274
+ msgid "Medium"
1275
+ msgstr "Canolig"
1276
+
1277
+ #: acf.php:732
1278
+ msgid "Large"
1279
+ msgstr "Mawr"
1280
+
1281
+ #: acf.php:733
1282
+ msgid "Full"
1283
+ msgstr "Llawn"
1284
+
1285
+ #: core/actions/export.php:26 core/views/meta_box_fields.php:58
1286
+ msgid "Error"
1287
+ msgstr "Gwall"
1288
+
1289
+ #: core/actions/export.php:33
1290
+ msgid "No ACF groups selected"
1291
+ msgstr "Dim grwpiau ACF wedi'u dewis"
1292
+
1293
+ #: core/api.php:1162
1294
+ msgid "Update"
1295
+ msgstr "Diweddaru"
1296
+
1297
+ #: core/api.php:1163
1298
+ msgid "Post updated"
1299
+ msgstr "Diweddarwyd y cofnod"
1300
+
1301
+ #: core/controllers/addons.php:42 core/controllers/field_groups.php:307
1302
+ msgid "Add-ons"
1303
+ msgstr "Ychwanegion"
1304
+
1305
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:429
1306
+ msgid "Repeater Field"
1307
+ msgstr "Maes Ailadrodd"
1308
+
1309
+ #: core/controllers/addons.php:131
1310
+ msgid "Create infinite rows of repeatable data with this versatile interface!"
1311
+ msgstr "Creu rhesi diddiwedd o ddata ailadrodd gyda'r rhyngwyneb amlbwrpas yma!"
1312
+
1313
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:437
1314
+ msgid "Gallery Field"
1315
+ msgstr "Maes Oriel"
1316
+
1317
+ #: core/controllers/addons.php:138
1318
+ msgid "Create image galleries in a simple and intuitive interface!"
1319
+ msgstr "Creu orielau delweddau mewn rhyngwyneb syml a hawdd ei ddefnyddio!"
1320
+
1321
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:445
1322
+ msgid "Options Page"
1323
+ msgstr "Tudalen Opsiynau"
1324
+
1325
+ #: core/controllers/addons.php:145
1326
+ msgid "Create global data to use throughout your website!"
1327
+ msgstr "Creu data cyffredinol i'w ddefnyddio ledled eich gwefan!"
1328
+
1329
+ #: core/controllers/addons.php:151
1330
+ msgid "Flexible Content Field"
1331
+ msgstr "Maes Cynnwys Hyblyg"
1332
+
1333
+ #: core/controllers/addons.php:152
1334
+ msgid "Create unique designs with a flexible content layout manager!"
1335
+ msgstr "Creu cynlluniau unigryw gyda rheolwr cynllun cynnwys hyblyg!"
1336
+
1337
+ #: core/controllers/addons.php:161
1338
+ msgid "Gravity Forms Field"
1339
+ msgstr "Maes Ffurflenni Disgyrchiant"
1340
+
1341
+ #: core/controllers/addons.php:162
1342
+ msgid "Creates a select field populated with Gravity Forms!"
1343
+ msgstr "Creu maes dewis sy'n defnyddio Ffurflenni Disgyrchiant!"
1344
+
1345
+ #: core/controllers/addons.php:168
1346
+ msgid "Date & Time Picker"
1347
+ msgstr "Dewiswr Dyddiad ac Amser"
1348
+
1349
+ #: core/controllers/addons.php:169
1350
+ msgid "jQuery date & time picker"
1351
+ msgstr "jQuery dewiswr dyddiad ac amser"
1352
+
1353
+ #: core/controllers/addons.php:175
1354
+ msgid "Location Field"
1355
+ msgstr "Maes Lleoliad"
1356
+
1357
+ #: core/controllers/addons.php:176
1358
+ msgid "Find addresses and coordinates of a desired location"
1359
+ msgstr "Dod o hyd i gyfeiriadau a chyfesurynnau lleoliad penodol"
1360
+
1361
+ #: core/controllers/addons.php:182
1362
+ msgid "Contact Form 7 Field"
1363
+ msgstr "Maes Contact Form 7"
1364
+
1365
+ #: core/controllers/addons.php:183
1366
+ msgid "Assign one or more contact form 7 forms to a post"
1367
+ msgstr "Pennu un nu ragor o ffurflenni Contact Form 7 i gofnod"
1368
+
1369
+ #: core/controllers/addons.php:193
1370
+ msgid "Advanced Custom Fields Add-Ons"
1371
+ msgstr "Ychwanegion Advanced Custom Fields"
1372
+
1373
+ #: core/controllers/addons.php:196
1374
+ msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
1375
+ msgstr "Mae'r Ychwanegion canlynol ar gael er mwyn cynyddu pa mor ymarferol yw'r ategyn Advanced Custom Fields."
1376
+
1377
+ #: core/controllers/addons.php:197
1378
+ msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
1379
+ msgstr "Gall pob Ychwanegyn gael ei osod fel ategyn ar wahân (yn derbyn diweddariadau) neu ei gynnwys yn eich thema (ddim yn derbyn diweddariadau)."
1380
+
1381
+ #: core/controllers/addons.php:219 core/controllers/addons.php:240
1382
+ msgid "Installed"
1383
+ msgstr "Wedi'i osod"
1384
+
1385
+ #: core/controllers/addons.php:221
1386
+ msgid "Purchase & Install"
1387
+ msgstr "Prynu a Gosod"
1388
+
1389
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:422
1390
+ #: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439
1391
+ #: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455
1392
+ msgid "Download"
1393
+ msgstr "Llwytho i Lawr"
1394
+
1395
+ #: core/controllers/export.php:50 core/controllers/export.php:159
1396
+ msgid "Export"
1397
+ msgstr "Allforio"
1398
+
1399
+ #: core/controllers/export.php:216
1400
+ msgid "Export Field Groups"
1401
+ msgstr "Allforio Grwpiau Maes"
1402
+
1403
+ #: core/controllers/export.php:221
1404
+ msgid "Field Groups"
1405
+ msgstr "Grwpiau Maes"
1406
+
1407
+ #: core/controllers/export.php:222
1408
+ msgid "Select the field groups to be exported"
1409
+ msgstr "Dewiswch y grwpiau maes i'w hallforio"
1410
+
1411
+ #: core/controllers/export.php:239 core/controllers/export.php:252
1412
+ msgid "Export to XML"
1413
+ msgstr "Allforio i XML"
1414
+
1415
+ #: core/controllers/export.php:242 core/controllers/export.php:267
1416
+ msgid "Export to PHP"
1417
+ msgstr "Allforio i PHP"
1418
+
1419
+ #: core/controllers/export.php:253
1420
+ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
1421
+ msgstr "Bydd ACF yn creu ffeil allforio .xml sy'n gydnaws â'r ategyn mewnforio WP cynhenid."
1422
+
1423
+ #: core/controllers/export.php:254
1424
+ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
1425
+ msgstr "Bydd grwpiau maes a fewnforiwyd <b>yn</b> ymddangos yn y rhestr o grwpiau maes y gellir eu golygu. Mae hyn yn ddefnyddiol ar gyfer mudo grwpiau maes rhwng gwefannau WP."
1426
+
1427
+ #: core/controllers/export.php:256
1428
+ msgid "Select field group(s) from the list and click \"Export XML\""
1429
+ msgstr "Dewiswch grŵp/grwpiau maes o'r rhestr a chliciwch \"Allforio XML\""
1430
+
1431
+ #: core/controllers/export.php:257
1432
+ msgid "Save the .xml file when prompted"
1433
+ msgstr "Cadwch y ffeil .xml pan ofynnir i chi wneud hynny"
1434
+
1435
+ #: core/controllers/export.php:258
1436
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
1437
+ msgstr "Ewch i Offer a Mewnforio a dewis WordPress"
1438
+
1439
+ #: core/controllers/export.php:259
1440
+ msgid "Install WP import plugin if prompted"
1441
+ msgstr "Gosodwch ategyn mewnbynnu WP os gofynnir i chi wneud hynny"
1442
+
1443
+ #: core/controllers/export.php:260
1444
+ msgid "Upload and import your exported .xml file"
1445
+ msgstr "Llwythwch eich ffeil .xml allforio i fyny a'i mewnforio"
1446
+
1447
+ #: core/controllers/export.php:261
1448
+ msgid "Select your user and ignore Import Attachments"
1449
+ msgstr "Dewiswch eich defnyddiwr ac anwybyddu Mewnforio Atodiadau"
1450
+
1451
+ #: core/controllers/export.php:262
1452
+ msgid "That's it! Happy WordPressing"
1453
+ msgstr "Dyna ni! Mwynhewch ddefnyddio WordPress"
1454
+
1455
+ #: core/controllers/export.php:268
1456
+ msgid "ACF will create the PHP code to include in your theme."
1457
+ msgstr "Bydd ACF yn creu'r cod PHP i'w gynnwys yn eich thema."
1458
+
1459
+ #: core/controllers/export.php:269 core/controllers/export.php:310
1460
+ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
1461
+ msgstr "<b>Ni fydd</b> grwpiau maes sydd wedi'u cofrestru yn ymddangos yn y rhestr o grwpiau maes y gellir eu golygu. Mae hyn yn ddefnyddiol ar gyfer cynnwys meysydd mewn themâu."
1462
+
1463
+ #: core/controllers/export.php:270 core/controllers/export.php:311
1464
+ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
1465
+ msgstr "Sylwer: os ydych chi'n allforio ac yn cofrestru grwpiau maes yn yr un WP, byddwch yn gweld mwy nag un maes ar eich sgrin olygu. I drwsio hyn, dylech symud y grŵp maes gwreiddiol i'r bin neu ddileu'r cod o'ch ffeil functions.php."
1466
+
1467
+ #: core/controllers/export.php:272
1468
+ msgid "Select field group(s) from the list and click \"Create PHP\""
1469
+ msgstr "Dewiswch grŵp/grwpiau maes o'r rhestr a chliciwch \"Creu PHP\""
1470
+
1471
+ #: core/controllers/export.php:273 core/controllers/export.php:302
1472
+ msgid "Copy the PHP code generated"
1473
+ msgstr "Copïwch y cod PHP sy'n cael ei gynhyrchu"
1474
+
1475
+ #: core/controllers/export.php:274 core/controllers/export.php:303
1476
+ msgid "Paste into your functions.php file"
1477
+ msgstr "Gludwch ef i'ch ffeil functions.php"
1478
+
1479
+ #: core/controllers/export.php:275 core/controllers/export.php:304
1480
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
1481
+ msgstr "Er mwyn gweithredu eich Ychwanegion, golygwch a defnyddiwch y cod yn yr ychydig linellau cyntaf."
1482
+
1483
+ #: core/controllers/export.php:295
1484
+ msgid "Export Field Groups to PHP"
1485
+ msgstr "Allforio Grwpiau Maes i PHP"
1486
+
1487
+ #: core/controllers/export.php:300 core/fields/tab.php:65
1488
+ msgid "Instructions"
1489
+ msgstr "Cyfarwyddiadau"
1490
+
1491
+ #: core/controllers/export.php:309
1492
+ msgid "Notes"
1493
+ msgstr "Nodiadau"
1494
+
1495
+ #: core/controllers/export.php:316
1496
+ msgid "Include in theme"
1497
+ msgstr "Cynnwys yn y thema"
1498
+
1499
+ #: core/controllers/export.php:317
1500
+ msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
1501
+ msgstr "Gellir cynnwys yr ategyn Advanced Custom Fields mewn thema. Er mwyn gwneud hynny, symudwch yr ategyn ACF mewn i'ch thema ac ychwanegu'r cod canlynol i'ch ffeil functions.php:"
1502
+
1503
+ #: core/controllers/export.php:323
1504
+ msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1505
+ msgstr "Er mwyn dileu pob rhyngwyneb gweledol o'r ategyn ACF, gallwch ddefnyddio cysonyn i alluogi modd lite. Ychwanegwch y cod canlynol i'ch ffeil functions.php <b>cyn</b> y cod include_once:"
1506
+
1507
+ #: core/controllers/export.php:331
1508
+ msgid "Back to export"
1509
+ msgstr "Yn ôl i allforio"
1510
+
1511
+ #: core/controllers/export.php:400
1512
+ msgid "No field groups were selected"
1513
+ msgstr "Ni chafodd grŵp maes ei ddewis"
1514
+
1515
+ #: core/controllers/field_group.php:358
1516
+ msgid "Move to trash. Are you sure?"
1517
+ msgstr "Symud i'r bin. Ydych chi'n siŵr?"
1518
+
1519
+ #: core/controllers/field_group.php:359
1520
+ msgid "checked"
1521
+ msgstr "wedi ticio"
1522
+
1523
+ #: core/controllers/field_group.php:360
1524
+ msgid "No toggle fields available"
1525
+ msgstr "Does dim meysydd toglo ar gael"
1526
+
1527
+ #: core/controllers/field_group.php:361
1528
+ msgid "Field group title is required"
1529
+ msgstr "Mae angen teitl grŵp maes"
1530
+
1531
+ #: core/controllers/field_group.php:362
1532
+ msgid "copy"
1533
+ msgstr "copïo"
1534
+
1535
+ #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
1536
+ #: core/views/meta_box_location.php:159
1537
+ msgid "or"
1538
+ msgstr "neu"
1539
+
1540
+ #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
1541
+ #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
1542
+ msgid "Fields"
1543
+ msgstr "Meysydd"
1544
+
1545
+ #: core/controllers/field_group.php:365
1546
+ msgid "Parent fields"
1547
+ msgstr "Meysydd rhiant"
1548
+
1549
+ #: core/controllers/field_group.php:366
1550
+ msgid "Sibling fields"
1551
+ msgstr "Meysydd sibling*"
1552
+
1553
+ #: core/controllers/field_group.php:367
1554
+ msgid "Hide / Show All"
1555
+ msgstr "Cuddio / Dangos y Cyfan"
1556
+
1557
+ #: core/controllers/field_group.php:396
1558
+ msgid "Location"
1559
+ msgstr "Lleoliad"
1560
+
1561
+ #: core/controllers/field_group.php:397
1562
+ msgid "Options"
1563
+ msgstr "Opsiynau"
1564
+
1565
+ #: core/controllers/field_group.php:459
1566
+ msgid "Show Field Key:"
1567
+ msgstr "Dangos Allwedd Maes:"
1568
+
1569
+ #: core/controllers/field_group.php:460 core/fields/page_link.php:138
1570
+ #: core/fields/page_link.php:159 core/fields/post_object.php:328
1571
+ #: core/fields/post_object.php:349 core/fields/select.php:224
1572
+ #: core/fields/select.php:243 core/fields/taxonomy.php:343
1573
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:256
1574
+ #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
1575
+ msgid "No"
1576
+ msgstr "Na"
1577
+
1578
+ #: core/controllers/field_group.php:461 core/fields/page_link.php:137
1579
+ #: core/fields/page_link.php:158 core/fields/post_object.php:327
1580
+ #: core/fields/post_object.php:348 core/fields/select.php:223
1581
+ #: core/fields/select.php:242 core/fields/taxonomy.php:342
1582
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:255
1583
+ #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
1584
+ msgid "Yes"
1585
+ msgstr "Ie"
1586
+
1587
+ #: core/controllers/field_group.php:645
1588
+ msgid "Front Page"
1589
+ msgstr "Tudalen Flaen"
1590
+
1591
+ #: core/controllers/field_group.php:646
1592
+ msgid "Posts Page"
1593
+ msgstr "Tudalen Cofnodion"
1594
+
1595
+ #: core/controllers/field_group.php:647
1596
+ msgid "Top Level Page (parent of 0)"
1597
+ msgstr "Tudalen Lefel Uchaf (rhiant i 0)"
1598
+
1599
+ #: core/controllers/field_group.php:648
1600
+ msgid "Parent Page (has children)"
1601
+ msgstr "Tudalen Rhiant (sydd â phlant)"
1602
+
1603
+ #: core/controllers/field_group.php:649
1604
+ msgid "Child Page (has parent)"
1605
+ msgstr "Tudalen Plentyn (sydd â rhiant)"
1606
+
1607
+ #: core/controllers/field_group.php:657
1608
+ msgid "Default Template"
1609
+ msgstr "Templed Diofyn"
1610
+
1611
+ #: core/controllers/field_group.php:734
1612
+ msgid "Publish"
1613
+ msgstr "Cyhoeddi"
1614
+
1615
+ #: core/controllers/field_group.php:735
1616
+ msgid "Pending Review"
1617
+ msgstr "Adolygiad dan Ystyriaeth"
1618
+
1619
+ #: core/controllers/field_group.php:736
1620
+ msgid "Draft"
1621
+ msgstr "Drafft"
1622
+
1623
+ #: core/controllers/field_group.php:737
1624
+ msgid "Future"
1625
+ msgstr "Dyfodol"
1626
+
1627
+ #: core/controllers/field_group.php:738
1628
+ msgid "Private"
1629
+ msgstr "Preifat"
1630
+
1631
+ #: core/controllers/field_group.php:739
1632
+ msgid "Revision"
1633
+ msgstr "Adolygiad"
1634
+
1635
+ #: core/controllers/field_group.php:740
1636
+ msgid "Trash"
1637
+ msgstr "Bin"
1638
+
1639
+ #: core/controllers/field_group.php:753
1640
+ msgid "Super Admin"
1641
+ msgstr "Uwch Weinyddwr"
1642
+
1643
+ #: core/controllers/field_group.php:768 core/controllers/field_group.php:789
1644
+ #: core/controllers/field_group.php:796 core/fields/file.php:186
1645
+ #: core/fields/image.php:170 core/fields/page_link.php:109
1646
+ #: core/fields/post_object.php:274 core/fields/post_object.php:298
1647
+ #: core/fields/relationship.php:598 core/fields/relationship.php:622
1648
+ #: core/fields/user.php:229
1649
+ msgid "All"
1650
+ msgstr "Y Cyfan"
1651
+
1652
+ #: core/controllers/field_groups.php:147
1653
+ msgid "Title"
1654
+ msgstr "Teitl"
1655
+
1656
+ #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
1657
+ msgid "Changelog"
1658
+ msgstr "Log o Newid"
1659
+
1660
+ #: core/controllers/field_groups.php:217
1661
+ msgid "See what's new in"
1662
+ msgstr "Gweld beth sy'n newydd yn"
1663
+
1664
+ #: core/controllers/field_groups.php:217
1665
+ msgid "version"
1666
+ msgstr "fersiwn"
1667
+
1668
+ #: core/controllers/field_groups.php:219
1669
+ msgid "Resources"
1670
+ msgstr "Adnoddau"
1671
+
1672
+ #: core/controllers/field_groups.php:221
1673
+ msgid "Getting Started"
1674
+ msgstr "Cychwyn"
1675
+
1676
+ #: core/controllers/field_groups.php:222
1677
+ msgid "Field Types"
1678
+ msgstr "Mathau o Feysydd"
1679
+
1680
+ #: core/controllers/field_groups.php:223
1681
+ msgid "Functions"
1682
+ msgstr "Swyddogaethau"
1683
+
1684
+ #: core/controllers/field_groups.php:224
1685
+ msgid "Actions"
1686
+ msgstr "Gweithredoedd"
1687
+
1688
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:641
1689
+ msgid "Filters"
1690
+ msgstr "Hidlyddion"
1691
+
1692
+ #: core/controllers/field_groups.php:226
1693
+ msgid "'How to' guides"
1694
+ msgstr "Canllawiau 'Sut i'"
1695
+
1696
+ #: core/controllers/field_groups.php:227
1697
+ msgid "Tutorials"
1698
+ msgstr "Tiwtorialau"
1699
+
1700
+ #: core/controllers/field_groups.php:232
1701
+ msgid "Created by"
1702
+ msgstr "Crëwyd gan"
1703
+
1704
+ #: core/controllers/field_groups.php:244
1705
+ msgid "Welcome to Advanced Custom Fields"
1706
+ msgstr "Croeso i Advanced Custom Fields"
lang/acf-de_DE.mo CHANGED
Binary file
lang/acf-de_DE.po CHANGED
@@ -3,547 +3,516 @@ msgstr ""
3
  "Project-Id-Version: Advanced Custom Fields v4.2.0 RC1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2013-04-27 17:35+0100\n"
6
- "PO-Revision-Date: 2013-08-04 06:16:40-0500\n"
7
- "Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.5.5\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
  "X-Poedit-Basepath: .\n"
19
- "X-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
 
23
  #: acf.php:341
24
- #@ acf
25
  msgid "Field&nbsp;Groups"
26
  msgstr "Felder-Gruppen"
27
 
28
- #: acf.php:342
29
- #: core/controllers/field_groups.php:214
30
- #@ acf
31
  msgid "Advanced Custom Fields"
32
  msgstr "Eigene Felder"
33
 
 
34
  #: acf.php:343
35
- #@ acf
36
  msgid "Add New"
37
  msgstr "Neu erstellen"
38
 
 
39
  #: acf.php:344
40
- #@ acf
41
  msgid "Add New Field Group"
42
  msgstr "Neue Felder-Gruppe erstellen"
43
 
 
44
  #: acf.php:345
45
- #@ acf
46
  msgid "Edit Field Group"
47
  msgstr "Felder-Gruppe bearbeiten"
48
 
 
49
  #: acf.php:346
50
- #@ acf
51
  msgid "New Field Group"
52
  msgstr "Neue Felder-Gruppe"
53
 
 
54
  #: acf.php:347
55
- #@ acf
56
  msgid "View Field Group"
57
  msgstr "Felder-Gruppe anzeigen"
58
 
 
59
  #: acf.php:348
60
- #@ acf
61
  msgid "Search Field Groups"
62
  msgstr "Felder-Gruppe suchen"
63
 
 
64
  #: acf.php:349
65
- #@ acf
66
  msgid "No Field Groups found"
67
  msgstr "Keine Felder-Gruppen gefunden"
68
 
 
69
  #: acf.php:350
70
- #@ acf
71
  msgid "No Field Groups found in Trash"
72
  msgstr "Keine Felder-Gruppen im Papierkorb gefunden"
73
 
74
- #: acf.php:458
75
- #: core/views/meta_box_options.php:96
76
- #@ acf
77
- #@ default
78
  msgid "Custom Fields"
79
  msgstr "Eigene Felder"
80
 
81
- #: acf.php:476
82
- #: acf.php:479
83
- #@ acf
84
  msgid "Field group updated."
85
  msgstr "Felder-Gruppe aktualisiert"
86
 
 
87
  #: acf.php:477
88
- #@ acf
89
  msgid "Custom field updated."
90
  msgstr "Eigenes Feld aktualisiert"
91
 
 
92
  #: acf.php:478
93
- #@ acf
94
  msgid "Custom field deleted."
95
  msgstr "Eigenes Feld gelöscht"
96
 
 
97
  #. translators: %s: date and time of the revision
98
  #: acf.php:481
99
  #, php-format
100
- #@ acf
101
  msgid "Field group restored to revision from %s"
102
  msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s"
103
 
 
104
  #: acf.php:482
105
- #@ acf
106
  msgid "Field group published."
107
  msgstr "Felder-Gruppe veröffentlicht"
108
 
 
109
  #: acf.php:483
110
- #@ acf
111
  msgid "Field group saved."
112
  msgstr "Felder-Gruppe gespeichert"
113
 
 
114
  #: acf.php:484
115
- #@ acf
116
  msgid "Field group submitted."
117
  msgstr "Felder-Gruppe übertragen"
118
 
 
119
  #: acf.php:485
120
- #@ acf
121
  msgid "Field group scheduled for."
122
  msgstr "Felder-Gruppe geplant für"
123
 
 
124
  #: acf.php:486
125
- #@ acf
126
  msgid "Field group draft updated."
127
  msgstr "Entwurf der Felder-Gruppe aktualisiert"
128
 
 
129
  #: acf.php:621
130
- #@ acf
131
  msgid "Thumbnail"
132
  msgstr "Miniaturbild"
133
 
 
134
  #: acf.php:622
135
- #@ acf
136
  msgid "Medium"
137
  msgstr "Mittel"
138
 
 
139
  #: acf.php:623
140
- #@ acf
141
  msgid "Large"
142
  msgstr "Groß"
143
 
 
144
  #: acf.php:624
145
- #@ acf
146
  msgid "Full"
147
  msgstr "Volle Größe"
148
 
 
149
  #: core/controllers/field_group.php:377
150
- #@ acf
151
  msgid "Options"
152
  msgstr "Optionen"
153
 
154
- #: core/controllers/addons.php:144
155
- #: core/controllers/export.php:380
156
  #: core/controllers/field_groups.php:448
157
- #@ acf
158
  msgid "Options Page"
159
  msgstr "Optionen-Seite"
160
 
161
- #: core/fields/checkbox.php:174
162
- #: core/fields/message.php:20
163
- #: core/fields/radio.php:209
164
- #: core/fields/tab.php:20
165
- #@ acf
166
  msgid "Layout"
167
  msgstr "Layout"
168
 
 
169
  #: core/views/meta_box_fields.php:24
170
- #@ acf
171
  msgid "New Field"
172
  msgstr "Neues Feld"
173
 
 
174
  #: core/views/meta_box_fields.php:88
175
- #@ acf
176
  msgid "Field Order"
177
  msgstr "Sortierung"
178
 
179
- #: core/views/meta_box_fields.php:89
180
- #: core/views/meta_box_fields.php:141
181
- #@ acf
182
  msgid "Field Label"
183
  msgstr "Bezeichnung"
184
 
185
- #: core/views/meta_box_fields.php:90
186
- #: core/views/meta_box_fields.php:157
187
- #@ acf
188
  msgid "Field Name"
189
  msgstr "Name"
190
 
191
- #: core/fields/taxonomy.php:306
192
- #: core/fields/user.php:251
193
- #: core/views/meta_box_fields.php:91
194
- #: core/views/meta_box_fields.php:173
195
- #@ acf
196
  msgid "Field Type"
197
  msgstr "Feld-Typ"
198
 
199
- #: core/views/meta_box_fields.php:119
200
- #: core/views/meta_box_fields.php:122
201
- #@ acf
202
  msgid "Edit this Field"
203
  msgstr "Dieses Feld bearbeiten"
204
 
205
- #: core/fields/image.php:84
206
- #: core/views/meta_box_fields.php:122
207
- #@ acf
208
  msgid "Edit"
209
  msgstr "Bearbeiten"
210
 
 
211
  #: core/views/meta_box_fields.php:123
212
- #@ acf
213
  msgid "Read documentation for this field"
214
  msgstr "Dokumentation für dieses Feld"
215
 
 
216
  #: core/views/meta_box_fields.php:123
217
- #@ acf
218
  msgid "Docs"
219
  msgstr "Hilfe"
220
 
 
221
  #: core/views/meta_box_fields.php:124
222
- #@ acf
223
  msgid "Duplicate this Field"
224
  msgstr "Dieses Feld duplizieren"
225
 
 
226
  #: core/views/meta_box_fields.php:124
227
- #@ acf
228
  msgid "Duplicate"
229
  msgstr "Duplizieren"
230
 
 
231
  #: core/views/meta_box_fields.php:125
232
- #@ acf
233
  msgid "Delete this Field"
234
  msgstr "Dieses Feld löschen"
235
 
 
236
  #: core/views/meta_box_fields.php:125
237
- #@ acf
238
  msgid "Delete"
239
  msgstr "Löschen"
240
 
 
241
  #: core/views/meta_box_fields.php:142
242
- #@ acf
243
  msgid "This is the name which will appear on the EDIT page"
244
  msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt."
245
 
 
246
  #: core/views/meta_box_fields.php:158
247
- #@ acf
248
  msgid "Single word, no spaces. Underscores and dashes allowed"
249
  msgstr "Ein Wort, keine Leerzeichen, Unterstrich (_) und Bindestrich (-) erlaubt."
250
 
 
251
  #: core/views/meta_box_fields.php:187
252
- #@ acf
253
  msgid "Field Instructions"
254
  msgstr "Feld-Anweisungen"
255
 
 
256
  #: core/views/meta_box_fields.php:317
257
- #@ acf
258
  msgid "Close Field"
259
  msgstr "Feld schließen"
260
 
 
261
  #: core/views/meta_box_fields.php:330
262
- #@ acf
263
  msgid "Drag and drop to reorder"
264
  msgstr "Mit Drag&amp;Drop anordnen"
265
 
266
- #: core/actions/export.php:23
267
- #: core/views/meta_box_fields.php:58
268
- #@ acf
269
  msgid "Error"
270
  msgstr "Fehler"
271
 
 
272
  #: core/actions/export.php:30
273
- #@ acf
274
  msgid "No ACF groups selected"
275
  msgstr "Keine ACF-Gruppen ausgewählt"
276
 
277
- #: core/controllers/addons.php:42
278
- #: core/controllers/field_groups.php:311
279
- #@ acf
280
  msgid "Add-ons"
281
  msgstr "Zusatz-Module"
282
 
283
- #: core/controllers/addons.php:130
284
- #: core/controllers/field_groups.php:432
285
- #@ acf
286
  msgid "Repeater Field"
287
  msgstr "Wiederholungs-Feld"
288
 
 
289
  #: core/controllers/addons.php:131
290
- #@ acf
291
  msgid "Create infinite rows of repeatable data with this versatile interface!"
292
  msgstr "Ermöglicht das Erstellen von wiederholbaren Feldern innerhalb einer Felder-Gruppe!"
293
 
294
- #: core/controllers/addons.php:137
295
- #: core/controllers/field_groups.php:440
296
- #@ acf
297
  msgid "Gallery Field"
298
  msgstr "Galerie-Feld"
299
 
 
300
  #: core/controllers/addons.php:138
301
- #@ acf
302
  msgid "Create image galleries in a simple and intuitive interface!"
303
  msgstr "Erstellen Sie Bildergalerien in einer einfachen und intuitiven Benutzeroberfläche!"
304
 
 
305
  #: core/controllers/addons.php:145
306
- #@ acf
307
  msgid "Create global data to use throughout your website!"
308
  msgstr "Erstellen Sie Optionen, die Sie überall in Ihrem Theme verwenden können!"
309
 
 
310
  #: core/controllers/addons.php:151
311
- #@ acf
312
  msgid "Flexible Content Field"
313
  msgstr "Flexibles Inhalts-Feld"
314
 
 
315
  #: core/controllers/addons.php:152
316
- #@ acf
317
  msgid "Create unique designs with a flexible content layout manager!"
318
  msgstr "Erstellen Sie einzigartige Designs mit einem flexiblen Content-Layout-Manager!"
319
 
 
320
  #: core/controllers/addons.php:161
321
- #@ acf
322
  msgid "Gravity Forms Field"
323
  msgstr "Gravity Forms Feld"
324
 
 
325
  #: core/controllers/addons.php:162
326
- #@ acf
327
  msgid "Creates a select field populated with Gravity Forms!"
328
  msgstr "Erstellt ein Auswahlfeld mit Formularen aus Gravity Forms!"
329
 
 
330
  #: core/controllers/addons.php:168
331
- #@ acf
332
  msgid "Date & Time Picker"
333
  msgstr "Datum & Zeit Auswahl"
334
 
 
335
  #: core/controllers/addons.php:169
336
- #@ acf
337
  msgid "jQuery date & time picker"
338
  msgstr "Ein jQuery Datum & Zeit Modul"
339
 
 
340
  #: core/controllers/addons.php:175
341
- #@ acf
342
  msgid "Location Field"
343
  msgstr "Adress-Felder"
344
 
 
345
  #: core/controllers/addons.php:176
346
- #@ acf
347
  msgid "Find addresses and coordinates of a desired location"
348
  msgstr "Finden Sie Adressen und Koordinaten eines Ortes!"
349
 
 
350
  #: core/controllers/addons.php:182
351
- #@ acf
352
  msgid "Contact Form 7 Field"
353
  msgstr "Contact Form 7 Felder"
354
 
 
355
  #: core/controllers/addons.php:183
356
- #@ acf
357
  msgid "Assign one or more contact form 7 forms to a post"
358
  msgstr "Binden Sie Contact Form 7 Formulare ein!"
359
 
 
360
  #: core/controllers/addons.php:193
361
- #@ acf
362
  msgid "Advanced Custom Fields Add-Ons"
363
  msgstr "Eigene Felder Zusatz-Module"
364
 
 
365
  #: core/controllers/addons.php:196
366
- #@ acf
367
  msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
368
  msgstr "Die folgenden Zusatz-Module erweitern die Funktionalität des Eigene Felder Plugins."
369
 
 
370
  #: core/controllers/addons.php:197
371
- #@ acf
372
  msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
373
  msgstr "Jedes Zusatz-Modul kann als eigenes Plugin installiert werden (inkl. Update-Möglichkeit) oder kann in ein Theme eingebunden werden (ohne Update-Möglichkeit)."
374
 
375
- #: core/controllers/addons.php:219
376
- #: core/controllers/addons.php:240
377
- #@ acf
378
  msgid "Installed"
379
  msgstr "Installiert"
380
 
 
381
  #: core/controllers/addons.php:221
382
- #@ acf
383
  msgid "Purchase & Install"
384
  msgstr "Kaufen & Installieren"
385
 
386
- #: core/controllers/addons.php:242
387
- #: core/controllers/field_groups.php:425
388
- #: core/controllers/field_groups.php:434
389
- #: core/controllers/field_groups.php:442
390
- #: core/controllers/field_groups.php:450
391
- #: core/controllers/field_groups.php:458
392
- #@ acf
393
  msgid "Download"
394
  msgstr "Herunterladen"
395
 
396
- #: core/controllers/export.php:50
397
- #: core/controllers/export.php:159
398
- #@ acf
399
  msgid "Export"
400
  msgstr "Export"
401
 
 
402
  #: core/controllers/export.php:216
403
- #@ acf
404
  msgid "Export Field Groups"
405
  msgstr "Felder-Gruppen exportieren"
406
 
 
407
  #: core/controllers/export.php:221
408
- #@ acf
409
  msgid "Field Groups"
410
  msgstr "Felder-Gruppe"
411
 
 
412
  #: core/controllers/export.php:222
413
- #@ acf
414
  msgid "Select the field groups to be exported"
415
  msgstr "Auswahl der zu exportierenden Felder-Gruppen"
416
 
417
- #: core/controllers/export.php:239
418
- #: core/controllers/export.php:252
419
- #@ acf
420
  msgid "Export to XML"
421
  msgstr "Export als XML"
422
 
423
- #: core/controllers/export.php:242
424
- #: core/controllers/export.php:267
425
- #@ acf
426
  msgid "Export to PHP"
427
  msgstr "Export als PHP"
428
 
 
429
  #: core/controllers/export.php:253
430
- #@ acf
431
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
432
  msgstr "ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-Import-Plugin."
433
 
 
434
  #: core/controllers/export.php:254
435
- #@ acf
436
  msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
437
  msgstr "Importierte Felder-Gruppen <b>werden</b> in der Liste der bearbeitbaren Felder-Gruppen <b>angezeigt</b> um Felder-Gruppen zwischen WP-Websites auszutauschen."
438
 
 
439
  #: core/controllers/export.php:256
440
- #@ acf
441
  msgid "Select field group(s) from the list and click \"Export XML\""
442
  msgstr "Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren\""
443
 
 
444
  #: core/controllers/export.php:257
445
- #@ acf
446
  msgid "Save the .xml file when prompted"
447
  msgstr "Speichern Sie die .xml-Datei bei Nachfrage"
448
 
 
449
  #: core/controllers/export.php:258
450
- #@ acf
451
  msgid "Navigate to Tools &raquo; Import and select WordPress"
452
  msgstr "Wechseln Sie zu Werkzeuge &raquo; Importieren und wählen Sie WordPress"
453
 
 
454
  #: core/controllers/export.php:259
455
- #@ acf
456
  msgid "Install WP import plugin if prompted"
457
  msgstr "Installieren Sie das WP-Import-Plugin falls nötig"
458
 
 
459
  #: core/controllers/export.php:260
460
- #@ acf
461
  msgid "Upload and import your exported .xml file"
462
  msgstr "Importieren Sie Ihre exportierte .xml-Datei"
463
 
 
464
  #: core/controllers/export.php:261
465
- #@ acf
466
  msgid "Select your user and ignore Import Attachments"
467
  msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\""
468
 
 
469
  #: core/controllers/export.php:262
470
- #@ acf
471
  msgid "That's it! Happy WordPressing"
472
  msgstr "Das war's! Viel Spaß mit Wordpress!"
473
 
 
474
  #: core/controllers/export.php:268
475
- #@ acf
476
  msgid "ACF will create the PHP code to include in your theme."
477
  msgstr "ACF erstellt einen PHP-Code der in einem Theme verwendet werden kann. Diese Felder-Gruppen werden als <i>Registrierte Felder-Gruppen</i> bezeichnet."
478
 
479
- #: core/controllers/export.php:269
480
- #: core/controllers/export.php:310
481
- #@ acf
482
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
483
  msgstr "<i>Registrierte Felder-Gruppen</i> <b>werden nicht</b> in der Liste der zu bearbeitenden Felder-Gruppen angezeigt. Dies ist besonders für die Einbindung in Themes nützlich."
484
 
485
- #: core/controllers/export.php:270
486
- #: core/controllers/export.php:311
487
- #@ acf
488
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
489
  msgstr "Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die <i>Registrierte Felder-Gruppe</i> verwenden, werden die Felder im Bearbeitungs-Fenster doppelt angezeigt. Um dies zu verhindern, löschen Sie bitte die Felder-Gruppe oder entfernen den PHP-Code aus der Datei functions.php."
490
 
 
491
  #: core/controllers/export.php:272
492
- #@ acf
493
  msgid "Select field group(s) from the list and click \"Create PHP\""
494
  msgstr "Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken"
495
 
496
- #: core/controllers/export.php:273
497
- #: core/controllers/export.php:302
498
- #@ acf
499
  msgid "Copy the PHP code generated"
500
  msgstr "Den generierten PHP-Code kopieren"
501
 
502
- #: core/controllers/export.php:274
503
- #: core/controllers/export.php:303
504
- #@ acf
505
  msgid "Paste into your functions.php file"
506
  msgstr "In der Datei functions.php einfügen"
507
 
508
- #: core/controllers/export.php:275
509
- #: core/controllers/export.php:304
510
- #@ acf
511
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
512
  msgstr "Um ein Zusatz-Modul zu aktivieren, editieren Sie den PHP-Code in den ersten Zeilen des PHP-Codes in der Datei functions.php"
513
 
 
514
  #: core/controllers/export.php:295
515
- #@ acf
516
  msgid "Export Field Groups to PHP"
517
  msgstr "Felder-Gruppen als PHP exportieren"
518
 
519
- #: core/controllers/export.php:300
520
- #: core/fields/tab.php:65
521
- #@ acf
522
  msgid "Instructions"
523
  msgstr "Anweisungen"
524
 
 
525
  #: core/controllers/export.php:309
526
- #@ acf
527
  msgid "Notes"
528
  msgstr "Hinweise"
529
 
 
530
  #: core/controllers/export.php:316
531
- #@ acf
532
  msgid "Include in theme"
533
  msgstr "Im Theme einbinden"
534
 
 
535
  #: core/controllers/export.php:317
536
- #@ acf
537
  msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
538
  msgstr "Das Eigene Felder Plugin kann in ein Theme eingebunden werden. Kopieren Sie den Ordner des Eigene Felder Plugins in Ihren Theme Ordner und fügen den folgenden Code in Ihre Datei functions.php:"
539
 
 
540
  #: core/controllers/export.php:331
541
- #@ acf
542
  msgid "Back to export"
543
  msgstr "Zurück zum Export"
544
 
 
545
  #: core/controllers/export.php:352
546
- #@ acf
547
  msgid ""
548
  "/**\n"
549
  " * Install Add-ons\n"
@@ -563,16 +532,14 @@ msgid ""
563
  " */"
564
  msgstr ""
565
 
566
- #: core/controllers/export.php:370
567
- #: core/controllers/field_group.php:375
568
- #: core/controllers/field_group.php:437
569
- #: core/controllers/field_groups.php:148
570
- #@ acf
571
  msgid "Fields"
572
  msgstr "Felder"
573
 
 
574
  #: core/controllers/export.php:384
575
- #@ acf
576
  msgid ""
577
  "/**\n"
578
  " * Register Field Groups\n"
@@ -582,1558 +549,1480 @@ msgid ""
582
  " */"
583
  msgstr ""
584
 
 
585
  #: core/controllers/export.php:435
586
- #@ acf
587
  msgid "No field groups were selected"
588
  msgstr "Keine Felder-Gruppe ausgewählt"
589
 
 
590
  #: core/controllers/field_group.php:376
591
- #@ acf
592
  msgid "Location"
593
  msgstr "Position"
594
 
 
595
  #: core/controllers/field_group.php:439
596
- #@ acf
597
  msgid "Show Field Key:"
598
  msgstr "Zeige Feld-Schlüssel:"
599
 
600
- #: core/controllers/field_group.php:440
601
- #: core/fields/page_link.php:138
602
- #: core/fields/page_link.php:159
603
- #: core/fields/post_object.php:328
604
- #: core/fields/post_object.php:349
605
- #: core/fields/select.php:224
606
- #: core/fields/select.php:243
607
- #: core/fields/taxonomy.php:341
608
- #: core/fields/user.php:285
609
- #: core/fields/wysiwyg.php:229
610
- #: core/views/meta_box_fields.php:209
611
- #: core/views/meta_box_fields.php:232
612
- #@ acf
613
  msgid "No"
614
  msgstr "Nein"
615
 
616
- #: core/controllers/field_group.php:441
617
- #: core/fields/page_link.php:137
618
- #: core/fields/page_link.php:158
619
- #: core/fields/post_object.php:327
620
- #: core/fields/post_object.php:348
621
- #: core/fields/select.php:223
622
- #: core/fields/select.php:242
623
- #: core/fields/taxonomy.php:340
624
- #: core/fields/user.php:284
625
- #: core/fields/wysiwyg.php:228
626
- #: core/views/meta_box_fields.php:208
627
- #: core/views/meta_box_fields.php:231
628
- #@ acf
629
  msgid "Yes"
630
  msgstr "Ja"
631
 
 
632
  #: core/controllers/field_group.php:618
633
- #@ acf
634
  msgid "Front Page"
635
  msgstr "Startseite"
636
 
 
637
  #: core/controllers/field_group.php:619
638
- #@ acf
639
  msgid "Posts Page"
640
  msgstr "Beitragseite"
641
 
 
642
  #: core/controllers/field_group.php:620
643
- #@ acf
644
  msgid "Top Level Page (parent of 0)"
645
  msgstr "Hauptseite (keine Übergeordnete)"
646
 
 
647
  #: core/controllers/field_group.php:621
648
- #@ acf
649
  msgid "Parent Page (has children)"
650
  msgstr "Eltern-Seite (hat Unterseiten)"
651
 
 
652
  #: core/controllers/field_group.php:622
653
- #@ acf
654
  msgid "Child Page (has parent)"
655
  msgstr "Kinder-Seite (hat übergeordnete Seite)"
656
 
 
657
  #: core/controllers/field_group.php:630
658
- #@ acf
659
  msgid "Default Template"
660
  msgstr "Standard-Vorlage"
661
 
662
- #: core/controllers/field_group.php:722
663
- #: core/controllers/field_group.php:743
664
- #: core/controllers/field_group.php:750
665
- #: core/fields/file.php:184
666
- #: core/fields/image.php:170
667
- #: core/fields/page_link.php:109
668
- #: core/fields/post_object.php:274
669
- #: core/fields/post_object.php:298
670
- #: core/fields/relationship.php:574
671
- #: core/fields/relationship.php:598
672
  #: core/fields/user.php:229
673
- #@ acf
674
  msgid "All"
675
  msgstr "Alle"
676
 
 
677
  #: core/controllers/field_groups.php:147
678
- #@ default
679
  msgid "Title"
680
  msgstr "Titel"
681
 
682
- #: core/controllers/field_groups.php:216
683
- #: core/controllers/field_groups.php:257
684
- #@ acf
685
  msgid "Changelog"
686
  msgstr "Versionshinweise"
687
 
 
688
  #: core/controllers/field_groups.php:217
689
- #@ acf
690
  msgid "See what's new in"
691
  msgstr "Neuerungen von"
692
 
 
693
  #: core/controllers/field_groups.php:217
694
- #@ acf
695
  msgid "version"
696
  msgstr "Version"
697
 
 
698
  #: core/controllers/field_groups.php:219
699
- #@ acf
700
  msgid "Resources"
701
  msgstr "Ressourcen (engl.)"
702
 
 
703
  #: core/controllers/field_groups.php:221
704
- #@ acf
705
  msgid "Getting Started"
706
  msgstr "Erste Schritte"
707
 
 
708
  #: core/controllers/field_groups.php:222
709
- #@ acf
710
  msgid "Field Types"
711
  msgstr "Feld Typen"
712
 
 
713
  #: core/controllers/field_groups.php:223
714
- #@ acf
715
  msgid "Functions"
716
  msgstr "Funktionen"
717
 
 
718
  #: core/controllers/field_groups.php:224
719
- #@ acf
720
  msgid "Actions"
721
  msgstr "Aktionen"
722
 
723
- #: core/controllers/field_groups.php:225
724
- #: core/fields/relationship.php:617
725
- #@ acf
726
  msgid "Filters"
727
  msgstr "Filter"
728
 
 
729
  #: core/controllers/field_groups.php:226
730
- #@ acf
731
  msgid "'How to' guides"
732
  msgstr "'How to' Anleitungen"
733
 
 
734
  #: core/controllers/field_groups.php:227
735
- #@ acf
736
  msgid "Tutorials"
737
  msgstr "Tutorials"
738
 
 
739
  #: core/controllers/field_groups.php:232
740
- #@ acf
741
  msgid "Created by"
742
  msgstr "Erstellt von"
743
 
 
744
  #: core/controllers/field_groups.php:235
745
- #@ acf
746
  msgid "Vote"
747
  msgstr "Bewerten"
748
 
 
749
  #: core/controllers/field_groups.php:236
750
- #@ acf
751
  msgid "Follow"
752
  msgstr "Folgen"
753
 
 
754
  #: core/controllers/field_groups.php:248
755
- #@ acf
756
  msgid "Welcome to Advanced Custom Fields"
757
  msgstr "Willkommen zu Eigene Felder (ACF)"
758
 
 
759
  #: core/controllers/field_groups.php:249
760
- #@ acf
761
  msgid "Thank you for updating to the latest version!"
762
  msgstr "Danke für das Update auf die aktuellste Version!"
763
 
 
764
  #: core/controllers/field_groups.php:249
765
- #@ acf
766
  msgid "is more polished and enjoyable than ever before. We hope you like it."
767
  msgstr "ist besser und attraktiver als je zuvor. Wir hoffen es gefällt!"
768
 
 
769
  #: core/controllers/field_groups.php:256
770
- #@ acf
771
  msgid "What’s New"
772
  msgstr "Was ist neu"
773
 
 
774
  #: core/controllers/field_groups.php:259
775
- #@ acf
776
  msgid "Download Add-ons"
777
  msgstr "Zusatz-Module herunterladen"
778
 
 
779
  #: core/controllers/field_groups.php:313
780
- #@ acf
781
  msgid "Activation codes have grown into plugins!"
782
  msgstr "Aktivierungs-Codes sind Schnee von gestern!"
783
 
 
784
  #: core/controllers/field_groups.php:314
785
- #@ acf
786
  msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
787
  msgstr "Zusatz-Module werden nun als eigenständige Plugins angeboten und nach der Installation aktiviert. Und obwohl die Zusatz-Module nicht im WordPress Plugin-Verzeichnis aufgeführt sind, können Sie dennoch über die Update-Funktion aktuell gehalten werden."
788
 
 
789
  #: core/controllers/field_groups.php:320
790
- #@ acf
791
  msgid "All previous Add-ons have been successfully installed"
792
  msgstr "Alle bisherigen Zusatz-Module wurden erfolgreich aktualisiert"
793
 
 
794
  #: core/controllers/field_groups.php:324
795
- #@ acf
796
  msgid "This website uses premium Add-ons which need to be downloaded"
797
  msgstr "Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun heruntergeladen werden müssen."
798
 
 
799
  #: core/controllers/field_groups.php:324
800
- #@ acf
801
  msgid "Download your activated Add-ons"
802
  msgstr "Lade die aktivierten Zusatz-Module"
803
 
 
804
  #: core/controllers/field_groups.php:329
805
- #@ acf
806
  msgid "This website does not use premium Add-ons and will not be affected by this change."
807
  msgstr "Diese Webseite nutzt keine Zusatz-Module mit Aktivierungs-Code und ist dadurch nicht betroffen."
808
 
 
809
  #: core/controllers/field_groups.php:339
810
- #@ acf
811
  msgid "Easier Development"
812
  msgstr "Noch einfachere Entwicklungsmöglichkeiten"
813
 
 
814
  #: core/controllers/field_groups.php:341
815
- #@ acf
816
  msgid "New Field Types"
817
  msgstr "Neue Feld-Typen"
818
 
 
819
  #: core/controllers/field_groups.php:343
820
- #@ acf
821
  msgid "Taxonomy Field"
822
  msgstr "Artikel-Beziehung"
823
 
 
824
  #: core/controllers/field_groups.php:344
825
- #@ acf
826
  msgid "User Field"
827
  msgstr "Benutzer Feld"
828
 
 
829
  #: core/controllers/field_groups.php:345
830
- #@ acf
831
  msgid "Email Field"
832
  msgstr "E-Mail Feld"
833
 
 
834
  #: core/controllers/field_groups.php:346
835
- #@ acf
836
  msgid "Password Field"
837
  msgstr "Passwort Feld"
838
 
 
839
  #: core/controllers/field_groups.php:348
840
- #@ acf
841
  msgid "Custom Field Types"
842
  msgstr "Eigene Felder"
843
 
 
844
  #: core/controllers/field_groups.php:349
845
- #@ acf
846
  msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
847
  msgstr "Nie war es einfacher benutzerdefinierte Felder zu erstellen. Leider sind die Feld-Typen der Version 3 nicht kompatibel mit den Feld-Typen der Version 4."
848
 
 
849
  #: core/controllers/field_groups.php:350
850
- #@ acf
851
  msgid "Migrating your field types is easy, please"
852
  msgstr "Das Anpassen der Feld-Typen ist einfach: Bitte nutzen Sie"
853
 
 
854
  #: core/controllers/field_groups.php:350
855
- #@ acf
856
  msgid "follow this tutorial"
857
  msgstr "dieses Tutorial (engl.)"
858
 
 
859
  #: core/controllers/field_groups.php:350
860
- #@ acf
861
  msgid "to learn more."
862
  msgstr ", um mehr darüber zu erfahren."
863
 
 
864
  #: core/controllers/field_groups.php:352
865
- #@ acf
866
  msgid "Actions &amp; Filters"
867
  msgstr "Actions &amp; Filters"
868
 
 
869
  #: core/controllers/field_groups.php:353
870
- #@ acf
871
  msgid "read this guide"
872
  msgstr "diese Hinweise (engl.)"
873
 
 
874
  #: core/controllers/field_groups.php:353
875
- #@ acf
876
  msgid "to find the updated naming convention."
877
  msgstr "für detaillierte Informationen."
878
 
 
879
  #: core/controllers/field_groups.php:355
880
- #@ acf
881
  msgid "Preview draft is now working!"
882
  msgstr "Die Vorschau funktioniert jetzt auch!"
883
 
 
884
  #: core/controllers/field_groups.php:356
885
- #@ acf
886
  msgid "This bug has been squashed along with many other little critters!"
887
  msgstr "Dieser Fehler wurde zusammen mit vielen anderen behoben!"
888
 
 
889
  #: core/controllers/field_groups.php:356
890
- #@ acf
891
  msgid "See the full changelog"
892
  msgstr "Alle Anpassungen (engl.)"
893
 
 
894
  #: core/controllers/field_groups.php:360
895
- #@ acf
896
  msgid "Important"
897
  msgstr "Wichtig"
898
 
 
899
  #: core/controllers/field_groups.php:362
900
- #@ acf
901
  msgid "Database Changes"
902
  msgstr "Datenbank Anpassungen"
903
 
 
904
  #: core/controllers/field_groups.php:363
905
- #@ acf
906
  msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
907
  msgstr "Es wurden <strong>keine</strong> Änderungen in der Datenbank-Struktur zwischen Version 3 und 4 vorgenommen. Das bedeutet, dass Sie jederzeit zurück zu Version 3 wechseln können."
908
 
 
909
  #: core/controllers/field_groups.php:365
910
- #@ acf
911
  msgid "Potential Issues"
912
  msgstr "Mögliche Probleme"
913
 
 
914
  #: core/controllers/field_groups.php:366
915
- #@ acf
916
- msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
917
  msgstr "Durch die umfänglichen Änderungen hinsichtlich der Zusatz-Module, der Feld-Typen und der <i>Actions/Filters</i>, kann es passieren, dass Ihre Webseite nicht hundertprozentig funktioniert. Von daher ist es wichtig, dass Sie den"
918
 
 
919
  #: core/controllers/field_groups.php:366
920
- #@ acf
921
  msgid "Migrating from v3 to v4"
922
  msgstr "Leitfaden Migration von v3 zu v4 (engl.)"
923
 
 
924
  #: core/controllers/field_groups.php:366
925
- #@ acf
926
  msgid "guide to view the full list of changes."
927
  msgstr "unbedingt lesen, um einen Überblick über alle Änderungen zu erhalten."
928
 
 
929
  #: core/controllers/field_groups.php:369
930
- #@ acf
931
  msgid "Really Important!"
932
  msgstr "Wirklich wichtig!"
933
 
 
934
  #: core/controllers/field_groups.php:369
935
- #@ acf
936
  msgid "version 3"
937
  msgstr "Version 3"
938
 
 
939
  #: core/controllers/field_groups.php:369
940
- #@ acf
941
  msgid "of this plugin."
942
  msgstr "dieses Plugins zurückwechseln."
943
 
 
944
  #: core/controllers/field_groups.php:374
945
- #@ acf
946
  msgid "Thank You"
947
  msgstr "Danke!"
948
 
 
949
  #: core/controllers/field_groups.php:375
950
- #@ acf
951
  msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
952
  msgstr "Mein <strong>besonderer</strong> Dank geht an all diejenigen, die beim Testen der Version geholfen haben und für all die Unterstützung die ich erhalten habe."
953
 
 
954
  #: core/controllers/field_groups.php:376
955
- #@ acf
956
  msgid "Without you all, this release would not have been possible!"
957
  msgstr "Ohne diese Unterstützung wäre diese Version nie entstanden!"
958
 
 
959
  #: core/controllers/field_groups.php:380
960
- #@ acf
961
  msgid "Changelog for"
962
  msgstr "Versionshinweise für"
963
 
 
964
  #: core/controllers/field_groups.php:396
965
- #@ acf
966
  msgid "Learn more"
967
  msgstr "Ich möchte mehr wissen"
968
 
 
969
  #: core/controllers/field_groups.php:402
970
- #@ acf
971
  msgid "Overview"
972
  msgstr "Übersicht"
973
 
 
974
  #: core/controllers/field_groups.php:404
975
- #@ acf
976
  msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
977
  msgstr "Bisher wurden alle Zusatz-Module über einen Aktivierungscode (gekauft im ACF Store) aktiviert. In Version 4 werden alle Zusatz-Module als separate Plugins angeboten, die einzeln heruntergeladen, installiert und aktualisiert werden müssen."
978
 
 
979
  #: core/controllers/field_groups.php:406
980
- #@ acf
981
  msgid "This page will assist you in downloading and installing each available Add-on."
982
  msgstr "Diese Seite soll Ihnen beim Herunterladen und bei der Installation Ihrer Zusatz-Module helfen."
983
 
 
984
  #: core/controllers/field_groups.php:408
985
- #@ acf
986
  msgid "Available Add-ons"
987
  msgstr "Verfügbare Zusatz-Module"
988
 
 
989
  #: core/controllers/field_groups.php:410
990
- #@ acf
991
  msgid "The following Add-ons have been detected as activated on this website."
992
  msgstr "Die folgenden Zusatz-Module wurde als aktive Zusatz-Module erkannt."
993
 
 
994
  #: core/controllers/field_groups.php:423
995
- #@ acf
996
  msgid "Name"
997
  msgstr "Name"
998
 
 
999
  #: core/controllers/field_groups.php:424
1000
- #@ acf
1001
  msgid "Activation Code"
1002
  msgstr "Aktivierungs-Code"
1003
 
 
1004
  #: core/controllers/field_groups.php:456
1005
- #@ acf
1006
  msgid "Flexible Content"
1007
  msgstr "Flexibler Inhalt"
1008
 
 
1009
  #: core/controllers/field_groups.php:466
1010
- #@ acf
1011
  msgid "Installation"
1012
  msgstr "Installation"
1013
 
 
1014
  #: core/controllers/field_groups.php:468
1015
- #@ acf
1016
  msgid "For each Add-on available, please perform the following:"
1017
  msgstr "Für jedes Zusatz-Modul gehen Sie wie folgt vor:"
1018
 
 
1019
  #: core/controllers/field_groups.php:470
1020
- #@ acf
1021
  msgid "Download the Add-on plugin (.zip file) to your desktop"
1022
  msgstr "Laden Sie das Zusatz-Modul Plugin (.zip Datei) herunter"
1023
 
 
1024
  #: core/controllers/field_groups.php:471
1025
- #@ acf
1026
  msgid "Navigate to"
1027
  msgstr "Gehen Sie zu"
1028
 
 
1029
  #: core/controllers/field_groups.php:471
1030
- #@ acf
1031
  msgid "Plugins > Add New > Upload"
1032
  msgstr "Plugins > Installieren > Hochladen"
1033
 
 
1034
  #: core/controllers/field_groups.php:472
1035
- #@ acf
1036
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1037
  msgstr "Wählen Sie über \"Durchsuchen\" die .zip-Datei und laden so das Zusatz-Modul in WordPress"
1038
 
 
1039
  #: core/controllers/field_groups.php:473
1040
- #@ acf
1041
  msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1042
  msgstr "Wenn das Plugin hochgeladen und installiert wurde, aktivieren Sie das Plugin über den \"Aktivieren\"-Link"
1043
 
 
1044
  #: core/controllers/field_groups.php:474
1045
- #@ acf
1046
  msgid "The Add-on is now installed and activated!"
1047
  msgstr "Das Zusatz-Modul ist nun installiert und aktiviert!"
1048
 
 
1049
  #: core/controllers/field_groups.php:488
1050
- #@ acf
1051
  msgid "Awesome. Let's get to work"
1052
  msgstr "Toll. Dann mal los!"
1053
 
 
1054
  #: core/controllers/input.php:499
1055
- #@ acf
1056
  msgid "Validation Failed. One or more fields below are required."
1057
  msgstr "Fehler bei Überprüfung: Ein oder mehrere Felder werden benötigt."
1058
 
 
1059
  #: core/fields/relationship.php:28
1060
- #@ acf
1061
  msgid "Maximum values reached ( {max} values )"
1062
  msgstr "Max. Werte erreicht ( {max} Werte )"
1063
 
 
1064
  #: core/controllers/upgrade.php:86
1065
- #@ acf
1066
  msgid "Upgrade"
1067
  msgstr "Aktualisieren"
1068
 
 
1069
  #: core/controllers/upgrade.php:684
1070
- #@ acf
1071
  msgid "Modifying field group options 'show on page'"
1072
  msgstr "Anpassung Feld-Gruppe Optionen 'Zeige auf Seite'"
1073
 
 
1074
  #: core/controllers/upgrade.php:738
1075
- #@ acf
1076
  msgid "Modifying field option 'taxonomy'"
1077
  msgstr "Anpassung Feld-Optionen 'Taxonomie'"
1078
 
 
1079
  #: core/controllers/upgrade.php:835
1080
- #@ acf
1081
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1082
  msgstr "Bewege Benutzer Felder von 'wp_options' nach 'wp_usermeta'"
1083
 
1084
- #: core/fields/_base.php:124
1085
- #: core/views/meta_box_location.php:74
1086
- #@ acf
1087
  msgid "Basic"
1088
  msgstr "Grundlegend"
1089
 
1090
- #: core/fields/checkbox.php:19
1091
- #: core/fields/taxonomy.php:317
1092
- #@ acf
1093
  msgid "Checkbox"
1094
  msgstr "Checkbox"
1095
 
1096
- #: core/fields/checkbox.php:20
1097
- #: core/fields/radio.php:19
1098
- #: core/fields/select.php:19
1099
- #: core/fields/true_false.php:20
1100
- #@ acf
1101
  msgid "Choice"
1102
  msgstr "Auswahlmöglichkeiten"
1103
 
1104
- #: core/fields/checkbox.php:137
1105
- #: core/fields/radio.php:144
1106
  #: core/fields/select.php:177
1107
- #@ acf
1108
  msgid "Choices"
1109
  msgstr "Auswahlmöglichkeiten"
1110
 
1111
- #: core/fields/checkbox.php:138
1112
- #: core/fields/select.php:178
1113
- #@ acf
1114
  msgid "Enter each choice on a new line."
1115
  msgstr "Eine Auswahlmöglichkeit pro Zeile"
1116
 
1117
- #: core/fields/checkbox.php:139
1118
- #: core/fields/select.php:179
1119
- #@ acf
1120
  msgid "For more control, you may specify both a value and label like this:"
1121
  msgstr "Für eine einfachere Bearbeitung, kann auch der Wert und eine Beschreibung wie in diesem Beispiel angeben werden:"
1122
 
1123
- #: core/fields/checkbox.php:140
1124
- #: core/fields/radio.php:150
1125
  #: core/fields/select.php:180
1126
- #@ acf
1127
  msgid "red : Red"
1128
  msgstr "rot : Rot"
1129
 
1130
- #: core/fields/checkbox.php:140
1131
- #: core/fields/radio.php:151
1132
  #: core/fields/select.php:180
1133
- #@ acf
1134
  msgid "blue : Blue"
1135
  msgstr "blau : Blau"
1136
 
1137
- #: core/fields/checkbox.php:157
1138
- #: core/fields/color_picker.php:89
1139
- #: core/fields/email.php:69
1140
- #: core/fields/number.php:116
1141
- #: core/fields/radio.php:193
1142
- #: core/fields/select.php:197
1143
- #: core/fields/text.php:116
1144
- #: core/fields/textarea.php:96
1145
- #: core/fields/true_false.php:94
1146
- #: core/fields/wysiwyg.php:171
1147
- #@ acf
1148
  msgid "Default Value"
1149
  msgstr "Standardwert"
1150
 
1151
- #: core/fields/checkbox.php:158
1152
- #: core/fields/select.php:198
1153
- #@ acf
1154
  msgid "Enter each default value on a new line"
1155
  msgstr "Einen Standardwert pro Zeile. Erfordert, dass die Option 'Mehrere Werte auswählen?' aktiviert ist."
1156
 
 
1157
  #: core/fields/color_picker.php:19
1158
- #@ acf
1159
  msgid "Color Picker"
1160
  msgstr "Farbe"
1161
 
1162
- #: core/fields/color_picker.php:20
1163
- #: core/fields/date_picker/date_picker.php:23
1164
- #@ acf
1165
  msgid "jQuery"
1166
  msgstr "jQuery"
1167
 
 
1168
  #: core/fields/dummy.php:19
1169
- #@ default
1170
  msgid "Dummy"
1171
  msgstr "Dummy"
1172
 
 
1173
  #: core/fields/email.php:19
1174
- #@ acf
1175
  msgid "Email"
1176
  msgstr "E-Mail"
1177
 
 
1178
  #: core/fields/file.php:19
1179
- #@ acf
1180
  msgid "File"
1181
  msgstr "Datei"
1182
 
1183
- #: core/fields/file.php:20
1184
- #: core/fields/image.php:20
1185
- #: core/fields/wysiwyg.php:20
1186
- #@ acf
1187
  msgid "Content"
1188
  msgstr "Inhalt"
1189
 
 
1190
  #: core/fields/image.php:83
1191
- #@ acf
1192
  msgid "Remove"
1193
  msgstr "Entfernen"
1194
 
 
1195
  #: core/fields/file.php:121
1196
- #@ acf
1197
  msgid "No File Selected"
1198
  msgstr "Keine Datei ausgewählt"
1199
 
 
1200
  #: core/fields/file.php:121
1201
- #@ acf
1202
  msgid "Add File"
1203
  msgstr "Datei hinzufügen"
1204
 
1205
- #: core/fields/file.php:151
1206
- #: core/fields/image.php:118
1207
  #: core/fields/taxonomy.php:365
1208
- #@ acf
1209
  msgid "Return Value"
1210
  msgstr "Rückgabewert"
1211
 
 
1212
  #: core/fields/file.php:162
1213
- #@ acf
1214
  msgid "File Object"
1215
  msgstr "Datei"
1216
 
 
1217
  #: core/fields/file.php:163
1218
- #@ acf
1219
  msgid "File URL"
1220
  msgstr "Datei-URL"
1221
 
 
1222
  #: core/fields/file.php:164
1223
- #@ acf
1224
  msgid "File ID"
1225
  msgstr "Datei-ID"
1226
 
 
1227
  #: core/fields/file.php:26
1228
- #@ acf
1229
  msgid "Select File"
1230
  msgstr "Datei auswählen"
1231
 
 
1232
  #: core/fields/file.php:28
1233
- #@ acf
1234
  msgid "Update File"
1235
  msgstr "Datei aktualisieren"
1236
 
 
1237
  #: core/fields/image.php:19
1238
- #@ acf
1239
  msgid "Image"
1240
  msgstr "Bild"
1241
 
 
1242
  #: core/fields/image.php:90
1243
- #@ acf
1244
  msgid "No image selected"
1245
  msgstr "Kein Bild ausgewählt"
1246
 
 
1247
  #: core/fields/image.php:90
1248
- #@ acf
1249
  msgid "Add Image"
1250
  msgstr "Bild hinzufügen"
1251
 
 
1252
  #: core/fields/image.php:129
1253
- #@ acf
1254
  msgid "Image Object"
1255
  msgstr "Bild"
1256
 
 
1257
  #: core/fields/image.php:130
1258
- #@ acf
1259
  msgid "Image URL"
1260
  msgstr "Bild-URL"
1261
 
 
1262
  #: core/fields/image.php:131
1263
- #@ acf
1264
  msgid "Image ID"
1265
  msgstr "Bild-ID"
1266
 
 
1267
  #: core/fields/image.php:139
1268
- #@ acf
1269
  msgid "Preview Size"
1270
  msgstr "Größe der Vorschau"
1271
 
 
1272
  #: core/fields/image.php:27
1273
- #@ acf
1274
  msgid "Select Image"
1275
  msgstr "Bild auswählen"
1276
 
 
1277
  #: core/fields/image.php:29
1278
- #@ acf
1279
  msgid "Update Image"
1280
  msgstr "Bild aktualisieren"
1281
 
1282
- #: core/fields/message.php:19
1283
- #: core/fields/message.php:70
1284
  #: core/fields/true_false.php:79
1285
- #@ acf
1286
  msgid "Message"
1287
  msgstr "Nachricht"
1288
 
 
1289
  #: core/fields/message.php:71
1290
- #@ acf
1291
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1292
  msgstr "Der Text &amp; HTML wird vor dem nächsten Feld angezeigt"
1293
 
 
1294
  #: core/fields/message.php:72
1295
- #@ acf
1296
  msgid "Please note that all text will first be passed through the wp function "
1297
  msgstr "Der gesamte Text wird zuerst gefiltert durch die WP Funktion "
1298
 
 
1299
  #: core/fields/number.php:19
1300
- #@ acf
1301
  msgid "Number"
1302
  msgstr "Nummer"
1303
 
 
1304
  #: core/fields/page_link.php:18
1305
- #@ acf
1306
  msgid "Page Link"
1307
  msgstr "Link zu Seite"
1308
 
1309
- #: core/fields/page_link.php:19
1310
- #: core/fields/post_object.php:19
1311
- #: core/fields/relationship.php:19
1312
- #: core/fields/taxonomy.php:19
1313
  #: core/fields/user.php:19
1314
- #@ acf
1315
  msgid "Relational"
1316
  msgstr "Beziehung"
1317
 
1318
- #: core/fields/page_link.php:103
1319
- #: core/fields/post_object.php:268
1320
- #: core/fields/relationship.php:568
1321
- #: core/fields/relationship.php:647
1322
  #: core/views/meta_box_location.php:75
1323
- #@ acf
1324
  msgid "Post Type"
1325
  msgstr "Artikel-Typ"
1326
 
1327
- #: core/fields/page_link.php:127
1328
- #: core/fields/post_object.php:317
1329
- #: core/fields/select.php:214
1330
- #: core/fields/taxonomy.php:331
1331
  #: core/fields/user.php:275
1332
- #@ acf
1333
  msgid "Allow Null?"
1334
  msgstr "Nichts (NULL) erlauben?"
1335
 
1336
- #: core/fields/page_link.php:148
1337
- #: core/fields/post_object.php:338
1338
  #: core/fields/select.php:233
1339
- #@ acf
1340
  msgid "Select multiple values?"
1341
  msgstr "Mehrere Werte auswählen?"
1342
 
 
1343
  #: core/fields/password.php:19
1344
- #@ acf
1345
  msgid "Password"
1346
  msgstr "Passwort"
1347
 
 
1348
  #: core/fields/post_object.php:18
1349
- #@ acf
1350
  msgid "Post Object"
1351
  msgstr "Artikel"
1352
 
1353
- #: core/fields/post_object.php:292
1354
- #: core/fields/relationship.php:592
1355
- #@ acf
1356
  msgid "Filter from Taxonomy"
1357
  msgstr "Mit Beziehung filtern"
1358
 
 
1359
  #: core/fields/radio.php:18
1360
- #@ acf
1361
  msgid "Radio Button"
1362
  msgstr "Radio Button"
1363
 
 
1364
  #: core/fields/radio.php:145
1365
- #@ acf
1366
  msgid "Enter your choices one per line"
1367
  msgstr "Eine Auswahlmöglichkeit pro Zeile"
1368
 
 
1369
  #: core/fields/radio.php:147
1370
- #@ acf
1371
  msgid "Red"
1372
  msgstr "Rot"
1373
 
 
1374
  #: core/fields/radio.php:148
1375
- #@ acf
1376
  msgid "Blue"
1377
  msgstr "Blau"
1378
 
1379
- #: core/fields/checkbox.php:185
1380
- #: core/fields/radio.php:220
1381
- #@ acf
1382
  msgid "Vertical"
1383
  msgstr "Vertikal"
1384
 
1385
- #: core/fields/checkbox.php:186
1386
- #: core/fields/radio.php:221
1387
- #@ acf
1388
  msgid "Horizontal"
1389
  msgstr "Horizontal"
1390
 
 
1391
  #: core/fields/relationship.php:18
1392
- #@ acf
1393
  msgid "Relationship"
1394
  msgstr "Beziehung"
1395
 
 
1396
  #: core/fields/relationship.php:626
1397
- #@ acf
1398
  msgid "Search"
1399
  msgstr "Suchen"
1400
 
 
1401
  #: core/fields/relationship.php:627
1402
- #@ acf
1403
  msgid "Post Type Select"
1404
  msgstr "Auswahl Artikel-Typ"
1405
 
 
1406
  #: core/fields/relationship.php:635
1407
- #@ acf
1408
  msgid "Elements"
1409
  msgstr "Zeige Spalten"
1410
 
 
1411
  #: core/fields/relationship.php:636
1412
- #@ acf
1413
  msgid "Selected elements will be displayed in each result"
1414
  msgstr "Ausgewählte Optionen werden in der Liste als Spalten angezeigt"
1415
 
1416
- #: core/fields/relationship.php:645
1417
- #: core/views/meta_box_options.php:103
1418
- #@ acf
1419
- #@ default
1420
  msgid "Featured Image"
1421
  msgstr "Artikelbild"
1422
 
 
1423
  #: core/fields/relationship.php:646
1424
- #@ acf
1425
  msgid "Post Title"
1426
  msgstr "Beitrag-/Seiten-Titel"
1427
 
 
1428
  #: core/fields/relationship.php:658
1429
- #@ acf
1430
  msgid "Maximum posts"
1431
  msgstr "Max. Artikel"
1432
 
1433
- #: core/fields/select.php:18
1434
- #: core/fields/select.php:109
1435
- #: core/fields/taxonomy.php:322
1436
- #: core/fields/user.php:266
1437
- #@ acf
1438
  msgid "Select"
1439
  msgstr "Auswahlmenü"
1440
 
 
1441
  #: core/fields/tab.php:19
1442
- #@ acf
1443
  msgid "Tab"
1444
  msgstr "Tab"
1445
 
 
1446
  #: core/fields/tab.php:68
1447
- #@ acf
1448
  msgid "All fields proceeding this \"tab field\" (or until another \"tab field\" is defined) will appear grouped on the edit screen."
1449
  msgstr "Alle Felder nach diesem \"Tab Feld\" (oder bis ein neues \"Tab Feld\" definiert ist) werden innerhalb eines Tabs gruppiert."
1450
 
 
1451
  #: core/fields/tab.php:69
1452
- #@ acf
1453
  msgid "You can use multiple tabs to break up your fields into sections."
1454
  msgstr "Es können mehrere Tabs definiert werden, um die Felder in mehrere Tabs aufzuteilen."
1455
 
1456
- #: core/fields/taxonomy.php:18
1457
- #: core/fields/taxonomy.php:276
1458
- #@ acf
1459
  msgid "Taxonomy"
1460
  msgstr "Artikel-Beziehung"
1461
 
1462
- #: core/fields/taxonomy.php:211
1463
- #: core/fields/taxonomy.php:220
1464
- #@ acf
1465
  msgid "None"
1466
  msgstr "Nur Text"
1467
 
1468
- #: core/fields/taxonomy.php:316
1469
- #: core/fields/user.php:260
1470
- #@ acf
1471
  msgid "Multiple Values"
1472
  msgstr "Mehrere Werte auswählen?"
1473
 
1474
- #: core/fields/taxonomy.php:318
1475
- #: core/fields/user.php:262
1476
- #@ acf
1477
  msgid "Multi Select"
1478
  msgstr "Auswahlmenü"
1479
 
1480
- #: core/fields/taxonomy.php:320
1481
- #: core/fields/user.php:264
1482
- #@ acf
1483
  msgid "Single Value"
1484
  msgstr "Einzelne Werte"
1485
 
 
1486
  #: core/fields/taxonomy.php:321
1487
- #@ acf
1488
  msgid "Radio Buttons"
1489
  msgstr "Radio Button"
1490
 
 
1491
  #: core/fields/taxonomy.php:350
1492
- #@ acf
1493
  msgid "Load & Save Terms to Post"
1494
  msgstr "Lade & Speichere Einträge im Artikel"
1495
 
 
1496
  #: core/fields/taxonomy.php:358
1497
- #@ acf
1498
  msgid "Load value based on the post's terms and update the post's terms on save"
1499
  msgstr "Lade Einträge basierend auf dem Beitrag und aktualisiere die Einträge beim Speichern"
1500
 
 
1501
  #: core/fields/taxonomy.php:375
1502
- #@ acf
1503
  msgid "Term Object"
1504
  msgstr "Datei"
1505
 
 
1506
  #: core/fields/taxonomy.php:376
1507
- #@ acf
1508
  msgid "Term ID"
1509
  msgstr "Term ID"
1510
 
 
1511
  #: core/fields/text.php:19
1512
- #@ acf
1513
  msgid "Text"
1514
  msgstr "Text"
1515
 
1516
- #: core/fields/text.php:131
1517
- #: core/fields/textarea.php:111
1518
- #@ acf
1519
  msgid "Formatting"
1520
  msgstr "Formatierung"
1521
 
 
1522
  #: core/fields/textarea.php:19
1523
- #@ acf
1524
  msgid "Text Area"
1525
  msgstr "Textfeld"
1526
 
 
1527
  #: core/fields/true_false.php:19
1528
- #@ acf
1529
  msgid "True / False"
1530
  msgstr "Ja/Nein"
1531
 
 
1532
  #: core/fields/true_false.php:80
1533
- #@ acf
1534
  msgid "eg. Show extra content"
1535
  msgstr "z.B. Mehr Inhalt anzeigen"
1536
 
 
1537
  #: core/fields/user.php:18
1538
- #@ acf
1539
  msgid "User"
1540
  msgstr "Benutzer"
1541
 
 
1542
  #: core/fields/user.php:224
1543
- #@ acf
1544
  msgid "Filter by role"
1545
  msgstr "Filter nach Benutzer-Rollen"
1546
 
 
1547
  #: core/fields/wysiwyg.php:19
1548
- #@ acf
1549
  msgid "Wysiwyg Editor"
1550
  msgstr "WYSIWYG-Editor"
1551
 
 
1552
  #: core/fields/wysiwyg.php:186
1553
- #@ acf
1554
  msgid "Toolbar"
1555
  msgstr "Werkzeugleiste"
1556
 
 
1557
  #: core/fields/wysiwyg.php:218
1558
- #@ acf
1559
  msgid "Show Media Upload Buttons?"
1560
  msgstr "Schaltflächen zum Hochladen von Medien anzeigen?"
1561
 
 
1562
  #: core/fields/date_picker/date_picker.php:22
1563
- #@ acf
1564
  msgid "Date Picker"
1565
  msgstr "Datum"
1566
 
 
1567
  #: core/fields/date_picker/date_picker.php:30
1568
- #@ acf
1569
  msgid "Done"
1570
  msgstr "Fertig"
1571
 
 
1572
  #: core/fields/date_picker/date_picker.php:31
1573
- #@ acf
1574
  msgid "Today"
1575
  msgstr "Heute"
1576
 
 
1577
  #: core/fields/date_picker/date_picker.php:34
1578
- #@ acf
1579
  msgid "Show a different month"
1580
  msgstr "Zeige einen anderen Monat"
1581
 
 
1582
  #: core/fields/date_picker/date_picker.php:105
1583
- #@ acf
1584
  msgid "Save format"
1585
  msgstr "Daten-Format"
1586
 
 
1587
  #: core/fields/date_picker/date_picker.php:106
1588
- #@ acf
1589
- msgid "This format will determin the value saved to the database and returned via the API"
1590
  msgstr "Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben."
1591
 
 
1592
  #: core/fields/date_picker/date_picker.php:107
1593
- #@ acf
1594
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1595
  msgstr "\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über"
1596
 
 
1597
  #: core/fields/date_picker/date_picker.php:107
1598
  #: core/fields/date_picker/date_picker.php:123
1599
- #@ acf
1600
  msgid "jQuery date formats"
1601
  msgstr "jQuery-Datums-Format"
1602
 
 
1603
  #: core/fields/date_picker/date_picker.php:121
1604
- #@ acf
1605
  msgid "Display format"
1606
  msgstr "Darstellungs-Format"
1607
 
 
1608
  #: core/fields/date_picker/date_picker.php:122
1609
- #@ acf
1610
  msgid "This format will be seen by the user when entering a value"
1611
  msgstr "Dieses Format wird dem Benutzer angezeigt."
1612
 
 
1613
  #: core/fields/date_picker/date_picker.php:123
1614
- #@ acf
1615
  msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1616
  msgstr "\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie mehr über"
1617
 
 
1618
  #: core/fields/date_picker/date_picker.php:137
1619
- #@ acf
1620
  msgid "Week Starts On"
1621
  msgstr "Woche beginnt am"
1622
 
 
1623
  #: core/views/meta_box_fields.php:58
1624
- #@ acf
1625
  msgid "Field type does not exist"
1626
  msgstr "Fehler: Feld-Typ existiert nicht!"
1627
 
 
1628
  #: core/views/meta_box_fields.php:63
1629
- #@ acf
1630
  msgid "Move to trash. Are you sure?"
1631
  msgstr "Wirklich in den Papierkorb verschieben?"
1632
 
 
1633
  #: core/views/meta_box_fields.php:64
1634
- #@ acf
1635
  msgid "checked"
1636
  msgstr "ausgewählt"
1637
 
 
1638
  #: core/views/meta_box_fields.php:65
1639
- #@ acf
1640
  msgid "No toggle fields available"
1641
  msgstr "Keine Felder für Bedingungen vorhanden"
1642
 
 
1643
  #: core/views/meta_box_fields.php:67
1644
- #@ acf
1645
  msgid "copy"
1646
  msgstr "kopiere"
1647
 
 
1648
  #: core/views/meta_box_fields.php:92
1649
- #@ acf
1650
  msgid "Field Key"
1651
  msgstr "Feld-Schlüssel"
1652
 
 
1653
  #: core/views/meta_box_fields.php:104
1654
- #@ acf
1655
  msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
1656
  msgstr "Keine Felder vorhanden. Wählen Sie <strong>+ Feld hinzufügen</strong> und erstellen Sie das erste Feld."
1657
 
 
1658
  #: core/views/meta_box_fields.php:188
1659
- #@ acf
1660
  msgid "Instructions for authors. Shown when submitting data"
1661
  msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt."
1662
 
 
1663
  #: core/views/meta_box_fields.php:200
1664
- #@ acf
1665
  msgid "Required?"
1666
  msgstr "Erforderlich?"
1667
 
 
1668
  #: core/views/meta_box_fields.php:223
1669
- #@ acf
1670
  msgid "Conditional Logic"
1671
  msgstr "Bedingungen für Anzeige"
1672
 
1673
- #: core/views/meta_box_fields.php:274
1674
- #: core/views/meta_box_location.php:116
1675
- #@ acf
1676
  msgid "is equal to"
1677
  msgstr "ist gleich"
1678
 
1679
- #: core/views/meta_box_fields.php:275
1680
- #: core/views/meta_box_location.php:117
1681
- #@ acf
1682
  msgid "is not equal to"
1683
  msgstr "ist nicht gleich"
1684
 
 
1685
  #: core/views/meta_box_fields.php:293
1686
- #@ acf
1687
  msgid "Show this field when"
1688
  msgstr "Zeige dieses Feld, wenn"
1689
 
 
1690
  #: core/views/meta_box_fields.php:299
1691
- #@ acf
1692
  msgid "all"
1693
  msgstr "alle"
1694
 
 
1695
  #: core/views/meta_box_fields.php:300
1696
- #@ acf
1697
  msgid "any"
1698
  msgstr "mindestens eine"
1699
 
 
1700
  #: core/views/meta_box_fields.php:303
1701
- #@ acf
1702
  msgid "these rules are met"
1703
  msgstr "diese(r) Regeln erfüllt sind."
1704
 
 
1705
  #: core/views/meta_box_fields.php:331
1706
- #@ acf
1707
  msgid "+ Add Field"
1708
  msgstr "+ Feld hinzufügen"
1709
 
 
1710
  #: core/views/meta_box_location.php:48
1711
- #@ acf
1712
  msgid "Rules"
1713
  msgstr "Regeln"
1714
 
 
1715
  #: core/views/meta_box_location.php:49
1716
- #@ acf
1717
  msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
1718
  msgstr "Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese eigenen Felder angezeigt werden sollen."
1719
 
 
1720
  #: core/views/meta_box_location.php:60
1721
- #@ acf
1722
  msgid "Show this field group if"
1723
  msgstr "Zeige diese Felder, wenn"
1724
 
1725
- #: core/views/meta_box_fields.php:68
1726
- #: core/views/meta_box_location.php:62
1727
  #: core/views/meta_box_location.php:158
1728
- #@ acf
1729
  msgid "or"
1730
  msgstr "oder"
1731
 
 
1732
  #: core/views/meta_box_location.php:76
1733
- #@ acf
1734
  msgid "Logged in User Type"
1735
  msgstr "Angemeldete Benutzer-Rolle"
1736
 
1737
- #: core/views/meta_box_location.php:78
1738
- #: core/views/meta_box_location.php:79
1739
- #@ acf
1740
  msgid "Page"
1741
  msgstr "Seite"
1742
 
 
1743
  #: core/views/meta_box_location.php:80
1744
- #@ acf
1745
  msgid "Page Type"
1746
  msgstr "Seiten-Typ"
1747
 
 
1748
  #: core/views/meta_box_location.php:81
1749
- #@ acf
1750
  msgid "Page Parent"
1751
  msgstr "Übergeordnete Seite"
1752
 
 
1753
  #: core/views/meta_box_location.php:82
1754
- #@ acf
1755
  msgid "Page Template"
1756
  msgstr "Seiten-Vorlage"
1757
 
1758
- #: core/views/meta_box_location.php:84
1759
- #: core/views/meta_box_location.php:85
1760
- #@ acf
1761
  msgid "Post"
1762
  msgstr "Artikel"
1763
 
 
1764
  #: core/views/meta_box_location.php:86
1765
- #@ acf
1766
  msgid "Post Category"
1767
  msgstr "Artikel-Kategorie"
1768
 
 
1769
  #: core/views/meta_box_location.php:87
1770
- #@ acf
1771
  msgid "Post Format"
1772
  msgstr "Artikel-Format"
1773
 
 
1774
  #: core/views/meta_box_location.php:88
1775
- #@ acf
1776
  msgid "Post Taxonomy"
1777
  msgstr "Artikel-Beziehung"
1778
 
1779
- #: core/fields/radio.php:102
1780
- #: core/views/meta_box_location.php:90
1781
- #@ acf
1782
  msgid "Other"
1783
  msgstr "Sonstige"
1784
 
 
1785
  #: core/views/meta_box_location.php:91
1786
- #@ acf
1787
  msgid "Taxonomy Term (Add / Edit)"
1788
  msgstr "Beziehung (Hinzufügen/Bearbeiten)"
1789
 
 
1790
  #: core/views/meta_box_location.php:92
1791
- #@ acf
1792
  msgid "User (Add / Edit)"
1793
  msgstr "Benutzer (Hinzufügen/Bearbeiten)"
1794
 
 
1795
  #: core/views/meta_box_location.php:145
1796
- #@ acf
1797
  msgid "and"
1798
  msgstr "und"
1799
 
 
1800
  #: core/views/meta_box_location.php:160
1801
- #@ acf
1802
  msgid "Add rule group"
1803
  msgstr "Regel-Gruppe hinzufügen"
1804
 
 
1805
  #: core/views/meta_box_options.php:25
1806
- #@ acf
1807
  msgid "Order No."
1808
  msgstr "Sortierungs-Nr."
1809
 
 
1810
  #: core/views/meta_box_options.php:26
1811
- #@ acf
1812
  msgid "Field groups are created in order <br />from lowest to highest"
1813
  msgstr "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum höchsten Wert."
1814
 
 
1815
  #: core/views/meta_box_options.php:42
1816
- #@ acf
1817
  msgid "Position"
1818
  msgstr "Position"
1819
 
 
1820
  #: core/views/meta_box_options.php:52
1821
- #@ acf
1822
  msgid "Normal"
1823
  msgstr "Normal"
1824
 
 
1825
  #: core/views/meta_box_options.php:53
1826
- #@ acf
1827
  msgid "Side"
1828
  msgstr "Seitlich"
1829
 
 
1830
  #: core/views/meta_box_options.php:62
1831
- #@ acf
1832
  msgid "Style"
1833
  msgstr "Stil"
1834
 
 
1835
  #: core/views/meta_box_options.php:72
1836
- #@ acf
1837
  msgid "No Metabox"
1838
  msgstr "Keine Metabox"
1839
 
 
1840
  #: core/views/meta_box_options.php:73
1841
- #@ acf
1842
  msgid "Standard Metabox"
1843
  msgstr "Normale Metabox"
1844
 
 
1845
  #: core/views/meta_box_options.php:82
1846
- #@ acf
1847
  msgid "Hide on screen"
1848
  msgstr "Verstecken"
1849
 
 
1850
  #: core/views/meta_box_options.php:83
1851
- #@ acf
1852
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1853
  msgstr "<strong>Ausgewählte</strong> Elemente werden <strong>versteckt</strong>."
1854
 
 
1855
  #: core/views/meta_box_options.php:84
1856
- #@ acf
1857
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1858
  msgstr "Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten Sortierungs-Nummer)."
1859
 
 
1860
  #: core/views/meta_box_options.php:94
1861
- #@ acf
1862
  msgid "Content Editor"
1863
  msgstr "Inhalts-Editor"
1864
 
 
1865
  #: core/views/meta_box_options.php:95
1866
- #@ default
1867
  msgid "Excerpt"
1868
  msgstr "Auszug"
1869
 
 
1870
  #: core/views/meta_box_options.php:97
1871
- #@ default
1872
  msgid "Discussion"
1873
  msgstr "Diskussion"
1874
 
 
1875
  #: core/views/meta_box_options.php:98
1876
- #@ default
1877
  msgid "Comments"
1878
  msgstr "Kommentare"
1879
 
 
1880
  #: core/views/meta_box_options.php:99
1881
- #@ default
1882
  msgid "Revisions"
1883
  msgstr "Revisionen"
1884
 
 
1885
  #: core/views/meta_box_options.php:100
1886
- #@ default
1887
  msgid "Slug"
1888
  msgstr "Titelform (Slug)"
1889
 
 
1890
  #: core/views/meta_box_options.php:101
1891
- #@ default
1892
  msgid "Author"
1893
  msgstr "Autor"
1894
 
 
1895
  #: core/views/meta_box_options.php:102
1896
- #@ default
1897
  msgid "Format"
1898
  msgstr "Format"
1899
 
 
1900
  #: core/views/meta_box_options.php:104
1901
- #@ default
1902
  msgid "Categories"
1903
  msgstr "Artikel-Kategorie"
1904
 
 
1905
  #: core/views/meta_box_options.php:105
1906
- #@ default
1907
  msgid "Tags"
1908
  msgstr "Tags"
1909
 
 
1910
  #: core/views/meta_box_options.php:106
1911
- #@ default
1912
  msgid "Send Trackbacks"
1913
  msgstr "Sende Trackbacks"
1914
 
 
1915
  #: core/api.php:1094
1916
- #@ acf
1917
  msgid "Update"
1918
  msgstr "Aktualisieren"
1919
 
 
1920
  #: core/api.php:1095
1921
- #@ acf
1922
  msgid "Post updated"
1923
  msgstr "Beitrag aktualisiert"
1924
 
 
1925
  #: core/controllers/export.php:323
1926
- #@ acf
1927
  msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1928
  msgstr "Um alle Admin-Oberflächen des ACF Plugins zu entfernen, kann eine Konstante verwendet werden, um den Lite-Modus zu aktivieren. Dazu muss der folgende Code in die functions.php Datei <b>vor</b> dem include_once Code eingefügt werden:"
1929
 
 
1930
  #: core/controllers/field_groups.php:353
1931
- #@ acf
1932
  msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
1933
  msgstr ""
1934
 
 
1935
  #: core/controllers/field_groups.php:369
1936
- #@ acf
1937
  msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
1938
  msgstr ""
1939
 
 
1940
  #: core/controllers/input.php:495
1941
- #@ acf
1942
  msgid "Expand Details"
1943
  msgstr "Details anzeigen"
1944
 
 
1945
  #: core/controllers/input.php:496
1946
- #@ acf
1947
  msgid "Collapse Details"
1948
  msgstr "Details ausblenden"
1949
 
 
1950
  #: core/controllers/upgrade.php:139
1951
- #@ acf
1952
  msgid "What's new"
1953
  msgstr "Was ist neu"
1954
 
 
1955
  #: core/controllers/upgrade.php:150
1956
- #@ acf
1957
  msgid "credits"
1958
  msgstr "Danke an"
1959
 
 
1960
  #: core/fields/file.php:27
1961
- #@ acf
1962
  msgid "Edit File"
1963
  msgstr "Datei bearbeiten"
1964
 
1965
- #: core/fields/file.php:29
1966
- #: core/fields/image.php:30
1967
- #@ acf
1968
  msgid "uploaded to this post"
1969
  msgstr "zu diesem Artikel hochgeladen"
1970
 
1971
- #: core/fields/file.php:173
1972
- #: core/fields/image.php:158
1973
- #@ acf
1974
  msgid "Library"
1975
  msgstr "Medien"
1976
 
1977
- #: core/fields/file.php:185
1978
- #: core/fields/image.php:171
1979
- #@ acf
1980
  msgid "Uploaded to post"
1981
  msgstr "zum Artikel hochgeladen"
1982
 
 
1983
  #: core/fields/image.php:28
1984
- #@ acf
1985
  msgid "Edit Image"
1986
  msgstr "Bild bearbeiten"
1987
 
 
1988
  #: core/fields/image.php:119
1989
- #@ acf
1990
  msgid "Specify the returned value on front end"
1991
  msgstr "Legt den Rückgabewert im Front-End fest"
1992
 
 
1993
  #: core/fields/image.php:140
1994
- #@ acf
1995
  msgid "Shown when entering data"
1996
  msgstr "Definiert die angezeigte Größe im Backend"
1997
 
 
1998
  #: core/fields/image.php:159
1999
- #@ acf
2000
  msgid "Limit the media library choice"
2001
  msgstr "Bestimmt die mögliche Auswahl in den Medienverwaltung"
2002
 
 
2003
  #: core/fields/number.php:132
2004
- #@ acf
2005
  msgid "Min"
2006
  msgstr "Minimum"
2007
 
 
2008
  #: core/fields/number.php:133
2009
- #@ acf
2010
  msgid "Specifies the minimum value allowed"
2011
  msgstr "Legt den kleinsten erlaubten Wert fest"
2012
 
 
2013
  #: core/fields/number.php:149
2014
- #@ acf
2015
  msgid "Max"
2016
  msgstr "Maximum"
2017
 
 
2018
  #: core/fields/number.php:150
2019
- #@ acf
2020
  msgid "Specifies the maximim value allowed"
2021
  msgstr "Legt den größten erlaubten Wert fest"
2022
 
 
2023
  #: core/fields/number.php:166
2024
- #@ acf
2025
  msgid "Step"
2026
  msgstr "Schritt"
2027
 
 
2028
  #: core/fields/number.php:167
2029
- #@ acf
2030
  msgid "Specifies the legal number intervals"
2031
  msgstr "Legt die Schrittweite fest"
2032
 
2033
- #: core/fields/number.php:183
2034
- #: core/fields/text.php:165
2035
  #: core/fields/textarea.php:146
2036
- #@ acf
2037
  msgid "Placeholder Text"
2038
  msgstr "Platzhalter Text"
2039
 
2040
- #: core/fields/number.php:197
2041
- #: core/fields/text.php:180
2042
- #@ acf
2043
  msgid "Prepend"
2044
  msgstr "Voranstellen"
2045
 
2046
- #: core/fields/number.php:211
2047
- #: core/fields/text.php:195
2048
- #@ acf
2049
  msgid "Append"
2050
  msgstr "Anfügen"
2051
 
 
2052
  #: core/fields/radio.php:172
2053
- #@ acf
2054
  msgid "Add 'other' choice to allow for custom values"
2055
  msgstr "Füge die Option 'Sonstige' für individuelle Werte hinzu"
2056
 
 
2057
  #: core/fields/radio.php:184
2058
- #@ acf
2059
  msgid "Save 'other' values to the field's choices"
2060
  msgstr "Füge 'Sonstige' Werte zu den Auswahl Optionen hinzu"
2061
 
 
2062
  #: core/fields/relationship.php:424
2063
- #@ acf
2064
  msgid "Search..."
2065
  msgstr "Suchen..."
2066
 
 
2067
  #: core/fields/relationship.php:435
2068
- #@ acf
2069
  msgid "Filter by post type"
2070
  msgstr "Filter nach Beitrags Art"
2071
 
2072
- #: core/fields/text.php:117
2073
- #: core/fields/textarea.php:97
2074
  #: core/fields/wysiwyg.php:172
2075
- #@ acf
2076
  msgid "Appears when creating a new post"
2077
  msgstr "Erscheint bei der Erstellung eines neuen Beitrag"
2078
 
2079
- #: core/fields/text.php:132
2080
- #: core/fields/textarea.php:112
2081
- #@ acf
2082
- msgid "Effects value on front end"
2083
  msgstr "Wirkt sich auf die Anzeige im Front-End aus"
2084
 
2085
- #: core/fields/text.php:141
2086
- #: core/fields/textarea.php:121
2087
- #@ acf
2088
  msgid "No formatting"
2089
  msgstr "Keine Formatierung"
2090
 
2091
- #: core/fields/text.php:142
2092
- #: core/fields/textarea.php:123
2093
- #@ acf
2094
  msgid "Convert HTML into tags"
2095
  msgstr "Konvertieren von HTML-Tags"
2096
 
2097
- #: core/fields/text.php:150
2098
- #: core/fields/textarea.php:131
2099
- #@ acf
2100
  msgid "Character Limit"
2101
  msgstr "Max. Anzahl Zeichen"
2102
 
2103
- #: core/fields/text.php:151
2104
- #: core/fields/textarea.php:132
2105
- #@ acf
2106
  msgid "Leave blank for no limit"
2107
  msgstr "Leerlassen für kein Limit"
2108
 
2109
- #: core/fields/text.php:166
2110
- #: core/fields/textarea.php:147
2111
- #@ acf
2112
  msgid "Appears within the input"
2113
  msgstr "Platzhalter Text definieren"
2114
 
 
2115
  #: core/fields/text.php:181
2116
- #@ acf
2117
  msgid "Appears before the input"
2118
  msgstr "Wird vor dem Eingabefeld eingefügt"
2119
 
 
2120
  #: core/fields/text.php:196
2121
- #@ acf
2122
  msgid "Appears after the input"
2123
  msgstr "Wird hinter dem Eingabefeld eingefügt"
2124
 
 
2125
  #: core/fields/textarea.php:122
2126
- #@ acf
2127
  msgid "Convert new lines into &lt;br /&gt; tags"
2128
  msgstr "Konvertiere neue Zeilen in &lt;br /&gt;"
2129
 
 
2130
  #: core/views/meta_box_fields.php:66
2131
- #@ acf
2132
  msgid "Field group title is required"
2133
  msgstr "Ein Titel für die Felder-Gruppe ist erforderlich"
2134
 
 
2135
  #: core/views/meta_box_location.php:93
2136
- #@ acf
2137
  msgid "Media Attachment (Add / Edit)"
2138
  msgstr "Medienanhang (Hinzufügen / Ändern)"
2139
-
3
  "Project-Id-Version: Advanced Custom Fields v4.2.0 RC1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2013-04-27 17:35+0100\n"
6
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
7
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: \n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.1\n"
 
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
+ # @ acf
22
  #: acf.php:341
 
23
  msgid "Field&nbsp;Groups"
24
  msgstr "Felder-Gruppen"
25
 
26
+ # @ acf
27
+ #: acf.php:342 core/controllers/field_groups.php:214
 
28
  msgid "Advanced Custom Fields"
29
  msgstr "Eigene Felder"
30
 
31
+ # @ acf
32
  #: acf.php:343
 
33
  msgid "Add New"
34
  msgstr "Neu erstellen"
35
 
36
+ # @ acf
37
  #: acf.php:344
 
38
  msgid "Add New Field Group"
39
  msgstr "Neue Felder-Gruppe erstellen"
40
 
41
+ # @ acf
42
  #: acf.php:345
 
43
  msgid "Edit Field Group"
44
  msgstr "Felder-Gruppe bearbeiten"
45
 
46
+ # @ acf
47
  #: acf.php:346
 
48
  msgid "New Field Group"
49
  msgstr "Neue Felder-Gruppe"
50
 
51
+ # @ acf
52
  #: acf.php:347
 
53
  msgid "View Field Group"
54
  msgstr "Felder-Gruppe anzeigen"
55
 
56
+ # @ acf
57
  #: acf.php:348
 
58
  msgid "Search Field Groups"
59
  msgstr "Felder-Gruppe suchen"
60
 
61
+ # @ acf
62
  #: acf.php:349
 
63
  msgid "No Field Groups found"
64
  msgstr "Keine Felder-Gruppen gefunden"
65
 
66
+ # @ acf
67
  #: acf.php:350
 
68
  msgid "No Field Groups found in Trash"
69
  msgstr "Keine Felder-Gruppen im Papierkorb gefunden"
70
 
71
+ # @ acf
72
+ # @ default
73
+ #: acf.php:458 core/views/meta_box_options.php:96
 
74
  msgid "Custom Fields"
75
  msgstr "Eigene Felder"
76
 
77
+ # @ acf
78
+ #: acf.php:476 acf.php:479
 
79
  msgid "Field group updated."
80
  msgstr "Felder-Gruppe aktualisiert"
81
 
82
+ # @ acf
83
  #: acf.php:477
 
84
  msgid "Custom field updated."
85
  msgstr "Eigenes Feld aktualisiert"
86
 
87
+ # @ acf
88
  #: acf.php:478
 
89
  msgid "Custom field deleted."
90
  msgstr "Eigenes Feld gelöscht"
91
 
92
+ # @ acf
93
  #. translators: %s: date and time of the revision
94
  #: acf.php:481
95
  #, php-format
 
96
  msgid "Field group restored to revision from %s"
97
  msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s"
98
 
99
+ # @ acf
100
  #: acf.php:482
 
101
  msgid "Field group published."
102
  msgstr "Felder-Gruppe veröffentlicht"
103
 
104
+ # @ acf
105
  #: acf.php:483
 
106
  msgid "Field group saved."
107
  msgstr "Felder-Gruppe gespeichert"
108
 
109
+ # @ acf
110
  #: acf.php:484
 
111
  msgid "Field group submitted."
112
  msgstr "Felder-Gruppe übertragen"
113
 
114
+ # @ acf
115
  #: acf.php:485
 
116
  msgid "Field group scheduled for."
117
  msgstr "Felder-Gruppe geplant für"
118
 
119
+ # @ acf
120
  #: acf.php:486
 
121
  msgid "Field group draft updated."
122
  msgstr "Entwurf der Felder-Gruppe aktualisiert"
123
 
124
+ # @ acf
125
  #: acf.php:621
 
126
  msgid "Thumbnail"
127
  msgstr "Miniaturbild"
128
 
129
+ # @ acf
130
  #: acf.php:622
 
131
  msgid "Medium"
132
  msgstr "Mittel"
133
 
134
+ # @ acf
135
  #: acf.php:623
 
136
  msgid "Large"
137
  msgstr "Groß"
138
 
139
+ # @ acf
140
  #: acf.php:624
 
141
  msgid "Full"
142
  msgstr "Volle Größe"
143
 
144
+ # @ acf
145
  #: core/controllers/field_group.php:377
 
146
  msgid "Options"
147
  msgstr "Optionen"
148
 
149
+ # @ acf
150
+ #: core/controllers/addons.php:144 core/controllers/export.php:380
151
  #: core/controllers/field_groups.php:448
 
152
  msgid "Options Page"
153
  msgstr "Optionen-Seite"
154
 
155
+ # @ acf
156
+ #: core/fields/checkbox.php:174 core/fields/message.php:20
157
+ #: core/fields/radio.php:209 core/fields/tab.php:20
 
 
158
  msgid "Layout"
159
  msgstr "Layout"
160
 
161
+ # @ acf
162
  #: core/views/meta_box_fields.php:24
 
163
  msgid "New Field"
164
  msgstr "Neues Feld"
165
 
166
+ # @ acf
167
  #: core/views/meta_box_fields.php:88
 
168
  msgid "Field Order"
169
  msgstr "Sortierung"
170
 
171
+ # @ acf
172
+ #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
 
173
  msgid "Field Label"
174
  msgstr "Bezeichnung"
175
 
176
+ # @ acf
177
+ #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
 
178
  msgid "Field Name"
179
  msgstr "Name"
180
 
181
+ # @ acf
182
+ #: core/fields/taxonomy.php:306 core/fields/user.php:251
183
+ #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173
 
 
184
  msgid "Field Type"
185
  msgstr "Feld-Typ"
186
 
187
+ # @ acf
188
+ #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
 
189
  msgid "Edit this Field"
190
  msgstr "Dieses Feld bearbeiten"
191
 
192
+ # @ acf
193
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:122
 
194
  msgid "Edit"
195
  msgstr "Bearbeiten"
196
 
197
+ # @ acf
198
  #: core/views/meta_box_fields.php:123
 
199
  msgid "Read documentation for this field"
200
  msgstr "Dokumentation für dieses Feld"
201
 
202
+ # @ acf
203
  #: core/views/meta_box_fields.php:123
 
204
  msgid "Docs"
205
  msgstr "Hilfe"
206
 
207
+ # @ acf
208
  #: core/views/meta_box_fields.php:124
 
209
  msgid "Duplicate this Field"
210
  msgstr "Dieses Feld duplizieren"
211
 
212
+ # @ acf
213
  #: core/views/meta_box_fields.php:124
 
214
  msgid "Duplicate"
215
  msgstr "Duplizieren"
216
 
217
+ # @ acf
218
  #: core/views/meta_box_fields.php:125
 
219
  msgid "Delete this Field"
220
  msgstr "Dieses Feld löschen"
221
 
222
+ # @ acf
223
  #: core/views/meta_box_fields.php:125
 
224
  msgid "Delete"
225
  msgstr "Löschen"
226
 
227
+ # @ acf
228
  #: core/views/meta_box_fields.php:142
 
229
  msgid "This is the name which will appear on the EDIT page"
230
  msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt."
231
 
232
+ # @ acf
233
  #: core/views/meta_box_fields.php:158
 
234
  msgid "Single word, no spaces. Underscores and dashes allowed"
235
  msgstr "Ein Wort, keine Leerzeichen, Unterstrich (_) und Bindestrich (-) erlaubt."
236
 
237
+ # @ acf
238
  #: core/views/meta_box_fields.php:187
 
239
  msgid "Field Instructions"
240
  msgstr "Feld-Anweisungen"
241
 
242
+ # @ acf
243
  #: core/views/meta_box_fields.php:317
 
244
  msgid "Close Field"
245
  msgstr "Feld schließen"
246
 
247
+ # @ acf
248
  #: core/views/meta_box_fields.php:330
 
249
  msgid "Drag and drop to reorder"
250
  msgstr "Mit Drag&amp;Drop anordnen"
251
 
252
+ # @ acf
253
+ #: core/actions/export.php:23 core/views/meta_box_fields.php:58
 
254
  msgid "Error"
255
  msgstr "Fehler"
256
 
257
+ # @ acf
258
  #: core/actions/export.php:30
 
259
  msgid "No ACF groups selected"
260
  msgstr "Keine ACF-Gruppen ausgewählt"
261
 
262
+ # @ acf
263
+ #: core/controllers/addons.php:42 core/controllers/field_groups.php:311
 
264
  msgid "Add-ons"
265
  msgstr "Zusatz-Module"
266
 
267
+ # @ acf
268
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
 
269
  msgid "Repeater Field"
270
  msgstr "Wiederholungs-Feld"
271
 
272
+ # @ acf
273
  #: core/controllers/addons.php:131
 
274
  msgid "Create infinite rows of repeatable data with this versatile interface!"
275
  msgstr "Ermöglicht das Erstellen von wiederholbaren Feldern innerhalb einer Felder-Gruppe!"
276
 
277
+ # @ acf
278
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
 
279
  msgid "Gallery Field"
280
  msgstr "Galerie-Feld"
281
 
282
+ # @ acf
283
  #: core/controllers/addons.php:138
 
284
  msgid "Create image galleries in a simple and intuitive interface!"
285
  msgstr "Erstellen Sie Bildergalerien in einer einfachen und intuitiven Benutzeroberfläche!"
286
 
287
+ # @ acf
288
  #: core/controllers/addons.php:145
 
289
  msgid "Create global data to use throughout your website!"
290
  msgstr "Erstellen Sie Optionen, die Sie überall in Ihrem Theme verwenden können!"
291
 
292
+ # @ acf
293
  #: core/controllers/addons.php:151
 
294
  msgid "Flexible Content Field"
295
  msgstr "Flexibles Inhalts-Feld"
296
 
297
+ # @ acf
298
  #: core/controllers/addons.php:152
 
299
  msgid "Create unique designs with a flexible content layout manager!"
300
  msgstr "Erstellen Sie einzigartige Designs mit einem flexiblen Content-Layout-Manager!"
301
 
302
+ # @ acf
303
  #: core/controllers/addons.php:161
 
304
  msgid "Gravity Forms Field"
305
  msgstr "Gravity Forms Feld"
306
 
307
+ # @ acf
308
  #: core/controllers/addons.php:162
 
309
  msgid "Creates a select field populated with Gravity Forms!"
310
  msgstr "Erstellt ein Auswahlfeld mit Formularen aus Gravity Forms!"
311
 
312
+ # @ acf
313
  #: core/controllers/addons.php:168
 
314
  msgid "Date & Time Picker"
315
  msgstr "Datum & Zeit Auswahl"
316
 
317
+ # @ acf
318
  #: core/controllers/addons.php:169
 
319
  msgid "jQuery date & time picker"
320
  msgstr "Ein jQuery Datum & Zeit Modul"
321
 
322
+ # @ acf
323
  #: core/controllers/addons.php:175
 
324
  msgid "Location Field"
325
  msgstr "Adress-Felder"
326
 
327
+ # @ acf
328
  #: core/controllers/addons.php:176
 
329
  msgid "Find addresses and coordinates of a desired location"
330
  msgstr "Finden Sie Adressen und Koordinaten eines Ortes!"
331
 
332
+ # @ acf
333
  #: core/controllers/addons.php:182
 
334
  msgid "Contact Form 7 Field"
335
  msgstr "Contact Form 7 Felder"
336
 
337
+ # @ acf
338
  #: core/controllers/addons.php:183
 
339
  msgid "Assign one or more contact form 7 forms to a post"
340
  msgstr "Binden Sie Contact Form 7 Formulare ein!"
341
 
342
+ # @ acf
343
  #: core/controllers/addons.php:193
 
344
  msgid "Advanced Custom Fields Add-Ons"
345
  msgstr "Eigene Felder Zusatz-Module"
346
 
347
+ # @ acf
348
  #: core/controllers/addons.php:196
 
349
  msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
350
  msgstr "Die folgenden Zusatz-Module erweitern die Funktionalität des Eigene Felder Plugins."
351
 
352
+ # @ acf
353
  #: core/controllers/addons.php:197
 
354
  msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
355
  msgstr "Jedes Zusatz-Modul kann als eigenes Plugin installiert werden (inkl. Update-Möglichkeit) oder kann in ein Theme eingebunden werden (ohne Update-Möglichkeit)."
356
 
357
+ # @ acf
358
+ #: core/controllers/addons.php:219 core/controllers/addons.php:240
 
359
  msgid "Installed"
360
  msgstr "Installiert"
361
 
362
+ # @ acf
363
  #: core/controllers/addons.php:221
 
364
  msgid "Purchase & Install"
365
  msgstr "Kaufen & Installieren"
366
 
367
+ # @ acf
368
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
369
+ #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
370
+ #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
 
 
 
371
  msgid "Download"
372
  msgstr "Herunterladen"
373
 
374
+ # @ acf
375
+ #: core/controllers/export.php:50 core/controllers/export.php:159
 
376
  msgid "Export"
377
  msgstr "Export"
378
 
379
+ # @ acf
380
  #: core/controllers/export.php:216
 
381
  msgid "Export Field Groups"
382
  msgstr "Felder-Gruppen exportieren"
383
 
384
+ # @ acf
385
  #: core/controllers/export.php:221
 
386
  msgid "Field Groups"
387
  msgstr "Felder-Gruppe"
388
 
389
+ # @ acf
390
  #: core/controllers/export.php:222
 
391
  msgid "Select the field groups to be exported"
392
  msgstr "Auswahl der zu exportierenden Felder-Gruppen"
393
 
394
+ # @ acf
395
+ #: core/controllers/export.php:239 core/controllers/export.php:252
 
396
  msgid "Export to XML"
397
  msgstr "Export als XML"
398
 
399
+ # @ acf
400
+ #: core/controllers/export.php:242 core/controllers/export.php:267
 
401
  msgid "Export to PHP"
402
  msgstr "Export als PHP"
403
 
404
+ # @ acf
405
  #: core/controllers/export.php:253
 
406
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
407
  msgstr "ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-Import-Plugin."
408
 
409
+ # @ acf
410
  #: core/controllers/export.php:254
 
411
  msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
412
  msgstr "Importierte Felder-Gruppen <b>werden</b> in der Liste der bearbeitbaren Felder-Gruppen <b>angezeigt</b> um Felder-Gruppen zwischen WP-Websites auszutauschen."
413
 
414
+ # @ acf
415
  #: core/controllers/export.php:256
 
416
  msgid "Select field group(s) from the list and click \"Export XML\""
417
  msgstr "Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren\""
418
 
419
+ # @ acf
420
  #: core/controllers/export.php:257
 
421
  msgid "Save the .xml file when prompted"
422
  msgstr "Speichern Sie die .xml-Datei bei Nachfrage"
423
 
424
+ # @ acf
425
  #: core/controllers/export.php:258
 
426
  msgid "Navigate to Tools &raquo; Import and select WordPress"
427
  msgstr "Wechseln Sie zu Werkzeuge &raquo; Importieren und wählen Sie WordPress"
428
 
429
+ # @ acf
430
  #: core/controllers/export.php:259
 
431
  msgid "Install WP import plugin if prompted"
432
  msgstr "Installieren Sie das WP-Import-Plugin falls nötig"
433
 
434
+ # @ acf
435
  #: core/controllers/export.php:260
 
436
  msgid "Upload and import your exported .xml file"
437
  msgstr "Importieren Sie Ihre exportierte .xml-Datei"
438
 
439
+ # @ acf
440
  #: core/controllers/export.php:261
 
441
  msgid "Select your user and ignore Import Attachments"
442
  msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\""
443
 
444
+ # @ acf
445
  #: core/controllers/export.php:262
 
446
  msgid "That's it! Happy WordPressing"
447
  msgstr "Das war's! Viel Spaß mit Wordpress!"
448
 
449
+ # @ acf
450
  #: core/controllers/export.php:268
 
451
  msgid "ACF will create the PHP code to include in your theme."
452
  msgstr "ACF erstellt einen PHP-Code der in einem Theme verwendet werden kann. Diese Felder-Gruppen werden als <i>Registrierte Felder-Gruppen</i> bezeichnet."
453
 
454
+ # @ acf
455
+ #: core/controllers/export.php:269 core/controllers/export.php:310
 
456
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
457
  msgstr "<i>Registrierte Felder-Gruppen</i> <b>werden nicht</b> in der Liste der zu bearbeitenden Felder-Gruppen angezeigt. Dies ist besonders für die Einbindung in Themes nützlich."
458
 
459
+ # @ acf
460
+ #: core/controllers/export.php:270 core/controllers/export.php:311
 
461
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
462
  msgstr "Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die <i>Registrierte Felder-Gruppe</i> verwenden, werden die Felder im Bearbeitungs-Fenster doppelt angezeigt. Um dies zu verhindern, löschen Sie bitte die Felder-Gruppe oder entfernen den PHP-Code aus der Datei functions.php."
463
 
464
+ # @ acf
465
  #: core/controllers/export.php:272
 
466
  msgid "Select field group(s) from the list and click \"Create PHP\""
467
  msgstr "Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken"
468
 
469
+ # @ acf
470
+ #: core/controllers/export.php:273 core/controllers/export.php:302
 
471
  msgid "Copy the PHP code generated"
472
  msgstr "Den generierten PHP-Code kopieren"
473
 
474
+ # @ acf
475
+ #: core/controllers/export.php:274 core/controllers/export.php:303
 
476
  msgid "Paste into your functions.php file"
477
  msgstr "In der Datei functions.php einfügen"
478
 
479
+ # @ acf
480
+ #: core/controllers/export.php:275 core/controllers/export.php:304
 
481
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
482
  msgstr "Um ein Zusatz-Modul zu aktivieren, editieren Sie den PHP-Code in den ersten Zeilen des PHP-Codes in der Datei functions.php"
483
 
484
+ # @ acf
485
  #: core/controllers/export.php:295
 
486
  msgid "Export Field Groups to PHP"
487
  msgstr "Felder-Gruppen als PHP exportieren"
488
 
489
+ # @ acf
490
+ #: core/controllers/export.php:300 core/fields/tab.php:65
 
491
  msgid "Instructions"
492
  msgstr "Anweisungen"
493
 
494
+ # @ acf
495
  #: core/controllers/export.php:309
 
496
  msgid "Notes"
497
  msgstr "Hinweise"
498
 
499
+ # @ acf
500
  #: core/controllers/export.php:316
 
501
  msgid "Include in theme"
502
  msgstr "Im Theme einbinden"
503
 
504
+ # @ acf
505
  #: core/controllers/export.php:317
 
506
  msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
507
  msgstr "Das Eigene Felder Plugin kann in ein Theme eingebunden werden. Kopieren Sie den Ordner des Eigene Felder Plugins in Ihren Theme Ordner und fügen den folgenden Code in Ihre Datei functions.php:"
508
 
509
+ # @ acf
510
  #: core/controllers/export.php:331
 
511
  msgid "Back to export"
512
  msgstr "Zurück zum Export"
513
 
514
+ # @ acf
515
  #: core/controllers/export.php:352
 
516
  msgid ""
517
  "/**\n"
518
  " * Install Add-ons\n"
532
  " */"
533
  msgstr ""
534
 
535
+ # @ acf
536
+ #: core/controllers/export.php:370 core/controllers/field_group.php:375
537
+ #: core/controllers/field_group.php:437 core/controllers/field_groups.php:148
 
 
538
  msgid "Fields"
539
  msgstr "Felder"
540
 
541
+ # @ acf
542
  #: core/controllers/export.php:384
 
543
  msgid ""
544
  "/**\n"
545
  " * Register Field Groups\n"
549
  " */"
550
  msgstr ""
551
 
552
+ # @ acf
553
  #: core/controllers/export.php:435
 
554
  msgid "No field groups were selected"
555
  msgstr "Keine Felder-Gruppe ausgewählt"
556
 
557
+ # @ acf
558
  #: core/controllers/field_group.php:376
 
559
  msgid "Location"
560
  msgstr "Position"
561
 
562
+ # @ acf
563
  #: core/controllers/field_group.php:439
 
564
  msgid "Show Field Key:"
565
  msgstr "Zeige Feld-Schlüssel:"
566
 
567
+ # @ acf
568
+ #: core/controllers/field_group.php:440 core/fields/page_link.php:138
569
+ #: core/fields/page_link.php:159 core/fields/post_object.php:328
570
+ #: core/fields/post_object.php:349 core/fields/select.php:224
571
+ #: core/fields/select.php:243 core/fields/taxonomy.php:341
572
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:229
573
+ #: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232
 
 
 
 
 
 
574
  msgid "No"
575
  msgstr "Nein"
576
 
577
+ # @ acf
578
+ #: core/controllers/field_group.php:441 core/fields/page_link.php:137
579
+ #: core/fields/page_link.php:158 core/fields/post_object.php:327
580
+ #: core/fields/post_object.php:348 core/fields/select.php:223
581
+ #: core/fields/select.php:242 core/fields/taxonomy.php:340
582
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:228
583
+ #: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231
 
 
 
 
 
 
584
  msgid "Yes"
585
  msgstr "Ja"
586
 
587
+ # @ acf
588
  #: core/controllers/field_group.php:618
 
589
  msgid "Front Page"
590
  msgstr "Startseite"
591
 
592
+ # @ acf
593
  #: core/controllers/field_group.php:619
 
594
  msgid "Posts Page"
595
  msgstr "Beitragseite"
596
 
597
+ # @ acf
598
  #: core/controllers/field_group.php:620
 
599
  msgid "Top Level Page (parent of 0)"
600
  msgstr "Hauptseite (keine Übergeordnete)"
601
 
602
+ # @ acf
603
  #: core/controllers/field_group.php:621
 
604
  msgid "Parent Page (has children)"
605
  msgstr "Eltern-Seite (hat Unterseiten)"
606
 
607
+ # @ acf
608
  #: core/controllers/field_group.php:622
 
609
  msgid "Child Page (has parent)"
610
  msgstr "Kinder-Seite (hat übergeordnete Seite)"
611
 
612
+ # @ acf
613
  #: core/controllers/field_group.php:630
 
614
  msgid "Default Template"
615
  msgstr "Standard-Vorlage"
616
 
617
+ # @ acf
618
+ #: core/controllers/field_group.php:722 core/controllers/field_group.php:743
619
+ #: core/controllers/field_group.php:750 core/fields/file.php:184
620
+ #: core/fields/image.php:170 core/fields/page_link.php:109
621
+ #: core/fields/post_object.php:274 core/fields/post_object.php:298
622
+ #: core/fields/relationship.php:574 core/fields/relationship.php:598
 
 
 
 
623
  #: core/fields/user.php:229
 
624
  msgid "All"
625
  msgstr "Alle"
626
 
627
+ # @ default
628
  #: core/controllers/field_groups.php:147
 
629
  msgid "Title"
630
  msgstr "Titel"
631
 
632
+ # @ acf
633
+ #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
 
634
  msgid "Changelog"
635
  msgstr "Versionshinweise"
636
 
637
+ # @ acf
638
  #: core/controllers/field_groups.php:217
 
639
  msgid "See what's new in"
640
  msgstr "Neuerungen von"
641
 
642
+ # @ acf
643
  #: core/controllers/field_groups.php:217
 
644
  msgid "version"
645
  msgstr "Version"
646
 
647
+ # @ acf
648
  #: core/controllers/field_groups.php:219
 
649
  msgid "Resources"
650
  msgstr "Ressourcen (engl.)"
651
 
652
+ # @ acf
653
  #: core/controllers/field_groups.php:221
 
654
  msgid "Getting Started"
655
  msgstr "Erste Schritte"
656
 
657
+ # @ acf
658
  #: core/controllers/field_groups.php:222
 
659
  msgid "Field Types"
660
  msgstr "Feld Typen"
661
 
662
+ # @ acf
663
  #: core/controllers/field_groups.php:223
 
664
  msgid "Functions"
665
  msgstr "Funktionen"
666
 
667
+ # @ acf
668
  #: core/controllers/field_groups.php:224
 
669
  msgid "Actions"
670
  msgstr "Aktionen"
671
 
672
+ # @ acf
673
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:617
 
674
  msgid "Filters"
675
  msgstr "Filter"
676
 
677
+ # @ acf
678
  #: core/controllers/field_groups.php:226
 
679
  msgid "'How to' guides"
680
  msgstr "'How to' Anleitungen"
681
 
682
+ # @ acf
683
  #: core/controllers/field_groups.php:227
 
684
  msgid "Tutorials"
685
  msgstr "Tutorials"
686
 
687
+ # @ acf
688
  #: core/controllers/field_groups.php:232
 
689
  msgid "Created by"
690
  msgstr "Erstellt von"
691
 
692
+ # @ acf
693
  #: core/controllers/field_groups.php:235
 
694
  msgid "Vote"
695
  msgstr "Bewerten"
696
 
697
+ # @ acf
698
  #: core/controllers/field_groups.php:236
 
699
  msgid "Follow"
700
  msgstr "Folgen"
701
 
702
+ # @ acf
703
  #: core/controllers/field_groups.php:248
 
704
  msgid "Welcome to Advanced Custom Fields"
705
  msgstr "Willkommen zu Eigene Felder (ACF)"
706
 
707
+ # @ acf
708
  #: core/controllers/field_groups.php:249
 
709
  msgid "Thank you for updating to the latest version!"
710
  msgstr "Danke für das Update auf die aktuellste Version!"
711
 
712
+ # @ acf
713
  #: core/controllers/field_groups.php:249
 
714
  msgid "is more polished and enjoyable than ever before. We hope you like it."
715
  msgstr "ist besser und attraktiver als je zuvor. Wir hoffen es gefällt!"
716
 
717
+ # @ acf
718
  #: core/controllers/field_groups.php:256
 
719
  msgid "What’s New"
720
  msgstr "Was ist neu"
721
 
722
+ # @ acf
723
  #: core/controllers/field_groups.php:259
 
724
  msgid "Download Add-ons"
725
  msgstr "Zusatz-Module herunterladen"
726
 
727
+ # @ acf
728
  #: core/controllers/field_groups.php:313
 
729
  msgid "Activation codes have grown into plugins!"
730
  msgstr "Aktivierungs-Codes sind Schnee von gestern!"
731
 
732
+ # @ acf
733
  #: core/controllers/field_groups.php:314
 
734
  msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
735
  msgstr "Zusatz-Module werden nun als eigenständige Plugins angeboten und nach der Installation aktiviert. Und obwohl die Zusatz-Module nicht im WordPress Plugin-Verzeichnis aufgeführt sind, können Sie dennoch über die Update-Funktion aktuell gehalten werden."
736
 
737
+ # @ acf
738
  #: core/controllers/field_groups.php:320
 
739
  msgid "All previous Add-ons have been successfully installed"
740
  msgstr "Alle bisherigen Zusatz-Module wurden erfolgreich aktualisiert"
741
 
742
+ # @ acf
743
  #: core/controllers/field_groups.php:324
 
744
  msgid "This website uses premium Add-ons which need to be downloaded"
745
  msgstr "Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun heruntergeladen werden müssen."
746
 
747
+ # @ acf
748
  #: core/controllers/field_groups.php:324
 
749
  msgid "Download your activated Add-ons"
750
  msgstr "Lade die aktivierten Zusatz-Module"
751
 
752
+ # @ acf
753
  #: core/controllers/field_groups.php:329
 
754
  msgid "This website does not use premium Add-ons and will not be affected by this change."
755
  msgstr "Diese Webseite nutzt keine Zusatz-Module mit Aktivierungs-Code und ist dadurch nicht betroffen."
756
 
757
+ # @ acf
758
  #: core/controllers/field_groups.php:339
 
759
  msgid "Easier Development"
760
  msgstr "Noch einfachere Entwicklungsmöglichkeiten"
761
 
762
+ # @ acf
763
  #: core/controllers/field_groups.php:341
 
764
  msgid "New Field Types"
765
  msgstr "Neue Feld-Typen"
766
 
767
+ # @ acf
768
  #: core/controllers/field_groups.php:343
 
769
  msgid "Taxonomy Field"
770
  msgstr "Artikel-Beziehung"
771
 
772
+ # @ acf
773
  #: core/controllers/field_groups.php:344
 
774
  msgid "User Field"
775
  msgstr "Benutzer Feld"
776
 
777
+ # @ acf
778
  #: core/controllers/field_groups.php:345
 
779
  msgid "Email Field"
780
  msgstr "E-Mail Feld"
781
 
782
+ # @ acf
783
  #: core/controllers/field_groups.php:346
 
784
  msgid "Password Field"
785
  msgstr "Passwort Feld"
786
 
787
+ # @ acf
788
  #: core/controllers/field_groups.php:348
 
789
  msgid "Custom Field Types"
790
  msgstr "Eigene Felder"
791
 
792
+ # @ acf
793
  #: core/controllers/field_groups.php:349
 
794
  msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
795
  msgstr "Nie war es einfacher benutzerdefinierte Felder zu erstellen. Leider sind die Feld-Typen der Version 3 nicht kompatibel mit den Feld-Typen der Version 4."
796
 
797
+ # @ acf
798
  #: core/controllers/field_groups.php:350
 
799
  msgid "Migrating your field types is easy, please"
800
  msgstr "Das Anpassen der Feld-Typen ist einfach: Bitte nutzen Sie"
801
 
802
+ # @ acf
803
  #: core/controllers/field_groups.php:350
 
804
  msgid "follow this tutorial"
805
  msgstr "dieses Tutorial (engl.)"
806
 
807
+ # @ acf
808
  #: core/controllers/field_groups.php:350
 
809
  msgid "to learn more."
810
  msgstr ", um mehr darüber zu erfahren."
811
 
812
+ # @ acf
813
  #: core/controllers/field_groups.php:352
 
814
  msgid "Actions &amp; Filters"
815
  msgstr "Actions &amp; Filters"
816
 
817
+ # @ acf
818
  #: core/controllers/field_groups.php:353
 
819
  msgid "read this guide"
820
  msgstr "diese Hinweise (engl.)"
821
 
822
+ # @ acf
823
  #: core/controllers/field_groups.php:353
 
824
  msgid "to find the updated naming convention."
825
  msgstr "für detaillierte Informationen."
826
 
827
+ # @ acf
828
  #: core/controllers/field_groups.php:355
 
829
  msgid "Preview draft is now working!"
830
  msgstr "Die Vorschau funktioniert jetzt auch!"
831
 
832
+ # @ acf
833
  #: core/controllers/field_groups.php:356
 
834
  msgid "This bug has been squashed along with many other little critters!"
835
  msgstr "Dieser Fehler wurde zusammen mit vielen anderen behoben!"
836
 
837
+ # @ acf
838
  #: core/controllers/field_groups.php:356
 
839
  msgid "See the full changelog"
840
  msgstr "Alle Anpassungen (engl.)"
841
 
842
+ # @ acf
843
  #: core/controllers/field_groups.php:360
 
844
  msgid "Important"
845
  msgstr "Wichtig"
846
 
847
+ # @ acf
848
  #: core/controllers/field_groups.php:362
 
849
  msgid "Database Changes"
850
  msgstr "Datenbank Anpassungen"
851
 
852
+ # @ acf
853
  #: core/controllers/field_groups.php:363
 
854
  msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
855
  msgstr "Es wurden <strong>keine</strong> Änderungen in der Datenbank-Struktur zwischen Version 3 und 4 vorgenommen. Das bedeutet, dass Sie jederzeit zurück zu Version 3 wechseln können."
856
 
857
+ # @ acf
858
  #: core/controllers/field_groups.php:365
 
859
  msgid "Potential Issues"
860
  msgstr "Mögliche Probleme"
861
 
862
+ # @ acf
863
  #: core/controllers/field_groups.php:366
864
+ msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
 
865
  msgstr "Durch die umfänglichen Änderungen hinsichtlich der Zusatz-Module, der Feld-Typen und der <i>Actions/Filters</i>, kann es passieren, dass Ihre Webseite nicht hundertprozentig funktioniert. Von daher ist es wichtig, dass Sie den"
866
 
867
+ # @ acf
868
  #: core/controllers/field_groups.php:366
 
869
  msgid "Migrating from v3 to v4"
870
  msgstr "Leitfaden Migration von v3 zu v4 (engl.)"
871
 
872
+ # @ acf
873
  #: core/controllers/field_groups.php:366
 
874
  msgid "guide to view the full list of changes."
875
  msgstr "unbedingt lesen, um einen Überblick über alle Änderungen zu erhalten."
876
 
877
+ # @ acf
878
  #: core/controllers/field_groups.php:369
 
879
  msgid "Really Important!"
880
  msgstr "Wirklich wichtig!"
881
 
882
+ # @ acf
883
  #: core/controllers/field_groups.php:369
 
884
  msgid "version 3"
885
  msgstr "Version 3"
886
 
887
+ # @ acf
888
  #: core/controllers/field_groups.php:369
 
889
  msgid "of this plugin."
890
  msgstr "dieses Plugins zurückwechseln."
891
 
892
+ # @ acf
893
  #: core/controllers/field_groups.php:374
 
894
  msgid "Thank You"
895
  msgstr "Danke!"
896
 
897
+ # @ acf
898
  #: core/controllers/field_groups.php:375
 
899
  msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
900
  msgstr "Mein <strong>besonderer</strong> Dank geht an all diejenigen, die beim Testen der Version geholfen haben und für all die Unterstützung die ich erhalten habe."
901
 
902
+ # @ acf
903
  #: core/controllers/field_groups.php:376
 
904
  msgid "Without you all, this release would not have been possible!"
905
  msgstr "Ohne diese Unterstützung wäre diese Version nie entstanden!"
906
 
907
+ # @ acf
908
  #: core/controllers/field_groups.php:380
 
909
  msgid "Changelog for"
910
  msgstr "Versionshinweise für"
911
 
912
+ # @ acf
913
  #: core/controllers/field_groups.php:396
 
914
  msgid "Learn more"
915
  msgstr "Ich möchte mehr wissen"
916
 
917
+ # @ acf
918
  #: core/controllers/field_groups.php:402
 
919
  msgid "Overview"
920
  msgstr "Übersicht"
921
 
922
+ # @ acf
923
  #: core/controllers/field_groups.php:404
 
924
  msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
925
  msgstr "Bisher wurden alle Zusatz-Module über einen Aktivierungscode (gekauft im ACF Store) aktiviert. In Version 4 werden alle Zusatz-Module als separate Plugins angeboten, die einzeln heruntergeladen, installiert und aktualisiert werden müssen."
926
 
927
+ # @ acf
928
  #: core/controllers/field_groups.php:406
 
929
  msgid "This page will assist you in downloading and installing each available Add-on."
930
  msgstr "Diese Seite soll Ihnen beim Herunterladen und bei der Installation Ihrer Zusatz-Module helfen."
931
 
932
+ # @ acf
933
  #: core/controllers/field_groups.php:408
 
934
  msgid "Available Add-ons"
935
  msgstr "Verfügbare Zusatz-Module"
936
 
937
+ # @ acf
938
  #: core/controllers/field_groups.php:410
 
939
  msgid "The following Add-ons have been detected as activated on this website."
940
  msgstr "Die folgenden Zusatz-Module wurde als aktive Zusatz-Module erkannt."
941
 
942
+ # @ acf
943
  #: core/controllers/field_groups.php:423
 
944
  msgid "Name"
945
  msgstr "Name"
946
 
947
+ # @ acf
948
  #: core/controllers/field_groups.php:424
 
949
  msgid "Activation Code"
950
  msgstr "Aktivierungs-Code"
951
 
952
+ # @ acf
953
  #: core/controllers/field_groups.php:456
 
954
  msgid "Flexible Content"
955
  msgstr "Flexibler Inhalt"
956
 
957
+ # @ acf
958
  #: core/controllers/field_groups.php:466
 
959
  msgid "Installation"
960
  msgstr "Installation"
961
 
962
+ # @ acf
963
  #: core/controllers/field_groups.php:468
 
964
  msgid "For each Add-on available, please perform the following:"
965
  msgstr "Für jedes Zusatz-Modul gehen Sie wie folgt vor:"
966
 
967
+ # @ acf
968
  #: core/controllers/field_groups.php:470
 
969
  msgid "Download the Add-on plugin (.zip file) to your desktop"
970
  msgstr "Laden Sie das Zusatz-Modul Plugin (.zip Datei) herunter"
971
 
972
+ # @ acf
973
  #: core/controllers/field_groups.php:471
 
974
  msgid "Navigate to"
975
  msgstr "Gehen Sie zu"
976
 
977
+ # @ acf
978
  #: core/controllers/field_groups.php:471
 
979
  msgid "Plugins > Add New > Upload"
980
  msgstr "Plugins > Installieren > Hochladen"
981
 
982
+ # @ acf
983
  #: core/controllers/field_groups.php:472
 
984
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
985
  msgstr "Wählen Sie über \"Durchsuchen\" die .zip-Datei und laden so das Zusatz-Modul in WordPress"
986
 
987
+ # @ acf
988
  #: core/controllers/field_groups.php:473
 
989
  msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
990
  msgstr "Wenn das Plugin hochgeladen und installiert wurde, aktivieren Sie das Plugin über den \"Aktivieren\"-Link"
991
 
992
+ # @ acf
993
  #: core/controllers/field_groups.php:474
 
994
  msgid "The Add-on is now installed and activated!"
995
  msgstr "Das Zusatz-Modul ist nun installiert und aktiviert!"
996
 
997
+ # @ acf
998
  #: core/controllers/field_groups.php:488
 
999
  msgid "Awesome. Let's get to work"
1000
  msgstr "Toll. Dann mal los!"
1001
 
1002
+ # @ acf
1003
  #: core/controllers/input.php:499
 
1004
  msgid "Validation Failed. One or more fields below are required."
1005
  msgstr "Fehler bei Überprüfung: Ein oder mehrere Felder werden benötigt."
1006
 
1007
+ # @ acf
1008
  #: core/fields/relationship.php:28
 
1009
  msgid "Maximum values reached ( {max} values )"
1010
  msgstr "Max. Werte erreicht ( {max} Werte )"
1011
 
1012
+ # @ acf
1013
  #: core/controllers/upgrade.php:86
 
1014
  msgid "Upgrade"
1015
  msgstr "Aktualisieren"
1016
 
1017
+ # @ acf
1018
  #: core/controllers/upgrade.php:684
 
1019
  msgid "Modifying field group options 'show on page'"
1020
  msgstr "Anpassung Feld-Gruppe Optionen 'Zeige auf Seite'"
1021
 
1022
+ # @ acf
1023
  #: core/controllers/upgrade.php:738
 
1024
  msgid "Modifying field option 'taxonomy'"
1025
  msgstr "Anpassung Feld-Optionen 'Taxonomie'"
1026
 
1027
+ # @ acf
1028
  #: core/controllers/upgrade.php:835
 
1029
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1030
  msgstr "Bewege Benutzer Felder von 'wp_options' nach 'wp_usermeta'"
1031
 
1032
+ # @ acf
1033
+ #: core/fields/_base.php:124 core/views/meta_box_location.php:74
 
1034
  msgid "Basic"
1035
  msgstr "Grundlegend"
1036
 
1037
+ # @ acf
1038
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
 
1039
  msgid "Checkbox"
1040
  msgstr "Checkbox"
1041
 
1042
+ # @ acf
1043
+ #: core/fields/checkbox.php:20 core/fields/radio.php:19
1044
+ #: core/fields/select.php:19 core/fields/true_false.php:20
 
 
1045
  msgid "Choice"
1046
  msgstr "Auswahlmöglichkeiten"
1047
 
1048
+ # @ acf
1049
+ #: core/fields/checkbox.php:137 core/fields/radio.php:144
1050
  #: core/fields/select.php:177
 
1051
  msgid "Choices"
1052
  msgstr "Auswahlmöglichkeiten"
1053
 
1054
+ # @ acf
1055
+ #: core/fields/checkbox.php:138 core/fields/select.php:178
 
1056
  msgid "Enter each choice on a new line."
1057
  msgstr "Eine Auswahlmöglichkeit pro Zeile"
1058
 
1059
+ # @ acf
1060
+ #: core/fields/checkbox.php:139 core/fields/select.php:179
 
1061
  msgid "For more control, you may specify both a value and label like this:"
1062
  msgstr "Für eine einfachere Bearbeitung, kann auch der Wert und eine Beschreibung wie in diesem Beispiel angeben werden:"
1063
 
1064
+ # @ acf
1065
+ #: core/fields/checkbox.php:140 core/fields/radio.php:150
1066
  #: core/fields/select.php:180
 
1067
  msgid "red : Red"
1068
  msgstr "rot : Rot"
1069
 
1070
+ # @ acf
1071
+ #: core/fields/checkbox.php:140 core/fields/radio.php:151
1072
  #: core/fields/select.php:180
 
1073
  msgid "blue : Blue"
1074
  msgstr "blau : Blau"
1075
 
1076
+ # @ acf
1077
+ #: core/fields/checkbox.php:157 core/fields/color_picker.php:89
1078
+ #: core/fields/email.php:69 core/fields/number.php:116
1079
+ #: core/fields/radio.php:193 core/fields/select.php:197
1080
+ #: core/fields/text.php:116 core/fields/textarea.php:96
1081
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
 
 
 
 
 
1082
  msgid "Default Value"
1083
  msgstr "Standardwert"
1084
 
1085
+ # @ acf
1086
+ #: core/fields/checkbox.php:158 core/fields/select.php:198
 
1087
  msgid "Enter each default value on a new line"
1088
  msgstr "Einen Standardwert pro Zeile. Erfordert, dass die Option 'Mehrere Werte auswählen?' aktiviert ist."
1089
 
1090
+ # @ acf
1091
  #: core/fields/color_picker.php:19
 
1092
  msgid "Color Picker"
1093
  msgstr "Farbe"
1094
 
1095
+ # @ acf
1096
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
1097
  msgid "jQuery"
1098
  msgstr "jQuery"
1099
 
1100
+ # @ default
1101
  #: core/fields/dummy.php:19
 
1102
  msgid "Dummy"
1103
  msgstr "Dummy"
1104
 
1105
+ # @ acf
1106
  #: core/fields/email.php:19
 
1107
  msgid "Email"
1108
  msgstr "E-Mail"
1109
 
1110
+ # @ acf
1111
  #: core/fields/file.php:19
 
1112
  msgid "File"
1113
  msgstr "Datei"
1114
 
1115
+ # @ acf
1116
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
 
 
1117
  msgid "Content"
1118
  msgstr "Inhalt"
1119
 
1120
+ # @ acf
1121
  #: core/fields/image.php:83
 
1122
  msgid "Remove"
1123
  msgstr "Entfernen"
1124
 
1125
+ # @ acf
1126
  #: core/fields/file.php:121
 
1127
  msgid "No File Selected"
1128
  msgstr "Keine Datei ausgewählt"
1129
 
1130
+ # @ acf
1131
  #: core/fields/file.php:121
 
1132
  msgid "Add File"
1133
  msgstr "Datei hinzufügen"
1134
 
1135
+ # @ acf
1136
+ #: core/fields/file.php:151 core/fields/image.php:118
1137
  #: core/fields/taxonomy.php:365
 
1138
  msgid "Return Value"
1139
  msgstr "Rückgabewert"
1140
 
1141
+ # @ acf
1142
  #: core/fields/file.php:162
 
1143
  msgid "File Object"
1144
  msgstr "Datei"
1145
 
1146
+ # @ acf
1147
  #: core/fields/file.php:163
 
1148
  msgid "File URL"
1149
  msgstr "Datei-URL"
1150
 
1151
+ # @ acf
1152
  #: core/fields/file.php:164
 
1153
  msgid "File ID"
1154
  msgstr "Datei-ID"
1155
 
1156
+ # @ acf
1157
  #: core/fields/file.php:26
 
1158
  msgid "Select File"
1159
  msgstr "Datei auswählen"
1160
 
1161
+ # @ acf
1162
  #: core/fields/file.php:28
 
1163
  msgid "Update File"
1164
  msgstr "Datei aktualisieren"
1165
 
1166
+ # @ acf
1167
  #: core/fields/image.php:19
 
1168
  msgid "Image"
1169
  msgstr "Bild"
1170
 
1171
+ # @ acf
1172
  #: core/fields/image.php:90
 
1173
  msgid "No image selected"
1174
  msgstr "Kein Bild ausgewählt"
1175
 
1176
+ # @ acf
1177
  #: core/fields/image.php:90
 
1178
  msgid "Add Image"
1179
  msgstr "Bild hinzufügen"
1180
 
1181
+ # @ acf
1182
  #: core/fields/image.php:129
 
1183
  msgid "Image Object"
1184
  msgstr "Bild"
1185
 
1186
+ # @ acf
1187
  #: core/fields/image.php:130
 
1188
  msgid "Image URL"
1189
  msgstr "Bild-URL"
1190
 
1191
+ # @ acf
1192
  #: core/fields/image.php:131
 
1193
  msgid "Image ID"
1194
  msgstr "Bild-ID"
1195
 
1196
+ # @ acf
1197
  #: core/fields/image.php:139
 
1198
  msgid "Preview Size"
1199
  msgstr "Größe der Vorschau"
1200
 
1201
+ # @ acf
1202
  #: core/fields/image.php:27
 
1203
  msgid "Select Image"
1204
  msgstr "Bild auswählen"
1205
 
1206
+ # @ acf
1207
  #: core/fields/image.php:29
 
1208
  msgid "Update Image"
1209
  msgstr "Bild aktualisieren"
1210
 
1211
+ # @ acf
1212
+ #: core/fields/message.php:19 core/fields/message.php:70
1213
  #: core/fields/true_false.php:79
 
1214
  msgid "Message"
1215
  msgstr "Nachricht"
1216
 
1217
+ # @ acf
1218
  #: core/fields/message.php:71
 
1219
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1220
  msgstr "Der Text &amp; HTML wird vor dem nächsten Feld angezeigt"
1221
 
1222
+ # @ acf
1223
  #: core/fields/message.php:72
 
1224
  msgid "Please note that all text will first be passed through the wp function "
1225
  msgstr "Der gesamte Text wird zuerst gefiltert durch die WP Funktion "
1226
 
1227
+ # @ acf
1228
  #: core/fields/number.php:19
 
1229
  msgid "Number"
1230
  msgstr "Nummer"
1231
 
1232
+ # @ acf
1233
  #: core/fields/page_link.php:18
 
1234
  msgid "Page Link"
1235
  msgstr "Link zu Seite"
1236
 
1237
+ # @ acf
1238
+ #: core/fields/page_link.php:19 core/fields/post_object.php:19
1239
+ #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
 
1240
  #: core/fields/user.php:19
 
1241
  msgid "Relational"
1242
  msgstr "Beziehung"
1243
 
1244
+ # @ acf
1245
+ #: core/fields/page_link.php:103 core/fields/post_object.php:268
1246
+ #: core/fields/relationship.php:568 core/fields/relationship.php:647
 
1247
  #: core/views/meta_box_location.php:75
 
1248
  msgid "Post Type"
1249
  msgstr "Artikel-Typ"
1250
 
1251
+ # @ acf
1252
+ #: core/fields/page_link.php:127 core/fields/post_object.php:317
1253
+ #: core/fields/select.php:214 core/fields/taxonomy.php:331
 
1254
  #: core/fields/user.php:275
 
1255
  msgid "Allow Null?"
1256
  msgstr "Nichts (NULL) erlauben?"
1257
 
1258
+ # @ acf
1259
+ #: core/fields/page_link.php:148 core/fields/post_object.php:338
1260
  #: core/fields/select.php:233
 
1261
  msgid "Select multiple values?"
1262
  msgstr "Mehrere Werte auswählen?"
1263
 
1264
+ # @ acf
1265
  #: core/fields/password.php:19
 
1266
  msgid "Password"
1267
  msgstr "Passwort"
1268
 
1269
+ # @ acf
1270
  #: core/fields/post_object.php:18
 
1271
  msgid "Post Object"
1272
  msgstr "Artikel"
1273
 
1274
+ # @ acf
1275
+ #: core/fields/post_object.php:292 core/fields/relationship.php:592
 
1276
  msgid "Filter from Taxonomy"
1277
  msgstr "Mit Beziehung filtern"
1278
 
1279
+ # @ acf
1280
  #: core/fields/radio.php:18
 
1281
  msgid "Radio Button"
1282
  msgstr "Radio Button"
1283
 
1284
+ # @ acf
1285
  #: core/fields/radio.php:145
 
1286
  msgid "Enter your choices one per line"
1287
  msgstr "Eine Auswahlmöglichkeit pro Zeile"
1288
 
1289
+ # @ acf
1290
  #: core/fields/radio.php:147
 
1291
  msgid "Red"
1292
  msgstr "Rot"
1293
 
1294
+ # @ acf
1295
  #: core/fields/radio.php:148
 
1296
  msgid "Blue"
1297
  msgstr "Blau"
1298
 
1299
+ # @ acf
1300
+ #: core/fields/checkbox.php:185 core/fields/radio.php:220
 
1301
  msgid "Vertical"
1302
  msgstr "Vertikal"
1303
 
1304
+ # @ acf
1305
+ #: core/fields/checkbox.php:186 core/fields/radio.php:221
 
1306
  msgid "Horizontal"
1307
  msgstr "Horizontal"
1308
 
1309
+ # @ acf
1310
  #: core/fields/relationship.php:18
 
1311
  msgid "Relationship"
1312
  msgstr "Beziehung"
1313
 
1314
+ # @ acf
1315
  #: core/fields/relationship.php:626
 
1316
  msgid "Search"
1317
  msgstr "Suchen"
1318
 
1319
+ # @ acf
1320
  #: core/fields/relationship.php:627
 
1321
  msgid "Post Type Select"
1322
  msgstr "Auswahl Artikel-Typ"
1323
 
1324
+ # @ acf
1325
  #: core/fields/relationship.php:635
 
1326
  msgid "Elements"
1327
  msgstr "Zeige Spalten"
1328
 
1329
+ # @ acf
1330
  #: core/fields/relationship.php:636
 
1331
  msgid "Selected elements will be displayed in each result"
1332
  msgstr "Ausgewählte Optionen werden in der Liste als Spalten angezeigt"
1333
 
1334
+ # @ acf
1335
+ # @ default
1336
+ #: core/fields/relationship.php:645 core/views/meta_box_options.php:103
 
1337
  msgid "Featured Image"
1338
  msgstr "Artikelbild"
1339
 
1340
+ # @ acf
1341
  #: core/fields/relationship.php:646
 
1342
  msgid "Post Title"
1343
  msgstr "Beitrag-/Seiten-Titel"
1344
 
1345
+ # @ acf
1346
  #: core/fields/relationship.php:658
 
1347
  msgid "Maximum posts"
1348
  msgstr "Max. Artikel"
1349
 
1350
+ # @ acf
1351
+ #: core/fields/select.php:18 core/fields/select.php:109
1352
+ #: core/fields/taxonomy.php:322 core/fields/user.php:266
 
 
1353
  msgid "Select"
1354
  msgstr "Auswahlmenü"
1355
 
1356
+ # @ acf
1357
  #: core/fields/tab.php:19
 
1358
  msgid "Tab"
1359
  msgstr "Tab"
1360
 
1361
+ # @ acf
1362
  #: core/fields/tab.php:68
 
1363
  msgid "All fields proceeding this \"tab field\" (or until another \"tab field\" is defined) will appear grouped on the edit screen."
1364
  msgstr "Alle Felder nach diesem \"Tab Feld\" (oder bis ein neues \"Tab Feld\" definiert ist) werden innerhalb eines Tabs gruppiert."
1365
 
1366
+ # @ acf
1367
  #: core/fields/tab.php:69
 
1368
  msgid "You can use multiple tabs to break up your fields into sections."
1369
  msgstr "Es können mehrere Tabs definiert werden, um die Felder in mehrere Tabs aufzuteilen."
1370
 
1371
+ # @ acf
1372
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
 
1373
  msgid "Taxonomy"
1374
  msgstr "Artikel-Beziehung"
1375
 
1376
+ # @ acf
1377
+ #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
 
1378
  msgid "None"
1379
  msgstr "Nur Text"
1380
 
1381
+ # @ acf
1382
+ #: core/fields/taxonomy.php:316 core/fields/user.php:260
 
1383
  msgid "Multiple Values"
1384
  msgstr "Mehrere Werte auswählen?"
1385
 
1386
+ # @ acf
1387
+ #: core/fields/taxonomy.php:318 core/fields/user.php:262
 
1388
  msgid "Multi Select"
1389
  msgstr "Auswahlmenü"
1390
 
1391
+ # @ acf
1392
+ #: core/fields/taxonomy.php:320 core/fields/user.php:264
 
1393
  msgid "Single Value"
1394
  msgstr "Einzelne Werte"
1395
 
1396
+ # @ acf
1397
  #: core/fields/taxonomy.php:321
 
1398
  msgid "Radio Buttons"
1399
  msgstr "Radio Button"
1400
 
1401
+ # @ acf
1402
  #: core/fields/taxonomy.php:350
 
1403
  msgid "Load & Save Terms to Post"
1404
  msgstr "Lade & Speichere Einträge im Artikel"
1405
 
1406
+ # @ acf
1407
  #: core/fields/taxonomy.php:358
 
1408
  msgid "Load value based on the post's terms and update the post's terms on save"
1409
  msgstr "Lade Einträge basierend auf dem Beitrag und aktualisiere die Einträge beim Speichern"
1410
 
1411
+ # @ acf
1412
  #: core/fields/taxonomy.php:375
 
1413
  msgid "Term Object"
1414
  msgstr "Datei"
1415
 
1416
+ # @ acf
1417
  #: core/fields/taxonomy.php:376
 
1418
  msgid "Term ID"
1419
  msgstr "Term ID"
1420
 
1421
+ # @ acf
1422
  #: core/fields/text.php:19
 
1423
  msgid "Text"
1424
  msgstr "Text"
1425
 
1426
+ # @ acf
1427
+ #: core/fields/text.php:131 core/fields/textarea.php:111
 
1428
  msgid "Formatting"
1429
  msgstr "Formatierung"
1430
 
1431
+ # @ acf
1432
  #: core/fields/textarea.php:19
 
1433
  msgid "Text Area"
1434
  msgstr "Textfeld"
1435
 
1436
+ # @ acf
1437
  #: core/fields/true_false.php:19
 
1438
  msgid "True / False"
1439
  msgstr "Ja/Nein"
1440
 
1441
+ # @ acf
1442
  #: core/fields/true_false.php:80
 
1443
  msgid "eg. Show extra content"
1444
  msgstr "z.B. Mehr Inhalt anzeigen"
1445
 
1446
+ # @ acf
1447
  #: core/fields/user.php:18
 
1448
  msgid "User"
1449
  msgstr "Benutzer"
1450
 
1451
+ # @ acf
1452
  #: core/fields/user.php:224
 
1453
  msgid "Filter by role"
1454
  msgstr "Filter nach Benutzer-Rollen"
1455
 
1456
+ # @ acf
1457
  #: core/fields/wysiwyg.php:19
 
1458
  msgid "Wysiwyg Editor"
1459
  msgstr "WYSIWYG-Editor"
1460
 
1461
+ # @ acf
1462
  #: core/fields/wysiwyg.php:186
 
1463
  msgid "Toolbar"
1464
  msgstr "Werkzeugleiste"
1465
 
1466
+ # @ acf
1467
  #: core/fields/wysiwyg.php:218
 
1468
  msgid "Show Media Upload Buttons?"
1469
  msgstr "Schaltflächen zum Hochladen von Medien anzeigen?"
1470
 
1471
+ # @ acf
1472
  #: core/fields/date_picker/date_picker.php:22
 
1473
  msgid "Date Picker"
1474
  msgstr "Datum"
1475
 
1476
+ # @ acf
1477
  #: core/fields/date_picker/date_picker.php:30
 
1478
  msgid "Done"
1479
  msgstr "Fertig"
1480
 
1481
+ # @ acf
1482
  #: core/fields/date_picker/date_picker.php:31
 
1483
  msgid "Today"
1484
  msgstr "Heute"
1485
 
1486
+ # @ acf
1487
  #: core/fields/date_picker/date_picker.php:34
 
1488
  msgid "Show a different month"
1489
  msgstr "Zeige einen anderen Monat"
1490
 
1491
+ # @ acf
1492
  #: core/fields/date_picker/date_picker.php:105
 
1493
  msgid "Save format"
1494
  msgstr "Daten-Format"
1495
 
1496
+ # @ acf
1497
  #: core/fields/date_picker/date_picker.php:106
1498
+ msgid "This format will determine the value saved to the database and returned via the API"
 
1499
  msgstr "Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben."
1500
 
1501
+ # @ acf
1502
  #: core/fields/date_picker/date_picker.php:107
 
1503
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1504
  msgstr "\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über"
1505
 
1506
+ # @ acf
1507
  #: core/fields/date_picker/date_picker.php:107
1508
  #: core/fields/date_picker/date_picker.php:123
 
1509
  msgid "jQuery date formats"
1510
  msgstr "jQuery-Datums-Format"
1511
 
1512
+ # @ acf
1513
  #: core/fields/date_picker/date_picker.php:121
 
1514
  msgid "Display format"
1515
  msgstr "Darstellungs-Format"
1516
 
1517
+ # @ acf
1518
  #: core/fields/date_picker/date_picker.php:122
 
1519
  msgid "This format will be seen by the user when entering a value"
1520
  msgstr "Dieses Format wird dem Benutzer angezeigt."
1521
 
1522
+ # @ acf
1523
  #: core/fields/date_picker/date_picker.php:123
 
1524
  msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1525
  msgstr "\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie mehr über"
1526
 
1527
+ # @ acf
1528
  #: core/fields/date_picker/date_picker.php:137
 
1529
  msgid "Week Starts On"
1530
  msgstr "Woche beginnt am"
1531
 
1532
+ # @ acf
1533
  #: core/views/meta_box_fields.php:58
 
1534
  msgid "Field type does not exist"
1535
  msgstr "Fehler: Feld-Typ existiert nicht!"
1536
 
1537
+ # @ acf
1538
  #: core/views/meta_box_fields.php:63
 
1539
  msgid "Move to trash. Are you sure?"
1540
  msgstr "Wirklich in den Papierkorb verschieben?"
1541
 
1542
+ # @ acf
1543
  #: core/views/meta_box_fields.php:64
 
1544
  msgid "checked"
1545
  msgstr "ausgewählt"
1546
 
1547
+ # @ acf
1548
  #: core/views/meta_box_fields.php:65
 
1549
  msgid "No toggle fields available"
1550
  msgstr "Keine Felder für Bedingungen vorhanden"
1551
 
1552
+ # @ acf
1553
  #: core/views/meta_box_fields.php:67
 
1554
  msgid "copy"
1555
  msgstr "kopiere"
1556
 
1557
+ # @ acf
1558
  #: core/views/meta_box_fields.php:92
 
1559
  msgid "Field Key"
1560
  msgstr "Feld-Schlüssel"
1561
 
1562
+ # @ acf
1563
  #: core/views/meta_box_fields.php:104
 
1564
  msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
1565
  msgstr "Keine Felder vorhanden. Wählen Sie <strong>+ Feld hinzufügen</strong> und erstellen Sie das erste Feld."
1566
 
1567
+ # @ acf
1568
  #: core/views/meta_box_fields.php:188
 
1569
  msgid "Instructions for authors. Shown when submitting data"
1570
  msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt."
1571
 
1572
+ # @ acf
1573
  #: core/views/meta_box_fields.php:200
 
1574
  msgid "Required?"
1575
  msgstr "Erforderlich?"
1576
 
1577
+ # @ acf
1578
  #: core/views/meta_box_fields.php:223
 
1579
  msgid "Conditional Logic"
1580
  msgstr "Bedingungen für Anzeige"
1581
 
1582
+ # @ acf
1583
+ #: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:116
 
1584
  msgid "is equal to"
1585
  msgstr "ist gleich"
1586
 
1587
+ # @ acf
1588
+ #: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:117
 
1589
  msgid "is not equal to"
1590
  msgstr "ist nicht gleich"
1591
 
1592
+ # @ acf
1593
  #: core/views/meta_box_fields.php:293
 
1594
  msgid "Show this field when"
1595
  msgstr "Zeige dieses Feld, wenn"
1596
 
1597
+ # @ acf
1598
  #: core/views/meta_box_fields.php:299
 
1599
  msgid "all"
1600
  msgstr "alle"
1601
 
1602
+ # @ acf
1603
  #: core/views/meta_box_fields.php:300
 
1604
  msgid "any"
1605
  msgstr "mindestens eine"
1606
 
1607
+ # @ acf
1608
  #: core/views/meta_box_fields.php:303
 
1609
  msgid "these rules are met"
1610
  msgstr "diese(r) Regeln erfüllt sind."
1611
 
1612
+ # @ acf
1613
  #: core/views/meta_box_fields.php:331
 
1614
  msgid "+ Add Field"
1615
  msgstr "+ Feld hinzufügen"
1616
 
1617
+ # @ acf
1618
  #: core/views/meta_box_location.php:48
 
1619
  msgid "Rules"
1620
  msgstr "Regeln"
1621
 
1622
+ # @ acf
1623
  #: core/views/meta_box_location.php:49
 
1624
  msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
1625
  msgstr "Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese eigenen Felder angezeigt werden sollen."
1626
 
1627
+ # @ acf
1628
  #: core/views/meta_box_location.php:60
 
1629
  msgid "Show this field group if"
1630
  msgstr "Zeige diese Felder, wenn"
1631
 
1632
+ # @ acf
1633
+ #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1634
  #: core/views/meta_box_location.php:158
 
1635
  msgid "or"
1636
  msgstr "oder"
1637
 
1638
+ # @ acf
1639
  #: core/views/meta_box_location.php:76
 
1640
  msgid "Logged in User Type"
1641
  msgstr "Angemeldete Benutzer-Rolle"
1642
 
1643
+ # @ acf
1644
+ #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
 
1645
  msgid "Page"
1646
  msgstr "Seite"
1647
 
1648
+ # @ acf
1649
  #: core/views/meta_box_location.php:80
 
1650
  msgid "Page Type"
1651
  msgstr "Seiten-Typ"
1652
 
1653
+ # @ acf
1654
  #: core/views/meta_box_location.php:81
 
1655
  msgid "Page Parent"
1656
  msgstr "Übergeordnete Seite"
1657
 
1658
+ # @ acf
1659
  #: core/views/meta_box_location.php:82
 
1660
  msgid "Page Template"
1661
  msgstr "Seiten-Vorlage"
1662
 
1663
+ # @ acf
1664
+ #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
 
1665
  msgid "Post"
1666
  msgstr "Artikel"
1667
 
1668
+ # @ acf
1669
  #: core/views/meta_box_location.php:86
 
1670
  msgid "Post Category"
1671
  msgstr "Artikel-Kategorie"
1672
 
1673
+ # @ acf
1674
  #: core/views/meta_box_location.php:87
 
1675
  msgid "Post Format"
1676
  msgstr "Artikel-Format"
1677
 
1678
+ # @ acf
1679
  #: core/views/meta_box_location.php:88
 
1680
  msgid "Post Taxonomy"
1681
  msgstr "Artikel-Beziehung"
1682
 
1683
+ # @ acf
1684
+ #: core/fields/radio.php:102 core/views/meta_box_location.php:90
 
1685
  msgid "Other"
1686
  msgstr "Sonstige"
1687
 
1688
+ # @ acf
1689
  #: core/views/meta_box_location.php:91
 
1690
  msgid "Taxonomy Term (Add / Edit)"
1691
  msgstr "Beziehung (Hinzufügen/Bearbeiten)"
1692
 
1693
+ # @ acf
1694
  #: core/views/meta_box_location.php:92
 
1695
  msgid "User (Add / Edit)"
1696
  msgstr "Benutzer (Hinzufügen/Bearbeiten)"
1697
 
1698
+ # @ acf
1699
  #: core/views/meta_box_location.php:145
 
1700
  msgid "and"
1701
  msgstr "und"
1702
 
1703
+ # @ acf
1704
  #: core/views/meta_box_location.php:160
 
1705
  msgid "Add rule group"
1706
  msgstr "Regel-Gruppe hinzufügen"
1707
 
1708
+ # @ acf
1709
  #: core/views/meta_box_options.php:25
 
1710
  msgid "Order No."
1711
  msgstr "Sortierungs-Nr."
1712
 
1713
+ # @ acf
1714
  #: core/views/meta_box_options.php:26
 
1715
  msgid "Field groups are created in order <br />from lowest to highest"
1716
  msgstr "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum höchsten Wert."
1717
 
1718
+ # @ acf
1719
  #: core/views/meta_box_options.php:42
 
1720
  msgid "Position"
1721
  msgstr "Position"
1722
 
1723
+ # @ acf
1724
  #: core/views/meta_box_options.php:52
 
1725
  msgid "Normal"
1726
  msgstr "Normal"
1727
 
1728
+ # @ acf
1729
  #: core/views/meta_box_options.php:53
 
1730
  msgid "Side"
1731
  msgstr "Seitlich"
1732
 
1733
+ # @ acf
1734
  #: core/views/meta_box_options.php:62
 
1735
  msgid "Style"
1736
  msgstr "Stil"
1737
 
1738
+ # @ acf
1739
  #: core/views/meta_box_options.php:72
 
1740
  msgid "No Metabox"
1741
  msgstr "Keine Metabox"
1742
 
1743
+ # @ acf
1744
  #: core/views/meta_box_options.php:73
 
1745
  msgid "Standard Metabox"
1746
  msgstr "Normale Metabox"
1747
 
1748
+ # @ acf
1749
  #: core/views/meta_box_options.php:82
 
1750
  msgid "Hide on screen"
1751
  msgstr "Verstecken"
1752
 
1753
+ # @ acf
1754
  #: core/views/meta_box_options.php:83
 
1755
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1756
  msgstr "<strong>Ausgewählte</strong> Elemente werden <strong>versteckt</strong>."
1757
 
1758
+ # @ acf
1759
  #: core/views/meta_box_options.php:84
 
1760
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1761
  msgstr "Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten Sortierungs-Nummer)."
1762
 
1763
+ # @ acf
1764
  #: core/views/meta_box_options.php:94
 
1765
  msgid "Content Editor"
1766
  msgstr "Inhalts-Editor"
1767
 
1768
+ # @ default
1769
  #: core/views/meta_box_options.php:95
 
1770
  msgid "Excerpt"
1771
  msgstr "Auszug"
1772
 
1773
+ # @ default
1774
  #: core/views/meta_box_options.php:97
 
1775
  msgid "Discussion"
1776
  msgstr "Diskussion"
1777
 
1778
+ # @ default
1779
  #: core/views/meta_box_options.php:98
 
1780
  msgid "Comments"
1781
  msgstr "Kommentare"
1782
 
1783
+ # @ default
1784
  #: core/views/meta_box_options.php:99
 
1785
  msgid "Revisions"
1786
  msgstr "Revisionen"
1787
 
1788
+ # @ default
1789
  #: core/views/meta_box_options.php:100
 
1790
  msgid "Slug"
1791
  msgstr "Titelform (Slug)"
1792
 
1793
+ # @ default
1794
  #: core/views/meta_box_options.php:101
 
1795
  msgid "Author"
1796
  msgstr "Autor"
1797
 
1798
+ # @ default
1799
  #: core/views/meta_box_options.php:102
 
1800
  msgid "Format"
1801
  msgstr "Format"
1802
 
1803
+ # @ default
1804
  #: core/views/meta_box_options.php:104
 
1805
  msgid "Categories"
1806
  msgstr "Artikel-Kategorie"
1807
 
1808
+ # @ default
1809
  #: core/views/meta_box_options.php:105
 
1810
  msgid "Tags"
1811
  msgstr "Tags"
1812
 
1813
+ # @ default
1814
  #: core/views/meta_box_options.php:106
 
1815
  msgid "Send Trackbacks"
1816
  msgstr "Sende Trackbacks"
1817
 
1818
+ # @ acf
1819
  #: core/api.php:1094
 
1820
  msgid "Update"
1821
  msgstr "Aktualisieren"
1822
 
1823
+ # @ acf
1824
  #: core/api.php:1095
 
1825
  msgid "Post updated"
1826
  msgstr "Beitrag aktualisiert"
1827
 
1828
+ # @ acf
1829
  #: core/controllers/export.php:323
 
1830
  msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1831
  msgstr "Um alle Admin-Oberflächen des ACF Plugins zu entfernen, kann eine Konstante verwendet werden, um den Lite-Modus zu aktivieren. Dazu muss der folgende Code in die functions.php Datei <b>vor</b> dem include_once Code eingefügt werden:"
1832
 
1833
+ # @ acf
1834
  #: core/controllers/field_groups.php:353
 
1835
  msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
1836
  msgstr ""
1837
 
1838
+ # @ acf
1839
  #: core/controllers/field_groups.php:369
 
1840
  msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
1841
  msgstr ""
1842
 
1843
+ # @ acf
1844
  #: core/controllers/input.php:495
 
1845
  msgid "Expand Details"
1846
  msgstr "Details anzeigen"
1847
 
1848
+ # @ acf
1849
  #: core/controllers/input.php:496
 
1850
  msgid "Collapse Details"
1851
  msgstr "Details ausblenden"
1852
 
1853
+ # @ acf
1854
  #: core/controllers/upgrade.php:139
 
1855
  msgid "What's new"
1856
  msgstr "Was ist neu"
1857
 
1858
+ # @ acf
1859
  #: core/controllers/upgrade.php:150
 
1860
  msgid "credits"
1861
  msgstr "Danke an"
1862
 
1863
+ # @ acf
1864
  #: core/fields/file.php:27
 
1865
  msgid "Edit File"
1866
  msgstr "Datei bearbeiten"
1867
 
1868
+ # @ acf
1869
+ #: core/fields/file.php:29 core/fields/image.php:30
 
1870
  msgid "uploaded to this post"
1871
  msgstr "zu diesem Artikel hochgeladen"
1872
 
1873
+ # @ acf
1874
+ #: core/fields/file.php:173 core/fields/image.php:158
 
1875
  msgid "Library"
1876
  msgstr "Medien"
1877
 
1878
+ # @ acf
1879
+ #: core/fields/file.php:185 core/fields/image.php:171
 
1880
  msgid "Uploaded to post"
1881
  msgstr "zum Artikel hochgeladen"
1882
 
1883
+ # @ acf
1884
  #: core/fields/image.php:28
 
1885
  msgid "Edit Image"
1886
  msgstr "Bild bearbeiten"
1887
 
1888
+ # @ acf
1889
  #: core/fields/image.php:119
 
1890
  msgid "Specify the returned value on front end"
1891
  msgstr "Legt den Rückgabewert im Front-End fest"
1892
 
1893
+ # @ acf
1894
  #: core/fields/image.php:140
 
1895
  msgid "Shown when entering data"
1896
  msgstr "Definiert die angezeigte Größe im Backend"
1897
 
1898
+ # @ acf
1899
  #: core/fields/image.php:159
 
1900
  msgid "Limit the media library choice"
1901
  msgstr "Bestimmt die mögliche Auswahl in den Medienverwaltung"
1902
 
1903
+ # @ acf
1904
  #: core/fields/number.php:132
 
1905
  msgid "Min"
1906
  msgstr "Minimum"
1907
 
1908
+ # @ acf
1909
  #: core/fields/number.php:133
 
1910
  msgid "Specifies the minimum value allowed"
1911
  msgstr "Legt den kleinsten erlaubten Wert fest"
1912
 
1913
+ # @ acf
1914
  #: core/fields/number.php:149
 
1915
  msgid "Max"
1916
  msgstr "Maximum"
1917
 
1918
+ # @ acf
1919
  #: core/fields/number.php:150
 
1920
  msgid "Specifies the maximim value allowed"
1921
  msgstr "Legt den größten erlaubten Wert fest"
1922
 
1923
+ # @ acf
1924
  #: core/fields/number.php:166
 
1925
  msgid "Step"
1926
  msgstr "Schritt"
1927
 
1928
+ # @ acf
1929
  #: core/fields/number.php:167
 
1930
  msgid "Specifies the legal number intervals"
1931
  msgstr "Legt die Schrittweite fest"
1932
 
1933
+ # @ acf
1934
+ #: core/fields/number.php:183 core/fields/text.php:165
1935
  #: core/fields/textarea.php:146
 
1936
  msgid "Placeholder Text"
1937
  msgstr "Platzhalter Text"
1938
 
1939
+ # @ acf
1940
+ #: core/fields/number.php:197 core/fields/text.php:180
 
1941
  msgid "Prepend"
1942
  msgstr "Voranstellen"
1943
 
1944
+ # @ acf
1945
+ #: core/fields/number.php:211 core/fields/text.php:195
 
1946
  msgid "Append"
1947
  msgstr "Anfügen"
1948
 
1949
+ # @ acf
1950
  #: core/fields/radio.php:172
 
1951
  msgid "Add 'other' choice to allow for custom values"
1952
  msgstr "Füge die Option 'Sonstige' für individuelle Werte hinzu"
1953
 
1954
+ # @ acf
1955
  #: core/fields/radio.php:184
 
1956
  msgid "Save 'other' values to the field's choices"
1957
  msgstr "Füge 'Sonstige' Werte zu den Auswahl Optionen hinzu"
1958
 
1959
+ # @ acf
1960
  #: core/fields/relationship.php:424
 
1961
  msgid "Search..."
1962
  msgstr "Suchen..."
1963
 
1964
+ # @ acf
1965
  #: core/fields/relationship.php:435
 
1966
  msgid "Filter by post type"
1967
  msgstr "Filter nach Beitrags Art"
1968
 
1969
+ # @ acf
1970
+ #: core/fields/text.php:117 core/fields/textarea.php:97
1971
  #: core/fields/wysiwyg.php:172
 
1972
  msgid "Appears when creating a new post"
1973
  msgstr "Erscheint bei der Erstellung eines neuen Beitrag"
1974
 
1975
+ # @ acf
1976
+ #: core/fields/text.php:132 core/fields/textarea.php:112
1977
+ msgid "Affects value on front end"
 
1978
  msgstr "Wirkt sich auf die Anzeige im Front-End aus"
1979
 
1980
+ # @ acf
1981
+ #: core/fields/text.php:141 core/fields/textarea.php:121
 
1982
  msgid "No formatting"
1983
  msgstr "Keine Formatierung"
1984
 
1985
+ # @ acf
1986
+ #: core/fields/text.php:142 core/fields/textarea.php:123
 
1987
  msgid "Convert HTML into tags"
1988
  msgstr "Konvertieren von HTML-Tags"
1989
 
1990
+ # @ acf
1991
+ #: core/fields/text.php:150 core/fields/textarea.php:131
 
1992
  msgid "Character Limit"
1993
  msgstr "Max. Anzahl Zeichen"
1994
 
1995
+ # @ acf
1996
+ #: core/fields/text.php:151 core/fields/textarea.php:132
 
1997
  msgid "Leave blank for no limit"
1998
  msgstr "Leerlassen für kein Limit"
1999
 
2000
+ # @ acf
2001
+ #: core/fields/text.php:166 core/fields/textarea.php:147
 
2002
  msgid "Appears within the input"
2003
  msgstr "Platzhalter Text definieren"
2004
 
2005
+ # @ acf
2006
  #: core/fields/text.php:181
 
2007
  msgid "Appears before the input"
2008
  msgstr "Wird vor dem Eingabefeld eingefügt"
2009
 
2010
+ # @ acf
2011
  #: core/fields/text.php:196
 
2012
  msgid "Appears after the input"
2013
  msgstr "Wird hinter dem Eingabefeld eingefügt"
2014
 
2015
+ # @ acf
2016
  #: core/fields/textarea.php:122
 
2017
  msgid "Convert new lines into &lt;br /&gt; tags"
2018
  msgstr "Konvertiere neue Zeilen in &lt;br /&gt;"
2019
 
2020
+ # @ acf
2021
  #: core/views/meta_box_fields.php:66
 
2022
  msgid "Field group title is required"
2023
  msgstr "Ein Titel für die Felder-Gruppe ist erforderlich"
2024
 
2025
+ # @ acf
2026
  #: core/views/meta_box_location.php:93
 
2027
  msgid "Media Attachment (Add / Edit)"
2028
  msgstr "Medienanhang (Hinzufügen / Ändern)"
 
lang/acf-es_ES.mo CHANGED
Binary file
lang/acf-es_ES.po CHANGED
@@ -8,11 +8,11 @@ msgstr ""
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-06-10 18:59-0600\n"
12
- "Last-Translator: Héctor Garrofé <info@hectorgarrofe.com>\n"
13
  "Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
14
  "Language: es_ES\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
 
17
  #: acf.php:206
18
  msgid "Custom Fields"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
12
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
13
  "Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
14
  "Language: es_ES\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
 
17
  #: acf.php:206
18
  msgid "Custom Fields"
lang/acf-fa_IR.mo CHANGED
Binary file
lang/acf-fa_IR.po CHANGED
@@ -5,13 +5,14 @@ msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2014-09-29 08:09+0330\n"
8
- "PO-Revision-Date: 2014-09-30 14:51+0330\n"
9
- "Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
10
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.5.7\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: .\n"
@@ -752,7 +753,7 @@ msgstr "مسائل بالقوه"
752
 
753
  #: ../core/controllers/field_groups.php:362
754
  msgid ""
755
- "Do to the sizable changes surounding Add-ons, field types and action/"
756
  "filters, your website may not operate correctly. It is important that you "
757
  "read the full"
758
  msgstr ""
@@ -1443,7 +1444,7 @@ msgid "Formatting"
1443
  msgstr "قالب بندی"
1444
 
1445
  #: ../core/fields/text.php:177 ../core/fields/textarea.php:165
1446
- msgid "Effects value on front end"
1447
  msgstr "موثر بر شیوه نمایش در سایت اصلی"
1448
 
1449
  #: ../core/fields/text.php:186 ../core/fields/textarea.php:174
@@ -1532,7 +1533,7 @@ msgstr "فرمت ذخیره"
1532
 
1533
  #: ../core/fields/date_picker/date_picker.php:127
1534
  msgid ""
1535
- "This format will determin the value saved to the database and returned via "
1536
  "the API"
1537
  msgstr ""
1538
  "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل "
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2014-09-29 08:09+0330\n"
8
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
+ "Language-Team: \n"
11
+ "Language: fa_IR\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: .\n"
753
 
754
  #: ../core/controllers/field_groups.php:362
755
  msgid ""
756
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
757
  "filters, your website may not operate correctly. It is important that you "
758
  "read the full"
759
  msgstr ""
1444
  msgstr "قالب بندی"
1445
 
1446
  #: ../core/fields/text.php:177 ../core/fields/textarea.php:165
1447
+ msgid "Affects value on front end"
1448
  msgstr "موثر بر شیوه نمایش در سایت اصلی"
1449
 
1450
  #: ../core/fields/text.php:186 ../core/fields/textarea.php:174
1533
 
1534
  #: ../core/fields/date_picker/date_picker.php:127
1535
  msgid ""
1536
+ "This format will determine the value saved to the database and returned via "
1537
  "the API"
1538
  msgstr ""
1539
  "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل "
lang/acf-fi_FI.mo CHANGED
Binary file
lang/acf-fi_FI.po CHANGED
@@ -5,19 +5,19 @@ 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: 2015-10-06 08:30+0300\n"
8
- "PO-Revision-Date: 2015-10-06 23:04+0300\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Poedit 1.8.5\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
- "Last-Translator: \n"
21
  "Language: fi_FI\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
@@ -731,7 +731,7 @@ msgstr "Mahdolliset ongelmat"
731
  #: core/controllers/field_groups.php:362
732
  #, php-format
733
  msgid ""
734
- "Due to the sizable changes surounding Add-ons, field types and action/"
735
  "filters, your website may not operate correctly. It is important that you "
736
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
737
  "changes."
@@ -983,7 +983,7 @@ msgstr "Tallennusmuoto"
983
 
984
  #: core/fields/date_picker/date_picker.php:127
985
  msgid ""
986
- "This format will determin the value saved to the database and returned via "
987
  "the API"
988
  msgstr ""
989
  "Tämä muoto määrittää tietokantaan tallennettavan ja rajapinnan palauttaman "
@@ -1474,7 +1474,7 @@ msgid "Formatting"
1474
  msgstr "Muotoilu"
1475
 
1476
  #: core/fields/text.php:177 core/fields/textarea.php:165
1477
- msgid "Effects value on front end"
1478
  msgstr "Vaikuttaa arvoon front endissä"
1479
 
1480
  #: core/fields/text.php:186 core/fields/textarea.php:174
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: 2015-10-06 08:30+0300\n"
8
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
21
  "Language: fi_FI\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
731
  #: core/controllers/field_groups.php:362
732
  #, php-format
733
  msgid ""
734
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
735
  "filters, your website may not operate correctly. It is important that you "
736
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
737
  "changes."
983
 
984
  #: core/fields/date_picker/date_picker.php:127
985
  msgid ""
986
+ "This format will determine the value saved to the database and returned via "
987
  "the API"
988
  msgstr ""
989
  "Tämä muoto määrittää tietokantaan tallennettavan ja rajapinnan palauttaman "
1474
  msgstr "Muotoilu"
1475
 
1476
  #: core/fields/text.php:177 core/fields/textarea.php:165
1477
+ msgid "Affects value on front end"
1478
  msgstr "Vaikuttaa arvoon front endissä"
1479
 
1480
  #: core/fields/text.php:186 core/fields/textarea.php:174
lang/acf-fr_FR.mo CHANGED
Binary file
lang/acf-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2013-10-22 18:19+0100\n"
6
- "PO-Revision-Date: 2015-11-04 09:31+1000\n"
7
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: RVOLA <hello@rvola.com>\n"
9
  "Language: fr\n"
@@ -788,7 +788,7 @@ msgstr "Problèmes connus"
788
 
789
  #: ../core/controllers/field_groups.php:366
790
  msgid ""
791
- "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not "
792
  "operate correctly. It is important that you read the full"
793
  msgstr ""
794
  "À cause des gros changements effectués autour des Add-ons, types de champs et actions/filtres, votre site "
@@ -1511,7 +1511,7 @@ msgid "Formatting"
1511
  msgstr "Formatage "
1512
 
1513
  #: ../core/fields/text.php:177 ../core/fields/textarea.php:142
1514
- msgid "Effects value on front end"
1515
  msgstr "Modifie le contenu sur la partie publique du site"
1516
 
1517
  # @ acf
@@ -1600,7 +1600,7 @@ msgid "Save format"
1600
  msgstr "Sauvegarder format"
1601
 
1602
  #: ../core/fields/date_picker/date_picker.php:127
1603
- msgid "This format will determin the value saved to the database and returned via the API"
1604
  msgstr "Ce format déterminera la valeur enregistrée dans la base de données et retournée par l‘API"
1605
 
1606
  #: ../core/fields/date_picker/date_picker.php:128
3
  "Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2013-10-22 18:19+0100\n"
6
+ "PO-Revision-Date: 2016-04-04 10:08+1000\n"
7
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: RVOLA <hello@rvola.com>\n"
9
  "Language: fr\n"
788
 
789
  #: ../core/controllers/field_groups.php:366
790
  msgid ""
791
+ "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not "
792
  "operate correctly. It is important that you read the full"
793
  msgstr ""
794
  "À cause des gros changements effectués autour des Add-ons, types de champs et actions/filtres, votre site "
1511
  msgstr "Formatage "
1512
 
1513
  #: ../core/fields/text.php:177 ../core/fields/textarea.php:142
1514
+ msgid "Affects value on front end"
1515
  msgstr "Modifie le contenu sur la partie publique du site"
1516
 
1517
  # @ acf
1600
  msgstr "Sauvegarder format"
1601
 
1602
  #: ../core/fields/date_picker/date_picker.php:127
1603
+ msgid "This format will determine the value saved to the database and returned via the API"
1604
  msgstr "Ce format déterminera la valeur enregistrée dans la base de données et retournée par l‘API"
1605
 
1606
  #: ../core/fields/date_picker/date_picker.php:128
lang/acf-he_IL.mo CHANGED
Binary file
lang/acf-he_IL.po CHANGED
@@ -7,13 +7,13 @@ msgstr ""
7
  "Content-Transfer-Encoding: 8bit\n"
8
  "Project-Id-Version: advanced-custom-fields\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: \n"
11
- "Last-Translator: Ahrale <contact@atar4u.com>\n"
12
  "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
13
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "Language: he\n"
16
- "X-Generator: Poedit 1.7.4\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
  # 'large' => __("Large",'acf'),
@@ -1137,15 +1137,15 @@ msgid "File"
1137
  msgstr "קובץ"
1138
 
1139
  # <label><?php _e("Formatting",'acf'); ?></label>
1140
- # <p><?php _e("Effects value on front end",'acf') ?></p>
1141
  # </td>
1142
  # wpml-name: 5881d23e5578bda6b39632adb3d9a5cf
1143
- msgid "Effects value on front end"
1144
  msgstr "ערך השפעה על הפרונט אנד"
1145
 
1146
  # <td class="label">
1147
  # <label><?php _e("Formatting",'acf'); ?></label>
1148
- # <p><?php _e("Effects value on front end",'acf') ?></p>
1149
  # wpml-name: 767042e4dbdd6d8f737786f122d66d4f
1150
  msgid "Formatting"
1151
  msgstr "עיצוב"
@@ -1241,7 +1241,7 @@ msgstr "פורמט תצוגה"
1241
  msgid "jQuery date formats"
1242
  msgstr "פורמט תאריך jQuary "
1243
 
1244
- # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1245
  # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1246
  # </td>
1247
  # wpml-name: 859b701b589225e84b65246501039279
@@ -1249,15 +1249,15 @@ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1249
  msgstr "הוא פורמט השמירה הרב צדדי ביותר.קרא עוד אודות זה"
1250
 
1251
  # <label><?php _e("Save format",'acf'); ?></label>
1252
- # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1253
  # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1254
  # wpml-name: b32d3e0433f5fbc2fc5b2593d5129cfc
1255
- msgid "This format will determin the value saved to the database and returned via the API"
1256
  msgstr "הפורמט הזה יקבע את הערך הנשמר לבסיס הנתונים ויוחזר דרך הAPI."
1257
 
1258
  # <td class="label">
1259
  # <label><?php _e("Save format",'acf'); ?></label>
1260
- # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1261
  # wpml-name: d3db150cd06127a833ecd279debf7729
1262
  msgid "Save format"
1263
  msgstr "פורמט שמירה"
@@ -2117,29 +2117,29 @@ msgid "Really Important!"
2117
  msgstr "באמת חשוב!"
2118
 
2119
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2120
- # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2121
  #
2122
  # wpml-name: 4bbc83cd7980cfa0a8172dc3065342c7
2123
  msgid "guide to view the full list of changes."
2124
  msgstr "מדריך כדי להציג את הרשימה המלאה של שינויים."
2125
 
2126
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2127
- # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2128
  #
2129
  # wpml-name: 1b239e26fb4421abef5ca328d1357aab
2130
  msgid "Migrating from v3 to v4"
2131
  msgstr "מעבר מ-גרסה 3 לגרסה 4"
2132
 
2133
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2134
- # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2135
  #
2136
  # wpml-name: 791934a08992b9d534fc76b7ceb175be
2137
- msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
2138
- msgstr "האם לשינויים ניכרים surounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך לא יפעל בצורה נכונה. זה חשוב שתקרא מלא"
2139
 
2140
  #
2141
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2142
- # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2143
  # wpml-name: a01d9190e303d23db01632f603c31708
2144
  msgid "Potential Issues"
2145
  msgstr "בעיות פוטנציאליות"
7
  "Content-Transfer-Encoding: 8bit\n"
8
  "Project-Id-Version: advanced-custom-fields\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
11
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
12
  "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
13
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "Language: he\n"
16
+ "X-Generator: Poedit 1.8.1\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
  # 'large' => __("Large",'acf'),
1137
  msgstr "קובץ"
1138
 
1139
  # <label><?php _e("Formatting",'acf'); ?></label>
1140
+ # <p><?php _e("Affects value on front end",'acf') ?></p>
1141
  # </td>
1142
  # wpml-name: 5881d23e5578bda6b39632adb3d9a5cf
1143
+ msgid "Affects value on front end"
1144
  msgstr "ערך השפעה על הפרונט אנד"
1145
 
1146
  # <td class="label">
1147
  # <label><?php _e("Formatting",'acf'); ?></label>
1148
+ # <p><?php _e("Affects value on front end",'acf') ?></p>
1149
  # wpml-name: 767042e4dbdd6d8f737786f122d66d4f
1150
  msgid "Formatting"
1151
  msgstr "עיצוב"
1241
  msgid "jQuery date formats"
1242
  msgstr "פורמט תאריך jQuary "
1243
 
1244
+ # <p class="description"><?php _e("This format will determine the value saved to the database and returned via the API",'acf'); ?></p>
1245
  # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1246
  # </td>
1247
  # wpml-name: 859b701b589225e84b65246501039279
1249
  msgstr "הוא פורמט השמירה הרב צדדי ביותר.קרא עוד אודות זה"
1250
 
1251
  # <label><?php _e("Save format",'acf'); ?></label>
1252
+ # <p class="description"><?php _e("This format will determine the value saved to the database and returned via the API",'acf'); ?></p>
1253
  # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1254
  # wpml-name: b32d3e0433f5fbc2fc5b2593d5129cfc
1255
+ msgid "This format will determine the value saved to the database and returned via the API"
1256
  msgstr "הפורמט הזה יקבע את הערך הנשמר לבסיס הנתונים ויוחזר דרך הAPI."
1257
 
1258
  # <td class="label">
1259
  # <label><?php _e("Save format",'acf'); ?></label>
1260
+ # <p class="description"><?php _e("This format will determine the value saved to the database and returned via the API",'acf'); ?></p>
1261
  # wpml-name: d3db150cd06127a833ecd279debf7729
1262
  msgid "Save format"
1263
  msgstr "פורמט שמירה"
2117
  msgstr "באמת חשוב!"
2118
 
2119
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2120
+ # <p><?php _e("Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2121
  #
2122
  # wpml-name: 4bbc83cd7980cfa0a8172dc3065342c7
2123
  msgid "guide to view the full list of changes."
2124
  msgstr "מדריך כדי להציג את הרשימה המלאה של שינויים."
2125
 
2126
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2127
+ # <p><?php _e("Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2128
  #
2129
  # wpml-name: 1b239e26fb4421abef5ca328d1357aab
2130
  msgid "Migrating from v3 to v4"
2131
  msgstr "מעבר מ-גרסה 3 לגרסה 4"
2132
 
2133
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2134
+ # <p><?php _e("Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2135
  #
2136
  # wpml-name: 791934a08992b9d534fc76b7ceb175be
2137
+ msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
2138
+ msgstr "האם לשינויים ניכרים surrounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך לא יפעל בצורה נכונה. זה חשוב שתקרא מלא"
2139
 
2140
  #
2141
  # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2142
+ # <p><?php _e("Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2143
  # wpml-name: a01d9190e303d23db01632f603c31708
2144
  msgid "Potential Issues"
2145
  msgstr "בעיות פוטנציאליות"
lang/acf-id_ID.mo ADDED
Binary file
lang/acf-id_ID.po ADDED
@@ -0,0 +1,1821 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014
2
+ # This file is distributed under the same license as the package.
3
+ 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: 2016-01-21 00:47-0800\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Language-Team: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
21
+ "Language: id_ID\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+
24
+ #: acf.php:485
25
+ msgid "Field&nbsp;Groups"
26
+ msgstr "Grup&nbsp;Bidang"
27
+
28
+ #: acf.php:486 core/controllers/field_groups.php:214
29
+ msgid "Advanced Custom Fields"
30
+ msgstr ""
31
+
32
+ #: acf.php:487
33
+ msgid "Add New"
34
+ msgstr "Tambah Baru"
35
+
36
+ #: acf.php:488
37
+ msgid "Add New Field Group"
38
+ msgstr "Tambah Grup Bidang Baru"
39
+
40
+ #: acf.php:489
41
+ msgid "Edit Field Group"
42
+ msgstr "Edit Grup Bidang"
43
+
44
+ #: acf.php:490
45
+ msgid "New Field Group"
46
+ msgstr "Grup Bidang Baru"
47
+
48
+ #: acf.php:491
49
+ msgid "View Field Group"
50
+ msgstr "Lihat Grup Bidang"
51
+
52
+ #: acf.php:492
53
+ msgid "Search Field Groups"
54
+ msgstr "Cari Grup Bidang"
55
+
56
+ #: acf.php:493
57
+ msgid "No Field Groups found"
58
+ msgstr "Tidak Ada Grup Bidang Ditemukan"
59
+
60
+ #: acf.php:494
61
+ msgid "No Field Groups found in Trash"
62
+ msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah"
63
+
64
+ #: acf.php:579 core/views/meta_box_options.php:99
65
+ msgid "Custom Fields"
66
+ msgstr "Bidang Kustom"
67
+
68
+ #: acf.php:597 acf.php:600
69
+ msgid "Field group updated."
70
+ msgstr "Grup bidang diperbarui."
71
+
72
+ #: acf.php:598
73
+ msgid "Custom field updated."
74
+ msgstr "Bidang kustom diperbarui."
75
+
76
+ #: acf.php:599
77
+ msgid "Custom field deleted."
78
+ msgstr "Bidang kustom dihapus."
79
+
80
+ #. translators: %s: date and time of the revision
81
+ #: acf.php:602
82
+ #, php-format
83
+ msgid "Field group restored to revision from %s"
84
+ msgstr "Grup Bidang dikembalikan ke revisi dari %s"
85
+
86
+ #: acf.php:603
87
+ msgid "Field group published."
88
+ msgstr "Grup bidang diterbitkan."
89
+
90
+ #: acf.php:604
91
+ msgid "Field group saved."
92
+ msgstr "Grup bidang dusimpan."
93
+
94
+ #: acf.php:605
95
+ msgid "Field group submitted."
96
+ msgstr "Grup bidang dikirim."
97
+
98
+ #: acf.php:606
99
+ msgid "Field group scheduled for."
100
+ msgstr "Grup bidang dijadwalkan untuk."
101
+
102
+ #: acf.php:607
103
+ msgid "Field group draft updated."
104
+ msgstr "Draft grup bidang diperbarui."
105
+
106
+ #: acf.php:742
107
+ msgid "Thumbnail"
108
+ msgstr ""
109
+
110
+ #: acf.php:743
111
+ msgid "Medium"
112
+ msgstr "Sedang"
113
+
114
+ #: acf.php:744
115
+ msgid "Large"
116
+ msgstr "Besar"
117
+
118
+ #: acf.php:745
119
+ msgid "Full"
120
+ msgstr "Penuh"
121
+
122
+ #: core/actions/export.php:26 core/views/meta_box_fields.php:58
123
+ msgid "Error"
124
+ msgstr ""
125
+
126
+ #: core/actions/export.php:33
127
+ msgid "No ACF groups selected"
128
+ msgstr "Tidak ada grup ACF yang dipilih"
129
+
130
+ #: core/api.php:1171
131
+ msgid "Update"
132
+ msgstr "Perbarui"
133
+
134
+ #: core/api.php:1172
135
+ msgid "Post updated"
136
+ msgstr "Post Diperbarui"
137
+
138
+ #: core/controllers/addons.php:42 core/controllers/field_groups.php:307
139
+ msgid "Add-ons"
140
+ msgstr ""
141
+
142
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:429
143
+ msgid "Repeater Field"
144
+ msgstr ""
145
+
146
+ #: core/controllers/addons.php:131
147
+ msgid "Create infinite rows of repeatable data with this versatile interface!"
148
+ msgstr ""
149
+ "Buat baris batasan untuk data pengulangan dengan antarmuka serbaguna ini!"
150
+
151
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:437
152
+ msgid "Gallery Field"
153
+ msgstr "Bidang Galeri"
154
+
155
+ #: core/controllers/addons.php:138
156
+ msgid "Create image galleries in a simple and intuitive interface!"
157
+ msgstr "Buat galeri gambar sederhana dan antarmuka intuitif!"
158
+
159
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:445
160
+ msgid "Options Page"
161
+ msgstr "Opsi Laman"
162
+
163
+ #: core/controllers/addons.php:145
164
+ msgid "Create global data to use throughout your website!"
165
+ msgstr "Buat data global untuk menggunakan seluruh situs Anda!"
166
+
167
+ #: core/controllers/addons.php:151
168
+ msgid "Flexible Content Field"
169
+ msgstr "Bidang Konten Fleksibel"
170
+
171
+ #: core/controllers/addons.php:152
172
+ msgid "Create unique designs with a flexible content layout manager!"
173
+ msgstr "Buat desain unik dengan pengelola layout konten fleksibel!"
174
+
175
+ #: core/controllers/addons.php:161
176
+ msgid "Gravity Forms Field"
177
+ msgstr "Bidang Form Gravitasi"
178
+
179
+ #: core/controllers/addons.php:162
180
+ msgid "Creates a select field populated with Gravity Forms!"
181
+ msgstr "Membuat bidang pilih yang diisi dengan Form Gravitasi!"
182
+
183
+ #: core/controllers/addons.php:168
184
+ msgid "Date & Time Picker"
185
+ msgstr "Tanggal & Waktu"
186
+
187
+ #: core/controllers/addons.php:169
188
+ msgid "jQuery date & time picker"
189
+ msgstr "Tanggal jQuery & waktu"
190
+
191
+ #: core/controllers/addons.php:175
192
+ msgid "Location Field"
193
+ msgstr "Lokasi Bidang"
194
+
195
+ #: core/controllers/addons.php:176
196
+ msgid "Find addresses and coordinates of a desired location"
197
+ msgstr "Temukan alamat dan koordinat dari lokasi yang diinginkan"
198
+
199
+ #: core/controllers/addons.php:182
200
+ msgid "Contact Form 7 Field"
201
+ msgstr "Bidang Contact Form 7"
202
+
203
+ #: core/controllers/addons.php:183
204
+ msgid "Assign one or more contact form 7 forms to a post"
205
+ msgstr "Tetapkan satu atau lebih form contact form 7 kedalam post"
206
+
207
+ #: core/controllers/addons.php:193
208
+ msgid "Advanced Custom Fields Add-Ons"
209
+ msgstr "Add-Ons Advanced Custom Fields"
210
+
211
+ #: core/controllers/addons.php:196
212
+ msgid ""
213
+ "The following Add-ons are available to increase the functionality of the "
214
+ "Advanced Custom Fields plugin."
215
+ msgstr ""
216
+ "Add-ons berikut tersedia untuk meningkatkan fungsi dari plugin Advanced "
217
+ "Custom Fields."
218
+
219
+ #: core/controllers/addons.php:197
220
+ msgid ""
221
+ "Each Add-on can be installed as a separate plugin (receives updates) or "
222
+ "included in your theme (does not receive updates)."
223
+ msgstr ""
224
+ "Setiap Add-on dapat diinstal sebagai plugin terpisah (menerima pembaruan) "
225
+ "atau dimasukkan di tema Anda (tidak menerima pembaruan)."
226
+
227
+ #: core/controllers/addons.php:219 core/controllers/addons.php:240
228
+ msgid "Installed"
229
+ msgstr "Terpasang"
230
+
231
+ #: core/controllers/addons.php:221
232
+ msgid "Purchase & Install"
233
+ msgstr "Beli & Pasang"
234
+
235
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:422
236
+ #: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439
237
+ #: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455
238
+ msgid "Download"
239
+ msgstr "Unduh"
240
+
241
+ #: core/controllers/export.php:50 core/controllers/export.php:159
242
+ msgid "Export"
243
+ msgstr "Ekspor"
244
+
245
+ #: core/controllers/export.php:216
246
+ msgid "Export Field Groups"
247
+ msgstr "Ekspor Grup Bidang"
248
+
249
+ #: core/controllers/export.php:221
250
+ msgid "Field Groups"
251
+ msgstr "Grup Bidang"
252
+
253
+ #: core/controllers/export.php:222
254
+ msgid "Select the field groups to be exported"
255
+ msgstr "Pilih grup bidang untuk diekspor"
256
+
257
+ #: core/controllers/export.php:239 core/controllers/export.php:252
258
+ msgid "Export to XML"
259
+ msgstr "Ekspor ke XML"
260
+
261
+ #: core/controllers/export.php:242 core/controllers/export.php:267
262
+ msgid "Export to PHP"
263
+ msgstr "Ekspor ke PHP"
264
+
265
+ #: core/controllers/export.php:253
266
+ msgid ""
267
+ "ACF will create a .xml export file which is compatible with the native WP "
268
+ "import plugin."
269
+ msgstr ""
270
+ "ACF akan membuat file ekspor xml yang kompatibel dengan plugin WP import "
271
+ "asli."
272
+
273
+ #: core/controllers/export.php:254
274
+ msgid ""
275
+ "Imported field groups <b>will</b> appear in the list of editable field "
276
+ "groups. This is useful for migrating fields groups between Wp websites."
277
+ msgstr ""
278
+ "Grup bidang yang diimpor <b>akan</b> tampil di daftar grup bidang yang dapat "
279
+ "diedit. Berguna untuk grup bidang yang migrasi diantara situs Wp."
280
+
281
+ #: core/controllers/export.php:256
282
+ msgid "Select field group(s) from the list and click \"Export XML\""
283
+ msgstr "Pilih grup bidang dari daftar dan klik \"Ekspor XML\""
284
+
285
+ #: core/controllers/export.php:257
286
+ msgid "Save the .xml file when prompted"
287
+ msgstr "Simpan file .xml ketika diminta"
288
+
289
+ #: core/controllers/export.php:258
290
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
291
+ msgstr "Arahkan ke Perkakas &raquo; Impor dan pilih Wordpress"
292
+
293
+ #: core/controllers/export.php:259
294
+ msgid "Install WP import plugin if prompted"
295
+ msgstr "Pasang plugin WP import jika diminta"
296
+
297
+ #: core/controllers/export.php:260
298
+ msgid "Upload and import your exported .xml file"
299
+ msgstr "Unggah dan impor file .xml ekspor Anda"
300
+
301
+ #: core/controllers/export.php:261
302
+ msgid "Select your user and ignore Import Attachments"
303
+ msgstr "Pilih pengguna Anda dan tolak Lampiran Impor"
304
+
305
+ #: core/controllers/export.php:262
306
+ msgid "That's it! Happy WordPressing"
307
+ msgstr "Itu saja! Selamat berWordpress"
308
+
309
+ #: core/controllers/export.php:268
310
+ msgid "ACF will create the PHP code to include in your theme."
311
+ msgstr "ACF akan membuat kode PHP untuk memasukkan kedalam tema."
312
+
313
+ #: core/controllers/export.php:269 core/controllers/export.php:310
314
+ msgid ""
315
+ "Registered field groups <b>will not</b> appear in the list of editable field "
316
+ "groups. This is useful for including fields in themes."
317
+ msgstr ""
318
+ "Grup bidang terdaftar <b>tidak akan</b> tampil di daftar grup bidang yang "
319
+ "dapat diedit. Berguna untuk memasukkan bidang didalam tema."
320
+
321
+ #: core/controllers/export.php:270 core/controllers/export.php:311
322
+ msgid ""
323
+ "Please note that if you export and register field groups within the same WP, "
324
+ "you will see duplicate fields on your edit screens. To fix this, please move "
325
+ "the original field group to the trash or remove the code from your functions."
326
+ "php file."
327
+ msgstr ""
328
+ "Harap catat jika ekspor dan grup bidang terdaftar Anda dalam WP yang sama, "
329
+ "Anda akan melihat bidang duplikat pada layar pengeditan. Untuk memperbaiki "
330
+ "ini, silahkan pindahkan grup bidang original ke tong sampah atau singkirkan "
331
+ "kode dari file function.php."
332
+
333
+ #: core/controllers/export.php:272
334
+ msgid "Select field group(s) from the list and click \"Create PHP\""
335
+ msgstr "Pilih grup bidang dari daftar dan klik \"Buat PHP\""
336
+
337
+ #: core/controllers/export.php:273 core/controllers/export.php:302
338
+ msgid "Copy the PHP code generated"
339
+ msgstr "Salin kode PHP yang dihasilkan"
340
+
341
+ #: core/controllers/export.php:274 core/controllers/export.php:303
342
+ msgid "Paste into your functions.php file"
343
+ msgstr "Tempel di file function.php Anda"
344
+
345
+ #: core/controllers/export.php:275 core/controllers/export.php:304
346
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
347
+ msgstr ""
348
+ "Untuk mengaktifkan Add-ons, edit dan gunakan kode di beberapa baris pertama."
349
+
350
+ #: core/controllers/export.php:295
351
+ msgid "Export Field Groups to PHP"
352
+ msgstr "Ekspor grup bidang ke PHP"
353
+
354
+ #: core/controllers/export.php:300 core/fields/tab.php:65
355
+ msgid "Instructions"
356
+ msgstr "Instruksi"
357
+
358
+ #: core/controllers/export.php:309
359
+ msgid "Notes"
360
+ msgstr "Catatan"
361
+
362
+ #: core/controllers/export.php:316
363
+ msgid "Include in theme"
364
+ msgstr "Masukkan kedalam tema"
365
+
366
+ #: core/controllers/export.php:317
367
+ msgid ""
368
+ "The Advanced Custom Fields plugin can be included within a theme. To do so, "
369
+ "move the ACF plugin inside your theme and add the following code to your "
370
+ "functions.php file:"
371
+ msgstr ""
372
+ "Plugin Advanced Custom Fields dapat dimasukkan kedalam tema. Untuk "
373
+ "melakukannya, pindahkan plugin ACF kedalam tema Anda dan tambahkan kode "
374
+ "berikut ke file function.php:"
375
+
376
+ #: core/controllers/export.php:323
377
+ msgid ""
378
+ "To remove all visual interfaces from the ACF plugin, you can use a constant "
379
+ "to enable lite mode. Add the following code to your functions.php file "
380
+ "<b>before</b> the include_once code:"
381
+ msgstr ""
382
+ "Untuk menghapus semua antarmuka visual dari plugin ACF, Anda dapat "
383
+ "menggunakan konstanta untuk mengaktifkan lite mode. Tambahkan kode berikut "
384
+ "ke file function.php <sebelum</b> kode include_once:"
385
+
386
+ #: core/controllers/export.php:331
387
+ msgid "Back to export"
388
+ msgstr "Kembali ke ekspor"
389
+
390
+ #: core/controllers/export.php:400
391
+ msgid "No field groups were selected"
392
+ msgstr "Tidak ada grup bidang yang dipilih"
393
+
394
+ #: core/controllers/field_group.php:358
395
+ msgid "Move to trash. Are you sure?"
396
+ msgstr "Pindahkan ke tong sampah. Yakin?"
397
+
398
+ #: core/controllers/field_group.php:359
399
+ msgid "checked"
400
+ msgstr "Diperiksa"
401
+
402
+ #: core/controllers/field_group.php:360
403
+ msgid "No toggle fields available"
404
+ msgstr "Tidak ada bidang toggle yang tersedia"
405
+
406
+ #: core/controllers/field_group.php:361
407
+ msgid "Field group title is required"
408
+ msgstr "Judul grup bidang diperlukan"
409
+
410
+ #: core/controllers/field_group.php:362
411
+ msgid "copy"
412
+ msgstr "Salin"
413
+
414
+ #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
415
+ #: core/views/meta_box_location.php:159
416
+ msgid "or"
417
+ msgstr "atau"
418
+
419
+ #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
420
+ #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
421
+ msgid "Fields"
422
+ msgstr "Bidang"
423
+
424
+ #: core/controllers/field_group.php:365
425
+ msgid "Parent fields"
426
+ msgstr "Bidang parent"
427
+
428
+ #: core/controllers/field_group.php:366
429
+ msgid "Sibling fields"
430
+ msgstr "Bidang sibling"
431
+
432
+ #: core/controllers/field_group.php:367
433
+ msgid "Hide / Show All"
434
+ msgstr "Sembunyikan / Tampilkan Semua"
435
+
436
+ #: core/controllers/field_group.php:396
437
+ msgid "Location"
438
+ msgstr "Lokasi"
439
+
440
+ #: core/controllers/field_group.php:397
441
+ msgid "Options"
442
+ msgstr "Opsi"
443
+
444
+ #: core/controllers/field_group.php:459
445
+ msgid "Show Field Key:"
446
+ msgstr "Tampilkan Kunci Bidang:"
447
+
448
+ #: core/controllers/field_group.php:460 core/fields/page_link.php:138
449
+ #: core/fields/page_link.php:159 core/fields/post_object.php:340
450
+ #: core/fields/post_object.php:361 core/fields/select.php:224
451
+ #: core/fields/select.php:243 core/fields/taxonomy.php:499
452
+ #: core/fields/user.php:332 core/fields/wysiwyg.php:335
453
+ #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
454
+ msgid "No"
455
+ msgstr "Tidak"
456
+
457
+ #: core/controllers/field_group.php:461 core/fields/page_link.php:137
458
+ #: core/fields/page_link.php:158 core/fields/post_object.php:339
459
+ #: core/fields/post_object.php:360 core/fields/select.php:223
460
+ #: core/fields/select.php:242 core/fields/taxonomy.php:498
461
+ #: core/fields/user.php:331 core/fields/wysiwyg.php:334
462
+ #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
463
+ msgid "Yes"
464
+ msgstr "Ya"
465
+
466
+ #: core/controllers/field_group.php:633
467
+ msgid "Front Page"
468
+ msgstr "Laman Depan"
469
+
470
+ #: core/controllers/field_group.php:634
471
+ msgid "Posts Page"
472
+ msgstr "Laman Post"
473
+
474
+ #: core/controllers/field_group.php:635
475
+ msgid "Top Level Page (parent of 0)"
476
+ msgstr "Laman Tingkat Atas (parent 0)"
477
+
478
+ #: core/controllers/field_group.php:636
479
+ msgid "Parent Page (has children)"
480
+ msgstr "Laman Parent (memiliki anak)"
481
+
482
+ #: core/controllers/field_group.php:637
483
+ msgid "Child Page (has parent)"
484
+ msgstr "Laman Anak (memiliki parent)"
485
+
486
+ #: core/controllers/field_group.php:645
487
+ msgid "Default Template"
488
+ msgstr "Template Default"
489
+
490
+ #: core/controllers/field_group.php:727
491
+ msgid "Published"
492
+ msgstr "Diterbitkan"
493
+
494
+ #: core/controllers/field_group.php:728
495
+ msgid "Pending Review"
496
+ msgstr "Tinjauan Tertunda"
497
+
498
+ #: core/controllers/field_group.php:729
499
+ msgid "Draft"
500
+ msgstr "Draf"
501
+
502
+ #: core/controllers/field_group.php:730
503
+ msgid "Future"
504
+ msgstr ""
505
+
506
+ #: core/controllers/field_group.php:731
507
+ msgid "Private"
508
+ msgstr "Pribadi"
509
+
510
+ #: core/controllers/field_group.php:732
511
+ msgid "Revision"
512
+ msgstr "Revisi"
513
+
514
+ #: core/controllers/field_group.php:733
515
+ msgid "Trash"
516
+ msgstr "Tong Sampah"
517
+
518
+ #: core/controllers/field_group.php:746
519
+ msgid "Super Admin"
520
+ msgstr ""
521
+
522
+ #: core/controllers/field_group.php:761 core/controllers/field_group.php:782
523
+ #: core/controllers/field_group.php:789 core/fields/file.php:186
524
+ #: core/fields/image.php:177 core/fields/page_link.php:109
525
+ #: core/fields/post_object.php:286 core/fields/post_object.php:310
526
+ #: core/fields/relationship.php:588 core/fields/relationship.php:612
527
+ #: core/fields/user.php:276
528
+ msgid "All"
529
+ msgstr "Semua"
530
+
531
+ #: core/controllers/field_groups.php:147
532
+ msgid "Title"
533
+ msgstr "Judul"
534
+
535
+ #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
536
+ msgid "Changelog"
537
+ msgstr ""
538
+
539
+ #: core/controllers/field_groups.php:217
540
+ #, php-format
541
+ msgid "See what's new in %1$sversion %2$s%3$s"
542
+ msgstr "Lihat apa yang baru di %1$sversi %2$s%3$s"
543
+
544
+ #: core/controllers/field_groups.php:219
545
+ msgid "Resources"
546
+ msgstr "Sumber Daya"
547
+
548
+ #: core/controllers/field_groups.php:221
549
+ msgid "Getting Started"
550
+ msgstr "Perkenalan"
551
+
552
+ #: core/controllers/field_groups.php:222
553
+ msgid "Field Types"
554
+ msgstr "Jenis Field"
555
+
556
+ #: core/controllers/field_groups.php:223
557
+ msgid "Functions"
558
+ msgstr "Fungsi"
559
+
560
+ #: core/controllers/field_groups.php:224
561
+ msgid "Actions"
562
+ msgstr "Tindakan"
563
+
564
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:631
565
+ msgid "Filters"
566
+ msgstr "Saringan"
567
+
568
+ #: core/controllers/field_groups.php:226
569
+ msgid "'How to' guides"
570
+ msgstr "Panduan \"Bagaimana Caranya\""
571
+
572
+ #: core/controllers/field_groups.php:227
573
+ msgid "Tutorials"
574
+ msgstr "Tutorial"
575
+
576
+ #: core/controllers/field_groups.php:232
577
+ msgid "Created by"
578
+ msgstr "Dibuat oleh"
579
+
580
+ #: core/controllers/field_groups.php:244
581
+ msgid "Welcome to Advanced Custom Fields"
582
+ msgstr "Selamat datang di Advanced Custom Fields"
583
+
584
+ #: core/controllers/field_groups.php:245
585
+ msgid "Thank you for updating to the latest version!"
586
+ msgstr "Terimakasih sudah memperbarui ke versi terbaru!"
587
+
588
+ #: core/controllers/field_groups.php:245
589
+ #, php-format
590
+ msgid ""
591
+ "ACF %s is more polished and enjoyable than ever before. We hope you like it."
592
+ msgstr ""
593
+ "ACF %s lebih dipoles dan menyenangkan dari sebelumnya. Kami harap Anda suka."
594
+
595
+ #: core/controllers/field_groups.php:252
596
+ msgid "What’s New"
597
+ msgstr "Apa yang Baru"
598
+
599
+ #: core/controllers/field_groups.php:255
600
+ msgid "Download Add-ons"
601
+ msgstr "Unduh Add-ons"
602
+
603
+ #: core/controllers/field_groups.php:309
604
+ msgid "Activation codes have grown into plugins!"
605
+ msgstr "Kode aktivasi telah menyatu ke plugin!"
606
+
607
+ #: core/controllers/field_groups.php:310
608
+ msgid ""
609
+ "Add-ons are now activated by downloading and installing individual plugins. "
610
+ "Although these plugins will not be hosted on the wordpress.org repository, "
611
+ "each Add-on will continue to receive updates in the usual way."
612
+ msgstr ""
613
+ "Add-ons sekarang diaktifkan dengan mengunduh dan menginstal plugin individu. "
614
+ "Meskipun plugin ini tidak akan dihost pada repositoriwordpress.org, setiap "
615
+ "Add-on akan terus menerima pembaruan dengan cara seperti biasa."
616
+
617
+ #: core/controllers/field_groups.php:316
618
+ msgid "All previous Add-ons have been successfully installed"
619
+ msgstr "Semua Add-ons lama berhasil terpasang"
620
+
621
+ #: core/controllers/field_groups.php:320
622
+ msgid "This website uses premium Add-ons which need to be downloaded"
623
+ msgstr "Website ini menggunakan Add-ons premium yang perlu diunduh"
624
+
625
+ #: core/controllers/field_groups.php:320
626
+ msgid "Download your activated Add-ons"
627
+ msgstr "Unduh Add-ons Anda yang diaktifkan"
628
+
629
+ #: core/controllers/field_groups.php:325
630
+ msgid ""
631
+ "This website does not use premium Add-ons and will not be affected by this "
632
+ "change."
633
+ msgstr ""
634
+ "Website ini tidak menggunakan Add-ons premium dan tidak akan dipengaruhi "
635
+ "oleh perubahan ini."
636
+
637
+ #: core/controllers/field_groups.php:335
638
+ msgid "Easier Development"
639
+ msgstr "Pengembangan Mudah"
640
+
641
+ #: core/controllers/field_groups.php:337
642
+ msgid "New Field Types"
643
+ msgstr "Jenis Bidang Baru"
644
+
645
+ #: core/controllers/field_groups.php:339
646
+ msgid "Taxonomy Field"
647
+ msgstr "Bidang Taksonomi"
648
+
649
+ #: core/controllers/field_groups.php:340
650
+ msgid "User Field"
651
+ msgstr "Bidang Pengguna"
652
+
653
+ #: core/controllers/field_groups.php:341
654
+ msgid "Email Field"
655
+ msgstr "Bidang Email"
656
+
657
+ #: core/controllers/field_groups.php:342
658
+ msgid "Password Field"
659
+ msgstr "Bidang Kata Sandi"
660
+
661
+ #: core/controllers/field_groups.php:344
662
+ msgid "Custom Field Types"
663
+ msgstr "Jenis Bidang Kustom"
664
+
665
+ #: core/controllers/field_groups.php:345
666
+ msgid ""
667
+ "Creating your own field type has never been easier! Unfortunately, version 3 "
668
+ "field types are not compatible with version 4."
669
+ msgstr ""
670
+ "Buat jenis bidang Anda sendiri tidak pernah mudah! Sayangnya, bidang versi 3 "
671
+ "tidak kompatibel dengan versi 4."
672
+
673
+ #: core/controllers/field_groups.php:346
674
+ #, php-format
675
+ msgid ""
676
+ "Migrating your field types is easy, please %sfollow this tutorial%s to learn "
677
+ "more."
678
+ msgstr ""
679
+ "Memigrasi jenis bidang Anda itu mudah, silahkan %s ikuti tutorial ini%s "
680
+ "untuk lebih lanjut."
681
+
682
+ #: core/controllers/field_groups.php:348
683
+ msgid "Actions &amp; Filters"
684
+ msgstr "Tindakan &amp; Penyaringan"
685
+
686
+ #: core/controllers/field_groups.php:349
687
+ #, php-format
688
+ msgid ""
689
+ "All actions & filters have received a major facelift to make customizing ACF "
690
+ "even easier! Please %sread this guide%s to find the updated naming "
691
+ "convention."
692
+ msgstr ""
693
+ "Semua tindakan dan saringan telah menerima facelift besar untuk mengkustom "
694
+ "ACF lebih mudah! Silahkan %s baca panduan ini%s untuk menemukan konvensi "
695
+ "penamaan yang diperbarui."
696
+
697
+ #: core/controllers/field_groups.php:351
698
+ msgid "Preview draft is now working!"
699
+ msgstr "Tinjauan draft tidak jalan!"
700
+
701
+ #: core/controllers/field_groups.php:352
702
+ msgid "This bug has been squashed along with many other little critters!"
703
+ msgstr "Bug ini terjepit bersama makhluk kecil lainnya!"
704
+
705
+ #: core/controllers/field_groups.php:352
706
+ msgid "See the full changelog"
707
+ msgstr "Lihat changelog penuh"
708
+
709
+ #: core/controllers/field_groups.php:356
710
+ msgid "Important"
711
+ msgstr "Penting"
712
+
713
+ #: core/controllers/field_groups.php:358
714
+ msgid "Database Changes"
715
+ msgstr "Perubahan Basis Data"
716
+
717
+ #: core/controllers/field_groups.php:359
718
+ msgid ""
719
+ "Absolutely <strong>no</strong> changes have been made to the database "
720
+ "between versions 3 and 4. This means you can roll back to version 3 without "
721
+ "any issues."
722
+ msgstr ""
723
+ "<strong>Tidak ada</strong> perubahan yang dilakukan untuk basis data antara "
724
+ "versi 3 dan 4. Ini artinya Anda dapat kembali ke versi 3 tanpa masalah "
725
+ "paapun."
726
+
727
+ #: core/controllers/field_groups.php:361
728
+ msgid "Potential Issues"
729
+ msgstr "Masalah Potensial"
730
+
731
+ #: core/controllers/field_groups.php:362
732
+ #, php-format
733
+ msgid ""
734
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
735
+ "filters, your website may not operate correctly. It is important that you "
736
+ "read the full %sMigrating from v3 to v4%s guide to view the full list of "
737
+ "changes."
738
+ msgstr ""
739
+ "Karena perubahan yang cukup besar seputar Add-ons, jenis bidang dan tindakan/"
740
+ "saringan, website Anda mungkin tidak beroperasi. Penting untuk Anda membaca "
741
+ "seluruh panduan %sMigrasi dari v3 ke v4%s untuk melihat semua daftar "
742
+ "perubahan."
743
+
744
+ #: core/controllers/field_groups.php:365
745
+ msgid "Really Important!"
746
+ msgstr "Benar-benar penting!"
747
+
748
+ #: core/controllers/field_groups.php:365
749
+ #, php-format
750
+ msgid ""
751
+ "If you updated the ACF plugin without prior knowledge of such changes, "
752
+ "please roll back to the latest %sversion 3%s of this plugin."
753
+ msgstr ""
754
+ "Jika Anda memperbarui plugin ACF tanpa pengetahuan pada perubahan tersebut, "
755
+ "silahkan kembali ke %sversi 3%s terbaru dari plugin."
756
+
757
+ #: core/controllers/field_groups.php:370
758
+ msgid "Thank You"
759
+ msgstr "Terima Kasih"
760
+
761
+ #: core/controllers/field_groups.php:371
762
+ msgid ""
763
+ "A <strong>BIG</strong> thank you to everyone who has helped test the version "
764
+ "4 beta and for all the support I have received."
765
+ msgstr ""
766
+ "Terimakasih <strong>BANYAK</strong> kepada semua yang membantu menguji versi "
767
+ "4 beta dan untuk semua bantuan yang saya terima."
768
+
769
+ #: core/controllers/field_groups.php:372
770
+ msgid "Without you all, this release would not have been possible!"
771
+ msgstr "Tanpa kalian semua, rilis ini sepertinya tidak akan mungkin!"
772
+
773
+ #: core/controllers/field_groups.php:376
774
+ msgid "Changelog for"
775
+ msgstr "Changelog untuk"
776
+
777
+ #: core/controllers/field_groups.php:393
778
+ msgid "Learn more"
779
+ msgstr "Pelajari lebih lanjut"
780
+
781
+ #: core/controllers/field_groups.php:399
782
+ msgid "Overview"
783
+ msgstr "Ringkasan"
784
+
785
+ #: core/controllers/field_groups.php:401
786
+ msgid ""
787
+ "Previously, all Add-ons were unlocked via an activation code (purchased from "
788
+ "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
789
+ "need to be individually downloaded, installed and updated."
790
+ msgstr ""
791
+ "Sebelumnya, Semua Add-ons yang dibuka melalui kode aktivasi (dibeli dari "
792
+ "toko ACF Add-ons). Hal baru untuk v4, Semua Add-on berlaku sebagai plugin "
793
+ "terpisah yang perlu diunduh, dipasang dan diperbarui secara individu."
794
+
795
+ #: core/controllers/field_groups.php:403
796
+ msgid ""
797
+ "This page will assist you in downloading and installing each available Add-"
798
+ "on."
799
+ msgstr ""
800
+ "Halaman ini akan membantu Anda dalam mengunduh dan memasang setiap Add-on "
801
+ "yang tersedia."
802
+
803
+ #: core/controllers/field_groups.php:405
804
+ msgid "Available Add-ons"
805
+ msgstr "Add-ons Tersedia"
806
+
807
+ #: core/controllers/field_groups.php:407
808
+ msgid "The following Add-ons have been detected as activated on this website."
809
+ msgstr ""
810
+ "Add-on berikut sudah terdeteksi sebagai yang sudah diaktifkan pada situs "
811
+ "Anda."
812
+
813
+ #: core/controllers/field_groups.php:420 core/fields/file.php:109
814
+ msgid "Name"
815
+ msgstr "Nama"
816
+
817
+ #: core/controllers/field_groups.php:421
818
+ msgid "Activation Code"
819
+ msgstr "Kode Aktivasi"
820
+
821
+ #: core/controllers/field_groups.php:453
822
+ msgid "Flexible Content"
823
+ msgstr "Konten Fleksibel"
824
+
825
+ #: core/controllers/field_groups.php:463
826
+ msgid "Installation"
827
+ msgstr "Pemasangan"
828
+
829
+ #: core/controllers/field_groups.php:465
830
+ msgid "For each Add-on available, please perform the following:"
831
+ msgstr "Untuk setiap Add-on yang tersedia, silakan melakukan hal berikut:"
832
+
833
+ #: core/controllers/field_groups.php:467
834
+ msgid "Download the Add-on plugin (.zip file) to your desktop"
835
+ msgstr "Unduh Add-ons (file .zip) ke desktop Anda."
836
+
837
+ #: core/controllers/field_groups.php:468
838
+ #, php-format
839
+ msgid "Navigate to %sPlugins > Add New > Upload%s"
840
+ msgstr "Pindah ke %sPlugin > Tambah Baru > Unggah%s"
841
+
842
+ #: core/controllers/field_groups.php:469
843
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
844
+ msgstr ""
845
+ "Gunakah pengunggah untuk mencari, memilih dan memasang Add-on (file .zip)"
846
+
847
+ #: core/controllers/field_groups.php:470
848
+ msgid ""
849
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
850
+ "link"
851
+ msgstr "Setelah plugin diunggah dan dipasang, klik link \"Aktifkan Plugin\""
852
+
853
+ #: core/controllers/field_groups.php:471
854
+ msgid "The Add-on is now installed and activated!"
855
+ msgstr "Sekarang Add-on terpasang dan diaktifkan!"
856
+
857
+ #: core/controllers/field_groups.php:485
858
+ msgid "Awesome. Let's get to work"
859
+ msgstr "Keren. Mari mulai bekerja"
860
+
861
+ #: core/controllers/input.php:63
862
+ msgid "Expand Details"
863
+ msgstr "Perluas Rincian"
864
+
865
+ #: core/controllers/input.php:64
866
+ msgid "Collapse Details"
867
+ msgstr "Persempit Rincian"
868
+
869
+ #: core/controllers/input.php:67
870
+ msgid "Validation Failed. One or more fields below are required."
871
+ msgstr "Validasi Gagal. Satu atau lebih bidang dibawah diperlukan."
872
+
873
+ #: core/controllers/upgrade.php:77
874
+ msgid "Upgrade"
875
+ msgstr "Tingkatkan"
876
+
877
+ #: core/controllers/upgrade.php:599
878
+ msgid "Modifying field group options 'show on page'"
879
+ msgstr "Memodifikasi opsi grup bidang 'tampilkan di laman'"
880
+
881
+ #: core/controllers/upgrade.php:653
882
+ msgid "Modifying field option 'taxonomy'"
883
+ msgstr "Memodifikasi opsi bidang 'taksonomi'"
884
+
885
+ #: core/controllers/upgrade.php:750
886
+ msgid "Moving user custom fields from wp_options to wp_usermeta"
887
+ msgstr "Memindahkan bidang kustom pengguna dari wp_opstions ke wp_usermeta"
888
+
889
+ #: core/fields/_base.php:124 core/views/meta_box_location.php:74
890
+ msgid "Basic"
891
+ msgstr "Dasar"
892
+
893
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:475
894
+ msgid "Checkbox"
895
+ msgstr "Kotak Centang"
896
+
897
+ #: core/fields/checkbox.php:20 core/fields/radio.php:19
898
+ #: core/fields/select.php:19 core/fields/true_false.php:20
899
+ msgid "Choice"
900
+ msgstr "Pilihan"
901
+
902
+ #: core/fields/checkbox.php:146 core/fields/radio.php:147
903
+ #: core/fields/select.php:177
904
+ msgid "Choices"
905
+ msgstr "Pilihan"
906
+
907
+ #: core/fields/checkbox.php:147 core/fields/select.php:178
908
+ msgid "Enter each choice on a new line."
909
+ msgstr "Masukkan setiap pilihan pada baris baru."
910
+
911
+ #: core/fields/checkbox.php:148 core/fields/select.php:179
912
+ msgid "For more control, you may specify both a value and label like this:"
913
+ msgstr ""
914
+ "Untuk kontrol lebih, Anda dapat menentukan nilai keduanya dan label seperti "
915
+ "ini:"
916
+
917
+ #: core/fields/checkbox.php:149 core/fields/radio.php:153
918
+ #: core/fields/select.php:180
919
+ msgid "red : Red"
920
+ msgstr ""
921
+
922
+ #: core/fields/checkbox.php:149 core/fields/radio.php:154
923
+ #: core/fields/select.php:180
924
+ msgid "blue : Blue"
925
+ msgstr ""
926
+
927
+ #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
928
+ #: core/fields/email.php:106 core/fields/number.php:116
929
+ #: core/fields/radio.php:196 core/fields/select.php:197
930
+ #: core/fields/text.php:116 core/fields/textarea.php:103
931
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:277
932
+ msgid "Default Value"
933
+ msgstr "Nilai Default"
934
+
935
+ #: core/fields/checkbox.php:167 core/fields/select.php:198
936
+ msgid "Enter each default value on a new line"
937
+ msgstr "Masukkan setiap default pada baris baru"
938
+
939
+ #: core/fields/checkbox.php:183 core/fields/message.php:20
940
+ #: core/fields/radio.php:212 core/fields/tab.php:20
941
+ msgid "Layout"
942
+ msgstr ""
943
+
944
+ #: core/fields/checkbox.php:194 core/fields/radio.php:223
945
+ msgid "Vertical"
946
+ msgstr ""
947
+
948
+ #: core/fields/checkbox.php:195 core/fields/radio.php:224
949
+ msgid "Horizontal"
950
+ msgstr ""
951
+
952
+ #: core/fields/color_picker.php:19
953
+ msgid "Color Picker"
954
+ msgstr "Pengambil Warna"
955
+
956
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
957
+ #: core/fields/google-map.php:19
958
+ msgid "jQuery"
959
+ msgstr ""
960
+
961
+ #: core/fields/date_picker/date_picker.php:19
962
+ msgid "Date Picker"
963
+ msgstr "Pengambil Tanggal"
964
+
965
+ #: core/fields/date_picker/date_picker.php:55
966
+ msgid "Done"
967
+ msgstr "Selesai"
968
+
969
+ #: core/fields/date_picker/date_picker.php:56
970
+ msgid "Today"
971
+ msgstr "Hari ini"
972
+
973
+ #: core/fields/date_picker/date_picker.php:59
974
+ msgid "Show a different month"
975
+ msgstr "Tampilkan bulan berbeda"
976
+
977
+ #: core/fields/date_picker/date_picker.php:126
978
+ msgid "Save format"
979
+ msgstr "Simpan format"
980
+
981
+ #: core/fields/date_picker/date_picker.php:127
982
+ msgid ""
983
+ "This format will determine the value saved to the database and returned via "
984
+ "the API"
985
+ msgstr ""
986
+ "Format ini akan menentukan hasil yang disimpan ke basis data dan "
987
+ "dikembalikan via API"
988
+
989
+ #: core/fields/date_picker/date_picker.php:128
990
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
991
+ msgstr ""
992
+ "\"yymmdd\" adalah yang paling berguna menyimpan format. Baca lebih lanjut"
993
+
994
+ #: core/fields/date_picker/date_picker.php:128
995
+ #: core/fields/date_picker/date_picker.php:144
996
+ msgid "jQuery date formats"
997
+ msgstr "Format tanggal jQuery"
998
+
999
+ #: core/fields/date_picker/date_picker.php:142
1000
+ msgid "Display format"
1001
+ msgstr "Format tampilan"
1002
+
1003
+ #: core/fields/date_picker/date_picker.php:143
1004
+ msgid "This format will be seen by the user when entering a value"
1005
+ msgstr "Format akan terlihat oleh pengguna ketika memasukkan nilai"
1006
+
1007
+ #: core/fields/date_picker/date_picker.php:144
1008
+ msgid ""
1009
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1010
+ "about"
1011
+ msgstr ""
1012
+ "\"dd/mm/yy\" atau \"mm/dd/yy\" adalah format tampilan yang sering digunakan. "
1013
+ "Baca lebih lanjut"
1014
+
1015
+ #: core/fields/date_picker/date_picker.php:158
1016
+ msgid "Week Starts On"
1017
+ msgstr "Minggu Dimulai Pada"
1018
+
1019
+ #: core/fields/dummy.php:19
1020
+ msgid "Dummy"
1021
+ msgstr ""
1022
+
1023
+ #: core/fields/email.php:19
1024
+ msgid "Email"
1025
+ msgstr ""
1026
+
1027
+ #: core/fields/email.php:107 core/fields/number.php:117
1028
+ #: core/fields/text.php:117 core/fields/textarea.php:104
1029
+ #: core/fields/wysiwyg.php:278
1030
+ msgid "Appears when creating a new post"
1031
+ msgstr "Muncul ketika membuat sebuah post baru"
1032
+
1033
+ #: core/fields/email.php:123 core/fields/number.php:133
1034
+ #: core/fields/password.php:105 core/fields/text.php:131
1035
+ #: core/fields/textarea.php:118
1036
+ msgid "Placeholder Text"
1037
+ msgstr "Teks Placeholder"
1038
+
1039
+ #: core/fields/email.php:124 core/fields/number.php:134
1040
+ #: core/fields/password.php:106 core/fields/text.php:132
1041
+ #: core/fields/textarea.php:119
1042
+ msgid "Appears within the input"
1043
+ msgstr "Muncul didalam input"
1044
+
1045
+ #: core/fields/email.php:138 core/fields/number.php:148
1046
+ #: core/fields/password.php:120 core/fields/text.php:146
1047
+ msgid "Prepend"
1048
+ msgstr "Tambahkan"
1049
+
1050
+ #: core/fields/email.php:139 core/fields/number.php:149
1051
+ #: core/fields/password.php:121 core/fields/text.php:147
1052
+ msgid "Appears before the input"
1053
+ msgstr "Muncul sebelum input"
1054
+
1055
+ #: core/fields/email.php:153 core/fields/number.php:163
1056
+ #: core/fields/password.php:135 core/fields/text.php:161
1057
+ msgid "Append"
1058
+ msgstr "Menambahkan"
1059
+
1060
+ #: core/fields/email.php:154 core/fields/number.php:164
1061
+ #: core/fields/password.php:136 core/fields/text.php:162
1062
+ msgid "Appears after the input"
1063
+ msgstr "Muncul setelah input"
1064
+
1065
+ #: core/fields/file.php:19
1066
+ msgid "File"
1067
+ msgstr ""
1068
+
1069
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:37
1070
+ msgid "Content"
1071
+ msgstr "Konten"
1072
+
1073
+ #: core/fields/file.php:26
1074
+ msgid "Select File"
1075
+ msgstr "Pilih File"
1076
+
1077
+ #: core/fields/file.php:27
1078
+ msgid "Edit File"
1079
+ msgstr ""
1080
+
1081
+ #: core/fields/file.php:28
1082
+ msgid "Update File"
1083
+ msgstr "Perbarui File"
1084
+
1085
+ #: core/fields/file.php:29 core/fields/image.php:30
1086
+ msgid "uploaded to this post"
1087
+ msgstr "diunggah ke post ini"
1088
+
1089
+ #: core/fields/file.php:113
1090
+ msgid "Size"
1091
+ msgstr "Ukuran"
1092
+
1093
+ #: core/fields/file.php:123
1094
+ msgid "No File Selected"
1095
+ msgstr "Tak Ada File yang Dipilih"
1096
+
1097
+ #: core/fields/file.php:123
1098
+ msgid "Add File"
1099
+ msgstr "Tambahkan File"
1100
+
1101
+ #: core/fields/file.php:153 core/fields/image.php:125
1102
+ #: core/fields/taxonomy.php:523
1103
+ msgid "Return Value"
1104
+ msgstr "Nilai Kembali"
1105
+
1106
+ #: core/fields/file.php:164
1107
+ msgid "File Object"
1108
+ msgstr "File Objek"
1109
+
1110
+ #: core/fields/file.php:165
1111
+ msgid "File URL"
1112
+ msgstr "URL File"
1113
+
1114
+ #: core/fields/file.php:166
1115
+ msgid "File ID"
1116
+ msgstr "ID File"
1117
+
1118
+ #: core/fields/file.php:175 core/fields/image.php:165
1119
+ msgid "Library"
1120
+ msgstr "Perpustakaan"
1121
+
1122
+ #: core/fields/file.php:187 core/fields/image.php:178
1123
+ msgid "Uploaded to post"
1124
+ msgstr "Diunggah ke post"
1125
+
1126
+ #: core/fields/google-map.php:18
1127
+ msgid "Google Map"
1128
+ msgstr ""
1129
+
1130
+ #: core/fields/google-map.php:33
1131
+ msgid "Locating"
1132
+ msgstr "Melokasikan"
1133
+
1134
+ #: core/fields/google-map.php:34
1135
+ msgid "Sorry, this browser does not support geolocation"
1136
+ msgstr "Maaf, browser ini tidak support geolocation"
1137
+
1138
+ #: core/fields/google-map.php:120
1139
+ msgid "Clear location"
1140
+ msgstr "Bersihkan lokasi"
1141
+
1142
+ #: core/fields/google-map.php:125
1143
+ msgid "Find current location"
1144
+ msgstr "Temukan lokasi saat ini"
1145
+
1146
+ #: core/fields/google-map.php:126
1147
+ msgid "Search for address..."
1148
+ msgstr "Cari alamat..."
1149
+
1150
+ #: core/fields/google-map.php:162
1151
+ msgid "Center"
1152
+ msgstr "Tengah"
1153
+
1154
+ #: core/fields/google-map.php:163
1155
+ msgid "Center the initial map"
1156
+ msgstr "Pusat peta awal"
1157
+
1158
+ #: core/fields/google-map.php:199
1159
+ msgid "Zoom"
1160
+ msgstr ""
1161
+
1162
+ #: core/fields/google-map.php:200
1163
+ msgid "Set the initial zoom level"
1164
+ msgstr "Mengatur tingkat awal zoom"
1165
+
1166
+ #: core/fields/google-map.php:217
1167
+ msgid "Height"
1168
+ msgstr "Tinggi"
1169
+
1170
+ #: core/fields/google-map.php:218
1171
+ msgid "Customise the map height"
1172
+ msgstr "Sesuaikan ketinggian peta"
1173
+
1174
+ #: core/fields/image.php:19
1175
+ msgid "Image"
1176
+ msgstr "Gambar"
1177
+
1178
+ #: core/fields/image.php:27
1179
+ msgid "Select Image"
1180
+ msgstr "Pilih Gambar"
1181
+
1182
+ #: core/fields/image.php:28
1183
+ msgid "Edit Image"
1184
+ msgstr "Edit Gambar"
1185
+
1186
+ #: core/fields/image.php:29
1187
+ msgid "Update Image"
1188
+ msgstr "Perbarui Gambar"
1189
+
1190
+ #: core/fields/image.php:90
1191
+ msgid "Remove"
1192
+ msgstr "Singkirkan"
1193
+
1194
+ #: core/fields/image.php:91 core/views/meta_box_fields.php:108
1195
+ msgid "Edit"
1196
+ msgstr ""
1197
+
1198
+ #: core/fields/image.php:97
1199
+ msgid "No image selected"
1200
+ msgstr "Tak ada gambar yang dipilih"
1201
+
1202
+ #: core/fields/image.php:97
1203
+ msgid "Add Image"
1204
+ msgstr "Tambahkan Gambar"
1205
+
1206
+ #: core/fields/image.php:126 core/fields/relationship.php:563
1207
+ msgid "Specify the returned value on front end"
1208
+ msgstr "Tentukan nilai dikembalikan di front-end"
1209
+
1210
+ #: core/fields/image.php:136
1211
+ msgid "Image Object"
1212
+ msgstr "Gambar objek"
1213
+
1214
+ #: core/fields/image.php:137
1215
+ msgid "Image URL"
1216
+ msgstr "URL Gambar"
1217
+
1218
+ #: core/fields/image.php:138
1219
+ msgid "Image ID"
1220
+ msgstr "ID Gambar"
1221
+
1222
+ #: core/fields/image.php:146
1223
+ msgid "Preview Size"
1224
+ msgstr "Ukuran Tinjauan"
1225
+
1226
+ #: core/fields/image.php:147
1227
+ msgid "Shown when entering data"
1228
+ msgstr "Tampilkan ketika memasukkan data"
1229
+
1230
+ #: core/fields/image.php:166
1231
+ msgid "Limit the media library choice"
1232
+ msgstr "Batasi pilihan pustaka media"
1233
+
1234
+ #: core/fields/message.php:19 core/fields/message.php:70
1235
+ #: core/fields/true_false.php:79
1236
+ msgid "Message"
1237
+ msgstr "Pesan"
1238
+
1239
+ #: core/fields/message.php:71
1240
+ msgid "Text &amp; HTML entered here will appear inline with the fields"
1241
+ msgstr "Teks &amp; HTML dimasukkan disini akan muncul sejajar dengan bidang"
1242
+
1243
+ #: core/fields/message.php:72
1244
+ msgid "Please note that all text will first be passed through the wp function "
1245
+ msgstr "Harap catat bahwa semua teks akan pertama dilewat melalui wp function"
1246
+
1247
+ #: core/fields/number.php:19
1248
+ msgid "Number"
1249
+ msgstr "Jumlah"
1250
+
1251
+ #: core/fields/number.php:178
1252
+ msgid "Minimum Value"
1253
+ msgstr "Nilai Minimum"
1254
+
1255
+ #: core/fields/number.php:194
1256
+ msgid "Maximum Value"
1257
+ msgstr "Nilai Maksimum"
1258
+
1259
+ #: core/fields/number.php:210
1260
+ msgid "Step Size"
1261
+ msgstr "Ukuran Langkah"
1262
+
1263
+ #: core/fields/page_link.php:18
1264
+ msgid "Page Link"
1265
+ msgstr "Link Halaman"
1266
+
1267
+ #: core/fields/page_link.php:19 core/fields/post_object.php:19
1268
+ #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1269
+ #: core/fields/user.php:19
1270
+ msgid "Relational"
1271
+ msgstr "Relasional"
1272
+
1273
+ #: core/fields/page_link.php:103 core/fields/post_object.php:280
1274
+ #: core/fields/relationship.php:582 core/fields/relationship.php:661
1275
+ #: core/views/meta_box_location.php:75
1276
+ msgid "Post Type"
1277
+ msgstr "Jenis Post"
1278
+
1279
+ #: core/fields/page_link.php:127 core/fields/post_object.php:329
1280
+ #: core/fields/select.php:214 core/fields/taxonomy.php:489
1281
+ #: core/fields/user.php:322
1282
+ msgid "Allow Null?"
1283
+ msgstr "Izinkan Nol?"
1284
+
1285
+ #: core/fields/page_link.php:148 core/fields/post_object.php:350
1286
+ #: core/fields/select.php:233
1287
+ msgid "Select multiple values?"
1288
+ msgstr "Pilih beberapa nilai?"
1289
+
1290
+ #: core/fields/password.php:19
1291
+ msgid "Password"
1292
+ msgstr "Kata Sandi"
1293
+
1294
+ #: core/fields/post_object.php:18
1295
+ msgid "Post Object"
1296
+ msgstr "Objek Post"
1297
+
1298
+ #: core/fields/post_object.php:194 core/fields/relationship.php:170
1299
+ msgid "(no title)"
1300
+ msgstr "(tanpa judul)"
1301
+
1302
+ #: core/fields/post_object.php:304 core/fields/relationship.php:606
1303
+ msgid "Filter from Taxonomy"
1304
+ msgstr "Saring untuk Taksonomi"
1305
+
1306
+ #: core/fields/radio.php:18
1307
+ msgid "Radio Button"
1308
+ msgstr "Tombol Radio"
1309
+
1310
+ #: core/fields/radio.php:105 core/views/meta_box_location.php:91
1311
+ msgid "Other"
1312
+ msgstr "Lainnya"
1313
+
1314
+ #: core/fields/radio.php:148
1315
+ msgid "Enter your choices one per line"
1316
+ msgstr "Masukkan pilihan Anda satu per baris"
1317
+
1318
+ #: core/fields/radio.php:150
1319
+ msgid "Red"
1320
+ msgstr ""
1321
+
1322
+ #: core/fields/radio.php:151
1323
+ msgid "Blue"
1324
+ msgstr ""
1325
+
1326
+ #: core/fields/radio.php:175
1327
+ msgid "Add 'other' choice to allow for custom values"
1328
+ msgstr "Tambah pilihan 'lainnya' untuk mengizinkan nilai kustom"
1329
+
1330
+ #: core/fields/radio.php:187
1331
+ msgid "Save 'other' values to the field's choices"
1332
+ msgstr "Simpan nilai 'lainnya' ke bidang pilihan"
1333
+
1334
+ #: core/fields/relationship.php:18
1335
+ msgid "Relationship"
1336
+ msgstr "Hubungan"
1337
+
1338
+ #: core/fields/relationship.php:29
1339
+ msgid "Maximum values reached ( {max} values )"
1340
+ msgstr "Nilai maksimum tercapai ( {max} values )"
1341
+
1342
+ #: core/fields/relationship.php:457
1343
+ msgid "Search..."
1344
+ msgstr "Cari ..."
1345
+
1346
+ #: core/fields/relationship.php:468
1347
+ msgid "Filter by post type"
1348
+ msgstr "Saring dengan jenis post"
1349
+
1350
+ #: core/fields/relationship.php:562
1351
+ msgid "Return Format"
1352
+ msgstr "Format Kembali"
1353
+
1354
+ #: core/fields/relationship.php:573
1355
+ msgid "Post Objects"
1356
+ msgstr "Objek Post"
1357
+
1358
+ #: core/fields/relationship.php:574
1359
+ msgid "Post IDs"
1360
+ msgstr "ID Post"
1361
+
1362
+ #: core/fields/relationship.php:640
1363
+ msgid "Search"
1364
+ msgstr "Cari"
1365
+
1366
+ #: core/fields/relationship.php:641
1367
+ msgid "Post Type Select"
1368
+ msgstr "Seleksi Jenis Post"
1369
+
1370
+ #: core/fields/relationship.php:649
1371
+ msgid "Elements"
1372
+ msgstr "Elemen"
1373
+
1374
+ #: core/fields/relationship.php:650
1375
+ msgid "Selected elements will be displayed in each result"
1376
+ msgstr "Elemen terpilih akan ditampilkan disetiap hasil"
1377
+
1378
+ #: core/fields/relationship.php:659 core/views/meta_box_options.php:106
1379
+ msgid "Featured Image"
1380
+ msgstr "Gambar Fitur"
1381
+
1382
+ #: core/fields/relationship.php:660
1383
+ msgid "Post Title"
1384
+ msgstr "Judul Post"
1385
+
1386
+ #: core/fields/relationship.php:672
1387
+ msgid "Maximum posts"
1388
+ msgstr "Maksimum post"
1389
+
1390
+ #: core/fields/select.php:18 core/fields/select.php:109
1391
+ #: core/fields/taxonomy.php:480 core/fields/user.php:313
1392
+ msgid "Select"
1393
+ msgstr "Pilih"
1394
+
1395
+ #: core/fields/tab.php:19
1396
+ msgid "Tab"
1397
+ msgstr ""
1398
+
1399
+ #: core/fields/tab.php:68
1400
+ msgid ""
1401
+ "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1402
+ "fields together under separate tab headings."
1403
+ msgstr ""
1404
+ "Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda lebih baik dengan "
1405
+ "mengelompokkan bidang Anda bersama dibawah judul tab terpisah."
1406
+
1407
+ #: core/fields/tab.php:69
1408
+ msgid ""
1409
+ "All the fields following this \"tab field\" (or until another \"tab field\" "
1410
+ "is defined) will be grouped together."
1411
+ msgstr ""
1412
+ "Semua bidang mengikuti \"bidang tab\" ini (atau sampai \"bidang tab\" yang "
1413
+ "lain ditemukan) akan dikelompokkan bersama."
1414
+
1415
+ #: core/fields/tab.php:70
1416
+ msgid "Use multiple tabs to divide your fields into sections."
1417
+ msgstr "Gunakan beberapa tab untuk membagi bidang Anda kedalam bagian."
1418
+
1419
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:430
1420
+ msgid "Taxonomy"
1421
+ msgstr "Taksonomi"
1422
+
1423
+ #: core/fields/taxonomy.php:374 core/fields/taxonomy.php:383
1424
+ msgid "None"
1425
+ msgstr "Tidak ada"
1426
+
1427
+ #: core/fields/taxonomy.php:464 core/fields/user.php:298
1428
+ #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:158
1429
+ msgid "Field Type"
1430
+ msgstr "Jenis Bidang"
1431
+
1432
+ #: core/fields/taxonomy.php:474 core/fields/user.php:307
1433
+ msgid "Multiple Values"
1434
+ msgstr "Beberapa Nilai"
1435
+
1436
+ #: core/fields/taxonomy.php:476 core/fields/user.php:309
1437
+ msgid "Multi Select"
1438
+ msgstr "Pilihan Multi"
1439
+
1440
+ #: core/fields/taxonomy.php:478 core/fields/user.php:311
1441
+ msgid "Single Value"
1442
+ msgstr "Nilai Tunggal"
1443
+
1444
+ #: core/fields/taxonomy.php:479
1445
+ msgid "Radio Buttons"
1446
+ msgstr "Tombol Radio"
1447
+
1448
+ #: core/fields/taxonomy.php:508
1449
+ msgid "Load & Save Terms to Post"
1450
+ msgstr "Muat & Simpan Persyaratan ke Post"
1451
+
1452
+ #: core/fields/taxonomy.php:516
1453
+ msgid ""
1454
+ "Load value based on the post's terms and update the post's terms on save"
1455
+ msgstr ""
1456
+ "Muat nilai berdasarkan persyaratan post dan perbarui persyaratan post ketika "
1457
+ "menyimpan"
1458
+
1459
+ #: core/fields/taxonomy.php:533
1460
+ msgid "Term Object"
1461
+ msgstr "Persyaratan Objek"
1462
+
1463
+ #: core/fields/taxonomy.php:534
1464
+ msgid "Term ID"
1465
+ msgstr "ID Persyaratan"
1466
+
1467
+ #: core/fields/text.php:19
1468
+ msgid "Text"
1469
+ msgstr "Teks"
1470
+
1471
+ #: core/fields/text.php:176 core/fields/textarea.php:164
1472
+ msgid "Formatting"
1473
+ msgstr "Format"
1474
+
1475
+ #: core/fields/text.php:177 core/fields/textarea.php:165
1476
+ msgid "Affects value on front end"
1477
+ msgstr "Nilai efek pada front-end"
1478
+
1479
+ #: core/fields/text.php:186 core/fields/textarea.php:174
1480
+ msgid "No formatting"
1481
+ msgstr "Jangan format"
1482
+
1483
+ #: core/fields/text.php:187 core/fields/textarea.php:176
1484
+ msgid "Convert HTML into tags"
1485
+ msgstr "Konversi HTML kedalam tag"
1486
+
1487
+ #: core/fields/text.php:195 core/fields/textarea.php:133
1488
+ msgid "Character Limit"
1489
+ msgstr "Batas Karakter"
1490
+
1491
+ #: core/fields/text.php:196 core/fields/textarea.php:134
1492
+ msgid "Leave blank for no limit"
1493
+ msgstr "Biarkan kosong untuk tidak terbatas"
1494
+
1495
+ #: core/fields/textarea.php:19
1496
+ msgid "Text Area"
1497
+ msgstr "Area Teks"
1498
+
1499
+ #: core/fields/textarea.php:148
1500
+ msgid "Rows"
1501
+ msgstr "Baris"
1502
+
1503
+ #: core/fields/textarea.php:149
1504
+ msgid "Sets the textarea height"
1505
+ msgstr "Atur tinggi area teks"
1506
+
1507
+ #: core/fields/textarea.php:175
1508
+ msgid "Convert new lines into &lt;br /&gt; tags"
1509
+ msgstr "Konversi baris baru ke &lt;br /&gt; tag"
1510
+
1511
+ #: core/fields/true_false.php:19
1512
+ msgid "True / False"
1513
+ msgstr "Benar / Salah"
1514
+
1515
+ #: core/fields/true_false.php:80
1516
+ msgid "eg. Show extra content"
1517
+ msgstr "contoh. Tampilkan konten ekstra"
1518
+
1519
+ #: core/fields/user.php:18 core/views/meta_box_location.php:94
1520
+ msgid "User"
1521
+ msgstr "Pengguna"
1522
+
1523
+ #: core/fields/user.php:271
1524
+ msgid "Filter by role"
1525
+ msgstr "Saring berdasarkan peran"
1526
+
1527
+ #: core/fields/wysiwyg.php:36
1528
+ msgid "Wysiwyg Editor"
1529
+ msgstr ""
1530
+
1531
+ #: core/fields/wysiwyg.php:292
1532
+ msgid "Toolbar"
1533
+ msgstr ""
1534
+
1535
+ #: core/fields/wysiwyg.php:324
1536
+ msgid "Show Media Upload Buttons?"
1537
+ msgstr "Tampilkan Tombol Unggah Media?"
1538
+
1539
+ #: core/views/meta_box_fields.php:24
1540
+ msgid "New Field"
1541
+ msgstr "Bidang Baru"
1542
+
1543
+ #: core/views/meta_box_fields.php:58
1544
+ msgid "Field type does not exist"
1545
+ msgstr "Jenis bidang tidak ada"
1546
+
1547
+ #: core/views/meta_box_fields.php:74
1548
+ msgid "Field Order"
1549
+ msgstr "Susunan Bidang"
1550
+
1551
+ #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:126
1552
+ msgid "Field Label"
1553
+ msgstr "Label Bidang"
1554
+
1555
+ #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:142
1556
+ msgid "Field Name"
1557
+ msgstr "Nama Bidang"
1558
+
1559
+ #: core/views/meta_box_fields.php:78
1560
+ msgid "Field Key"
1561
+ msgstr "Kunci Bidang"
1562
+
1563
+ #: core/views/meta_box_fields.php:90
1564
+ msgid ""
1565
+ "No fields. Click the <strong>+ Add Field</strong> button to create your "
1566
+ "first field."
1567
+ msgstr ""
1568
+ "Tidak ada bidang. Klik tombol <strong>+ Tambah Bidang</strong> untuk membuat "
1569
+ "bidang pertama Anda."
1570
+
1571
+ #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
1572
+ msgid "Edit this Field"
1573
+ msgstr "Edit Bidang ini"
1574
+
1575
+ #: core/views/meta_box_fields.php:109
1576
+ msgid "Duplicate this Field"
1577
+ msgstr "Duplikat Bidang ini"
1578
+
1579
+ #: core/views/meta_box_fields.php:109
1580
+ msgid "Duplicate"
1581
+ msgstr "Duplikat"
1582
+
1583
+ #: core/views/meta_box_fields.php:110
1584
+ msgid "Delete this Field"
1585
+ msgstr "Hapus bidang ini"
1586
+
1587
+ #: core/views/meta_box_fields.php:110
1588
+ msgid "Delete"
1589
+ msgstr "Hapus"
1590
+
1591
+ #: core/views/meta_box_fields.php:127
1592
+ msgid "This is the name which will appear on the EDIT page"
1593
+ msgstr "Ini nama yang akan muncul pada laman EDIT"
1594
+
1595
+ #: core/views/meta_box_fields.php:143
1596
+ msgid "Single word, no spaces. Underscores and dashes allowed"
1597
+ msgstr "Satu kata, tanpa spasi. Garis bawah dan strip dibolehkan"
1598
+
1599
+ #: core/views/meta_box_fields.php:172
1600
+ msgid "Field Instructions"
1601
+ msgstr "Instruksi Bidang"
1602
+
1603
+ #: core/views/meta_box_fields.php:173
1604
+ msgid "Instructions for authors. Shown when submitting data"
1605
+ msgstr "Instruksi untuk author. Terlihat ketika mengirim data"
1606
+
1607
+ #: core/views/meta_box_fields.php:186
1608
+ msgid "Required?"
1609
+ msgstr "Diperlukan?"
1610
+
1611
+ #: core/views/meta_box_fields.php:209
1612
+ msgid "Conditional Logic"
1613
+ msgstr "Logika Kondisional"
1614
+
1615
+ #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
1616
+ msgid "is equal to"
1617
+ msgstr "sama dengan"
1618
+
1619
+ #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
1620
+ msgid "is not equal to"
1621
+ msgstr "tidak sama dengan"
1622
+
1623
+ #: core/views/meta_box_fields.php:279
1624
+ msgid "Show this field when"
1625
+ msgstr "Tampilkan ini bidang ketika"
1626
+
1627
+ #: core/views/meta_box_fields.php:285
1628
+ msgid "all"
1629
+ msgstr "semua"
1630
+
1631
+ #: core/views/meta_box_fields.php:286
1632
+ msgid "any"
1633
+ msgstr "beberapa"
1634
+
1635
+ #: core/views/meta_box_fields.php:289
1636
+ msgid "these rules are met"
1637
+ msgstr "rule ini bertemu"
1638
+
1639
+ #: core/views/meta_box_fields.php:303
1640
+ msgid "Close Field"
1641
+ msgstr "Tutup Bidang"
1642
+
1643
+ #: core/views/meta_box_fields.php:316
1644
+ msgid "Drag and drop to reorder"
1645
+ msgstr "Seret dan jatuhkan untuk mengatur ulang"
1646
+
1647
+ #: core/views/meta_box_fields.php:317
1648
+ msgid "+ Add Field"
1649
+ msgstr "+ Tambah Bidang"
1650
+
1651
+ #: core/views/meta_box_location.php:48
1652
+ msgid "Rules"
1653
+ msgstr "Peraturan"
1654
+
1655
+ #: core/views/meta_box_location.php:49
1656
+ msgid ""
1657
+ "Create a set of rules to determine which edit screens will use these "
1658
+ "advanced custom fields"
1659
+ msgstr ""
1660
+ "Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan "
1661
+ "advanced custom fields ini"
1662
+
1663
+ #: core/views/meta_box_location.php:60
1664
+ msgid "Show this field group if"
1665
+ msgstr "Tampilkan grup bidang jika"
1666
+
1667
+ #: core/views/meta_box_location.php:76
1668
+ msgid "Logged in User Type"
1669
+ msgstr "Jenis Pengguna Masuk"
1670
+
1671
+ #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
1672
+ msgid "Post"
1673
+ msgstr ""
1674
+
1675
+ #: core/views/meta_box_location.php:80
1676
+ msgid "Post Category"
1677
+ msgstr "Kategori Post"
1678
+
1679
+ #: core/views/meta_box_location.php:81
1680
+ msgid "Post Format"
1681
+ msgstr "Format Post"
1682
+
1683
+ #: core/views/meta_box_location.php:82
1684
+ msgid "Post Status"
1685
+ msgstr "Status Post"
1686
+
1687
+ #: core/views/meta_box_location.php:83
1688
+ msgid "Post Taxonomy"
1689
+ msgstr "Post Taksonomi"
1690
+
1691
+ #: core/views/meta_box_location.php:85 core/views/meta_box_location.php:86
1692
+ msgid "Page"
1693
+ msgstr "Laman"
1694
+
1695
+ #: core/views/meta_box_location.php:87
1696
+ msgid "Page Type"
1697
+ msgstr "Jenis Laman"
1698
+
1699
+ #: core/views/meta_box_location.php:88
1700
+ msgid "Page Parent"
1701
+ msgstr "Laman Parent"
1702
+
1703
+ #: core/views/meta_box_location.php:89
1704
+ msgid "Page Template"
1705
+ msgstr "Template Laman"
1706
+
1707
+ #: core/views/meta_box_location.php:92
1708
+ msgid "Attachment"
1709
+ msgstr "Lampiran"
1710
+
1711
+ #: core/views/meta_box_location.php:93
1712
+ msgid "Taxonomy Term"
1713
+ msgstr "Taksonomi Persyaratan"
1714
+
1715
+ #: core/views/meta_box_location.php:146
1716
+ msgid "and"
1717
+ msgstr "dan"
1718
+
1719
+ #: core/views/meta_box_location.php:161
1720
+ msgid "Add rule group"
1721
+ msgstr "Tambahkan peraturan grup"
1722
+
1723
+ #: core/views/meta_box_options.php:25
1724
+ msgid "Order No."
1725
+ msgstr "No. Urutan"
1726
+
1727
+ #: core/views/meta_box_options.php:26
1728
+ msgid "Field groups are created in order <br />from lowest to highest"
1729
+ msgstr "Grup bidang dibuat di susunan <br/>dari terendah ke tertinggi"
1730
+
1731
+ #: core/views/meta_box_options.php:42
1732
+ msgid "Position"
1733
+ msgstr "Posisi"
1734
+
1735
+ #: core/views/meta_box_options.php:52
1736
+ msgid "High (after title)"
1737
+ msgstr "Tinggi (setelah judul)"
1738
+
1739
+ #: core/views/meta_box_options.php:53
1740
+ msgid "Normal (after content)"
1741
+ msgstr "Normal (setelah konten)"
1742
+
1743
+ #: core/views/meta_box_options.php:54
1744
+ msgid "Side"
1745
+ msgstr "Sisi"
1746
+
1747
+ #: core/views/meta_box_options.php:64
1748
+ msgid "Style"
1749
+ msgstr "Gaya"
1750
+
1751
+ #: core/views/meta_box_options.php:74
1752
+ msgid "Seamless (no metabox)"
1753
+ msgstr "Mulus (tanpa metabox)"
1754
+
1755
+ #: core/views/meta_box_options.php:75
1756
+ msgid "Standard (WP metabox)"
1757
+ msgstr "Standar (WP metabox)"
1758
+
1759
+ #: core/views/meta_box_options.php:84
1760
+ msgid "Hide on screen"
1761
+ msgstr "Sembunyikan pada layar"
1762
+
1763
+ #: core/views/meta_box_options.php:85
1764
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1765
+ msgstr "<b>Pilih</b> item untuk <b>sembunyikan</b> dari layar edit"
1766
+
1767
+ #: core/views/meta_box_options.php:86
1768
+ msgid ""
1769
+ "If multiple field groups appear on an edit screen, the first field group's "
1770
+ "options will be used. (the one with the lowest order number)"
1771
+ msgstr ""
1772
+ "Jika beberapa grup bidang muncul pada layar edit, opsi grup bidang pertama "
1773
+ "akan digunakan. (dengan no urutan terendah)"
1774
+
1775
+ #: core/views/meta_box_options.php:96
1776
+ msgid "Permalink"
1777
+ msgstr ""
1778
+
1779
+ #: core/views/meta_box_options.php:97
1780
+ msgid "Content Editor"
1781
+ msgstr "Konten Edior"
1782
+
1783
+ #: core/views/meta_box_options.php:98
1784
+ msgid "Excerpt"
1785
+ msgstr "Kutipan"
1786
+
1787
+ #: core/views/meta_box_options.php:100
1788
+ msgid "Discussion"
1789
+ msgstr "Diskusi"
1790
+
1791
+ #: core/views/meta_box_options.php:101
1792
+ msgid "Comments"
1793
+ msgstr "Komentar"
1794
+
1795
+ #: core/views/meta_box_options.php:102
1796
+ msgid "Revisions"
1797
+ msgstr "Revisi"
1798
+
1799
+ #: core/views/meta_box_options.php:103
1800
+ msgid "Slug"
1801
+ msgstr ""
1802
+
1803
+ #: core/views/meta_box_options.php:104
1804
+ msgid "Author"
1805
+ msgstr ""
1806
+
1807
+ #: core/views/meta_box_options.php:105
1808
+ msgid "Format"
1809
+ msgstr ""
1810
+
1811
+ #: core/views/meta_box_options.php:107
1812
+ msgid "Categories"
1813
+ msgstr "Kategori"
1814
+
1815
+ #: core/views/meta_box_options.php:108
1816
+ msgid "Tags"
1817
+ msgstr "Tag"
1818
+
1819
+ #: core/views/meta_box_options.php:109
1820
+ msgid "Send Trackbacks"
1821
+ msgstr "Kirim Pelacakan"
lang/acf-it_IT.mo CHANGED
Binary file
lang/acf-it_IT.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-11-09 15:23+0100\n"
8
- "PO-Revision-Date: 2015-08-21 10:48+1000\n"
9
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Davide De Maestri <davide.demaestri@gmail.com>\n"
11
  "Language: it_IT\n"
@@ -79,7 +79,7 @@ msgstr "Campo personalizzato cancellato."
79
  #: C:\advanced-custom-fields/acf.php:571
80
  #, php-format
81
  msgid "Field group restored to revision from %s"
82
- msgstr "Gruppo di campi ripristinato per la revisione da %s"
83
 
84
  #: C:\advanced-custom-fields/acf.php:572
85
  msgid "Field group published."
@@ -173,7 +173,7 @@ msgstr "Flexible Content Field"
173
 
174
  #: C:\advanced-custom-fields/core/controllers/addons.php:152
175
  msgid "Create unique designs with a flexible content layout manager!"
176
- msgstr "Crea design unici con i contenuti flesisbili ed il gestore di layout!"
177
 
178
  #: C:\advanced-custom-fields/core/controllers/addons.php:161
179
  msgid "Gravity Forms Field"
@@ -265,7 +265,7 @@ msgstr "Scegli il gruppo di campi da esportare"
265
  #: C:\advanced-custom-fields/core/controllers/export.php:239
266
  #: C:\advanced-custom-fields/core/controllers/export.php:252
267
  msgid "Export to XML"
268
- msgstr "Esporta XML"
269
 
270
  #: C:\advanced-custom-fields/core/controllers/export.php:242
271
  #: C:\advanced-custom-fields/core/controllers/export.php:267
@@ -277,7 +277,7 @@ msgid ""
277
  "ACF will create a .xml export file which is compatible with the native WP "
278
  "import plugin."
279
  msgstr ""
280
- "ACF creerà un file di export XML che è compatibile con tutti i pulugin di "
281
  "importazione nativi."
282
 
283
  #: C:\advanced-custom-fields/core/controllers/export.php:254
@@ -291,11 +291,11 @@ msgstr ""
291
 
292
  #: C:\advanced-custom-fields/core/controllers/export.php:256
293
  msgid "Select field group(s) from the list and click \"Export XML\""
294
- msgstr "Secgli un gruppo di campi dalla lista e clicca su \"Esporta XML\""
295
 
296
  #: C:\advanced-custom-fields/core/controllers/export.php:257
297
  msgid "Save the .xml file when prompted"
298
- msgstr "Ssalva il file .xml quando richiesto"
299
 
300
  #: C:\advanced-custom-fields/core/controllers/export.php:258
301
  msgid "Navigate to Tools &raquo; Import and select WordPress"
@@ -339,13 +339,13 @@ msgid ""
339
  "php file."
340
  msgstr ""
341
  "Per favore considera che se esporti e registri un gruppo di campi nello "
342
- "stesso WP, vedrai campi duplicati nella schermata di modifica. Per "
343
- "modificare questo, rimuovi i gruppi di campi originali dal censtino o "
344
- "rimuovi il codice dal tuo file functions.php"
345
 
346
  #: C:\advanced-custom-fields/core/controllers/export.php:272
347
  msgid "Select field group(s) from the list and click \"Create PHP\""
348
- msgstr "Seleziona i gruppi di campi dalla lista e clicca su \"Crea PHP\""
349
 
350
  #: C:\advanced-custom-fields/core/controllers/export.php:273
351
  #: C:\advanced-custom-fields/core/controllers/export.php:302
@@ -361,7 +361,7 @@ msgstr "Incolla nel tuo file functions.php"
361
  #: C:\advanced-custom-fields/core/controllers/export.php:304
362
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
363
  msgstr ""
364
- "Per attivare qualsiasi add-ons, modifica e usa il codice nelle prime linee."
365
 
366
  #: C:\advanced-custom-fields/core/controllers/export.php:295
367
  msgid "Export Field Groups to PHP"
@@ -674,7 +674,7 @@ msgstr "Il sito web utilizza Add-ons premium che devono essere scaricati"
674
 
675
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:324
676
  msgid "Download your activated Add-ons"
677
- msgstr "Scarica i tuoi add-ons attivati"
678
 
679
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:329
680
  msgid ""
@@ -788,7 +788,7 @@ msgstr "Potenziali Problemi"
788
 
789
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:366
790
  msgid ""
791
- "Do to the sizable changes surounding Add-ons, field types and action/"
792
  "filters, your website may not operate correctly. It is important that you "
793
  "read the full"
794
  msgstr ""
@@ -898,7 +898,7 @@ msgstr "Installazione"
898
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:469
899
  msgid "For each Add-on available, please perform the following:"
900
  msgstr ""
901
- "Per ogni Add-on disponibilie, per favore procedi come indicato di seguito:"
902
 
903
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:471
904
  msgid "Download the Add-on plugin (.zip file) to your desktop"
@@ -927,7 +927,7 @@ msgstr ""
927
 
928
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:475
929
  msgid "The Add-on is now installed and activated!"
930
- msgstr "L'Add-om è stato installato ed attivato!"
931
 
932
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:489
933
  msgid "Awesome. Let's get to work"
@@ -967,7 +967,7 @@ msgstr "Modificare l'opzione del campo 'tassonomia'"
967
 
968
  #: C:\advanced-custom-fields/core/controllers/upgrade.php:835
969
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
970
- msgstr "Spostare i campi personalizzati da wp_option a wp_usermeta"
971
 
972
  #: C:\advanced-custom-fields/core/fields/checkbox.php:19
973
  #: C:\advanced-custom-fields/core/fields/taxonomy.php:319
@@ -1132,7 +1132,7 @@ msgstr "Seleziona file"
1132
 
1133
  #: C:\advanced-custom-fields/core/fields/file.php:27
1134
  msgid "Edit File"
1135
- msgstr "Modifica Fiel"
1136
 
1137
  #: C:\advanced-custom-fields/core/fields/file.php:28
1138
  msgid "Update File"
@@ -1193,7 +1193,7 @@ msgstr "Spiacente, questo browser non supporta la geolocalizzazione"
1193
 
1194
  #: C:\advanced-custom-fields/core/fields/google-map.php:117
1195
  msgid "Clear location"
1196
- msgstr "Chiara posizione"
1197
 
1198
  #: C:\advanced-custom-fields/core/fields/google-map.php:122
1199
  msgid "Find current location"
@@ -1201,7 +1201,7 @@ msgstr "Trova località corrente"
1201
 
1202
  #: C:\advanced-custom-fields/core/fields/google-map.php:123
1203
  msgid "Search for address..."
1204
- msgstr "Cerca per l'indirizzo..."
1205
 
1206
  #: C:\advanced-custom-fields/core/fields/google-map.php:159
1207
  msgid "Center"
@@ -1219,6 +1219,14 @@ msgstr "Altezza"
1219
  msgid "Customise the map height"
1220
  msgstr "Personalizza l'altezza della mappa"
1221
 
 
 
 
 
 
 
 
 
1222
  #: C:\advanced-custom-fields/core/fields/image.php:19
1223
  msgid "Image"
1224
  msgstr "Immagine"
@@ -1370,7 +1378,7 @@ msgstr "Altro"
1370
 
1371
  #: C:\advanced-custom-fields/core/fields/radio.php:145
1372
  msgid "Enter your choices one per line"
1373
- msgstr "Inserisci una opzione per linea"
1374
 
1375
  #: C:\advanced-custom-fields/core/fields/radio.php:147
1376
  msgid "Red"
@@ -1386,7 +1394,7 @@ msgstr "Aggiungi l'opzione 'altro' per permettere valori personalizzati"
1386
 
1387
  #: C:\advanced-custom-fields/core/fields/radio.php:184
1388
  msgid "Save 'other' values to the field's choices"
1389
- msgstr "Salva i valori 'altro' per le scelte del campo"
1390
 
1391
  #: C:\advanced-custom-fields/core/fields/relationship.php:18
1392
  msgid "Relationship"
@@ -1406,7 +1414,7 @@ msgstr "Filtra per post type"
1406
 
1407
  #: C:\advanced-custom-fields/core/fields/relationship.php:569
1408
  msgid "Return Format"
1409
- msgstr "Restituirsci Formato"
1410
 
1411
  #: C:\advanced-custom-fields/core/fields/relationship.php:580
1412
  msgid "Post Objects"
@@ -1443,7 +1451,7 @@ msgstr "Titolo del Post"
1443
 
1444
  #: C:\advanced-custom-fields/core/fields/relationship.php:679
1445
  msgid "Maximum posts"
1446
- msgstr "Massimo dei post"
1447
 
1448
  #: C:\advanced-custom-fields/core/fields/select.php:18
1449
  #: C:\advanced-custom-fields/core/fields/select.php:109
@@ -1542,8 +1550,12 @@ msgstr "Formattazione"
1542
 
1543
  #: C:\advanced-custom-fields/core/fields/text.php:177
1544
  #: C:\advanced-custom-fields/core/fields/textarea.php:142
1545
- msgid "Effects value on front end"
1546
- msgstr "Valore effettivo nel front end"
 
 
 
 
1547
 
1548
  #: C:\advanced-custom-fields/core/fields/text.php:186
1549
  #: C:\advanced-custom-fields/core/fields/textarea.php:151
@@ -1571,7 +1583,7 @@ msgstr "Text Area"
1571
 
1572
  #: C:\advanced-custom-fields/core/fields/textarea.php:152
1573
  msgid "Convert new lines into &lt;br /&gt; tags"
1574
- msgstr "Converti le nuove linee in tags &lt;br /&gt;"
1575
 
1576
  #: C:\advanced-custom-fields/core/fields/true_false.php:19
1577
  msgid "True / False"
@@ -1629,7 +1641,7 @@ msgstr "Salva formato"
1629
 
1630
  #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:127
1631
  msgid ""
1632
- "This format will determin the value saved to the database and returned via "
1633
  "the API"
1634
  msgstr ""
1635
  "Questo formato determinerà il valore salvato nel database e verrà restituito "
@@ -1768,15 +1780,15 @@ msgstr "Mostra questo campo quando"
1768
 
1769
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:285
1770
  msgid "all"
1771
- msgstr "AND"
1772
 
1773
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:286
1774
  msgid "any"
1775
- msgstr "OR"
1776
 
1777
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:289
1778
  msgid "these rules are met"
1779
- msgstr "queste regole incontrano"
1780
 
1781
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:303
1782
  msgid "Close Field"
@@ -1887,7 +1899,7 @@ msgstr "Normale (dopo il contenuto)"
1887
 
1888
  #: C:\advanced-custom-fields/core/views/meta_box_options.php:54
1889
  msgid "Side"
1890
- msgstr "lato"
1891
 
1892
  #: C:\advanced-custom-fields/core/views/meta_box_options.php:64
1893
  msgid "Style"
@@ -1988,7 +2000,7 @@ msgstr "Invia Trackbacks"
1988
  #~ msgstr "poi clicca"
1989
 
1990
  #~ msgid "Upgrade Database"
1991
- #~ msgstr "Aggiorna database"
1992
 
1993
  #~ msgid "Repeater field deactivated"
1994
  #~ msgstr "Repeater field disattivato"
@@ -2145,6 +2157,9 @@ msgstr "Invia Trackbacks"
2145
  #~ msgid "+ Add Row"
2146
  #~ msgstr "+ Aggiungi riga"
2147
 
 
 
 
2148
  #~ msgid "Reorder Layout"
2149
  #~ msgstr "Riordina il layout"
2150
 
@@ -2173,6 +2188,9 @@ msgstr "Invia Trackbacks"
2173
  #~ "Nessun campo. Clicca su \"+ Aggiungi un campo\" per creare il tuo primo "
2174
  #~ "campo."
2175
 
 
 
 
2176
  #~ msgid "Close Sub Field"
2177
  #~ msgstr "Chiudi il campo"
2178
 
@@ -2192,8 +2210,8 @@ msgstr "Invia Trackbacks"
2192
  #~ "Filter posts by selecting a post type<br />\n"
2193
  #~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
2194
  #~ msgstr ""
2195
- #~ "Filtra i contenuti selezionato un tipo di contenuto<br />\n"
2196
- #~ "\t\t\t\tTrucco: deleziona tutti i tipi di contenuto per visualizzarne "
2197
  #~ "tutti i tipi"
2198
 
2199
  #~ msgid "Set to -1 for infinite"
@@ -2211,8 +2229,11 @@ msgstr "Invia Trackbacks"
2211
  #~ msgid "Table (default)"
2212
  #~ msgstr "Tabella (default)"
2213
 
 
 
 
2214
  #~ msgid "Define how to render html tags"
2215
- #~ msgstr "Definisci come gestire i tag html"
2216
 
2217
  #~ msgid "HTML"
2218
  #~ msgstr "HTML"
@@ -2225,7 +2246,7 @@ msgstr "Invia Trackbacks"
2225
 
2226
  #~ msgid "No Custom Field Group found for the options page"
2227
  #~ msgstr ""
2228
- #~ "Non è stato travato nessun gruppo di campi per la pagina delle opzioni"
2229
 
2230
  #~ msgid "Create a Custom Field Group"
2231
  #~ msgstr "Crea un gruppo di campi"
5
  "Project-Id-Version: Advanced Custom Fields\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-11-09 15:23+0100\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Davide De Maestri <davide.demaestri@gmail.com>\n"
11
  "Language: it_IT\n"
79
  #: C:\advanced-custom-fields/acf.php:571
80
  #, php-format
81
  msgid "Field group restored to revision from %s"
82
+ msgstr "Gruppo di campi ripristinato alla revisione del %s"
83
 
84
  #: C:\advanced-custom-fields/acf.php:572
85
  msgid "Field group published."
173
 
174
  #: C:\advanced-custom-fields/core/controllers/addons.php:152
175
  msgid "Create unique designs with a flexible content layout manager!"
176
+ msgstr "Crea design unici con i contenuti flessibili ed il gestore di layout!"
177
 
178
  #: C:\advanced-custom-fields/core/controllers/addons.php:161
179
  msgid "Gravity Forms Field"
265
  #: C:\advanced-custom-fields/core/controllers/export.php:239
266
  #: C:\advanced-custom-fields/core/controllers/export.php:252
267
  msgid "Export to XML"
268
+ msgstr "Esporta in XML"
269
 
270
  #: C:\advanced-custom-fields/core/controllers/export.php:242
271
  #: C:\advanced-custom-fields/core/controllers/export.php:267
277
  "ACF will create a .xml export file which is compatible with the native WP "
278
  "import plugin."
279
  msgstr ""
280
+ "ACF creerà un file di export XML che è compatibile con tutti i plugin di "
281
  "importazione nativi."
282
 
283
  #: C:\advanced-custom-fields/core/controllers/export.php:254
291
 
292
  #: C:\advanced-custom-fields/core/controllers/export.php:256
293
  msgid "Select field group(s) from the list and click \"Export XML\""
294
+ msgstr "Scegli un gruppo di campi dalla lista e clicca su \"Esporta XML\""
295
 
296
  #: C:\advanced-custom-fields/core/controllers/export.php:257
297
  msgid "Save the .xml file when prompted"
298
+ msgstr "Salva il file .xml quando richiesto"
299
 
300
  #: C:\advanced-custom-fields/core/controllers/export.php:258
301
  msgid "Navigate to Tools &raquo; Import and select WordPress"
339
  "php file."
340
  msgstr ""
341
  "Per favore considera che se esporti e registri un gruppo di campi nello "
342
+ "stesso WP, vedrai campi duplicati nella schermata di modifica. Per risolvere "
343
+ "questo, sposta il gruppo di campi originale nel cestino o rimuovi il codice "
344
+ "dal tuo file functions.php"
345
 
346
  #: C:\advanced-custom-fields/core/controllers/export.php:272
347
  msgid "Select field group(s) from the list and click \"Create PHP\""
348
+ msgstr "Seleziona i gruppi di campi dalla lista e clicca su \"Crea PHP\""
349
 
350
  #: C:\advanced-custom-fields/core/controllers/export.php:273
351
  #: C:\advanced-custom-fields/core/controllers/export.php:302
361
  #: C:\advanced-custom-fields/core/controllers/export.php:304
362
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
363
  msgstr ""
364
+ "Per attivare qualsiasi Add-ons, modifica e usa il codice nelle prime linee."
365
 
366
  #: C:\advanced-custom-fields/core/controllers/export.php:295
367
  msgid "Export Field Groups to PHP"
674
 
675
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:324
676
  msgid "Download your activated Add-ons"
677
+ msgstr "Scarica i tuoi Add-ons attivati"
678
 
679
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:329
680
  msgid ""
788
 
789
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:366
790
  msgid ""
791
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
792
  "filters, your website may not operate correctly. It is important that you "
793
  "read the full"
794
  msgstr ""
898
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:469
899
  msgid "For each Add-on available, please perform the following:"
900
  msgstr ""
901
+ "Per ogni Add-on disponibile, per favore procedi come indicato di seguito:"
902
 
903
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:471
904
  msgid "Download the Add-on plugin (.zip file) to your desktop"
927
 
928
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:475
929
  msgid "The Add-on is now installed and activated!"
930
+ msgstr "L'Add-on è stato installato ed attivato!"
931
 
932
  #: C:\advanced-custom-fields/core/controllers/field_groups.php:489
933
  msgid "Awesome. Let's get to work"
967
 
968
  #: C:\advanced-custom-fields/core/controllers/upgrade.php:835
969
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
970
+ msgstr "Spostare i campi personalizzati da wp_options a wp_usermeta"
971
 
972
  #: C:\advanced-custom-fields/core/fields/checkbox.php:19
973
  #: C:\advanced-custom-fields/core/fields/taxonomy.php:319
1132
 
1133
  #: C:\advanced-custom-fields/core/fields/file.php:27
1134
  msgid "Edit File"
1135
+ msgstr "Modifica File"
1136
 
1137
  #: C:\advanced-custom-fields/core/fields/file.php:28
1138
  msgid "Update File"
1193
 
1194
  #: C:\advanced-custom-fields/core/fields/google-map.php:117
1195
  msgid "Clear location"
1196
+ msgstr "Cancella posizione"
1197
 
1198
  #: C:\advanced-custom-fields/core/fields/google-map.php:122
1199
  msgid "Find current location"
1201
 
1202
  #: C:\advanced-custom-fields/core/fields/google-map.php:123
1203
  msgid "Search for address..."
1204
+ msgstr "Cerca l'indirizzo..."
1205
 
1206
  #: C:\advanced-custom-fields/core/fields/google-map.php:159
1207
  msgid "Center"
1219
  msgid "Customise the map height"
1220
  msgstr "Personalizza l'altezza della mappa"
1221
 
1222
+ #: C:\advanced-custom-fields/core/fields/google-map.php:199
1223
+ msgid "Zoom"
1224
+ msgstr "Zoom"
1225
+
1226
+ #: C:\advanced-custom-fields/core/fields/google-map.php:200
1227
+ msgid "Set the initial zoom level"
1228
+ msgstr "Imposta il livello di zoom iniziale"
1229
+
1230
  #: C:\advanced-custom-fields/core/fields/image.php:19
1231
  msgid "Image"
1232
  msgstr "Immagine"
1378
 
1379
  #: C:\advanced-custom-fields/core/fields/radio.php:145
1380
  msgid "Enter your choices one per line"
1381
+ msgstr "Inserisci un'opzione per linea"
1382
 
1383
  #: C:\advanced-custom-fields/core/fields/radio.php:147
1384
  msgid "Red"
1394
 
1395
  #: C:\advanced-custom-fields/core/fields/radio.php:184
1396
  msgid "Save 'other' values to the field's choices"
1397
+ msgstr "Salva i valori 'altro' nelle scelte del campo"
1398
 
1399
  #: C:\advanced-custom-fields/core/fields/relationship.php:18
1400
  msgid "Relationship"
1414
 
1415
  #: C:\advanced-custom-fields/core/fields/relationship.php:569
1416
  msgid "Return Format"
1417
+ msgstr "Restituisci Formato"
1418
 
1419
  #: C:\advanced-custom-fields/core/fields/relationship.php:580
1420
  msgid "Post Objects"
1451
 
1452
  #: C:\advanced-custom-fields/core/fields/relationship.php:679
1453
  msgid "Maximum posts"
1454
+ msgstr "Numero massimo di post"
1455
 
1456
  #: C:\advanced-custom-fields/core/fields/select.php:18
1457
  #: C:\advanced-custom-fields/core/fields/select.php:109
1550
 
1551
  #: C:\advanced-custom-fields/core/fields/text.php:177
1552
  #: C:\advanced-custom-fields/core/fields/textarea.php:142
1553
+ msgid "Affects value on front end"
1554
+ msgstr "Ha effetto sul valore nel front end"
1555
+
1556
+ #: C:\advanced-custom-fields/core/fields/textarea.php:149
1557
+ msgid "Sets the textarea height"
1558
+ msgstr "Imposta l'altezza della text area"
1559
 
1560
  #: C:\advanced-custom-fields/core/fields/text.php:186
1561
  #: C:\advanced-custom-fields/core/fields/textarea.php:151
1583
 
1584
  #: C:\advanced-custom-fields/core/fields/textarea.php:152
1585
  msgid "Convert new lines into &lt;br /&gt; tags"
1586
+ msgstr "Converti le nuove linee in tags &lt;br /&gt;"
1587
 
1588
  #: C:\advanced-custom-fields/core/fields/true_false.php:19
1589
  msgid "True / False"
1641
 
1642
  #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:127
1643
  msgid ""
1644
+ "This format will determine the value saved to the database and returned via "
1645
  "the API"
1646
  msgstr ""
1647
  "Questo formato determinerà il valore salvato nel database e verrà restituito "
1780
 
1781
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:285
1782
  msgid "all"
1783
+ msgstr "tutte"
1784
 
1785
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:286
1786
  msgid "any"
1787
+ msgstr "almeno una di"
1788
 
1789
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:289
1790
  msgid "these rules are met"
1791
+ msgstr "queste condizioni sono soddisfatte"
1792
 
1793
  #: C:\advanced-custom-fields/core/views/meta_box_fields.php:303
1794
  msgid "Close Field"
1899
 
1900
  #: C:\advanced-custom-fields/core/views/meta_box_options.php:54
1901
  msgid "Side"
1902
+ msgstr "Lato"
1903
 
1904
  #: C:\advanced-custom-fields/core/views/meta_box_options.php:64
1905
  msgid "Style"
2000
  #~ msgstr "poi clicca"
2001
 
2002
  #~ msgid "Upgrade Database"
2003
+ #~ msgstr "Aggiorna Database"
2004
 
2005
  #~ msgid "Repeater field deactivated"
2006
  #~ msgstr "Repeater field disattivato"
2157
  #~ msgid "+ Add Row"
2158
  #~ msgstr "+ Aggiungi riga"
2159
 
2160
+ #~ msgid "Add Row"
2161
+ #~ msgstr "Aggiungi riga"
2162
+
2163
  #~ msgid "Reorder Layout"
2164
  #~ msgstr "Riordina il layout"
2165
 
2188
  #~ "Nessun campo. Clicca su \"+ Aggiungi un campo\" per creare il tuo primo "
2189
  #~ "campo."
2190
 
2191
+ #~ msgid "Column Width"
2192
+ #~ msgstr "Larghezza Colonna"
2193
+
2194
  #~ msgid "Close Sub Field"
2195
  #~ msgstr "Chiudi il campo"
2196
 
2210
  #~ "Filter posts by selecting a post type<br />\n"
2211
  #~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
2212
  #~ msgstr ""
2213
+ #~ "Filtra i contenuti selezionando un tipo di contenuto<br />\n"
2214
+ #~ "\t\t\t\tTrucco: deseleziona tutti i tipi di contenuto per visualizzarne "
2215
  #~ "tutti i tipi"
2216
 
2217
  #~ msgid "Set to -1 for infinite"
2229
  #~ msgid "Table (default)"
2230
  #~ msgstr "Tabella (default)"
2231
 
2232
+ #~ msgid "Table"
2233
+ #~ msgstr "Tabella"
2234
+
2235
  #~ msgid "Define how to render html tags"
2236
+ #~ msgstr "Definisci come renderizzare i tag html"
2237
 
2238
  #~ msgid "HTML"
2239
  #~ msgstr "HTML"
2246
 
2247
  #~ msgid "No Custom Field Group found for the options page"
2248
  #~ msgstr ""
2249
+ #~ "Non è stato trovato nessun gruppo di campi per la pagina delle opzioni"
2250
 
2251
  #~ msgid "Create a Custom Field Group"
2252
  #~ msgstr "Crea un gruppo di campi"
lang/acf-ja.mo CHANGED
Binary file
lang/acf-ja.po CHANGED
@@ -5,14 +5,14 @@ msgstr ""
5
  "Project-Id-Version: ACF\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-07-09 03:49:07+00:00\n"
8
- "PO-Revision-Date: 2013-07-26 07:40+0900\n"
9
- "Last-Translator: Fumito MIZUNO <ounziw@gmail.com>\n"
10
  "Language-Team: Fumito MIZUNO <ounziw@gmail.com>\n"
11
- "Language: Japanese\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
 
17
  #: acf.php:325
18
  msgid "Field&nbsp;Groups"
@@ -774,7 +774,7 @@ msgstr "潜在的な問題"
774
 
775
  #: core/controllers/field_groups.php:366
776
  msgid ""
777
- "Do to the sizable changes surounding Add-ons, field types and action/"
778
  "filters, your website may not operate correctly. It is important that you "
779
  "read the full"
780
  msgstr ""
@@ -1037,7 +1037,7 @@ msgstr "フォーマットを保存する"
1037
 
1038
  #: core/fields/date_picker/date_picker.php:106
1039
  msgid ""
1040
- "This format will determin the value saved to the database and returned via "
1041
  "the API"
1042
  msgstr ""
1043
  "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します"
5
  "Project-Id-Version: ACF\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-07-09 03:49:07+00:00\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Fumito MIZUNO <ounziw@gmail.com>\n"
11
+ "Language: ja\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
 
17
  #: acf.php:325
18
  msgid "Field&nbsp;Groups"
774
 
775
  #: core/controllers/field_groups.php:366
776
  msgid ""
777
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
778
  "filters, your website may not operate correctly. It is important that you "
779
  "read the full"
780
  msgstr ""
1037
 
1038
  #: core/fields/date_picker/date_picker.php:106
1039
  msgid ""
1040
+ "This format will determine the value saved to the database and returned via "
1041
  "the API"
1042
  msgstr ""
1043
  "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します"
lang/acf-nl_NL.mo CHANGED
Binary file
lang/acf-nl_NL.po CHANGED
@@ -5,15 +5,16 @@ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields - Dutch translation\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2012-09-10 08:45+0100\n"
8
- "PO-Revision-Date: 2013-06-10 18:59-0600\n"
9
- "Last-Translator: Derk Oosterveld <derk@inpoint.nl>\n"
10
  "Language-Team: Inpoint <derk@inpoint.nl>\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: acf.php:287 core/views/meta_box_options.php:94
@@ -80,7 +81,7 @@ msgstr "Groepen hersteld naar revisie van %s"
80
 
81
  #: acf.php:358
82
  msgid "Field group published."
83
- msgstr "Groep gepubliseerd."
84
 
85
  #: acf.php:359
86
  msgid "Field group saved."
@@ -429,7 +430,7 @@ msgstr "Registreer veld groepen"
429
 
430
  #: core/controllers/settings.php:357 core/controllers/settings.php:474
431
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
432
- msgstr "Geregistreerde veld groepen verschijnen <b>niet</b> in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema\'s"
433
 
434
  #: core/controllers/settings.php:358 core/controllers/settings.php:475
435
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
@@ -533,11 +534,11 @@ msgstr "Upgrade database"
533
 
534
  #: core/controllers/upgrade.php:604
535
  msgid "Modifying field group options 'show on page'"
536
- msgstr "Wijzigen groep opties \'toon op pagina\'"
537
 
538
  #: core/controllers/upgrade.php:658
539
  msgid "Modifying field option 'taxonomy'"
540
- msgstr "Wijzigen groep opties \'toon op pagina\'"
541
 
542
  #: core/controllers/upgrade.php:755
543
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
@@ -1081,7 +1082,7 @@ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld"
1081
 
1082
  #: core/fields/wysiwyg.php:135
1083
  msgid "Disable this filter if you encounter recursive template problems with plugins / themes"
1084
- msgstr "Schakel dit filter uit als je template problemen ondervindt met plugins/thema\'s."
1085
 
1086
  #: core/fields/date_picker/date_picker.php:21
1087
  msgid "Date Picker"
@@ -1092,7 +1093,7 @@ msgid "Save format"
1092
  msgstr "Opslaan indeling"
1093
 
1094
  #: core/fields/date_picker/date_picker.php:107
1095
- msgid "This format will determin the value saved to the database and returned via the API"
1096
  msgstr "De datum wordt in deze indeling opgeslagen in de database en teruggegeven door de API"
1097
 
1098
  #: core/fields/date_picker/date_picker.php:108
5
  "Project-Id-Version: Advanced Custom Fields - Dutch translation\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2012-09-10 08:45+0100\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Inpoint <derk@inpoint.nl>\n"
11
+ "Language: nl_NL\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Generator: Poedit 1.8.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: acf.php:287 core/views/meta_box_options.php:94
81
 
82
  #: acf.php:358
83
  msgid "Field group published."
84
+ msgstr "Groep gepubliceerd."
85
 
86
  #: acf.php:359
87
  msgid "Field group saved."
430
 
431
  #: core/controllers/settings.php:357 core/controllers/settings.php:474
432
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
433
+ msgstr "Geregistreerde veld groepen verschijnen <b>niet</b> in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema's"
434
 
435
  #: core/controllers/settings.php:358 core/controllers/settings.php:475
436
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
534
 
535
  #: core/controllers/upgrade.php:604
536
  msgid "Modifying field group options 'show on page'"
537
+ msgstr "Wijzigen groep opties 'toon op pagina'"
538
 
539
  #: core/controllers/upgrade.php:658
540
  msgid "Modifying field option 'taxonomy'"
541
+ msgstr "Wijzigen groep opties 'toon op pagina'"
542
 
543
  #: core/controllers/upgrade.php:755
544
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1082
 
1083
  #: core/fields/wysiwyg.php:135
1084
  msgid "Disable this filter if you encounter recursive template problems with plugins / themes"
1085
+ msgstr "Schakel dit filter uit als je template problemen ondervindt met plugins/thema's."
1086
 
1087
  #: core/fields/date_picker/date_picker.php:21
1088
  msgid "Date Picker"
1093
  msgstr "Opslaan indeling"
1094
 
1095
  #: core/fields/date_picker/date_picker.php:107
1096
+ msgid "This format will determine the value saved to the database and returned via the API"
1097
  msgstr "De datum wordt in deze indeling opgeslagen in de database en teruggegeven door de API"
1098
 
1099
  #: core/fields/date_picker/date_picker.php:108
lang/acf-pl_PL.mo CHANGED
Binary file
lang/acf-pl_PL.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields 4.4.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2015-12-12 15:14+0100\n"
8
- "PO-Revision-Date: 2015-12-16 11:33+1000\n"
9
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Maciej Gryniuk <maciejka45@gmail.com>\n"
11
  "Language: pl_PL\n"
@@ -734,7 +734,7 @@ msgstr "Potencjalne błędy"
734
  #: core/controllers/field_groups.php:362
735
  #, php-format
736
  msgid ""
737
- "Due to the sizable changes surounding Add-ons, field types and action/"
738
  "filters, your website may not operate correctly. It is important that you "
739
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
740
  "changes."
@@ -984,7 +984,7 @@ msgstr "Format zapisu"
984
 
985
  #: core/fields/date_picker/date_picker.php:127
986
  msgid ""
987
- "This format will determin the value saved to the database and returned via "
988
  "the API"
989
  msgstr ""
990
  "Ten format określa wartość zapisywaną do bazy danych i zwracaną poprzez API"
@@ -1476,7 +1476,7 @@ msgid "Formatting"
1476
  msgstr "Formatowanie"
1477
 
1478
  #: core/fields/text.php:177 core/fields/textarea.php:165
1479
- msgid "Effects value on front end"
1480
  msgstr "Określa sposób wyświetlania wartości na stronie docelowej (front-end)."
1481
 
1482
  #: core/fields/text.php:186 core/fields/textarea.php:174
@@ -1862,7 +1862,7 @@ msgstr "Wyślij trackbacki"
1862
  #~ msgstr ", aby poznać zaktualizowane normy nazewnictwa."
1863
 
1864
  #~ msgid ""
1865
- #~ "Do to the sizable changes surounding Add-ons, field types and action/"
1866
  #~ "filters, your website may not operate correctly. It is important that you "
1867
  #~ "read the full"
1868
  #~ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields 4.4.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2015-12-12 15:14+0100\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Maciej Gryniuk <maciejka45@gmail.com>\n"
11
  "Language: pl_PL\n"
734
  #: core/controllers/field_groups.php:362
735
  #, php-format
736
  msgid ""
737
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
738
  "filters, your website may not operate correctly. It is important that you "
739
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
740
  "changes."
984
 
985
  #: core/fields/date_picker/date_picker.php:127
986
  msgid ""
987
+ "This format will determine the value saved to the database and returned via "
988
  "the API"
989
  msgstr ""
990
  "Ten format określa wartość zapisywaną do bazy danych i zwracaną poprzez API"
1476
  msgstr "Formatowanie"
1477
 
1478
  #: core/fields/text.php:177 core/fields/textarea.php:165
1479
+ msgid "Affects value on front end"
1480
  msgstr "Określa sposób wyświetlania wartości na stronie docelowej (front-end)."
1481
 
1482
  #: core/fields/text.php:186 core/fields/textarea.php:174
1862
  #~ msgstr ", aby poznać zaktualizowane normy nazewnictwa."
1863
 
1864
  #~ msgid ""
1865
+ #~ "Due to the sizable changes surrounding Add-ons, field types and action/"
1866
  #~ "filters, your website may not operate correctly. It is important that you "
1867
  #~ "read the full"
1868
  #~ msgstr ""
lang/acf-pt_BR.mo CHANGED
Binary file
lang/acf-pt_BR.po CHANGED
@@ -3,1100 +3,1021 @@ msgstr ""
3
  "Project-Id-Version: Advanced Custom Fields v4.2.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
6
- "PO-Revision-Date: 2013-08-26 01:26:30+0000\n"
7
- "Last-Translator: Augusto Simão <augusto@ams.art.br>\n"
8
  "Language-Team: Augusto Simão <augusto@ams.art.br>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.5.5\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: \n"
19
- "X-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: acf.php:459
24
- #: core/views/meta_box_options.php:98
25
- #@ acf
26
- #@ default
27
  msgid "Custom Fields"
28
  msgstr "Campos Personalizados"
29
 
 
30
  #: core/controllers/upgrade.php:86
31
- #@ acf
32
  msgid "Upgrade"
33
  msgstr "Atualizar"
34
 
35
- #: core/controllers/field_group.php:375
36
- #: core/controllers/field_group.php:437
37
  #: core/controllers/field_groups.php:148
38
- #@ acf
39
  msgid "Fields"
40
  msgstr "Campos"
41
 
 
42
  #: core/controllers/field_group.php:376
43
- #@ acf
44
  msgid "Location"
45
  msgstr "Local"
46
 
 
47
  #: core/controllers/field_group.php:377
48
- #@ acf
49
  msgid "Options"
50
  msgstr "Opções"
51
 
 
52
  #: core/controllers/input.php:523
53
- #@ acf
54
  msgid "Validation Failed. One or more fields below are required."
55
  msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios."
56
 
 
57
  #: core/controllers/field_group.php:630
58
- #@ acf
59
  msgid "Default Template"
60
  msgstr "Modelo Padrão"
61
 
 
62
  #: core/actions/export.php:30
63
- #@ acf
64
  msgid "No ACF groups selected"
65
  msgstr "Nenhum grupo ACF selecionado"
66
 
67
- #: acf.php:343
68
- #: core/controllers/field_groups.php:214
69
- #@ acf
70
  msgid "Advanced Custom Fields"
71
  msgstr "Advanced Custom Fields"
72
 
 
73
  #: acf.php:342
74
- #@ acf
75
  msgid "Field&nbsp;Groups"
76
  msgstr "Grupos&nbsp;de&nbsp;Campos"
77
 
 
78
  #: acf.php:344
79
- #@ acf
80
  msgid "Add New"
81
  msgstr "Adicionar Novo"
82
 
 
83
  #: acf.php:345
84
- #@ acf
85
  msgid "Add New Field Group"
86
  msgstr "Adicionar Novo Grupo de Campos"
87
 
 
88
  #: acf.php:346
89
- #@ acf
90
  msgid "Edit Field Group"
91
  msgstr "Editar Grupo de Campos"
92
 
 
93
  #: acf.php:347
94
- #@ acf
95
  msgid "New Field Group"
96
  msgstr "Novo Grupo de Campos"
97
 
 
98
  #: acf.php:348
99
- #@ acf
100
  msgid "View Field Group"
101
  msgstr "Ver Grupo de Campos"
102
 
 
103
  #: acf.php:349
104
- #@ acf
105
  msgid "Search Field Groups"
106
  msgstr "Pesquisar Grupos de Campos"
107
 
 
108
  #: acf.php:350
109
- #@ acf
110
  msgid "No Field Groups found"
111
  msgstr "Nenhum Grupo de Campos encontrado"
112
 
 
113
  #: acf.php:351
114
- #@ acf
115
  msgid "No Field Groups found in Trash"
116
  msgstr "Nenhum Grupo de Campos encontrado na Lixeira"
117
 
118
- #: acf.php:477
119
- #: acf.php:480
120
- #@ acf
121
  msgid "Field group updated."
122
  msgstr "Grupo de campos atualizado."
123
 
 
124
  #: acf.php:478
125
- #@ acf
126
  msgid "Custom field updated."
127
  msgstr "Campo personalizado atualizado."
128
 
 
129
  #: acf.php:479
130
- #@ acf
131
  msgid "Custom field deleted."
132
  msgstr "Campo personalizado excluído."
133
 
 
134
  #. translators: %s: date and time of the revision
135
  #: acf.php:482
136
  #, php-format
137
- #@ acf
138
  msgid "Field group restored to revision from %s"
139
  msgstr "Grupo de campos restaurado para revisão de %s"
140
 
 
141
  #: acf.php:483
142
- #@ acf
143
  msgid "Field group published."
144
  msgstr "Grupo de campos publicado."
145
 
 
146
  #: acf.php:484
147
- #@ acf
148
  msgid "Field group saved."
149
  msgstr "Grupo de campos salvo."
150
 
 
151
  #: acf.php:485
152
- #@ acf
153
  msgid "Field group submitted."
154
  msgstr "Grupo de campos enviado."
155
 
 
156
  #: acf.php:486
157
- #@ acf
158
  msgid "Field group scheduled for."
159
  msgstr "Grupo de campos agendado."
160
 
 
161
  #: acf.php:487
162
- #@ acf
163
  msgid "Field group draft updated."
164
  msgstr "Rascunho de grupo de campos atualizado."
165
 
 
166
  #: core/controllers/field_groups.php:147
167
- #@ default
168
  msgid "Title"
169
  msgstr "Título"
170
 
 
171
  #: core/views/meta_box_fields.php:24
172
- #@ acf
173
  msgid "New Field"
174
  msgstr "Novo Campo"
175
 
 
176
  #: core/views/meta_box_fields.php:63
177
- #@ acf
178
  msgid "Move to trash. Are you sure?"
179
  msgstr "Mover para a lixeira. Você tem certeza?"
180
 
 
181
  #: core/views/meta_box_fields.php:88
182
- #@ acf
183
  msgid "Field Order"
184
  msgstr "Ordem do Campo"
185
 
186
- #: core/views/meta_box_fields.php:89
187
- #: core/views/meta_box_fields.php:141
188
- #@ acf
189
  msgid "Field Label"
190
  msgstr "Rótulo do Campo"
191
 
192
- #: core/views/meta_box_fields.php:90
193
- #: core/views/meta_box_fields.php:157
194
- #@ acf
195
  msgid "Field Name"
196
  msgstr "Nome do Campo"
197
 
198
- #: core/fields/taxonomy.php:306
199
- #: core/fields/user.php:251
200
- #: core/views/meta_box_fields.php:91
201
- #: core/views/meta_box_fields.php:173
202
- #@ acf
203
  msgid "Field Type"
204
  msgstr "Tipo de Campo"
205
 
 
206
  #: core/views/meta_box_fields.php:104
207
- #@ acf
208
  msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
209
  msgstr "Nenhum campo. Clique no botão <strong>+ Adicionar Campo</strong> para criar seu primeiro campo."
210
 
211
- #: core/views/meta_box_fields.php:119
212
- #: core/views/meta_box_fields.php:122
213
- #@ acf
214
  msgid "Edit this Field"
215
  msgstr "Editar este Campo"
216
 
217
- #: core/fields/image.php:84
218
- #: core/views/meta_box_fields.php:122
219
- #@ acf
220
  msgid "Edit"
221
  msgstr "Editar"
222
 
 
223
  #: core/views/meta_box_fields.php:123
224
- #@ acf
225
  msgid "Read documentation for this field"
226
  msgstr "Ler a documentação para esse campo"
227
 
 
228
  #: core/views/meta_box_fields.php:123
229
- #@ acf
230
  msgid "Docs"
231
  msgstr "Docs"
232
 
 
233
  #: core/views/meta_box_fields.php:124
234
- #@ acf
235
  msgid "Duplicate this Field"
236
  msgstr "Duplicar este Campo"
237
 
 
238
  #: core/views/meta_box_fields.php:124
239
- #@ acf
240
  msgid "Duplicate"
241
  msgstr "Duplicar"
242
 
 
243
  #: core/views/meta_box_fields.php:125
244
- #@ acf
245
  msgid "Delete this Field"
246
  msgstr "Excluir este Campo"
247
 
 
248
  #: core/views/meta_box_fields.php:125
249
- #@ acf
250
  msgid "Delete"
251
  msgstr "Excluir"
252
 
 
253
  #: core/views/meta_box_fields.php:142
254
- #@ acf
255
  msgid "This is the name which will appear on the EDIT page"
256
  msgstr "Este é o nome que irá aparecer na página de EDIÇÃO"
257
 
 
258
  #: core/views/meta_box_fields.php:158
259
- #@ acf
260
  msgid "Single word, no spaces. Underscores and dashes allowed"
261
  msgstr "Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos"
262
 
 
263
  #: core/views/meta_box_fields.php:187
264
- #@ acf
265
  msgid "Field Instructions"
266
  msgstr "Instruções do Campo"
267
 
 
268
  #: core/views/meta_box_fields.php:188
269
- #@ acf
270
  msgid "Instructions for authors. Shown when submitting data"
271
  msgstr "Instrução para os autores. Exibido quando se está enviando dados"
272
 
 
273
  #: core/views/meta_box_fields.php:200
274
- #@ acf
275
  msgid "Required?"
276
  msgstr "Obrigatório?"
277
 
 
278
  #: core/views/meta_box_fields.php:317
279
- #@ acf
280
  msgid "Close Field"
281
  msgstr "Fechar Campo"
282
 
 
283
  #: core/views/meta_box_fields.php:330
284
- #@ acf
285
  msgid "Drag and drop to reorder"
286
  msgstr "Clique e arraste para reorganizar"
287
 
 
288
  #: core/views/meta_box_fields.php:331
289
- #@ acf
290
  msgid "+ Add Field"
291
  msgstr "+ Adicionar Campo"
292
 
 
293
  #: core/views/meta_box_location.php:48
294
- #@ acf
295
  msgid "Rules"
296
  msgstr "Regras"
297
 
 
298
  #: core/views/meta_box_location.php:49
299
- #@ acf
300
  msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
301
  msgstr "Criar um conjunto de regras para determinar quais telas de edição irão utilizar esses campos avançados."
302
 
303
- #: core/fields/_base.php:124
304
- #: core/views/meta_box_location.php:74
305
- #@ acf
306
  msgid "Basic"
307
  msgstr "Básico"
308
 
309
- #: core/fields/page_link.php:103
310
- #: core/fields/post_object.php:268
311
- #: core/fields/relationship.php:589
312
- #: core/fields/relationship.php:668
313
  #: core/views/meta_box_location.php:75
314
- #@ acf
315
  msgid "Post Type"
316
  msgstr "Tipo de Post"
317
 
 
318
  #: core/views/meta_box_location.php:76
319
- #@ acf
320
  msgid "Logged in User Type"
321
  msgstr "Tipo de Usuário Logado"
322
 
323
- #: core/views/meta_box_location.php:78
324
- #: core/views/meta_box_location.php:79
325
- #@ acf
326
  msgid "Page"
327
  msgstr "Página"
328
 
 
329
  #: core/views/meta_box_location.php:80
330
- #@ acf
331
  msgid "Page Type"
332
  msgstr "Tipo de Página"
333
 
 
334
  #: core/views/meta_box_location.php:81
335
- #@ acf
336
  msgid "Page Parent"
337
  msgstr "Página Mãe"
338
 
 
339
  #: core/views/meta_box_location.php:82
340
- #@ acf
341
  msgid "Page Template"
342
  msgstr "Modelo de Página"
343
 
344
- #: core/views/meta_box_location.php:84
345
- #: core/views/meta_box_location.php:85
346
- #@ acf
347
  msgid "Post"
348
  msgstr "Post"
349
 
 
350
  #: core/views/meta_box_location.php:86
351
- #@ acf
352
  msgid "Post Category"
353
  msgstr "Categoria de Post"
354
 
 
355
  #: core/views/meta_box_location.php:87
356
- #@ acf
357
  msgid "Post Format"
358
  msgstr "Formato de Post"
359
 
 
360
  #: core/views/meta_box_location.php:89
361
- #@ acf
362
  msgid "Post Taxonomy"
363
  msgstr "Taxonomia de Post"
364
 
365
- #: core/fields/radio.php:102
366
- #: core/views/meta_box_location.php:91
367
- #@ acf
368
  msgid "Other"
369
  msgstr "Outro"
370
 
371
- #: core/controllers/addons.php:144
372
- #: core/controllers/field_groups.php:448
373
- #@ acf
374
  msgid "Options Page"
375
  msgstr "Página de Opções"
376
 
377
- #: core/views/meta_box_fields.php:274
378
- #: core/views/meta_box_location.php:117
379
- #@ acf
380
  msgid "is equal to"
381
  msgstr "é igual a"
382
 
383
- #: core/views/meta_box_fields.php:275
384
- #: core/views/meta_box_location.php:118
385
- #@ acf
386
  msgid "is not equal to"
387
  msgstr "não é igual a"
388
 
 
389
  #: core/views/meta_box_fields.php:299
390
- #@ acf
391
  msgid "all"
392
  msgstr "todas"
393
 
 
394
  #: core/views/meta_box_fields.php:300
395
- #@ acf
396
  msgid "any"
397
  msgstr "quaisquer"
398
 
 
399
  #: core/views/meta_box_options.php:25
400
- #@ acf
401
  msgid "Order No."
402
  msgstr "No. de Ordem"
403
 
 
404
  #: core/views/meta_box_options.php:42
405
- #@ acf
406
  msgid "Position"
407
  msgstr "Posição"
408
 
 
409
  #: core/views/meta_box_options.php:54
410
- #@ acf
411
  msgid "Side"
412
  msgstr "Lateral"
413
 
 
414
  #: core/views/meta_box_options.php:64
415
- #@ acf
416
  msgid "Style"
417
  msgstr "Estilo"
418
 
 
419
  #: core/views/meta_box_options.php:75
420
- #@ acf
421
  msgid "Standard Metabox"
422
  msgstr "Metabox Padrão"
423
 
 
424
  #: core/views/meta_box_options.php:74
425
- #@ acf
426
  msgid "No Metabox"
427
  msgstr "Sem Metabox"
428
 
 
429
  #: core/views/meta_box_options.php:96
430
- #@ acf
431
  msgid "Content Editor"
432
  msgstr "Editor de Conteúdo"
433
 
 
434
  #: core/views/meta_box_options.php:99
435
- #@ default
436
  msgid "Discussion"
437
  msgstr "Discussão"
438
 
 
439
  #: core/views/meta_box_options.php:100
440
- #@ default
441
  msgid "Comments"
442
  msgstr "Comentários"
443
 
 
444
  #: core/views/meta_box_options.php:102
445
- #@ default
446
  msgid "Slug"
447
  msgstr "Slug"
448
 
 
449
  #: core/views/meta_box_options.php:103
450
- #@ default
451
  msgid "Author"
452
  msgstr "Autor"
453
 
454
- #: core/controllers/field_groups.php:216
455
- #: core/controllers/field_groups.php:257
456
- #@ acf
457
  msgid "Changelog"
458
  msgstr "Changelog"
459
 
 
460
  #: core/controllers/field_groups.php:217
461
- #@ acf
462
  msgid "See what's new in"
463
  msgstr "Veja o que há de novo na"
464
 
 
465
  #: core/controllers/field_groups.php:219
466
- #@ acf
467
  msgid "Resources"
468
  msgstr "Recursos (em inglês)"
469
 
 
470
  #: core/controllers/field_groups.php:232
471
- #@ acf
472
  msgid "Created by"
473
  msgstr "Criado por"
474
 
 
475
  #: core/controllers/field_groups.php:235
476
- #@ acf
477
  msgid "Vote"
478
  msgstr "Votar"
479
 
 
480
  #: core/controllers/field_groups.php:236
481
- #@ acf
482
  msgid "Follow"
483
  msgstr "Seguir"
484
 
 
485
  #: core/controllers/field_groups.php:424
486
- #@ acf
487
  msgid "Activation Code"
488
  msgstr "Código de Ativação"
489
 
490
- #: core/controllers/addons.php:130
491
- #: core/controllers/field_groups.php:432
492
- #@ acf
493
  msgid "Repeater Field"
494
  msgstr "Campo Repetidor"
495
 
 
496
  #: core/controllers/addons.php:151
497
- #@ acf
498
  msgid "Flexible Content Field"
499
  msgstr "Campo de Conteúdo Flexível"
500
 
 
501
  #: core/controllers/export.php:253
502
- #@ acf
503
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
504
  msgstr "O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin de importação nativo do WP."
505
 
 
506
  #: core/controllers/export.php:259
507
- #@ acf
508
  msgid "Install WP import plugin if prompted"
509
  msgstr "Instale o plugin de importação do WP se necessário"
510
 
 
511
  #: core/controllers/export.php:260
512
- #@ acf
513
  msgid "Upload and import your exported .xml file"
514
  msgstr "Faça o upload e importe o arquivo .xml exportado"
515
 
 
516
  #: core/controllers/export.php:261
517
- #@ acf
518
  msgid "Select your user and ignore Import Attachments"
519
  msgstr "Selecione o seu usuário e ignore a Importação de Anexos"
520
 
 
521
  #: core/controllers/export.php:262
522
- #@ acf
523
  msgid "That's it! Happy WordPressing"
524
  msgstr "É isso! Feliz WordPressing"
525
 
 
526
  #: core/controllers/export.php:295
527
- #@ acf
528
  msgid "Export Field Groups to PHP"
529
  msgstr "Exportar Grupos de Campos para PHP"
530
 
531
- #: core/controllers/export.php:273
532
- #: core/controllers/export.php:302
533
- #@ acf
534
  msgid "Copy the PHP code generated"
535
  msgstr "Copie o código PHP gerado"
536
 
537
- #: core/controllers/export.php:274
538
- #: core/controllers/export.php:303
539
- #@ acf
540
  msgid "Paste into your functions.php file"
541
  msgstr "Cole no seu arquivo functions.php"
542
 
543
- #: core/controllers/export.php:275
544
- #: core/controllers/export.php:304
545
- #@ acf
546
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
547
  msgstr "Para ativar qualquer Complemento, edite e utilize o código que estão nas linhas iniciais."
548
 
 
549
  #: core/controllers/export.php:426
550
- #@ acf
551
  msgid "No field groups were selected"
552
  msgstr "Nenhum grupo de campos foi selecionado"
553
 
554
- #: core/fields/checkbox.php:19
555
- #: core/fields/taxonomy.php:317
556
- #@ acf
557
  msgid "Checkbox"
558
  msgstr "Checkbox"
559
 
560
- #: core/fields/checkbox.php:137
561
- #: core/fields/radio.php:144
562
  #: core/fields/select.php:177
563
- #@ acf
564
  msgid "Choices"
565
  msgstr "Escolhas"
566
 
 
567
  #: core/fields/radio.php:145
568
- #@ acf
569
  msgid "Enter your choices one per line"
570
  msgstr "Digite cada uma de suas opções em uma nova linha."
571
 
 
572
  #: core/fields/radio.php:147
573
- #@ acf
574
  msgid "Red"
575
  msgstr "Vermelho"
576
 
 
577
  #: core/fields/radio.php:148
578
- #@ acf
579
  msgid "Blue"
580
  msgstr "Azul"
581
 
582
- #: core/fields/checkbox.php:140
583
- #: core/fields/radio.php:150
584
  #: core/fields/select.php:180
585
- #@ acf
586
  msgid "red : Red"
587
  msgstr "vermelho : Vermelho"
588
 
589
- #: core/fields/checkbox.php:140
590
- #: core/fields/radio.php:151
591
  #: core/fields/select.php:180
592
- #@ acf
593
  msgid "blue : Blue"
594
  msgstr "azul : Azul"
595
 
 
596
  #: core/fields/color_picker.php:19
597
- #@ acf
598
  msgid "Color Picker"
599
  msgstr "Seletor de Cor"
600
 
 
601
  #: core/fields/date_picker/date_picker.php:22
602
- #@ acf
603
  msgid "Date Picker"
604
  msgstr "Seletor de Datas"
605
 
 
606
  #: core/fields/file.php:19
607
- #@ acf
608
  msgid "File"
609
  msgstr "Arquivo"
610
 
 
611
  #: core/fields/file.php:123
612
- #@ acf
613
  msgid "No File Selected"
614
  msgstr "Nenhum Arquivo Selecionado"
615
 
 
616
  #: core/fields/file.php:123
617
- #@ acf
618
  msgid "Add File"
619
  msgstr "Adicionar Arquivo"
620
 
621
- #: core/fields/file.php:153
622
- #: core/fields/image.php:118
623
  #: core/fields/taxonomy.php:365
624
- #@ acf
625
  msgid "Return Value"
626
  msgstr "Valor Retornado"
627
 
 
628
  #: core/fields/file.php:26
629
- #@ acf
630
  msgid "Select File"
631
  msgstr "Selecionar Arquivo"
632
 
 
633
  #: core/controllers/field_groups.php:456
634
- #@ acf
635
  msgid "Flexible Content"
636
  msgstr "Conteúdo Flexível"
637
 
638
- #: core/fields/checkbox.php:174
639
- #: core/fields/message.php:20
640
- #: core/fields/radio.php:209
641
- #: core/fields/tab.php:20
642
- #@ acf
643
  msgid "Layout"
644
  msgstr "Layout"
645
 
 
646
  #: core/controllers/field_groups.php:423
647
- #@ acf
648
  msgid "Name"
649
  msgstr "Nome"
650
 
 
651
  #: core/fields/image.php:19
652
- #@ acf
653
  msgid "Image"
654
  msgstr "Imagem"
655
 
 
656
  #: core/fields/image.php:90
657
- #@ acf
658
  msgid "No image selected"
659
  msgstr "Nenhuma imagem selecionada"
660
 
 
661
  #: core/fields/image.php:90
662
- #@ acf
663
  msgid "Add Image"
664
  msgstr "Adicionar Imagem"
665
 
 
666
  #: core/fields/image.php:130
667
- #@ acf
668
  msgid "Image URL"
669
  msgstr "URL da Imagem"
670
 
 
671
  #: core/fields/image.php:139
672
- #@ acf
673
  msgid "Preview Size"
674
  msgstr "Tamanho da Pré-visualização"
675
 
 
676
  #: acf.php:622
677
- #@ acf
678
  msgid "Thumbnail"
679
  msgstr "Miniatura"
680
 
 
681
  #: acf.php:623
682
- #@ acf
683
  msgid "Medium"
684
  msgstr "Média"
685
 
 
686
  #: acf.php:624
687
- #@ acf
688
  msgid "Large"
689
  msgstr "Grande"
690
 
 
691
  #: acf.php:625
692
- #@ acf
693
  msgid "Full"
694
  msgstr "Completo"
695
 
 
696
  #: core/fields/image.php:27
697
- #@ acf
698
  msgid "Select Image"
699
  msgstr "Selecionar Imagem"
700
 
 
701
  #: core/fields/page_link.php:18
702
- #@ acf
703
  msgid "Page Link"
704
  msgstr "Link da Página"
705
 
706
- #: core/fields/select.php:18
707
- #: core/fields/select.php:109
708
- #: core/fields/taxonomy.php:322
709
- #: core/fields/user.php:266
710
- #@ acf
711
  msgid "Select"
712
  msgstr "Seleção"
713
 
714
- #: core/controllers/field_group.php:741
715
- #: core/controllers/field_group.php:762
716
- #: core/controllers/field_group.php:769
717
- #: core/fields/file.php:186
718
- #: core/fields/image.php:170
719
- #: core/fields/page_link.php:109
720
- #: core/fields/post_object.php:274
721
- #: core/fields/post_object.php:298
722
- #: core/fields/relationship.php:595
723
- #: core/fields/relationship.php:619
724
  #: core/fields/user.php:229
725
- #@ acf
726
  msgid "All"
727
  msgstr "Todos"
728
 
729
- #: core/fields/page_link.php:127
730
- #: core/fields/post_object.php:317
731
- #: core/fields/select.php:214
732
- #: core/fields/taxonomy.php:331
733
  #: core/fields/user.php:275
734
- #@ acf
735
  msgid "Allow Null?"
736
  msgstr "Permitir Nulo?"
737
 
738
- #: core/controllers/field_group.php:441
739
- #: core/fields/page_link.php:137
740
- #: core/fields/page_link.php:158
741
- #: core/fields/post_object.php:327
742
- #: core/fields/post_object.php:348
743
- #: core/fields/select.php:223
744
- #: core/fields/select.php:242
745
- #: core/fields/taxonomy.php:340
746
- #: core/fields/user.php:284
747
- #: core/fields/wysiwyg.php:228
748
- #: core/views/meta_box_fields.php:208
749
- #: core/views/meta_box_fields.php:231
750
- #@ acf
751
  msgid "Yes"
752
  msgstr "Sim"
753
 
754
- #: core/controllers/field_group.php:440
755
- #: core/fields/page_link.php:138
756
- #: core/fields/page_link.php:159
757
- #: core/fields/post_object.php:328
758
- #: core/fields/post_object.php:349
759
- #: core/fields/select.php:224
760
- #: core/fields/select.php:243
761
- #: core/fields/taxonomy.php:341
762
- #: core/fields/user.php:285
763
- #: core/fields/wysiwyg.php:229
764
- #: core/views/meta_box_fields.php:209
765
- #: core/views/meta_box_fields.php:232
766
- #@ acf
767
  msgid "No"
768
  msgstr "Não"
769
 
770
- #: core/fields/page_link.php:148
771
- #: core/fields/post_object.php:338
772
  #: core/fields/select.php:233
773
- #@ acf
774
  msgid "Select multiple values?"
775
  msgstr "Selecionar vários valores?"
776
 
 
777
  #: core/fields/post_object.php:18
778
- #@ acf
779
  msgid "Post Object"
780
  msgstr "Objeto do Post"
781
 
782
- #: core/fields/post_object.php:292
783
- #: core/fields/relationship.php:613
784
- #@ acf
785
  msgid "Filter from Taxonomy"
786
  msgstr "Filtro de Taxonomia"
787
 
 
788
  #: core/fields/radio.php:18
789
- #@ acf
790
  msgid "Radio Button"
791
  msgstr "Botão de Rádio"
792
 
793
- #: core/fields/checkbox.php:157
794
- #: core/fields/color_picker.php:89
795
- #: core/fields/email.php:106
796
- #: core/fields/number.php:116
797
- #: core/fields/radio.php:193
798
- #: core/fields/select.php:197
799
- #: core/fields/text.php:116
800
- #: core/fields/textarea.php:96
801
- #: core/fields/true_false.php:94
802
- #: core/fields/wysiwyg.php:171
803
- #@ acf
804
  msgid "Default Value"
805
  msgstr "Valor Padrão"
806
 
807
- #: core/fields/checkbox.php:185
808
- #: core/fields/radio.php:220
809
- #@ acf
810
  msgid "Vertical"
811
  msgstr "Vertical"
812
 
813
- #: core/fields/checkbox.php:186
814
- #: core/fields/radio.php:221
815
- #@ acf
816
  msgid "Horizontal"
817
  msgstr "Horizontal"
818
 
 
819
  #: core/fields/relationship.php:18
820
- #@ acf
821
  msgid "Relationship"
822
  msgstr "Relação"
823
 
 
824
  #: core/fields/relationship.php:647
825
- #@ acf
826
  msgid "Search"
827
  msgstr "Pesquisa"
828
 
 
829
  #: core/fields/relationship.php:679
830
- #@ acf
831
  msgid "Maximum posts"
832
  msgstr "Posts máximos"
833
 
 
834
  #: core/fields/text.php:19
835
- #@ acf
836
  msgid "Text"
837
  msgstr "Texto"
838
 
839
- #: core/fields/text.php:176
840
- #: core/fields/textarea.php:141
841
- #@ acf
842
  msgid "Formatting"
843
  msgstr "Formatação"
844
 
845
- #: core/fields/taxonomy.php:211
846
- #: core/fields/taxonomy.php:220
847
- #@ acf
848
  msgid "None"
849
  msgstr "Nenhuma"
850
 
 
851
  #: core/fields/textarea.php:19
852
- #@ acf
853
  msgid "Text Area"
854
  msgstr "Área de Texto"
855
 
 
856
  #: core/fields/true_false.php:19
857
- #@ acf
858
  msgid "True / False"
859
  msgstr "Verdadeiro / Falso"
860
 
861
- #: core/fields/message.php:19
862
- #: core/fields/message.php:70
863
  #: core/fields/true_false.php:79
864
- #@ acf
865
  msgid "Message"
866
  msgstr "Mensagem"
867
 
 
868
  #: core/fields/true_false.php:80
869
- #@ acf
870
  msgid "eg. Show extra content"
871
  msgstr "ex.: Mostrar conteúdo adicional"
872
 
 
873
  #: core/fields/wysiwyg.php:19
874
- #@ acf
875
  msgid "Wysiwyg Editor"
876
  msgstr "Editor Wysiwyg"
877
 
 
878
  #: core/fields/wysiwyg.php:186
879
- #@ acf
880
  msgid "Toolbar"
881
  msgstr "Barra de Ferramentas"
882
 
 
883
  #: core/fields/wysiwyg.php:218
884
- #@ acf
885
  msgid "Show Media Upload Buttons?"
886
  msgstr "Mostrar Botões de Upload de Mídia?"
887
 
888
- #: core/actions/export.php:23
889
- #: core/views/meta_box_fields.php:58
890
- #@ acf
891
  msgid "Error"
892
  msgstr "Erro"
893
 
894
- #: core/controllers/addons.php:42
895
- #: core/controllers/export.php:368
896
  #: core/controllers/field_groups.php:311
897
- #@ acf
898
  msgid "Add-ons"
899
  msgstr "Complementos"
900
 
 
901
  #: core/controllers/addons.php:131
902
- #@ acf
903
  msgid "Create infinite rows of repeatable data with this versatile interface!"
904
  msgstr "Através desta versátil interface é prossível criar infinitas linhas de dados repetitíveis!"
905
 
906
- #: core/controllers/addons.php:137
907
- #: core/controllers/field_groups.php:440
908
- #@ acf
909
  msgid "Gallery Field"
910
  msgstr "Campo de Galeria"
911
 
 
912
  #: core/controllers/addons.php:138
913
- #@ acf
914
  msgid "Create image galleries in a simple and intuitive interface!"
915
  msgstr "Cria galerias de imagens em uma interface simples e intuitiva!"
916
 
 
917
  #: core/controllers/addons.php:145
918
- #@ acf
919
  msgid "Create global data to use throughout your website!"
920
  msgstr "Cria dados globais para serem usados em todo o seu site!"
921
 
 
922
  #: core/controllers/addons.php:152
923
- #@ acf
924
  msgid "Create unique designs with a flexible content layout manager!"
925
  msgstr "Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!"
926
 
 
927
  #: core/controllers/addons.php:161
928
- #@ acf
929
  msgid "Gravity Forms Field"
930
  msgstr "Campo Gravity Forms"
931
 
 
932
  #: core/controllers/addons.php:162
933
- #@ acf
934
  msgid "Creates a select field populated with Gravity Forms!"
935
  msgstr "Cria um campo de seleção preenchido com Gravity Forms!"
936
 
 
937
  #: core/controllers/addons.php:168
938
- #@ acf
939
  msgid "Date & Time Picker"
940
  msgstr "Seletor de Data e Hora"
941
 
 
942
  #: core/controllers/addons.php:169
943
- #@ acf
944
  msgid "jQuery date & time picker"
945
  msgstr "Seletor jQuery de data e hora"
946
 
 
947
  #: core/controllers/addons.php:175
948
- #@ acf
949
  msgid "Location Field"
950
  msgstr "Campo de Localização"
951
 
 
952
  #: core/controllers/addons.php:176
953
- #@ acf
954
  msgid "Find addresses and coordinates of a desired location"
955
  msgstr "Busca endereços e coordenadas de um local desejado"
956
 
 
957
  #: core/controllers/addons.php:182
958
- #@ acf
959
  msgid "Contact Form 7 Field"
960
  msgstr "Campo Contact Form 7"
961
 
 
962
  #: core/controllers/addons.php:183
963
- #@ acf
964
  msgid "Assign one or more contact form 7 forms to a post"
965
  msgstr "Atribui um ou mais formulários Contact Form 7 para um post"
966
 
 
967
  #: core/controllers/addons.php:193
968
- #@ acf
969
  msgid "Advanced Custom Fields Add-Ons"
970
  msgstr "Complementos do Advanced Custom Fields"
971
 
 
972
  #: core/controllers/addons.php:196
973
- #@ acf
974
  msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
975
  msgstr "Os Complementos a seguir estão disponíveis para ampliar as funcionalidades do plugin Advanced Custom Fields."
976
 
 
977
  #: core/controllers/addons.php:197
978
- #@ acf
979
  msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
980
  msgstr "Cada Complemento pode ser instalado como um plugin separado (recebendo atualizações) ou pode ser incluído em seu tema (sem atualizações)."
981
 
982
- #: core/controllers/addons.php:219
983
- #: core/controllers/addons.php:240
984
- #@ acf
985
  msgid "Installed"
986
  msgstr "Instalado"
987
 
 
988
  #: core/controllers/addons.php:221
989
- #@ acf
990
  msgid "Purchase & Install"
991
  msgstr "Comprar & Instalar"
992
 
993
- #: core/controllers/addons.php:242
994
- #: core/controllers/field_groups.php:425
995
- #: core/controllers/field_groups.php:434
996
- #: core/controllers/field_groups.php:442
997
- #: core/controllers/field_groups.php:450
998
- #: core/controllers/field_groups.php:458
999
- #@ acf
1000
  msgid "Download"
1001
  msgstr "Download"
1002
 
1003
- #: core/controllers/export.php:50
1004
- #: core/controllers/export.php:159
1005
- #@ acf
1006
  msgid "Export"
1007
  msgstr "Exportar"
1008
 
 
1009
  #: core/controllers/export.php:216
1010
- #@ acf
1011
  msgid "Export Field Groups"
1012
  msgstr "Exportar Grupos de Campos"
1013
 
 
1014
  #: core/controllers/export.php:221
1015
- #@ acf
1016
  msgid "Field Groups"
1017
  msgstr "Grupos de Campos"
1018
 
 
1019
  #: core/controllers/export.php:222
1020
- #@ acf
1021
  msgid "Select the field groups to be exported"
1022
  msgstr "Selecione os grupos de campos para serem exportados"
1023
 
1024
- #: core/controllers/export.php:239
1025
- #: core/controllers/export.php:252
1026
- #@ acf
1027
  msgid "Export to XML"
1028
  msgstr "Exportar como XML"
1029
 
1030
- #: core/controllers/export.php:242
1031
- #: core/controllers/export.php:267
1032
- #@ acf
1033
  msgid "Export to PHP"
1034
  msgstr "Exportar como PHP"
1035
 
 
1036
  #: core/controllers/export.php:254
1037
- #@ acf
1038
  msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
1039
  msgstr "Os grupos de campos importados <b>irão</b> aparecer na lista de grupos editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP."
1040
 
 
1041
  #: core/controllers/export.php:256
1042
- #@ acf
1043
  msgid "Select field group(s) from the list and click \"Export XML\""
1044
  msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\""
1045
 
 
1046
  #: core/controllers/export.php:257
1047
- #@ acf
1048
  msgid "Save the .xml file when prompted"
1049
  msgstr "Salvar o arquivo .xml quando solicitado"
1050
 
 
1051
  #: core/controllers/export.php:258
1052
- #@ acf
1053
  msgid "Navigate to Tools &raquo; Import and select WordPress"
1054
  msgstr "Navegue até Ferramentas &raquo; Importar e selecione WordPress"
1055
 
 
1056
  #: core/controllers/export.php:268
1057
- #@ acf
1058
  msgid "ACF will create the PHP code to include in your theme."
1059
  msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema."
1060
 
1061
- #: core/controllers/export.php:269
1062
- #: core/controllers/export.php:310
1063
- #@ acf
1064
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
1065
  msgstr "Os grupos de campos registrados <b>não irão</b> aparecer na lista de campos editáveis. Isso pode ser útil para incluir grupos de campos em temas."
1066
 
 
1067
  #: core/controllers/export.php:272
1068
- #@ acf
1069
  msgid "Select field group(s) from the list and click \"Create PHP\""
1070
  msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\""
1071
 
1072
- #: core/controllers/export.php:300
1073
- #: core/fields/tab.php:65
1074
- #@ acf
1075
  msgid "Instructions"
1076
  msgstr "Instruções"
1077
 
 
1078
  #: core/controllers/export.php:309
1079
- #@ acf
1080
  msgid "Notes"
1081
  msgstr "Observações"
1082
 
 
1083
  #: core/controllers/export.php:316
1084
- #@ acf
1085
  msgid "Include in theme"
1086
  msgstr "Inclusão no tema"
1087
 
 
1088
  #: core/controllers/export.php:317
1089
- #@ acf
1090
  msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
1091
  msgstr "O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o seguinte código em seu arquivo functions.php"
1092
 
 
1093
  #: core/controllers/export.php:331
1094
- #@ acf
1095
  msgid "Back to export"
1096
  msgstr "Voltar para a exportação"
1097
 
 
1098
  #: core/controllers/export.php:375
1099
- #@ acf
1100
  msgid ""
1101
  "/**\n"
1102
  " * Register Field Groups\n"
@@ -1112,798 +1033,779 @@ msgstr ""
1112
  " * Você pode editar o array conforme a sua necessidade, entretanto, isso pode resultar em erros caso o array não esteja compatível com o ACF.\n"
1113
  " */"
1114
 
 
1115
  #: core/controllers/field_group.php:439
1116
- #@ acf
1117
  msgid "Show Field Key:"
1118
  msgstr "Mostrar a Chave do Campo"
1119
 
 
1120
  #: core/controllers/field_group.php:618
1121
- #@ acf
1122
  msgid "Front Page"
1123
  msgstr "Página Inicial"
1124
 
 
1125
  #: core/controllers/field_group.php:619
1126
- #@ acf
1127
  msgid "Posts Page"
1128
  msgstr "Página de Posts"
1129
 
 
1130
  #: core/controllers/field_group.php:620
1131
- #@ acf
1132
  msgid "Top Level Page (parent of 0)"
1133
  msgstr "Página de nível mais alto (sem mãe)"
1134
 
 
1135
  #: core/controllers/field_group.php:621
1136
- #@ acf
1137
  msgid "Parent Page (has children)"
1138
  msgstr "Página Mãe (tem filhos)"
1139
 
 
1140
  #: core/controllers/field_group.php:622
1141
- #@ acf
1142
  msgid "Child Page (has parent)"
1143
  msgstr "Página filha (possui mãe)"
1144
 
 
1145
  #: core/controllers/field_groups.php:217
1146
- #@ acf
1147
  msgid "version"
1148
  msgstr "versão"
1149
 
 
1150
  #: core/controllers/field_groups.php:221
1151
- #@ acf
1152
  msgid "Getting Started"
1153
  msgstr "Primeiros Passos"
1154
 
 
1155
  #: core/controllers/field_groups.php:222
1156
- #@ acf
1157
  msgid "Field Types"
1158
  msgstr "Tipos de Campos"
1159
 
 
1160
  #: core/controllers/field_groups.php:223
1161
- #@ acf
1162
  msgid "Functions"
1163
  msgstr "Funções"
1164
 
 
1165
  #: core/controllers/field_groups.php:224
1166
- #@ acf
1167
  msgid "Actions"
1168
  msgstr "Ações"
1169
 
1170
- #: core/controllers/field_groups.php:225
1171
- #: core/fields/relationship.php:638
1172
- #@ acf
1173
  msgid "Filters"
1174
  msgstr "Filtros"
1175
 
 
1176
  #: core/controllers/field_groups.php:226
1177
- #@ acf
1178
  msgid "'How to' guides"
1179
  msgstr "Guias práticos"
1180
 
 
1181
  #: core/controllers/field_groups.php:227
1182
- #@ acf
1183
  msgid "Tutorials"
1184
  msgstr "Tutoriais"
1185
 
 
1186
  #: core/controllers/field_groups.php:248
1187
- #@ acf
1188
  msgid "Welcome to Advanced Custom Fields"
1189
  msgstr "Bem-vindo ao Advanced Custom Fields"
1190
 
 
1191
  #: core/controllers/field_groups.php:249
1192
- #@ acf
1193
  msgid "Thank you for updating to the latest version!"
1194
  msgstr "Ele foi atualizado para a última versão!"
1195
 
 
1196
  #: core/controllers/field_groups.php:249
1197
- #@ acf
1198
  msgid "is more polished and enjoyable than ever before. We hope you like it."
1199
  msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta."
1200
 
 
1201
  #: core/controllers/field_groups.php:256
1202
- #@ acf
1203
  msgid "What’s New"
1204
  msgstr "O que há de novo"
1205
 
 
1206
  #: core/controllers/field_groups.php:259
1207
- #@ acf
1208
  msgid "Download Add-ons"
1209
  msgstr "Fazer download de Complementos"
1210
 
 
1211
  #: core/controllers/field_groups.php:313
1212
- #@ acf
1213
  msgid "Activation codes have grown into plugins!"
1214
  msgstr "Os códigos de ativação se transformaram em plugins!"
1215
 
 
1216
  #: core/controllers/field_groups.php:314
1217
- #@ acf
1218
  msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
1219
  msgstr "Os complementos agora são ativados fazendo download e instalando plugins individuais. Embora esses plugins não estejam hospedados no repositório wordpress.org, cada Complemento continuará recebendo as atualizações da maneira habitual."
1220
 
 
1221
  #: core/controllers/field_groups.php:320
1222
- #@ acf
1223
  msgid "All previous Add-ons have been successfully installed"
1224
  msgstr "Todos os Complementos anteriores foram instalados com sucesso"
1225
 
 
1226
  #: core/controllers/field_groups.php:324
1227
- #@ acf
1228
  msgid "This website uses premium Add-ons which need to be downloaded"
1229
  msgstr "Este site usa Complementos Premium que precisam ser baixados"
1230
 
 
1231
  #: core/controllers/field_groups.php:324
1232
- #@ acf
1233
  msgid "Download your activated Add-ons"
1234
  msgstr "Faça o download dos Complementos ativados"
1235
 
 
1236
  #: core/controllers/field_groups.php:329
1237
- #@ acf
1238
  msgid "This website does not use premium Add-ons and will not be affected by this change."
1239
  msgstr "Este site não utiliza nenhum Complemento Premium e não será afetado por esta mudança."
1240
 
 
1241
  #: core/controllers/field_groups.php:339
1242
- #@ acf
1243
  msgid "Easier Development"
1244
  msgstr "Desenvolvimento mais fácil"
1245
 
 
1246
  #: core/controllers/field_groups.php:341
1247
- #@ acf
1248
  msgid "New Field Types"
1249
  msgstr "Novos Tipos de Campos"
1250
 
 
1251
  #: core/controllers/field_groups.php:343
1252
- #@ acf
1253
  msgid "Taxonomy Field"
1254
  msgstr "Campo de Taxonomia"
1255
 
 
1256
  #: core/controllers/field_groups.php:344
1257
- #@ acf
1258
  msgid "User Field"
1259
  msgstr "Campo de Usuário"
1260
 
 
1261
  #: core/controllers/field_groups.php:345
1262
- #@ acf
1263
  msgid "Email Field"
1264
  msgstr "Campo de Email"
1265
 
 
1266
  #: core/controllers/field_groups.php:346
1267
- #@ acf
1268
  msgid "Password Field"
1269
  msgstr "Campo de Senha"
1270
 
 
1271
  #: core/controllers/field_groups.php:348
1272
- #@ acf
1273
  msgid "Custom Field Types"
1274
  msgstr "Tipos de Campos Personalizados"
1275
 
 
1276
  #: core/controllers/field_groups.php:349
1277
- #@ acf
1278
  msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
1279
  msgstr "Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os tipos de campos da versão 3 não são compatíveis com a versão 4."
1280
 
 
1281
  #: core/controllers/field_groups.php:350
1282
- #@ acf
1283
  msgid "Migrating your field types is easy, please"
1284
  msgstr "Migrar os seus tipos de campos é fácil, "
1285
 
 
1286
  #: core/controllers/field_groups.php:350
1287
- #@ acf
1288
  msgid "follow this tutorial"
1289
  msgstr "siga este tutorial (em inglês)"
1290
 
 
1291
  #: core/controllers/field_groups.php:350
1292
- #@ acf
1293
  msgid "to learn more."
1294
  msgstr "para saber mais."
1295
 
 
1296
  #: core/controllers/field_groups.php:352
1297
- #@ acf
1298
  msgid "Actions &amp; Filters"
1299
  msgstr "Ações &amp; Filtros"
1300
 
 
1301
  #: core/controllers/field_groups.php:353
1302
- #@ acf
1303
  msgid "read this guide"
1304
  msgstr "Leia este guia (em inglês)"
1305
 
 
1306
  #: core/controllers/field_groups.php:353
1307
- #@ acf
1308
  msgid "to find the updated naming convention."
1309
  msgstr "para encontrar convenção de nomenclaturas atualizada."
1310
 
 
1311
  #: core/controllers/field_groups.php:355
1312
- #@ acf
1313
  msgid "Preview draft is now working!"
1314
  msgstr "A visualização de rascunhos agora está funcionando!"
1315
 
 
1316
  #: core/controllers/field_groups.php:356
1317
- #@ acf
1318
  msgid "This bug has been squashed along with many other little critters!"
1319
  msgstr "Este problema foi liquidado junto com muitos outros bugs!"
1320
 
 
1321
  #: core/controllers/field_groups.php:356
1322
- #@ acf
1323
  msgid "See the full changelog"
1324
  msgstr "Veja o changelog completo (em inglês)"
1325
 
 
1326
  #: core/controllers/field_groups.php:360
1327
- #@ acf
1328
  msgid "Important"
1329
  msgstr "Importante"
1330
 
 
1331
  #: core/controllers/field_groups.php:362
1332
- #@ acf
1333
  msgid "Database Changes"
1334
  msgstr "Alterações do Banco de Dados"
1335
 
 
1336
  #: core/controllers/field_groups.php:363
1337
- #@ acf
1338
  msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
1339
  msgstr "Não foi feita absolutamente <strong>nenhuma</strong> alteração no banco de dados entre as versões 3 e 4. Isso significa que você pode reverter para a versão 3 sem quaisquer problemas."
1340
 
 
1341
  #: core/controllers/field_groups.php:365
1342
- #@ acf
1343
  msgid "Potential Issues"
1344
  msgstr "Possíveis Problemas"
1345
 
 
1346
  #: core/controllers/field_groups.php:366
1347
- #@ acf
1348
- msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
1349
  msgstr "Em virtude das mudanças significativas que ocorreram com os Complementos, nos tipos de campos e nas ações/filtros, seu site poderá não funcionar corretamente. É importante que você leia todo o guia"
1350
 
 
1351
  #: core/controllers/field_groups.php:366
1352
- #@ acf
1353
  msgid "Migrating from v3 to v4"
1354
  msgstr "Migrando da v3 para v4 (em inglês)"
1355
 
 
1356
  #: core/controllers/field_groups.php:366
1357
- #@ acf
1358
  msgid "guide to view the full list of changes."
1359
  msgstr "para ver a lista completa de mudanças."
1360
 
 
1361
  #: core/controllers/field_groups.php:369
1362
- #@ acf
1363
  msgid "Really Important!"
1364
  msgstr "Muito Importante!"
1365
 
 
1366
  #: core/controllers/field_groups.php:369
1367
- #@ acf
1368
  msgid "version 3"
1369
  msgstr "versão 3"
1370
 
 
1371
  #: core/controllers/field_groups.php:369
1372
- #@ acf
1373
  msgid "of this plugin."
1374
  msgstr "disponível deste plugin."
1375
 
 
1376
  #: core/controllers/field_groups.php:374
1377
- #@ acf
1378
  msgid "Thank You"
1379
  msgstr "Obrigado"
1380
 
 
1381
  #: core/controllers/field_groups.php:375
1382
- #@ acf
1383
  msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
1384
  msgstr "Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 beta e por todo o apoio que recebi."
1385
 
 
1386
  #: core/controllers/field_groups.php:376
1387
- #@ acf
1388
  msgid "Without you all, this release would not have been possible!"
1389
  msgstr "Sem vocês este release não seria possível!"
1390
 
 
1391
  #: core/controllers/field_groups.php:380
1392
- #@ acf
1393
  msgid "Changelog for"
1394
  msgstr "Changelog da versão"
1395
 
 
1396
  #: core/controllers/field_groups.php:396
1397
- #@ acf
1398
  msgid "Learn more"
1399
  msgstr "Saiba mais"
1400
 
 
1401
  #: core/controllers/field_groups.php:402
1402
- #@ acf
1403
  msgid "Overview"
1404
  msgstr "Visão geral"
1405
 
 
1406
  #: core/controllers/field_groups.php:404
1407
- #@ acf
1408
  msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
1409
  msgstr "Antes, todos os Complementos eram desbloqueados através de códigos de ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que todos os Complementos funcionam como plugins separados, que precisam ser baixados invididualmente, instalados e atualizados."
1410
 
 
1411
  #: core/controllers/field_groups.php:406
1412
- #@ acf
1413
  msgid "This page will assist you in downloading and installing each available Add-on."
1414
  msgstr "Esta página irá te ajudar a fazer o download e a realizar a instalação de cada Complemento disponível."
1415
 
 
1416
  #: core/controllers/field_groups.php:408
1417
- #@ acf
1418
  msgid "Available Add-ons"
1419
  msgstr "Complementos Disponíveis"
1420
 
 
1421
  #: core/controllers/field_groups.php:410
1422
- #@ acf
1423
  msgid "The following Add-ons have been detected as activated on this website."
1424
  msgstr "Os seguintes Complementos foram detectados como ativados neste site."
1425
 
 
1426
  #: core/controllers/field_groups.php:466
1427
- #@ acf
1428
  msgid "Installation"
1429
  msgstr "Instalação"
1430
 
 
1431
  #: core/controllers/field_groups.php:468
1432
- #@ acf
1433
  msgid "For each Add-on available, please perform the following:"
1434
  msgstr "Para cada Complemento disponível, faça o seguinte:"
1435
 
 
1436
  #: core/controllers/field_groups.php:470
1437
- #@ acf
1438
  msgid "Download the Add-on plugin (.zip file) to your desktop"
1439
  msgstr "Faça o download do Complemento (arquivo .zip) para a sua área de trabalho"
1440
 
 
1441
  #: core/controllers/field_groups.php:471
1442
- #@ acf
1443
  msgid "Navigate to"
1444
  msgstr "Navegue para"
1445
 
 
1446
  #: core/controllers/field_groups.php:471
1447
- #@ acf
1448
  msgid "Plugins > Add New > Upload"
1449
  msgstr "Plugins > Adicionar Novo > Enviar"
1450
 
 
1451
  #: core/controllers/field_groups.php:472
1452
- #@ acf
1453
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1454
  msgstr "Utilize o uploader para procurar, selecionar e instalar o seu Complemento (arquivo .zip)"
1455
 
 
1456
  #: core/controllers/field_groups.php:473
1457
- #@ acf
1458
  msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1459
  msgstr "Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'"
1460
 
 
1461
  #: core/controllers/field_groups.php:474
1462
- #@ acf
1463
  msgid "The Add-on is now installed and activated!"
1464
  msgstr "O Complemento agora está instalado e ativado!"
1465
 
 
1466
  #: core/controllers/field_groups.php:488
1467
- #@ acf
1468
  msgid "Awesome. Let's get to work"
1469
  msgstr "Fantástico. Vamos trabalhar"
1470
 
 
1471
  #: core/fields/relationship.php:29
1472
- #@ acf
1473
  msgid "Maximum values reached ( {max} values )"
1474
  msgstr "Quantidade máxima atingida ( {max} item(s) )"
1475
 
 
1476
  #: core/controllers/upgrade.php:684
1477
- #@ acf
1478
  msgid "Modifying field group options 'show on page'"
1479
  msgstr "Modificando as opções 'exibir na página' do grupo de campos"
1480
 
 
1481
  #: core/controllers/upgrade.php:738
1482
- #@ acf
1483
  msgid "Modifying field option 'taxonomy'"
1484
  msgstr "Modificando a opção 'taxonomia' do campo"
1485
 
 
1486
  #: core/controllers/upgrade.php:835
1487
- #@ acf
1488
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1489
  msgstr "Movendo os campos personalizados do usuário de wp_options para wp_usermeta"
1490
 
1491
- #: core/fields/checkbox.php:20
1492
- #: core/fields/radio.php:19
1493
- #: core/fields/select.php:19
1494
- #: core/fields/true_false.php:20
1495
- #@ acf
1496
  msgid "Choice"
1497
  msgstr "Escolhas"
1498
 
1499
- #: core/fields/checkbox.php:138
1500
- #: core/fields/select.php:178
1501
- #@ acf
1502
  msgid "Enter each choice on a new line."
1503
  msgstr "Digite cada opção em uma nova linha."
1504
 
1505
- #: core/fields/checkbox.php:139
1506
- #: core/fields/select.php:179
1507
- #@ acf
1508
  msgid "For more control, you may specify both a value and label like this:"
1509
  msgstr "Para mais controle, você pode especificar tanto os valores quanto os rótulos, como nos exemplos:"
1510
 
1511
- #: core/fields/checkbox.php:158
1512
- #: core/fields/select.php:198
1513
- #@ acf
1514
  msgid "Enter each default value on a new line"
1515
  msgstr "Digite cada valor padrão em uma nova linha"
1516
 
1517
- #: core/fields/color_picker.php:20
1518
- #: core/fields/date_picker/date_picker.php:23
1519
- #@ acf
1520
  msgid "jQuery"
1521
  msgstr "jQuery"
1522
 
 
1523
  #: core/fields/date_picker/date_picker.php:30
1524
- #@ acf
1525
  msgid "Done"
1526
  msgstr "Concluído"
1527
 
 
1528
  #: core/fields/date_picker/date_picker.php:31
1529
- #@ acf
1530
  msgid "Today"
1531
  msgstr "Hoje"
1532
 
 
1533
  #: core/fields/date_picker/date_picker.php:34
1534
- #@ acf
1535
  msgid "Show a different month"
1536
  msgstr "Mostrar um mês diferente"
1537
 
 
1538
  #: core/fields/date_picker/date_picker.php:105
1539
- #@ acf
1540
  msgid "Save format"
1541
  msgstr "Formato dos dados"
1542
 
 
1543
  #: core/fields/date_picker/date_picker.php:106
1544
- #@ acf
1545
- msgid "This format will determin the value saved to the database and returned via the API"
1546
  msgstr "Este será o formato salvo no banco de dados e depois devolvido através da API"
1547
 
 
1548
  #: core/fields/date_picker/date_picker.php:107
1549
- #@ acf
1550
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1551
  msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre"
1552
 
 
1553
  #: core/fields/date_picker/date_picker.php:107
1554
  #: core/fields/date_picker/date_picker.php:123
1555
- #@ acf
1556
  msgid "jQuery date formats"
1557
  msgstr "formatos de data jQuery"
1558
 
 
1559
  #: core/fields/date_picker/date_picker.php:121
1560
- #@ acf
1561
  msgid "Display format"
1562
  msgstr "Formato de exibição"
1563
 
 
1564
  #: core/fields/date_picker/date_picker.php:122
1565
- #@ acf
1566
  msgid "This format will be seen by the user when entering a value"
1567
  msgstr "Este é o formato que será visto pelo usuário quando um valor for digitado"
1568
 
 
1569
  #: core/fields/date_picker/date_picker.php:123
1570
- #@ acf
1571
  msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1572
  msgstr "\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. Leia mais sobre"
1573
 
 
1574
  #: core/fields/date_picker/date_picker.php:137
1575
- #@ acf
1576
  msgid "Week Starts On"
1577
  msgstr "Semana começa em"
1578
 
 
1579
  #: core/fields/dummy.php:19
1580
- #@ default
1581
  msgid "Dummy"
1582
  msgstr "Dummy"
1583
 
 
1584
  #: core/fields/email.php:19
1585
- #@ acf
1586
  msgid "Email"
1587
  msgstr "Email"
1588
 
1589
- #: core/fields/file.php:20
1590
- #: core/fields/image.php:20
1591
- #: core/fields/wysiwyg.php:20
1592
- #@ acf
1593
  msgid "Content"
1594
  msgstr "Conteúdo"
1595
 
 
1596
  #: core/fields/image.php:83
1597
- #@ acf
1598
  msgid "Remove"
1599
  msgstr "Remover"
1600
 
 
1601
  #: core/fields/file.php:164
1602
- #@ acf
1603
  msgid "File Object"
1604
  msgstr "Objeto do Arquivo"
1605
 
 
1606
  #: core/fields/file.php:165
1607
- #@ acf
1608
  msgid "File URL"
1609
  msgstr "URL do Arquivo"
1610
 
 
1611
  #: core/fields/file.php:166
1612
- #@ acf
1613
  msgid "File ID"
1614
  msgstr "ID do Arquivo"
1615
 
 
1616
  #: core/fields/file.php:28
1617
- #@ acf
1618
  msgid "Update File"
1619
  msgstr "Atualizar Arquivo"
1620
 
 
1621
  #: core/fields/image.php:129
1622
- #@ acf
1623
  msgid "Image Object"
1624
  msgstr "Objeto da Imagem"
1625
 
 
1626
  #: core/fields/image.php:131
1627
- #@ acf
1628
  msgid "Image ID"
1629
  msgstr "ID da Imagem"
1630
 
 
1631
  #: core/fields/image.php:29
1632
- #@ acf
1633
  msgid "Update Image"
1634
  msgstr "Atualizar Imagem"
1635
 
 
1636
  #: core/fields/message.php:71
1637
- #@ acf
1638
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1639
  msgstr "O Texto &amp; HTML digitados aqui irão aparecer em linha, como os campos"
1640
 
 
1641
  #: core/fields/message.php:72
1642
- #@ acf
1643
  msgid "Please note that all text will first be passed through the wp function "
1644
  msgstr "Antes, todo o texto irá passar pela função "
1645
 
 
1646
  #: core/fields/number.php:19
1647
- #@ acf
1648
  msgid "Number"
1649
  msgstr "Número"
1650
 
1651
- #: core/fields/page_link.php:19
1652
- #: core/fields/post_object.php:19
1653
- #: core/fields/relationship.php:19
1654
- #: core/fields/taxonomy.php:19
1655
  #: core/fields/user.php:19
1656
- #@ acf
1657
  msgid "Relational"
1658
  msgstr "Relacional"
1659
 
 
1660
  #: core/fields/password.php:19
1661
- #@ acf
1662
  msgid "Password"
1663
  msgstr "Senha"
1664
 
 
1665
  #: core/fields/relationship.php:648
1666
- #@ acf
1667
  msgid "Post Type Select"
1668
  msgstr "Seleção de Tipos de Post"
1669
 
 
1670
  #: core/fields/relationship.php:656
1671
- #@ acf
1672
  msgid "Elements"
1673
  msgstr "Elementos"
1674
 
 
1675
  #: core/fields/relationship.php:657
1676
- #@ acf
1677
  msgid "Selected elements will be displayed in each result"
1678
  msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro"
1679
 
 
1680
  #: core/fields/relationship.php:667
1681
- #@ acf
1682
  msgid "Post Title"
1683
  msgstr "Título do Post"
1684
 
 
1685
  #: core/fields/tab.php:19
1686
- #@ acf
1687
  msgid "Tab"
1688
  msgstr "Aba"
1689
 
1690
- #: core/fields/taxonomy.php:18
1691
- #: core/fields/taxonomy.php:276
1692
- #@ acf
1693
  msgid "Taxonomy"
1694
  msgstr "Taxonomia"
1695
 
1696
- #: core/fields/taxonomy.php:316
1697
- #: core/fields/user.php:260
1698
- #@ acf
1699
  msgid "Multiple Values"
1700
  msgstr "Vários valores"
1701
 
1702
- #: core/fields/taxonomy.php:318
1703
- #: core/fields/user.php:262
1704
- #@ acf
1705
  msgid "Multi Select"
1706
  msgstr "Seleção Múltipla"
1707
 
1708
- #: core/fields/taxonomy.php:320
1709
- #: core/fields/user.php:264
1710
- #@ acf
1711
  msgid "Single Value"
1712
  msgstr "Um único valor"
1713
 
 
1714
  #: core/fields/taxonomy.php:321
1715
- #@ acf
1716
  msgid "Radio Buttons"
1717
  msgstr "Botões de Rádio"
1718
 
 
1719
  #: core/fields/taxonomy.php:350
1720
- #@ acf
1721
  msgid "Load & Save Terms to Post"
1722
  msgstr "Carregar & Salvar Termos do Post"
1723
 
 
1724
  #: core/fields/taxonomy.php:358
1725
- #@ acf
1726
  msgid "Load value based on the post's terms and update the post's terms on save"
1727
  msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar."
1728
 
 
1729
  #: core/fields/taxonomy.php:375
1730
- #@ acf
1731
  msgid "Term Object"
1732
  msgstr "Objeto do Termo"
1733
 
 
1734
  #: core/fields/taxonomy.php:376
1735
- #@ acf
1736
  msgid "Term ID"
1737
  msgstr "ID do Termo"
1738
 
1739
- #: core/fields/user.php:18
1740
- #: core/views/meta_box_location.php:94
1741
- #@ acf
1742
  msgid "User"
1743
  msgstr "Usuário"
1744
 
 
1745
  #: core/fields/user.php:224
1746
- #@ acf
1747
  msgid "Filter by role"
1748
  msgstr "Filtrar por função"
1749
 
 
1750
  #: core/views/meta_box_fields.php:58
1751
- #@ acf
1752
  msgid "Field type does not exist"
1753
  msgstr "Tipo de campo não existe"
1754
 
 
1755
  #: core/views/meta_box_fields.php:64
1756
- #@ acf
1757
  msgid "checked"
1758
  msgstr "selecionado"
1759
 
 
1760
  #: core/views/meta_box_fields.php:65
1761
- #@ acf
1762
  msgid "No toggle fields available"
1763
  msgstr "Não há campos de alternância disponíveis"
1764
 
 
1765
  #: core/views/meta_box_fields.php:67
1766
- #@ acf
1767
  msgid "copy"
1768
  msgstr "copiar"
1769
 
 
1770
  #: core/views/meta_box_fields.php:92
1771
- #@ acf
1772
  msgid "Field Key"
1773
  msgstr "Chave do Campo"
1774
 
 
1775
  #: core/views/meta_box_fields.php:223
1776
- #@ acf
1777
  msgid "Conditional Logic"
1778
  msgstr "Condições para exibição"
1779
 
 
1780
  #: core/views/meta_box_fields.php:293
1781
- #@ acf
1782
  msgid "Show this field when"
1783
  msgstr "Mostrar este campo se"
1784
 
 
1785
  #: core/views/meta_box_fields.php:303
1786
- #@ acf
1787
  msgid "these rules are met"
1788
  msgstr "regras forem atendidas"
1789
 
 
1790
  #: core/views/meta_box_location.php:60
1791
- #@ acf
1792
  msgid "Show this field group if"
1793
  msgstr "Mostrar este grupo de campos se"
1794
 
1795
- #: core/views/meta_box_fields.php:68
1796
- #: core/views/meta_box_location.php:62
1797
  #: core/views/meta_box_location.php:159
1798
- #@ acf
1799
  msgid "or"
1800
  msgstr "ou"
1801
 
 
1802
  #: core/views/meta_box_location.php:146
1803
- #@ acf
1804
  msgid "and"
1805
  msgstr "e"
1806
 
 
1807
  #: core/views/meta_box_location.php:161
1808
- #@ acf
1809
  msgid "Add rule group"
1810
  msgstr "Adicionar grupo de regras"
1811
 
 
1812
  #: core/views/meta_box_options.php:26
1813
- #@ acf
1814
  msgid "Field groups are created in order <br />from lowest to highest"
1815
  msgstr "Grupos de campo são criados na ordem <br />do menor para o maior valor"
1816
 
 
1817
  #: core/views/meta_box_options.php:84
1818
- #@ acf
1819
  msgid "Hide on screen"
1820
  msgstr "Ocultar na tela"
1821
 
 
1822
  #: core/views/meta_box_options.php:85
1823
- #@ acf
1824
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1825
  msgstr "<b>Selecione</b> os itens deverão ser <b>ocultados</b> na tela de edição"
1826
 
 
1827
  #: core/views/meta_box_options.php:86
1828
- #@ acf
1829
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1830
  msgstr "Se vários grupos de campos aparecem em uma tela de edição, as opções do primeiro grupo de campos é a que será utilizada. (aquele com o menor número de ordem)"
1831
 
 
1832
  #: core/views/meta_box_options.php:97
1833
- #@ default
1834
  msgid "Excerpt"
1835
  msgstr "Resumo"
1836
 
 
1837
  #: core/views/meta_box_options.php:101
1838
- #@ default
1839
  msgid "Revisions"
1840
  msgstr "Revisões"
1841
 
 
1842
  #: core/views/meta_box_options.php:104
1843
- #@ default
1844
  msgid "Format"
1845
  msgstr "Formato"
1846
 
1847
- #: core/fields/relationship.php:666
1848
- #: core/views/meta_box_options.php:105
1849
- #@ acf
1850
- #@ default
1851
  msgid "Featured Image"
1852
  msgstr "Imagem Destacada"
1853
 
 
1854
  #: core/views/meta_box_options.php:106
1855
- #@ default
1856
  msgid "Categories"
1857
  msgstr "Categorias"
1858
 
 
1859
  #: core/views/meta_box_options.php:107
1860
- #@ default
1861
  msgid "Tags"
1862
  msgstr "Tags"
1863
 
 
1864
  #: core/views/meta_box_options.php:108
1865
- #@ default
1866
  msgid "Send Trackbacks"
1867
  msgstr "Enviar Trackbacks"
1868
 
1869
- #: core/controllers/export.php:270
1870
- #: core/controllers/export.php:311
1871
- #@ acf
1872
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
1873
  msgstr "Note que se você exportar e registrar os grupos de campos dentro de um mesmo WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, mova o grupo de campos original para a lixeira ou remova o código de seu arquivo functions.php."
1874
 
 
1875
  #: core/controllers/export.php:323
1876
- #@ acf
1877
  msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1878
  msgstr "Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma constante para habilitar o <i>modo Lite</i>. Adicione o seguinte código em seu arquivo functions.php, <b>antes</b> do código include_once (sugerido anteriormente):"
1879
 
 
1880
  #: core/controllers/field_groups.php:353
1881
- #@ acf
1882
  msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
1883
  msgstr "Todas as ações & filtros sofreram alterações significativas para tornar a personalização do ACF ainda mai fácil! "
1884
 
 
1885
  #: core/fields/relationship.php:436
1886
- #@ acf
1887
  msgid "Filter by post type"
1888
  msgstr "Filtrar por tipo de post"
1889
 
 
1890
  #: core/fields/relationship.php:425
1891
- #@ acf
1892
  msgid "Search..."
1893
  msgstr "Pesquisar..."
1894
 
 
1895
  #: core/api.php:1094
1896
- #@ acf
1897
  msgid "Update"
1898
  msgstr "Atualizar"
1899
 
 
1900
  #: core/api.php:1095
1901
- #@ acf
1902
  msgid "Post updated"
1903
  msgstr "Post atualizado"
1904
 
 
1905
  #: core/controllers/export.php:352
1906
- #@ acf
1907
  msgid ""
1908
  "/**\n"
1909
  " * Install Add-ons\n"
@@ -1935,291 +1837,267 @@ msgstr ""
1935
  " * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/\n"
1936
  " */"
1937
 
 
1938
  #: core/controllers/field_group.php:707
1939
- #@ default
1940
  msgid "Publish"
1941
  msgstr "Publicar"
1942
 
 
1943
  #: core/controllers/field_group.php:708
1944
- #@ default
1945
  msgid "Pending Review"
1946
  msgstr "Revisão Pendente"
1947
 
 
1948
  #: core/controllers/field_group.php:709
1949
- #@ default
1950
  msgid "Draft"
1951
  msgstr "Rascunho"
1952
 
 
1953
  #: core/controllers/field_group.php:710
1954
- #@ default
1955
  msgid "Future"
1956
  msgstr "Futuro"
1957
 
 
1958
  #: core/controllers/field_group.php:711
1959
- #@ default
1960
  msgid "Private"
1961
  msgstr "Privado"
1962
 
 
1963
  #: core/controllers/field_group.php:712
1964
- #@ default
1965
  msgid "Revision"
1966
  msgstr "Revisão"
1967
 
 
1968
  #: core/controllers/field_group.php:713
1969
- #@ default
1970
  msgid "Trash"
1971
  msgstr "Lixeira"
1972
 
 
1973
  #: core/controllers/field_group.php:726
1974
- #@ default
1975
  msgid "Super Admin"
1976
  msgstr "Super Admin"
1977
 
 
1978
  #: core/controllers/field_groups.php:369
1979
- #@ acf
1980
  msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
1981
  msgstr "Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas mudanças, reverta para a última versão"
1982
 
 
1983
  #: core/controllers/input.php:519
1984
- #@ acf
1985
  msgid "Expand Details"
1986
  msgstr "Expandir Detalhes"
1987
 
 
1988
  #: core/controllers/input.php:520
1989
- #@ acf
1990
  msgid "Collapse Details"
1991
  msgstr "Recolher Detalhes"
1992
 
 
1993
  #: core/controllers/upgrade.php:139
1994
- #@ acf
1995
  msgid "What's new"
1996
  msgstr "O que há de novo"
1997
 
 
1998
  #: core/controllers/upgrade.php:150
1999
- #@ acf
2000
  msgid "credits"
2001
  msgstr "créditos"
2002
 
2003
- #: core/fields/email.php:107
2004
- #: core/fields/number.php:117
2005
- #: core/fields/text.php:117
2006
- #: core/fields/textarea.php:97
2007
  #: core/fields/wysiwyg.php:172
2008
- #@ acf
2009
  msgid "Appears when creating a new post"
2010
  msgstr "Aparece quando é criado o novo post"
2011
 
2012
- #: core/fields/email.php:123
2013
- #: core/fields/number.php:133
2014
- #: core/fields/password.php:105
2015
- #: core/fields/text.php:131
2016
  #: core/fields/textarea.php:111
2017
- #@ acf
2018
  msgid "Placeholder Text"
2019
  msgstr "Texto Placeholder"
2020
 
2021
- #: core/fields/email.php:124
2022
- #: core/fields/number.php:134
2023
- #: core/fields/password.php:106
2024
- #: core/fields/text.php:132
2025
  #: core/fields/textarea.php:112
2026
- #@ acf
2027
  msgid "Appears within the input"
2028
  msgstr "Texto que aparecerá dentro do campo (até que algo seja digitado)"
2029
 
2030
- #: core/fields/email.php:138
2031
- #: core/fields/number.php:148
2032
- #: core/fields/password.php:120
2033
- #: core/fields/text.php:146
2034
- #@ acf
2035
  msgid "Prepend"
2036
  msgstr "Prefixo"
2037
 
2038
- #: core/fields/email.php:139
2039
- #: core/fields/number.php:149
2040
- #: core/fields/password.php:121
2041
- #: core/fields/text.php:147
2042
- #@ acf
2043
  msgid "Appears before the input"
2044
  msgstr "Texto que aparecerá antes do campo"
2045
 
2046
- #: core/fields/email.php:153
2047
- #: core/fields/number.php:163
2048
- #: core/fields/password.php:135
2049
- #: core/fields/text.php:161
2050
- #@ acf
2051
  msgid "Append"
2052
  msgstr "Sufixo"
2053
 
2054
- #: core/fields/email.php:154
2055
- #: core/fields/number.php:164
2056
- #: core/fields/password.php:136
2057
- #: core/fields/text.php:162
2058
- #@ acf
2059
  msgid "Appears after the input"
2060
  msgstr "Texto que aparecerá após o campo"
2061
 
 
2062
  #: core/fields/file.php:27
2063
- #@ acf
2064
  msgid "Edit File"
2065
  msgstr "Editar Arquivo"
2066
 
2067
- #: core/fields/file.php:29
2068
- #: core/fields/image.php:30
2069
- #@ acf
2070
  msgid "uploaded to this post"
2071
  msgstr "anexada a este post"
2072
 
2073
- #: core/fields/file.php:175
2074
- #: core/fields/image.php:158
2075
- #@ acf
2076
  msgid "Library"
2077
  msgstr "Biblioteca"
2078
 
2079
- #: core/fields/file.php:187
2080
- #: core/fields/image.php:171
2081
- #@ acf
2082
  msgid "Uploaded to post"
2083
  msgstr "Anexado ao post"
2084
 
 
2085
  #: core/fields/image.php:28
2086
- #@ acf
2087
  msgid "Edit Image"
2088
  msgstr "Editar Imagem"
2089
 
2090
- #: core/fields/image.php:119
2091
- #: core/fields/relationship.php:570
2092
- #@ acf
2093
  msgid "Specify the returned value on front end"
2094
  msgstr "Especifique a forma com os valores serão retornados no front-end"
2095
 
 
2096
  #: core/fields/image.php:140
2097
- #@ acf
2098
  msgid "Shown when entering data"
2099
  msgstr "Exibido ao inserir os dados"
2100
 
 
2101
  #: core/fields/image.php:159
2102
- #@ acf
2103
  msgid "Limit the media library choice"
2104
  msgstr "Determinar a escolha da biblioteca de mídia"
2105
 
 
2106
  #: core/fields/number.php:178
2107
- #@ acf
2108
  msgid "Minimum Value"
2109
  msgstr "Valor Mínimo"
2110
 
 
2111
  #: core/fields/number.php:194
2112
- #@ acf
2113
  msgid "Maximum Value"
2114
  msgstr "Valor Máximo"
2115
 
 
2116
  #: core/fields/number.php:210
2117
- #@ acf
2118
  msgid "Step Size"
2119
  msgstr "Tamanho das frações"
2120
 
 
2121
  #: core/fields/radio.php:172
2122
- #@ acf
2123
  msgid "Add 'other' choice to allow for custom values"
2124
  msgstr "Adicionar uma opção 'Outro' (que irá permitir a inserção de valores personalizados)"
2125
 
 
2126
  #: core/fields/radio.php:184
2127
- #@ acf
2128
  msgid "Save 'other' values to the field's choices"
2129
  msgstr "Salvar os valores personalizados inseridos na opção 'Outros' na lista de escolhas"
2130
 
 
2131
  #: core/fields/relationship.php:569
2132
- #@ acf
2133
  msgid "Return Format"
2134
  msgstr "Formato dos Dados"
2135
 
 
2136
  #: core/fields/relationship.php:580
2137
- #@ acf
2138
  msgid "Post Objects"
2139
  msgstr "Objetos dos Posts"
2140
 
 
2141
  #: core/fields/relationship.php:581
2142
- #@ acf
2143
  msgid "Post IDs"
2144
  msgstr "IDs dos Posts"
2145
 
 
2146
  #: core/fields/tab.php:68
2147
- #@ acf
2148
  msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings."
2149
  msgstr "Utilize o campo \"Aba\" para organizar melhor sua tela de edição, agrupando seus campos em diferentes guias."
2150
 
 
2151
  #: core/fields/tab.php:69
2152
- #@ acf
2153
  msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together."
2154
  msgstr "Todos os campos que seguirem este campo \"Aba\" (ou até que outra \"Aba\" seja definida) ficarão agrupados."
2155
 
 
2156
  #: core/fields/tab.php:70
2157
- #@ acf
2158
  msgid "Use multiple tabs to divide your fields into sections."
2159
  msgstr "Aproveite para utilizar várias guias e dividir seus campos em seções."
2160
 
2161
- #: core/fields/text.php:177
2162
- #: core/fields/textarea.php:142
2163
- #@ acf
2164
- msgid "Effects value on front end"
2165
  msgstr "Valor dos efeitos no front-end"
2166
 
2167
- #: core/fields/text.php:186
2168
- #: core/fields/textarea.php:151
2169
- #@ acf
2170
  msgid "No formatting"
2171
  msgstr "Sem formatação"
2172
 
2173
- #: core/fields/text.php:187
2174
- #: core/fields/textarea.php:153
2175
- #@ acf
2176
  msgid "Convert HTML into tags"
2177
  msgstr "Converter HTML em tags"
2178
 
2179
- #: core/fields/text.php:195
2180
- #: core/fields/textarea.php:126
2181
- #@ acf
2182
  msgid "Character Limit"
2183
  msgstr "Limite de Caracteres"
2184
 
2185
- #: core/fields/text.php:196
2186
- #: core/fields/textarea.php:127
2187
- #@ acf
2188
  msgid "Leave blank for no limit"
2189
  msgstr "Deixe em branco para nenhum limite"
2190
 
 
2191
  #: core/fields/textarea.php:152
2192
- #@ acf
2193
  msgid "Convert new lines into &lt;br /&gt; tags"
2194
  msgstr "Converter novas linhas em tags &lt;br /&gt;"
2195
 
 
2196
  #: core/views/meta_box_fields.php:66
2197
- #@ acf
2198
  msgid "Field group title is required"
2199
  msgstr "O título do grupo de campos é obrigatório"
2200
 
 
2201
  #: core/views/meta_box_location.php:88
2202
- #@ acf
2203
  msgid "Post Status"
2204
  msgstr "Status do Post"
2205
 
 
2206
  #: core/views/meta_box_location.php:92
2207
- #@ acf
2208
  msgid "Attachment"
2209
  msgstr "Anexo"
2210
 
 
2211
  #: core/views/meta_box_location.php:93
2212
- #@ acf
2213
  msgid "Term"
2214
  msgstr "Termo"
2215
 
 
2216
  #: core/views/meta_box_options.php:52
2217
- #@ acf
2218
  msgid "High (after title)"
2219
  msgstr "Superior (depois do título)"
2220
 
 
2221
  #: core/views/meta_box_options.php:53
2222
- #@ acf
2223
  msgid "Normal (after content)"
2224
  msgstr "Normal (depois do editor de conteúdo)"
2225
-
3
  "Project-Id-Version: Advanced Custom Fields v4.2.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
6
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
7
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: Augusto Simão <augusto@ams.art.br>\n"
9
+ "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.1\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
 
19
 
20
+ # @ acf
21
+ # @ default
22
+ #: acf.php:459 core/views/meta_box_options.php:98
 
23
  msgid "Custom Fields"
24
  msgstr "Campos Personalizados"
25
 
26
+ # @ acf
27
  #: core/controllers/upgrade.php:86
 
28
  msgid "Upgrade"
29
  msgstr "Atualizar"
30
 
31
+ # @ acf
32
+ #: core/controllers/field_group.php:375 core/controllers/field_group.php:437
33
  #: core/controllers/field_groups.php:148
 
34
  msgid "Fields"
35
  msgstr "Campos"
36
 
37
+ # @ acf
38
  #: core/controllers/field_group.php:376
 
39
  msgid "Location"
40
  msgstr "Local"
41
 
42
+ # @ acf
43
  #: core/controllers/field_group.php:377
 
44
  msgid "Options"
45
  msgstr "Opções"
46
 
47
+ # @ acf
48
  #: core/controllers/input.php:523
 
49
  msgid "Validation Failed. One or more fields below are required."
50
  msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios."
51
 
52
+ # @ acf
53
  #: core/controllers/field_group.php:630
 
54
  msgid "Default Template"
55
  msgstr "Modelo Padrão"
56
 
57
+ # @ acf
58
  #: core/actions/export.php:30
 
59
  msgid "No ACF groups selected"
60
  msgstr "Nenhum grupo ACF selecionado"
61
 
62
+ # @ acf
63
+ #: acf.php:343 core/controllers/field_groups.php:214
 
64
  msgid "Advanced Custom Fields"
65
  msgstr "Advanced Custom Fields"
66
 
67
+ # @ acf
68
  #: acf.php:342
 
69
  msgid "Field&nbsp;Groups"
70
  msgstr "Grupos&nbsp;de&nbsp;Campos"
71
 
72
+ # @ acf
73
  #: acf.php:344
 
74
  msgid "Add New"
75
  msgstr "Adicionar Novo"
76
 
77
+ # @ acf
78
  #: acf.php:345
 
79
  msgid "Add New Field Group"
80
  msgstr "Adicionar Novo Grupo de Campos"
81
 
82
+ # @ acf
83
  #: acf.php:346
 
84
  msgid "Edit Field Group"
85
  msgstr "Editar Grupo de Campos"
86
 
87
+ # @ acf
88
  #: acf.php:347
 
89
  msgid "New Field Group"
90
  msgstr "Novo Grupo de Campos"
91
 
92
+ # @ acf
93
  #: acf.php:348
 
94
  msgid "View Field Group"
95
  msgstr "Ver Grupo de Campos"
96
 
97
+ # @ acf
98
  #: acf.php:349
 
99
  msgid "Search Field Groups"
100
  msgstr "Pesquisar Grupos de Campos"
101
 
102
+ # @ acf
103
  #: acf.php:350
 
104
  msgid "No Field Groups found"
105
  msgstr "Nenhum Grupo de Campos encontrado"
106
 
107
+ # @ acf
108
  #: acf.php:351
 
109
  msgid "No Field Groups found in Trash"
110
  msgstr "Nenhum Grupo de Campos encontrado na Lixeira"
111
 
112
+ # @ acf
113
+ #: acf.php:477 acf.php:480
 
114
  msgid "Field group updated."
115
  msgstr "Grupo de campos atualizado."
116
 
117
+ # @ acf
118
  #: acf.php:478
 
119
  msgid "Custom field updated."
120
  msgstr "Campo personalizado atualizado."
121
 
122
+ # @ acf
123
  #: acf.php:479
 
124
  msgid "Custom field deleted."
125
  msgstr "Campo personalizado excluído."
126
 
127
+ # @ acf
128
  #. translators: %s: date and time of the revision
129
  #: acf.php:482
130
  #, php-format
 
131
  msgid "Field group restored to revision from %s"
132
  msgstr "Grupo de campos restaurado para revisão de %s"
133
 
134
+ # @ acf
135
  #: acf.php:483
 
136
  msgid "Field group published."
137
  msgstr "Grupo de campos publicado."
138
 
139
+ # @ acf
140
  #: acf.php:484
 
141
  msgid "Field group saved."
142
  msgstr "Grupo de campos salvo."
143
 
144
+ # @ acf
145
  #: acf.php:485
 
146
  msgid "Field group submitted."
147
  msgstr "Grupo de campos enviado."
148
 
149
+ # @ acf
150
  #: acf.php:486
 
151
  msgid "Field group scheduled for."
152
  msgstr "Grupo de campos agendado."
153
 
154
+ # @ acf
155
  #: acf.php:487
 
156
  msgid "Field group draft updated."
157
  msgstr "Rascunho de grupo de campos atualizado."
158
 
159
+ # @ default
160
  #: core/controllers/field_groups.php:147
 
161
  msgid "Title"
162
  msgstr "Título"
163
 
164
+ # @ acf
165
  #: core/views/meta_box_fields.php:24
 
166
  msgid "New Field"
167
  msgstr "Novo Campo"
168
 
169
+ # @ acf
170
  #: core/views/meta_box_fields.php:63
 
171
  msgid "Move to trash. Are you sure?"
172
  msgstr "Mover para a lixeira. Você tem certeza?"
173
 
174
+ # @ acf
175
  #: core/views/meta_box_fields.php:88
 
176
  msgid "Field Order"
177
  msgstr "Ordem do Campo"
178
 
179
+ # @ acf
180
+ #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
 
181
  msgid "Field Label"
182
  msgstr "Rótulo do Campo"
183
 
184
+ # @ acf
185
+ #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
 
186
  msgid "Field Name"
187
  msgstr "Nome do Campo"
188
 
189
+ # @ acf
190
+ #: core/fields/taxonomy.php:306 core/fields/user.php:251
191
+ #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173
 
 
192
  msgid "Field Type"
193
  msgstr "Tipo de Campo"
194
 
195
+ # @ acf
196
  #: core/views/meta_box_fields.php:104
 
197
  msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
198
  msgstr "Nenhum campo. Clique no botão <strong>+ Adicionar Campo</strong> para criar seu primeiro campo."
199
 
200
+ # @ acf
201
+ #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
 
202
  msgid "Edit this Field"
203
  msgstr "Editar este Campo"
204
 
205
+ # @ acf
206
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:122
 
207
  msgid "Edit"
208
  msgstr "Editar"
209
 
210
+ # @ acf
211
  #: core/views/meta_box_fields.php:123
 
212
  msgid "Read documentation for this field"
213
  msgstr "Ler a documentação para esse campo"
214
 
215
+ # @ acf
216
  #: core/views/meta_box_fields.php:123
 
217
  msgid "Docs"
218
  msgstr "Docs"
219
 
220
+ # @ acf
221
  #: core/views/meta_box_fields.php:124
 
222
  msgid "Duplicate this Field"
223
  msgstr "Duplicar este Campo"
224
 
225
+ # @ acf
226
  #: core/views/meta_box_fields.php:124
 
227
  msgid "Duplicate"
228
  msgstr "Duplicar"
229
 
230
+ # @ acf
231
  #: core/views/meta_box_fields.php:125
 
232
  msgid "Delete this Field"
233
  msgstr "Excluir este Campo"
234
 
235
+ # @ acf
236
  #: core/views/meta_box_fields.php:125
 
237
  msgid "Delete"
238
  msgstr "Excluir"
239
 
240
+ # @ acf
241
  #: core/views/meta_box_fields.php:142
 
242
  msgid "This is the name which will appear on the EDIT page"
243
  msgstr "Este é o nome que irá aparecer na página de EDIÇÃO"
244
 
245
+ # @ acf
246
  #: core/views/meta_box_fields.php:158
 
247
  msgid "Single word, no spaces. Underscores and dashes allowed"
248
  msgstr "Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos"
249
 
250
+ # @ acf
251
  #: core/views/meta_box_fields.php:187
 
252
  msgid "Field Instructions"
253
  msgstr "Instruções do Campo"
254
 
255
+ # @ acf
256
  #: core/views/meta_box_fields.php:188
 
257
  msgid "Instructions for authors. Shown when submitting data"
258
  msgstr "Instrução para os autores. Exibido quando se está enviando dados"
259
 
260
+ # @ acf
261
  #: core/views/meta_box_fields.php:200
 
262
  msgid "Required?"
263
  msgstr "Obrigatório?"
264
 
265
+ # @ acf
266
  #: core/views/meta_box_fields.php:317
 
267
  msgid "Close Field"
268
  msgstr "Fechar Campo"
269
 
270
+ # @ acf
271
  #: core/views/meta_box_fields.php:330
 
272
  msgid "Drag and drop to reorder"
273
  msgstr "Clique e arraste para reorganizar"
274
 
275
+ # @ acf
276
  #: core/views/meta_box_fields.php:331
 
277
  msgid "+ Add Field"
278
  msgstr "+ Adicionar Campo"
279
 
280
+ # @ acf
281
  #: core/views/meta_box_location.php:48
 
282
  msgid "Rules"
283
  msgstr "Regras"
284
 
285
+ # @ acf
286
  #: core/views/meta_box_location.php:49
 
287
  msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
288
  msgstr "Criar um conjunto de regras para determinar quais telas de edição irão utilizar esses campos avançados."
289
 
290
+ # @ acf
291
+ #: core/fields/_base.php:124 core/views/meta_box_location.php:74
 
292
  msgid "Basic"
293
  msgstr "Básico"
294
 
295
+ # @ acf
296
+ #: core/fields/page_link.php:103 core/fields/post_object.php:268
297
+ #: core/fields/relationship.php:589 core/fields/relationship.php:668
 
298
  #: core/views/meta_box_location.php:75
 
299
  msgid "Post Type"
300
  msgstr "Tipo de Post"
301
 
302
+ # @ acf
303
  #: core/views/meta_box_location.php:76
 
304
  msgid "Logged in User Type"
305
  msgstr "Tipo de Usuário Logado"
306
 
307
+ # @ acf
308
+ #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
 
309
  msgid "Page"
310
  msgstr "Página"
311
 
312
+ # @ acf
313
  #: core/views/meta_box_location.php:80
 
314
  msgid "Page Type"
315
  msgstr "Tipo de Página"
316
 
317
+ # @ acf
318
  #: core/views/meta_box_location.php:81
 
319
  msgid "Page Parent"
320
  msgstr "Página Mãe"
321
 
322
+ # @ acf
323
  #: core/views/meta_box_location.php:82
 
324
  msgid "Page Template"
325
  msgstr "Modelo de Página"
326
 
327
+ # @ acf
328
+ #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
 
329
  msgid "Post"
330
  msgstr "Post"
331
 
332
+ # @ acf
333
  #: core/views/meta_box_location.php:86
 
334
  msgid "Post Category"
335
  msgstr "Categoria de Post"
336
 
337
+ # @ acf
338
  #: core/views/meta_box_location.php:87
 
339
  msgid "Post Format"
340
  msgstr "Formato de Post"
341
 
342
+ # @ acf
343
  #: core/views/meta_box_location.php:89
 
344
  msgid "Post Taxonomy"
345
  msgstr "Taxonomia de Post"
346
 
347
+ # @ acf
348
+ #: core/fields/radio.php:102 core/views/meta_box_location.php:91
 
349
  msgid "Other"
350
  msgstr "Outro"
351
 
352
+ # @ acf
353
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:448
 
354
  msgid "Options Page"
355
  msgstr "Página de Opções"
356
 
357
+ # @ acf
358
+ #: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:117
 
359
  msgid "is equal to"
360
  msgstr "é igual a"
361
 
362
+ # @ acf
363
+ #: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:118
 
364
  msgid "is not equal to"
365
  msgstr "não é igual a"
366
 
367
+ # @ acf
368
  #: core/views/meta_box_fields.php:299
 
369
  msgid "all"
370
  msgstr "todas"
371
 
372
+ # @ acf
373
  #: core/views/meta_box_fields.php:300
 
374
  msgid "any"
375
  msgstr "quaisquer"
376
 
377
+ # @ acf
378
  #: core/views/meta_box_options.php:25
 
379
  msgid "Order No."
380
  msgstr "No. de Ordem"
381
 
382
+ # @ acf
383
  #: core/views/meta_box_options.php:42
 
384
  msgid "Position"
385
  msgstr "Posição"
386
 
387
+ # @ acf
388
  #: core/views/meta_box_options.php:54
 
389
  msgid "Side"
390
  msgstr "Lateral"
391
 
392
+ # @ acf
393
  #: core/views/meta_box_options.php:64
 
394
  msgid "Style"
395
  msgstr "Estilo"
396
 
397
+ # @ acf
398
  #: core/views/meta_box_options.php:75
 
399
  msgid "Standard Metabox"
400
  msgstr "Metabox Padrão"
401
 
402
+ # @ acf
403
  #: core/views/meta_box_options.php:74
 
404
  msgid "No Metabox"
405
  msgstr "Sem Metabox"
406
 
407
+ # @ acf
408
  #: core/views/meta_box_options.php:96
 
409
  msgid "Content Editor"
410
  msgstr "Editor de Conteúdo"
411
 
412
+ # @ default
413
  #: core/views/meta_box_options.php:99
 
414
  msgid "Discussion"
415
  msgstr "Discussão"
416
 
417
+ # @ default
418
  #: core/views/meta_box_options.php:100
 
419
  msgid "Comments"
420
  msgstr "Comentários"
421
 
422
+ # @ default
423
  #: core/views/meta_box_options.php:102
 
424
  msgid "Slug"
425
  msgstr "Slug"
426
 
427
+ # @ default
428
  #: core/views/meta_box_options.php:103
 
429
  msgid "Author"
430
  msgstr "Autor"
431
 
432
+ # @ acf
433
+ #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
 
434
  msgid "Changelog"
435
  msgstr "Changelog"
436
 
437
+ # @ acf
438
  #: core/controllers/field_groups.php:217
 
439
  msgid "See what's new in"
440
  msgstr "Veja o que há de novo na"
441
 
442
+ # @ acf
443
  #: core/controllers/field_groups.php:219
 
444
  msgid "Resources"
445
  msgstr "Recursos (em inglês)"
446
 
447
+ # @ acf
448
  #: core/controllers/field_groups.php:232
 
449
  msgid "Created by"
450
  msgstr "Criado por"
451
 
452
+ # @ acf
453
  #: core/controllers/field_groups.php:235
 
454
  msgid "Vote"
455
  msgstr "Votar"
456
 
457
+ # @ acf
458
  #: core/controllers/field_groups.php:236
 
459
  msgid "Follow"
460
  msgstr "Seguir"
461
 
462
+ # @ acf
463
  #: core/controllers/field_groups.php:424
 
464
  msgid "Activation Code"
465
  msgstr "Código de Ativação"
466
 
467
+ # @ acf
468
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
 
469
  msgid "Repeater Field"
470
  msgstr "Campo Repetidor"
471
 
472
+ # @ acf
473
  #: core/controllers/addons.php:151
 
474
  msgid "Flexible Content Field"
475
  msgstr "Campo de Conteúdo Flexível"
476
 
477
+ # @ acf
478
  #: core/controllers/export.php:253
 
479
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
480
  msgstr "O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin de importação nativo do WP."
481
 
482
+ # @ acf
483
  #: core/controllers/export.php:259
 
484
  msgid "Install WP import plugin if prompted"
485
  msgstr "Instale o plugin de importação do WP se necessário"
486
 
487
+ # @ acf
488
  #: core/controllers/export.php:260
 
489
  msgid "Upload and import your exported .xml file"
490
  msgstr "Faça o upload e importe o arquivo .xml exportado"
491
 
492
+ # @ acf
493
  #: core/controllers/export.php:261
 
494
  msgid "Select your user and ignore Import Attachments"
495
  msgstr "Selecione o seu usuário e ignore a Importação de Anexos"
496
 
497
+ # @ acf
498
  #: core/controllers/export.php:262
 
499
  msgid "That's it! Happy WordPressing"
500
  msgstr "É isso! Feliz WordPressing"
501
 
502
+ # @ acf
503
  #: core/controllers/export.php:295
 
504
  msgid "Export Field Groups to PHP"
505
  msgstr "Exportar Grupos de Campos para PHP"
506
 
507
+ # @ acf
508
+ #: core/controllers/export.php:273 core/controllers/export.php:302
 
509
  msgid "Copy the PHP code generated"
510
  msgstr "Copie o código PHP gerado"
511
 
512
+ # @ acf
513
+ #: core/controllers/export.php:274 core/controllers/export.php:303
 
514
  msgid "Paste into your functions.php file"
515
  msgstr "Cole no seu arquivo functions.php"
516
 
517
+ # @ acf
518
+ #: core/controllers/export.php:275 core/controllers/export.php:304
 
519
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
520
  msgstr "Para ativar qualquer Complemento, edite e utilize o código que estão nas linhas iniciais."
521
 
522
+ # @ acf
523
  #: core/controllers/export.php:426
 
524
  msgid "No field groups were selected"
525
  msgstr "Nenhum grupo de campos foi selecionado"
526
 
527
+ # @ acf
528
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
 
529
  msgid "Checkbox"
530
  msgstr "Checkbox"
531
 
532
+ # @ acf
533
+ #: core/fields/checkbox.php:137 core/fields/radio.php:144
534
  #: core/fields/select.php:177
 
535
  msgid "Choices"
536
  msgstr "Escolhas"
537
 
538
+ # @ acf
539
  #: core/fields/radio.php:145
 
540
  msgid "Enter your choices one per line"
541
  msgstr "Digite cada uma de suas opções em uma nova linha."
542
 
543
+ # @ acf
544
  #: core/fields/radio.php:147
 
545
  msgid "Red"
546
  msgstr "Vermelho"
547
 
548
+ # @ acf
549
  #: core/fields/radio.php:148
 
550
  msgid "Blue"
551
  msgstr "Azul"
552
 
553
+ # @ acf
554
+ #: core/fields/checkbox.php:140 core/fields/radio.php:150
555
  #: core/fields/select.php:180
 
556
  msgid "red : Red"
557
  msgstr "vermelho : Vermelho"
558
 
559
+ # @ acf
560
+ #: core/fields/checkbox.php:140 core/fields/radio.php:151
561
  #: core/fields/select.php:180
 
562
  msgid "blue : Blue"
563
  msgstr "azul : Azul"
564
 
565
+ # @ acf
566
  #: core/fields/color_picker.php:19
 
567
  msgid "Color Picker"
568
  msgstr "Seletor de Cor"
569
 
570
+ # @ acf
571
  #: core/fields/date_picker/date_picker.php:22
 
572
  msgid "Date Picker"
573
  msgstr "Seletor de Datas"
574
 
575
+ # @ acf
576
  #: core/fields/file.php:19
 
577
  msgid "File"
578
  msgstr "Arquivo"
579
 
580
+ # @ acf
581
  #: core/fields/file.php:123
 
582
  msgid "No File Selected"
583
  msgstr "Nenhum Arquivo Selecionado"
584
 
585
+ # @ acf
586
  #: core/fields/file.php:123
 
587
  msgid "Add File"
588
  msgstr "Adicionar Arquivo"
589
 
590
+ # @ acf
591
+ #: core/fields/file.php:153 core/fields/image.php:118
592
  #: core/fields/taxonomy.php:365
 
593
  msgid "Return Value"
594
  msgstr "Valor Retornado"
595
 
596
+ # @ acf
597
  #: core/fields/file.php:26
 
598
  msgid "Select File"
599
  msgstr "Selecionar Arquivo"
600
 
601
+ # @ acf
602
  #: core/controllers/field_groups.php:456
 
603
  msgid "Flexible Content"
604
  msgstr "Conteúdo Flexível"
605
 
606
+ # @ acf
607
+ #: core/fields/checkbox.php:174 core/fields/message.php:20
608
+ #: core/fields/radio.php:209 core/fields/tab.php:20
 
 
609
  msgid "Layout"
610
  msgstr "Layout"
611
 
612
+ # @ acf
613
  #: core/controllers/field_groups.php:423
 
614
  msgid "Name"
615
  msgstr "Nome"
616
 
617
+ # @ acf
618
  #: core/fields/image.php:19
 
619
  msgid "Image"
620
  msgstr "Imagem"
621
 
622
+ # @ acf
623
  #: core/fields/image.php:90
 
624
  msgid "No image selected"
625
  msgstr "Nenhuma imagem selecionada"
626
 
627
+ # @ acf
628
  #: core/fields/image.php:90
 
629
  msgid "Add Image"
630
  msgstr "Adicionar Imagem"
631
 
632
+ # @ acf
633
  #: core/fields/image.php:130
 
634
  msgid "Image URL"
635
  msgstr "URL da Imagem"
636
 
637
+ # @ acf
638
  #: core/fields/image.php:139
 
639
  msgid "Preview Size"
640
  msgstr "Tamanho da Pré-visualização"
641
 
642
+ # @ acf
643
  #: acf.php:622
 
644
  msgid "Thumbnail"
645
  msgstr "Miniatura"
646
 
647
+ # @ acf
648
  #: acf.php:623
 
649
  msgid "Medium"
650
  msgstr "Média"
651
 
652
+ # @ acf
653
  #: acf.php:624
 
654
  msgid "Large"
655
  msgstr "Grande"
656
 
657
+ # @ acf
658
  #: acf.php:625
 
659
  msgid "Full"
660
  msgstr "Completo"
661
 
662
+ # @ acf
663
  #: core/fields/image.php:27
 
664
  msgid "Select Image"
665
  msgstr "Selecionar Imagem"
666
 
667
+ # @ acf
668
  #: core/fields/page_link.php:18
 
669
  msgid "Page Link"
670
  msgstr "Link da Página"
671
 
672
+ # @ acf
673
+ #: core/fields/select.php:18 core/fields/select.php:109
674
+ #: core/fields/taxonomy.php:322 core/fields/user.php:266
 
 
675
  msgid "Select"
676
  msgstr "Seleção"
677
 
678
+ # @ acf
679
+ #: core/controllers/field_group.php:741 core/controllers/field_group.php:762
680
+ #: core/controllers/field_group.php:769 core/fields/file.php:186
681
+ #: core/fields/image.php:170 core/fields/page_link.php:109
682
+ #: core/fields/post_object.php:274 core/fields/post_object.php:298
683
+ #: core/fields/relationship.php:595 core/fields/relationship.php:619
 
 
 
 
684
  #: core/fields/user.php:229
 
685
  msgid "All"
686
  msgstr "Todos"
687
 
688
+ # @ acf
689
+ #: core/fields/page_link.php:127 core/fields/post_object.php:317
690
+ #: core/fields/select.php:214 core/fields/taxonomy.php:331
 
691
  #: core/fields/user.php:275
 
692
  msgid "Allow Null?"
693
  msgstr "Permitir Nulo?"
694
 
695
+ # @ acf
696
+ #: core/controllers/field_group.php:441 core/fields/page_link.php:137
697
+ #: core/fields/page_link.php:158 core/fields/post_object.php:327
698
+ #: core/fields/post_object.php:348 core/fields/select.php:223
699
+ #: core/fields/select.php:242 core/fields/taxonomy.php:340
700
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:228
701
+ #: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231
 
 
 
 
 
 
702
  msgid "Yes"
703
  msgstr "Sim"
704
 
705
+ # @ acf
706
+ #: core/controllers/field_group.php:440 core/fields/page_link.php:138
707
+ #: core/fields/page_link.php:159 core/fields/post_object.php:328
708
+ #: core/fields/post_object.php:349 core/fields/select.php:224
709
+ #: core/fields/select.php:243 core/fields/taxonomy.php:341
710
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:229
711
+ #: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232
 
 
 
 
 
 
712
  msgid "No"
713
  msgstr "Não"
714
 
715
+ # @ acf
716
+ #: core/fields/page_link.php:148 core/fields/post_object.php:338
717
  #: core/fields/select.php:233
 
718
  msgid "Select multiple values?"
719
  msgstr "Selecionar vários valores?"
720
 
721
+ # @ acf
722
  #: core/fields/post_object.php:18
 
723
  msgid "Post Object"
724
  msgstr "Objeto do Post"
725
 
726
+ # @ acf
727
+ #: core/fields/post_object.php:292 core/fields/relationship.php:613
 
728
  msgid "Filter from Taxonomy"
729
  msgstr "Filtro de Taxonomia"
730
 
731
+ # @ acf
732
  #: core/fields/radio.php:18
 
733
  msgid "Radio Button"
734
  msgstr "Botão de Rádio"
735
 
736
+ # @ acf
737
+ #: core/fields/checkbox.php:157 core/fields/color_picker.php:89
738
+ #: core/fields/email.php:106 core/fields/number.php:116
739
+ #: core/fields/radio.php:193 core/fields/select.php:197
740
+ #: core/fields/text.php:116 core/fields/textarea.php:96
741
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
 
 
 
 
 
742
  msgid "Default Value"
743
  msgstr "Valor Padrão"
744
 
745
+ # @ acf
746
+ #: core/fields/checkbox.php:185 core/fields/radio.php:220
 
747
  msgid "Vertical"
748
  msgstr "Vertical"
749
 
750
+ # @ acf
751
+ #: core/fields/checkbox.php:186 core/fields/radio.php:221
 
752
  msgid "Horizontal"
753
  msgstr "Horizontal"
754
 
755
+ # @ acf
756
  #: core/fields/relationship.php:18
 
757
  msgid "Relationship"
758
  msgstr "Relação"
759
 
760
+ # @ acf
761
  #: core/fields/relationship.php:647
 
762
  msgid "Search"
763
  msgstr "Pesquisa"
764
 
765
+ # @ acf
766
  #: core/fields/relationship.php:679
 
767
  msgid "Maximum posts"
768
  msgstr "Posts máximos"
769
 
770
+ # @ acf
771
  #: core/fields/text.php:19
 
772
  msgid "Text"
773
  msgstr "Texto"
774
 
775
+ # @ acf
776
+ #: core/fields/text.php:176 core/fields/textarea.php:141
 
777
  msgid "Formatting"
778
  msgstr "Formatação"
779
 
780
+ # @ acf
781
+ #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
 
782
  msgid "None"
783
  msgstr "Nenhuma"
784
 
785
+ # @ acf
786
  #: core/fields/textarea.php:19
 
787
  msgid "Text Area"
788
  msgstr "Área de Texto"
789
 
790
+ # @ acf
791
  #: core/fields/true_false.php:19
 
792
  msgid "True / False"
793
  msgstr "Verdadeiro / Falso"
794
 
795
+ # @ acf
796
+ #: core/fields/message.php:19 core/fields/message.php:70
797
  #: core/fields/true_false.php:79
 
798
  msgid "Message"
799
  msgstr "Mensagem"
800
 
801
+ # @ acf
802
  #: core/fields/true_false.php:80
 
803
  msgid "eg. Show extra content"
804
  msgstr "ex.: Mostrar conteúdo adicional"
805
 
806
+ # @ acf
807
  #: core/fields/wysiwyg.php:19
 
808
  msgid "Wysiwyg Editor"
809
  msgstr "Editor Wysiwyg"
810
 
811
+ # @ acf
812
  #: core/fields/wysiwyg.php:186
 
813
  msgid "Toolbar"
814
  msgstr "Barra de Ferramentas"
815
 
816
+ # @ acf
817
  #: core/fields/wysiwyg.php:218
 
818
  msgid "Show Media Upload Buttons?"
819
  msgstr "Mostrar Botões de Upload de Mídia?"
820
 
821
+ # @ acf
822
+ #: core/actions/export.php:23 core/views/meta_box_fields.php:58
 
823
  msgid "Error"
824
  msgstr "Erro"
825
 
826
+ # @ acf
827
+ #: core/controllers/addons.php:42 core/controllers/export.php:368
828
  #: core/controllers/field_groups.php:311
 
829
  msgid "Add-ons"
830
  msgstr "Complementos"
831
 
832
+ # @ acf
833
  #: core/controllers/addons.php:131
 
834
  msgid "Create infinite rows of repeatable data with this versatile interface!"
835
  msgstr "Através desta versátil interface é prossível criar infinitas linhas de dados repetitíveis!"
836
 
837
+ # @ acf
838
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
 
839
  msgid "Gallery Field"
840
  msgstr "Campo de Galeria"
841
 
842
+ # @ acf
843
  #: core/controllers/addons.php:138
 
844
  msgid "Create image galleries in a simple and intuitive interface!"
845
  msgstr "Cria galerias de imagens em uma interface simples e intuitiva!"
846
 
847
+ # @ acf
848
  #: core/controllers/addons.php:145
 
849
  msgid "Create global data to use throughout your website!"
850
  msgstr "Cria dados globais para serem usados em todo o seu site!"
851
 
852
+ # @ acf
853
  #: core/controllers/addons.php:152
 
854
  msgid "Create unique designs with a flexible content layout manager!"
855
  msgstr "Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!"
856
 
857
+ # @ acf
858
  #: core/controllers/addons.php:161
 
859
  msgid "Gravity Forms Field"
860
  msgstr "Campo Gravity Forms"
861
 
862
+ # @ acf
863
  #: core/controllers/addons.php:162
 
864
  msgid "Creates a select field populated with Gravity Forms!"
865
  msgstr "Cria um campo de seleção preenchido com Gravity Forms!"
866
 
867
+ # @ acf
868
  #: core/controllers/addons.php:168
 
869
  msgid "Date & Time Picker"
870
  msgstr "Seletor de Data e Hora"
871
 
872
+ # @ acf
873
  #: core/controllers/addons.php:169
 
874
  msgid "jQuery date & time picker"
875
  msgstr "Seletor jQuery de data e hora"
876
 
877
+ # @ acf
878
  #: core/controllers/addons.php:175
 
879
  msgid "Location Field"
880
  msgstr "Campo de Localização"
881
 
882
+ # @ acf
883
  #: core/controllers/addons.php:176
 
884
  msgid "Find addresses and coordinates of a desired location"
885
  msgstr "Busca endereços e coordenadas de um local desejado"
886
 
887
+ # @ acf
888
  #: core/controllers/addons.php:182
 
889
  msgid "Contact Form 7 Field"
890
  msgstr "Campo Contact Form 7"
891
 
892
+ # @ acf
893
  #: core/controllers/addons.php:183
 
894
  msgid "Assign one or more contact form 7 forms to a post"
895
  msgstr "Atribui um ou mais formulários Contact Form 7 para um post"
896
 
897
+ # @ acf
898
  #: core/controllers/addons.php:193
 
899
  msgid "Advanced Custom Fields Add-Ons"
900
  msgstr "Complementos do Advanced Custom Fields"
901
 
902
+ # @ acf
903
  #: core/controllers/addons.php:196
 
904
  msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
905
  msgstr "Os Complementos a seguir estão disponíveis para ampliar as funcionalidades do plugin Advanced Custom Fields."
906
 
907
+ # @ acf
908
  #: core/controllers/addons.php:197
 
909
  msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
910
  msgstr "Cada Complemento pode ser instalado como um plugin separado (recebendo atualizações) ou pode ser incluído em seu tema (sem atualizações)."
911
 
912
+ # @ acf
913
+ #: core/controllers/addons.php:219 core/controllers/addons.php:240
 
914
  msgid "Installed"
915
  msgstr "Instalado"
916
 
917
+ # @ acf
918
  #: core/controllers/addons.php:221
 
919
  msgid "Purchase & Install"
920
  msgstr "Comprar & Instalar"
921
 
922
+ # @ acf
923
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
924
+ #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
925
+ #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
 
 
 
926
  msgid "Download"
927
  msgstr "Download"
928
 
929
+ # @ acf
930
+ #: core/controllers/export.php:50 core/controllers/export.php:159
 
931
  msgid "Export"
932
  msgstr "Exportar"
933
 
934
+ # @ acf
935
  #: core/controllers/export.php:216
 
936
  msgid "Export Field Groups"
937
  msgstr "Exportar Grupos de Campos"
938
 
939
+ # @ acf
940
  #: core/controllers/export.php:221
 
941
  msgid "Field Groups"
942
  msgstr "Grupos de Campos"
943
 
944
+ # @ acf
945
  #: core/controllers/export.php:222
 
946
  msgid "Select the field groups to be exported"
947
  msgstr "Selecione os grupos de campos para serem exportados"
948
 
949
+ # @ acf
950
+ #: core/controllers/export.php:239 core/controllers/export.php:252
 
951
  msgid "Export to XML"
952
  msgstr "Exportar como XML"
953
 
954
+ # @ acf
955
+ #: core/controllers/export.php:242 core/controllers/export.php:267
 
956
  msgid "Export to PHP"
957
  msgstr "Exportar como PHP"
958
 
959
+ # @ acf
960
  #: core/controllers/export.php:254
 
961
  msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
962
  msgstr "Os grupos de campos importados <b>irão</b> aparecer na lista de grupos editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP."
963
 
964
+ # @ acf
965
  #: core/controllers/export.php:256
 
966
  msgid "Select field group(s) from the list and click \"Export XML\""
967
  msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\""
968
 
969
+ # @ acf
970
  #: core/controllers/export.php:257
 
971
  msgid "Save the .xml file when prompted"
972
  msgstr "Salvar o arquivo .xml quando solicitado"
973
 
974
+ # @ acf
975
  #: core/controllers/export.php:258
 
976
  msgid "Navigate to Tools &raquo; Import and select WordPress"
977
  msgstr "Navegue até Ferramentas &raquo; Importar e selecione WordPress"
978
 
979
+ # @ acf
980
  #: core/controllers/export.php:268
 
981
  msgid "ACF will create the PHP code to include in your theme."
982
  msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema."
983
 
984
+ # @ acf
985
+ #: core/controllers/export.php:269 core/controllers/export.php:310
 
986
  msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
987
  msgstr "Os grupos de campos registrados <b>não irão</b> aparecer na lista de campos editáveis. Isso pode ser útil para incluir grupos de campos em temas."
988
 
989
+ # @ acf
990
  #: core/controllers/export.php:272
 
991
  msgid "Select field group(s) from the list and click \"Create PHP\""
992
  msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\""
993
 
994
+ # @ acf
995
+ #: core/controllers/export.php:300 core/fields/tab.php:65
 
996
  msgid "Instructions"
997
  msgstr "Instruções"
998
 
999
+ # @ acf
1000
  #: core/controllers/export.php:309
 
1001
  msgid "Notes"
1002
  msgstr "Observações"
1003
 
1004
+ # @ acf
1005
  #: core/controllers/export.php:316
 
1006
  msgid "Include in theme"
1007
  msgstr "Inclusão no tema"
1008
 
1009
+ # @ acf
1010
  #: core/controllers/export.php:317
 
1011
  msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
1012
  msgstr "O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o seguinte código em seu arquivo functions.php"
1013
 
1014
+ # @ acf
1015
  #: core/controllers/export.php:331
 
1016
  msgid "Back to export"
1017
  msgstr "Voltar para a exportação"
1018
 
1019
+ # @ acf
1020
  #: core/controllers/export.php:375
 
1021
  msgid ""
1022
  "/**\n"
1023
  " * Register Field Groups\n"
1033
  " * Você pode editar o array conforme a sua necessidade, entretanto, isso pode resultar em erros caso o array não esteja compatível com o ACF.\n"
1034
  " */"
1035
 
1036
+ # @ acf
1037
  #: core/controllers/field_group.php:439
 
1038
  msgid "Show Field Key:"
1039
  msgstr "Mostrar a Chave do Campo"
1040
 
1041
+ # @ acf
1042
  #: core/controllers/field_group.php:618
 
1043
  msgid "Front Page"
1044
  msgstr "Página Inicial"
1045
 
1046
+ # @ acf
1047
  #: core/controllers/field_group.php:619
 
1048
  msgid "Posts Page"
1049
  msgstr "Página de Posts"
1050
 
1051
+ # @ acf
1052
  #: core/controllers/field_group.php:620
 
1053
  msgid "Top Level Page (parent of 0)"
1054
  msgstr "Página de nível mais alto (sem mãe)"
1055
 
1056
+ # @ acf
1057
  #: core/controllers/field_group.php:621
 
1058
  msgid "Parent Page (has children)"
1059
  msgstr "Página Mãe (tem filhos)"
1060
 
1061
+ # @ acf
1062
  #: core/controllers/field_group.php:622
 
1063
  msgid "Child Page (has parent)"
1064
  msgstr "Página filha (possui mãe)"
1065
 
1066
+ # @ acf
1067
  #: core/controllers/field_groups.php:217
 
1068
  msgid "version"
1069
  msgstr "versão"
1070
 
1071
+ # @ acf
1072
  #: core/controllers/field_groups.php:221
 
1073
  msgid "Getting Started"
1074
  msgstr "Primeiros Passos"
1075
 
1076
+ # @ acf
1077
  #: core/controllers/field_groups.php:222
 
1078
  msgid "Field Types"
1079
  msgstr "Tipos de Campos"
1080
 
1081
+ # @ acf
1082
  #: core/controllers/field_groups.php:223
 
1083
  msgid "Functions"
1084
  msgstr "Funções"
1085
 
1086
+ # @ acf
1087
  #: core/controllers/field_groups.php:224
 
1088
  msgid "Actions"
1089
  msgstr "Ações"
1090
 
1091
+ # @ acf
1092
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:638
 
1093
  msgid "Filters"
1094
  msgstr "Filtros"
1095
 
1096
+ # @ acf
1097
  #: core/controllers/field_groups.php:226
 
1098
  msgid "'How to' guides"
1099
  msgstr "Guias práticos"
1100
 
1101
+ # @ acf
1102
  #: core/controllers/field_groups.php:227
 
1103
  msgid "Tutorials"
1104
  msgstr "Tutoriais"
1105
 
1106
+ # @ acf
1107
  #: core/controllers/field_groups.php:248
 
1108
  msgid "Welcome to Advanced Custom Fields"
1109
  msgstr "Bem-vindo ao Advanced Custom Fields"
1110
 
1111
+ # @ acf
1112
  #: core/controllers/field_groups.php:249
 
1113
  msgid "Thank you for updating to the latest version!"
1114
  msgstr "Ele foi atualizado para a última versão!"
1115
 
1116
+ # @ acf
1117
  #: core/controllers/field_groups.php:249
 
1118
  msgid "is more polished and enjoyable than ever before. We hope you like it."
1119
  msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta."
1120
 
1121
+ # @ acf
1122
  #: core/controllers/field_groups.php:256
 
1123
  msgid "What’s New"
1124
  msgstr "O que há de novo"
1125
 
1126
+ # @ acf
1127
  #: core/controllers/field_groups.php:259
 
1128
  msgid "Download Add-ons"
1129
  msgstr "Fazer download de Complementos"
1130
 
1131
+ # @ acf
1132
  #: core/controllers/field_groups.php:313
 
1133
  msgid "Activation codes have grown into plugins!"
1134
  msgstr "Os códigos de ativação se transformaram em plugins!"
1135
 
1136
+ # @ acf
1137
  #: core/controllers/field_groups.php:314
 
1138
  msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
1139
  msgstr "Os complementos agora são ativados fazendo download e instalando plugins individuais. Embora esses plugins não estejam hospedados no repositório wordpress.org, cada Complemento continuará recebendo as atualizações da maneira habitual."
1140
 
1141
+ # @ acf
1142
  #: core/controllers/field_groups.php:320
 
1143
  msgid "All previous Add-ons have been successfully installed"
1144
  msgstr "Todos os Complementos anteriores foram instalados com sucesso"
1145
 
1146
+ # @ acf
1147
  #: core/controllers/field_groups.php:324
 
1148
  msgid "This website uses premium Add-ons which need to be downloaded"
1149
  msgstr "Este site usa Complementos Premium que precisam ser baixados"
1150
 
1151
+ # @ acf
1152
  #: core/controllers/field_groups.php:324
 
1153
  msgid "Download your activated Add-ons"
1154
  msgstr "Faça o download dos Complementos ativados"
1155
 
1156
+ # @ acf
1157
  #: core/controllers/field_groups.php:329
 
1158
  msgid "This website does not use premium Add-ons and will not be affected by this change."
1159
  msgstr "Este site não utiliza nenhum Complemento Premium e não será afetado por esta mudança."
1160
 
1161
+ # @ acf
1162
  #: core/controllers/field_groups.php:339
 
1163
  msgid "Easier Development"
1164
  msgstr "Desenvolvimento mais fácil"
1165
 
1166
+ # @ acf
1167
  #: core/controllers/field_groups.php:341
 
1168
  msgid "New Field Types"
1169
  msgstr "Novos Tipos de Campos"
1170
 
1171
+ # @ acf
1172
  #: core/controllers/field_groups.php:343
 
1173
  msgid "Taxonomy Field"
1174
  msgstr "Campo de Taxonomia"
1175
 
1176
+ # @ acf
1177
  #: core/controllers/field_groups.php:344
 
1178
  msgid "User Field"
1179
  msgstr "Campo de Usuário"
1180
 
1181
+ # @ acf
1182
  #: core/controllers/field_groups.php:345
 
1183
  msgid "Email Field"
1184
  msgstr "Campo de Email"
1185
 
1186
+ # @ acf
1187
  #: core/controllers/field_groups.php:346
 
1188
  msgid "Password Field"
1189
  msgstr "Campo de Senha"
1190
 
1191
+ # @ acf
1192
  #: core/controllers/field_groups.php:348
 
1193
  msgid "Custom Field Types"
1194
  msgstr "Tipos de Campos Personalizados"
1195
 
1196
+ # @ acf
1197
  #: core/controllers/field_groups.php:349
 
1198
  msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
1199
  msgstr "Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os tipos de campos da versão 3 não são compatíveis com a versão 4."
1200
 
1201
+ # @ acf
1202
  #: core/controllers/field_groups.php:350
 
1203
  msgid "Migrating your field types is easy, please"
1204
  msgstr "Migrar os seus tipos de campos é fácil, "
1205
 
1206
+ # @ acf
1207
  #: core/controllers/field_groups.php:350
 
1208
  msgid "follow this tutorial"
1209
  msgstr "siga este tutorial (em inglês)"
1210
 
1211
+ # @ acf
1212
  #: core/controllers/field_groups.php:350
 
1213
  msgid "to learn more."
1214
  msgstr "para saber mais."
1215
 
1216
+ # @ acf
1217
  #: core/controllers/field_groups.php:352
 
1218
  msgid "Actions &amp; Filters"
1219
  msgstr "Ações &amp; Filtros"
1220
 
1221
+ # @ acf
1222
  #: core/controllers/field_groups.php:353
 
1223
  msgid "read this guide"
1224
  msgstr "Leia este guia (em inglês)"
1225
 
1226
+ # @ acf
1227
  #: core/controllers/field_groups.php:353
 
1228
  msgid "to find the updated naming convention."
1229
  msgstr "para encontrar convenção de nomenclaturas atualizada."
1230
 
1231
+ # @ acf
1232
  #: core/controllers/field_groups.php:355
 
1233
  msgid "Preview draft is now working!"
1234
  msgstr "A visualização de rascunhos agora está funcionando!"
1235
 
1236
+ # @ acf
1237
  #: core/controllers/field_groups.php:356
 
1238
  msgid "This bug has been squashed along with many other little critters!"
1239
  msgstr "Este problema foi liquidado junto com muitos outros bugs!"
1240
 
1241
+ # @ acf
1242
  #: core/controllers/field_groups.php:356
 
1243
  msgid "See the full changelog"
1244
  msgstr "Veja o changelog completo (em inglês)"
1245
 
1246
+ # @ acf
1247
  #: core/controllers/field_groups.php:360
 
1248
  msgid "Important"
1249
  msgstr "Importante"
1250
 
1251
+ # @ acf
1252
  #: core/controllers/field_groups.php:362
 
1253
  msgid "Database Changes"
1254
  msgstr "Alterações do Banco de Dados"
1255
 
1256
+ # @ acf
1257
  #: core/controllers/field_groups.php:363
 
1258
  msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
1259
  msgstr "Não foi feita absolutamente <strong>nenhuma</strong> alteração no banco de dados entre as versões 3 e 4. Isso significa que você pode reverter para a versão 3 sem quaisquer problemas."
1260
 
1261
+ # @ acf
1262
  #: core/controllers/field_groups.php:365
 
1263
  msgid "Potential Issues"
1264
  msgstr "Possíveis Problemas"
1265
 
1266
+ # @ acf
1267
  #: core/controllers/field_groups.php:366
1268
+ msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
 
1269
  msgstr "Em virtude das mudanças significativas que ocorreram com os Complementos, nos tipos de campos e nas ações/filtros, seu site poderá não funcionar corretamente. É importante que você leia todo o guia"
1270
 
1271
+ # @ acf
1272
  #: core/controllers/field_groups.php:366
 
1273
  msgid "Migrating from v3 to v4"
1274
  msgstr "Migrando da v3 para v4 (em inglês)"
1275
 
1276
+ # @ acf
1277
  #: core/controllers/field_groups.php:366
 
1278
  msgid "guide to view the full list of changes."
1279
  msgstr "para ver a lista completa de mudanças."
1280
 
1281
+ # @ acf
1282
  #: core/controllers/field_groups.php:369
 
1283
  msgid "Really Important!"
1284
  msgstr "Muito Importante!"
1285
 
1286
+ # @ acf
1287
  #: core/controllers/field_groups.php:369
 
1288
  msgid "version 3"
1289
  msgstr "versão 3"
1290
 
1291
+ # @ acf
1292
  #: core/controllers/field_groups.php:369
 
1293
  msgid "of this plugin."
1294
  msgstr "disponível deste plugin."
1295
 
1296
+ # @ acf
1297
  #: core/controllers/field_groups.php:374
 
1298
  msgid "Thank You"
1299
  msgstr "Obrigado"
1300
 
1301
+ # @ acf
1302
  #: core/controllers/field_groups.php:375
 
1303
  msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
1304
  msgstr "Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 beta e por todo o apoio que recebi."
1305
 
1306
+ # @ acf
1307
  #: core/controllers/field_groups.php:376
 
1308
  msgid "Without you all, this release would not have been possible!"
1309
  msgstr "Sem vocês este release não seria possível!"
1310
 
1311
+ # @ acf
1312
  #: core/controllers/field_groups.php:380
 
1313
  msgid "Changelog for"
1314
  msgstr "Changelog da versão"
1315
 
1316
+ # @ acf
1317
  #: core/controllers/field_groups.php:396
 
1318
  msgid "Learn more"
1319
  msgstr "Saiba mais"
1320
 
1321
+ # @ acf
1322
  #: core/controllers/field_groups.php:402
 
1323
  msgid "Overview"
1324
  msgstr "Visão geral"
1325
 
1326
+ # @ acf
1327
  #: core/controllers/field_groups.php:404
 
1328
  msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
1329
  msgstr "Antes, todos os Complementos eram desbloqueados através de códigos de ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que todos os Complementos funcionam como plugins separados, que precisam ser baixados invididualmente, instalados e atualizados."
1330
 
1331
+ # @ acf
1332
  #: core/controllers/field_groups.php:406
 
1333
  msgid "This page will assist you in downloading and installing each available Add-on."
1334
  msgstr "Esta página irá te ajudar a fazer o download e a realizar a instalação de cada Complemento disponível."
1335
 
1336
+ # @ acf
1337
  #: core/controllers/field_groups.php:408
 
1338
  msgid "Available Add-ons"
1339
  msgstr "Complementos Disponíveis"
1340
 
1341
+ # @ acf
1342
  #: core/controllers/field_groups.php:410
 
1343
  msgid "The following Add-ons have been detected as activated on this website."
1344
  msgstr "Os seguintes Complementos foram detectados como ativados neste site."
1345
 
1346
+ # @ acf
1347
  #: core/controllers/field_groups.php:466
 
1348
  msgid "Installation"
1349
  msgstr "Instalação"
1350
 
1351
+ # @ acf
1352
  #: core/controllers/field_groups.php:468
 
1353
  msgid "For each Add-on available, please perform the following:"
1354
  msgstr "Para cada Complemento disponível, faça o seguinte:"
1355
 
1356
+ # @ acf
1357
  #: core/controllers/field_groups.php:470
 
1358
  msgid "Download the Add-on plugin (.zip file) to your desktop"
1359
  msgstr "Faça o download do Complemento (arquivo .zip) para a sua área de trabalho"
1360
 
1361
+ # @ acf
1362
  #: core/controllers/field_groups.php:471
 
1363
  msgid "Navigate to"
1364
  msgstr "Navegue para"
1365
 
1366
+ # @ acf
1367
  #: core/controllers/field_groups.php:471
 
1368
  msgid "Plugins > Add New > Upload"
1369
  msgstr "Plugins > Adicionar Novo > Enviar"
1370
 
1371
+ # @ acf
1372
  #: core/controllers/field_groups.php:472
 
1373
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1374
  msgstr "Utilize o uploader para procurar, selecionar e instalar o seu Complemento (arquivo .zip)"
1375
 
1376
+ # @ acf
1377
  #: core/controllers/field_groups.php:473
 
1378
  msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1379
  msgstr "Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'"
1380
 
1381
+ # @ acf
1382
  #: core/controllers/field_groups.php:474
 
1383
  msgid "The Add-on is now installed and activated!"
1384
  msgstr "O Complemento agora está instalado e ativado!"
1385
 
1386
+ # @ acf
1387
  #: core/controllers/field_groups.php:488
 
1388
  msgid "Awesome. Let's get to work"
1389
  msgstr "Fantástico. Vamos trabalhar"
1390
 
1391
+ # @ acf
1392
  #: core/fields/relationship.php:29
 
1393
  msgid "Maximum values reached ( {max} values )"
1394
  msgstr "Quantidade máxima atingida ( {max} item(s) )"
1395
 
1396
+ # @ acf
1397
  #: core/controllers/upgrade.php:684
 
1398
  msgid "Modifying field group options 'show on page'"
1399
  msgstr "Modificando as opções 'exibir na página' do grupo de campos"
1400
 
1401
+ # @ acf
1402
  #: core/controllers/upgrade.php:738
 
1403
  msgid "Modifying field option 'taxonomy'"
1404
  msgstr "Modificando a opção 'taxonomia' do campo"
1405
 
1406
+ # @ acf
1407
  #: core/controllers/upgrade.php:835
 
1408
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1409
  msgstr "Movendo os campos personalizados do usuário de wp_options para wp_usermeta"
1410
 
1411
+ # @ acf
1412
+ #: core/fields/checkbox.php:20 core/fields/radio.php:19
1413
+ #: core/fields/select.php:19 core/fields/true_false.php:20
 
 
1414
  msgid "Choice"
1415
  msgstr "Escolhas"
1416
 
1417
+ # @ acf
1418
+ #: core/fields/checkbox.php:138 core/fields/select.php:178
 
1419
  msgid "Enter each choice on a new line."
1420
  msgstr "Digite cada opção em uma nova linha."
1421
 
1422
+ # @ acf
1423
+ #: core/fields/checkbox.php:139 core/fields/select.php:179
 
1424
  msgid "For more control, you may specify both a value and label like this:"
1425
  msgstr "Para mais controle, você pode especificar tanto os valores quanto os rótulos, como nos exemplos:"
1426
 
1427
+ # @ acf
1428
+ #: core/fields/checkbox.php:158 core/fields/select.php:198
 
1429
  msgid "Enter each default value on a new line"
1430
  msgstr "Digite cada valor padrão em uma nova linha"
1431
 
1432
+ # @ acf
1433
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
1434
  msgid "jQuery"
1435
  msgstr "jQuery"
1436
 
1437
+ # @ acf
1438
  #: core/fields/date_picker/date_picker.php:30
 
1439
  msgid "Done"
1440
  msgstr "Concluído"
1441
 
1442
+ # @ acf
1443
  #: core/fields/date_picker/date_picker.php:31
 
1444
  msgid "Today"
1445
  msgstr "Hoje"
1446
 
1447
+ # @ acf
1448
  #: core/fields/date_picker/date_picker.php:34
 
1449
  msgid "Show a different month"
1450
  msgstr "Mostrar um mês diferente"
1451
 
1452
+ # @ acf
1453
  #: core/fields/date_picker/date_picker.php:105
 
1454
  msgid "Save format"
1455
  msgstr "Formato dos dados"
1456
 
1457
+ # @ acf
1458
  #: core/fields/date_picker/date_picker.php:106
1459
+ msgid "This format will determine the value saved to the database and returned via the API"
 
1460
  msgstr "Este será o formato salvo no banco de dados e depois devolvido através da API"
1461
 
1462
+ # @ acf
1463
  #: core/fields/date_picker/date_picker.php:107
 
1464
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1465
  msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre"
1466
 
1467
+ # @ acf
1468
  #: core/fields/date_picker/date_picker.php:107
1469
  #: core/fields/date_picker/date_picker.php:123
 
1470
  msgid "jQuery date formats"
1471
  msgstr "formatos de data jQuery"
1472
 
1473
+ # @ acf
1474
  #: core/fields/date_picker/date_picker.php:121
 
1475
  msgid "Display format"
1476
  msgstr "Formato de exibição"
1477
 
1478
+ # @ acf
1479
  #: core/fields/date_picker/date_picker.php:122
 
1480
  msgid "This format will be seen by the user when entering a value"
1481
  msgstr "Este é o formato que será visto pelo usuário quando um valor for digitado"
1482
 
1483
+ # @ acf
1484
  #: core/fields/date_picker/date_picker.php:123
 
1485
  msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1486
  msgstr "\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. Leia mais sobre"
1487
 
1488
+ # @ acf
1489
  #: core/fields/date_picker/date_picker.php:137
 
1490
  msgid "Week Starts On"
1491
  msgstr "Semana começa em"
1492
 
1493
+ # @ default
1494
  #: core/fields/dummy.php:19
 
1495
  msgid "Dummy"
1496
  msgstr "Dummy"
1497
 
1498
+ # @ acf
1499
  #: core/fields/email.php:19
 
1500
  msgid "Email"
1501
  msgstr "Email"
1502
 
1503
+ # @ acf
1504
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
 
 
1505
  msgid "Content"
1506
  msgstr "Conteúdo"
1507
 
1508
+ # @ acf
1509
  #: core/fields/image.php:83
 
1510
  msgid "Remove"
1511
  msgstr "Remover"
1512
 
1513
+ # @ acf
1514
  #: core/fields/file.php:164
 
1515
  msgid "File Object"
1516
  msgstr "Objeto do Arquivo"
1517
 
1518
+ # @ acf
1519
  #: core/fields/file.php:165
 
1520
  msgid "File URL"
1521
  msgstr "URL do Arquivo"
1522
 
1523
+ # @ acf
1524
  #: core/fields/file.php:166
 
1525
  msgid "File ID"
1526
  msgstr "ID do Arquivo"
1527
 
1528
+ # @ acf
1529
  #: core/fields/file.php:28
 
1530
  msgid "Update File"
1531
  msgstr "Atualizar Arquivo"
1532
 
1533
+ # @ acf
1534
  #: core/fields/image.php:129
 
1535
  msgid "Image Object"
1536
  msgstr "Objeto da Imagem"
1537
 
1538
+ # @ acf
1539
  #: core/fields/image.php:131
 
1540
  msgid "Image ID"
1541
  msgstr "ID da Imagem"
1542
 
1543
+ # @ acf
1544
  #: core/fields/image.php:29
 
1545
  msgid "Update Image"
1546
  msgstr "Atualizar Imagem"
1547
 
1548
+ # @ acf
1549
  #: core/fields/message.php:71
 
1550
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1551
  msgstr "O Texto &amp; HTML digitados aqui irão aparecer em linha, como os campos"
1552
 
1553
+ # @ acf
1554
  #: core/fields/message.php:72
 
1555
  msgid "Please note that all text will first be passed through the wp function "
1556
  msgstr "Antes, todo o texto irá passar pela função "
1557
 
1558
+ # @ acf
1559
  #: core/fields/number.php:19
 
1560
  msgid "Number"
1561
  msgstr "Número"
1562
 
1563
+ # @ acf
1564
+ #: core/fields/page_link.php:19 core/fields/post_object.php:19
1565
+ #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
 
1566
  #: core/fields/user.php:19
 
1567
  msgid "Relational"
1568
  msgstr "Relacional"
1569
 
1570
+ # @ acf
1571
  #: core/fields/password.php:19
 
1572
  msgid "Password"
1573
  msgstr "Senha"
1574
 
1575
+ # @ acf
1576
  #: core/fields/relationship.php:648
 
1577
  msgid "Post Type Select"
1578
  msgstr "Seleção de Tipos de Post"
1579
 
1580
+ # @ acf
1581
  #: core/fields/relationship.php:656
 
1582
  msgid "Elements"
1583
  msgstr "Elementos"
1584
 
1585
+ # @ acf
1586
  #: core/fields/relationship.php:657
 
1587
  msgid "Selected elements will be displayed in each result"
1588
  msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro"
1589
 
1590
+ # @ acf
1591
  #: core/fields/relationship.php:667
 
1592
  msgid "Post Title"
1593
  msgstr "Título do Post"
1594
 
1595
+ # @ acf
1596
  #: core/fields/tab.php:19
 
1597
  msgid "Tab"
1598
  msgstr "Aba"
1599
 
1600
+ # @ acf
1601
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
 
1602
  msgid "Taxonomy"
1603
  msgstr "Taxonomia"
1604
 
1605
+ # @ acf
1606
+ #: core/fields/taxonomy.php:316 core/fields/user.php:260
 
1607
  msgid "Multiple Values"
1608
  msgstr "Vários valores"
1609
 
1610
+ # @ acf
1611
+ #: core/fields/taxonomy.php:318 core/fields/user.php:262
 
1612
  msgid "Multi Select"
1613
  msgstr "Seleção Múltipla"
1614
 
1615
+ # @ acf
1616
+ #: core/fields/taxonomy.php:320 core/fields/user.php:264
 
1617
  msgid "Single Value"
1618
  msgstr "Um único valor"
1619
 
1620
+ # @ acf
1621
  #: core/fields/taxonomy.php:321
 
1622
  msgid "Radio Buttons"
1623
  msgstr "Botões de Rádio"
1624
 
1625
+ # @ acf
1626
  #: core/fields/taxonomy.php:350
 
1627
  msgid "Load & Save Terms to Post"
1628
  msgstr "Carregar & Salvar Termos do Post"
1629
 
1630
+ # @ acf
1631
  #: core/fields/taxonomy.php:358
 
1632
  msgid "Load value based on the post's terms and update the post's terms on save"
1633
  msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar."
1634
 
1635
+ # @ acf
1636
  #: core/fields/taxonomy.php:375
 
1637
  msgid "Term Object"
1638
  msgstr "Objeto do Termo"
1639
 
1640
+ # @ acf
1641
  #: core/fields/taxonomy.php:376
 
1642
  msgid "Term ID"
1643
  msgstr "ID do Termo"
1644
 
1645
+ # @ acf
1646
+ #: core/fields/user.php:18 core/views/meta_box_location.php:94
 
1647
  msgid "User"
1648
  msgstr "Usuário"
1649
 
1650
+ # @ acf
1651
  #: core/fields/user.php:224
 
1652
  msgid "Filter by role"
1653
  msgstr "Filtrar por função"
1654
 
1655
+ # @ acf
1656
  #: core/views/meta_box_fields.php:58
 
1657
  msgid "Field type does not exist"
1658
  msgstr "Tipo de campo não existe"
1659
 
1660
+ # @ acf
1661
  #: core/views/meta_box_fields.php:64
 
1662
  msgid "checked"
1663
  msgstr "selecionado"
1664
 
1665
+ # @ acf
1666
  #: core/views/meta_box_fields.php:65
 
1667
  msgid "No toggle fields available"
1668
  msgstr "Não há campos de alternância disponíveis"
1669
 
1670
+ # @ acf
1671
  #: core/views/meta_box_fields.php:67
 
1672
  msgid "copy"
1673
  msgstr "copiar"
1674
 
1675
+ # @ acf
1676
  #: core/views/meta_box_fields.php:92
 
1677
  msgid "Field Key"
1678
  msgstr "Chave do Campo"
1679
 
1680
+ # @ acf
1681
  #: core/views/meta_box_fields.php:223
 
1682
  msgid "Conditional Logic"
1683
  msgstr "Condições para exibição"
1684
 
1685
+ # @ acf
1686
  #: core/views/meta_box_fields.php:293
 
1687
  msgid "Show this field when"
1688
  msgstr "Mostrar este campo se"
1689
 
1690
+ # @ acf
1691
  #: core/views/meta_box_fields.php:303
 
1692
  msgid "these rules are met"
1693
  msgstr "regras forem atendidas"
1694
 
1695
+ # @ acf
1696
  #: core/views/meta_box_location.php:60
 
1697
  msgid "Show this field group if"
1698
  msgstr "Mostrar este grupo de campos se"
1699
 
1700
+ # @ acf
1701
+ #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1702
  #: core/views/meta_box_location.php:159
 
1703
  msgid "or"
1704
  msgstr "ou"
1705
 
1706
+ # @ acf
1707
  #: core/views/meta_box_location.php:146
 
1708
  msgid "and"
1709
  msgstr "e"
1710
 
1711
+ # @ acf
1712
  #: core/views/meta_box_location.php:161
 
1713
  msgid "Add rule group"
1714
  msgstr "Adicionar grupo de regras"
1715
 
1716
+ # @ acf
1717
  #: core/views/meta_box_options.php:26
 
1718
  msgid "Field groups are created in order <br />from lowest to highest"
1719
  msgstr "Grupos de campo são criados na ordem <br />do menor para o maior valor"
1720
 
1721
+ # @ acf
1722
  #: core/views/meta_box_options.php:84
 
1723
  msgid "Hide on screen"
1724
  msgstr "Ocultar na tela"
1725
 
1726
+ # @ acf
1727
  #: core/views/meta_box_options.php:85
 
1728
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1729
  msgstr "<b>Selecione</b> os itens deverão ser <b>ocultados</b> na tela de edição"
1730
 
1731
+ # @ acf
1732
  #: core/views/meta_box_options.php:86
 
1733
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1734
  msgstr "Se vários grupos de campos aparecem em uma tela de edição, as opções do primeiro grupo de campos é a que será utilizada. (aquele com o menor número de ordem)"
1735
 
1736
+ # @ default
1737
  #: core/views/meta_box_options.php:97
 
1738
  msgid "Excerpt"
1739
  msgstr "Resumo"
1740
 
1741
+ # @ default
1742
  #: core/views/meta_box_options.php:101
 
1743
  msgid "Revisions"
1744
  msgstr "Revisões"
1745
 
1746
+ # @ default
1747
  #: core/views/meta_box_options.php:104
 
1748
  msgid "Format"
1749
  msgstr "Formato"
1750
 
1751
+ # @ acf
1752
+ # @ default
1753
+ #: core/fields/relationship.php:666 core/views/meta_box_options.php:105
 
1754
  msgid "Featured Image"
1755
  msgstr "Imagem Destacada"
1756
 
1757
+ # @ default
1758
  #: core/views/meta_box_options.php:106
 
1759
  msgid "Categories"
1760
  msgstr "Categorias"
1761
 
1762
+ # @ default
1763
  #: core/views/meta_box_options.php:107
 
1764
  msgid "Tags"
1765
  msgstr "Tags"
1766
 
1767
+ # @ default
1768
  #: core/views/meta_box_options.php:108
 
1769
  msgid "Send Trackbacks"
1770
  msgstr "Enviar Trackbacks"
1771
 
1772
+ # @ acf
1773
+ #: core/controllers/export.php:270 core/controllers/export.php:311
 
1774
  msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
1775
  msgstr "Note que se você exportar e registrar os grupos de campos dentro de um mesmo WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, mova o grupo de campos original para a lixeira ou remova o código de seu arquivo functions.php."
1776
 
1777
+ # @ acf
1778
  #: core/controllers/export.php:323
 
1779
  msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1780
  msgstr "Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma constante para habilitar o <i>modo Lite</i>. Adicione o seguinte código em seu arquivo functions.php, <b>antes</b> do código include_once (sugerido anteriormente):"
1781
 
1782
+ # @ acf
1783
  #: core/controllers/field_groups.php:353
 
1784
  msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
1785
  msgstr "Todas as ações & filtros sofreram alterações significativas para tornar a personalização do ACF ainda mai fácil! "
1786
 
1787
+ # @ acf
1788
  #: core/fields/relationship.php:436
 
1789
  msgid "Filter by post type"
1790
  msgstr "Filtrar por tipo de post"
1791
 
1792
+ # @ acf
1793
  #: core/fields/relationship.php:425
 
1794
  msgid "Search..."
1795
  msgstr "Pesquisar..."
1796
 
1797
+ # @ acf
1798
  #: core/api.php:1094
 
1799
  msgid "Update"
1800
  msgstr "Atualizar"
1801
 
1802
+ # @ acf
1803
  #: core/api.php:1095
 
1804
  msgid "Post updated"
1805
  msgstr "Post atualizado"
1806
 
1807
+ # @ acf
1808
  #: core/controllers/export.php:352
 
1809
  msgid ""
1810
  "/**\n"
1811
  " * Install Add-ons\n"
1837
  " * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/\n"
1838
  " */"
1839
 
1840
+ # @ default
1841
  #: core/controllers/field_group.php:707
 
1842
  msgid "Publish"
1843
  msgstr "Publicar"
1844
 
1845
+ # @ default
1846
  #: core/controllers/field_group.php:708
 
1847
  msgid "Pending Review"
1848
  msgstr "Revisão Pendente"
1849
 
1850
+ # @ default
1851
  #: core/controllers/field_group.php:709
 
1852
  msgid "Draft"
1853
  msgstr "Rascunho"
1854
 
1855
+ # @ default
1856
  #: core/controllers/field_group.php:710
 
1857
  msgid "Future"
1858
  msgstr "Futuro"
1859
 
1860
+ # @ default
1861
  #: core/controllers/field_group.php:711
 
1862
  msgid "Private"
1863
  msgstr "Privado"
1864
 
1865
+ # @ default
1866
  #: core/controllers/field_group.php:712
 
1867
  msgid "Revision"
1868
  msgstr "Revisão"
1869
 
1870
+ # @ default
1871
  #: core/controllers/field_group.php:713
 
1872
  msgid "Trash"
1873
  msgstr "Lixeira"
1874
 
1875
+ # @ default
1876
  #: core/controllers/field_group.php:726
 
1877
  msgid "Super Admin"
1878
  msgstr "Super Admin"
1879
 
1880
+ # @ acf
1881
  #: core/controllers/field_groups.php:369
 
1882
  msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
1883
  msgstr "Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas mudanças, reverta para a última versão"
1884
 
1885
+ # @ acf
1886
  #: core/controllers/input.php:519
 
1887
  msgid "Expand Details"
1888
  msgstr "Expandir Detalhes"
1889
 
1890
+ # @ acf
1891
  #: core/controllers/input.php:520
 
1892
  msgid "Collapse Details"
1893
  msgstr "Recolher Detalhes"
1894
 
1895
+ # @ acf
1896
  #: core/controllers/upgrade.php:139
 
1897
  msgid "What's new"
1898
  msgstr "O que há de novo"
1899
 
1900
+ # @ acf
1901
  #: core/controllers/upgrade.php:150
 
1902
  msgid "credits"
1903
  msgstr "créditos"
1904
 
1905
+ # @ acf
1906
+ #: core/fields/email.php:107 core/fields/number.php:117
1907
+ #: core/fields/text.php:117 core/fields/textarea.php:97
 
1908
  #: core/fields/wysiwyg.php:172
 
1909
  msgid "Appears when creating a new post"
1910
  msgstr "Aparece quando é criado o novo post"
1911
 
1912
+ # @ acf
1913
+ #: core/fields/email.php:123 core/fields/number.php:133
1914
+ #: core/fields/password.php:105 core/fields/text.php:131
 
1915
  #: core/fields/textarea.php:111
 
1916
  msgid "Placeholder Text"
1917
  msgstr "Texto Placeholder"
1918
 
1919
+ # @ acf
1920
+ #: core/fields/email.php:124 core/fields/number.php:134
1921
+ #: core/fields/password.php:106 core/fields/text.php:132
 
1922
  #: core/fields/textarea.php:112
 
1923
  msgid "Appears within the input"
1924
  msgstr "Texto que aparecerá dentro do campo (até que algo seja digitado)"
1925
 
1926
+ # @ acf
1927
+ #: core/fields/email.php:138 core/fields/number.php:148
1928
+ #: core/fields/password.php:120 core/fields/text.php:146
 
 
1929
  msgid "Prepend"
1930
  msgstr "Prefixo"
1931
 
1932
+ # @ acf
1933
+ #: core/fields/email.php:139 core/fields/number.php:149
1934
+ #: core/fields/password.php:121 core/fields/text.php:147
 
 
1935
  msgid "Appears before the input"
1936
  msgstr "Texto que aparecerá antes do campo"
1937
 
1938
+ # @ acf
1939
+ #: core/fields/email.php:153 core/fields/number.php:163
1940
+ #: core/fields/password.php:135 core/fields/text.php:161
 
 
1941
  msgid "Append"
1942
  msgstr "Sufixo"
1943
 
1944
+ # @ acf
1945
+ #: core/fields/email.php:154 core/fields/number.php:164
1946
+ #: core/fields/password.php:136 core/fields/text.php:162
 
 
1947
  msgid "Appears after the input"
1948
  msgstr "Texto que aparecerá após o campo"
1949
 
1950
+ # @ acf
1951
  #: core/fields/file.php:27
 
1952
  msgid "Edit File"
1953
  msgstr "Editar Arquivo"
1954
 
1955
+ # @ acf
1956
+ #: core/fields/file.php:29 core/fields/image.php:30
 
1957
  msgid "uploaded to this post"
1958
  msgstr "anexada a este post"
1959
 
1960
+ # @ acf
1961
+ #: core/fields/file.php:175 core/fields/image.php:158
 
1962
  msgid "Library"
1963
  msgstr "Biblioteca"
1964
 
1965
+ # @ acf
1966
+ #: core/fields/file.php:187 core/fields/image.php:171
 
1967
  msgid "Uploaded to post"
1968
  msgstr "Anexado ao post"
1969
 
1970
+ # @ acf
1971
  #: core/fields/image.php:28
 
1972
  msgid "Edit Image"
1973
  msgstr "Editar Imagem"
1974
 
1975
+ # @ acf
1976
+ #: core/fields/image.php:119 core/fields/relationship.php:570
 
1977
  msgid "Specify the returned value on front end"
1978
  msgstr "Especifique a forma com os valores serão retornados no front-end"
1979
 
1980
+ # @ acf
1981
  #: core/fields/image.php:140
 
1982
  msgid "Shown when entering data"
1983
  msgstr "Exibido ao inserir os dados"
1984
 
1985
+ # @ acf
1986
  #: core/fields/image.php:159
 
1987
  msgid "Limit the media library choice"
1988
  msgstr "Determinar a escolha da biblioteca de mídia"
1989
 
1990
+ # @ acf
1991
  #: core/fields/number.php:178
 
1992
  msgid "Minimum Value"
1993
  msgstr "Valor Mínimo"
1994
 
1995
+ # @ acf
1996
  #: core/fields/number.php:194
 
1997
  msgid "Maximum Value"
1998
  msgstr "Valor Máximo"
1999
 
2000
+ # @ acf
2001
  #: core/fields/number.php:210
 
2002
  msgid "Step Size"
2003
  msgstr "Tamanho das frações"
2004
 
2005
+ # @ acf
2006
  #: core/fields/radio.php:172
 
2007
  msgid "Add 'other' choice to allow for custom values"
2008
  msgstr "Adicionar uma opção 'Outro' (que irá permitir a inserção de valores personalizados)"
2009
 
2010
+ # @ acf
2011
  #: core/fields/radio.php:184
 
2012
  msgid "Save 'other' values to the field's choices"
2013
  msgstr "Salvar os valores personalizados inseridos na opção 'Outros' na lista de escolhas"
2014
 
2015
+ # @ acf
2016
  #: core/fields/relationship.php:569
 
2017
  msgid "Return Format"
2018
  msgstr "Formato dos Dados"
2019
 
2020
+ # @ acf
2021
  #: core/fields/relationship.php:580
 
2022
  msgid "Post Objects"
2023
  msgstr "Objetos dos Posts"
2024
 
2025
+ # @ acf
2026
  #: core/fields/relationship.php:581
 
2027
  msgid "Post IDs"
2028
  msgstr "IDs dos Posts"
2029
 
2030
+ # @ acf
2031
  #: core/fields/tab.php:68
 
2032
  msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings."
2033
  msgstr "Utilize o campo \"Aba\" para organizar melhor sua tela de edição, agrupando seus campos em diferentes guias."
2034
 
2035
+ # @ acf
2036
  #: core/fields/tab.php:69
 
2037
  msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together."
2038
  msgstr "Todos os campos que seguirem este campo \"Aba\" (ou até que outra \"Aba\" seja definida) ficarão agrupados."
2039
 
2040
+ # @ acf
2041
  #: core/fields/tab.php:70
 
2042
  msgid "Use multiple tabs to divide your fields into sections."
2043
  msgstr "Aproveite para utilizar várias guias e dividir seus campos em seções."
2044
 
2045
+ # @ acf
2046
+ #: core/fields/text.php:177 core/fields/textarea.php:142
2047
+ msgid "Affects value on front end"
 
2048
  msgstr "Valor dos efeitos no front-end"
2049
 
2050
+ # @ acf
2051
+ #: core/fields/text.php:186 core/fields/textarea.php:151
 
2052
  msgid "No formatting"
2053
  msgstr "Sem formatação"
2054
 
2055
+ # @ acf
2056
+ #: core/fields/text.php:187 core/fields/textarea.php:153
 
2057
  msgid "Convert HTML into tags"
2058
  msgstr "Converter HTML em tags"
2059
 
2060
+ # @ acf
2061
+ #: core/fields/text.php:195 core/fields/textarea.php:126
 
2062
  msgid "Character Limit"
2063
  msgstr "Limite de Caracteres"
2064
 
2065
+ # @ acf
2066
+ #: core/fields/text.php:196 core/fields/textarea.php:127
 
2067
  msgid "Leave blank for no limit"
2068
  msgstr "Deixe em branco para nenhum limite"
2069
 
2070
+ # @ acf
2071
  #: core/fields/textarea.php:152
 
2072
  msgid "Convert new lines into &lt;br /&gt; tags"
2073
  msgstr "Converter novas linhas em tags &lt;br /&gt;"
2074
 
2075
+ # @ acf
2076
  #: core/views/meta_box_fields.php:66
 
2077
  msgid "Field group title is required"
2078
  msgstr "O título do grupo de campos é obrigatório"
2079
 
2080
+ # @ acf
2081
  #: core/views/meta_box_location.php:88
 
2082
  msgid "Post Status"
2083
  msgstr "Status do Post"
2084
 
2085
+ # @ acf
2086
  #: core/views/meta_box_location.php:92
 
2087
  msgid "Attachment"
2088
  msgstr "Anexo"
2089
 
2090
+ # @ acf
2091
  #: core/views/meta_box_location.php:93
 
2092
  msgid "Term"
2093
  msgstr "Termo"
2094
 
2095
+ # @ acf
2096
  #: core/views/meta_box_options.php:52
 
2097
  msgid "High (after title)"
2098
  msgstr "Superior (depois do título)"
2099
 
2100
+ # @ acf
2101
  #: core/views/meta_box_options.php:53
 
2102
  msgid "Normal (after content)"
2103
  msgstr "Normal (depois do editor de conteúdo)"
 
lang/acf-pt_PT.mo CHANGED
Binary file
lang/acf-pt_PT.po CHANGED
@@ -5,15 +5,15 @@ 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: 2015-07-23 11:02+0100\n"
8
- "PO-Revision-Date: 2016-01-07 08:48+0000\n"
9
- "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
10
  "Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
11
  "Language: pt_PT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 1.8.6\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;"
@@ -76,7 +76,7 @@ msgstr "Campo personalizado actualizado."
76
 
77
  #: acf.php:599
78
  msgid "Custom field deleted."
79
- msgstr "Campo personalizado apagado."
80
 
81
  #. translators: %s: date and time of the revision
82
  #: acf.php:602
@@ -412,7 +412,7 @@ msgstr "O título do grupo de campos é obrigatório"
412
 
413
  #: core/controllers/field_group.php:362
414
  msgid "copy"
415
- msgstr "copiar"
416
 
417
  #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
418
  #: core/views/meta_box_location.php:159
@@ -537,7 +537,7 @@ msgstr "Título"
537
 
538
  #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
539
  msgid "Changelog"
540
- msgstr "Changelog"
541
 
542
  #: core/controllers/field_groups.php:217
543
  #, php-format
@@ -735,7 +735,7 @@ msgstr "Possíveis problemas"
735
  #: core/controllers/field_groups.php:362
736
  #, php-format
737
  msgid ""
738
- "Due to the sizable changes surounding Add-ons, field types and action/"
739
  "filters, your website may not operate correctly. It is important that you "
740
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
741
  "changes."
@@ -1133,7 +1133,7 @@ msgstr "Mapa do Google"
1133
 
1134
  #: core/fields/google-map.php:33
1135
  msgid "Locating"
1136
- msgstr "Localizando"
1137
 
1138
  #: core/fields/google-map.php:34
1139
  msgid "Sorry, this browser does not support geolocation"
@@ -1165,7 +1165,7 @@ msgstr "Zoom"
1165
 
1166
  #: core/fields/google-map.php:200
1167
  msgid "Set the initial zoom level"
1168
- msgstr "Definie o nível de zoom inicial"
1169
 
1170
  #: core/fields/google-map.php:217
1171
  msgid "Height"
@@ -1478,7 +1478,7 @@ msgid "Formatting"
1478
  msgstr "Formatação"
1479
 
1480
  #: core/fields/text.php:177 core/fields/textarea.php:165
1481
- msgid "Effects value on front end"
1482
  msgstr "Define o formato do conteúdo na frente do site"
1483
 
1484
  #: core/fields/text.php:186 core/fields/textarea.php:174
@@ -1587,11 +1587,11 @@ msgstr "Duplicar"
1587
 
1588
  #: core/views/meta_box_fields.php:110
1589
  msgid "Delete this Field"
1590
- msgstr "Apagar este campo"
1591
 
1592
  #: core/views/meta_box_fields.php:110
1593
  msgid "Delete"
1594
- msgstr "Apagar"
1595
 
1596
  #: core/views/meta_box_fields.php:127
1597
  msgid "This is the name which will appear on the EDIT page"
@@ -1870,7 +1870,7 @@ msgstr "Enviar trackbacks"
1870
 
1871
  #, fuzzy
1872
  #~ msgid ""
1873
- #~ "Do to the sizable changes surounding 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 ""
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: 2015-07-23 11:02+0100\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.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.1\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;"
76
 
77
  #: acf.php:599
78
  msgid "Custom field deleted."
79
+ msgstr "Campo personalizado eliminado."
80
 
81
  #. translators: %s: date and time of the revision
82
  #: acf.php:602
412
 
413
  #: core/controllers/field_group.php:362
414
  msgid "copy"
415
+ msgstr "cópia"
416
 
417
  #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
418
  #: core/views/meta_box_location.php:159
537
 
538
  #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
539
  msgid "Changelog"
540
+ msgstr "Registo de alterações"
541
 
542
  #: core/controllers/field_groups.php:217
543
  #, php-format
735
  #: core/controllers/field_groups.php:362
736
  #, php-format
737
  msgid ""
738
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
739
  "filters, your website may not operate correctly. It is important that you "
740
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
741
  "changes."
1133
 
1134
  #: core/fields/google-map.php:33
1135
  msgid "Locating"
1136
+ msgstr "A obter localização"
1137
 
1138
  #: core/fields/google-map.php:34
1139
  msgid "Sorry, this browser does not support geolocation"
1165
 
1166
  #: core/fields/google-map.php:200
1167
  msgid "Set the initial zoom level"
1168
+ msgstr "Definir o nível de zoom inicial"
1169
 
1170
  #: core/fields/google-map.php:217
1171
  msgid "Height"
1478
  msgstr "Formatação"
1479
 
1480
  #: core/fields/text.php:177 core/fields/textarea.php:165
1481
+ msgid "Affects value on front end"
1482
  msgstr "Define o formato do conteúdo na frente do site"
1483
 
1484
  #: core/fields/text.php:186 core/fields/textarea.php:174
1587
 
1588
  #: core/views/meta_box_fields.php:110
1589
  msgid "Delete this Field"
1590
+ msgstr "Eliminar este campo"
1591
 
1592
  #: core/views/meta_box_fields.php:110
1593
  msgid "Delete"
1594
+ msgstr "Eliminar"
1595
 
1596
  #: core/views/meta_box_fields.php:127
1597
  msgid "This is the name which will appear on the EDIT page"
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 ""
lang/acf-ru-RU.mo DELETED
Binary file
lang/acf-ru_RU.mo CHANGED
Binary file
lang/acf-ru_RU.po CHANGED
@@ -5,14 +5,14 @@ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-12-03 04:25:56+00:00\n"
8
- "PO-Revision-Date: 2014-01-05 15:33+0100\n"
9
- "Last-Translator: Alex Torscho <contact@alextorscho.com>\n"
10
- "Language-Team: LANGUAGE <LL@li.org>\n"
11
  "Language: ru_RU\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.6.3\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ./acf.pot\n"
18
 
@@ -749,7 +749,7 @@ msgstr "Потенциальные проблемы"
749
 
750
  #: core/controllers/field_groups.php:366
751
  msgid ""
752
- "Do to the sizable changes surounding Add-ons, field types and action/"
753
  "filters, your website may not operate correctly. It is important that you "
754
  "read the full"
755
  msgstr ""
@@ -1023,7 +1023,7 @@ msgstr "Сохранить формат"
1023
 
1024
  #: core/fields/date_picker/date_picker.php:127
1025
  msgid ""
1026
- "This format will determin the value saved to the database and returned via "
1027
  "the API"
1028
  msgstr ""
1029
  "Этот формат определит значение сохраненное в базе данных и возвращенное "
@@ -1509,7 +1509,7 @@ msgid "Formatting"
1509
  msgstr "Форматирование"
1510
 
1511
  #: core/fields/text.php:177 core/fields/textarea.php:142
1512
- msgid "Effects value on front end"
1513
  msgstr "Значение эффектов в пользовательском интерфейсе"
1514
 
1515
  #: core/fields/text.php:186 core/fields/textarea.php:151
5
  "Project-Id-Version: Advanced Custom Fields\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-12-03 04:25:56+00:00\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
+ "Language-Team: \n"
11
  "Language: ru_RU\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ./acf.pot\n"
18
 
749
 
750
  #: core/controllers/field_groups.php:366
751
  msgid ""
752
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
753
  "filters, your website may not operate correctly. It is important that you "
754
  "read the full"
755
  msgstr ""
1023
 
1024
  #: core/fields/date_picker/date_picker.php:127
1025
  msgid ""
1026
+ "This format will determine the value saved to the database and returned via "
1027
  "the API"
1028
  msgstr ""
1029
  "Этот формат определит значение сохраненное в базе данных и возвращенное "
1509
  msgstr "Форматирование"
1510
 
1511
  #: core/fields/text.php:177 core/fields/textarea.php:142
1512
+ msgid "Affects value on front end"
1513
  msgstr "Значение эффектов в пользовательском интерфейсе"
1514
 
1515
  #: core/fields/text.php:186 core/fields/textarea.php:151
lang/acf-sk_SK.mo CHANGED
Binary file
lang/acf-sk_SK.po CHANGED
@@ -2,15 +2,15 @@
2
  # This file is distributed under the same license as the 4.3.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2014-08-28 11:40+0100\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: Poedit 1.6.7\n"
11
  "Project-Id-Version: 4.3.x\n"
12
  "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
  "Language-Team: \n"
15
  "Language: sk\n"
16
 
@@ -735,7 +735,7 @@ msgstr "Potencionálne problémy"
735
 
736
  #: core/controllers/field_groups.php:366
737
  msgid ""
738
- "Do to the sizable changes surounding Add-ons, field types and action/"
739
  "filters, your website may not operate correctly. It is important that you "
740
  "read the full"
741
  msgstr ""
@@ -1008,7 +1008,7 @@ msgstr "Uložiť formát"
1008
 
1009
  #: core/fields/date_picker/date_picker.php:127
1010
  msgid ""
1011
- "This format will determin the value saved to the database and returned via "
1012
  "the API"
1013
  msgstr ""
1014
  "Tento formát určí hodnotu uloženú v databáze a vrátenú hodnotu pomocou API"
@@ -1483,7 +1483,7 @@ msgid "Formatting"
1483
  msgstr "Formátovanie"
1484
 
1485
  #: core/fields/text.php:177 core/fields/textarea.php:142
1486
- msgid "Effects value on front end"
1487
  msgstr "Ovplyvní hodnotu na prednej stránke"
1488
 
1489
  #: core/fields/text.php:186 core/fields/textarea.php:151
2
  # This file is distributed under the same license as the 4.3.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: Poedit 1.8.1\n"
11
  "Project-Id-Version: 4.3.x\n"
12
  "POT-Creation-Date: \n"
13
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
14
  "Language-Team: \n"
15
  "Language: sk\n"
16
 
735
 
736
  #: core/controllers/field_groups.php:366
737
  msgid ""
738
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
739
  "filters, your website may not operate correctly. It is important that you "
740
  "read the full"
741
  msgstr ""
1008
 
1009
  #: core/fields/date_picker/date_picker.php:127
1010
  msgid ""
1011
+ "This format will determine the value saved to the database and returned via "
1012
  "the API"
1013
  msgstr ""
1014
  "Tento formát určí hodnotu uloženú v databáze a vrátenú hodnotu pomocou API"
1483
  msgstr "Formátovanie"
1484
 
1485
  #: core/fields/text.php:177 core/fields/textarea.php:142
1486
+ msgid "Affects value on front end"
1487
  msgstr "Ovplyvní hodnotu na prednej stránke"
1488
 
1489
  #: core/fields/text.php:186 core/fields/textarea.php:151
lang/acf-sr_RS.mo CHANGED
Binary file
lang/acf-sr_RS.po CHANGED
@@ -8,10 +8,11 @@ msgstr ""
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-04-09 10:58+0100\n"
12
- "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
- "X-Generator: Poedit 1.5.7\n"
 
15
 
16
  #: acf.php:455
17
  msgid "Field&nbsp;Groups"
@@ -307,7 +308,7 @@ msgid ""
307
  "Registered field groups <b>will not</b> appear in the list of editable field "
308
  "groups. This is useful for including fields in themes."
309
  msgstr ""
310
- "Registrovano polje grupe <b> neće < / b > se pojviti u listi uredive polja "
311
  "grupa . Ovo je korisno za uključivanje polja u temama ."
312
 
313
  #: core/controllers/export.php:270 core/controllers/export.php:311
@@ -318,7 +319,7 @@ msgid ""
318
  "php file."
319
  msgstr ""
320
  "Imajte na umu da ako eksportujete e i registrujete polja grupe u okviru "
321
- "istog WP, videćete dupliranapolja na stranici Izmena ekrana . Da biste ovo "
322
  "rešili, molim vas pomerite originalno polje grupu u kantu za otpatke ili "
323
  "uklonite kod iz vaše functions.php file."
324
 
@@ -361,7 +362,7 @@ msgid ""
361
  "functions.php file:"
362
  msgstr ""
363
  "Napredna custom polja plugina mogu biti uključeni u temu . Da biste to "
364
- "uradili , pomerite ACF plugin u vašu temu i dodajte sledeći kod na vaš "
365
  "functions.php fajl :"
366
 
367
  #: core/controllers/export.php:323
@@ -371,7 +372,7 @@ msgid ""
371
  "<b>before</b> the include_once code:"
372
  msgstr ""
373
  "Da biste uklonili sve vizuelne interfejse iz ACF plugina , možete da "
374
- "koristite konstanta da biste omogućili lagani režim. Dodajte sledeći kod na "
375
  "svoju functions.php fajl <b> pre < / b >include kod :"
376
 
377
  #: core/controllers/export.php:331
@@ -604,8 +605,8 @@ msgid ""
604
  "each Add-on will continue to receive updates in the usual way."
605
  msgstr ""
606
  "Dodaci su sada aktivirani za preuzimanjei instaliranje pojedinačnih "
607
- "pluginove . Iako ovi pluginovi neće biti na wordpress.org spremištu , svaki "
608
- "dodatak će nastaviti da prima updateove na uobičajen način ."
609
 
610
  #: core/controllers/field_groups.php:316
611
  msgid "All previous Add-ons have been successfully installed"
@@ -728,12 +729,12 @@ msgstr "Potencijalna izdanja"
728
 
729
  #: core/controllers/field_groups.php:362
730
  msgid ""
731
- "Do to the sizable changes surounding Add-ons, field types and action/"
732
  "filters, your website may not operate correctly. It is important that you "
733
  "read the full"
734
  msgstr ""
735
  "Zbog značajnih promena okolnih dodataka , tipova polja i akcionih / "
736
- "filtera , vaš sajt neće raditi pravilno . Važno je da ste pročitali sve"
737
 
738
  #: core/controllers/field_groups.php:362
739
  msgid "Migrating from v3 to v4"
@@ -806,7 +807,7 @@ msgid ""
806
  "This page will assist you in downloading and installing each available Add-"
807
  "on."
808
  msgstr ""
809
- "Ova stranica će vam pomoći u preuzimate i instalirate svaki dostupan "
810
  "dodatak ."
811
 
812
  #: core/controllers/field_groups.php:405
@@ -999,7 +1000,7 @@ msgstr "Sačuvati format"
999
 
1000
  #: core/fields/date_picker/date_picker.php:127
1001
  msgid ""
1002
- "This format will determin the value saved to the database and returned via "
1003
  "the API"
1004
  msgstr ""
1005
  "Ovaj format će odrediti vrednost sačuvanu u bazi podataka i vratiti preko "
@@ -1420,7 +1421,7 @@ msgid ""
1420
  "is defined) will be grouped together."
1421
  msgstr ""
1422
  "Sva polja koja slede ovo \" tab polje \" ( ili dok drugo \" tab polje \" "
1423
- "nije definisano ) će biti grupisana zajedno ."
1424
 
1425
  #: core/fields/tab.php:70
1426
  msgid "Use multiple tabs to divide your fields into sections."
@@ -1483,7 +1484,7 @@ msgid "Formatting"
1483
  msgstr "Formatiranje"
1484
 
1485
  #: core/fields/text.php:177 core/fields/textarea.php:142
1486
- msgid "Effects value on front end"
1487
  msgstr "Vrednost efekata na prednjem kraju"
1488
 
1489
  #: core/fields/text.php:186 core/fields/textarea.php:151
@@ -1780,7 +1781,7 @@ msgid ""
1780
  "If multiple field groups appear on an edit screen, the first field group's "
1781
  "options will be used. (the one with the lowest order number)"
1782
  msgstr ""
1783
- "Ako se više polja grupe pojavljuju na ekranu, prvo polje grupe će se "
1784
  "koristiti . (onaj sa brojem najnižeg reda )"
1785
 
1786
  #: core/views/meta_box_options.php:96
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
12
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
13
+ "Language-Team: \n"
14
+ "Language: sr_RS\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
 
17
  #: acf.php:455
18
  msgid "Field&nbsp;Groups"
308
  "Registered field groups <b>will not</b> appear in the list of editable field "
309
  "groups. This is useful for including fields in themes."
310
  msgstr ""
311
+ "Registrovano polje grupe <b> neće < / b > se pojviti u listi uredive polja "
312
  "grupa . Ovo je korisno za uključivanje polja u temama ."
313
 
314
  #: core/controllers/export.php:270 core/controllers/export.php:311
319
  "php file."
320
  msgstr ""
321
  "Imajte na umu da ako eksportujete e i registrujete polja grupe u okviru "
322
+ "istog WP, videćete dupliranapolja na stranici Izmena ekrana . Da biste ovo "
323
  "rešili, molim vas pomerite originalno polje grupu u kantu za otpatke ili "
324
  "uklonite kod iz vaše functions.php file."
325
 
362
  "functions.php file:"
363
  msgstr ""
364
  "Napredna custom polja plugina mogu biti uključeni u temu . Da biste to "
365
+ "uradili , pomerite ACF plugin u vašu temu i dodajte sledeći kod na vaš "
366
  "functions.php fajl :"
367
 
368
  #: core/controllers/export.php:323
372
  "<b>before</b> the include_once code:"
373
  msgstr ""
374
  "Da biste uklonili sve vizuelne interfejse iz ACF plugina , možete da "
375
+ "koristite konstanta da biste omogućili lagani režim. Dodajte sledeći kod na "
376
  "svoju functions.php fajl <b> pre < / b >include kod :"
377
 
378
  #: core/controllers/export.php:331
605
  "each Add-on will continue to receive updates in the usual way."
606
  msgstr ""
607
  "Dodaci su sada aktivirani za preuzimanjei instaliranje pojedinačnih "
608
+ "pluginove . Iako ovi pluginovi neće biti na wordpress.org spremištu , svaki "
609
+ "dodatak će nastaviti da prima updateove na uobičajen način ."
610
 
611
  #: core/controllers/field_groups.php:316
612
  msgid "All previous Add-ons have been successfully installed"
729
 
730
  #: core/controllers/field_groups.php:362
731
  msgid ""
732
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
733
  "filters, your website may not operate correctly. It is important that you "
734
  "read the full"
735
  msgstr ""
736
  "Zbog značajnih promena okolnih dodataka , tipova polja i akcionih / "
737
+ "filtera , vaš sajt neće raditi pravilno . Važno je da ste pročitali sve"
738
 
739
  #: core/controllers/field_groups.php:362
740
  msgid "Migrating from v3 to v4"
807
  "This page will assist you in downloading and installing each available Add-"
808
  "on."
809
  msgstr ""
810
+ "Ova stranica će vam pomoći u preuzimate i instalirate svaki dostupan "
811
  "dodatak ."
812
 
813
  #: core/controllers/field_groups.php:405
1000
 
1001
  #: core/fields/date_picker/date_picker.php:127
1002
  msgid ""
1003
+ "This format will determine the value saved to the database and returned via "
1004
  "the API"
1005
  msgstr ""
1006
  "Ovaj format će odrediti vrednost sačuvanu u bazi podataka i vratiti preko "
1421
  "is defined) will be grouped together."
1422
  msgstr ""
1423
  "Sva polja koja slede ovo \" tab polje \" ( ili dok drugo \" tab polje \" "
1424
+ "nije definisano ) će biti grupisana zajedno ."
1425
 
1426
  #: core/fields/tab.php:70
1427
  msgid "Use multiple tabs to divide your fields into sections."
1484
  msgstr "Formatiranje"
1485
 
1486
  #: core/fields/text.php:177 core/fields/textarea.php:142
1487
+ msgid "Affects value on front end"
1488
  msgstr "Vrednost efekata na prednjem kraju"
1489
 
1490
  #: core/fields/text.php:186 core/fields/textarea.php:151
1781
  "If multiple field groups appear on an edit screen, the first field group's "
1782
  "options will be used. (the one with the lowest order number)"
1783
  msgstr ""
1784
+ "Ako se više polja grupe pojavljuju na ekranu, prvo polje grupe će se "
1785
  "koristiti . (onaj sa brojem najnižeg reda )"
1786
 
1787
  #: core/views/meta_box_options.php:96
lang/acf-sv_SE.mo CHANGED
Binary file
lang/acf-sv_SE.po CHANGED
@@ -5,14 +5,14 @@ msgstr ""
5
  "Project-Id-Version: Advanced Custom Fields 4.3.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-09-25 22:42+0100\n"
8
- "PO-Revision-Date: 2013-09-25 22:42+0100\n"
9
- "Last-Translator: Mikael Jorhult <mikael@jorhult.se>\n"
10
  "Language-Team: Mikael Jorhult <mikael@jorhult.se>\n"
11
- "Language: Swedish\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
@@ -742,7 +742,7 @@ msgstr "Potentiella problem"
742
 
743
  #: core/controllers/field_groups.php:366
744
  msgid ""
745
- "Do to the sizable changes surounding Add-ons, field types and action/"
746
  "filters, your website may not operate correctly. It is important that you "
747
  "read the full"
748
  msgstr ""
@@ -1419,7 +1419,7 @@ msgid "Formatting"
1419
  msgstr "Formatering"
1420
 
1421
  #: core/fields/text.php:177 core/fields/textarea.php:142
1422
- msgid "Effects value on front end"
1423
  msgstr "Påverkar hur värdet skrivs ut"
1424
 
1425
  #: core/fields/text.php:186 core/fields/textarea.php:151
@@ -1496,7 +1496,7 @@ msgstr "Lagringsformat"
1496
 
1497
  #: core/fields/date_picker/date_picker.php:127
1498
  msgid ""
1499
- "This format will determin the value saved to the database and returned via "
1500
  "the API"
1501
  msgstr ""
1502
  "Detta format avgör hur värdet sparas i databasen och returneras via "
5
  "Project-Id-Version: Advanced Custom Fields 4.3.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2013-09-25 22:42+0100\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Mikael Jorhult <mikael@jorhult.se>\n"
11
+ "Language: sv\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.1\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
742
 
743
  #: core/controllers/field_groups.php:366
744
  msgid ""
745
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
746
  "filters, your website may not operate correctly. It is important that you "
747
  "read the full"
748
  msgstr ""
1419
  msgstr "Formatering"
1420
 
1421
  #: core/fields/text.php:177 core/fields/textarea.php:142
1422
+ msgid "Affects value on front end"
1423
  msgstr "Påverkar hur värdet skrivs ut"
1424
 
1425
  #: core/fields/text.php:186 core/fields/textarea.php:151
1496
 
1497
  #: core/fields/date_picker/date_picker.php:127
1498
  msgid ""
1499
+ "This format will determine the value saved to the database and returned via "
1500
  "the API"
1501
  msgstr ""
1502
  "Detta format avgör hur värdet sparas i databasen och returneras via "
lang/acf-tr_TR.mo CHANGED
Binary file
lang/acf-tr_TR.po CHANGED
@@ -8,10 +8,10 @@ msgstr ""
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-09-29 21:59+0200\n"
12
- "Last-Translator: TrStar <trstar@gmail.com>\n"
13
  "Language-Team: TrStar <trstar@gmail.com>\n"
14
- "X-Generator: Poedit 1.6.9\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "Language: tr_TR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -734,11 +734,11 @@ msgstr "Potansiyel Sorunlar"
734
 
735
  #: core/controllers/field_groups.php:362
736
  msgid ""
737
- "Do to the sizable changes surounding Add-ons, field types and action/"
738
  "filters, your website may not operate correctly. It is important that you "
739
  "read the full"
740
  msgstr ""
741
- "Add-ons, alan türleri ve eylem / filtreleri surounding büyükçe "
742
  "değişiklikleri yapmak, web sitenizin düzgün çalışmayabilir. Bu tam okumanız "
743
  "önemlidir"
744
 
@@ -1004,10 +1004,10 @@ msgstr "Kayıt biçimi"
1004
 
1005
  #: core/fields/date_picker/date_picker.php:127
1006
  msgid ""
1007
- "This format will determin the value saved to the database and returned via "
1008
  "the API"
1009
  msgstr ""
1010
- "Bu biçim API aracılığıyla veritabanına kaydedilir ve iade değerini determin "
1011
  "olacak"
1012
 
1013
  #: core/fields/date_picker/date_picker.php:128
@@ -1490,7 +1490,7 @@ msgid "Formatting"
1490
  msgstr "Biçimlendirme"
1491
 
1492
  #: core/fields/text.php:177 core/fields/textarea.php:142
1493
- msgid "Effects value on front end"
1494
  msgstr "Etki değerleri ön tarafta"
1495
 
1496
  #: core/fields/text.php:186 core/fields/textarea.php:151
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
12
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
13
  "Language-Team: TrStar <trstar@gmail.com>\n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "Language: tr_TR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
734
 
735
  #: core/controllers/field_groups.php:362
736
  msgid ""
737
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
738
  "filters, your website may not operate correctly. It is important that you "
739
  "read the full"
740
  msgstr ""
741
+ "Add-ons, alan türleri ve eylem / filtreleri surrounding büyükçe "
742
  "değişiklikleri yapmak, web sitenizin düzgün çalışmayabilir. Bu tam okumanız "
743
  "önemlidir"
744
 
1004
 
1005
  #: core/fields/date_picker/date_picker.php:127
1006
  msgid ""
1007
+ "This format will determine the value saved to the database and returned via "
1008
  "the API"
1009
  msgstr ""
1010
+ "Bu biçim API aracılığıyla veritabanına kaydedilir ve iade değerini determine "
1011
  "olacak"
1012
 
1013
  #: core/fields/date_picker/date_picker.php:128
1490
  msgstr "Biçimlendirme"
1491
 
1492
  #: core/fields/text.php:177 core/fields/textarea.php:142
1493
+ msgid "Affects value on front end"
1494
  msgstr "Etki değerleri ön tarafta"
1495
 
1496
  #: core/fields/text.php:186 core/fields/textarea.php:151
lang/acf-uk.mo CHANGED
Binary file
lang/acf-uk.po CHANGED
@@ -5,10 +5,10 @@ msgstr ""
5
  "Project-Id-Version: ACF\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2012-10-04 22:38:59+00:00\n"
8
- "PO-Revision-Date: 2013-06-10 19:00-0600\n"
9
- "Last-Translator: Jurko Chervony <info@skinik.name>\n"
10
  "Language-Team: UA WordPress <skinik@wordpress.co.ua>\n"
11
- "Language: Ukrainian\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-Basepath: ..\n"
20
- "X-Generator: Poedit 1.5.5\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  #: acf.php:286 core/views/meta_box_options.php:94
@@ -618,7 +618,7 @@ msgstr "Зберегти формат"
618
 
619
  #: core/fields/date_picker/date_picker.php:107
620
  msgid ""
621
- "This format will determin the value saved to the database and returned via "
622
  "the API"
623
  msgstr ""
624
 
5
  "Project-Id-Version: ACF\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
  "POT-Creation-Date: 2012-10-04 22:38:59+00:00\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: UA WordPress <skinik@wordpress.co.ua>\n"
11
+ "Language: uk\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-Basepath: ..\n"
20
+ "X-Generator: Poedit 1.8.1\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  #: acf.php:286 core/views/meta_box_options.php:94
618
 
619
  #: core/fields/date_picker/date_picker.php:107
620
  msgid ""
621
+ "This format will determine the value saved to the database and returned via "
622
  "the API"
623
  msgstr ""
624
 
lang/acf-zh_CN.mo CHANGED
Binary file
lang/acf-zh_CN.po CHANGED
@@ -5,8 +5,8 @@ msgstr ""
5
  "Project-Id-Version: acf chinese\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-05-11 19:59+0800\n"
8
- "PO-Revision-Date: 2013-06-10 19:00-0600\n"
9
- "Last-Translator: Amos Lee <4626395@gmail.com>\n"
10
  "Language-Team: Amos Lee <470266798@qq.com>\n"
11
  "Language: zh_CN\n"
12
  "MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  #: ../acf.php:264
@@ -715,7 +715,7 @@ msgstr "潜在问题"
715
 
716
  #: ../core/controllers/field_groups.php:366
717
  msgid ""
718
- "Do to the sizable changes surounding Add-ons, field types and action/"
719
  "filters, your website may not operate correctly. It is important that you "
720
  "read the full"
721
  msgstr ""
@@ -1316,7 +1316,7 @@ msgstr "保存格式"
1316
 
1317
  #: ../core/fields/date_picker/date_picker.php:147
1318
  msgid ""
1319
- "This format will determin the value saved to the database and returned via "
1320
  "the API"
1321
  msgstr "此格式将决定存储在数据库中的值,并通过API返回。"
1322
 
5
  "Project-Id-Version: acf chinese\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-05-11 19:59+0800\n"
8
+ "PO-Revision-Date: 2016-04-04 10:09+1000\n"
9
+ "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
10
  "Language-Team: Amos Lee <470266798@qq.com>\n"
11
  "Language: zh_CN\n"
12
  "MIME-Version: 1.0\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Generator: Poedit 1.8.1\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  #: ../acf.php:264
715
 
716
  #: ../core/controllers/field_groups.php:366
717
  msgid ""
718
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
719
  "filters, your website may not operate correctly. It is important that you "
720
  "read the full"
721
  msgstr ""
1316
 
1317
  #: ../core/fields/date_picker/date_picker.php:147
1318
  msgid ""
1319
+ "This format will determine the value saved to the database and returned via "
1320
  "the API"
1321
  msgstr "此格式将决定存储在数据库中的值,并通过API返回。"
1322
 
lang/acf.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014
2
  # This file is distributed under the same license as the package.
3
  #, fuzzy
4
  msgid ""
@@ -694,7 +694,7 @@ msgstr ""
694
  #: core/controllers/field_groups.php:362
695
  #, php-format
696
  msgid ""
697
- "Due to the sizable changes surounding Add-ons, field types and action/"
698
  "filters, your website may not operate correctly. It is important that you "
699
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
700
  "changes."
@@ -925,7 +925,7 @@ msgstr ""
925
 
926
  #: core/fields/date_picker/date_picker.php:127
927
  msgid ""
928
- "This format will determin the value saved to the database and returned via "
929
  "the API"
930
  msgstr ""
931
 
@@ -1407,7 +1407,7 @@ msgid "Formatting"
1407
  msgstr ""
1408
 
1409
  #: core/fields/text.php:177 core/fields/textarea.php:165
1410
- msgid "Effects value on front end"
1411
  msgstr ""
1412
 
1413
  #: core/fields/text.php:186 core/fields/textarea.php:174
1
+ # Copyright (C) 2014
2
  # This file is distributed under the same license as the package.
3
  #, fuzzy
4
  msgid ""
694
  #: core/controllers/field_groups.php:362
695
  #, php-format
696
  msgid ""
697
+ "Due to the sizable changes surrounding Add-ons, field types and action/"
698
  "filters, your website may not operate correctly. It is important that you "
699
  "read the full %sMigrating from v3 to v4%s guide to view the full list of "
700
  "changes."
925
 
926
  #: core/fields/date_picker/date_picker.php:127
927
  msgid ""
928
+ "This format will determine the value saved to the database and returned via "
929
  "the API"
930
  msgstr ""
931
 
1407
  msgstr ""
1408
 
1409
  #: core/fields/text.php:177 core/fields/textarea.php:165
1410
+ msgid "Affects value on front end"
1411
  msgstr ""
1412
 
1413
  #: core/fields/text.php:186 core/fields/textarea.php:174
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.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -116,6 +116,14 @@ http://support.advancedcustomfields.com/
116
 
117
  == Changelog ==
118
 
 
 
 
 
 
 
 
 
119
  = 4.4.5=
120
  * Core: Fixed metabox title appearing on seamless field groups
121
  * Language: Updated Portuguese 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.6
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.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)
122
+ * Core: Added support for new WP 4.5 term edit page
123
+ * Language: Updated Portuguese translation - thanks to Pedro Mendonca
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