Advanced Custom Fields - Version 4.3.1

Version Description

  • API: Fixed bug with has_sub_field and have_rows functions causing complicated nested loops to produce incorrect results
  • API: Fixed bug with get_fields function preventing values to be returned from options page and taxonomy terms
  • Core: Fixed bug causing some SQL LIKE statements to not work correctly on windows servers
  • Core: Removed __() wrappers from PHP export, as these did not work as expected
  • Core: Fixed bug with get_pages() causing sort order issue in child page location rule
  • Core: Added specific position to ACF menu item to reduce conflicts with 3rd party plugins
  • JS: Fixed bug where conditional logic rules did not save when added using a '+' button above the last rule
  • Radio field: Fixed bug where 'other' would be selected when no value exists
  • WYSIWYG field: Added support for users with disabled visual editor setting
  • JS: Improved validation for fields that are hidden by a tab
  • Google maps field: Add refresh action when hidden / shown by a tab
Download this release

Release Info

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

Code changes from version 4.3.0 to 4.3.1

acf.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
- Version: 4.3.0
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.3.0',
47
  'upgrade_version' => '3.4.1',
48
  );
49
 
@@ -72,7 +72,7 @@ class acf
72
 
73
 
74
  // includes
75
- add_action('plugins_loaded', array($this, 'include_before_theme'), 1);
76
  add_action('after_setup_theme', array($this, 'include_after_theme'), 1);
77
 
78
  }
@@ -545,7 +545,7 @@ class acf
545
 
546
  function admin_menu()
547
  {
548
- add_utility_page(__("Custom Fields",'acf'), __("Custom Fields",'acf'), 'manage_options', 'edit.php?post_type=acf');
549
  }
550
 
551
 
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
+ Version: 4.3.1
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.3.1',
47
  'upgrade_version' => '3.4.1',
48
  );
49
 
72
 
73
 
74
  // includes
75
+ $this->include_before_theme();
76
  add_action('after_setup_theme', array($this, 'include_after_theme'), 1);
77
 
78
  }
545
 
546
  function admin_menu()
547
  {
548
+ add_menu_page(__("Custom Fields",'acf'), __("Custom Fields",'acf'), 'manage_options', 'edit.php?post_type=acf', false, false, '80.025');
549
  }
550
 
551
 
core/api.php CHANGED
@@ -94,8 +94,8 @@ function get_field_objects( $post_id = false, $options = array() )
94
  $keys = $wpdb->get_col($wpdb->prepare(
95
  "SELECT meta_value FROM $wpdb->postmeta WHERE post_id = %d and meta_key LIKE %s AND meta_value LIKE %s",
96
  $post_id,
97
- '\_%',
98
- 'field\_%'
99
  ));
100
  }
101
  elseif( strpos($post_id, 'user_') !== false )
@@ -105,15 +105,15 @@ function get_field_objects( $post_id = false, $options = array() )
105
  $keys = $wpdb->get_col($wpdb->prepare(
106
  "SELECT meta_value FROM $wpdb->usermeta WHERE user_id = %d and meta_key LIKE %s AND meta_value LIKE %s",
107
  $user_id,
108
- '\_%',
109
- 'field\_%'
110
  ));
111
  }
112
  else
113
  {
114
  $keys = $wpdb->get_col($wpdb->prepare(
115
- "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s",
116
- '\_' . $post_id . '\_%'
117
  ));
118
  }
119
 
@@ -351,7 +351,10 @@ function have_rows( $field_name, $post_id = false )
351
  $row = array();
352
  $new_parent_loop = false;
353
  $new_child_loop = false;
354
- $no_post_id = (!$post_id) ? true : false;
 
 
 
355
 
356
 
357
  // filter post_id
@@ -375,36 +378,50 @@ function have_rows( $field_name, $post_id = false )
375
  $prev = prev( $GLOBALS['acf_field'] );
376
 
377
 
378
- // detect a change in params?
379
- if( $post_id != $row['post_id'] || $field_name != $row['name'] )
380
  {
381
- // case: previous have_rows loop was terminated early and template is now loading row data from another $post
382
- // case: previous have_rows loop was terminated early and template is now loading row data from another $field_name
383
- // case: nested have_rows loop
384
- $new_parent_loop = true;
385
-
386
- if( isset($row['value'][ $row['i'] ][ $field_name ]) )
 
387
  {
388
- // Inception: Repeater within repeater
389
- // Note: Sit back and enter the next level of dream
390
  $new_child_loop = true;
391
-
392
-
393
- // It is possible that the origional have_rows function used a custom $post_id param, but this sub loop did not use one. If so, remove the potential to create a new parent loop due to the $post_id change!
394
- if( $no_post_id || $post_id == $row['post_id'] )
395
- {
396
- $new_parent_loop = false;
397
- }
398
-
399
  }
400
- elseif( $prev && $prev['name'] == $field_name )
 
 
 
 
 
 
 
 
 
401
  {
402
- // Inception: Ride kick up one level
403
- // Note: This can happen if someone used break or ran out of rows
404
  reset_rows();
405
- $new_parent_loop = false;
406
  }
407
-
 
 
 
 
 
 
 
 
 
 
 
 
 
408
 
409
  }
410
  }
@@ -456,7 +473,7 @@ function have_rows( $field_name, $post_id = false )
456
  }
457
 
458
 
459
- // no newxt row!
460
  reset_rows();
461
 
462
 
@@ -483,6 +500,7 @@ function the_row() {
483
 
484
  // vars
485
  $depth = count( $GLOBALS['acf_field'] ) - 1;
 
486
 
487
 
488
  // increase row
94
  $keys = $wpdb->get_col($wpdb->prepare(
95
  "SELECT meta_value FROM $wpdb->postmeta WHERE post_id = %d and meta_key LIKE %s AND meta_value LIKE %s",
96
  $post_id,
97
+ '_%',
98
+ 'field_%'
99
  ));
100
  }
101
  elseif( strpos($post_id, 'user_') !== false )
105
  $keys = $wpdb->get_col($wpdb->prepare(
106
  "SELECT meta_value FROM $wpdb->usermeta WHERE user_id = %d and meta_key LIKE %s AND meta_value LIKE %s",
107
  $user_id,
108
+ '_%',
109
+ 'field_%'
110
  ));
111
  }
112
  else
113
  {
114
  $keys = $wpdb->get_col($wpdb->prepare(
115
+ "SELECT option_value FROM $wpdb->options WHERE option_name LIKE %s",
116
+ '_' . $post_id . '_%'
117
  ));
118
  }
119
 
351
  $row = array();
352
  $new_parent_loop = false;
353
  $new_child_loop = false;
354
+
355
+
356
+ // reference
357
+ $_post_id = $post_id;
358
 
359
 
360
  // filter post_id
378
  $prev = prev( $GLOBALS['acf_field'] );
379
 
380
 
381
+ // If post_id has changed, this is most likely an archive loop
382
+ if( $post_id != $row['post_id'] )
383
  {
384
+ if( $prev && $prev['post_id'] == $post_id )
385
+ {
386
+ // case: Change in $post_id was due to a nested loop ending
387
+ // action: move up one level through the loops
388
+ reset_rows();
389
+ }
390
+ elseif( empty($_post_id) && isset($row['value'][ $row['i'] ][ $field_name ]) )
391
  {
392
+ // case: Change in $post_id was due to this being a nested loop and not specifying the $post_id
393
+ // action: move down one level into a new loop
394
  $new_child_loop = true;
 
 
 
 
 
 
 
 
395
  }
396
+ else
397
+ {
398
+ // case: Chang in $post_id is the most obvious, used in an WP_Query loop with multiple $post objects
399
+ // action: leave this current loop alone and create a new parent loop
400
+ $new_parent_loop = true;
401
+ }
402
+ }
403
+ elseif( $field_name != $row['name'] )
404
+ {
405
+ if( $prev && $prev['name'] == $field_name )
406
  {
407
+ // case: Change in $field_name was due to a nested loop ending
408
+ // action: move up one level through the loops
409
  reset_rows();
 
410
  }
411
+ elseif( isset($row['value'][ $row['i'] ][ $field_name ]) )
412
+ {
413
+ // case: Change in $field_name was due to this being a nested loop
414
+ // action: move down one level into a new loop
415
+ $new_child_loop = true;
416
+
417
+ }
418
+ else
419
+ {
420
+ // case: Chang in $field_name is the most obvious, this is a new loop for a different field within the $post
421
+ // action: leave this current loop alone and create a new parent loop
422
+ $new_parent_loop = true;
423
+ }
424
+
425
 
426
  }
427
  }
473
  }
474
 
475
 
476
+ // no next row!
477
  reset_rows();
478
 
479
 
500
 
501
  // vars
502
  $depth = count( $GLOBALS['acf_field'] ) - 1;
503
+
504
 
505
 
506
  // increase row
core/controllers/export.php CHANGED
@@ -384,8 +384,8 @@ if(function_exists("register_field_group"))
384
  $html = str_replace("\n", "\n\t", $html);
385
 
386
  // add the WP __() function to specific strings for translation in theme
387
- $html = preg_replace("/'label'(.*?)('.*?')/", "'label'$1__($2)", $html);
388
- $html = preg_replace("/'instructions'(.*?)('.*?')/", "'instructions'$1__($2)", $html);
389
 
390
 
391
  ?> register_field_group(<?php echo $html ?>);
384
  $html = str_replace("\n", "\n\t", $html);
385
 
386
  // add the WP __() function to specific strings for translation in theme
387
+ //$html = preg_replace("/'label'(.*?)('.*?')/", "'label'$1__($2)", $html);
388
+ //$html = preg_replace("/'instructions'(.*?)('.*?')/", "'instructions'$1__($2)", $html);
389
 
390
 
391
  ?> register_field_group(<?php echo $html ?>);
core/controllers/field_group.php CHANGED
@@ -120,7 +120,7 @@ class acf_field_group
120
 
121
 
122
  // get field from postmeta
123
- $rows = $wpdb->get_results( $wpdb->prepare("SELECT meta_key FROM $wpdb->postmeta WHERE post_id = %d AND meta_key LIKE %s", $post_id, 'field\_%'), ARRAY_A);
124
 
125
 
126
  if( $rows )
@@ -584,20 +584,27 @@ class acf_field_group
584
  {
585
  foreach( $post_types as $post_type )
586
  {
587
- $pages = get_pages(array(
588
- 'numberposts' => -1,
589
- 'post_type' => $post_type,
590
- 'sort_column' => 'menu_order',
591
- 'order' => 'ASC',
592
- 'post_status' => array('publish', 'private', 'draft', 'inherit', 'future'),
593
- 'suppress_filters' => false,
 
594
  ));
595
 
596
- if( $pages )
597
  {
598
- $choices[$post_type] = array();
 
 
 
 
 
 
599
 
600
- foreach($pages as $page)
601
  {
602
  $title = '';
603
  $ancestors = get_ancestors($page->ID, 'page');
@@ -840,8 +847,8 @@ class acf_field_group
840
  }
841
 
842
 
843
- $name = 'acf_' . sanitize_title_with_dashes($_POST['post_title']);
844
-
845
 
846
  return $name;
847
  }
120
 
121
 
122
  // get field from postmeta
123
+ $rows = $wpdb->get_results( $wpdb->prepare("SELECT meta_key FROM $wpdb->postmeta WHERE post_id = %d AND meta_key LIKE %s", $post_id, 'field_%'), ARRAY_A);
124
 
125
 
126
  if( $rows )
584
  {
585
  foreach( $post_types as $post_type )
586
  {
587
+ $posts = get_posts(array(
588
+ 'posts_per_page' => -1,
589
+ 'post_type' => $post_type,
590
+ 'orderby' => 'menu_order title',
591
+ 'order' => 'ASC',
592
+ 'post_status' => 'any',
593
+ 'suppress_filters' => false,
594
+ 'update_post_meta_cache' => false,
595
  ));
596
 
597
+ if( $posts )
598
  {
599
+ // sort into hierachial order!
600
+ if( is_post_type_hierarchical( $post_type ) )
601
+ {
602
+ $posts = get_page_children( 0, $posts );
603
+ }
604
+
605
+ $choices[ $post_type ] = array();
606
 
607
+ foreach( $posts as $page )
608
  {
609
  $title = '';
610
  $ancestors = get_ancestors($page->ID, 'page');
847
  }
848
 
849
 
850
+ $name = 'acf_' . sanitize_title($_POST['post_title']);
851
+
852
 
853
  return $name;
854
  }
core/controllers/revisions.php CHANGED
@@ -261,7 +261,7 @@ class acf_revisions
261
  $rows = $wpdb->get_results( $wpdb->prepare(
262
  "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key NOT LIKE %s",
263
  $revision_id,
264
- '\_%'
265
  ), ARRAY_A);
266
 
267
 
261
  $rows = $wpdb->get_results( $wpdb->prepare(
262
  "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key NOT LIKE %s",
263
  $revision_id,
264
+ '_%'
265
  ), ARRAY_A);
266
 
267
 
core/fields/_functions.php CHANGED
@@ -425,6 +425,13 @@ class acf_field_functions
425
  }
426
 
427
 
 
 
 
 
 
 
 
428
  // return
429
  return $field;
430
  }
425
  }
426
 
427
 
428
+ // clean up conditional logic keys
429
+ if( !empty($field['conditional_logic']['rules']) )
430
+ {
431
+ $field['conditional_logic']['rules'] = array_values($field['conditional_logic']['rules']);
432
+ }
433
+
434
+
435
  // return
436
  return $field;
437
  }
core/fields/post_object.php CHANGED
@@ -493,6 +493,13 @@ class acf_field_post_object extends acf_field
493
 
494
  function update_value( $value, $post_id, $field )
495
  {
 
 
 
 
 
 
 
496
  if( is_object($value) && isset($value->ID) )
497
  {
498
  // object
493
 
494
  function update_value( $value, $post_id, $field )
495
  {
496
+ // validate
497
+ if( empty($value) )
498
+ {
499
+ return $value;
500
+ }
501
+
502
+
503
  if( is_object($value) && isset($value->ID) )
504
  {
505
  // object
core/fields/radio.php CHANGED
@@ -92,10 +92,13 @@ class acf_field_radio extends acf_field
92
  $atts2 = 'name="" value="" style="display:none"';
93
 
94
 
95
- if( !isset($field['choices'][ $field['value'] ]) )
96
  {
97
- $atts = 'checked="checked" data-checked="checked"';
98
- $atts2 = 'name="' . esc_attr($field['name']) . '" value="' . esc_attr($field['value']) . '"' ;
 
 
 
99
  }
100
 
101
 
92
  $atts2 = 'name="" value="" style="display:none"';
93
 
94
 
95
+ if( $field['value'] !== false )
96
  {
97
+ if( !isset($field['choices'][ $field['value'] ]) )
98
+ {
99
+ $atts = 'checked="checked" data-checked="checked"';
100
+ $atts2 = 'name="' . esc_attr($field['name']) . '" value="' . esc_attr($field['value']) . '"' ;
101
+ }
102
  }
103
 
104
 
core/fields/relationship.php CHANGED
@@ -870,6 +870,13 @@ class acf_field_relationship extends acf_field
870
 
871
  function update_value( $value, $post_id, $field )
872
  {
 
 
 
 
 
 
 
873
  if( is_string($value) )
874
  {
875
  // string
870
 
871
  function update_value( $value, $post_id, $field )
872
  {
873
+ // validate
874
+ if( empty($value) )
875
+ {
876
+ return $value;
877
+ }
878
+
879
+
880
  if( is_string($value) )
881
  {
882
  // string
core/fields/wysiwyg.php CHANGED
@@ -139,7 +139,7 @@ class acf_field_wysiwyg extends acf_field
139
 
140
  ?>
141
  <div id="wp-<?php echo $id; ?>-wrap" class="acf_wysiwyg wp-editor-wrap" data-toolbar="<?php echo $field['toolbar']; ?>" data-upload="<?php echo $field['media_upload']; ?>">
142
- <?php if($field['media_upload'] == 'yes'): ?>
143
  <?php if( version_compare($wp_version, '3.3', '<') ): ?>
144
  <div id="editor-toolbar">
145
  <div id="media-buttons" class="hide-if-no-js">
@@ -155,7 +155,18 @@ class acf_field_wysiwyg extends acf_field
155
  <?php endif; ?>
156
  <?php endif; ?>
157
  <div id="wp-<?php echo $id; ?>-editor-container" class="wp-editor-container">
158
- <textarea id="<?php echo $id; ?>" class="wp-editor-area" name="<?php echo $field['name']; ?>" ><?php echo wp_richedit_pre($field['value']); ?></textarea>
 
 
 
 
 
 
 
 
 
 
 
159
  </div>
160
  </div>
161
 
139
 
140
  ?>
141
  <div id="wp-<?php echo $id; ?>-wrap" class="acf_wysiwyg wp-editor-wrap" data-toolbar="<?php echo $field['toolbar']; ?>" data-upload="<?php echo $field['media_upload']; ?>">
142
+ <?php if( user_can_richedit() && $field['media_upload'] == 'yes' ): ?>
143
  <?php if( version_compare($wp_version, '3.3', '<') ): ?>
144
  <div id="editor-toolbar">
145
  <div id="media-buttons" class="hide-if-no-js">
155
  <?php endif; ?>
156
  <?php endif; ?>
157
  <div id="wp-<?php echo $id; ?>-editor-container" class="wp-editor-container">
158
+ <textarea id="<?php echo $id; ?>" class="wp-editor-area" name="<?php echo $field['name']; ?>" ><?php
159
+
160
+ if( user_can_richedit() )
161
+ {
162
+ echo wp_richedit_pre( $field['value'] );
163
+ }
164
+ else
165
+ {
166
+ echo wp_htmledit_pre( $field['value'] );
167
+ }
168
+
169
+ ?></textarea>
170
  </div>
171
  </div>
172
 
js/field-group.js CHANGED
@@ -1258,7 +1258,7 @@ var acf = {
1258
  // vars
1259
  var $new_tr = $old_tr.clone(),
1260
  old_i = parseFloat( $old_tr.attr('data-i') ),
1261
- new_i = old_i + 1;
1262
 
1263
 
1264
  // update names
1258
  // vars
1259
  var $new_tr = $old_tr.clone(),
1260
  old_i = parseFloat( $old_tr.attr('data-i') ),
1261
+ new_i = acf.helpers.uniqid();
1262
 
1263
 
1264
  // update names
js/field-group.min.js CHANGED
@@ -5,4 +5,4 @@
5
  *
6
  * @type JS
7
  * @date 1/08/13
8
- */var acf={ajaxurl:"",admin_url:"",post_id:0,nonce:"",l10n:{},text:{},helpers:{uniqid:null,sortable:null,create_field:null},conditional_logic:null,location:null};(function(e){function t(){e("#acf_fields .fields").each(function(){e(this).children(".field").each(function(t){e(this).find("td.field_order .circle").first().html(t+1)})})}e.fn.exists=function(){return e(this).length>0};acf.helpers.sortable=function(t,n){n.children().each(function(){e(this).width(e(this).width())});return n};acf.helpers.uniqid=function(e,t){typeof e=="undefined"&&(e="");var n,r=function(e,t){e=parseInt(e,10).toString(16);return t<e.length?e.slice(e.length-t):t>e.length?Array(1+(t-e.length)).join("0")+e:e};this.php_js||(this.php_js={});this.php_js.uniqidSeed||(this.php_js.uniqidSeed=Math.floor(Math.random()*123456789));this.php_js.uniqidSeed++;n=e;n+=r(parseInt((new Date).getTime()/1e3,10),8);n+=r(this.php_js.uniqidSeed,5);t&&(n+=(Math.random()*10).toFixed(8).toString());return n};e(document).on("submit","#post",function(){var t=e("#titlewrap #title");if(!t.val()){alert(acf.l10n.title);t.focus();return!1}});e(document).on("click","#submit-delete",function(){var e=confirm(acf.l10n.move_to_trash);if(!e)return!1});e(document).on("change","#acf_fields tr.field_type select",function(){var t=e(this),n=t.closest("tbody"),r=n.closest(".field"),i=r.attr("data-type"),s=r.attr("data-id"),o=t.val();r.removeClass("field_type-"+i).addClass("field_type-"+o);r.attr("data-type",o);(o=="tab"||o=="message")&&n.find('tr.field_name input[type="text"]').val("").trigger("keyup");if(n.children("tr.field_option_"+o).exists()){n.children("tr.field_option").hide().find("[name]").attr("disabled","true");n.children("tr.field_option_"+o).show().find("[name]").removeAttr("disabled")}else{var u=e('<tr"><td class="label"></td><td><div class="acf-loading"></div></td></tr>');n.children("tr.field_option").hide().find("[name]").attr("disabled","true");n.children("tr.conditional-logic").exists()?n.children("tr.conditional-logic").before(u):n.children("tr.field_save").before(u);var a={action:"acf/field_group/render_options",post_id:acf.post_id,field_key:t.attr("name"),field_type:o,nonce:acf.nonce};e.ajax({url:ajaxurl,data:a,type:"post",dataType:"html",success:function(e){if(!e){u.remove();return}u.replaceWith(e)}})}});e.fn.update_names=function(){var t=e(this),n=t.attr("data-id"),r="field_"+acf.helpers.uniqid();t.attr("data-id",r);t.attr("class",t.attr("class").replace(n,r));t.find(".field_meta td.field_key").text(r);t.find('[id*="'+n+'"]').each(function(){e(this).attr("id",e(this).attr("id").replace(n,r))});t.find('[name*="'+n+'"]').each(function(){e(this).attr("name",e(this).attr("name").replace(n,r))})};e(document).on("click","#acf_fields a.acf_edit_field",function(){var t=e(this).closest(".field");if(t.hasClass("form_open")){t.removeClass("form_open");e(document).trigger("acf/field_form-close",[t])}else{t.addClass("form_open");e(document).trigger("acf/field_form-open",[t])}t.children(".field_form_mask").animate({height:"toggle"},250)});e(document).on("click","#acf_fields a.acf_delete_field",function(){var n=e(this),r=n.closest(".field"),i=r.closest(".fields"),s=e('<div style="height:'+r.height()+'px"></div>');r.animate({left:"50px",opacity:0},250,function(){r.before(s);r.remove();if(i.children(".field").length<=1){s.remove();i.children(".no_fields_message").show()}else s.animate({height:0},250,function(){s.remove()});t()})});e(document).on("click","#acf_fields a.acf_duplicate_field",function(){var n=e(this),r=n.closest(".field"),i=null;r.find("select").each(function(){e(this).attr("data-val",e(this).val())});i=r.clone();i.update_names();i.find(".field:not(.field_key-field_clone)").each(function(){e(this).update_names()});r.after(i);r.hasClass("form_open")?r.find(".acf_edit_field").first().trigger("click"):i.find(".acf_edit_field").first().trigger("click");var s=i.find('tr.field_label:first input[type="text"]'),o=i.find('tr.field_name:first input[type="text"]');i.find("select").each(function(){e(this).val(e(this).attr("data-val")).trigger("change")});o.val("");s.val(s.val()+" ("+acf.l10n.copy+")");s.trigger("blur").trigger("keyup");t()});e(document).on("click","#acf_fields #add_field",function(){var n=e(this).closest(".table_footer").siblings(".fields"),r=n.children(".field_key-field_clone").clone();r.update_names();r.show();n.children(".field_key-field_clone").before(r);n.children(".no_fields_message").exists()&&n.children(".no_fields_message").hide();r.find("tr.field_type select").trigger("change");r.find('.field_form input[type="text"]').val("");setTimeout(function(){r.find('.field_form input[type="text"]').first().focus()},500);r.find("a.acf_edit_field").first().trigger("click");t();return!1});e(document).on("blur","#acf_fields tr.field_label input.label",function(){var t=e(this),n=t.closest(".field"),r=n.find('tr.field_name:first input[type="text"]'),i=n.attr("data-type");if(i=="tab"||i=="message"){r.val("").trigger("keyup");return}if(r.val()==""){var s=t.val(),o={"ä":"a","æ":"a","å":"a","ö":"o","ø":"o","é":"e","ë":"e","ü":"u","ó":"o","ő":"o","ú":"u","é":"e","á":"a","ű":"u","í":"i"," ":"_","'":""};e.each(o,function(e,t){var n=new RegExp(e,"g");s=s.replace(n,t)});s=s.toLowerCase();r.val(s);r.trigger("keyup")}});e(document).on("keyup","#acf_fields .field_form tr.field_label input.label",function(){var t=e(this).val(),n=e(this).closest(".field").find("td.field_label strong a").first().html(t)});e(document).on("keyup","#acf_fields .field_form tr.field_name input.name",function(){var t=e(this).val(),n=e(this).closest(".field").find("td.field_name").first().html(t)});e(document).on("change","#acf_fields .field_form tr.field_type select",function(){var t=e(this).val(),n=e(this).find('option[value="'+t+'"]').html();e(this).closest(".field").find("td.field_type").first().html(n)});e(document).on("mouseover","#acf_fields td.field_order",function(){var n=e(this).closest(".fields");if(n.hasClass("sortable"))return!1;n.addClass("sortable").sortable({update:function(e,n){t()},handle:"td.field_order"})});e(document).ready(function(){acf.location.init();acf.conditional_logic.init()});acf.location={$el:null,init:function(){var t=this;t.$el=e("#acf_location");t.$el.on("click",".location-add-rule",function(){t.add_rule(e(this).closest("tr"));return!1});t.$el.on("click",".location-remove-rule",function(){t.remove_rule(e(this).closest("tr"));return!1});t.$el.on("click",".location-add-group",function(){t.add_group();return!1});t.$el.on("change",".param select",function(){var t=e(this).closest("tr"),n=t.attr("data-id"),r=t.closest(".location-group"),i=r.attr("data-id"),s={action:"acf/field_group/render_location",nonce:acf.nonce,rule_id:n,group_id:i,value:"",param:e(this).val()},o=e('<div class="acf-loading"></div>');t.find("td.value").html(o);e.ajax({url:acf.ajaxurl,data:s,type:"post",dataType:"html",success:function(e){o.replaceWith(e)}})})},add_rule:function(t){var n=t.clone(),r=n.attr("data-id"),i=acf.helpers.uniqid();n.find("[name]").each(function(){e(this).attr("name",e(this).attr("name").replace(r,i));e(this).attr("id",e(this).attr("id").replace(r,i))});n.attr("data-id",i);t.after(n);return!1},remove_rule:function(e){var t=e.siblings("tr").length;t==0?this.remove_group(e.closest(".location-group")):e.remove()},add_group:function(){var t=this.$el.find(".location-group:last"),n=t.clone(),r=n.attr("data-id"),i=acf.helpers.uniqid();n.find("[name]").each(function(){e(this).attr("name",e(this).attr("name").replace(r,i));e(this).attr("id",e(this).attr("id").replace(r,i))});n.attr("data-id",i);n.find("h4").text(acf.l10n.or);n.find("tr:not(:first)").remove();t.after(n)},remove_group:function(e){e.remove()}};e(document).ready(function(){e("#submitdiv #publish").attr("class","acf-button");e("#submitdiv a.submitdelete").attr("class","delete-field-group").attr("id","submit-delete");var t=e("#hide-on-screen ul.acf-checkbox-list"),n=e('<li><label><input type="checkbox" value="" name="" >'+acf.l10n.hide_show_all+"</label></li>");t.find("input:not(:checked)").length==0&&n.find("input").attr("checked","checked");n.on("change","input",function(){var n=e(this).is(":checked");t.find("input").attr("checked",n)});t.prepend(n)});e(document).on("change",'#adv-settings input[name="show-field_key"]',function(){e(this).val()=="1"?e("#acf_fields table.acf").addClass("show-field_key"):e("#acf_fields table.acf").removeClass("show-field_key")});acf.helpers.create_field=function(t){var n={type:"text",classname:"",name:"",value:""};t=e.extend(!0,n,t);var r="";if(t.type=="text")r+='<input class="text '+t.classname+'" type="text" id="'+t.name+'" name="'+t.name+'" value="'+t.value+'" />';else if(t.type=="select"){var i={};e.each(t.choices,function(e,t){t.group===undefined&&(t.group=0);i[t.group]===undefined&&(i[t.group]=[]);i[t.group].push(t)});r+='<select class="select '+t.classname+'" id="'+t.name+'" name="'+t.name+'">';e.each(i,function(n,i){n!=0&&(r+='<optgroup label="'+n+'">');e.each(i,function(e,n){var i="";n.value==t.value&&(i='selected="selected"');r+="<option "+i+' value="'+n.value+'">'+n.label+"</option>"});n!=0&&(r+="</optgroup>")});r+="</select>"}r=e(r);return r};acf.conditional_logic={triggers:null,init:function(){var t=this;e(document).on("acf/field_form-open",function(e,n){t.render(n)});e(document).on("change","#acf_fields tr.field_label input.label",function(){e("#acf_fields .field.form_open").each(function(){t.render(e(this))})});e(document).on("change",'tr.conditional-logic input[type="radio"]',function(n){n.preventDefault();t.change_toggle(e(this))});e(document).on("change","select.conditional-logic-field",function(n){n.preventDefault();t.change_trigger(e(this))});e(document).on("click","tr.conditional-logic .acf-button-add",function(n){n.preventDefault();t.add(e(this).closest("tr"))});e(document).on("click","tr.conditional-logic .acf-button-remove",function(n){n.preventDefault();t.remove(e(this).closest("tr"))})},render:function(t){var n=this,r=[],i=t.attr("data-id"),s=t.parents(".fields"),o=t.find("> .field_form_mask > .field_form > table > tbody > tr.conditional-logic");e.each(s,function(t){var n=t==0?acf.l10n.sibling_fields:acf.l10n.parent_fields;e(this).children(".field").each(function(){var t=e(this),s=t.attr("data-id"),o=t.attr("data-type"),u=t.find("tr.field_label input").val();if(s=="field_clone")return;if(s==i)return;(o=="select"||o=="checkbox"||o=="true_false"||o=="radio")&&r.push({value:s,label:u,group:n})})});r.length==0&&r.push({value:"null",label:acf.l10n.no_fields});o.find(".conditional-logic-field").each(function(){var t=e(this).val(),n=e(this).attr("name"),i=acf.helpers.create_field({type:"select",classname:"conditional-logic-field",name:n,value:t,choices:r});e(this).replaceWith(i);i.trigger("change")})},change_toggle:function(e){var t=e.val(),n=e.closest("tr.conditional-logic");t=="1"?n.find(".contional-logic-rules-wrapper").show():n.find(".contional-logic-rules-wrapper").hide()},change_trigger:function(t){var n=t.val(),r=e(".field_key-"+n),i=r.attr("data-type"),s=t.closest("tr").find(".conditional-logic-value"),o=[];if(i=="true_false")o=[{value:1,label:acf.l10n.checked}];else if(i=="select"||i=="checkbox"||i=="radio"){var u=r.find(".field_option-choices").val().split("\n");if(u)for(var a=0;a<u.length;a++){var f=u[a].split(":"),l=f[0];f[1]&&(l=f[1]);o.push({value:e.trim(f[0]),label:e.trim(l)})}}var t=acf.helpers.create_field({type:"select",classname:"conditional-logic-value",name:s.attr("name"),value:s.val(),choices:o});s.replaceWith(t);t.trigger("change")},add:function(t){var n=t.clone(),r=parseFloat(t.attr("data-i")),i=r+1;n.find("[name]").each(function(){var t="[conditional_logic][rules]["+r+"]",n="[conditional_logic][rules]["+i+"]";e(this).attr("name",e(this).attr("name").replace(t,n));e(this).attr("id",e(this).attr("id").replace(t,n))});n.attr("data-i",i);t.after(n);t.closest("table").removeClass("remove-disabled")},remove:function(e){var t=e.closest("table");if(t.hasClass("remove-disabled"))return!1;e.remove();t.find("tr").length<=1&&t.addClass("remove-disabled")}};e(document).on("change",".radio-option-other_choice input",function(){var t=e(this),n=t.closest("td");if(t.is(":checked"))n.find(".radio-option-save_other_choice").show();else{n.find(".radio-option-save_other_choice").hide();n.find(".radio-option-save_other_choice input").removeAttr("checked")}})})(jQuery);
5
  *
6
  * @type JS
7
  * @date 1/08/13
8
+ */var acf={ajaxurl:"",admin_url:"",post_id:0,nonce:"",l10n:{},text:{},helpers:{uniqid:null,sortable:null,create_field:null},conditional_logic:null,location:null};(function(e){function t(){e("#acf_fields .fields").each(function(){e(this).children(".field").each(function(t){e(this).find("td.field_order .circle").first().html(t+1)})})}e.fn.exists=function(){return e(this).length>0};acf.helpers.sortable=function(t,n){n.children().each(function(){e(this).width(e(this).width())});return n};acf.helpers.uniqid=function(e,t){typeof e=="undefined"&&(e="");var n,r=function(e,t){e=parseInt(e,10).toString(16);return t<e.length?e.slice(e.length-t):t>e.length?Array(1+(t-e.length)).join("0")+e:e};this.php_js||(this.php_js={});this.php_js.uniqidSeed||(this.php_js.uniqidSeed=Math.floor(Math.random()*123456789));this.php_js.uniqidSeed++;n=e;n+=r(parseInt((new Date).getTime()/1e3,10),8);n+=r(this.php_js.uniqidSeed,5);t&&(n+=(Math.random()*10).toFixed(8).toString());return n};e(document).on("submit","#post",function(){var t=e("#titlewrap #title");if(!t.val()){alert(acf.l10n.title);t.focus();return!1}});e(document).on("click","#submit-delete",function(){var e=confirm(acf.l10n.move_to_trash);if(!e)return!1});e(document).on("change","#acf_fields tr.field_type select",function(){var t=e(this),n=t.closest("tbody"),r=n.closest(".field"),i=r.attr("data-type"),s=r.attr("data-id"),o=t.val();r.removeClass("field_type-"+i).addClass("field_type-"+o);r.attr("data-type",o);(o=="tab"||o=="message")&&n.find('tr.field_name input[type="text"]').val("").trigger("keyup");if(n.children("tr.field_option_"+o).exists()){n.children("tr.field_option").hide().find("[name]").attr("disabled","true");n.children("tr.field_option_"+o).show().find("[name]").removeAttr("disabled")}else{var u=e('<tr"><td class="label"></td><td><div class="acf-loading"></div></td></tr>');n.children("tr.field_option").hide().find("[name]").attr("disabled","true");n.children("tr.conditional-logic").exists()?n.children("tr.conditional-logic").before(u):n.children("tr.field_save").before(u);var a={action:"acf/field_group/render_options",post_id:acf.post_id,field_key:t.attr("name"),field_type:o,nonce:acf.nonce};e.ajax({url:ajaxurl,data:a,type:"post",dataType:"html",success:function(e){if(!e){u.remove();return}u.replaceWith(e)}})}});e.fn.update_names=function(){var t=e(this),n=t.attr("data-id"),r="field_"+acf.helpers.uniqid();t.attr("data-id",r);t.attr("class",t.attr("class").replace(n,r));t.find(".field_meta td.field_key").text(r);t.find('[id*="'+n+'"]').each(function(){e(this).attr("id",e(this).attr("id").replace(n,r))});t.find('[name*="'+n+'"]').each(function(){e(this).attr("name",e(this).attr("name").replace(n,r))})};e(document).on("click","#acf_fields a.acf_edit_field",function(){var t=e(this).closest(".field");if(t.hasClass("form_open")){t.removeClass("form_open");e(document).trigger("acf/field_form-close",[t])}else{t.addClass("form_open");e(document).trigger("acf/field_form-open",[t])}t.children(".field_form_mask").animate({height:"toggle"},250)});e(document).on("click","#acf_fields a.acf_delete_field",function(){var n=e(this),r=n.closest(".field"),i=r.closest(".fields"),s=e('<div style="height:'+r.height()+'px"></div>');r.animate({left:"50px",opacity:0},250,function(){r.before(s);r.remove();if(i.children(".field").length<=1){s.remove();i.children(".no_fields_message").show()}else s.animate({height:0},250,function(){s.remove()});t()})});e(document).on("click","#acf_fields a.acf_duplicate_field",function(){var n=e(this),r=n.closest(".field"),i=null;r.find("select").each(function(){e(this).attr("data-val",e(this).val())});i=r.clone();i.update_names();i.find(".field:not(.field_key-field_clone)").each(function(){e(this).update_names()});r.after(i);r.hasClass("form_open")?r.find(".acf_edit_field").first().trigger("click"):i.find(".acf_edit_field").first().trigger("click");var s=i.find('tr.field_label:first input[type="text"]'),o=i.find('tr.field_name:first input[type="text"]');i.find("select").each(function(){e(this).val(e(this).attr("data-val")).trigger("change")});o.val("");s.val(s.val()+" ("+acf.l10n.copy+")");s.trigger("blur").trigger("keyup");t()});e(document).on("click","#acf_fields #add_field",function(){var n=e(this).closest(".table_footer").siblings(".fields"),r=n.children(".field_key-field_clone").clone();r.update_names();r.show();n.children(".field_key-field_clone").before(r);n.children(".no_fields_message").exists()&&n.children(".no_fields_message").hide();r.find("tr.field_type select").trigger("change");r.find('.field_form input[type="text"]').val("");setTimeout(function(){r.find('.field_form input[type="text"]').first().focus()},500);r.find("a.acf_edit_field").first().trigger("click");t();return!1});e(document).on("blur","#acf_fields tr.field_label input.label",function(){var t=e(this),n=t.closest(".field"),r=n.find('tr.field_name:first input[type="text"]'),i=n.attr("data-type");if(i=="tab"||i=="message"){r.val("").trigger("keyup");return}if(r.val()==""){var s=t.val(),o={"ä":"a","æ":"a","å":"a","ö":"o","ø":"o","é":"e","ë":"e","ü":"u","ó":"o","ő":"o","ú":"u","é":"e","á":"a","ű":"u","í":"i"," ":"_","'":""};e.each(o,function(e,t){var n=new RegExp(e,"g");s=s.replace(n,t)});s=s.toLowerCase();r.val(s);r.trigger("keyup")}});e(document).on("keyup","#acf_fields .field_form tr.field_label input.label",function(){var t=e(this).val(),n=e(this).closest(".field").find("td.field_label strong a").first().html(t)});e(document).on("keyup","#acf_fields .field_form tr.field_name input.name",function(){var t=e(this).val(),n=e(this).closest(".field").find("td.field_name").first().html(t)});e(document).on("change","#acf_fields .field_form tr.field_type select",function(){var t=e(this).val(),n=e(this).find('option[value="'+t+'"]').html();e(this).closest(".field").find("td.field_type").first().html(n)});e(document).on("mouseover","#acf_fields td.field_order",function(){var n=e(this).closest(".fields");if(n.hasClass("sortable"))return!1;n.addClass("sortable").sortable({update:function(e,n){t()},handle:"td.field_order"})});e(document).ready(function(){acf.location.init();acf.conditional_logic.init()});acf.location={$el:null,init:function(){var t=this;t.$el=e("#acf_location");t.$el.on("click",".location-add-rule",function(){t.add_rule(e(this).closest("tr"));return!1});t.$el.on("click",".location-remove-rule",function(){t.remove_rule(e(this).closest("tr"));return!1});t.$el.on("click",".location-add-group",function(){t.add_group();return!1});t.$el.on("change",".param select",function(){var t=e(this).closest("tr"),n=t.attr("data-id"),r=t.closest(".location-group"),i=r.attr("data-id"),s={action:"acf/field_group/render_location",nonce:acf.nonce,rule_id:n,group_id:i,value:"",param:e(this).val()},o=e('<div class="acf-loading"></div>');t.find("td.value").html(o);e.ajax({url:acf.ajaxurl,data:s,type:"post",dataType:"html",success:function(e){o.replaceWith(e)}})})},add_rule:function(t){var n=t.clone(),r=n.attr("data-id"),i=acf.helpers.uniqid();n.find("[name]").each(function(){e(this).attr("name",e(this).attr("name").replace(r,i));e(this).attr("id",e(this).attr("id").replace(r,i))});n.attr("data-id",i);t.after(n);return!1},remove_rule:function(e){var t=e.siblings("tr").length;t==0?this.remove_group(e.closest(".location-group")):e.remove()},add_group:function(){var t=this.$el.find(".location-group:last"),n=t.clone(),r=n.attr("data-id"),i=acf.helpers.uniqid();n.find("[name]").each(function(){e(this).attr("name",e(this).attr("name").replace(r,i));e(this).attr("id",e(this).attr("id").replace(r,i))});n.attr("data-id",i);n.find("h4").text(acf.l10n.or);n.find("tr:not(:first)").remove();t.after(n)},remove_group:function(e){e.remove()}};e(document).ready(function(){e("#submitdiv #publish").attr("class","acf-button");e("#submitdiv a.submitdelete").attr("class","delete-field-group").attr("id","submit-delete");var t=e("#hide-on-screen ul.acf-checkbox-list"),n=e('<li><label><input type="checkbox" value="" name="" >'+acf.l10n.hide_show_all+"</label></li>");t.find("input:not(:checked)").length==0&&n.find("input").attr("checked","checked");n.on("change","input",function(){var n=e(this).is(":checked");t.find("input").attr("checked",n)});t.prepend(n)});e(document).on("change",'#adv-settings input[name="show-field_key"]',function(){e(this).val()=="1"?e("#acf_fields table.acf").addClass("show-field_key"):e("#acf_fields table.acf").removeClass("show-field_key")});acf.helpers.create_field=function(t){var n={type:"text",classname:"",name:"",value:""};t=e.extend(!0,n,t);var r="";if(t.type=="text")r+='<input class="text '+t.classname+'" type="text" id="'+t.name+'" name="'+t.name+'" value="'+t.value+'" />';else if(t.type=="select"){var i={};e.each(t.choices,function(e,t){t.group===undefined&&(t.group=0);i[t.group]===undefined&&(i[t.group]=[]);i[t.group].push(t)});r+='<select class="select '+t.classname+'" id="'+t.name+'" name="'+t.name+'">';e.each(i,function(n,i){n!=0&&(r+='<optgroup label="'+n+'">');e.each(i,function(e,n){var i="";n.value==t.value&&(i='selected="selected"');r+="<option "+i+' value="'+n.value+'">'+n.label+"</option>"});n!=0&&(r+="</optgroup>")});r+="</select>"}r=e(r);return r};acf.conditional_logic={triggers:null,init:function(){var t=this;e(document).on("acf/field_form-open",function(e,n){t.render(n)});e(document).on("change","#acf_fields tr.field_label input.label",function(){e("#acf_fields .field.form_open").each(function(){t.render(e(this))})});e(document).on("change",'tr.conditional-logic input[type="radio"]',function(n){n.preventDefault();t.change_toggle(e(this))});e(document).on("change","select.conditional-logic-field",function(n){n.preventDefault();t.change_trigger(e(this))});e(document).on("click","tr.conditional-logic .acf-button-add",function(n){n.preventDefault();t.add(e(this).closest("tr"))});e(document).on("click","tr.conditional-logic .acf-button-remove",function(n){n.preventDefault();t.remove(e(this).closest("tr"))})},render:function(t){var n=this,r=[],i=t.attr("data-id"),s=t.parents(".fields"),o=t.find("> .field_form_mask > .field_form > table > tbody > tr.conditional-logic");e.each(s,function(t){var n=t==0?acf.l10n.sibling_fields:acf.l10n.parent_fields;e(this).children(".field").each(function(){var t=e(this),s=t.attr("data-id"),o=t.attr("data-type"),u=t.find("tr.field_label input").val();if(s=="field_clone")return;if(s==i)return;(o=="select"||o=="checkbox"||o=="true_false"||o=="radio")&&r.push({value:s,label:u,group:n})})});r.length==0&&r.push({value:"null",label:acf.l10n.no_fields});o.find(".conditional-logic-field").each(function(){var t=e(this).val(),n=e(this).attr("name"),i=acf.helpers.create_field({type:"select",classname:"conditional-logic-field",name:n,value:t,choices:r});e(this).replaceWith(i);i.trigger("change")})},change_toggle:function(e){var t=e.val(),n=e.closest("tr.conditional-logic");t=="1"?n.find(".contional-logic-rules-wrapper").show():n.find(".contional-logic-rules-wrapper").hide()},change_trigger:function(t){var n=t.val(),r=e(".field_key-"+n),i=r.attr("data-type"),s=t.closest("tr").find(".conditional-logic-value"),o=[];if(i=="true_false")o=[{value:1,label:acf.l10n.checked}];else if(i=="select"||i=="checkbox"||i=="radio"){var u=r.find(".field_option-choices").val().split("\n");if(u)for(var a=0;a<u.length;a++){var f=u[a].split(":"),l=f[0];f[1]&&(l=f[1]);o.push({value:e.trim(f[0]),label:e.trim(l)})}}var t=acf.helpers.create_field({type:"select",classname:"conditional-logic-value",name:s.attr("name"),value:s.val(),choices:o});s.replaceWith(t);t.trigger("change")},add:function(t){var n=t.clone(),r=parseFloat(t.attr("data-i")),i=acf.helpers.uniqid();n.find("[name]").each(function(){var t="[conditional_logic][rules]["+r+"]",n="[conditional_logic][rules]["+i+"]";e(this).attr("name",e(this).attr("name").replace(t,n));e(this).attr("id",e(this).attr("id").replace(t,n))});n.attr("data-i",i);t.after(n);t.closest("table").removeClass("remove-disabled")},remove:function(e){var t=e.closest("table");if(t.hasClass("remove-disabled"))return!1;e.remove();t.find("tr").length<=1&&t.addClass("remove-disabled")}};e(document).on("change",".radio-option-other_choice input",function(){var t=e(this),n=t.closest("td");if(t.is(":checked"))n.find(".radio-option-save_other_choice").show();else{n.find(".radio-option-save_other_choice").hide();n.find(".radio-option-save_other_choice input").removeAttr("checked")}})})(jQuery);
js/input.js CHANGED
@@ -1185,14 +1185,26 @@ var acf = {
1185
  },
1186
  init : function(){
1187
 
 
 
 
 
1188
  // is clone field?
1189
- if( acf.helpers.is_clone_field(this.$input) )
1190
  {
1191
  return;
1192
  }
1193
 
1194
 
1195
- this.$input.wpColorPicker();
 
 
 
 
 
 
 
 
1196
 
1197
 
1198
 
@@ -1990,7 +2002,19 @@ var acf = {
1990
 
1991
  // vars
1992
  var position = this.map.marker.getPosition(),
1993
- latlng = new google.maps.LatLng( position.lat(), position.lng() );
 
 
 
 
 
 
 
 
 
 
 
 
1994
 
1995
 
1996
  // set center of map
@@ -2106,6 +2130,16 @@ var acf = {
2106
 
2107
  this.$el.find('.search').val( val ).focus();
2108
 
 
 
 
 
 
 
 
 
 
 
2109
  }
2110
 
2111
  };
@@ -2221,7 +2255,17 @@ var acf = {
2221
  {
2222
  $el.addClass('active');
2223
  }
2224
-
 
 
 
 
 
 
 
 
 
 
2225
  });
2226
 
2227
 
@@ -3202,17 +3246,32 @@ var acf = {
3202
  // hide / show
3203
  $wrap.children('.field_type-tab').each(function(){
3204
 
3205
- var $tab = $(this);
 
 
 
3206
 
3207
  if( $tab.hasClass('field_key-' + id) )
3208
  {
3209
- $tab.nextUntil('.field_type-tab').removeClass('acf-tab_group-hide').addClass('acf-tab_group-show');
3210
- }
3211
- else
3212
- {
3213
- $tab.nextUntil('.field_type-tab').removeClass('acf-tab_group-show').addClass('acf-tab_group-hide');
3214
  }
3215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3216
  });
3217
 
3218
 
@@ -3326,6 +3385,10 @@ var acf = {
3326
 
3327
  validate : function( div ){
3328
 
 
 
 
 
3329
  // set validation data
3330
  div.data('validation', true);
3331
 
@@ -3333,26 +3396,47 @@ var acf = {
3333
  // not visible
3334
  if( div.is(':hidden') )
3335
  {
3336
- return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3337
  }
3338
 
 
3339
  // if is hidden by conditional logic, ignore
3340
  if( div.hasClass('acf-conditional_logic-hide') )
3341
  {
3342
- return;
3343
  }
3344
 
3345
 
3346
- // if is hidden by conditional logic on a parent tab, ignore
3347
- if( div.hasClass('acf-tab_group-hide') )
3348
  {
3349
- if( div.prevAll('.field_type-tab:first').hasClass('acf-conditional_logic-hide') )
3350
- {
3351
- return;
3352
- }
3353
  }
3354
 
3355
 
 
3356
  // text / textarea
3357
  if( div.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val() == "" )
3358
  {
1185
  },
1186
  init : function(){
1187
 
1188
+ // vars (reference)
1189
+ var $input = this.$input;
1190
+
1191
+
1192
  // is clone field?
1193
+ if( acf.helpers.is_clone_field($input) )
1194
  {
1195
  return;
1196
  }
1197
 
1198
 
1199
+ this.$input.wpColorPicker({
1200
+
1201
+ change: function(event, ui){
1202
+
1203
+ $input.trigger('change');
1204
+
1205
+ }
1206
+
1207
+ });
1208
 
1209
 
1210
 
2002
 
2003
  // vars
2004
  var position = this.map.marker.getPosition(),
2005
+ lat = this.o.lat,
2006
+ lng = this.o.lng;
2007
+
2008
+
2009
+ // if marker exists, center on the marker
2010
+ if( position )
2011
+ {
2012
+ lat = position.lat();
2013
+ lng = position.lng();
2014
+ }
2015
+
2016
+
2017
+ var latlng = new google.maps.LatLng( lat, lng );
2018
 
2019
 
2020
  // set center of map
2130
 
2131
  this.$el.find('.search').val( val ).focus();
2132
 
2133
+ },
2134
+
2135
+ refresh : function(){
2136
+
2137
+ // trigger resize on div
2138
+ google.maps.event.trigger(this.map, 'resize');
2139
+
2140
+ // center map
2141
+ this.center();
2142
+
2143
  }
2144
 
2145
  };
2255
  {
2256
  $el.addClass('active');
2257
  }
2258
+
2259
+ });
2260
+
2261
+ $(document).on('acf/fields/tab/show', function( e, $field ){
2262
+
2263
+ // validate
2264
+ if( $field.attr('data-field_type') == 'google_map' )
2265
+ {
2266
+ acf.fields.location.set({ $el : $field.find('.acf-google-map') }).refresh();
2267
+ }
2268
+
2269
  });
2270
 
2271
 
3246
  // hide / show
3247
  $wrap.children('.field_type-tab').each(function(){
3248
 
3249
+ // vars
3250
+ var $tab = $(this),
3251
+ show = false;
3252
+
3253
 
3254
  if( $tab.hasClass('field_key-' + id) )
3255
  {
3256
+ show = true;
 
 
 
 
3257
  }
3258
 
3259
+
3260
+ $tab.nextUntil('.field_type-tab').each(function(){
3261
+
3262
+ if( show )
3263
+ {
3264
+ $(this).removeClass('acf-tab_group-hide').addClass('acf-tab_group-show');
3265
+ $(document).trigger('acf/fields/tab/show', [ $(this) ]);
3266
+ }
3267
+ else
3268
+ {
3269
+ $(this).removeClass('acf-tab_group-show').addClass('acf-tab_group-hide');
3270
+ $(document).trigger('acf/fields/tab/hide', [ $(this) ]);
3271
+ }
3272
+
3273
+ });
3274
+
3275
  });
3276
 
3277
 
3385
 
3386
  validate : function( div ){
3387
 
3388
+ // var
3389
+ var ignore = false;
3390
+
3391
+
3392
  // set validation data
3393
  div.data('validation', true);
3394
 
3396
  // not visible
3397
  if( div.is(':hidden') )
3398
  {
3399
+ // ignore validation
3400
+ ignore = true;
3401
+
3402
+
3403
+ // if this field is hidden by a tab group, allow validation
3404
+ if( div.hasClass('acf-tab_group-hide') )
3405
+ {
3406
+ ignore = false;
3407
+
3408
+
3409
+ // vars
3410
+ var $tab_field = div.prevAll('.field_type-tab:first');
3411
+
3412
+ // if the tab itself is hidden, bypass validation
3413
+ if( $tab_field.hasClass('acf-conditional_logic-hide') )
3414
+ {
3415
+ ignore = true;
3416
+ }
3417
+ else
3418
+ {
3419
+ // activate this tab as it holds hidden required field!
3420
+ div.prevAll('.acf-tab-group:first').find('.acf-tab-button[data-id="' + $tab_field.attr('data-field_key') + '"]').trigger('click');
3421
+ }
3422
+ }
3423
  }
3424
 
3425
+
3426
  // if is hidden by conditional logic, ignore
3427
  if( div.hasClass('acf-conditional_logic-hide') )
3428
  {
3429
+ ignore = true;
3430
  }
3431
 
3432
 
3433
+ if( ignore )
 
3434
  {
3435
+ return;
 
 
 
3436
  }
3437
 
3438
 
3439
+
3440
  // text / textarea
3441
  if( div.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val() == "" )
3442
  {
js/input.min.js CHANGED
@@ -10,5 +10,5 @@
10
  *
11
  * @param N/A
12
  * @return N/A
13
- */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(e){acf.helpers.isset=function(){var e=arguments,t=e.length,n=0,r;if(t===0)throw new Error("Empty isset");while(n!==t){if(e[n]===r||e[n]===null)return!1;n++}return!0};acf.helpers.get_atts=function(t){var n={};e.each(t[0].attributes,function(e,t){t.name.substr(0,5)=="data-"&&(n[t.name.replace("data-","")]=t.value)});return n};acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;var n=e.split("."),r=t.split("."),i=0,s=Math.max(n.length,r.length);for(;i<s;i++){if(n[i]&&!r[i]&&parseInt(n[i])>0||parseInt(n[i])>parseInt(r[i]))return 1;if(r[i]&&!n[i]&&parseInt(r[i])>0||parseInt(n[i])<parseInt(r[i]))return-1}return 0};acf.helpers.uniqid=function(){var e=new Date;return e.getTime()};acf.helpers.url_to_object=function(e){var t={},n=e.split("&");for(i in n){var r=n[i].split("=");t[decodeURIComponent(r[0])]=decodeURIComponent(r[1])}return t};acf.helpers.sortable=function(t,n){n.children().each(function(){e(this).width(e(this).width())});return n};acf.helpers.is_clone_field=function(e){return e.attr("name")&&e.attr("name").indexOf("[acfcloneindex]")!=-1?!0:!1};acf.helpers.add_message=function(t,n){var t=e('<div class="acf-message-wrapper"><div class="message updated"><p>'+t+"</p></div></div>");n.prepend(t);setTimeout(function(){t.animate({opacity:0},250,function(){t.remove()})},1500)};e.fn.exists=function(){return e(this).length>0};acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){if(!this.frame)return;this.frame.detach();this.frame.dispose();this.frame=null},type:function(){var e="thickbox";typeof wp=="object"&&(e="backbone");return e},init:function(){var t=wp.media.view.AttachmentCompat.prototype;t.orig_render=t.render;t.orig_dispose=t.dispose;t.className="compat-item acf_postbox no_box";t.render=function(){var t=this;if(t.ignore_render)return this;this.orig_render();setTimeout(function(){var n=t.$el.closest(".media-modal");if(n.hasClass("acf-media-modal"))return;if(n.find(".media-frame-router .acf-expand-details").exists())return;var r=e(['<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(""));r.on("click",function(e){e.preventDefault();n.hasClass("acf-expanded")?n.removeClass("acf-expanded"):n.addClass("acf-expanded")});n.find(".media-frame-router").append(r)},0);clearTimeout(acf.media.render_timout);acf.media.render_timout=setTimeout(function(){e(document).trigger("acf/setup_fields",[t.$el])},50);return this};t.dispose=function(){e(document).trigger("acf/remove_fields",[this.$el]);this.orig_dispose()};t.save=function(e){var t={},n={};e&&e.preventDefault();_.each(this.$el.serializeArray(),function(e){if(e.name.slice(-2)==="[]"){e.name=e.name.replace("[]","");typeof n[e.name]=="undefined"&&(n[e.name]=-1);n[e.name]++;e.name+="["+n[e.name]+"]"}t[e.name]=e.value});this.ignore_render=!0;this.model.saveCompat(t)}}};acf.conditional_logic={items:[],init:function(){var t=this;e(document).on("change",".field input, .field textarea, .field select",function(){e("#acf-has-changed").exists()&&e("#acf-has-changed").val(1);t.change()});e(document).on("acf/setup_fields",function(e,n){t.change()});t.change()},change:function(){var t=this;e.each(this.items,function(n,r){var i=e(".field_key-"+r.field);i.each(function(){var n=!0;r.allorany=="any"&&(n=!1);var i=e(this),s=!0;e.each(r.rules,function(o,u){var a=e(".field_key-"+u.field);if(a.hasClass("sub_field")){a=i.siblings(".field_key-"+u.field);s=!1;if(!a.exists()){i.parents("tr").each(function(){a=e(this).find(".field_key-"+u.field);if(a.exists())return!1});s=!0}}if(i.parent("tr").parent().parent("table").parent(".layout").exists()){s=!0;i.is("th")&&a.is("th")&&(a=i.closest(".layout").find("td.field_key-"+u.field))}var f=t.calculate(u,a,i);if(r.allorany=="all"){if(f==0){n=!1;return!1}}else if(f==1){n=!0;return!1}});i.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank");if(n){i.find("input, textarea, select").removeAttr("disabled");i.addClass("acf-conditional_logic-show");e(document).trigger("acf/conditional_logic/show",[i,r])}else{i.find("input, textarea, select").attr("disabled","disabled");i.addClass("acf-conditional_logic-hide");s||i.addClass("acf-show-blank");e(document).trigger("acf/conditional_logic/hide",[i,r])}})})},calculate:function(t,n,r){var i=!1;if(n.hasClass("field_type-true_false")||n.hasClass("field_type-checkbox")||n.hasClass("field_type-radio")){var s=n.find('input[value="'+t.value+'"]:checked').exists();t.operator=="=="?s&&(i=!0):s||(i=!0)}else{var o=n.find("input, textarea, select").last().val();e.isArray(o)||(o=[o]);t.operator=="=="?e.inArray(t.value,o)>-1&&(i=!0):e.inArray(t.value,o)<0&&(i=!0)}return i}};e(document).ready(function(){acf.conditional_logic.init();e(".acf_postbox > .inside > .options").each(function(){e(this).closest(".acf_postbox").addClass(e(this).attr("data-layout"))});e('#metakeyselect option[value^="field_"]').remove()});e(window).load(function(){acf.media.init();setTimeout(function(){try{e.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(t){}e(document).trigger("acf/setup_fields",[e("#poststuff")])},10)});acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}})(jQuery);(function(e){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};e(document).ready(function(){acf.screen.post_id=acf.o.post_id;acf.screen.nonce=acf.o.nonce;if(e("#icl-als-first").length>0){var t=e("#icl-als-first").children("a").attr("href"),n=new RegExp("lang=([^&#]*)"),r=n.exec(t);acf.screen.lang=r[1]}});e(document).on("acf/update_field_groups",function(){if(!acf.screen.post_id||!e.isNumeric(acf.screen.post_id))return!1;e.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(t){if(!t)return!1;e(".acf_postbox").addClass("acf-hidden");e(".acf_postbox-toggle").addClass("acf-hidden");if(t.length==0)return!1;e.each(t,function(t,n){var r=e("#acf_"+n),i=e('#adv-settings .acf_postbox-toggle[for="acf_'+n+'-hide"]');r.removeClass("acf-hidden hide-if-js");i.removeClass("acf-hidden");i.find('input[type="checkbox"]').attr("checked","checked");r.find(".acf-replace-with-fields").each(function(){var t=e(this);e.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:n,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(n){t.replaceWith(n);e(document).trigger("acf/setup_fields",r)}})})});e.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:t[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e("#acf_style").html(t)}})}})});e(document).on("change","#page_template",function(){acf.screen.page_template=e(this).val();e(document).trigger("acf/update_field_groups")});e(document).on("change","#parent_id",function(){var t=e(this).val();if(t!=""){acf.screen.page_type="child";acf.screen.page_parent=t}else{acf.screen.page_type="parent";acf.screen.page_parent=0}e(document).trigger("acf/update_field_groups")});e(document).on("change",'#post-formats-select input[type="radio"]',function(){var t=e(this).val();t=="0"&&(t="standard");acf.screen.post_format=t;e(document).trigger("acf/update_field_groups")});e(document).on("change",'.categorychecklist input[type="checkbox"]',function(){if(e(this).closest(".categorychecklist").hasClass("no-ajax"))return;setTimeout(function(){var t=[];e('.categorychecklist input[type="checkbox"]:checked').each(function(){if(e(this).is(":hidden")||e(this).is(":disabled"))return;t.push(e(this).val())});acf.screen.post_category=t;acf.screen.taxonomy=t;e(document).trigger("acf/update_field_groups")},1)})})(jQuery);(function(e){var t=acf.fields.color_picker={$el:null,$input:null,set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="text"]');return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return;this.$input.wpColorPicker()}};e(document).on("acf/setup_fields",function(n,r){e(r).find(".acf-color_picker").each(function(){t.set({$el:e(this)}).init()})})})(jQuery);(function(e){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="text"]');this.$hidden=this.$el.find('input[type="hidden"]');this.o=acf.helpers.get_atts(this.$el);return this},init:function(){if(acf.helpers.is_clone_field(this.$hidden))return;this.$input.val(this.$hidden.val());var t=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(t);this.$input.datepicker("option","dateFormat",this.o.display_format);e("body > #ui-datepicker-div").length>0&&e("#ui-datepicker-div").wrap('<div class="ui-acf" />')},blur:function(){this.$input.val()||this.$hidden.val("")}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:e(this)}).init()})});e(document).on("blur",'.acf-date_picker input[type="text"]',function(t){acf.fields.date_picker.set({$el:e(this).parent()}).blur()})})(jQuery);(function(e){var t=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(t){e.extend(this,t);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={};this.o.library=="uploadedTo"&&(this.o.query.uploadedTo=acf.o.post_id);return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return},add:function(e){var n=t.div;n.find(".acf-file-icon").attr("src",e.icon);n.find(".acf-file-title").text(e.title);n.find(".acf-file-name").text(e.name).attr("href",e.url);n.find(".acf-file-size").text(e.size);n.find(".acf-file-value").val(e.id).trigger("change");n.addClass("active");n.closest(".field").removeClass("error")},edit:function(){var n=this.$input.val();t.div=this.$el;t.clear_frame();t.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}});t.frame.on("open",function(){t.frame.content._mode!="browse"&&t.frame.content.mode("browse");t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var r=t.frame.state().get("selection"),i=wp.media.attachment(n);e.isEmptyObject(i.changed)&&i.fetch();r.add(i)});t.frame.on("close",function(){t.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 n=this;t.div=this.$el;t.clear_frame();t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(n.o.query),multiple:n.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]});acf.media.frame.on("content:activate",function(){var t=null,r=null;try{t=acf.media.frame.content.get().toolbar;r=t.get("filters")}catch(i){}if(!r)return!1;if(n.o.library=="uploadedTo"){r.$el.find('option[value="uploaded"]').remove();r.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>");e.each(r.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})}});acf.media.frame.on("select",function(){selection=t.frame.state().get("selection");if(selection){var e=0;selection.each(function(n){e++;if(e>1){var r=t.div.closest("td"),s=r.closest(".row"),o=s.closest(".repeater"),u=r.attr("data-field_key"),a="td .acf-file-uploader:first";u&&(a='td[data-field_key="'+u+'"] .acf-file-uploader');s.next(".row").exists()||o.find(".add-row-end").trigger("click");t.div=s.next(".row").find(a)}var f={id:n.id,title:n.attributes.title,name:n.attributes.filename,url:n.attributes.url,icon:n.attributes.icon,size:n.attributes.filesize};acf.fields.file.add(f)})}});acf.media.frame.open();return!1}};e(document).on("click",".acf-file-uploader .acf-button-edit",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).edit()});e(document).on("click",".acf-file-uploader .acf-button-delete",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).remove()});e(document).on("click",".acf-file-uploader .add-file",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).popup()})})(jQuery);(function(e){acf.fields.location={$el:null,$input:null,o:{},geocoder:!1,map:!1,maps:{},set:function(t){e.extend(this,t);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.geocoder=new google.maps.Geocoder;return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return;this.render()},render:function(){var e=this,t=this.$el,n={zoom:14,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],n);var r=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);r.map=this.map;r.bindTo("bounds",this.map);this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map});this.map.$el=this.$el;var i=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();i&&s&&this.update(i,s).center();google.maps.event.addListener(r,"place_changed",function(t){var n=this.map.$el,r=n.find(".search").val();n.find(".input-address").val(r);n.find(".title h4").text(r);var i=this.getPlace();if(i.geometry){var s=i.geometry.location.lat(),o=i.geometry.location.lng();e.set({$el:n}).update(s,o).center()}else e.geocoder.geocode({address:r},function(t,r){if(r!=google.maps.GeocoderStatus.OK){console.log("Geocoder failed due to: "+r);return}if(!t[0]){console.log("No results found");return}i=t[0];var s=i.geometry.location.lat(),o=i.geometry.location.lng();e.set({$el:n}).update(s,o).center()})});google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,n=this.map.marker.getPosition(),r=n.lat(),i=n.lng();e.set({$el:t}).update(r,i).sync()});google.maps.event.addListener(this.map,"click",function(t){var n=this.$el,r=t.latLng.lat(),i=t.latLng.lng();e.set({$el:n}).update(r,i).sync()});this.maps[this.o.id]=this.map},update:function(e,t){var n=new google.maps.LatLng(e,t);this.$el.find(".input-lat").val(e);this.$el.find(".input-lng").val(t).trigger("change");this.map.marker.setPosition(n);this.map.marker.setVisible(!0);this.$el.addClass("active");this.$el.closest(".field").removeClass("error");return this},center:function(){var e=this.map.marker.getPosition(),t=new google.maps.LatLng(e.lat(),e.lng());this.map.setCenter(t)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),n=new google.maps.LatLng(t.lat(),t.lng());this.geocoder.geocode({latLng:n},function(t,n){if(n!=google.maps.GeocoderStatus.OK){console.log("Geocoder failed due to: "+n);return}if(!t[0]){console.log("No results found");return}var r=t[0];e.find(".title h4").text(r.formatted_address);e.find(".input-address").val(r.formatted_address).trigger("change")});return this},locate:function(){var e=this,t=this.$el;if(!navigator.geolocation){alert(acf.l10n.google_map.browser_support);return this}t.find(".title h4").text(acf.l10n.google_map.locating+"...");t.addClass("active");navigator.geolocation.getCurrentPosition(function(n){var r=n.coords.latitude,i=n.coords.longitude;e.set({$el:t}).update(r,i).sync().center()})},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()}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf-google-map").exists()&&(typeof google=="undefined"?e.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){e(n).find(".acf-google-map").each(function(){acf.fields.location.set({$el:e(this)}).init()})}})}):e(n).find(".acf-google-map").each(function(){acf.fields.location.set({$el:e(this)}).init()}))});e(document).on("click",".acf-google-map .acf-sprite-remove",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).clear();e(this).blur()});e(document).on("click",".acf-google-map .acf-sprite-locate",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).locate();e(this).blur()});e(document).on("click",".acf-google-map .title h4",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).edit()});e(document).on("keydown",".acf-google-map .search",function(e){if(e.which==13)return!1});e(document).on("blur",".acf-google-map .search",function(t){var n=e(this).closest(".acf-google-map");n.find(".input-lat").val()&&n.addClass("active")})})(jQuery);(function(e){var t=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(t){e.extend(this,t);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"};this.o.library=="uploadedTo"&&(this.o.query.uploadedTo=acf.o.post_id);return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return},add:function(e){var n=t.div;n.find(".acf-image-image").attr("src",e.url);n.find(".acf-image-value").val(e.id).trigger("change");n.addClass("active");n.closest(".field").removeClass("error")},edit:function(){var n=this.$input.val();t.div=this.$el;t.clear_frame();t.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}});t.frame.on("open",function(){t.frame.content._mode!="browse"&&t.frame.content.mode("browse");t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var r=t.frame.state().get("selection"),i=wp.media.attachment(n);e.isEmptyObject(i.changed)&&i.fetch();r.add(i)});t.frame.on("close",function(){t.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 n=this;t.div=this.$el;t.clear_frame();t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(n.o.query),multiple:n.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]});acf.media.frame.on("content:activate",function(){var t=null,r=null;try{t=acf.media.frame.content.get().toolbar;r=t.get("filters")}catch(i){}if(!r)return!1;e.each(r.filters,function(e,t){t.props.type="image"});if(n.o.library=="uploadedTo"){r.$el.find('option[value="uploaded"]').remove();r.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>");e.each(r.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})}r.$el.find("option").each(function(){var t=e(this).attr("value");if(t=="uploaded"&&n.o.library=="all")return;t.indexOf("image")===-1&&e(this).remove()});r.$el.val("image").trigger("change")});acf.media.frame.on("select",function(){selection=t.frame.state().get("selection");if(selection){var e=0;selection.each(function(r){e++;if(e>1){var s=t.div.closest("td"),o=s.closest(".row"),u=o.closest(".repeater"),a=s.attr("data-field_key"),f="td .acf-image-uploader:first";a&&(f='td[data-field_key="'+a+'"] .acf-image-uploader');o.next(".row").exists()||u.find(".add-row-end").trigger("click");t.div=o.next(".row").find(f)}var l={id:r.id,url:r.attributes.url};r.attributes.sizes&&r.attributes.sizes[n.o.preview_size]&&(l.url=r.attributes.sizes[n.o.preview_size].url);acf.fields.image.add(l)})}});acf.media.frame.open();return!1},text:{title_add:"Select Image",title_edit:"Edit Image"}};e(document).on("click",".acf-image-uploader .acf-button-edit",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).edit()});e(document).on("click",".acf-image-uploader .acf-button-delete",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).remove()});e(document).on("click",".acf-image-uploader .add-image",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).popup()})})(jQuery);(function(e){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="radio"]:checked');this.$other=this.$el.find('input[type="text"]');return this},change:function(){if(this.$input.val()=="other"){this.$other.attr("name",this.$input.attr("name"));this.$other.show()}else{this.$other.attr("name","");this.$other.hide()}}};e(document).on("change",'.acf-radio-list input[type="radio"]',function(t){acf.fields.radio.set({$el:e(this).closest(".acf-radio-list")}).change()})})(jQuery);(function(e){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(t){e.extend(this,t);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);return this},init:function(){var t=this;if(acf.helpers.is_clone_field(this.$input))return;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(){t.$input.trigger("change")}});var n=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(r){if(n.hasClass("loading")||n.hasClass("no-results"))return;if(e(this).scrollTop()+e(this).innerHeight()>=e(this).get(0).scrollHeight){var i=parseInt(n.attr("data-paged"));n.attr("data-paged",i+1);t.set({$el:n}).fetch()}});this.fetch()},fetch:function(){var t=this,n=this.$el;n.addClass("loading");e.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:e.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(e){t.set({$el:n}).render(e)}})},render:function(t){var n=this;this.$el.removeClass("no-results").removeClass("loading");this.o.paged==1&&this.$el.find(".relationship_left li:not(.load-more)").remove();if(!t||!t.html){this.$el.addClass("no-results");return}this.$el.find(".relationship_left .load-more").before(t.html);t.next_page_exists||this.$el.addClass("no-results");this.$left.find("a").each(function(){var t=e(this).attr("data-post_id");n.$right.find('a[data-post_id="'+t+'"]').exists()&&e(this).parent().addClass("hide")})},add:function(e){var t=e.attr("data-post_id"),n=e.html();if(this.$right.find("a").length>=this.o.max){alert(acf.l10n.relationship.max.replace("{max}",this.o.max));return!1}if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var r={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},i=_.template(acf.l10n.relationship.tmpl_li,r);this.$right.find(".relationship_list").append(i);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")}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:e(this)}).init()})});e(document).on("change",".acf_relationship .select-post_type",function(t){var n=e(this).val(),r=e(this).closest(".acf_relationship");r.attr("data-post_type",n);r.attr("data-paged",1);acf.fields.relationship.set({$el:r}).fetch()});e(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(t){t.preventDefault();acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).add(e(this));e(this).blur()});e(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(t){t.preventDefault();acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).remove(e(this));e(this).blur()});e(document).on("keyup",".acf_relationship input.relationship_search",function(t){var n=e(this).val(),r=e(this).closest(".acf_relationship");r.attr("data-s",n);r.attr("data-paged",1);clearTimeout(acf.fields.relationship.timeout);acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:r}).fetch()},500)});e(document).on("keypress",".acf_relationship input.relationship_search",function(e){e.which==13&&e.preventDefault()})})(jQuery);(function(e){e(document).on("acf/setup_fields",function(t,n){if(!e(n).find(".acf-tab").exists())return;e(n).find(".acf-tab").each(function(){var t=e(this),n=t.parent(),r=n.parent(),i=t.attr("data-id"),s=t.html();if(t.hasClass("acf-tab-added"))return;t.addClass("acf-tab-added");r.children(".acf-tab-group").exists()||r.children(".field_type-tab:first").before('<ul class="hl clearfix acf-tab-group"></ul>');r.children(".acf-tab-group").append('<li class="field_key-'+i+'" data-field_key="'+i+'"><a class="acf-tab-button" href="#" data-id="'+i+'">'+s+"</a></li>")});e(n).find(".acf-tab-group").each(function(){e(this).find("li:first a").trigger("click")});acf.conditional_logic.change()});e(document).on("click",".acf-tab-button",function(t){t.preventDefault();var n=e(this),r=n.closest("ul"),i=r.parent(),s=n.attr("data-id");r.find("li").removeClass("active");n.parent("li").addClass("active");i.children(".field_type-tab").each(function(){var t=e(this);t.hasClass("field_key-"+s)?t.nextUntil(".field_type-tab").removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"):t.nextUntil(".field_type-tab").removeClass("acf-tab_group-show").addClass("acf-tab_group-hide")});n.trigger("blur")});e(document).on("acf/conditional_logic/hide",function(t,n,r){if(!n.parent().hasClass("acf-tab-group"))return;var i=n.attr("data-field_key");n.siblings(":visible").exists()?n.siblings(":visible").first().children("a").trigger("click"):e('.field_type-tab[data-field_key="'+i+'"]').nextUntil(".field_type-tab").removeClass("acf-tab_group-show").addClass("acf-tab_group-hide")});e(document).on("acf/conditional_logic/show",function(e,t,n){if(!t.parent().hasClass("acf-tab-group"))return;if(t.hasClass("active")){t.children("a").trigger("click");return}if(t.siblings(".active").hasClass("acf-conditional_logic-hide")){t.children("a").trigger("click");return}})})(jQuery);(function(e){acf.validation={status:!0,disabled:!1,run:function(){var t=this;t.status=!0;e(".field.required, .form-field.required").each(function(){t.validate(e(this))})},validate:function(t){t.data("validation",!0);if(t.is(":hidden"))return;if(t.hasClass("acf-conditional_logic-hide"))return;if(t.hasClass("acf-tab_group-hide")&&t.prevAll(".field_type-tab:first").hasClass("acf-conditional_logic-hide"))return;t.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()==""&&t.data("validation",!1);if(t.find(".acf_wysiwyg").exists()&&typeof tinyMCE=="object"){t.data("validation",!0);var n=t.find(".wp-editor-area").attr("id"),r=tinyMCE.get(n);r&&!r.getContent()&&t.data("validation",!1)}if(t.find("select").exists()){t.data("validation",!0);(t.find("select").val()=="null"||!t.find("select").val())&&t.data("validation",!1)}if(t.find('input[type="radio"]').exists()){t.data("validation",!1);t.find('input[type="radio"]:checked').exists()&&t.data("validation",!0)}if(t.find('input[type="checkbox"]').exists()){t.data("validation",!1);t.find('input[type="checkbox"]:checked').exists()&&t.data("validation",!0)}if(t.find(".acf_relationship").exists()){t.data("validation",!1);t.find(".acf_relationship .relationship_right input").exists()&&t.data("validation",!0)}if(t.find(".repeater").exists()){t.data("validation",!1);t.find(".repeater tr.row").exists()&&t.data("validation",!0)}if(t.find(".acf-gallery").exists()){t.data("validation",!1);t.find(".acf-gallery .thumbnail").exists()&&t.data("validation",!0)}e(document).trigger("acf/validate_field",[t]);if(!t.data("validation")){this.status=!1;t.closest(".field").addClass("error");if(t.data("validation_message")){var i=t.find("p.label:first"),s=null;i.children(".acf-error-message").remove();i.append('<span class="acf-error-message"><i class="bit"></i>'+t.data("validation_message")+"</span>")}}}};e(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(t){e(this).closest(".field").removeClass("error")});e(document).on("click","#save-post",function(){acf.validation.disabled=!0});e(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;acf.validation.run();if(!acf.validation.status){var t=e(this);t.siblings("#message").remove();t.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>");e("#publish").removeClass("button-primary-disabled");e("#ajax-loading").attr("style","");e("#publishing-action .spinner").hide();return!1}e(".acf_postbox.acf-hidden").remove();return!0})})(jQuery);(function(e){var t=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(t){e.extend(this,t);this.$textarea=this.$el.find("textarea");this.o=acf.helpers.get_atts(this.$el);this.o.id=this.$textarea.attr("id");return this},has_tinymce:function(){var e=!1;typeof tinyMCE=="object"&&(e=!0);return e},init:function(){if(acf.helpers.is_clone_field(this.$textarea))return;var t=e.extend({},tinyMCE.settings);tinyMCE.settings.theme_advanced_buttons1="";tinyMCE.settings.theme_advanced_buttons2="";tinyMCE.settings.theme_advanced_buttons3="";tinyMCE.settings.theme_advanced_buttons4="";acf.helpers.isset(this.toolbars[this.o.toolbar])&&e.each(this.toolbars[this.o.toolbar],function(e,t){tinyMCE.settings[e]=t});tinyMCE.execCommand("mceAddControl",!1,this.o.id);e(document).trigger("acf/wysiwyg/load",this.o.id);this.add_events();tinyMCE.settings=t;wpActiveEditor=null},add_events:function(){var t=this.o.id,n=tinyMCE.get(t);if(!n)return;var r=e("#wp-"+t+"-wrap"),i=e(n.getBody());r.on("click",function(){e(document).trigger("acf/wysiwyg/click",t)});i.on("focus",function(){e(document).trigger("acf/wysiwyg/focus",t)});i.on("blur",function(){e(document).trigger("acf/wysiwyg/blur",t)})},destroy:function(){try{var e=this.o.id,t=tinyMCE.get(e);if(t){var n=t.getContent();tinyMCE.execCommand("mceRemoveControl",!1,e);this.$textarea.val(n)}}catch(r){}wpActiveEditor=null}};e(document).on("acf/setup_fields",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()});setTimeout(function(){e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})},0)});e(document).on("acf/remove_fields",function(n,r){if(!t.has_tinymce())return;r.find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})});e(document).on("acf/wysiwyg/click",function(t,n){wpActiveEditor=n;container=e("#wp-"+n+"-wrap").closest(".field").removeClass("error")});e(document).on("acf/wysiwyg/focus",function(t,n){wpActiveEditor=n;container=e("#wp-"+n+"-wrap").closest(".field").removeClass("error")});e(document).on("acf/wysiwyg/blur",function(t,n){wpActiveEditor=null;var r=tinyMCE.get(n);if(!r)return;var i=r.getElement();r.save();e(i).trigger("change")});e(document).on("acf/sortable_start",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})});e(document).on("acf/sortable_stop",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})});e(window).load(function(){if(!t.has_tinymce())return;var n=e("#wp-content-wrap").exists(),r=e("#wp-acf_settings-wrap").exists();mode="tmce";r&&e("#wp-acf_settings-wrap").hasClass("html-active")&&
14
- (mode="html");setTimeout(function(){r&&mode=="html"&&e("#acf_settings-tmce").trigger("click")},1);setTimeout(function(){r&&mode=="html"&&e("#acf_settings-html").trigger("click");n&&t.set({$el:e("#wp-content-wrap")}).add_events()},11)});e(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var t=e(this).closest(".acf_wysiwyg"),n=t.attr("data-upload");n=="no"&&e("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})})(jQuery);
10
  *
11
  * @param N/A
12
  * @return N/A
13
+ */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(e){acf.helpers.isset=function(){var e=arguments,t=e.length,n=0,r;if(t===0)throw new Error("Empty isset");while(n!==t){if(e[n]===r||e[n]===null)return!1;n++}return!0};acf.helpers.get_atts=function(t){var n={};e.each(t[0].attributes,function(e,t){t.name.substr(0,5)=="data-"&&(n[t.name.replace("data-","")]=t.value)});return n};acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;var n=e.split("."),r=t.split("."),i=0,s=Math.max(n.length,r.length);for(;i<s;i++){if(n[i]&&!r[i]&&parseInt(n[i])>0||parseInt(n[i])>parseInt(r[i]))return 1;if(r[i]&&!n[i]&&parseInt(r[i])>0||parseInt(n[i])<parseInt(r[i]))return-1}return 0};acf.helpers.uniqid=function(){var e=new Date;return e.getTime()};acf.helpers.url_to_object=function(e){var t={},n=e.split("&");for(i in n){var r=n[i].split("=");t[decodeURIComponent(r[0])]=decodeURIComponent(r[1])}return t};acf.helpers.sortable=function(t,n){n.children().each(function(){e(this).width(e(this).width())});return n};acf.helpers.is_clone_field=function(e){return e.attr("name")&&e.attr("name").indexOf("[acfcloneindex]")!=-1?!0:!1};acf.helpers.add_message=function(t,n){var t=e('<div class="acf-message-wrapper"><div class="message updated"><p>'+t+"</p></div></div>");n.prepend(t);setTimeout(function(){t.animate({opacity:0},250,function(){t.remove()})},1500)};e.fn.exists=function(){return e(this).length>0};acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){if(!this.frame)return;this.frame.detach();this.frame.dispose();this.frame=null},type:function(){var e="thickbox";typeof wp=="object"&&(e="backbone");return e},init:function(){var t=wp.media.view.AttachmentCompat.prototype;t.orig_render=t.render;t.orig_dispose=t.dispose;t.className="compat-item acf_postbox no_box";t.render=function(){var t=this;if(t.ignore_render)return this;this.orig_render();setTimeout(function(){var n=t.$el.closest(".media-modal");if(n.hasClass("acf-media-modal"))return;if(n.find(".media-frame-router .acf-expand-details").exists())return;var r=e(['<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(""));r.on("click",function(e){e.preventDefault();n.hasClass("acf-expanded")?n.removeClass("acf-expanded"):n.addClass("acf-expanded")});n.find(".media-frame-router").append(r)},0);clearTimeout(acf.media.render_timout);acf.media.render_timout=setTimeout(function(){e(document).trigger("acf/setup_fields",[t.$el])},50);return this};t.dispose=function(){e(document).trigger("acf/remove_fields",[this.$el]);this.orig_dispose()};t.save=function(e){var t={},n={};e&&e.preventDefault();_.each(this.$el.serializeArray(),function(e){if(e.name.slice(-2)==="[]"){e.name=e.name.replace("[]","");typeof n[e.name]=="undefined"&&(n[e.name]=-1);n[e.name]++;e.name+="["+n[e.name]+"]"}t[e.name]=e.value});this.ignore_render=!0;this.model.saveCompat(t)}}};acf.conditional_logic={items:[],init:function(){var t=this;e(document).on("change",".field input, .field textarea, .field select",function(){e("#acf-has-changed").exists()&&e("#acf-has-changed").val(1);t.change()});e(document).on("acf/setup_fields",function(e,n){t.change()});t.change()},change:function(){var t=this;e.each(this.items,function(n,r){var i=e(".field_key-"+r.field);i.each(function(){var n=!0;r.allorany=="any"&&(n=!1);var i=e(this),s=!0;e.each(r.rules,function(o,u){var a=e(".field_key-"+u.field);if(a.hasClass("sub_field")){a=i.siblings(".field_key-"+u.field);s=!1;if(!a.exists()){i.parents("tr").each(function(){a=e(this).find(".field_key-"+u.field);if(a.exists())return!1});s=!0}}if(i.parent("tr").parent().parent("table").parent(".layout").exists()){s=!0;i.is("th")&&a.is("th")&&(a=i.closest(".layout").find("td.field_key-"+u.field))}var f=t.calculate(u,a,i);if(r.allorany=="all"){if(f==0){n=!1;return!1}}else if(f==1){n=!0;return!1}});i.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank");if(n){i.find("input, textarea, select").removeAttr("disabled");i.addClass("acf-conditional_logic-show");e(document).trigger("acf/conditional_logic/show",[i,r])}else{i.find("input, textarea, select").attr("disabled","disabled");i.addClass("acf-conditional_logic-hide");s||i.addClass("acf-show-blank");e(document).trigger("acf/conditional_logic/hide",[i,r])}})})},calculate:function(t,n,r){var i=!1;if(n.hasClass("field_type-true_false")||n.hasClass("field_type-checkbox")||n.hasClass("field_type-radio")){var s=n.find('input[value="'+t.value+'"]:checked').exists();t.operator=="=="?s&&(i=!0):s||(i=!0)}else{var o=n.find("input, textarea, select").last().val();e.isArray(o)||(o=[o]);t.operator=="=="?e.inArray(t.value,o)>-1&&(i=!0):e.inArray(t.value,o)<0&&(i=!0)}return i}};e(document).ready(function(){acf.conditional_logic.init();e(".acf_postbox > .inside > .options").each(function(){e(this).closest(".acf_postbox").addClass(e(this).attr("data-layout"))});e('#metakeyselect option[value^="field_"]').remove()});e(window).load(function(){acf.media.init();setTimeout(function(){try{e.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(t){}e(document).trigger("acf/setup_fields",[e("#poststuff")])},10)});acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}})(jQuery);(function(e){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};e(document).ready(function(){acf.screen.post_id=acf.o.post_id;acf.screen.nonce=acf.o.nonce;if(e("#icl-als-first").length>0){var t=e("#icl-als-first").children("a").attr("href"),n=new RegExp("lang=([^&#]*)"),r=n.exec(t);acf.screen.lang=r[1]}});e(document).on("acf/update_field_groups",function(){if(!acf.screen.post_id||!e.isNumeric(acf.screen.post_id))return!1;e.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(t){if(!t)return!1;e(".acf_postbox").addClass("acf-hidden");e(".acf_postbox-toggle").addClass("acf-hidden");if(t.length==0)return!1;e.each(t,function(t,n){var r=e("#acf_"+n),i=e('#adv-settings .acf_postbox-toggle[for="acf_'+n+'-hide"]');r.removeClass("acf-hidden hide-if-js");i.removeClass("acf-hidden");i.find('input[type="checkbox"]').attr("checked","checked");r.find(".acf-replace-with-fields").each(function(){var t=e(this);e.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:n,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(n){t.replaceWith(n);e(document).trigger("acf/setup_fields",r)}})})});e.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:t[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e("#acf_style").html(t)}})}})});e(document).on("change","#page_template",function(){acf.screen.page_template=e(this).val();e(document).trigger("acf/update_field_groups")});e(document).on("change","#parent_id",function(){var t=e(this).val();if(t!=""){acf.screen.page_type="child";acf.screen.page_parent=t}else{acf.screen.page_type="parent";acf.screen.page_parent=0}e(document).trigger("acf/update_field_groups")});e(document).on("change",'#post-formats-select input[type="radio"]',function(){var t=e(this).val();t=="0"&&(t="standard");acf.screen.post_format=t;e(document).trigger("acf/update_field_groups")});e(document).on("change",'.categorychecklist input[type="checkbox"]',function(){if(e(this).closest(".categorychecklist").hasClass("no-ajax"))return;setTimeout(function(){var t=[];e('.categorychecklist input[type="checkbox"]:checked').each(function(){if(e(this).is(":hidden")||e(this).is(":disabled"))return;t.push(e(this).val())});acf.screen.post_category=t;acf.screen.taxonomy=t;e(document).trigger("acf/update_field_groups")},1)})})(jQuery);(function(e){var t=acf.fields.color_picker={$el:null,$input:null,set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="text"]');return this},init:function(){var e=this.$input;if(acf.helpers.is_clone_field(e))return;this.$input.wpColorPicker({change:function(t,n){e.trigger("change")}})}};e(document).on("acf/setup_fields",function(n,r){e(r).find(".acf-color_picker").each(function(){t.set({$el:e(this)}).init()})})})(jQuery);(function(e){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="text"]');this.$hidden=this.$el.find('input[type="hidden"]');this.o=acf.helpers.get_atts(this.$el);return this},init:function(){if(acf.helpers.is_clone_field(this.$hidden))return;this.$input.val(this.$hidden.val());var t=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(t);this.$input.datepicker("option","dateFormat",this.o.display_format);e("body > #ui-datepicker-div").length>0&&e("#ui-datepicker-div").wrap('<div class="ui-acf" />')},blur:function(){this.$input.val()||this.$hidden.val("")}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:e(this)}).init()})});e(document).on("blur",'.acf-date_picker input[type="text"]',function(t){acf.fields.date_picker.set({$el:e(this).parent()}).blur()})})(jQuery);(function(e){var t=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(t){e.extend(this,t);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={};this.o.library=="uploadedTo"&&(this.o.query.uploadedTo=acf.o.post_id);return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return},add:function(e){var n=t.div;n.find(".acf-file-icon").attr("src",e.icon);n.find(".acf-file-title").text(e.title);n.find(".acf-file-name").text(e.name).attr("href",e.url);n.find(".acf-file-size").text(e.size);n.find(".acf-file-value").val(e.id).trigger("change");n.addClass("active");n.closest(".field").removeClass("error")},edit:function(){var n=this.$input.val();t.div=this.$el;t.clear_frame();t.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}});t.frame.on("open",function(){t.frame.content._mode!="browse"&&t.frame.content.mode("browse");t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var r=t.frame.state().get("selection"),i=wp.media.attachment(n);e.isEmptyObject(i.changed)&&i.fetch();r.add(i)});t.frame.on("close",function(){t.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 n=this;t.div=this.$el;t.clear_frame();t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(n.o.query),multiple:n.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]});acf.media.frame.on("content:activate",function(){var t=null,r=null;try{t=acf.media.frame.content.get().toolbar;r=t.get("filters")}catch(i){}if(!r)return!1;if(n.o.library=="uploadedTo"){r.$el.find('option[value="uploaded"]').remove();r.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>");e.each(r.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})}});acf.media.frame.on("select",function(){selection=t.frame.state().get("selection");if(selection){var e=0;selection.each(function(n){e++;if(e>1){var r=t.div.closest("td"),s=r.closest(".row"),o=s.closest(".repeater"),u=r.attr("data-field_key"),a="td .acf-file-uploader:first";u&&(a='td[data-field_key="'+u+'"] .acf-file-uploader');s.next(".row").exists()||o.find(".add-row-end").trigger("click");t.div=s.next(".row").find(a)}var f={id:n.id,title:n.attributes.title,name:n.attributes.filename,url:n.attributes.url,icon:n.attributes.icon,size:n.attributes.filesize};acf.fields.file.add(f)})}});acf.media.frame.open();return!1}};e(document).on("click",".acf-file-uploader .acf-button-edit",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).edit()});e(document).on("click",".acf-file-uploader .acf-button-delete",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).remove()});e(document).on("click",".acf-file-uploader .add-file",function(t){t.preventDefault();acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).popup()})})(jQuery);(function(e){acf.fields.location={$el:null,$input:null,o:{},geocoder:!1,map:!1,maps:{},set:function(t){e.extend(this,t);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.geocoder=new google.maps.Geocoder;return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return;this.render()},render:function(){var e=this,t=this.$el,n={zoom:14,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],n);var r=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);r.map=this.map;r.bindTo("bounds",this.map);this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map});this.map.$el=this.$el;var i=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();i&&s&&this.update(i,s).center();google.maps.event.addListener(r,"place_changed",function(t){var n=this.map.$el,r=n.find(".search").val();n.find(".input-address").val(r);n.find(".title h4").text(r);var i=this.getPlace();if(i.geometry){var s=i.geometry.location.lat(),o=i.geometry.location.lng();e.set({$el:n}).update(s,o).center()}else e.geocoder.geocode({address:r},function(t,r){if(r!=google.maps.GeocoderStatus.OK){console.log("Geocoder failed due to: "+r);return}if(!t[0]){console.log("No results found");return}i=t[0];var s=i.geometry.location.lat(),o=i.geometry.location.lng();e.set({$el:n}).update(s,o).center()})});google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,n=this.map.marker.getPosition(),r=n.lat(),i=n.lng();e.set({$el:t}).update(r,i).sync()});google.maps.event.addListener(this.map,"click",function(t){var n=this.$el,r=t.latLng.lat(),i=t.latLng.lng();e.set({$el:n}).update(r,i).sync()});this.maps[this.o.id]=this.map},update:function(e,t){var n=new google.maps.LatLng(e,t);this.$el.find(".input-lat").val(e);this.$el.find(".input-lng").val(t).trigger("change");this.map.marker.setPosition(n);this.map.marker.setVisible(!0);this.$el.addClass("active");this.$el.closest(".field").removeClass("error");return this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,n=this.o.lng;if(e){t=e.lat();n=e.lng()}var r=new google.maps.LatLng(t,n);this.map.setCenter(r)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),n=new google.maps.LatLng(t.lat(),t.lng());this.geocoder.geocode({latLng:n},function(t,n){if(n!=google.maps.GeocoderStatus.OK){console.log("Geocoder failed due to: "+n);return}if(!t[0]){console.log("No results found");return}var r=t[0];e.find(".title h4").text(r.formatted_address);e.find(".input-address").val(r.formatted_address).trigger("change")});return this},locate:function(){var e=this,t=this.$el;if(!navigator.geolocation){alert(acf.l10n.google_map.browser_support);return this}t.find(".title h4").text(acf.l10n.google_map.locating+"...");t.addClass("active");navigator.geolocation.getCurrentPosition(function(n){var r=n.coords.latitude,i=n.coords.longitude;e.set({$el:t}).update(r,i).sync().center()})},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()}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf-google-map").exists()&&(typeof google=="undefined"?e.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){e(n).find(".acf-google-map").each(function(){acf.fields.location.set({$el:e(this)}).init()})}})}):e(n).find(".acf-google-map").each(function(){acf.fields.location.set({$el:e(this)}).init()}))});e(document).on("click",".acf-google-map .acf-sprite-remove",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).clear();e(this).blur()});e(document).on("click",".acf-google-map .acf-sprite-locate",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).locate();e(this).blur()});e(document).on("click",".acf-google-map .title h4",function(t){t.preventDefault();acf.fields.location.set({$el:e(this).closest(".acf-google-map")}).edit()});e(document).on("keydown",".acf-google-map .search",function(e){if(e.which==13)return!1});e(document).on("blur",".acf-google-map .search",function(t){var n=e(this).closest(".acf-google-map");n.find(".input-lat").val()&&n.addClass("active")});e(document).on("acf/fields/tab/show",function(e,t){t.attr("data-field_type")=="google_map"&&acf.fields.location.set({$el:t.find(".acf-google-map")}).refresh()})})(jQuery);(function(e){var t=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(t){e.extend(this,t);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"};this.o.library=="uploadedTo"&&(this.o.query.uploadedTo=acf.o.post_id);return this},init:function(){if(acf.helpers.is_clone_field(this.$input))return},add:function(e){var n=t.div;n.find(".acf-image-image").attr("src",e.url);n.find(".acf-image-value").val(e.id).trigger("change");n.addClass("active");n.closest(".field").removeClass("error")},edit:function(){var n=this.$input.val();t.div=this.$el;t.clear_frame();t.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}});t.frame.on("open",function(){t.frame.content._mode!="browse"&&t.frame.content.mode("browse");t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var r=t.frame.state().get("selection"),i=wp.media.attachment(n);e.isEmptyObject(i.changed)&&i.fetch();r.add(i)});t.frame.on("close",function(){t.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 n=this;t.div=this.$el;t.clear_frame();t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(n.o.query),multiple:n.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]});acf.media.frame.on("content:activate",function(){var t=null,r=null;try{t=acf.media.frame.content.get().toolbar;r=t.get("filters")}catch(i){}if(!r)return!1;e.each(r.filters,function(e,t){t.props.type="image"});if(n.o.library=="uploadedTo"){r.$el.find('option[value="uploaded"]').remove();r.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>");e.each(r.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})}r.$el.find("option").each(function(){var t=e(this).attr("value");if(t=="uploaded"&&n.o.library=="all")return;t.indexOf("image")===-1&&e(this).remove()});r.$el.val("image").trigger("change")});acf.media.frame.on("select",function(){selection=t.frame.state().get("selection");if(selection){var e=0;selection.each(function(r){e++;if(e>1){var s=t.div.closest("td"),o=s.closest(".row"),u=o.closest(".repeater"),a=s.attr("data-field_key"),f="td .acf-image-uploader:first";a&&(f='td[data-field_key="'+a+'"] .acf-image-uploader');o.next(".row").exists()||u.find(".add-row-end").trigger("click");t.div=o.next(".row").find(f)}var l={id:r.id,url:r.attributes.url};r.attributes.sizes&&r.attributes.sizes[n.o.preview_size]&&(l.url=r.attributes.sizes[n.o.preview_size].url);acf.fields.image.add(l)})}});acf.media.frame.open();return!1},text:{title_add:"Select Image",title_edit:"Edit Image"}};e(document).on("click",".acf-image-uploader .acf-button-edit",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).edit()});e(document).on("click",".acf-image-uploader .acf-button-delete",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).remove()});e(document).on("click",".acf-image-uploader .add-image",function(t){t.preventDefault();acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).popup()})})(jQuery);(function(e){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(t){e.extend(this,t);this.$input=this.$el.find('input[type="radio"]:checked');this.$other=this.$el.find('input[type="text"]');return this},change:function(){if(this.$input.val()=="other"){this.$other.attr("name",this.$input.attr("name"));this.$other.show()}else{this.$other.attr("name","");this.$other.hide()}}};e(document).on("change",'.acf-radio-list input[type="radio"]',function(t){acf.fields.radio.set({$el:e(this).closest(".acf-radio-list")}).change()})})(jQuery);(function(e){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(t){e.extend(this,t);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);return this},init:function(){var t=this;if(acf.helpers.is_clone_field(this.$input))return;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(){t.$input.trigger("change")}});var n=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(r){if(n.hasClass("loading")||n.hasClass("no-results"))return;if(e(this).scrollTop()+e(this).innerHeight()>=e(this).get(0).scrollHeight){var i=parseInt(n.attr("data-paged"));n.attr("data-paged",i+1);t.set({$el:n}).fetch()}});this.fetch()},fetch:function(){var t=this,n=this.$el;n.addClass("loading");e.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:e.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(e){t.set({$el:n}).render(e)}})},render:function(t){var n=this;this.$el.removeClass("no-results").removeClass("loading");this.o.paged==1&&this.$el.find(".relationship_left li:not(.load-more)").remove();if(!t||!t.html){this.$el.addClass("no-results");return}this.$el.find(".relationship_left .load-more").before(t.html);t.next_page_exists||this.$el.addClass("no-results");this.$left.find("a").each(function(){var t=e(this).attr("data-post_id");n.$right.find('a[data-post_id="'+t+'"]').exists()&&e(this).parent().addClass("hide")})},add:function(e){var t=e.attr("data-post_id"),n=e.html();if(this.$right.find("a").length>=this.o.max){alert(acf.l10n.relationship.max.replace("{max}",this.o.max));return!1}if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var r={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},i=_.template(acf.l10n.relationship.tmpl_li,r);this.$right.find(".relationship_list").append(i);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")}};e(document).on("acf/setup_fields",function(t,n){e(n).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:e(this)}).init()})});e(document).on("change",".acf_relationship .select-post_type",function(t){var n=e(this).val(),r=e(this).closest(".acf_relationship");r.attr("data-post_type",n);r.attr("data-paged",1);acf.fields.relationship.set({$el:r}).fetch()});e(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(t){t.preventDefault();acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).add(e(this));e(this).blur()});e(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(t){t.preventDefault();acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).remove(e(this));e(this).blur()});e(document).on("keyup",".acf_relationship input.relationship_search",function(t){var n=e(this).val(),r=e(this).closest(".acf_relationship");r.attr("data-s",n);r.attr("data-paged",1);clearTimeout(acf.fields.relationship.timeout);acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:r}).fetch()},500)});e(document).on("keypress",".acf_relationship input.relationship_search",function(e){e.which==13&&e.preventDefault()})})(jQuery);(function(e){e(document).on("acf/setup_fields",function(t,n){if(!e(n).find(".acf-tab").exists())return;e(n).find(".acf-tab").each(function(){var t=e(this),n=t.parent(),r=n.parent(),i=t.attr("data-id"),s=t.html();if(t.hasClass("acf-tab-added"))return;t.addClass("acf-tab-added");r.children(".acf-tab-group").exists()||r.children(".field_type-tab:first").before('<ul class="hl clearfix acf-tab-group"></ul>');r.children(".acf-tab-group").append('<li class="field_key-'+i+'" data-field_key="'+i+'"><a class="acf-tab-button" href="#" data-id="'+i+'">'+s+"</a></li>")});e(n).find(".acf-tab-group").each(function(){e(this).find("li:first a").trigger("click")});acf.conditional_logic.change()});e(document).on("click",".acf-tab-button",function(t){t.preventDefault();var n=e(this),r=n.closest("ul"),i=r.parent(),s=n.attr("data-id");r.find("li").removeClass("active");n.parent("li").addClass("active");i.children(".field_type-tab").each(function(){var t=e(this),n=!1;t.hasClass("field_key-"+s)&&(n=!0);t.nextUntil(".field_type-tab").each(function(){if(n){e(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show");e(document).trigger("acf/fields/tab/show",[e(this)])}else{e(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide");e(document).trigger("acf/fields/tab/hide",[e(this)])}})});n.trigger("blur")});e(document).on("acf/conditional_logic/hide",function(t,n,r){if(!n.parent().hasClass("acf-tab-group"))return;var i=n.attr("data-field_key");n.siblings(":visible").exists()?n.siblings(":visible").first().children("a").trigger("click"):e('.field_type-tab[data-field_key="'+i+'"]').nextUntil(".field_type-tab").removeClass("acf-tab_group-show").addClass("acf-tab_group-hide")});e(document).on("acf/conditional_logic/show",function(e,t,n){if(!t.parent().hasClass("acf-tab-group"))return;if(t.hasClass("active")){t.children("a").trigger("click");return}if(t.siblings(".active").hasClass("acf-conditional_logic-hide")){t.children("a").trigger("click");return}})})(jQuery);(function(e){acf.validation={status:!0,disabled:!1,run:function(){var t=this;t.status=!0;e(".field.required, .form-field.required").each(function(){t.validate(e(this))})},validate:function(t){var n=!1;t.data("validation",!0);if(t.is(":hidden")){n=!0;if(t.hasClass("acf-tab_group-hide")){n=!1;var r=t.prevAll(".field_type-tab:first");r.hasClass("acf-conditional_logic-hide")?n=!0:t.prevAll(".acf-tab-group:first").find('.acf-tab-button[data-id="'+r.attr("data-field_key")+'"]').trigger("click")}}t.hasClass("acf-conditional_logic-hide")&&(n=!0);if(n)return;t.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()==""&&t.data("validation",!1);if(t.find(".acf_wysiwyg").exists()&&typeof tinyMCE=="object"){t.data("validation",!0);var i=t.find(".wp-editor-area").attr("id"),s=tinyMCE.get(i);s&&!s.getContent()&&t.data("validation",!1)}if(t.find("select").exists()){t.data("validation",!0);(t.find("select").val()=="null"||!t.find("select").val())&&t.data("validation",!1)}if(t.find('input[type="radio"]').exists()){t.data("validation",!1);t.find('input[type="radio"]:checked').exists()&&t.data("validation",!0)}if(t.find('input[type="checkbox"]').exists()){t.data("validation",!1);t.find('input[type="checkbox"]:checked').exists()&&t.data("validation",!0)}if(t.find(".acf_relationship").exists()){t.data("validation",!1);t.find(".acf_relationship .relationship_right input").exists()&&t.data("validation",!0)}if(t.find(".repeater").exists()){t.data("validation",!1);t.find(".repeater tr.row").exists()&&t.data("validation",!0)}if(t.find(".acf-gallery").exists()){t.data("validation",!1);t.find(".acf-gallery .thumbnail").exists()&&t.data("validation",!0)}e(document).trigger("acf/validate_field",[t]);if(!t.data("validation")){this.status=!1;t.closest(".field").addClass("error");if(t.data("validation_message")){var o=t.find("p.label:first"),u=null;o.children(".acf-error-message").remove();o.append('<span class="acf-error-message"><i class="bit"></i>'+t.data("validation_message")+"</span>")}}}};e(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(t){e(this).closest(".field").removeClass("error")});e(document).on("click","#save-post",function(){acf.validation.disabled=!0});e(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;acf.validation.run();if(!acf.validation.status){var t=e(this);t.siblings("#message").remove();t.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>");e("#publish").removeClass("button-primary-disabled");e("#ajax-loading").attr("style","");e("#publishing-action .spinner").hide();return!1}e(".acf_postbox.acf-hidden").remove();return!0})})(jQuery);(function(e){var t=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(t){e.extend(this,t);this.$textarea=this.$el.find("textarea");this.o=acf.helpers.get_atts(this.$el);this.o.id=this.$textarea.attr("id");return this},has_tinymce:function(){var e=!1;typeof tinyMCE=="object"&&(e=!0);return e},init:function(){if(acf.helpers.is_clone_field(this.$textarea))return;var t=e.extend({},tinyMCE.settings);tinyMCE.settings.theme_advanced_buttons1="";tinyMCE.settings.theme_advanced_buttons2="";tinyMCE.settings.theme_advanced_buttons3="";tinyMCE.settings.theme_advanced_buttons4="";acf.helpers.isset(this.toolbars[this.o.toolbar])&&e.each(this.toolbars[this.o.toolbar],function(e,t){tinyMCE.settings[e]=t});tinyMCE.execCommand("mceAddControl",!1,this.o.id);e(document).trigger("acf/wysiwyg/load",this.o.id);this.add_events();tinyMCE.settings=t;wpActiveEditor=null},add_events:function(){var t=this.o.id,n=tinyMCE.get(t);if(!n)return;var r=e("#wp-"+t+"-wrap"),i=e(n.getBody());r.on("click",function(){e(document).trigger("acf/wysiwyg/click",t)});i.on("focus",function(){e(document).trigger("acf/wysiwyg/focus",t)});i.on("blur",function(){e(document).trigger("acf/wysiwyg/blur",t)})},destroy:function(){try{var e=this.o.id,t=tinyMCE.get(e);if(t){var n=t.getContent();tinyMCE.execCommand("mceRemoveControl",!1,e);this.$textarea.val(n)}}catch(r){}wpActiveEditor=null}};e(document).on("acf/setup_fields",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()});setTimeout(function(){e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})},0)});e(document).on("acf/remove_fields",function(n,r){if(!t.has_tinymce())return;r.find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})});e(document).on("acf/wysiwyg/click",function(t,n){wpActiveEditor=n;container=e("#wp-"+n+"-wrap").closest(".field").removeClass("error")});e(document).on("acf/wysiwyg/focus",function(t,n){wpActiveEditor=n;container=e("#wp-"+n+"-wrap").closest(".field").removeClass("error")});e(document).on("acf/wysiwyg/blur",function(
14
+ t,n){wpActiveEditor=null;var r=tinyMCE.get(n);if(!r)return;var i=r.getElement();r.save();e(i).trigger("change")});e(document).on("acf/sortable_start",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})});e(document).on("acf/sortable_stop",function(n,r){if(!t.has_tinymce())return;e(r).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})});e(window).load(function(){if(!t.has_tinymce())return;var n=e("#wp-content-wrap").exists(),r=e("#wp-acf_settings-wrap").exists();mode="tmce";r&&e("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html");setTimeout(function(){r&&mode=="html"&&e("#acf_settings-tmce").trigger("click")},1);setTimeout(function(){r&&mode=="html"&&e("#acf_settings-html").trigger("click");n&&t.set({$el:e("#wp-content-wrap")}).add_events()},11)});e(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var t=e(this).closest(".acf_wysiwyg"),n=t.attr("data-upload");n=="no"&&e("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})})(jQuery);
lang/acf-fa_IR.mo CHANGED
Binary file
lang/acf-fa_IR.po CHANGED
@@ -4,204 +4,207 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2013-09-15 04:13:48+00:00\n"
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-11-07 08:31+0330\n"
12
- "Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "X-Generator: Poedit 1.5.7\n"
 
 
 
 
15
 
16
- #: acf.php:342
17
  msgid "Field&nbsp;Groups"
18
  msgstr "گروه های زمینه"
19
 
20
- #: acf.php:343 core/controllers/field_groups.php:214
21
  msgid "Advanced Custom Fields"
22
  msgstr "زمینه های دلخواه پیشرفته"
23
 
24
- #: acf.php:344
25
  msgid "Add New"
26
  msgstr "افزودن"
27
 
28
- #: acf.php:345
29
  msgid "Add New Field Group"
30
  msgstr "افزودن گروه زمینه جدید"
31
 
32
- #: acf.php:346
33
  msgid "Edit Field Group"
34
  msgstr "ویرایش گروه زمینه"
35
 
36
- #: acf.php:347
37
  msgid "New Field Group"
38
  msgstr "گروه زمینه جدید"
39
 
40
- #: acf.php:348
41
  msgid "View Field Group"
42
  msgstr "مشاهده گروه زمینه"
43
 
44
- #: acf.php:349
45
  msgid "Search Field Groups"
46
  msgstr "جستجوی گروه های زمینه"
47
 
48
- #: acf.php:350
49
  msgid "No Field Groups found"
50
  msgstr "گروه زمینه ای یافت نشد."
51
 
52
- #: acf.php:351
53
  msgid "No Field Groups found in Trash"
54
  msgstr "گروه زمینه ای در زباله دان یافت نشد."
55
 
56
- #: acf.php:459 core/views/meta_box_options.php:98
57
  msgid "Custom Fields"
58
  msgstr "زمینه های دلخواه"
59
 
60
- #: acf.php:477 acf.php:480
61
  msgid "Field group updated."
62
  msgstr "گروه زمینه بروز شد."
63
 
64
- #: acf.php:478
65
  msgid "Custom field updated."
66
  msgstr "زمینه دلخواه بروز شد."
67
 
68
- #: acf.php:479
69
  msgid "Custom field deleted."
70
  msgstr "زمینه دلخواه حذف شد."
71
 
72
- #. translators: %s: date and time of the revision
73
- #: acf.php:482
74
  msgid "Field group restored to revision from %s"
75
  msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
76
 
77
- #: acf.php:483
78
  msgid "Field group published."
79
  msgstr "گروه زمینه انتشار یافت."
80
 
81
- #: acf.php:484
82
  msgid "Field group saved."
83
  msgstr "گروه زمینه ذخیره شد."
84
 
85
- #: acf.php:485
86
  msgid "Field group submitted."
87
  msgstr "گروه زمینه ارسال شد."
88
 
89
- #: acf.php:486
90
  msgid "Field group scheduled for."
91
  msgstr "گروه زمینه برنامه ریزی شده است برای"
92
 
93
- #: acf.php:487
94
  msgid "Field group draft updated."
95
  msgstr "پیش نویش گروه زمینه بروز شد."
96
 
97
- #: acf.php:622
98
  msgid "Thumbnail"
99
  msgstr "تصویر بندانگشتی"
100
 
101
- #: acf.php:623
102
  msgid "Medium"
103
  msgstr "متوسط"
104
 
105
- #: acf.php:624
106
  msgid "Large"
107
  msgstr "بزرگ"
108
 
109
- #: acf.php:625
110
  msgid "Full"
111
  msgstr "کامل"
112
 
113
- #: core/actions/export.php:23 core/views/meta_box_fields.php:58
114
- msgid "Error"
115
- msgstr "خطا"
116
-
117
- #: core/actions/export.php:30
118
- msgid "No ACF groups selected"
119
- msgstr "هیچ گروه زمینه دلخواه پیشرفته انتخاب نشده است."
120
-
121
- #: core/api.php:1094
122
  msgid "Update"
123
  msgstr "بروزرسانی"
124
 
125
- #: core/api.php:1095
126
  msgid "Post updated"
127
  msgstr "نوشته بروز شد."
128
 
129
- #: core/controllers/addons.php:42 core/controllers/export.php:368
130
- #: core/controllers/field_groups.php:311
 
 
 
 
 
 
 
131
  msgid "Add-ons"
132
  msgstr "افزودنی ها"
133
 
134
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
135
  msgid "Repeater Field"
136
  msgstr "تکرار کننده زمینه"
137
 
138
- #: core/controllers/addons.php:131
139
  msgid "Create infinite rows of repeatable data with this versatile interface!"
140
  msgstr ""
141
  "ایجاد ردیف های بی نهایت از داده های تکرار شونده به وسیله این رابط کاربری چند "
142
  "منظوره!"
143
 
144
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
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:448
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
- #: core/controllers/addons.php:161
169
  msgid "Gravity Forms Field"
170
  msgstr "زمینه فرم های جذب افراد"
171
 
172
- #: core/controllers/addons.php:162
173
  msgid "Creates a select field populated with Gravity Forms!"
174
  msgstr "ایجاد زمینه برای انتخاب تعدادی از افراد به وسیله فرم های جذب افراد!"
175
 
176
- #: core/controllers/addons.php:168
177
  msgid "Date & Time Picker"
178
  msgstr "جمع کننده اطلاعات تاریخ و زمان"
179
 
180
- #: core/controllers/addons.php:169
181
  msgid "jQuery date & time picker"
182
  msgstr "جمع کننده اطلاعات تاریخ و زمان جی کوئری"
183
 
184
- #: core/controllers/addons.php:175
185
  msgid "Location Field"
186
- msgstr "مکان زمینه"
187
 
188
- #: core/controllers/addons.php:176
189
  msgid "Find addresses and coordinates of a desired location"
190
  msgstr "یافتن آدرس و مشخصات مکان مورد نظر"
191
 
192
- #: core/controllers/addons.php:182
193
  msgid "Contact Form 7 Field"
194
  msgstr "زمینه فرم تماس (Contact Form 7)"
195
 
196
- #: core/controllers/addons.php:183
197
  msgid "Assign one or more contact form 7 forms to a post"
198
  msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته"
199
 
200
- #: core/controllers/addons.php:193
201
  msgid "Advanced Custom Fields Add-Ons"
202
  msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
203
 
204
- #: core/controllers/addons.php:196
205
  msgid ""
206
  "The following Add-ons are available to increase the functionality of the "
207
  "Advanced Custom Fields plugin."
@@ -209,7 +212,7 @@ msgstr ""
209
  "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته در "
210
  "دسترس هستند."
211
 
212
- #: core/controllers/addons.php:197
213
  msgid ""
214
  "Each Add-on can be installed as a separate plugin (receives updates) or "
215
  "included in your theme (does not receive updates)."
@@ -217,45 +220,47 @@ msgstr ""
217
  "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
218
  "پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
219
 
220
- #: core/controllers/addons.php:219 core/controllers/addons.php:240
221
  msgid "Installed"
222
  msgstr "نصب شده"
223
 
224
- #: core/controllers/addons.php:221
225
  msgid "Purchase & Install"
226
  msgstr "خرید و نصب"
227
 
228
- #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
229
- #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
230
- #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
 
 
231
  msgid "Download"
232
  msgstr "دریافت"
233
 
234
- #: core/controllers/export.php:50 core/controllers/export.php:159
235
  msgid "Export"
236
  msgstr "برون بری"
237
 
238
- #: core/controllers/export.php:216
239
  msgid "Export Field Groups"
240
  msgstr "برون بری گروه های زمینه"
241
 
242
- #: core/controllers/export.php:221
243
  msgid "Field Groups"
244
  msgstr "گروه های زمینه"
245
 
246
- #: core/controllers/export.php:222
247
  msgid "Select the field groups to be exported"
248
  msgstr "یک گروه زمینه را برای برون بری انتخاب کنید."
249
 
250
- #: core/controllers/export.php:239 core/controllers/export.php:252
251
  msgid "Export to XML"
252
  msgstr "برون بری به فرمت XML"
253
 
254
- #: core/controllers/export.php:242 core/controllers/export.php:267
255
  msgid "Export to PHP"
256
  msgstr "برون بری به فرمت PHP"
257
 
258
- #: core/controllers/export.php:253
259
  msgid ""
260
  "ACF will create a .xml export file which is compatible with the native WP "
261
  "import plugin."
@@ -263,7 +268,7 @@ msgstr ""
263
  "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
264
  "با افزونه Wordpress Importer سازگار است."
265
 
266
- #: core/controllers/export.php:254
267
  msgid ""
268
  "Imported field groups <b>will</b> appear in the list of editable field "
269
  "groups. This is useful for migrating fields groups between Wp websites."
@@ -272,43 +277,43 @@ msgstr ""
272
  "داده خواهند شد</b>. این برای مهاجرت گروه های زمینه در بین سایت های وردپرسی "
273
  "مفید است."
274
 
275
- #: core/controllers/export.php:256
276
  msgid "Select field group(s) from the list and click \"Export XML\""
277
  msgstr ""
278
  "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML )) "
279
  "کلیک کنید."
280
 
281
- #: core/controllers/export.php:257
282
  msgid "Save the .xml file when prompted"
283
  msgstr "ذخیره پرونده .xml موقعی که این پرونده درخواست می شود."
284
 
285
- #: core/controllers/export.php:258
286
  msgid "Navigate to Tools &raquo; Import and select WordPress"
287
  msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس (Wordpress) را انتخاب کنید."
288
 
289
- #: core/controllers/export.php:259
290
  msgid "Install WP import plugin if prompted"
291
- msgstr "نصب افزونه درون ریز وردپرس (Wordpress Importer) اگر درخواست کنید."
292
 
293
- #: core/controllers/export.php:260
294
  msgid "Upload and import your exported .xml file"
295
  msgstr "بارگذاری و درون ریزی پرونده XML برون بری شده شما."
296
 
297
- #: core/controllers/export.php:261
298
  msgid "Select your user and ignore Import Attachments"
299
  msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را رد کنید."
300
 
301
- #: core/controllers/export.php:262
302
  msgid "That's it! Happy WordPressing"
303
  msgstr "موفق باشید و با خوشحالی با وردپرس کار کنید!"
304
 
305
- #: core/controllers/export.php:268
306
  msgid "ACF will create the PHP code to include in your theme."
307
  msgstr ""
308
  "افزونه زمینه های دلخواه پیشرفته کد پی اچ پی (PHP) را در پوسته شما قرار خواهد "
309
  "داد."
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."
@@ -316,7 +321,7 @@ msgstr ""
316
  "گروه های زمینه ثبت نام شده در لیست گروه های زمینه قابل ویرایش <b>نمایش داده "
317
  "نخواهند شد</b>. این برای قرار دادن زمینه ها در پوسته مفید است."
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 "
@@ -328,43 +333,43 @@ msgstr ""
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 ""
334
  "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت PHP )) "
335
  "کلیک کنید."
336
 
337
- #: core/controllers/export.php:273 core/controllers/export.php:302
338
  msgid "Copy the PHP code generated"
339
  msgstr "کپی کردن کد PHP ساخته شده"
340
 
341
- #: core/controllers/export.php:274 core/controllers/export.php:303
342
  msgid "Paste into your functions.php file"
343
  msgstr "چسباندن در پرونده functions.php شما"
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
  "برای فعالسازی افزودنی ها، کد را ویرایش کنید و از آن در اولین خطوط استفاده "
349
  "کنید."
350
 
351
- #: core/controllers/export.php:295
352
  msgid "Export Field Groups to PHP"
353
  msgstr "برون بری گروه های زمینه به فرمت PHP"
354
 
355
- #: core/controllers/export.php:300 core/fields/tab.php:65
356
  msgid "Instructions"
357
  msgstr "دستورالعمل ها"
358
 
359
- #: core/controllers/export.php:309
360
  msgid "Notes"
361
- msgstr "نکته ها:"
362
 
363
- #: core/controllers/export.php:316
364
  msgid "Include in theme"
365
  msgstr "قرار دادن در پوسته"
366
 
367
- #: core/controllers/export.php:317
368
  msgid ""
369
  "The Advanced Custom Fields plugin can be included within a theme. To do so, "
370
  "move the ACF plugin inside your theme and add the following code to your "
@@ -374,7 +379,7 @@ msgstr ""
374
  "برای انجام این کار، افزونه را در کنار پوسته تان انتقال دهید و کدهای زیر را "
375
  "به پرونده functions.php اضافه کنید:"
376
 
377
- #: core/controllers/export.php:323
378
  msgid ""
379
  "To remove all visual interfaces from the ACF plugin, you can use a constant "
380
  "to enable lite mode. Add the following code to your functions.php file "
@@ -384,264 +389,245 @@ msgstr ""
384
  "به طور ثابت برای فعال کردن حالت کم استفاده کنید. کد زیر را به پرونده "
385
  "functions.php خود <b>قبل از</b> تابع include_once اضافه کنید:"
386
 
387
- #: core/controllers/export.php:331
388
  msgid "Back to export"
389
  msgstr "بازگشت به برون بری"
390
 
391
- #: core/controllers/export.php:352
392
- msgid ""
393
- "/**\n"
394
- " * Install Add-ons\n"
395
- " * \n"
396
- " * The following code will include all 4 premium Add-Ons in your theme.\n"
397
- " * Please do not attempt to include a file which does not exist. This will "
398
- "produce an error.\n"
399
- " * \n"
400
- " * The following code assumes you have a folder 'add-ons' inside your "
401
- "theme.\n"
402
- " *\n"
403
- " * IMPORTANT\n"
404
- " * Add-ons may be included in a premium theme/plugin as outlined in the "
405
- "terms and conditions.\n"
406
- " * For more information, please read:\n"
407
- " * - http://www.advancedcustomfields.com/terms-conditions/\n"
408
- " * - http://www.advancedcustomfields.com/resources/getting-started/"
409
- "including-lite-mode-in-a-plugin-theme/\n"
410
- " */"
411
- msgstr ""
412
- "/**\n"
413
- " * نصب افزودنی ها\n"
414
- " * \n"
415
- " * کد زیر شامل همه 4 افزودنی ویژه در پوسته شما خواهد شد.\n"
416
- " * لطفا سعی نکنید که یک پرونده را که وجود ندارد قرار دهید. این اشتباه خواهد "
417
- "بود.\n"
418
- " * \n"
419
- " * کد زیر تظاهر می کند که شما یک پوشه با نام (add-ons) داخل پوسته تان "
420
- "دارید.\n"
421
- " *\n"
422
- " * مهم\n"
423
- " * افزودنی ها ممکن است در پوسته یا افزونه قرار گرفته شده باشند همانطور که "
424
- "در شرایط و ضوابط مشخص شده است.\n"
425
- " * برای کسب اطلاعات بیشتر لطفا به این آدرس ها بروید:\n"
426
- " * - http://www.advancedcustomfields.com/terms-conditions/\n"
427
- " * - http://www.advancedcustomfields.com/resources/getting-started/"
428
- "including-lite-mode-in-a-plugin-theme/\n"
429
- " */"
430
-
431
- #: core/controllers/export.php:375
432
- msgid ""
433
- "/**\n"
434
- " * Register Field Groups\n"
435
- " *\n"
436
- " * The register_field_group function accepts 1 array which holds the "
437
- "relevant data to register a field group\n"
438
- " * You may edit the array as you see fit. However, this may result in "
439
- "errors if the array is not compatible with ACF\n"
440
- " */"
441
- msgstr ""
442
- "/**\n"
443
- " * ثبت نام گروه های زمینه\n"
444
- " *\n"
445
- " * تابع ثبت نام گروه زمینه (register_field_group) یک آرایه را که داده های "
446
- "مربوط به ثبت نام یک گروه زمینه را نگه می دارد، می پذیرد.\n"
447
- " * شما ممکن است یک آرایه را طوری که می بینید ویرایش کنید. هرچند، ممکن است "
448
- "در خطاها نتیجه بدهد اگر آرایه با افزونه زمینه های دلخواه پیشرفته سازگار "
449
- "نباشد.\n"
450
- "\n"
451
- " */"
452
-
453
- #: core/controllers/export.php:426
454
  msgid "No field groups were selected"
455
  msgstr "گروه زمینه ای انتخاب نشده است."
456
 
457
- #: core/controllers/field_group.php:375 core/controllers/field_group.php:437
458
- #: core/controllers/field_groups.php:148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  msgid "Fields"
460
  msgstr "زمینه ها"
461
 
462
- #: core/controllers/field_group.php:376
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgid "Location"
464
  msgstr "مکان"
465
 
466
- #: core/controllers/field_group.php:377
467
  msgid "Options"
468
  msgstr "تنظیمات"
469
 
470
- #: core/controllers/field_group.php:439
471
  msgid "Show Field Key:"
472
  msgstr "نمایش کلید زمینه:"
473
 
474
- #: core/controllers/field_group.php:440 core/fields/page_link.php:138
475
- #: core/fields/page_link.php:159 core/fields/post_object.php:328
476
- #: core/fields/post_object.php:349 core/fields/select.php:224
477
- #: core/fields/select.php:243 core/fields/taxonomy.php:341
478
- #: core/fields/user.php:285 core/fields/wysiwyg.php:229
479
- #: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232
480
  msgid "No"
481
  msgstr "خیر"
482
 
483
- #: core/controllers/field_group.php:441 core/fields/page_link.php:137
484
- #: core/fields/page_link.php:158 core/fields/post_object.php:327
485
- #: core/fields/post_object.php:348 core/fields/select.php:223
486
- #: core/fields/select.php:242 core/fields/taxonomy.php:340
487
- #: core/fields/user.php:284 core/fields/wysiwyg.php:228
488
- #: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231
489
  msgid "Yes"
490
  msgstr "بله"
491
 
492
- #: core/controllers/field_group.php:618
493
  msgid "Front Page"
494
  msgstr "برگه جلو"
495
 
496
- #: core/controllers/field_group.php:619
497
  msgid "Posts Page"
498
  msgstr "برگه نوشته ها"
499
 
500
- #: core/controllers/field_group.php:620
501
  msgid "Top Level Page (parent of 0)"
502
  msgstr "بالاترین سطح برگه (مادر از 0) "
503
 
504
- #: core/controllers/field_group.php:621
505
  msgid "Parent Page (has children)"
506
  msgstr "برگه مادر (دارای فرزند)"
507
 
508
- #: core/controllers/field_group.php:622
509
  msgid "Child Page (has parent)"
510
  msgstr "برگه فرزند (دارای مادر)"
511
 
512
- #: core/controllers/field_group.php:630
513
  msgid "Default Template"
514
  msgstr "پوسته پیش فرض"
515
 
516
- #: core/controllers/field_group.php:707
517
  msgid "Publish"
518
  msgstr "انتشار"
519
 
520
- #: core/controllers/field_group.php:708
521
  msgid "Pending Review"
522
  msgstr "در انتظار بررسی"
523
 
524
- #: core/controllers/field_group.php:709
525
  msgid "Draft"
526
  msgstr "پیش نویس"
527
 
528
- #: core/controllers/field_group.php:710
529
  msgid "Future"
530
  msgstr "شاخص"
531
 
532
- #: core/controllers/field_group.php:711
533
  msgid "Private"
534
  msgstr "خصوصی"
535
 
536
- #: core/controllers/field_group.php:712
537
  msgid "Revision"
538
  msgstr "بازنگری"
539
 
540
- #: core/controllers/field_group.php:713
541
  msgid "Trash"
542
  msgstr "زباله دان"
543
 
544
- #: core/controllers/field_group.php:726
545
  msgid "Super Admin"
546
  msgstr "مدیرکل"
547
 
548
- #: core/controllers/field_group.php:741 core/controllers/field_group.php:762
549
- #: core/controllers/field_group.php:769 core/fields/file.php:186
550
- #: core/fields/image.php:170 core/fields/page_link.php:109
551
- #: core/fields/post_object.php:274 core/fields/post_object.php:298
552
- #: core/fields/relationship.php:595 core/fields/relationship.php:619
553
- #: core/fields/user.php:229
 
554
  msgid "All"
555
  msgstr "همه"
556
 
557
- #: core/controllers/field_groups.php:147
558
  msgid "Title"
559
  msgstr "عنوان"
560
 
561
- #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
 
562
  msgid "Changelog"
563
  msgstr "تغییرات"
564
 
565
- #: core/controllers/field_groups.php:217
566
  msgid "See what's new in"
567
  msgstr "تغییرات"
568
 
569
- #: core/controllers/field_groups.php:217
570
  msgid "version"
571
  msgstr "نسخه"
572
 
573
- #: core/controllers/field_groups.php:219
574
  msgid "Resources"
575
  msgstr "منابع"
576
 
577
- #: core/controllers/field_groups.php:221
578
  msgid "Getting Started"
579
  msgstr "شروع"
580
 
581
- #: core/controllers/field_groups.php:222
582
  msgid "Field Types"
583
  msgstr "انواع زمینه"
584
 
585
- #: core/controllers/field_groups.php:223
586
  msgid "Functions"
587
  msgstr "توابع"
588
 
589
- #: core/controllers/field_groups.php:224
590
  msgid "Actions"
591
  msgstr "اعمال"
592
 
593
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:638
 
594
  msgid "Filters"
595
  msgstr "فیلترها"
596
 
597
- #: core/controllers/field_groups.php:226
598
  msgid "'How to' guides"
599
  msgstr "راهنماهای کوتاه (نمونه کدها برای کدنویسی)"
600
 
601
- #: core/controllers/field_groups.php:227
602
  msgid "Tutorials"
603
  msgstr "آموزش ها"
604
 
605
- #: core/controllers/field_groups.php:232
606
  msgid "Created by"
607
  msgstr "برنامه نویسی شده توسط"
608
 
609
- #: core/controllers/field_groups.php:235
610
  msgid "Vote"
611
  msgstr "رأی دادن"
612
 
613
- #: core/controllers/field_groups.php:236
614
  msgid "Follow"
615
  msgstr "دنبال کردن"
616
 
617
- #: core/controllers/field_groups.php:248
618
  msgid "Welcome to Advanced Custom Fields"
619
  msgstr "به افزونه زمینه های دلخواه پیشرفته خوش آمدید!"
620
 
621
- #: core/controllers/field_groups.php:249
622
  msgid "Thank you for updating to the latest version!"
623
  msgstr "از شما برای بروزرسانی به آخرین نسخه سپاسگزاریم!"
624
 
625
- #: core/controllers/field_groups.php:249
626
  msgid "is more polished and enjoyable than ever before. We hope you like it."
627
  msgstr ""
628
  "استفاده شما از این افزونه برای ما بهتر و لذت بخش تر از هر زمان دیگری است. ما "
629
  "امیدواریم شما این افزونه را که توسط قائم امیدی به زبان شیرین پارسی ترجمه شده "
630
  "است، دوست داشته باشید."
631
 
632
- #: core/controllers/field_groups.php:256
633
  msgid "What’s New"
634
  msgstr "چه چیزی جدید است؟"
635
 
636
- #: core/controllers/field_groups.php:259
637
  msgid "Download Add-ons"
638
  msgstr "دریافت افزودنی ها"
639
 
640
- #: core/controllers/field_groups.php:313
641
  msgid "Activation codes have grown into plugins!"
642
  msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
643
 
644
- #: core/controllers/field_groups.php:314
645
  msgid ""
646
  "Add-ons are now activated by downloading and installing individual plugins. "
647
  "Although these plugins will not be hosted on the wordpress.org repository, "
@@ -651,19 +637,19 @@ msgstr ""
651
  "افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد. هر افزودنی برای دریافت "
652
  "بروزرسانی ها راه معمول را ادامه خواهد داد."
653
 
654
- #: core/controllers/field_groups.php:320
655
  msgid "All previous Add-ons have been successfully installed"
656
  msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند."
657
 
658
- #: core/controllers/field_groups.php:324
659
  msgid "This website uses premium Add-ons which need to be downloaded"
660
  msgstr "این سایت از افزودنی های ویژه استفاده می کند که به دریافت نیاز دارند."
661
 
662
- #: core/controllers/field_groups.php:324
663
  msgid "Download your activated Add-ons"
664
  msgstr "دریافت افزودنی های فعالسازی شده شما"
665
 
666
- #: core/controllers/field_groups.php:329
667
  msgid ""
668
  "This website does not use premium Add-ons and will not be affected by this "
669
  "change."
@@ -671,35 +657,35 @@ msgstr ""
671
  "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
672
  "نخواهد گرفت."
673
 
674
- #: core/controllers/field_groups.php:339
675
  msgid "Easier Development"
676
- msgstr "توسعه اسان"
677
 
678
- #: core/controllers/field_groups.php:341
679
  msgid "New Field Types"
680
  msgstr "انواع زمینه جدید"
681
 
682
- #: core/controllers/field_groups.php:343
683
  msgid "Taxonomy Field"
684
  msgstr "زمینه طبقه بندی"
685
 
686
- #: core/controllers/field_groups.php:344
687
  msgid "User Field"
688
  msgstr "زمینه کاربر"
689
 
690
- #: core/controllers/field_groups.php:345
691
  msgid "Email Field"
692
  msgstr "زمینه پست الکترونیکی"
693
 
694
- #: core/controllers/field_groups.php:346
695
  msgid "Password Field"
696
  msgstr "زمینه رمزعبور"
697
 
698
- #: core/controllers/field_groups.php:348
699
  msgid "Custom Field Types"
700
  msgstr "انواع زمینه دلخواه"
701
 
702
- #: core/controllers/field_groups.php:349
703
  msgid ""
704
  "Creating your own field type has never been easier! Unfortunately, version 3 "
705
  "field types are not compatible with version 4."
@@ -707,24 +693,24 @@ msgstr ""
707
  "ایجاد نوع زمینه خود شما هرگز آسان تر نشده است! متأسفانه، انواع زمینه های "
708
  "نسخه 3 با نسخه 4 سازگار نیستند."
709
 
710
- #: core/controllers/field_groups.php:350
711
  msgid "Migrating your field types is easy, please"
712
  msgstr ""
713
  "مهاجرت انواع زمینه های شما آسان است. پس لطفا افزونه خود را بروزرسانی کنید."
714
 
715
- #: core/controllers/field_groups.php:350
716
  msgid "follow this tutorial"
717
- msgstr "این آموزش را دنبال کنید."
718
 
719
- #: core/controllers/field_groups.php:350
720
  msgid "to learn more."
721
  msgstr "کسب اطلاعات بیشتر"
722
 
723
- #: core/controllers/field_groups.php:352
724
  msgid "Actions &amp; Filters"
725
  msgstr "اعمال و فیلترها"
726
 
727
- #: core/controllers/field_groups.php:353
728
  msgid ""
729
  "All actions & filters have received a major facelift to make customizing ACF "
730
  "even easier! Please"
@@ -732,35 +718,35 @@ msgstr ""
732
  "همه اعمال و فیلترها مورد قبول یک برنامه نویس بزرگ که افزونه زمینه های دلخواه "
733
  "پیشرفته وردپرس را به آسانی شخصی سازی می کند هستند! "
734
 
735
- #: core/controllers/field_groups.php:353
736
  msgid "read this guide"
737
  msgstr "این راهنما را بخوانید."
738
 
739
- #: core/controllers/field_groups.php:353
740
  msgid "to find the updated naming convention."
741
  msgstr "برای پیدا کردن قرارداد نام گذاری بروزشده."
742
 
743
- #: core/controllers/field_groups.php:355
744
  msgid "Preview draft is now working!"
745
  msgstr "پیش نمایش پیش نویسی که در حال کار است!"
746
 
747
- #: core/controllers/field_groups.php:356
748
  msgid "This bug has been squashed along with many other little critters!"
749
  msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!"
750
 
751
- #: core/controllers/field_groups.php:356
752
  msgid "See the full changelog"
753
  msgstr "مشاهده تغییرات کامل"
754
 
755
- #: core/controllers/field_groups.php:360
756
  msgid "Important"
757
  msgstr "مهم"
758
 
759
- #: core/controllers/field_groups.php:362
760
  msgid "Database Changes"
761
  msgstr "تغییرات پایگاه داده"
762
 
763
- #: core/controllers/field_groups.php:363
764
  msgid ""
765
  "Absolutely <strong>no</strong> changes have been made to the database "
766
  "between versions 3 and 4. This means you can roll back to version 3 without "
@@ -769,11 +755,11 @@ msgstr ""
769
  "<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
770
  "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
771
 
772
- #: core/controllers/field_groups.php:365
773
  msgid "Potential Issues"
774
  msgstr "مسائل بالقوه"
775
 
776
- #: core/controllers/field_groups.php:366
777
  msgid ""
778
  "Do to the sizable changes surounding Add-ons, field types and action/"
779
  "filters, your website may not operate correctly. It is important that you "
@@ -782,19 +768,19 @@ msgstr ""
782
  "با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه ها و عمل/فیلترها، ممکن است "
783
  "سایت شما به درستی عمل نکند. این مهم است که شما راهمای کامل را بخوانید."
784
 
785
- #: core/controllers/field_groups.php:366
786
  msgid "Migrating from v3 to v4"
787
  msgstr "مهاجرت از نسخه 3 به نسخه 4"
788
 
789
- #: core/controllers/field_groups.php:366
790
  msgid "guide to view the full list of changes."
791
  msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات"
792
 
793
- #: core/controllers/field_groups.php:369
794
  msgid "Really Important!"
795
  msgstr "واقعا مهم!"
796
 
797
- #: core/controllers/field_groups.php:369
798
  msgid ""
799
  "If you updated the ACF plugin without prior knowledge of such changes, "
800
  "please roll back to the latest"
@@ -802,19 +788,19 @@ msgstr ""
802
  "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
803
  "تغییرات بروزرسانی کردید، لطفا به آخرین نسخه برگردید "
804
 
805
- #: core/controllers/field_groups.php:369
806
  msgid "version 3"
807
  msgstr "نسخه 3"
808
 
809
- #: core/controllers/field_groups.php:369
810
  msgid "of this plugin."
811
  msgstr "از این افزونه."
812
 
813
- #: core/controllers/field_groups.php:374
814
  msgid "Thank You"
815
  msgstr "از شما متشکرم"
816
 
817
- #: core/controllers/field_groups.php:375
818
  msgid ""
819
  "A <strong>BIG</strong> thank you to everyone who has helped test the version "
820
  "4 beta and for all the support I have received."
@@ -823,25 +809,25 @@ msgstr ""
823
  "کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
824
  "شما متشکرم."
825
 
826
- #: core/controllers/field_groups.php:376
827
  msgid "Without you all, this release would not have been possible!"
828
  msgstr ""
829
  "بدون همه شما فارسی سازی و انتشار این نسخه امکان پذیر نبود! با تشکر ((قائم "
830
  "امیدی)) و ((Elliot Condon))"
831
 
832
- #: core/controllers/field_groups.php:380
833
  msgid "Changelog for"
834
  msgstr "تغییرات برای"
835
 
836
- #: core/controllers/field_groups.php:396
837
  msgid "Learn more"
838
- msgstr "بیشتر یاد بگیرید."
839
 
840
- #: core/controllers/field_groups.php:402
841
  msgid "Overview"
842
  msgstr "بازنگری"
843
 
844
- #: core/controllers/field_groups.php:404
845
  msgid ""
846
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
847
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
@@ -852,59 +838,59 @@ msgstr ""
852
  "این است که همه اعمال افزودنی ها جداگانه است و باید به صورت جدا دریافت، نصب و "
853
  "بروزرسانی شوند."
854
 
855
- #: core/controllers/field_groups.php:406
856
  msgid ""
857
  "This page will assist you in downloading and installing each available Add-"
858
  "on."
859
  msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
860
 
861
- #: core/controllers/field_groups.php:408
862
  msgid "Available Add-ons"
863
  msgstr "افزودنی های موجود"
864
 
865
- #: core/controllers/field_groups.php:410
866
  msgid "The following Add-ons have been detected as activated on this website."
867
  msgstr "افزودنی های زیر شناسایی شده اند تا در این سایت فعالسازی شوند."
868
 
869
- #: core/controllers/field_groups.php:423
870
  msgid "Name"
871
  msgstr "نام"
872
 
873
- #: core/controllers/field_groups.php:424
874
  msgid "Activation Code"
875
  msgstr "کد فعالسازی"
876
 
877
- #: core/controllers/field_groups.php:456
878
  msgid "Flexible Content"
879
  msgstr "محتوای انعطاف پذیر"
880
 
881
- #: core/controllers/field_groups.php:466
882
  msgid "Installation"
883
  msgstr "نصب"
884
 
885
- #: core/controllers/field_groups.php:468
886
  msgid "For each Add-on available, please perform the following:"
887
  msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:"
888
 
889
- #: core/controllers/field_groups.php:470
890
  msgid "Download the Add-on plugin (.zip file) to your desktop"
891
  msgstr "دریافت افزونه افزودنی (پرونده ZIP) در دسکتاپ شما"
892
 
893
- #: core/controllers/field_groups.php:471
894
  msgid "Navigate to"
895
  msgstr "ناوبری به"
896
 
897
- #: core/controllers/field_groups.php:471
898
  msgid "Plugins > Add New > Upload"
899
  msgstr "افزونه ها > افزودن > بارگذاری"
900
 
901
- #: core/controllers/field_groups.php:472
902
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
903
  msgstr ""
904
  "از بارگذار برای کاوش استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب و نصب "
905
  "نمایید."
906
 
907
- #: core/controllers/field_groups.php:473
908
  msgid ""
909
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
910
  "link"
@@ -912,506 +898,487 @@ msgstr ""
912
  "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک ((لینک فعال کردن افزونه)) "
913
  "کلیک کنید."
914
 
915
- #: core/controllers/field_groups.php:474
916
  msgid "The Add-on is now installed and activated!"
917
  msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
918
 
919
- #: core/controllers/field_groups.php:488
920
  msgid "Awesome. Let's get to work"
921
  msgstr "شگفت انگیزه، نه؟ پس بیا شروع به کار کنیم."
922
 
923
- #: core/controllers/input.php:519
924
  msgid "Expand Details"
925
  msgstr "بازکردن جزئیات"
926
 
927
- #: core/controllers/input.php:520
928
  msgid "Collapse Details"
929
  msgstr "باز کردن جزئیات"
930
 
931
- #: core/controllers/input.php:523
932
  msgid "Validation Failed. One or more fields below are required."
933
  msgstr ""
934
  "اعتبارسنجی شکست خورد. از زمینه های زیر یک یا چند زمینه مورد نیاز هستند."
935
 
936
- #: core/controllers/upgrade.php:86
937
  msgid "Upgrade"
938
  msgstr "بروزرسانی"
939
 
940
- #: core/controllers/upgrade.php:139
941
  msgid "What's new"
942
  msgstr "چه چیزی جدید است؟"
943
 
944
- #: core/controllers/upgrade.php:150
945
  msgid "credits"
946
- msgstr "credits"
947
 
948
- #: core/controllers/upgrade.php:684
949
  msgid "Modifying field group options 'show on page'"
950
  msgstr "گزینه های اصلاح گروه زمینه (نمایش در برگه)"
951
 
952
- #: core/controllers/upgrade.php:738
953
  msgid "Modifying field option 'taxonomy'"
954
  msgstr "گزینه های اصلاح زمینه (طبقه بندی)"
955
 
956
- #: core/controllers/upgrade.php:835
957
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
958
  msgstr "حرکت کاربر زمینه های دلخواه از wp_options به wp_usermeta"
959
 
960
- #: core/fields/_base.php:124 core/views/meta_box_location.php:74
961
- msgid "Basic"
962
- msgstr "پایه"
963
-
964
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
965
  msgid "Checkbox"
966
  msgstr "جعبه انتخاب"
967
 
968
- #: core/fields/checkbox.php:20 core/fields/radio.php:19
969
- #: core/fields/select.php:19 core/fields/true_false.php:20
970
  msgid "Choice"
971
  msgstr "گزینه"
972
 
973
- #: core/fields/checkbox.php:137 core/fields/radio.php:144
974
- #: core/fields/select.php:177
975
  msgid "Choices"
976
  msgstr "گزینه ها"
977
 
978
- #: core/fields/checkbox.php:138 core/fields/select.php:178
979
  msgid "Enter each choice on a new line."
980
- msgstr "هر گزینه را در یک خط جدید وارد کنید!"
981
 
982
- #: core/fields/checkbox.php:139 core/fields/select.php:179
983
  msgid "For more control, you may specify both a value and label like this:"
984
  msgstr ""
985
  "برای کنترل بیشتر، شما ممکن است هر دو مقدار و برچسب را شبیه به این مشخص کنید:"
986
 
987
- #: core/fields/checkbox.php:140 core/fields/radio.php:150
988
- #: core/fields/select.php:180
989
  msgid "red : Red"
990
  msgstr "قرمز : قرمز"
991
 
992
- #: core/fields/checkbox.php:140 core/fields/radio.php:151
993
- #: core/fields/select.php:180
994
  msgid "blue : Blue"
995
  msgstr "آبی : آبی"
996
 
997
- #: core/fields/checkbox.php:157 core/fields/color_picker.php:89
998
- #: core/fields/email.php:106 core/fields/number.php:116
999
- #: core/fields/radio.php:193 core/fields/select.php:197
1000
- #: core/fields/text.php:116 core/fields/textarea.php:96
1001
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
1002
  msgid "Default Value"
1003
  msgstr "مقدار پیش فرض"
1004
 
1005
- #: core/fields/checkbox.php:158 core/fields/select.php:198
1006
  msgid "Enter each default value on a new line"
1007
- msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید!"
1008
 
1009
- #: core/fields/checkbox.php:174 core/fields/message.php:20
1010
- #: core/fields/radio.php:209 core/fields/tab.php:20
1011
  msgid "Layout"
1012
  msgstr "چیدمان"
1013
 
1014
- #: core/fields/checkbox.php:185 core/fields/radio.php:220
1015
  msgid "Vertical"
1016
  msgstr "عمودی"
1017
 
1018
- #: core/fields/checkbox.php:186 core/fields/radio.php:221
1019
  msgid "Horizontal"
1020
  msgstr "افقی"
1021
 
1022
- #: core/fields/color_picker.php:19
1023
  msgid "Color Picker"
1024
  msgstr "چیننده رنگ"
1025
 
1026
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
1027
  msgid "jQuery"
1028
  msgstr "جی کوئری"
1029
 
1030
- #: core/fields/date_picker/date_picker.php:22
1031
- msgid "Date Picker"
1032
- msgstr "چیننده تاریخ"
1033
-
1034
- #: core/fields/date_picker/date_picker.php:30
1035
- msgid "Done"
1036
- msgstr "انجام شده"
1037
-
1038
- #: core/fields/date_picker/date_picker.php:31
1039
- msgid "Today"
1040
- msgstr "امروز"
1041
-
1042
- #: core/fields/date_picker/date_picker.php:34
1043
- msgid "Show a different month"
1044
- msgstr "نمایش یک ماه مختلف"
1045
-
1046
- #: core/fields/date_picker/date_picker.php:105
1047
- msgid "Save format"
1048
- msgstr "ذخیره فرمت"
1049
-
1050
- #: core/fields/date_picker/date_picker.php:106
1051
- msgid ""
1052
- "This format will determin the value saved to the database and returned via "
1053
- "the API"
1054
- msgstr ""
1055
- "این فرمت مقدار ذخیره شده را برای پایگاه داده تعیین خواهد کرد و از طریق رابط "
1056
- "برنامه نویسی (API) برمی گردد."
1057
-
1058
- #: core/fields/date_picker/date_picker.php:107
1059
- msgid "\"yymmdd\" is the most versatile save format. Read more about"
1060
- msgstr "(روز/ماه/سال) بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر!"
1061
-
1062
- #: core/fields/date_picker/date_picker.php:107
1063
- #: core/fields/date_picker/date_picker.php:123
1064
- msgid "jQuery date formats"
1065
- msgstr "قالب های تاریخ جی کوئری"
1066
-
1067
- #: core/fields/date_picker/date_picker.php:121
1068
- msgid "Display format"
1069
- msgstr "فرمت نمایش"
1070
-
1071
- #: core/fields/date_picker/date_picker.php:122
1072
- msgid "This format will be seen by the user when entering a value"
1073
- msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد."
1074
-
1075
- #: core/fields/date_picker/date_picker.php:123
1076
- msgid ""
1077
- "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1078
- "about"
1079
- msgstr ""
1080
- "(روز/ماه/سال) و (ماه/روز/سال) پر استفاده ترین قالب های نمایش تاریخ می باشند. "
1081
- "اطلاعات بیشتر!"
1082
-
1083
- #: core/fields/date_picker/date_picker.php:137
1084
- msgid "Week Starts On"
1085
- msgstr "هفته شروع می شود در"
1086
-
1087
- #: core/fields/dummy.php:19
1088
  msgid "Dummy"
1089
  msgstr "ساختگی"
1090
 
1091
- #: core/fields/email.php:19
1092
  msgid "Email"
1093
  msgstr "پست الکترونیکی"
1094
 
1095
- #: core/fields/email.php:107 core/fields/number.php:117
1096
- #: core/fields/text.php:117 core/fields/textarea.php:97
1097
- #: core/fields/wysiwyg.php:172
1098
  msgid "Appears when creating a new post"
1099
  msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود."
1100
 
1101
- #: core/fields/email.php:123 core/fields/number.php:133
1102
- #: core/fields/password.php:105 core/fields/text.php:131
1103
- #: core/fields/textarea.php:111
1104
  msgid "Placeholder Text"
1105
  msgstr "نگهدارنده مکان متن"
1106
 
1107
- #: core/fields/email.php:124 core/fields/number.php:134
1108
- #: core/fields/password.php:106 core/fields/text.php:132
1109
- #: core/fields/textarea.php:112
1110
  msgid "Appears within the input"
1111
  msgstr "در داخل ورودی نمایش داده می شود."
1112
 
1113
- #: core/fields/email.php:138 core/fields/number.php:148
1114
- #: core/fields/password.php:120 core/fields/text.php:146
1115
  msgid "Prepend"
1116
  msgstr "موکول کردن اعلامیه"
1117
 
1118
- #: core/fields/email.php:139 core/fields/number.php:149
1119
- #: core/fields/password.php:121 core/fields/text.php:147
1120
  msgid "Appears before the input"
1121
  msgstr "قبل از ورودی نمایش داده می شود."
1122
 
1123
- #: core/fields/email.php:153 core/fields/number.php:163
1124
- #: core/fields/password.php:135 core/fields/text.php:161
1125
  msgid "Append"
1126
  msgstr "افزودن"
1127
 
1128
- #: core/fields/email.php:154 core/fields/number.php:164
1129
- #: core/fields/password.php:136 core/fields/text.php:162
1130
  msgid "Appears after the input"
1131
  msgstr "بعد از ورودی نمایش داده می شود."
1132
 
1133
- #: core/fields/file.php:19
1134
  msgid "File"
1135
  msgstr "پرونده"
1136
 
1137
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
 
1138
  msgid "Content"
1139
  msgstr "محتوا"
1140
 
1141
- #: core/fields/file.php:26
1142
  msgid "Select File"
1143
  msgstr "انتخاب پرونده"
1144
 
1145
- #: core/fields/file.php:27
1146
  msgid "Edit File"
1147
  msgstr "ویرایش پرونده"
1148
 
1149
- #: core/fields/file.php:28
1150
  msgid "Update File"
1151
  msgstr "بروزرسانی پرونده"
1152
 
1153
- #: core/fields/file.php:29 core/fields/image.php:30
1154
  msgid "uploaded to this post"
1155
  msgstr "بارگذاری شده در این نوشته"
1156
 
1157
- #: core/fields/file.php:123
1158
  msgid "No File Selected"
1159
  msgstr "هیچ پرونده ای انتخاب نشده است."
1160
 
1161
- #: core/fields/file.php:123
1162
  msgid "Add File"
1163
  msgstr "افزودن پرونده"
1164
 
1165
- #: core/fields/file.php:153 core/fields/image.php:118
1166
- #: core/fields/taxonomy.php:365
1167
  msgid "Return Value"
1168
  msgstr "مقدار بازگشت"
1169
 
1170
- #: core/fields/file.php:164
1171
  msgid "File Object"
1172
  msgstr "موضوع پرونده"
1173
 
1174
- #: core/fields/file.php:165
1175
  msgid "File URL"
1176
  msgstr "آدرس پرونده"
1177
 
1178
- #: core/fields/file.php:166
1179
  msgid "File ID"
1180
  msgstr "شناسه پرونده"
1181
 
1182
- #: core/fields/file.php:175 core/fields/image.php:158
1183
  msgid "Library"
1184
  msgstr "کتابخانه"
1185
 
1186
- #: core/fields/file.php:187 core/fields/image.php:171
1187
  msgid "Uploaded to post"
1188
  msgstr "بارگذاری شده در نوشته"
1189
 
1190
- #: core/fields/image.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1191
  msgid "Image"
1192
  msgstr "تصویر"
1193
 
1194
- #: core/fields/image.php:27
1195
  msgid "Select Image"
1196
  msgstr "انتخاب تصویر"
1197
 
1198
- #: core/fields/image.php:28
1199
  msgid "Edit Image"
1200
  msgstr "ویرایش تصویر"
1201
 
1202
- #: core/fields/image.php:29
1203
  msgid "Update Image"
1204
  msgstr "بروزرسانی تصویر"
1205
 
1206
- #: core/fields/image.php:83
1207
  msgid "Remove"
1208
  msgstr "پاک کردن"
1209
 
1210
- #: core/fields/image.php:84 core/views/meta_box_fields.php:122
1211
  msgid "Edit"
1212
  msgstr "ویرایش"
1213
 
1214
- #: core/fields/image.php:90
1215
  msgid "No image selected"
1216
  msgstr "هیچ تصویری انتخاب نشده است."
1217
 
1218
- #: core/fields/image.php:90
1219
  msgid "Add Image"
1220
  msgstr "افزودن تصویر"
1221
 
1222
- #: core/fields/image.php:119 core/fields/relationship.php:570
1223
  msgid "Specify the returned value on front end"
1224
  msgstr "تعیین مقدار برگشت داده شده در پایان"
1225
 
1226
- #: core/fields/image.php:129
1227
  msgid "Image Object"
1228
  msgstr "موضوع تصویر"
1229
 
1230
- #: core/fields/image.php:130
1231
  msgid "Image URL"
1232
  msgstr "آدرس تصویر"
1233
 
1234
- #: core/fields/image.php:131
1235
  msgid "Image ID"
1236
  msgstr "شناسه تصویر"
1237
 
1238
- #: core/fields/image.php:139
1239
  msgid "Preview Size"
1240
- msgstr "پیش نمایش حجم"
1241
 
1242
- #: core/fields/image.php:140
1243
  msgid "Shown when entering data"
1244
  msgstr "هنگام وارد کردن داده ها نمایش داده شود."
1245
 
1246
- #: core/fields/image.php:159
1247
  msgid "Limit the media library choice"
1248
  msgstr "محدود کردن گزینه کتابخانه چندرسانه ای"
1249
 
1250
- #: core/fields/message.php:19 core/fields/message.php:70
1251
- #: core/fields/true_false.php:79
1252
  msgid "Message"
1253
  msgstr "پیام"
1254
 
1255
- #: core/fields/message.php:71
1256
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1257
  msgstr ""
1258
  "متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد."
1259
 
1260
- #: core/fields/message.php:72
1261
  msgid "Please note that all text will first be passed through the wp function "
1262
  msgstr ""
1263
  "لطفا توجه داشته باشید که برای اولین بار تمام متن را از طریق تابع وردپرس "
1264
  "انتقال دهید."
1265
 
1266
- #: core/fields/number.php:19
1267
  msgid "Number"
1268
  msgstr "شماره"
1269
 
1270
- #: core/fields/number.php:178
1271
  msgid "Minimum Value"
1272
  msgstr "حداقل مقدار"
1273
 
1274
- #: core/fields/number.php:194
1275
  msgid "Maximum Value"
1276
  msgstr "حداکثر مقدار"
1277
 
1278
- #: core/fields/number.php:210
1279
  msgid "Step Size"
1280
  msgstr "اندازه مرحله"
1281
 
1282
- #: core/fields/page_link.php:18
1283
  msgid "Page Link"
1284
  msgstr "پیوند برگه"
1285
 
1286
- #: core/fields/page_link.php:19 core/fields/post_object.php:19
1287
- #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1288
- #: core/fields/user.php:19
1289
  msgid "Relational"
1290
  msgstr "ارتباط"
1291
 
1292
- #: core/fields/page_link.php:103 core/fields/post_object.php:268
1293
- #: core/fields/relationship.php:589 core/fields/relationship.php:668
1294
- #: core/views/meta_box_location.php:75
1295
  msgid "Post Type"
1296
  msgstr "نوع نوشته"
1297
 
1298
- #: core/fields/page_link.php:127 core/fields/post_object.php:317
1299
- #: core/fields/select.php:214 core/fields/taxonomy.php:331
1300
- #: core/fields/user.php:275
1301
  msgid "Allow Null?"
1302
  msgstr "آیا صفر اجازه می دهد؟"
1303
 
1304
- #: core/fields/page_link.php:148 core/fields/post_object.php:338
1305
- #: core/fields/select.php:233
1306
  msgid "Select multiple values?"
1307
  msgstr "آیا چندین مقدار انتخاب شوند؟"
1308
 
1309
- #: core/fields/password.php:19
1310
  msgid "Password"
1311
  msgstr "رمزعبور"
1312
 
1313
- #: core/fields/post_object.php:18
1314
  msgid "Post Object"
1315
  msgstr "موضوع نوشته"
1316
 
1317
- #: core/fields/post_object.php:292 core/fields/relationship.php:613
1318
  msgid "Filter from Taxonomy"
1319
  msgstr "فیلتر شده از طبقه بندی"
1320
 
1321
- #: core/fields/radio.php:18
1322
  msgid "Radio Button"
1323
  msgstr "دکمه رادیویی"
1324
 
1325
- #: core/fields/radio.php:102 core/views/meta_box_location.php:91
1326
  msgid "Other"
1327
  msgstr "دیگر"
1328
 
1329
- #: core/fields/radio.php:145
1330
  msgid "Enter your choices one per line"
1331
- msgstr "گزینه های خود را در هر خط وارد کنید!"
1332
 
1333
- #: core/fields/radio.php:147
1334
  msgid "Red"
1335
  msgstr "قرمز"
1336
 
1337
- #: core/fields/radio.php:148
1338
  msgid "Blue"
1339
  msgstr "آبی"
1340
 
1341
- #: core/fields/radio.php:172
1342
  msgid "Add 'other' choice to allow for custom values"
1343
- msgstr "افزودن گزینه ای دیگر به مقادیر دلخواه اجازه می دهد."
1344
 
1345
- #: core/fields/radio.php:184
1346
  msgid "Save 'other' values to the field's choices"
1347
  msgstr "ذخیره مقادیر دیگر برای گزینه های زمینه"
1348
 
1349
- #: core/fields/relationship.php:18
1350
  msgid "Relationship"
1351
  msgstr "ارتباط"
1352
 
1353
- #: core/fields/relationship.php:29
1354
  msgid "Maximum values reached ( {max} values )"
1355
  msgstr "مقادیر به حداکثر رسیده اند { (حداکثر) مقادیر }."
1356
 
1357
- #: core/fields/relationship.php:425
1358
  msgid "Search..."
1359
  msgstr "جستجو . . ."
1360
 
1361
- #: core/fields/relationship.php:436
1362
  msgid "Filter by post type"
1363
  msgstr "فیلتر شده توسط نوع نوشته"
1364
 
1365
- #: core/fields/relationship.php:569
1366
  msgid "Return Format"
1367
  msgstr "فرمت بازگشت"
1368
 
1369
- #: core/fields/relationship.php:580
1370
  msgid "Post Objects"
1371
  msgstr "موضوعات نوشته"
1372
 
1373
- #: core/fields/relationship.php:581
1374
  msgid "Post IDs"
1375
  msgstr "شناسه های نوشته"
1376
 
1377
- #: core/fields/relationship.php:647
1378
  msgid "Search"
1379
  msgstr "جستجو"
1380
 
1381
- #: core/fields/relationship.php:648
1382
  msgid "Post Type Select"
1383
  msgstr "انتخاب نوع نوشته"
1384
 
1385
- #: core/fields/relationship.php:656
1386
  msgid "Elements"
1387
  msgstr "عناصر"
1388
 
1389
- #: core/fields/relationship.php:657
1390
  msgid "Selected elements will be displayed in each result"
1391
  msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد."
1392
 
1393
- #: core/fields/relationship.php:666 core/views/meta_box_options.php:105
1394
  msgid "Featured Image"
1395
  msgstr "تصویر شاخص"
1396
 
1397
- #: core/fields/relationship.php:667
1398
  msgid "Post Title"
1399
  msgstr "عنوان نوشته"
1400
 
1401
- #: core/fields/relationship.php:679
1402
  msgid "Maximum posts"
1403
  msgstr "حداکثر نوشته ها"
1404
 
1405
- #: core/fields/select.php:18 core/fields/select.php:109
1406
- #: core/fields/taxonomy.php:322 core/fields/user.php:266
1407
  msgid "Select"
1408
  msgstr "انتخاب"
1409
 
1410
- #: core/fields/tab.php:19
1411
  msgid "Tab"
1412
  msgstr "تب"
1413
 
1414
- #: core/fields/tab.php:68
1415
  msgid ""
1416
  "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1417
  "fields together under separate tab headings."
@@ -1419,7 +1386,7 @@ msgstr ""
1419
  "استفاده از ((تب زمینه ها)) برای سازماندهی بهتر صفحه ویرایش توسط گروه بندی "
1420
  "زمینه های شما با هم تحت سرفصل تب جدا شده"
1421
 
1422
- #: core/fields/tab.php:69
1423
  msgid ""
1424
  "All the fields following this \"tab field\" (or until another \"tab field\" "
1425
  "is defined) will be grouped together."
@@ -1427,171 +1394,207 @@ msgstr ""
1427
  "همه زمینه های تحت این >تب زمینه< (یا تا زمانی دیگر که >تب زمینه< تعریف شده "
1428
  "است) با هم گروه بندی می شوند."
1429
 
1430
- #: core/fields/tab.php:70
1431
  msgid "Use multiple tabs to divide your fields into sections."
1432
  msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید."
1433
 
1434
- #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
1435
  msgid "Taxonomy"
1436
  msgstr "طبقه بندی"
1437
 
1438
- #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
1439
  msgid "None"
1440
  msgstr "هیچ"
1441
 
1442
- #: core/fields/taxonomy.php:306 core/fields/user.php:251
1443
- #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173
1444
  msgid "Field Type"
1445
  msgstr "نوع زمینه"
1446
 
1447
- #: core/fields/taxonomy.php:316 core/fields/user.php:260
1448
  msgid "Multiple Values"
1449
  msgstr "چندین مقدار"
1450
 
1451
- #: core/fields/taxonomy.php:318 core/fields/user.php:262
1452
  msgid "Multi Select"
1453
  msgstr "چندین انتخاب"
1454
 
1455
- #: core/fields/taxonomy.php:320 core/fields/user.php:264
1456
  msgid "Single Value"
1457
- msgstr "چندین مقدار"
1458
 
1459
- #: core/fields/taxonomy.php:321
1460
  msgid "Radio Buttons"
1461
  msgstr "دکمه های رادیویی"
1462
 
1463
- #: core/fields/taxonomy.php:350
1464
  msgid "Load & Save Terms to Post"
1465
  msgstr "بارگذاری و ذخیره دوره ها برای نوشته"
1466
 
1467
- #: core/fields/taxonomy.php:358
1468
  msgid ""
1469
  "Load value based on the post's terms and update the post's terms on save"
1470
  msgstr ""
1471
  "بارگذاری مقدار بر اساس شرایط نوشته و بروزرسانی شرایط نوشته در ذخیره کردن"
1472
 
1473
- #: core/fields/taxonomy.php:375
1474
  msgid "Term Object"
1475
  msgstr "موضوع دوره"
1476
 
1477
- #: core/fields/taxonomy.php:376
1478
  msgid "Term ID"
1479
  msgstr "شناسه دوره"
1480
 
1481
- #: core/fields/text.php:19
1482
  msgid "Text"
1483
  msgstr "متن"
1484
 
1485
- #: core/fields/text.php:176 core/fields/textarea.php:141
1486
  msgid "Formatting"
1487
  msgstr "قالب بندی"
1488
 
1489
- #: core/fields/text.php:177 core/fields/textarea.php:142
1490
  msgid "Effects value on front end"
1491
  msgstr "مقدار افکت ها در پایان"
1492
 
1493
- #: core/fields/text.php:186 core/fields/textarea.php:151
1494
  msgid "No formatting"
1495
  msgstr "بدون قالب بندی"
1496
 
1497
- #: core/fields/text.php:187 core/fields/textarea.php:153
1498
  msgid "Convert HTML into tags"
1499
  msgstr "تبدیل HTML به برچسب ها"
1500
 
1501
- #: core/fields/text.php:195 core/fields/textarea.php:126
1502
  msgid "Character Limit"
1503
  msgstr "محدودیت نویسه"
1504
 
1505
- #: core/fields/text.php:196 core/fields/textarea.php:127
1506
  msgid "Leave blank for no limit"
1507
  msgstr "برای نامحدود بودن این بخش را خالی بگذارید."
1508
 
1509
- #: core/fields/textarea.php:19
1510
  msgid "Text Area"
1511
  msgstr "ناحیه متن"
1512
 
1513
- #: core/fields/textarea.php:152
1514
  msgid "Convert new lines into &lt;br /&gt; tags"
1515
  msgstr "تبدیل خط های جدید به برچسب ها"
1516
 
1517
- #: core/fields/true_false.php:19
1518
  msgid "True / False"
1519
  msgstr "صحیح / غلط"
1520
 
1521
- #: core/fields/true_false.php:80
1522
  msgid "eg. Show extra content"
1523
  msgstr "به عنوان مثال: نمایش محتوای اضافی"
1524
 
1525
- #: core/fields/user.php:18 core/views/meta_box_location.php:94
1526
  msgid "User"
1527
  msgstr "کاربر"
1528
 
1529
- #: core/fields/user.php:224
1530
  msgid "Filter by role"
1531
  msgstr "فیلتر شده توسط قانون"
1532
 
1533
- #: core/fields/wysiwyg.php:19
1534
  msgid "Wysiwyg Editor"
1535
  msgstr "ویرایشگر دیداری"
1536
 
1537
- #: core/fields/wysiwyg.php:186
1538
  msgid "Toolbar"
1539
  msgstr "نوار ابزار"
1540
 
1541
- #: core/fields/wysiwyg.php:218
1542
  msgid "Show Media Upload Buttons?"
1543
  msgstr "آیا دکمه های بارگذاری رسانه ها نمایش داده شوند؟"
1544
 
1545
- #: core/views/meta_box_fields.php:24
1546
- msgid "New Field"
1547
- msgstr "زمینه جدید"
1548
 
1549
- #: core/views/meta_box_fields.php:58
1550
- msgid "Field type does not exist"
1551
- msgstr "نوع زمینه وجود ندارد."
1552
 
1553
- #: core/views/meta_box_fields.php:63
1554
- msgid "Move to trash. Are you sure?"
1555
- msgstr "انتقال به زباله دان، آیا شما مطمئنید؟"
1556
 
1557
- #: core/views/meta_box_fields.php:64
1558
- msgid "checked"
1559
- msgstr "انتخاب شده"
1560
 
1561
- #: core/views/meta_box_fields.php:65
1562
- msgid "No toggle fields available"
1563
- msgstr "هیچ زمینه بازشده ای موجود نیست."
1564
 
1565
- #: core/views/meta_box_fields.php:66
1566
- msgid "Field group title is required"
1567
- msgstr "عنوان گروه زمینه مورد نیاز است."
1568
 
1569
- #: core/views/meta_box_fields.php:67
1570
- msgid "copy"
1571
- msgstr "کپی"
 
 
 
 
1572
 
1573
- #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1574
- #: core/views/meta_box_location.php:159
1575
- msgid "or"
1576
- msgstr "یا"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1577
 
1578
- #: core/views/meta_box_fields.php:88
1579
  msgid "Field Order"
1580
  msgstr "شماره زمینه"
1581
 
1582
- #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
1583
  msgid "Field Label"
1584
  msgstr "برچسب زمینه"
1585
 
1586
- #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
1587
  msgid "Field Name"
1588
  msgstr "نام زمینه"
1589
 
1590
- #: core/views/meta_box_fields.php:92
1591
  msgid "Field Key"
1592
  msgstr "کلید زمینه"
1593
 
1594
- #: core/views/meta_box_fields.php:104
1595
  msgid ""
1596
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1597
  "first field."
@@ -1599,100 +1602,102 @@ msgstr ""
1599
  "هیچ زمینه ای وجود ندارد. روی دکمه <strong> + افزودن زمینه </strong> کلیک "
1600
  "کنید تا اولین زمینه خود را بسازید."
1601
 
1602
- #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
1603
  msgid "Edit this Field"
1604
  msgstr "ویرایش این زمینه"
1605
 
1606
- #: core/views/meta_box_fields.php:123
1607
  msgid "Read documentation for this field"
1608
  msgstr "مستندات را برای این زمینه بخوانید."
1609
 
1610
- #: core/views/meta_box_fields.php:123
1611
  msgid "Docs"
1612
  msgstr "اسناد"
1613
 
1614
- #: core/views/meta_box_fields.php:124
1615
  msgid "Duplicate this Field"
1616
  msgstr "تکثیر این زمینه"
1617
 
1618
- #: core/views/meta_box_fields.php:124
1619
  msgid "Duplicate"
1620
  msgstr "تکثیر"
1621
 
1622
- #: core/views/meta_box_fields.php:125
1623
  msgid "Delete this Field"
1624
  msgstr "حذف این زمینه"
1625
 
1626
- #: core/views/meta_box_fields.php:125
1627
  msgid "Delete"
1628
  msgstr "حذف"
1629
 
1630
- #: core/views/meta_box_fields.php:142
1631
  msgid "This is the name which will appear on the EDIT page"
1632
  msgstr "این نامی است که در برگه ویرایش نمایش داده خواهد شد."
1633
 
1634
- #: core/views/meta_box_fields.php:158
1635
  msgid "Single word, no spaces. Underscores and dashes allowed"
1636
  msgstr "تک کلمه، بدون فاصله، خط زیرین و خط تیره ها قبول هستند."
1637
 
1638
- #: core/views/meta_box_fields.php:187
1639
  msgid "Field Instructions"
1640
  msgstr "دستورالعمل های زمینه"
1641
 
1642
- #: core/views/meta_box_fields.php:188
1643
  msgid "Instructions for authors. Shown when submitting data"
1644
  msgstr ""
1645
  "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند."
1646
 
1647
- #: core/views/meta_box_fields.php:200
1648
  msgid "Required?"
1649
- msgstr "مورد نیاز است؟"
1650
 
1651
- #: core/views/meta_box_fields.php:223
1652
  msgid "Conditional Logic"
1653
- msgstr "منطق نامعلوم"
1654
 
1655
- #: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:117
 
1656
  msgid "is equal to"
1657
  msgstr "برابر است با"
1658
 
1659
- #: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:118
 
1660
  msgid "is not equal to"
1661
  msgstr "برابر نیست با"
1662
 
1663
- #: core/views/meta_box_fields.php:293
1664
  msgid "Show this field when"
1665
  msgstr "نمایش این زمینه موقعی که"
1666
 
1667
- #: core/views/meta_box_fields.php:299
1668
  msgid "all"
1669
  msgstr "همه"
1670
 
1671
- #: core/views/meta_box_fields.php:300
1672
  msgid "any"
1673
  msgstr "هیچ"
1674
 
1675
- #: core/views/meta_box_fields.php:303
1676
  msgid "these rules are met"
1677
  msgstr "این قوانین آشنا هستند."
1678
 
1679
- #: core/views/meta_box_fields.php:317
1680
  msgid "Close Field"
1681
  msgstr "بستن زمینه"
1682
 
1683
- #: core/views/meta_box_fields.php:330
1684
  msgid "Drag and drop to reorder"
1685
  msgstr "بالا و پایین کشیدن برای دوباره مرتب کردن"
1686
 
1687
- #: core/views/meta_box_fields.php:331
1688
  msgid "+ Add Field"
1689
  msgstr "+ افزودن زمینه"
1690
 
1691
- #: core/views/meta_box_location.php:48
1692
  msgid "Rules"
1693
  msgstr "قوانین"
1694
 
1695
- #: core/views/meta_box_location.php:49
1696
  msgid ""
1697
  "Create a set of rules to determine which edit screens will use these "
1698
  "advanced custom fields"
@@ -1700,112 +1705,114 @@ msgstr ""
1700
  "ایجاد مجموعه ای از قوانین برای تعیین این که صفحه ویرایش از این زمینه های "
1701
  "سفارشی پیشرفته استفاده خواهند کرد."
1702
 
1703
- #: core/views/meta_box_location.php:60
1704
  msgid "Show this field group if"
1705
  msgstr "نمایش این گروه زمینه اگر"
1706
 
1707
- #: core/views/meta_box_location.php:76
1708
  msgid "Logged in User Type"
1709
  msgstr "وارد شده در نوع کاربر"
1710
 
1711
- #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
 
1712
  msgid "Page"
1713
  msgstr "برگه"
1714
 
1715
- #: core/views/meta_box_location.php:80
1716
  msgid "Page Type"
1717
  msgstr "نوع برگه"
1718
 
1719
- #: core/views/meta_box_location.php:81
1720
  msgid "Page Parent"
1721
  msgstr "برگه مادر"
1722
 
1723
- #: core/views/meta_box_location.php:82
1724
  msgid "Page Template"
1725
  msgstr "پوسته برگه"
1726
 
1727
- #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
 
1728
  msgid "Post"
1729
  msgstr "نوشته"
1730
 
1731
- #: core/views/meta_box_location.php:86
1732
  msgid "Post Category"
1733
  msgstr "دسته بندی نوشته"
1734
 
1735
- #: core/views/meta_box_location.php:87
1736
  msgid "Post Format"
1737
  msgstr "فرمت نوشته"
1738
 
1739
- #: core/views/meta_box_location.php:88
1740
  msgid "Post Status"
1741
  msgstr "وضعیت نوشته"
1742
 
1743
- #: core/views/meta_box_location.php:89
1744
  msgid "Post Taxonomy"
1745
  msgstr "طبقه بندی نوشته"
1746
 
1747
- #: core/views/meta_box_location.php:92
1748
  msgid "Attachment"
1749
  msgstr "پیوست"
1750
 
1751
- #: core/views/meta_box_location.php:93
1752
  msgid "Term"
1753
  msgstr "دوره"
1754
 
1755
- #: core/views/meta_box_location.php:146
1756
  msgid "and"
1757
  msgstr "و"
1758
 
1759
- #: core/views/meta_box_location.php:161
1760
  msgid "Add rule group"
1761
  msgstr "افزودن قانون"
1762
 
1763
- #: core/views/meta_box_options.php:25
1764
  msgid "Order No."
1765
  msgstr "شماره زمینه"
1766
 
1767
- #: core/views/meta_box_options.php:26
1768
  msgid "Field groups are created in order <br />from lowest to highest"
1769
  msgstr ""
1770
  "گروه های زمینه از کوچکترین شماره تا بزرگترین شماره <br />ایجاد می شوند."
1771
 
1772
- #: core/views/meta_box_options.php:42
1773
  msgid "Position"
1774
  msgstr "موقعیت"
1775
 
1776
- #: core/views/meta_box_options.php:52
1777
  msgid "High (after title)"
1778
  msgstr "بالا (بعد از عنوان)"
1779
 
1780
- #: core/views/meta_box_options.php:53
1781
  msgid "Normal (after content)"
1782
  msgstr "معمولی (بعد از نوشته)"
1783
 
1784
- #: core/views/meta_box_options.php:54
1785
  msgid "Side"
1786
  msgstr "کنار"
1787
 
1788
- #: core/views/meta_box_options.php:64
1789
  msgid "Style"
1790
  msgstr "استایل"
1791
 
1792
- #: core/views/meta_box_options.php:74
1793
  msgid "No Metabox"
1794
  msgstr "بدون متاباکس"
1795
 
1796
- #: core/views/meta_box_options.php:75
1797
  msgid "Standard Metabox"
1798
  msgstr "دارای متاباکس استاندارد"
1799
 
1800
- #: core/views/meta_box_options.php:84
1801
  msgid "Hide on screen"
1802
  msgstr "مخفی ماندن در صفحه"
1803
 
1804
- #: core/views/meta_box_options.php:85
1805
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1806
  msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
1807
 
1808
- #: core/views/meta_box_options.php:86
1809
  msgid ""
1810
  "If multiple field groups appear on an edit screen, the first field group's "
1811
  "options will be used. (the one with the lowest order number)"
@@ -1813,46 +1820,46 @@ msgstr ""
1813
  "اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
1814
  "زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
1815
 
1816
- #: core/views/meta_box_options.php:96
1817
  msgid "Content Editor"
1818
- msgstr "ویرایشگر محتوا"
1819
 
1820
- #: core/views/meta_box_options.php:97
1821
  msgid "Excerpt"
1822
  msgstr "چکیده"
1823
 
1824
- #: core/views/meta_box_options.php:99
1825
  msgid "Discussion"
1826
  msgstr "گفتگو"
1827
 
1828
- #: core/views/meta_box_options.php:100
1829
  msgid "Comments"
1830
  msgstr "دیدگاه ها"
1831
 
1832
- #: core/views/meta_box_options.php:101
1833
  msgid "Revisions"
1834
  msgstr "بازنگری ها"
1835
 
1836
- #: core/views/meta_box_options.php:102
1837
  msgid "Slug"
1838
  msgstr "نامک"
1839
 
1840
- #: core/views/meta_box_options.php:103
1841
  msgid "Author"
1842
  msgstr "نویسنده"
1843
 
1844
- #: core/views/meta_box_options.php:104
1845
  msgid "Format"
1846
  msgstr "فرمت"
1847
 
1848
- #: core/views/meta_box_options.php:106
1849
  msgid "Categories"
1850
  msgstr "دسته ها"
1851
 
1852
- #: core/views/meta_box_options.php:107
1853
  msgid "Tags"
1854
  msgstr "برچسب ها"
1855
 
1856
- #: core/views/meta_box_options.php:108
1857
  msgid "Send Trackbacks"
1858
  msgstr "ارسال بازتاب ها"
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2013-10-22 18:19+0100\n"
8
+ "PO-Revision-Date: 2013-11-10 17:01+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"
18
+ "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../acf.php:436
21
  msgid "Field&nbsp;Groups"
22
  msgstr "گروه های زمینه"
23
 
24
+ #: ../acf.php:437 ../core/controllers/field_groups.php:214
25
  msgid "Advanced Custom Fields"
26
  msgstr "زمینه های دلخواه پیشرفته"
27
 
28
+ #: ../acf.php:438
29
  msgid "Add New"
30
  msgstr "افزودن"
31
 
32
+ #: ../acf.php:439
33
  msgid "Add New Field Group"
34
  msgstr "افزودن گروه زمینه جدید"
35
 
36
+ #: ../acf.php:440
37
  msgid "Edit Field Group"
38
  msgstr "ویرایش گروه زمینه"
39
 
40
+ #: ../acf.php:441
41
  msgid "New Field Group"
42
  msgstr "گروه زمینه جدید"
43
 
44
+ #: ../acf.php:442
45
  msgid "View Field Group"
46
  msgstr "مشاهده گروه زمینه"
47
 
48
+ #: ../acf.php:443
49
  msgid "Search Field Groups"
50
  msgstr "جستجوی گروه های زمینه"
51
 
52
+ #: ../acf.php:444
53
  msgid "No Field Groups found"
54
  msgstr "گروه زمینه ای یافت نشد."
55
 
56
+ #: ../acf.php:445
57
  msgid "No Field Groups found in Trash"
58
  msgstr "گروه زمینه ای در زباله دان یافت نشد."
59
 
60
+ #: ../acf.php:548 ../core/views/meta_box_options.php:98
61
  msgid "Custom Fields"
62
  msgstr "زمینه های دلخواه"
63
 
64
+ #: ../acf.php:566 ../acf.php:569
65
  msgid "Field group updated."
66
  msgstr "گروه زمینه بروز شد."
67
 
68
+ #: ../acf.php:567
69
  msgid "Custom field updated."
70
  msgstr "زمینه دلخواه بروز شد."
71
 
72
+ #: ../acf.php:568
73
  msgid "Custom field deleted."
74
  msgstr "زمینه دلخواه حذف شد."
75
 
76
+ #: ../acf.php:571
77
+ #, php-format
78
  msgid "Field group restored to revision from %s"
79
  msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
80
 
81
+ #: ../acf.php:572
82
  msgid "Field group published."
83
  msgstr "گروه زمینه انتشار یافت."
84
 
85
+ #: ../acf.php:573
86
  msgid "Field group saved."
87
  msgstr "گروه زمینه ذخیره شد."
88
 
89
+ #: ../acf.php:574
90
  msgid "Field group submitted."
91
  msgstr "گروه زمینه ارسال شد."
92
 
93
+ #: ../acf.php:575
94
  msgid "Field group scheduled for."
95
  msgstr "گروه زمینه برنامه ریزی شده است برای"
96
 
97
+ #: ../acf.php:576
98
  msgid "Field group draft updated."
99
  msgstr "پیش نویش گروه زمینه بروز شد."
100
 
101
+ #: ../acf.php:711
102
  msgid "Thumbnail"
103
  msgstr "تصویر بندانگشتی"
104
 
105
+ #: ../acf.php:712
106
  msgid "Medium"
107
  msgstr "متوسط"
108
 
109
+ #: ../acf.php:713
110
  msgid "Large"
111
  msgstr "بزرگ"
112
 
113
+ #: ../acf.php:714
114
  msgid "Full"
115
  msgstr "کامل"
116
 
117
+ #: ../core/api.php:1106
 
 
 
 
 
 
 
 
118
  msgid "Update"
119
  msgstr "بروزرسانی"
120
 
121
+ #: ../core/api.php:1107
122
  msgid "Post updated"
123
  msgstr "نوشته بروز شد."
124
 
125
+ #: ../core/actions/export.php:23 ../core/views/meta_box_fields.php:58
126
+ msgid "Error"
127
+ msgstr "خطا"
128
+
129
+ #: ../core/actions/export.php:30
130
+ msgid "No ACF groups selected"
131
+ msgstr "هیچ گروه زمینه دلخواه پیشرفته انتخاب نشده است."
132
+
133
+ #: ../core/controllers/addons.php:42 ../core/controllers/field_groups.php:311
134
  msgid "Add-ons"
135
  msgstr "افزودنی ها"
136
 
137
+ #: ../core/controllers/addons.php:130 ../core/controllers/field_groups.php:433
138
  msgid "Repeater Field"
139
  msgstr "تکرار کننده زمینه"
140
 
141
+ #: ../core/controllers/addons.php:131
142
  msgid "Create infinite rows of repeatable data with this versatile interface!"
143
  msgstr ""
144
  "ایجاد ردیف های بی نهایت از داده های تکرار شونده به وسیله این رابط کاربری چند "
145
  "منظوره!"
146
 
147
+ #: ../core/controllers/addons.php:137 ../core/controllers/field_groups.php:441
148
  msgid "Gallery Field"
149
  msgstr "زمینه گالری"
150
 
151
+ #: ../core/controllers/addons.php:138
152
  msgid "Create image galleries in a simple and intuitive interface!"
153
  msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
154
 
155
+ #: ../core/controllers/addons.php:144 ../core/controllers/field_groups.php:449
156
  msgid "Options Page"
157
  msgstr "برگه تنظیمات"
158
 
159
+ #: ../core/controllers/addons.php:145
160
  msgid "Create global data to use throughout your website!"
161
  msgstr "ایجاد داده جهانی برای استفاده در سرتاسر سایت شما!"
162
 
163
+ #: ../core/controllers/addons.php:151
164
  msgid "Flexible Content Field"
165
  msgstr "زمینه محتوای انعطاف پذیر"
166
 
167
+ #: ../core/controllers/addons.php:152
168
  msgid "Create unique designs with a flexible content layout manager!"
169
  msgstr "ایجاد طرح های انعطاف پذیر با مدیریت چیدمان محتوای انعطاف پذیر!"
170
 
171
+ #: ../core/controllers/addons.php:161
172
  msgid "Gravity Forms Field"
173
  msgstr "زمینه فرم های جذب افراد"
174
 
175
+ #: ../core/controllers/addons.php:162
176
  msgid "Creates a select field populated with Gravity Forms!"
177
  msgstr "ایجاد زمینه برای انتخاب تعدادی از افراد به وسیله فرم های جذب افراد!"
178
 
179
+ #: ../core/controllers/addons.php:168
180
  msgid "Date & Time Picker"
181
  msgstr "جمع کننده اطلاعات تاریخ و زمان"
182
 
183
+ #: ../core/controllers/addons.php:169
184
  msgid "jQuery date & time picker"
185
  msgstr "جمع کننده اطلاعات تاریخ و زمان جی کوئری"
186
 
187
+ #: ../core/controllers/addons.php:175
188
  msgid "Location Field"
189
+ msgstr "زمینه مکان"
190
 
191
+ #: ../core/controllers/addons.php:176
192
  msgid "Find addresses and coordinates of a desired location"
193
  msgstr "یافتن آدرس و مشخصات مکان مورد نظر"
194
 
195
+ #: ../core/controllers/addons.php:182
196
  msgid "Contact Form 7 Field"
197
  msgstr "زمینه فرم تماس (Contact Form 7)"
198
 
199
+ #: ../core/controllers/addons.php:183
200
  msgid "Assign one or more contact form 7 forms to a post"
201
  msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته"
202
 
203
+ #: ../core/controllers/addons.php:193
204
  msgid "Advanced Custom Fields Add-Ons"
205
  msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
206
 
207
+ #: ../core/controllers/addons.php:196
208
  msgid ""
209
  "The following Add-ons are available to increase the functionality of the "
210
  "Advanced Custom Fields plugin."
212
  "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته در "
213
  "دسترس هستند."
214
 
215
+ #: ../core/controllers/addons.php:197
216
  msgid ""
217
  "Each Add-on can be installed as a separate plugin (receives updates) or "
218
  "included in your theme (does not receive updates)."
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:426
232
+ #: ../core/controllers/field_groups.php:435
233
+ #: ../core/controllers/field_groups.php:443
234
+ #: ../core/controllers/field_groups.php:451
235
+ #: ../core/controllers/field_groups.php:459
236
  msgid "Download"
237
  msgstr "دریافت"
238
 
239
+ #: ../core/controllers/export.php:50 ../core/controllers/export.php:159
240
  msgid "Export"
241
  msgstr "برون بری"
242
 
243
+ #: ../core/controllers/export.php:216
244
  msgid "Export Field Groups"
245
  msgstr "برون بری گروه های زمینه"
246
 
247
+ #: ../core/controllers/export.php:221
248
  msgid "Field Groups"
249
  msgstr "گروه های زمینه"
250
 
251
+ #: ../core/controllers/export.php:222
252
  msgid "Select the field groups to be exported"
253
  msgstr "یک گروه زمینه را برای برون بری انتخاب کنید."
254
 
255
+ #: ../core/controllers/export.php:239 ../core/controllers/export.php:252
256
  msgid "Export to XML"
257
  msgstr "برون بری به فرمت XML"
258
 
259
+ #: ../core/controllers/export.php:242 ../core/controllers/export.php:267
260
  msgid "Export to PHP"
261
  msgstr "برون بری به فرمت PHP"
262
 
263
+ #: ../core/controllers/export.php:253
264
  msgid ""
265
  "ACF will create a .xml export file which is compatible with the native WP "
266
  "import plugin."
268
  "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
269
  "با افزونه Wordpress Importer سازگار است."
270
 
271
+ #: ../core/controllers/export.php:254
272
  msgid ""
273
  "Imported field groups <b>will</b> appear in the list of editable field "
274
  "groups. This is useful for migrating fields groups between Wp websites."
277
  "داده خواهند شد</b>. این برای مهاجرت گروه های زمینه در بین سایت های وردپرسی "
278
  "مفید است."
279
 
280
+ #: ../core/controllers/export.php:256
281
  msgid "Select field group(s) from the list and click \"Export XML\""
282
  msgstr ""
283
  "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML )) "
284
  "کلیک کنید."
285
 
286
+ #: ../core/controllers/export.php:257
287
  msgid "Save the .xml file when prompted"
288
  msgstr "ذخیره پرونده .xml موقعی که این پرونده درخواست می شود."
289
 
290
+ #: ../core/controllers/export.php:258
291
  msgid "Navigate to Tools &raquo; Import and select WordPress"
292
  msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس (Wordpress) را انتخاب کنید."
293
 
294
+ #: ../core/controllers/export.php:259
295
  msgid "Install WP import plugin if prompted"
296
+ msgstr "نصب افزونه درون ریز وردپرس (Wordpress Importer) در صورت در خواست شما"
297
 
298
+ #: ../core/controllers/export.php:260
299
  msgid "Upload and import your exported .xml file"
300
  msgstr "بارگذاری و درون ریزی پرونده XML برون بری شده شما."
301
 
302
+ #: ../core/controllers/export.php:261
303
  msgid "Select your user and ignore Import Attachments"
304
  msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را رد کنید."
305
 
306
+ #: ../core/controllers/export.php:262
307
  msgid "That's it! Happy WordPressing"
308
  msgstr "موفق باشید و با خوشحالی با وردپرس کار کنید!"
309
 
310
+ #: ../core/controllers/export.php:268
311
  msgid "ACF will create the PHP code to include in your theme."
312
  msgstr ""
313
  "افزونه زمینه های دلخواه پیشرفته کد پی اچ پی (PHP) را در پوسته شما قرار خواهد "
314
  "داد."
315
 
316
+ #: ../core/controllers/export.php:269 ../core/controllers/export.php:310
317
  msgid ""
318
  "Registered field groups <b>will not</b> appear in the list of editable field "
319
  "groups. This is useful for including fields in themes."
321
  "گروه های زمینه ثبت نام شده در لیست گروه های زمینه قابل ویرایش <b>نمایش داده "
322
  "نخواهند شد</b>. این برای قرار دادن زمینه ها در پوسته مفید است."
323
 
324
+ #: ../core/controllers/export.php:270 ../core/controllers/export.php:311
325
  msgid ""
326
  "Please note that if you export and register field groups within the same WP, "
327
  "you will see duplicate fields on your edit screens. To fix this, please move "
333
  "برای تعمیر این، لطفا گروه زمینه اورجینال را به زباله دان حرکت دهید یا کد را "
334
  "از پرونده functions.php خود پاک کنید."
335
 
336
+ #: ../core/controllers/export.php:272
337
  msgid "Select field group(s) from the list and click \"Create PHP\""
338
  msgstr ""
339
  "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت PHP )) "
340
  "کلیک کنید."
341
 
342
+ #: ../core/controllers/export.php:273 ../core/controllers/export.php:302
343
  msgid "Copy the PHP code generated"
344
  msgstr "کپی کردن کد PHP ساخته شده"
345
 
346
+ #: ../core/controllers/export.php:274 ../core/controllers/export.php:303
347
  msgid "Paste into your functions.php file"
348
  msgstr "چسباندن در پرونده functions.php شما"
349
 
350
+ #: ../core/controllers/export.php:275 ../core/controllers/export.php:304
351
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
352
  msgstr ""
353
  "برای فعالسازی افزودنی ها، کد را ویرایش کنید و از آن در اولین خطوط استفاده "
354
  "کنید."
355
 
356
+ #: ../core/controllers/export.php:295
357
  msgid "Export Field Groups to PHP"
358
  msgstr "برون بری گروه های زمینه به فرمت PHP"
359
 
360
+ #: ../core/controllers/export.php:300 ../core/fields/tab.php:65
361
  msgid "Instructions"
362
  msgstr "دستورالعمل ها"
363
 
364
+ #: ../core/controllers/export.php:309
365
  msgid "Notes"
366
+ msgstr "نکته ها"
367
 
368
+ #: ../core/controllers/export.php:316
369
  msgid "Include in theme"
370
  msgstr "قرار دادن در پوسته"
371
 
372
+ #: ../core/controllers/export.php:317
373
  msgid ""
374
  "The Advanced Custom Fields plugin can be included within a theme. To do so, "
375
  "move the ACF plugin inside your theme and add the following code to your "
379
  "برای انجام این کار، افزونه را در کنار پوسته تان انتقال دهید و کدهای زیر را "
380
  "به پرونده functions.php اضافه کنید:"
381
 
382
+ #: ../core/controllers/export.php:323
383
  msgid ""
384
  "To remove all visual interfaces from the ACF plugin, you can use a constant "
385
  "to enable lite mode. Add the following code to your functions.php file "
389
  "به طور ثابت برای فعال کردن حالت کم استفاده کنید. کد زیر را به پرونده "
390
  "functions.php خود <b>قبل از</b> تابع include_once اضافه کنید:"
391
 
392
+ #: ../core/controllers/export.php:331
393
  msgid "Back to export"
394
  msgstr "بازگشت به برون بری"
395
 
396
+ #: ../core/controllers/export.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
  msgid "No field groups were selected"
398
  msgstr "گروه زمینه ای انتخاب نشده است."
399
 
400
+ #: ../core/controllers/field_group.php:358
401
+ msgid "Move to trash. Are you sure?"
402
+ msgstr "انتقال به زباله دان، آیا شما مطمئنید؟"
403
+
404
+ #: ../core/controllers/field_group.php:359
405
+ msgid "checked"
406
+ msgstr "انتخاب شده"
407
+
408
+ #: ../core/controllers/field_group.php:360
409
+ msgid "No toggle fields available"
410
+ msgstr "هیچ زمینه بازشده ای موجود نیست."
411
+
412
+ #: ../core/controllers/field_group.php:361
413
+ msgid "Field group title is required"
414
+ msgstr "عنوان گروه زمینه مورد نیاز است."
415
+
416
+ #: ../core/controllers/field_group.php:362
417
+ msgid "copy"
418
+ msgstr "کپی"
419
+
420
+ #: ../core/controllers/field_group.php:363
421
+ #: ../core/views/meta_box_location.php:62
422
+ #: ../core/views/meta_box_location.php:159
423
+ msgid "or"
424
+ msgstr "یا"
425
+
426
+ #: ../core/controllers/field_group.php:364
427
+ #: ../core/controllers/field_group.php:395
428
+ #: ../core/controllers/field_group.php:457
429
+ #: ../core/controllers/field_groups.php:148
430
  msgid "Fields"
431
  msgstr "زمینه ها"
432
 
433
+ #: ../core/controllers/field_group.php:365
434
+ msgid "Parent fields"
435
+ msgstr "زمینه های مادر"
436
+
437
+ #: ../core/controllers/field_group.php:366
438
+ msgid "Sibling fields"
439
+ msgstr "زمینه های برادر"
440
+
441
+ #: ../core/controllers/field_group.php:367
442
+ msgid "Hide / Show All"
443
+ msgstr "مخفی کردن / نمایش همه"
444
+
445
+ #: ../core/controllers/field_group.php:396
446
  msgid "Location"
447
  msgstr "مکان"
448
 
449
+ #: ../core/controllers/field_group.php:397
450
  msgid "Options"
451
  msgstr "تنظیمات"
452
 
453
+ #: ../core/controllers/field_group.php:459
454
  msgid "Show Field Key:"
455
  msgstr "نمایش کلید زمینه:"
456
 
457
+ #: ../core/controllers/field_group.php:460 ../core/fields/page_link.php:138
458
+ #: ../core/fields/page_link.php:159 ../core/fields/post_object.php:328
459
+ #: ../core/fields/post_object.php:349 ../core/fields/select.php:224
460
+ #: ../core/fields/select.php:243 ../core/fields/taxonomy.php:343
461
+ #: ../core/fields/user.php:285 ../core/fields/wysiwyg.php:245
462
+ #: ../core/views/meta_box_fields.php:195 ../core/views/meta_box_fields.php:218
463
  msgid "No"
464
  msgstr "خیر"
465
 
466
+ #: ../core/controllers/field_group.php:461 ../core/fields/page_link.php:137
467
+ #: ../core/fields/page_link.php:158 ../core/fields/post_object.php:327
468
+ #: ../core/fields/post_object.php:348 ../core/fields/select.php:223
469
+ #: ../core/fields/select.php:242 ../core/fields/taxonomy.php:342
470
+ #: ../core/fields/user.php:284 ../core/fields/wysiwyg.php:244
471
+ #: ../core/views/meta_box_fields.php:194 ../core/views/meta_box_fields.php:217
472
  msgid "Yes"
473
  msgstr "بله"
474
 
475
+ #: ../core/controllers/field_group.php:638
476
  msgid "Front Page"
477
  msgstr "برگه جلو"
478
 
479
+ #: ../core/controllers/field_group.php:639
480
  msgid "Posts Page"
481
  msgstr "برگه نوشته ها"
482
 
483
+ #: ../core/controllers/field_group.php:640
484
  msgid "Top Level Page (parent of 0)"
485
  msgstr "بالاترین سطح برگه (مادر از 0) "
486
 
487
+ #: ../core/controllers/field_group.php:641
488
  msgid "Parent Page (has children)"
489
  msgstr "برگه مادر (دارای فرزند)"
490
 
491
+ #: ../core/controllers/field_group.php:642
492
  msgid "Child Page (has parent)"
493
  msgstr "برگه فرزند (دارای مادر)"
494
 
495
+ #: ../core/controllers/field_group.php:650
496
  msgid "Default Template"
497
  msgstr "پوسته پیش فرض"
498
 
499
+ #: ../core/controllers/field_group.php:727
500
  msgid "Publish"
501
  msgstr "انتشار"
502
 
503
+ #: ../core/controllers/field_group.php:728
504
  msgid "Pending Review"
505
  msgstr "در انتظار بررسی"
506
 
507
+ #: ../core/controllers/field_group.php:729
508
  msgid "Draft"
509
  msgstr "پیش نویس"
510
 
511
+ #: ../core/controllers/field_group.php:730
512
  msgid "Future"
513
  msgstr "شاخص"
514
 
515
+ #: ../core/controllers/field_group.php:731
516
  msgid "Private"
517
  msgstr "خصوصی"
518
 
519
+ #: ../core/controllers/field_group.php:732
520
  msgid "Revision"
521
  msgstr "بازنگری"
522
 
523
+ #: ../core/controllers/field_group.php:733
524
  msgid "Trash"
525
  msgstr "زباله دان"
526
 
527
+ #: ../core/controllers/field_group.php:746
528
  msgid "Super Admin"
529
  msgstr "مدیرکل"
530
 
531
+ #: ../core/controllers/field_group.php:761
532
+ #: ../core/controllers/field_group.php:782
533
+ #: ../core/controllers/field_group.php:789 ../core/fields/file.php:186
534
+ #: ../core/fields/image.php:170 ../core/fields/page_link.php:109
535
+ #: ../core/fields/post_object.php:274 ../core/fields/post_object.php:298
536
+ #: ../core/fields/relationship.php:595 ../core/fields/relationship.php:619
537
+ #: ../core/fields/user.php:229
538
  msgid "All"
539
  msgstr "همه"
540
 
541
+ #: ../core/controllers/field_groups.php:147
542
  msgid "Title"
543
  msgstr "عنوان"
544
 
545
+ #: ../core/controllers/field_groups.php:216
546
+ #: ../core/controllers/field_groups.php:257
547
  msgid "Changelog"
548
  msgstr "تغییرات"
549
 
550
+ #: ../core/controllers/field_groups.php:217
551
  msgid "See what's new in"
552
  msgstr "تغییرات"
553
 
554
+ #: ../core/controllers/field_groups.php:217
555
  msgid "version"
556
  msgstr "نسخه"
557
 
558
+ #: ../core/controllers/field_groups.php:219
559
  msgid "Resources"
560
  msgstr "منابع"
561
 
562
+ #: ../core/controllers/field_groups.php:221
563
  msgid "Getting Started"
564
  msgstr "شروع"
565
 
566
+ #: ../core/controllers/field_groups.php:222
567
  msgid "Field Types"
568
  msgstr "انواع زمینه"
569
 
570
+ #: ../core/controllers/field_groups.php:223
571
  msgid "Functions"
572
  msgstr "توابع"
573
 
574
+ #: ../core/controllers/field_groups.php:224
575
  msgid "Actions"
576
  msgstr "اعمال"
577
 
578
+ #: ../core/controllers/field_groups.php:225
579
+ #: ../core/fields/relationship.php:638
580
  msgid "Filters"
581
  msgstr "فیلترها"
582
 
583
+ #: ../core/controllers/field_groups.php:226
584
  msgid "'How to' guides"
585
  msgstr "راهنماهای کوتاه (نمونه کدها برای کدنویسی)"
586
 
587
+ #: ../core/controllers/field_groups.php:227
588
  msgid "Tutorials"
589
  msgstr "آموزش ها"
590
 
591
+ #: ../core/controllers/field_groups.php:232
592
  msgid "Created by"
593
  msgstr "برنامه نویسی شده توسط"
594
 
595
+ #: ../core/controllers/field_groups.php:235
596
  msgid "Vote"
597
  msgstr "رأی دادن"
598
 
599
+ #: ../core/controllers/field_groups.php:236
600
  msgid "Follow"
601
  msgstr "دنبال کردن"
602
 
603
+ #: ../core/controllers/field_groups.php:248
604
  msgid "Welcome to Advanced Custom Fields"
605
  msgstr "به افزونه زمینه های دلخواه پیشرفته خوش آمدید!"
606
 
607
+ #: ../core/controllers/field_groups.php:249
608
  msgid "Thank you for updating to the latest version!"
609
  msgstr "از شما برای بروزرسانی به آخرین نسخه سپاسگزاریم!"
610
 
611
+ #: ../core/controllers/field_groups.php:249
612
  msgid "is more polished and enjoyable than ever before. We hope you like it."
613
  msgstr ""
614
  "استفاده شما از این افزونه برای ما بهتر و لذت بخش تر از هر زمان دیگری است. ما "
615
  "امیدواریم شما این افزونه را که توسط قائم امیدی به زبان شیرین پارسی ترجمه شده "
616
  "است، دوست داشته باشید."
617
 
618
+ #: ../core/controllers/field_groups.php:256
619
  msgid "What’s New"
620
  msgstr "چه چیزی جدید است؟"
621
 
622
+ #: ../core/controllers/field_groups.php:259
623
  msgid "Download Add-ons"
624
  msgstr "دریافت افزودنی ها"
625
 
626
+ #: ../core/controllers/field_groups.php:313
627
  msgid "Activation codes have grown into plugins!"
628
  msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
629
 
630
+ #: ../core/controllers/field_groups.php:314
631
  msgid ""
632
  "Add-ons are now activated by downloading and installing individual plugins. "
633
  "Although these plugins will not be hosted on the wordpress.org repository, "
637
  "افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد. هر افزودنی برای دریافت "
638
  "بروزرسانی ها راه معمول را ادامه خواهد داد."
639
 
640
+ #: ../core/controllers/field_groups.php:320
641
  msgid "All previous Add-ons have been successfully installed"
642
  msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند."
643
 
644
+ #: ../core/controllers/field_groups.php:324
645
  msgid "This website uses premium Add-ons which need to be downloaded"
646
  msgstr "این سایت از افزودنی های ویژه استفاده می کند که به دریافت نیاز دارند."
647
 
648
+ #: ../core/controllers/field_groups.php:324
649
  msgid "Download your activated Add-ons"
650
  msgstr "دریافت افزودنی های فعالسازی شده شما"
651
 
652
+ #: ../core/controllers/field_groups.php:329
653
  msgid ""
654
  "This website does not use premium Add-ons and will not be affected by this "
655
  "change."
657
  "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
658
  "نخواهد گرفت."
659
 
660
+ #: ../core/controllers/field_groups.php:339
661
  msgid "Easier Development"
662
+ msgstr "توسعه آسانتر"
663
 
664
+ #: ../core/controllers/field_groups.php:341
665
  msgid "New Field Types"
666
  msgstr "انواع زمینه جدید"
667
 
668
+ #: ../core/controllers/field_groups.php:343
669
  msgid "Taxonomy Field"
670
  msgstr "زمینه طبقه بندی"
671
 
672
+ #: ../core/controllers/field_groups.php:344
673
  msgid "User Field"
674
  msgstr "زمینه کاربر"
675
 
676
+ #: ../core/controllers/field_groups.php:345
677
  msgid "Email Field"
678
  msgstr "زمینه پست الکترونیکی"
679
 
680
+ #: ../core/controllers/field_groups.php:346
681
  msgid "Password Field"
682
  msgstr "زمینه رمزعبور"
683
 
684
+ #: ../core/controllers/field_groups.php:348
685
  msgid "Custom Field Types"
686
  msgstr "انواع زمینه دلخواه"
687
 
688
+ #: ../core/controllers/field_groups.php:349
689
  msgid ""
690
  "Creating your own field type has never been easier! Unfortunately, version 3 "
691
  "field types are not compatible with version 4."
693
  "ایجاد نوع زمینه خود شما هرگز آسان تر نشده است! متأسفانه، انواع زمینه های "
694
  "نسخه 3 با نسخه 4 سازگار نیستند."
695
 
696
+ #: ../core/controllers/field_groups.php:350
697
  msgid "Migrating your field types is easy, please"
698
  msgstr ""
699
  "مهاجرت انواع زمینه های شما آسان است. پس لطفا افزونه خود را بروزرسانی کنید."
700
 
701
+ #: ../core/controllers/field_groups.php:350
702
  msgid "follow this tutorial"
703
+ msgstr "دنبال کردن این آموزش"
704
 
705
+ #: ../core/controllers/field_groups.php:350
706
  msgid "to learn more."
707
  msgstr "کسب اطلاعات بیشتر"
708
 
709
+ #: ../core/controllers/field_groups.php:352
710
  msgid "Actions &amp; Filters"
711
  msgstr "اعمال و فیلترها"
712
 
713
+ #: ../core/controllers/field_groups.php:353
714
  msgid ""
715
  "All actions & filters have received a major facelift to make customizing ACF "
716
  "even easier! Please"
718
  "همه اعمال و فیلترها مورد قبول یک برنامه نویس بزرگ که افزونه زمینه های دلخواه "
719
  "پیشرفته وردپرس را به آسانی شخصی سازی می کند هستند! "
720
 
721
+ #: ../core/controllers/field_groups.php:353
722
  msgid "read this guide"
723
  msgstr "این راهنما را بخوانید."
724
 
725
+ #: ../core/controllers/field_groups.php:353
726
  msgid "to find the updated naming convention."
727
  msgstr "برای پیدا کردن قرارداد نام گذاری بروزشده."
728
 
729
+ #: ../core/controllers/field_groups.php:355
730
  msgid "Preview draft is now working!"
731
  msgstr "پیش نمایش پیش نویسی که در حال کار است!"
732
 
733
+ #: ../core/controllers/field_groups.php:356
734
  msgid "This bug has been squashed along with many other little critters!"
735
  msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!"
736
 
737
+ #: ../core/controllers/field_groups.php:356
738
  msgid "See the full changelog"
739
  msgstr "مشاهده تغییرات کامل"
740
 
741
+ #: ../core/controllers/field_groups.php:360
742
  msgid "Important"
743
  msgstr "مهم"
744
 
745
+ #: ../core/controllers/field_groups.php:362
746
  msgid "Database Changes"
747
  msgstr "تغییرات پایگاه داده"
748
 
749
+ #: ../core/controllers/field_groups.php:363
750
  msgid ""
751
  "Absolutely <strong>no</strong> changes have been made to the database "
752
  "between versions 3 and 4. This means you can roll back to version 3 without "
755
  "<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
756
  "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
757
 
758
+ #: ../core/controllers/field_groups.php:365
759
  msgid "Potential Issues"
760
  msgstr "مسائل بالقوه"
761
 
762
+ #: ../core/controllers/field_groups.php:366
763
  msgid ""
764
  "Do to the sizable changes surounding Add-ons, field types and action/"
765
  "filters, your website may not operate correctly. It is important that you "
768
  "با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه ها و عمل/فیلترها، ممکن است "
769
  "سایت شما به درستی عمل نکند. این مهم است که شما راهمای کامل را بخوانید."
770
 
771
+ #: ../core/controllers/field_groups.php:366
772
  msgid "Migrating from v3 to v4"
773
  msgstr "مهاجرت از نسخه 3 به نسخه 4"
774
 
775
+ #: ../core/controllers/field_groups.php:366
776
  msgid "guide to view the full list of changes."
777
  msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات"
778
 
779
+ #: ../core/controllers/field_groups.php:369
780
  msgid "Really Important!"
781
  msgstr "واقعا مهم!"
782
 
783
+ #: ../core/controllers/field_groups.php:369
784
  msgid ""
785
  "If you updated the ACF plugin without prior knowledge of such changes, "
786
  "please roll back to the latest"
788
  "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
789
  "تغییرات بروزرسانی کردید، لطفا به آخرین نسخه برگردید "
790
 
791
+ #: ../core/controllers/field_groups.php:369
792
  msgid "version 3"
793
  msgstr "نسخه 3"
794
 
795
+ #: ../core/controllers/field_groups.php:369
796
  msgid "of this plugin."
797
  msgstr "از این افزونه."
798
 
799
+ #: ../core/controllers/field_groups.php:374
800
  msgid "Thank You"
801
  msgstr "از شما متشکرم"
802
 
803
+ #: ../core/controllers/field_groups.php:375
804
  msgid ""
805
  "A <strong>BIG</strong> thank you to everyone who has helped test the version "
806
  "4 beta and for all the support I have received."
809
  "کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
810
  "شما متشکرم."
811
 
812
+ #: ../core/controllers/field_groups.php:376
813
  msgid "Without you all, this release would not have been possible!"
814
  msgstr ""
815
  "بدون همه شما فارسی سازی و انتشار این نسخه امکان پذیر نبود! با تشکر ((قائم "
816
  "امیدی)) و ((Elliot Condon))"
817
 
818
+ #: ../core/controllers/field_groups.php:380
819
  msgid "Changelog for"
820
  msgstr "تغییرات برای"
821
 
822
+ #: ../core/controllers/field_groups.php:397
823
  msgid "Learn more"
824
+ msgstr "اطلاعات بیشتر"
825
 
826
+ #: ../core/controllers/field_groups.php:403
827
  msgid "Overview"
828
  msgstr "بازنگری"
829
 
830
+ #: ../core/controllers/field_groups.php:405
831
  msgid ""
832
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
833
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
838
  "این است که همه اعمال افزودنی ها جداگانه است و باید به صورت جدا دریافت، نصب و "
839
  "بروزرسانی شوند."
840
 
841
+ #: ../core/controllers/field_groups.php:407
842
  msgid ""
843
  "This page will assist you in downloading and installing each available Add-"
844
  "on."
845
  msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
846
 
847
+ #: ../core/controllers/field_groups.php:409
848
  msgid "Available Add-ons"
849
  msgstr "افزودنی های موجود"
850
 
851
+ #: ../core/controllers/field_groups.php:411
852
  msgid "The following Add-ons have been detected as activated on this website."
853
  msgstr "افزودنی های زیر شناسایی شده اند تا در این سایت فعالسازی شوند."
854
 
855
+ #: ../core/controllers/field_groups.php:424
856
  msgid "Name"
857
  msgstr "نام"
858
 
859
+ #: ../core/controllers/field_groups.php:425
860
  msgid "Activation Code"
861
  msgstr "کد فعالسازی"
862
 
863
+ #: ../core/controllers/field_groups.php:457
864
  msgid "Flexible Content"
865
  msgstr "محتوای انعطاف پذیر"
866
 
867
+ #: ../core/controllers/field_groups.php:467
868
  msgid "Installation"
869
  msgstr "نصب"
870
 
871
+ #: ../core/controllers/field_groups.php:469
872
  msgid "For each Add-on available, please perform the following:"
873
  msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:"
874
 
875
+ #: ../core/controllers/field_groups.php:471
876
  msgid "Download the Add-on plugin (.zip file) to your desktop"
877
  msgstr "دریافت افزونه افزودنی (پرونده ZIP) در دسکتاپ شما"
878
 
879
+ #: ../core/controllers/field_groups.php:472
880
  msgid "Navigate to"
881
  msgstr "ناوبری به"
882
 
883
+ #: ../core/controllers/field_groups.php:472
884
  msgid "Plugins > Add New > Upload"
885
  msgstr "افزونه ها > افزودن > بارگذاری"
886
 
887
+ #: ../core/controllers/field_groups.php:473
888
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
889
  msgstr ""
890
  "از بارگذار برای کاوش استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب و نصب "
891
  "نمایید."
892
 
893
+ #: ../core/controllers/field_groups.php:474
894
  msgid ""
895
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
896
  "link"
898
  "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک ((لینک فعال کردن افزونه)) "
899
  "کلیک کنید."
900
 
901
+ #: ../core/controllers/field_groups.php:475
902
  msgid "The Add-on is now installed and activated!"
903
  msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
904
 
905
+ #: ../core/controllers/field_groups.php:489
906
  msgid "Awesome. Let's get to work"
907
  msgstr "شگفت انگیزه، نه؟ پس بیا شروع به کار کنیم."
908
 
909
+ #: ../core/controllers/input.php:63
910
  msgid "Expand Details"
911
  msgstr "بازکردن جزئیات"
912
 
913
+ #: ../core/controllers/input.php:64
914
  msgid "Collapse Details"
915
  msgstr "باز کردن جزئیات"
916
 
917
+ #: ../core/controllers/input.php:67
918
  msgid "Validation Failed. One or more fields below are required."
919
  msgstr ""
920
  "اعتبارسنجی شکست خورد. از زمینه های زیر یک یا چند زمینه مورد نیاز هستند."
921
 
922
+ #: ../core/controllers/upgrade.php:86
923
  msgid "Upgrade"
924
  msgstr "بروزرسانی"
925
 
926
+ #: ../core/controllers/upgrade.php:139
927
  msgid "What's new"
928
  msgstr "چه چیزی جدید است؟"
929
 
930
+ #: ../core/controllers/upgrade.php:150
931
  msgid "credits"
932
+ msgstr "اعتبارات"
933
 
934
+ #: ../core/controllers/upgrade.php:684
935
  msgid "Modifying field group options 'show on page'"
936
  msgstr "گزینه های اصلاح گروه زمینه (نمایش در برگه)"
937
 
938
+ #: ../core/controllers/upgrade.php:738
939
  msgid "Modifying field option 'taxonomy'"
940
  msgstr "گزینه های اصلاح زمینه (طبقه بندی)"
941
 
942
+ #: ../core/controllers/upgrade.php:835
943
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
944
  msgstr "حرکت کاربر زمینه های دلخواه از wp_options به wp_usermeta"
945
 
946
+ #: ../core/fields/checkbox.php:19 ../core/fields/taxonomy.php:319
 
 
 
 
947
  msgid "Checkbox"
948
  msgstr "جعبه انتخاب"
949
 
950
+ #: ../core/fields/checkbox.php:20 ../core/fields/radio.php:19
951
+ #: ../core/fields/select.php:19 ../core/fields/true_false.php:20
952
  msgid "Choice"
953
  msgstr "گزینه"
954
 
955
+ #: ../core/fields/checkbox.php:146 ../core/fields/radio.php:144
956
+ #: ../core/fields/select.php:177
957
  msgid "Choices"
958
  msgstr "گزینه ها"
959
 
960
+ #: ../core/fields/checkbox.php:147 ../core/fields/select.php:178
961
  msgid "Enter each choice on a new line."
962
+ msgstr "هر گزینه را در یک خط جدید وارد کنید."
963
 
964
+ #: ../core/fields/checkbox.php:148 ../core/fields/select.php:179
965
  msgid "For more control, you may specify both a value and label like this:"
966
  msgstr ""
967
  "برای کنترل بیشتر، شما ممکن است هر دو مقدار و برچسب را شبیه به این مشخص کنید:"
968
 
969
+ #: ../core/fields/checkbox.php:149 ../core/fields/radio.php:150
970
+ #: ../core/fields/select.php:180
971
  msgid "red : Red"
972
  msgstr "قرمز : قرمز"
973
 
974
+ #: ../core/fields/checkbox.php:149 ../core/fields/radio.php:151
975
+ #: ../core/fields/select.php:180
976
  msgid "blue : Blue"
977
  msgstr "آبی : آبی"
978
 
979
+ #: ../core/fields/checkbox.php:166 ../core/fields/color_picker.php:89
980
+ #: ../core/fields/email.php:106 ../core/fields/number.php:116
981
+ #: ../core/fields/radio.php:193 ../core/fields/select.php:197
982
+ #: ../core/fields/text.php:116 ../core/fields/textarea.php:96
983
+ #: ../core/fields/true_false.php:94 ../core/fields/wysiwyg.php:187
984
  msgid "Default Value"
985
  msgstr "مقدار پیش فرض"
986
 
987
+ #: ../core/fields/checkbox.php:167 ../core/fields/select.php:198
988
  msgid "Enter each default value on a new line"
989
+ msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید."
990
 
991
+ #: ../core/fields/checkbox.php:183 ../core/fields/message.php:20
992
+ #: ../core/fields/radio.php:209 ../core/fields/tab.php:20
993
  msgid "Layout"
994
  msgstr "چیدمان"
995
 
996
+ #: ../core/fields/checkbox.php:194 ../core/fields/radio.php:220
997
  msgid "Vertical"
998
  msgstr "عمودی"
999
 
1000
+ #: ../core/fields/checkbox.php:195 ../core/fields/radio.php:221
1001
  msgid "Horizontal"
1002
  msgstr "افقی"
1003
 
1004
+ #: ../core/fields/color_picker.php:19
1005
  msgid "Color Picker"
1006
  msgstr "چیننده رنگ"
1007
 
1008
+ #: ../core/fields/color_picker.php:20 ../core/fields/google-map.php:19
1009
+ #: ../core/fields/date_picker/date_picker.php:20
1010
  msgid "jQuery"
1011
  msgstr "جی کوئری"
1012
 
1013
+ #: ../core/fields/dummy.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1014
  msgid "Dummy"
1015
  msgstr "ساختگی"
1016
 
1017
+ #: ../core/fields/email.php:19
1018
  msgid "Email"
1019
  msgstr "پست الکترونیکی"
1020
 
1021
+ #: ../core/fields/email.php:107 ../core/fields/number.php:117
1022
+ #: ../core/fields/text.php:117 ../core/fields/textarea.php:97
1023
+ #: ../core/fields/wysiwyg.php:188
1024
  msgid "Appears when creating a new post"
1025
  msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود."
1026
 
1027
+ #: ../core/fields/email.php:123 ../core/fields/number.php:133
1028
+ #: ../core/fields/password.php:105 ../core/fields/text.php:131
1029
+ #: ../core/fields/textarea.php:111
1030
  msgid "Placeholder Text"
1031
  msgstr "نگهدارنده مکان متن"
1032
 
1033
+ #: ../core/fields/email.php:124 ../core/fields/number.php:134
1034
+ #: ../core/fields/password.php:106 ../core/fields/text.php:132
1035
+ #: ../core/fields/textarea.php:112
1036
  msgid "Appears within the input"
1037
  msgstr "در داخل ورودی نمایش داده می شود."
1038
 
1039
+ #: ../core/fields/email.php:138 ../core/fields/number.php:148
1040
+ #: ../core/fields/password.php:120 ../core/fields/text.php:146
1041
  msgid "Prepend"
1042
  msgstr "موکول کردن اعلامیه"
1043
 
1044
+ #: ../core/fields/email.php:139 ../core/fields/number.php:149
1045
+ #: ../core/fields/password.php:121 ../core/fields/text.php:147
1046
  msgid "Appears before the input"
1047
  msgstr "قبل از ورودی نمایش داده می شود."
1048
 
1049
+ #: ../core/fields/email.php:153 ../core/fields/number.php:163
1050
+ #: ../core/fields/password.php:135 ../core/fields/text.php:161
1051
  msgid "Append"
1052
  msgstr "افزودن"
1053
 
1054
+ #: ../core/fields/email.php:154 ../core/fields/number.php:164
1055
+ #: ../core/fields/password.php:136 ../core/fields/text.php:162
1056
  msgid "Appears after the input"
1057
  msgstr "بعد از ورودی نمایش داده می شود."
1058
 
1059
+ #: ../core/fields/file.php:19
1060
  msgid "File"
1061
  msgstr "پرونده"
1062
 
1063
+ #: ../core/fields/file.php:20 ../core/fields/image.php:20
1064
+ #: ../core/fields/wysiwyg.php:36
1065
  msgid "Content"
1066
  msgstr "محتوا"
1067
 
1068
+ #: ../core/fields/file.php:26
1069
  msgid "Select File"
1070
  msgstr "انتخاب پرونده"
1071
 
1072
+ #: ../core/fields/file.php:27
1073
  msgid "Edit File"
1074
  msgstr "ویرایش پرونده"
1075
 
1076
+ #: ../core/fields/file.php:28
1077
  msgid "Update File"
1078
  msgstr "بروزرسانی پرونده"
1079
 
1080
+ #: ../core/fields/file.php:29 ../core/fields/image.php:30
1081
  msgid "uploaded to this post"
1082
  msgstr "بارگذاری شده در این نوشته"
1083
 
1084
+ #: ../core/fields/file.php:123
1085
  msgid "No File Selected"
1086
  msgstr "هیچ پرونده ای انتخاب نشده است."
1087
 
1088
+ #: ../core/fields/file.php:123
1089
  msgid "Add File"
1090
  msgstr "افزودن پرونده"
1091
 
1092
+ #: ../core/fields/file.php:153 ../core/fields/image.php:118
1093
+ #: ../core/fields/taxonomy.php:367
1094
  msgid "Return Value"
1095
  msgstr "مقدار بازگشت"
1096
 
1097
+ #: ../core/fields/file.php:164
1098
  msgid "File Object"
1099
  msgstr "موضوع پرونده"
1100
 
1101
+ #: ../core/fields/file.php:165
1102
  msgid "File URL"
1103
  msgstr "آدرس پرونده"
1104
 
1105
+ #: ../core/fields/file.php:166
1106
  msgid "File ID"
1107
  msgstr "شناسه پرونده"
1108
 
1109
+ #: ../core/fields/file.php:175 ../core/fields/image.php:158
1110
  msgid "Library"
1111
  msgstr "کتابخانه"
1112
 
1113
+ #: ../core/fields/file.php:187 ../core/fields/image.php:171
1114
  msgid "Uploaded to post"
1115
  msgstr "بارگذاری شده در نوشته"
1116
 
1117
+ #: ../core/fields/google-map.php:18
1118
+ msgid "Google Map"
1119
+ msgstr "نقشه گوگل"
1120
+
1121
+ #: ../core/fields/google-map.php:31
1122
+ msgid "Locating"
1123
+ msgstr "مکان یابی"
1124
+
1125
+ #: ../core/fields/google-map.php:32
1126
+ msgid "Sorry, this browser does not support geolocation"
1127
+ msgstr "با عرض پوزش، این مرورگر از منطقه جغرافیایی پشتیبانی نمی کند."
1128
+
1129
+ #: ../core/fields/google-map.php:117
1130
+ msgid "Clear location"
1131
+ msgstr "محل پاک کردن"
1132
+
1133
+ #: ../core/fields/google-map.php:122
1134
+ msgid "Find current location"
1135
+ msgstr "پیدا کردن مکان فعلی"
1136
+
1137
+ #: ../core/fields/google-map.php:123
1138
+ msgid "Search for address..."
1139
+ msgstr "جستجو برای آدرس . . ."
1140
+
1141
+ #: ../core/fields/google-map.php:159
1142
+ msgid "Center"
1143
+ msgstr "مرکز"
1144
+
1145
+ #: ../core/fields/google-map.php:160
1146
+ msgid "Center the initial map"
1147
+ msgstr "مرکز نقشه اولیه"
1148
+
1149
+ #: ../core/fields/google-map.php:196
1150
+ msgid "Height"
1151
+ msgstr "ارتفاع"
1152
+
1153
+ #: ../core/fields/google-map.php:197
1154
+ msgid "Customise the map height"
1155
+ msgstr "سفارشی کردن ارتفاع نقشه"
1156
+
1157
+ #: ../core/fields/image.php:19
1158
  msgid "Image"
1159
  msgstr "تصویر"
1160
 
1161
+ #: ../core/fields/image.php:27
1162
  msgid "Select Image"
1163
  msgstr "انتخاب تصویر"
1164
 
1165
+ #: ../core/fields/image.php:28
1166
  msgid "Edit Image"
1167
  msgstr "ویرایش تصویر"
1168
 
1169
+ #: ../core/fields/image.php:29
1170
  msgid "Update Image"
1171
  msgstr "بروزرسانی تصویر"
1172
 
1173
+ #: ../core/fields/image.php:83
1174
  msgid "Remove"
1175
  msgstr "پاک کردن"
1176
 
1177
+ #: ../core/fields/image.php:84 ../core/views/meta_box_fields.php:108
1178
  msgid "Edit"
1179
  msgstr "ویرایش"
1180
 
1181
+ #: ../core/fields/image.php:90
1182
  msgid "No image selected"
1183
  msgstr "هیچ تصویری انتخاب نشده است."
1184
 
1185
+ #: ../core/fields/image.php:90
1186
  msgid "Add Image"
1187
  msgstr "افزودن تصویر"
1188
 
1189
+ #: ../core/fields/image.php:119 ../core/fields/relationship.php:570
1190
  msgid "Specify the returned value on front end"
1191
  msgstr "تعیین مقدار برگشت داده شده در پایان"
1192
 
1193
+ #: ../core/fields/image.php:129
1194
  msgid "Image Object"
1195
  msgstr "موضوع تصویر"
1196
 
1197
+ #: ../core/fields/image.php:130
1198
  msgid "Image URL"
1199
  msgstr "آدرس تصویر"
1200
 
1201
+ #: ../core/fields/image.php:131
1202
  msgid "Image ID"
1203
  msgstr "شناسه تصویر"
1204
 
1205
+ #: ../core/fields/image.php:139
1206
  msgid "Preview Size"
1207
+ msgstr "حجم پیش نمایش"
1208
 
1209
+ #: ../core/fields/image.php:140
1210
  msgid "Shown when entering data"
1211
  msgstr "هنگام وارد کردن داده ها نمایش داده شود."
1212
 
1213
+ #: ../core/fields/image.php:159
1214
  msgid "Limit the media library choice"
1215
  msgstr "محدود کردن گزینه کتابخانه چندرسانه ای"
1216
 
1217
+ #: ../core/fields/message.php:19 ../core/fields/message.php:70
1218
+ #: ../core/fields/true_false.php:79
1219
  msgid "Message"
1220
  msgstr "پیام"
1221
 
1222
+ #: ../core/fields/message.php:71
1223
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1224
  msgstr ""
1225
  "متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد."
1226
 
1227
+ #: ../core/fields/message.php:72
1228
  msgid "Please note that all text will first be passed through the wp function "
1229
  msgstr ""
1230
  "لطفا توجه داشته باشید که برای اولین بار تمام متن را از طریق تابع وردپرس "
1231
  "انتقال دهید."
1232
 
1233
+ #: ../core/fields/number.php:19
1234
  msgid "Number"
1235
  msgstr "شماره"
1236
 
1237
+ #: ../core/fields/number.php:178
1238
  msgid "Minimum Value"
1239
  msgstr "حداقل مقدار"
1240
 
1241
+ #: ../core/fields/number.php:194
1242
  msgid "Maximum Value"
1243
  msgstr "حداکثر مقدار"
1244
 
1245
+ #: ../core/fields/number.php:210
1246
  msgid "Step Size"
1247
  msgstr "اندازه مرحله"
1248
 
1249
+ #: ../core/fields/page_link.php:18
1250
  msgid "Page Link"
1251
  msgstr "پیوند برگه"
1252
 
1253
+ #: ../core/fields/page_link.php:19 ../core/fields/post_object.php:19
1254
+ #: ../core/fields/relationship.php:19 ../core/fields/taxonomy.php:19
1255
+ #: ../core/fields/user.php:19
1256
  msgid "Relational"
1257
  msgstr "ارتباط"
1258
 
1259
+ #: ../core/fields/page_link.php:103 ../core/fields/post_object.php:268
1260
+ #: ../core/fields/relationship.php:589 ../core/fields/relationship.php:668
1261
+ #: ../core/views/meta_box_location.php:75
1262
  msgid "Post Type"
1263
  msgstr "نوع نوشته"
1264
 
1265
+ #: ../core/fields/page_link.php:127 ../core/fields/post_object.php:317
1266
+ #: ../core/fields/select.php:214 ../core/fields/taxonomy.php:333
1267
+ #: ../core/fields/user.php:275
1268
  msgid "Allow Null?"
1269
  msgstr "آیا صفر اجازه می دهد؟"
1270
 
1271
+ #: ../core/fields/page_link.php:148 ../core/fields/post_object.php:338
1272
+ #: ../core/fields/select.php:233
1273
  msgid "Select multiple values?"
1274
  msgstr "آیا چندین مقدار انتخاب شوند؟"
1275
 
1276
+ #: ../core/fields/password.php:19
1277
  msgid "Password"
1278
  msgstr "رمزعبور"
1279
 
1280
+ #: ../core/fields/post_object.php:18
1281
  msgid "Post Object"
1282
  msgstr "موضوع نوشته"
1283
 
1284
+ #: ../core/fields/post_object.php:292 ../core/fields/relationship.php:613
1285
  msgid "Filter from Taxonomy"
1286
  msgstr "فیلتر شده از طبقه بندی"
1287
 
1288
+ #: ../core/fields/radio.php:18
1289
  msgid "Radio Button"
1290
  msgstr "دکمه رادیویی"
1291
 
1292
+ #: ../core/fields/radio.php:102 ../core/views/meta_box_location.php:91
1293
  msgid "Other"
1294
  msgstr "دیگر"
1295
 
1296
+ #: ../core/fields/radio.php:145
1297
  msgid "Enter your choices one per line"
1298
+ msgstr "گزینه های خود را در هر خط وارد کنید."
1299
 
1300
+ #: ../core/fields/radio.php:147
1301
  msgid "Red"
1302
  msgstr "قرمز"
1303
 
1304
+ #: ../core/fields/radio.php:148
1305
  msgid "Blue"
1306
  msgstr "آبی"
1307
 
1308
+ #: ../core/fields/radio.php:172
1309
  msgid "Add 'other' choice to allow for custom values"
1310
+ msgstr "افزودن گزینه ای دیگر تا برای مقادیر دلخواه اجازه دهد."
1311
 
1312
+ #: ../core/fields/radio.php:184
1313
  msgid "Save 'other' values to the field's choices"
1314
  msgstr "ذخیره مقادیر دیگر برای گزینه های زمینه"
1315
 
1316
+ #: ../core/fields/relationship.php:18
1317
  msgid "Relationship"
1318
  msgstr "ارتباط"
1319
 
1320
+ #: ../core/fields/relationship.php:29
1321
  msgid "Maximum values reached ( {max} values )"
1322
  msgstr "مقادیر به حداکثر رسیده اند { (حداکثر) مقادیر }."
1323
 
1324
+ #: ../core/fields/relationship.php:425
1325
  msgid "Search..."
1326
  msgstr "جستجو . . ."
1327
 
1328
+ #: ../core/fields/relationship.php:436
1329
  msgid "Filter by post type"
1330
  msgstr "فیلتر شده توسط نوع نوشته"
1331
 
1332
+ #: ../core/fields/relationship.php:569
1333
  msgid "Return Format"
1334
  msgstr "فرمت بازگشت"
1335
 
1336
+ #: ../core/fields/relationship.php:580
1337
  msgid "Post Objects"
1338
  msgstr "موضوعات نوشته"
1339
 
1340
+ #: ../core/fields/relationship.php:581
1341
  msgid "Post IDs"
1342
  msgstr "شناسه های نوشته"
1343
 
1344
+ #: ../core/fields/relationship.php:647
1345
  msgid "Search"
1346
  msgstr "جستجو"
1347
 
1348
+ #: ../core/fields/relationship.php:648
1349
  msgid "Post Type Select"
1350
  msgstr "انتخاب نوع نوشته"
1351
 
1352
+ #: ../core/fields/relationship.php:656
1353
  msgid "Elements"
1354
  msgstr "عناصر"
1355
 
1356
+ #: ../core/fields/relationship.php:657
1357
  msgid "Selected elements will be displayed in each result"
1358
  msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد."
1359
 
1360
+ #: ../core/fields/relationship.php:666 ../core/views/meta_box_options.php:105
1361
  msgid "Featured Image"
1362
  msgstr "تصویر شاخص"
1363
 
1364
+ #: ../core/fields/relationship.php:667
1365
  msgid "Post Title"
1366
  msgstr "عنوان نوشته"
1367
 
1368
+ #: ../core/fields/relationship.php:679
1369
  msgid "Maximum posts"
1370
  msgstr "حداکثر نوشته ها"
1371
 
1372
+ #: ../core/fields/select.php:18 ../core/fields/select.php:109
1373
+ #: ../core/fields/taxonomy.php:324 ../core/fields/user.php:266
1374
  msgid "Select"
1375
  msgstr "انتخاب"
1376
 
1377
+ #: ../core/fields/tab.php:19
1378
  msgid "Tab"
1379
  msgstr "تب"
1380
 
1381
+ #: ../core/fields/tab.php:68
1382
  msgid ""
1383
  "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1384
  "fields together under separate tab headings."
1386
  "استفاده از ((تب زمینه ها)) برای سازماندهی بهتر صفحه ویرایش توسط گروه بندی "
1387
  "زمینه های شما با هم تحت سرفصل تب جدا شده"
1388
 
1389
+ #: ../core/fields/tab.php:69
1390
  msgid ""
1391
  "All the fields following this \"tab field\" (or until another \"tab field\" "
1392
  "is defined) will be grouped together."
1394
  "همه زمینه های تحت این >تب زمینه< (یا تا زمانی دیگر که >تب زمینه< تعریف شده "
1395
  "است) با هم گروه بندی می شوند."
1396
 
1397
+ #: ../core/fields/tab.php:70
1398
  msgid "Use multiple tabs to divide your fields into sections."
1399
  msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید."
1400
 
1401
+ #: ../core/fields/taxonomy.php:18 ../core/fields/taxonomy.php:278
1402
  msgid "Taxonomy"
1403
  msgstr "طبقه بندی"
1404
 
1405
+ #: ../core/fields/taxonomy.php:222 ../core/fields/taxonomy.php:231
1406
  msgid "None"
1407
  msgstr "هیچ"
1408
 
1409
+ #: ../core/fields/taxonomy.php:308 ../core/fields/user.php:251
1410
+ #: ../core/views/meta_box_fields.php:77 ../core/views/meta_box_fields.php:159
1411
  msgid "Field Type"
1412
  msgstr "نوع زمینه"
1413
 
1414
+ #: ../core/fields/taxonomy.php:318 ../core/fields/user.php:260
1415
  msgid "Multiple Values"
1416
  msgstr "چندین مقدار"
1417
 
1418
+ #: ../core/fields/taxonomy.php:320 ../core/fields/user.php:262
1419
  msgid "Multi Select"
1420
  msgstr "چندین انتخاب"
1421
 
1422
+ #: ../core/fields/taxonomy.php:322 ../core/fields/user.php:264
1423
  msgid "Single Value"
1424
+ msgstr "تک مقدار"
1425
 
1426
+ #: ../core/fields/taxonomy.php:323
1427
  msgid "Radio Buttons"
1428
  msgstr "دکمه های رادیویی"
1429
 
1430
+ #: ../core/fields/taxonomy.php:352
1431
  msgid "Load & Save Terms to Post"
1432
  msgstr "بارگذاری و ذخیره دوره ها برای نوشته"
1433
 
1434
+ #: ../core/fields/taxonomy.php:360
1435
  msgid ""
1436
  "Load value based on the post's terms and update the post's terms on save"
1437
  msgstr ""
1438
  "بارگذاری مقدار بر اساس شرایط نوشته و بروزرسانی شرایط نوشته در ذخیره کردن"
1439
 
1440
+ #: ../core/fields/taxonomy.php:377
1441
  msgid "Term Object"
1442
  msgstr "موضوع دوره"
1443
 
1444
+ #: ../core/fields/taxonomy.php:378
1445
  msgid "Term ID"
1446
  msgstr "شناسه دوره"
1447
 
1448
+ #: ../core/fields/text.php:19
1449
  msgid "Text"
1450
  msgstr "متن"
1451
 
1452
+ #: ../core/fields/text.php:176 ../core/fields/textarea.php:141
1453
  msgid "Formatting"
1454
  msgstr "قالب بندی"
1455
 
1456
+ #: ../core/fields/text.php:177 ../core/fields/textarea.php:142
1457
  msgid "Effects value on front end"
1458
  msgstr "مقدار افکت ها در پایان"
1459
 
1460
+ #: ../core/fields/text.php:186 ../core/fields/textarea.php:151
1461
  msgid "No formatting"
1462
  msgstr "بدون قالب بندی"
1463
 
1464
+ #: ../core/fields/text.php:187 ../core/fields/textarea.php:153
1465
  msgid "Convert HTML into tags"
1466
  msgstr "تبدیل HTML به برچسب ها"
1467
 
1468
+ #: ../core/fields/text.php:195 ../core/fields/textarea.php:126
1469
  msgid "Character Limit"
1470
  msgstr "محدودیت نویسه"
1471
 
1472
+ #: ../core/fields/text.php:196 ../core/fields/textarea.php:127
1473
  msgid "Leave blank for no limit"
1474
  msgstr "برای نامحدود بودن این بخش را خالی بگذارید."
1475
 
1476
+ #: ../core/fields/textarea.php:19
1477
  msgid "Text Area"
1478
  msgstr "ناحیه متن"
1479
 
1480
+ #: ../core/fields/textarea.php:152
1481
  msgid "Convert new lines into &lt;br /&gt; tags"
1482
  msgstr "تبدیل خط های جدید به برچسب ها"
1483
 
1484
+ #: ../core/fields/true_false.php:19
1485
  msgid "True / False"
1486
  msgstr "صحیح / غلط"
1487
 
1488
+ #: ../core/fields/true_false.php:80
1489
  msgid "eg. Show extra content"
1490
  msgstr "به عنوان مثال: نمایش محتوای اضافی"
1491
 
1492
+ #: ../core/fields/user.php:18 ../core/views/meta_box_location.php:94
1493
  msgid "User"
1494
  msgstr "کاربر"
1495
 
1496
+ #: ../core/fields/user.php:224
1497
  msgid "Filter by role"
1498
  msgstr "فیلتر شده توسط قانون"
1499
 
1500
+ #: ../core/fields/wysiwyg.php:35
1501
  msgid "Wysiwyg Editor"
1502
  msgstr "ویرایشگر دیداری"
1503
 
1504
+ #: ../core/fields/wysiwyg.php:202
1505
  msgid "Toolbar"
1506
  msgstr "نوار ابزار"
1507
 
1508
+ #: ../core/fields/wysiwyg.php:234
1509
  msgid "Show Media Upload Buttons?"
1510
  msgstr "آیا دکمه های بارگذاری رسانه ها نمایش داده شوند؟"
1511
 
1512
+ #: ../core/fields/_base.php:124 ../core/views/meta_box_location.php:74
1513
+ msgid "Basic"
1514
+ msgstr "پایه"
1515
 
1516
+ #: ../core/fields/date_picker/date_picker.php:19
1517
+ msgid "Date Picker"
1518
+ msgstr "چیننده تاریخ"
1519
 
1520
+ #: ../core/fields/date_picker/date_picker.php:55
1521
+ msgid "Done"
1522
+ msgstr "انجام شده"
1523
 
1524
+ #: ../core/fields/date_picker/date_picker.php:56
1525
+ msgid "Today"
1526
+ msgstr "امروز"
1527
 
1528
+ #: ../core/fields/date_picker/date_picker.php:59
1529
+ msgid "Show a different month"
1530
+ msgstr "نمایش یک ماه مختلف"
1531
 
1532
+ #: ../core/fields/date_picker/date_picker.php:126
1533
+ msgid "Save format"
1534
+ msgstr "فرمت ذخیره"
1535
 
1536
+ #: ../core/fields/date_picker/date_picker.php:127
1537
+ msgid ""
1538
+ "This format will determin the value saved to the database and returned via "
1539
+ "the API"
1540
+ msgstr ""
1541
+ "این فرمت مقدار ذخیره شده را برای پایگاه داده تعیین خواهد کرد و از طریق رابط "
1542
+ "برنامه نویسی (API) برمی گردد."
1543
 
1544
+ #: ../core/fields/date_picker/date_picker.php:128
1545
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1546
+ msgstr "(روز/ماه/سال) بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر!"
1547
+
1548
+ #: ../core/fields/date_picker/date_picker.php:128
1549
+ #: ../core/fields/date_picker/date_picker.php:144
1550
+ msgid "jQuery date formats"
1551
+ msgstr "قالب های تاریخ جی کوئری"
1552
+
1553
+ #: ../core/fields/date_picker/date_picker.php:142
1554
+ msgid "Display format"
1555
+ msgstr "فرمت نمایش"
1556
+
1557
+ #: ../core/fields/date_picker/date_picker.php:143
1558
+ msgid "This format will be seen by the user when entering a value"
1559
+ msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد."
1560
+
1561
+ #: ../core/fields/date_picker/date_picker.php:144
1562
+ msgid ""
1563
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1564
+ "about"
1565
+ msgstr ""
1566
+ "(روز/ماه/سال) و (ماه/روز/سال) پر استفاده ترین قالب های نمایش تاریخ می باشند. "
1567
+ "اطلاعات بیشتر!"
1568
+
1569
+ #: ../core/fields/date_picker/date_picker.php:158
1570
+ msgid "Week Starts On"
1571
+ msgstr "هفته شروع می شود در"
1572
+
1573
+ #: ../core/views/meta_box_fields.php:24
1574
+ msgid "New Field"
1575
+ msgstr "زمینه جدید"
1576
+
1577
+ #: ../core/views/meta_box_fields.php:58
1578
+ msgid "Field type does not exist"
1579
+ msgstr "نوع زمینه وجود ندارد."
1580
 
1581
+ #: ../core/views/meta_box_fields.php:74
1582
  msgid "Field Order"
1583
  msgstr "شماره زمینه"
1584
 
1585
+ #: ../core/views/meta_box_fields.php:75 ../core/views/meta_box_fields.php:127
1586
  msgid "Field Label"
1587
  msgstr "برچسب زمینه"
1588
 
1589
+ #: ../core/views/meta_box_fields.php:76 ../core/views/meta_box_fields.php:143
1590
  msgid "Field Name"
1591
  msgstr "نام زمینه"
1592
 
1593
+ #: ../core/views/meta_box_fields.php:78
1594
  msgid "Field Key"
1595
  msgstr "کلید زمینه"
1596
 
1597
+ #: ../core/views/meta_box_fields.php:90
1598
  msgid ""
1599
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1600
  "first field."
1602
  "هیچ زمینه ای وجود ندارد. روی دکمه <strong> + افزودن زمینه </strong> کلیک "
1603
  "کنید تا اولین زمینه خود را بسازید."
1604
 
1605
+ #: ../core/views/meta_box_fields.php:105 ../core/views/meta_box_fields.php:108
1606
  msgid "Edit this Field"
1607
  msgstr "ویرایش این زمینه"
1608
 
1609
+ #: ../core/views/meta_box_fields.php:109
1610
  msgid "Read documentation for this field"
1611
  msgstr "مستندات را برای این زمینه بخوانید."
1612
 
1613
+ #: ../core/views/meta_box_fields.php:109
1614
  msgid "Docs"
1615
  msgstr "اسناد"
1616
 
1617
+ #: ../core/views/meta_box_fields.php:110
1618
  msgid "Duplicate this Field"
1619
  msgstr "تکثیر این زمینه"
1620
 
1621
+ #: ../core/views/meta_box_fields.php:110
1622
  msgid "Duplicate"
1623
  msgstr "تکثیر"
1624
 
1625
+ #: ../core/views/meta_box_fields.php:111
1626
  msgid "Delete this Field"
1627
  msgstr "حذف این زمینه"
1628
 
1629
+ #: ../core/views/meta_box_fields.php:111
1630
  msgid "Delete"
1631
  msgstr "حذف"
1632
 
1633
+ #: ../core/views/meta_box_fields.php:128
1634
  msgid "This is the name which will appear on the EDIT page"
1635
  msgstr "این نامی است که در برگه ویرایش نمایش داده خواهد شد."
1636
 
1637
+ #: ../core/views/meta_box_fields.php:144
1638
  msgid "Single word, no spaces. Underscores and dashes allowed"
1639
  msgstr "تک کلمه، بدون فاصله، خط زیرین و خط تیره ها قبول هستند."
1640
 
1641
+ #: ../core/views/meta_box_fields.php:173
1642
  msgid "Field Instructions"
1643
  msgstr "دستورالعمل های زمینه"
1644
 
1645
+ #: ../core/views/meta_box_fields.php:174
1646
  msgid "Instructions for authors. Shown when submitting data"
1647
  msgstr ""
1648
  "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند."
1649
 
1650
+ #: ../core/views/meta_box_fields.php:186
1651
  msgid "Required?"
1652
+ msgstr "لازم است؟"
1653
 
1654
+ #: ../core/views/meta_box_fields.php:209
1655
  msgid "Conditional Logic"
1656
+ msgstr "منطق شرطی"
1657
 
1658
+ #: ../core/views/meta_box_fields.php:260
1659
+ #: ../core/views/meta_box_location.php:117
1660
  msgid "is equal to"
1661
  msgstr "برابر است با"
1662
 
1663
+ #: ../core/views/meta_box_fields.php:261
1664
+ #: ../core/views/meta_box_location.php:118
1665
  msgid "is not equal to"
1666
  msgstr "برابر نیست با"
1667
 
1668
+ #: ../core/views/meta_box_fields.php:279
1669
  msgid "Show this field when"
1670
  msgstr "نمایش این زمینه موقعی که"
1671
 
1672
+ #: ../core/views/meta_box_fields.php:285
1673
  msgid "all"
1674
  msgstr "همه"
1675
 
1676
+ #: ../core/views/meta_box_fields.php:286
1677
  msgid "any"
1678
  msgstr "هیچ"
1679
 
1680
+ #: ../core/views/meta_box_fields.php:289
1681
  msgid "these rules are met"
1682
  msgstr "این قوانین آشنا هستند."
1683
 
1684
+ #: ../core/views/meta_box_fields.php:303
1685
  msgid "Close Field"
1686
  msgstr "بستن زمینه"
1687
 
1688
+ #: ../core/views/meta_box_fields.php:316
1689
  msgid "Drag and drop to reorder"
1690
  msgstr "بالا و پایین کشیدن برای دوباره مرتب کردن"
1691
 
1692
+ #: ../core/views/meta_box_fields.php:317
1693
  msgid "+ Add Field"
1694
  msgstr "+ افزودن زمینه"
1695
 
1696
+ #: ../core/views/meta_box_location.php:48
1697
  msgid "Rules"
1698
  msgstr "قوانین"
1699
 
1700
+ #: ../core/views/meta_box_location.php:49
1701
  msgid ""
1702
  "Create a set of rules to determine which edit screens will use these "
1703
  "advanced custom fields"
1705
  "ایجاد مجموعه ای از قوانین برای تعیین این که صفحه ویرایش از این زمینه های "
1706
  "سفارشی پیشرفته استفاده خواهند کرد."
1707
 
1708
+ #: ../core/views/meta_box_location.php:60
1709
  msgid "Show this field group if"
1710
  msgstr "نمایش این گروه زمینه اگر"
1711
 
1712
+ #: ../core/views/meta_box_location.php:76
1713
  msgid "Logged in User Type"
1714
  msgstr "وارد شده در نوع کاربر"
1715
 
1716
+ #: ../core/views/meta_box_location.php:78
1717
+ #: ../core/views/meta_box_location.php:79
1718
  msgid "Page"
1719
  msgstr "برگه"
1720
 
1721
+ #: ../core/views/meta_box_location.php:80
1722
  msgid "Page Type"
1723
  msgstr "نوع برگه"
1724
 
1725
+ #: ../core/views/meta_box_location.php:81
1726
  msgid "Page Parent"
1727
  msgstr "برگه مادر"
1728
 
1729
+ #: ../core/views/meta_box_location.php:82
1730
  msgid "Page Template"
1731
  msgstr "پوسته برگه"
1732
 
1733
+ #: ../core/views/meta_box_location.php:84
1734
+ #: ../core/views/meta_box_location.php:85
1735
  msgid "Post"
1736
  msgstr "نوشته"
1737
 
1738
+ #: ../core/views/meta_box_location.php:86
1739
  msgid "Post Category"
1740
  msgstr "دسته بندی نوشته"
1741
 
1742
+ #: ../core/views/meta_box_location.php:87
1743
  msgid "Post Format"
1744
  msgstr "فرمت نوشته"
1745
 
1746
+ #: ../core/views/meta_box_location.php:88
1747
  msgid "Post Status"
1748
  msgstr "وضعیت نوشته"
1749
 
1750
+ #: ../core/views/meta_box_location.php:89
1751
  msgid "Post Taxonomy"
1752
  msgstr "طبقه بندی نوشته"
1753
 
1754
+ #: ../core/views/meta_box_location.php:92
1755
  msgid "Attachment"
1756
  msgstr "پیوست"
1757
 
1758
+ #: ../core/views/meta_box_location.php:93
1759
  msgid "Term"
1760
  msgstr "دوره"
1761
 
1762
+ #: ../core/views/meta_box_location.php:146
1763
  msgid "and"
1764
  msgstr "و"
1765
 
1766
+ #: ../core/views/meta_box_location.php:161
1767
  msgid "Add rule group"
1768
  msgstr "افزودن قانون"
1769
 
1770
+ #: ../core/views/meta_box_options.php:25
1771
  msgid "Order No."
1772
  msgstr "شماره زمینه"
1773
 
1774
+ #: ../core/views/meta_box_options.php:26
1775
  msgid "Field groups are created in order <br />from lowest to highest"
1776
  msgstr ""
1777
  "گروه های زمینه از کوچکترین شماره تا بزرگترین شماره <br />ایجاد می شوند."
1778
 
1779
+ #: ../core/views/meta_box_options.php:42
1780
  msgid "Position"
1781
  msgstr "موقعیت"
1782
 
1783
+ #: ../core/views/meta_box_options.php:52
1784
  msgid "High (after title)"
1785
  msgstr "بالا (بعد از عنوان)"
1786
 
1787
+ #: ../core/views/meta_box_options.php:53
1788
  msgid "Normal (after content)"
1789
  msgstr "معمولی (بعد از نوشته)"
1790
 
1791
+ #: ../core/views/meta_box_options.php:54
1792
  msgid "Side"
1793
  msgstr "کنار"
1794
 
1795
+ #: ../core/views/meta_box_options.php:64
1796
  msgid "Style"
1797
  msgstr "استایل"
1798
 
1799
+ #: ../core/views/meta_box_options.php:74
1800
  msgid "No Metabox"
1801
  msgstr "بدون متاباکس"
1802
 
1803
+ #: ../core/views/meta_box_options.php:75
1804
  msgid "Standard Metabox"
1805
  msgstr "دارای متاباکس استاندارد"
1806
 
1807
+ #: ../core/views/meta_box_options.php:84
1808
  msgid "Hide on screen"
1809
  msgstr "مخفی ماندن در صفحه"
1810
 
1811
+ #: ../core/views/meta_box_options.php:85
1812
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1813
  msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
1814
 
1815
+ #: ../core/views/meta_box_options.php:86
1816
  msgid ""
1817
  "If multiple field groups appear on an edit screen, the first field group's "
1818
  "options will be used. (the one with the lowest order number)"
1820
  "اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
1821
  "زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
1822
 
1823
+ #: ../core/views/meta_box_options.php:96
1824
  msgid "Content Editor"
1825
+ msgstr "Content Editor"
1826
 
1827
+ #: ../core/views/meta_box_options.php:97
1828
  msgid "Excerpt"
1829
  msgstr "چکیده"
1830
 
1831
+ #: ../core/views/meta_box_options.php:99
1832
  msgid "Discussion"
1833
  msgstr "گفتگو"
1834
 
1835
+ #: ../core/views/meta_box_options.php:100
1836
  msgid "Comments"
1837
  msgstr "دیدگاه ها"
1838
 
1839
+ #: ../core/views/meta_box_options.php:101
1840
  msgid "Revisions"
1841
  msgstr "بازنگری ها"
1842
 
1843
+ #: ../core/views/meta_box_options.php:102
1844
  msgid "Slug"
1845
  msgstr "نامک"
1846
 
1847
+ #: ../core/views/meta_box_options.php:103
1848
  msgid "Author"
1849
  msgstr "نویسنده"
1850
 
1851
+ #: ../core/views/meta_box_options.php:104
1852
  msgid "Format"
1853
  msgstr "فرمت"
1854
 
1855
+ #: ../core/views/meta_box_options.php:106
1856
  msgid "Categories"
1857
  msgstr "دسته ها"
1858
 
1859
+ #: ../core/views/meta_box_options.php:107
1860
  msgid "Tags"
1861
  msgstr "برچسب ها"
1862
 
1863
+ #: ../core/views/meta_box_options.php:108
1864
  msgid "Send Trackbacks"
1865
  msgstr "ارسال بازتاب ها"
lang/acf-it_IT.mo CHANGED
Binary file
lang/acf-it_IT.po CHANGED
@@ -4,1122 +4,2228 @@ 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: 2012-05-12 11:12:49+00:00\n"
 
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-06-10 18:59-0600\n"
12
- "Last-Translator: ale <alala@asdasda.it>\n"
13
- "Language-Team: <a.mignogna@asernet.it>\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "Language: it_IT\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
-
18
- #: acf.php:289 core/admin/meta_box_options.php:83
19
- msgid "Custom Fields"
20
- msgstr "Advanced Custom Fields"
21
-
22
- #: acf.php:290
23
- msgid "Settings"
24
- msgstr "Impostazioni"
25
-
26
- #: acf.php:291
27
- msgid "Upgrade"
28
- msgstr "Aggiorna"
29
-
30
- #: acf.php:503
31
- msgid "Fields"
32
- msgstr "Campi"
33
-
34
- #: acf.php:504
35
- msgid "Location"
36
- msgstr "Location"
37
-
38
- #: acf.php:504
39
- msgid "Add Fields to Edit Screens"
40
- msgstr "Aggiungi campi alle schermate di modifica"
41
-
42
- #: acf.php:505 core/admin/meta_box_location.php:133 core/options_page.php:62
43
- #: core/options_page.php:74
44
- msgid "Options"
45
- msgstr "Opzioni"
46
-
47
- #: acf.php:505
48
- msgid "Customise the edit page"
49
- msgstr "Personalizza la pagina di modifica"
50
-
51
- #: acf.php:533 core/api.php:503 core/everything_fields.php:202
52
- #: core/options_page.php:182
53
- msgid "Validation Failed. One or more fields below are required."
54
- msgstr "Validazione fallita. Uno o più campi sono obbligatori."
55
-
56
- #: acf.php:859
57
- msgid "Error: Field Type does not exist!"
58
- msgstr "Errore: non esiste questo tipo di campo!"
59
-
60
- #: acf.php:2086
61
- msgid "required"
62
- msgstr "obbligatorio"
63
-
64
- #: acf.php:2184
65
- msgid "Parent Page"
66
- msgstr "Pagina madre"
67
-
68
- #: acf.php:2185
69
- msgid "Child Page"
70
- msgstr "Pagina figlia"
71
-
72
- #: acf.php:2193
73
- msgid "Default Template"
74
- msgstr "Template di default"
75
 
76
- #: core/actions/export.php:19
77
- msgid "No ACF groups selected"
78
- msgstr "Nessun gruppo ACF selezionato"
79
 
80
- #: core/actions/init.php:21 core/actions/init.php:116
81
- #: core/admin/page_acf.php:14
82
  msgid "Advanced Custom Fields"
83
  msgstr "Advanced Custom Fields"
84
 
85
- #: core/actions/init.php:21
86
- msgid "requires a database upgrade"
87
- msgstr "richiede un aggiornamento del databasee"
88
-
89
- #: core/actions/init.php:21
90
- msgid "why?"
91
- msgstr "perchè?"
92
-
93
- #: core/actions/init.php:21
94
- msgid "Please"
95
- msgstr "Per piacere"
96
-
97
- #: core/actions/init.php:21
98
- msgid "backup your database"
99
- msgstr "effettua un backup del tuo database"
100
-
101
- #: core/actions/init.php:21
102
- msgid "then click"
103
- msgstr "poi clicca"
104
-
105
- #: core/actions/init.php:21
106
- msgid "Upgrade Database"
107
- msgstr "Aggiorna database"
108
-
109
- #: core/actions/init.php:47
110
- msgid "Repeater field deactivated"
111
- msgstr "Repeater field disattivato"
112
-
113
- #: core/actions/init.php:51
114
- msgid "Options page deactivated"
115
- msgstr "Options page disattivata"
116
-
117
- #: core/actions/init.php:55
118
- msgid "Flexible Content field deactivated"
119
- msgstr "Flexible Content field disattivato"
120
-
121
- #: core/actions/init.php:59
122
- msgid "Everything Fields deactivated"
123
- msgstr "Everything Fields disattivato"
124
-
125
- #: core/actions/init.php:87
126
- msgid "Repeater field activated"
127
- msgstr "Repeater field attivato"
128
-
129
- #: core/actions/init.php:91
130
- msgid "Options page activated"
131
- msgstr "Options page attivata"
132
-
133
- #: core/actions/init.php:95
134
- msgid "Flexible Content field activated"
135
- msgstr "Flexible Content field attivato"
136
-
137
- #: core/actions/init.php:99
138
- msgid "Everything Fields activated"
139
- msgstr "Everything Fields attivato"
140
-
141
- #: core/actions/init.php:104
142
- msgid "License key unrecognised"
143
- msgstr "Licenza non riconosciuta"
144
-
145
- #: core/actions/init.php:115
146
- msgid "Field&nbsp;Groups"
147
- msgstr "Gruppo di custom field"
148
-
149
- #: core/actions/init.php:117 core/fields/flexible_content.php:257
150
  msgid "Add New"
151
  msgstr "Aggiungi nuovo"
152
 
153
- #: core/actions/init.php:118
154
  msgid "Add New Field Group"
155
  msgstr "Aggiungi un nuovo gruppo di campi"
156
 
157
- #: core/actions/init.php:119
158
  msgid "Edit Field Group"
159
  msgstr "Modifica il gruppo di campi"
160
 
161
- #: core/actions/init.php:120
162
  msgid "New Field Group"
163
  msgstr "Nuovo gruppo di campi"
164
 
165
- #: core/actions/init.php:121
166
  msgid "View Field Group"
167
  msgstr "Visualizza gruppo di campi"
168
 
169
- #: core/actions/init.php:122
170
  msgid "Search Field Groups"
171
  msgstr "Cerca gruppi di campi"
172
 
173
- #: core/actions/init.php:123
174
  msgid "No Field Groups found"
175
  msgstr "Nessun gruppo di campi trovato"
176
 
177
- #: core/actions/init.php:124
178
  msgid "No Field Groups found in Trash"
179
  msgstr "Nessun gruppo di campi trovato nel cestino"
180
 
181
- #: core/actions/init.php:153 core/actions/init.php:156
 
 
 
 
 
182
  msgid "Field group updated."
183
  msgstr "Gruppo di campi aggiornato."
184
 
185
- #: core/actions/init.php:154
186
  msgid "Custom field updated."
187
  msgstr "Campo personalizzato aggiornato."
188
 
189
- #: core/actions/init.php:155
190
  msgid "Custom field deleted."
191
  msgstr "Campo personalizzato cancellato."
192
 
193
- #. translators: %s: date and time of the revision
194
- #: core/actions/init.php:158
195
  msgid "Field group restored to revision from %s"
196
  msgstr "Gruppo di campi ripristinato per la revisione da %s"
197
 
198
- #: core/actions/init.php:159
199
  msgid "Field group published."
200
  msgstr "Gruppo di campi pubblicato."
201
 
202
- #: core/actions/init.php:160
203
  msgid "Field group saved."
204
  msgstr "Gruppo di campi salvato."
205
 
206
- #: core/actions/init.php:161
207
  msgid "Field group submitted."
208
  msgstr "Gruppo di campi inviato."
209
 
210
- #: core/actions/init.php:162
211
  msgid "Field group scheduled for."
212
  msgstr "Gruppo di campi schedulato."
213
 
214
- #: core/actions/init.php:163
215
  msgid "Field group draft updated."
216
  msgstr "Bozza del gruppo di campi aggiornata."
217
 
218
- #: core/actions/init.php:181
219
- msgid "Title"
220
- msgstr "Titolo"
221
 
222
- #: core/admin/meta_box_fields.php:17 core/fields/flexible_content.php:245
223
- #: core/fields/repeater.php:218
224
- msgid "New Field"
225
- msgstr "Nuovo campo"
226
 
227
- #: core/admin/meta_box_fields.php:38
228
- msgid "Move to trash. Are you sure?"
229
- msgstr "Sei sicuro di spostarlo nel cestino?"
230
 
231
- #: core/admin/meta_box_fields.php:50 core/fields/flexible_content.php:309
232
- #: core/fields/repeater.php:244
233
- msgid "Field Order"
234
- msgstr "Ordine del campo"
235
 
236
- #: core/admin/meta_box_fields.php:51 core/admin/meta_box_fields.php:92
237
- #: core/fields/flexible_content.php:310 core/fields/flexible_content.php:357
238
- #: core/fields/repeater.php:245 core/fields/repeater.php:292
239
- msgid "Field Label"
240
- msgstr "Etichetta del campo"
241
 
242
- #: core/admin/meta_box_fields.php:52 core/admin/meta_box_fields.php:108
243
- #: core/fields/flexible_content.php:311 core/fields/flexible_content.php:373
244
- #: core/fields/repeater.php:246 core/fields/repeater.php:308
245
- msgid "Field Name"
246
- msgstr "Nome del campo"
247
 
248
- #: core/admin/meta_box_fields.php:53 core/admin/meta_box_fields.php:123
249
- #: core/admin/page_settings.php:44 core/fields/flexible_content.php:312
250
- #: core/fields/flexible_content.php:388 core/fields/repeater.php:247
251
- #: core/fields/repeater.php:323
252
- msgid "Field Type"
253
- msgstr "Tipo del campo"
254
 
255
- #: core/admin/meta_box_fields.php:60
256
- msgid ""
257
- "No fields. Click the <strong>+ Add Field</strong> button to create your "
258
- "first field."
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgstr ""
260
- "Non hai inserito nessun custom field. Clicca sul pulsante <strong> + "
261
- "Aggiungi campo</strong> per creare il tuo primo campo personalizzato."
262
 
263
- #: core/admin/meta_box_fields.php:71 core/admin/meta_box_fields.php:74
264
- #: core/fields/flexible_content.php:336 core/fields/flexible_content.php:339
265
- #: core/fields/repeater.php:270 core/fields/repeater.php:273
266
- msgid "Edit this Field"
267
- msgstr "Modifica questo campo"
268
 
269
- #: core/admin/meta_box_fields.php:74 core/fields/flexible_content.php:339
270
- #: core/fields/repeater.php:273
271
- msgid "Edit"
272
- msgstr "Modifica"
273
 
274
- #: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
275
- #: core/fields/repeater.php:274
276
- msgid "Read documentation for this field"
277
- msgstr "Leggi la documentazione per questo campo"
278
 
279
- #: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
280
- #: core/fields/repeater.php:274
281
- msgid "Docs"
282
- msgstr "Docs"
283
 
284
- #: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
285
- #: core/fields/repeater.php:275
286
- msgid "Duplicate this Field"
287
- msgstr "Duplica questo campo"
288
 
289
- #: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
290
- #: core/fields/repeater.php:275
291
- msgid "Duplicate"
292
- msgstr "Duplica"
293
 
294
- #: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:342
295
- #: core/fields/repeater.php:276
296
- msgid "Delete this Field"
297
- msgstr "Cancella questo campo"
298
 
299
- #: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:258
300
- #: core/fields/flexible_content.php:342 core/fields/repeater.php:276
301
- msgid "Delete"
302
- msgstr "Cancella"
303
 
304
- #: core/admin/meta_box_fields.php:93 core/fields/flexible_content.php:358
305
- #: core/fields/repeater.php:293
306
- msgid "This is the name which will appear on the EDIT page"
307
- msgstr "Questo è il nome che apparirà nella pagina di modifica"
308
 
309
- #: core/admin/meta_box_fields.php:109 core/fields/flexible_content.php:374
310
- #: core/fields/repeater.php:309
311
- msgid "Single word, no spaces. Underscores and dashes allowed"
312
- msgstr "Una parola, senza spazi. \"_\" e trattini permessi"
313
 
314
- #: core/admin/meta_box_fields.php:136
315
- msgid "Field Instructions"
316
- msgstr "Istruzioni del campo"
317
 
318
- #: core/admin/meta_box_fields.php:137
319
- msgid "Instructions for authors. Shown when submitting data"
320
- msgstr ""
321
- "Istruzioni per gli autori. Vengono visualizzate al di sopra del custom field"
322
 
323
- #: core/admin/meta_box_fields.php:149
324
- msgid "Required?"
325
- msgstr "Obbligatorio?"
326
 
327
- #: core/admin/meta_box_fields.php:172 core/fields/flexible_content.php:408
328
- #: core/fields/repeater.php:343
329
- msgid "Save Field"
330
- msgstr "Salva campo"
331
 
332
- #: core/admin/meta_box_fields.php:177 core/fields/flexible_content.php:413
333
- #: core/fields/repeater.php:348
334
- msgid "Close Field"
335
- msgstr "Chiudi campo"
336
 
337
- #: core/admin/meta_box_fields.php:190 core/fields/flexible_content.php:427
338
- #: core/fields/repeater.php:363
339
- msgid "Drag and drop to reorder"
340
- msgstr "Trascina e rilascia per riordinare"
 
 
 
341
 
342
- #: core/admin/meta_box_fields.php:191
343
- msgid "+ Add Field"
344
- msgstr "+ Aggiungi campo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
346
- #: core/admin/meta_box_location.php:25
347
- msgid "Rules"
348
- msgstr "Condizioni"
 
349
 
350
- #: core/admin/meta_box_location.php:26
351
  msgid ""
352
- "Create a set of rules to determine which edit screens will use these "
353
- "advanced custom fields"
354
  msgstr ""
355
- "Crea una o pi&ugrave; condizioni per determinare quali post type faranno uso "
356
- "di questi campi personalizzati"
357
 
358
- #: core/admin/meta_box_location.php:37 core/fields/wysiwyg.php:142
359
- msgid "Basic"
360
- msgstr "Basic"
 
 
 
 
 
361
 
362
- #: core/admin/meta_box_location.php:38 core/fields/page_link.php:194
363
- #: core/fields/post_object.php:209 core/fields/relationship.php:246
364
- msgid "Post Type"
365
- msgstr "Post Type"
366
 
367
- #: core/admin/meta_box_location.php:39
368
- msgid "Logged in User Type"
369
- msgstr "Logged in User Type"
370
 
371
- #: core/admin/meta_box_location.php:41
372
- msgid "Page Specific"
373
- msgstr "Pagina specifica"
374
 
375
- #: core/admin/meta_box_location.php:42
376
- msgid "Page"
377
- msgstr "Pagina"
378
 
379
- #: core/admin/meta_box_location.php:43
380
- msgid "Page Type"
381
- msgstr "Tipo di pagina"
382
 
383
- #: core/admin/meta_box_location.php:44
384
- msgid "Page Parent"
385
- msgstr "Genitore della pagina"
386
 
387
- #: core/admin/meta_box_location.php:45
388
- msgid "Page Template"
389
- msgstr "Template della pagina"
390
 
391
- #: core/admin/meta_box_location.php:47
392
- msgid "Post Specific"
393
- msgstr "Post specifico"
394
 
395
- #: core/admin/meta_box_location.php:48
396
- msgid "Post"
397
- msgstr "Post"
 
 
 
 
 
398
 
399
- #: core/admin/meta_box_location.php:49
400
- msgid "Post Category"
401
- msgstr "Categoria del post"
 
 
 
 
 
 
 
 
 
402
 
403
- #: core/admin/meta_box_location.php:50
404
- msgid "Post Format"
405
- msgstr "Formato del post"
406
 
407
- #: core/admin/meta_box_location.php:51
408
- msgid "Post Taxonomy"
409
- msgstr "Tassonomia del Post"
 
410
 
411
- #: core/admin/meta_box_location.php:53
412
- msgid "Other"
413
- msgstr "Altro"
 
414
 
415
- #: core/admin/meta_box_location.php:54
416
- msgid "Taxonomy (Add / Edit)"
417
- msgstr "Tassonomia (Aggiungi / Modifica)"
 
 
418
 
419
- #: core/admin/meta_box_location.php:55
420
- msgid "User (Add / Edit)"
421
- msgstr "Utente (Aggiungi / Modifica)"
422
 
423
- #: core/admin/meta_box_location.php:56
424
- msgid "Media (Edit)"
425
- msgstr "Media (Aggiungi/Modifica)"
 
426
 
427
- #: core/admin/meta_box_location.php:64 core/admin/page_settings.php:92
428
- msgid "Options Page"
429
- msgstr "Pagina delle opzioni"
430
 
431
- #: core/admin/meta_box_location.php:86
432
- msgid "is equal to"
433
- msgstr "è uguale a"
434
 
435
- #: core/admin/meta_box_location.php:87
436
- msgid "is not equal to"
437
- msgstr "non è uguale a"
 
 
 
 
 
 
438
 
439
- #: core/admin/meta_box_location.php:111
440
- msgid "match"
441
- msgstr "combina le condizioni di sopra con "
 
 
 
 
 
 
442
 
443
- #: core/admin/meta_box_location.php:117
444
- msgid "all"
445
- msgstr "AND"
446
 
447
- #: core/admin/meta_box_location.php:118
448
- msgid "any"
449
- msgstr "OR"
450
 
451
- #: core/admin/meta_box_location.php:121
452
- msgid "of the above"
453
- msgstr "operatore logico"
454
 
455
- #: core/admin/meta_box_location.php:134
456
- msgid "Unlock options add-on with an activation code"
457
- msgstr "Sblocca le opzioni aggiuntive con un codice di attivazione"
458
 
459
- #: core/admin/meta_box_options.php:13
460
- msgid "Order No."
461
- msgstr "Ordine N."
462
 
463
- #: core/admin/meta_box_options.php:14
464
- msgid "Field groups are created in order <br />from lowest to highest."
465
- msgstr "I gruppi di campi sono creati<br />dal piiù basso al più alto"
466
 
467
- #: core/admin/meta_box_options.php:30
468
- msgid "Position"
469
- msgstr "Posizione"
470
 
471
- #: core/admin/meta_box_options.php:40
472
- msgid "Normal"
473
- msgstr "Normale"
 
 
474
 
475
- #: core/admin/meta_box_options.php:41
476
- msgid "Side"
477
- msgstr "lato"
 
 
 
478
 
479
- #: core/admin/meta_box_options.php:50
480
- msgid "Style"
481
- msgstr "Stile"
482
 
483
- #: core/admin/meta_box_options.php:60
484
- msgid "Standard Metabox"
485
- msgstr "Standard Metabox"
486
 
487
- #: core/admin/meta_box_options.php:61
488
- msgid "No Metabox"
489
- msgstr "No Metabox"
 
 
 
 
 
 
 
 
490
 
491
- #: core/admin/meta_box_options.php:70
492
- msgid "Show on page"
493
- msgstr "Visualizza nella pagina"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
 
495
- #: core/admin/meta_box_options.php:71
496
- msgid "Deselect items to hide them on the edit page"
497
- msgstr "Deseleziona gli elementi per nasconderli nella pagina di modifica"
 
 
 
 
 
 
 
 
 
 
 
498
 
499
- #: core/admin/meta_box_options.php:72
500
- msgid ""
501
- "If multiple ACF groups appear on an edit page, the first ACF group's options "
502
- "will be used. The first ACF group is the one with the lowest order number."
503
- msgstr ""
504
- "SE più gruppi ACF appaiono in una pagina di modifica, verrano utilizzate le "
505
- "opzioni del primo gruppo ACF. Il primo gruppo è quello con il numero "
506
- "d'oridne pià basso."
507
 
508
- #: core/admin/meta_box_options.php:82
509
- msgid "Content Editor"
510
- msgstr "Content Editor"
511
 
512
- #: core/admin/meta_box_options.php:84
513
- msgid "Discussion"
514
- msgstr "Discussione"
515
 
516
- #: core/admin/meta_box_options.php:85
517
- msgid "Comments"
518
- msgstr "Commenti"
519
 
520
- #: core/admin/meta_box_options.php:86
521
- msgid "Slug"
522
- msgstr "Slug"
523
 
524
- #: core/admin/meta_box_options.php:87
525
- msgid "Author"
526
- msgstr "Autore"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
 
528
- #: core/admin/page_acf.php:16
 
529
  msgid "Changelog"
530
  msgstr "Changelog"
531
 
532
- #: core/admin/page_acf.php:17
533
  msgid "See what's new in"
534
  msgstr "Guarda cosa c'è di nuovo in"
535
 
536
- #: core/admin/page_acf.php:19
 
 
 
 
537
  msgid "Resources"
538
  msgstr "Risorse"
539
 
540
- #: core/admin/page_acf.php:20
541
- msgid ""
542
- "Read documentation, learn the functions and find some tips &amp; tricks for "
543
- "your next web project."
544
- msgstr ""
545
- "Leggi la documentazione, impara le funzioni e scopri alcuni trucchi per il "
546
- "tuo prossimo progetto web."
547
 
548
- #: core/admin/page_acf.php:21
549
- msgid "View the ACF website"
550
- msgstr "Visualizza il sito ACF"
551
 
552
- #: core/admin/page_acf.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgid "Created by"
554
  msgstr "Creato da"
555
 
556
- #: core/admin/page_acf.php:29
557
  msgid "Vote"
558
  msgstr "Vota"
559
 
560
- #: core/admin/page_acf.php:30
561
  msgid "Follow"
562
  msgstr "Segui"
563
 
564
- #: core/admin/page_settings.php:23
565
- msgid "Advanced Custom Fields Settings"
566
- msgstr "Impostazioni di Advanced Custom Fields"
567
 
568
- #: core/admin/page_settings.php:40
569
- msgid "Activate Add-ons."
570
- msgstr "Attiva add-ons."
571
 
572
- #: core/admin/page_settings.php:45
573
- msgid "Status"
574
- msgstr "Status"
575
 
576
- #: core/admin/page_settings.php:46
577
- msgid "Activation Code"
578
- msgstr "Codice di Attivazione"
579
 
580
- #: core/admin/page_settings.php:52
581
- msgid "Repeater Field"
582
- msgstr "Repeater Field"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
 
584
- #: core/admin/page_settings.php:53 core/admin/page_settings.php:73
585
- #: core/admin/page_settings.php:93
586
- msgid "Active"
587
- msgstr "Attivo"
588
 
589
- #: core/admin/page_settings.php:53 core/admin/page_settings.php:73
590
- #: core/admin/page_settings.php:93
591
- msgid "Inactive"
592
- msgstr "Inattivo"
593
 
594
- #: core/admin/page_settings.php:72
595
- msgid "Flexible Content Field"
596
- msgstr "Flexible Content Field"
597
 
598
- #: core/admin/page_settings.php:115
599
  msgid ""
600
- "Add-ons can be unlocked by purchasing a license key. Each key can be used on "
601
- "multiple sites."
602
  msgstr ""
603
- "Gli Add-ons possono essere sbloccati comprando una lienza. Ogni chiave può "
604
- "essere usata su più siti."
605
 
606
- #: core/admin/page_settings.php:115
607
- msgid "Find Add-ons"
608
- msgstr "Trova Add-ons"
609
 
610
- #: core/admin/page_settings.php:133
611
- msgid "Export Field Groups to XML"
612
- msgstr "Esporta i gruppi di campi in XML"
613
 
614
- #: core/admin/page_settings.php:166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  msgid ""
616
- "ACF will create a .xml export file which is compatible with the native WP "
617
- "import plugin."
618
  msgstr ""
619
- "ACF creerà un file di export XML che è compatibile con tutti i pulugin di "
620
- "importazione nativi."
621
 
622
- #: core/admin/page_settings.php:169
623
- msgid "Export XML"
624
- msgstr "Esporta XML"
625
 
626
- #: core/admin/page_settings.php:175
627
- msgid "Import Field Groups"
628
- msgstr "Importa Gruppi di utenti"
629
 
630
- #: core/admin/page_settings.php:177
631
- msgid "Navigate to the"
632
- msgstr "Naviga a "
633
 
634
- #: core/admin/page_settings.php:177
635
- msgid "Import Tool"
636
- msgstr "Strumento per l'importazione"
637
 
638
- #: core/admin/page_settings.php:177
639
- msgid "and select WordPress"
640
- msgstr "e seleziona Wordpress"
 
 
 
 
641
 
642
- #: core/admin/page_settings.php:178
643
- msgid "Install WP import plugin if prompted"
644
- msgstr "Installare il plugin WP d'importazione, se richiesto"
645
 
646
- #: core/admin/page_settings.php:179
647
- msgid "Upload and import your exported .xml file"
648
- msgstr "Carica e importa il tuo file .xml"
649
 
650
- #: core/admin/page_settings.php:180
651
- msgid "Select your user and ignore Import Attachments"
652
- msgstr "Seleziona il tuo utente e ignora gli allegati d'importazione"
653
 
654
- #: core/admin/page_settings.php:181
655
- msgid "That's it! Happy WordPressing"
656
- msgstr "Fatto! Buon Wordpress"
657
 
658
- #: core/admin/page_settings.php:200
659
- msgid "Export Field Groups to PHP"
660
- msgstr "Esporta i gruppi di campi in PHP"
661
 
662
- #: core/admin/page_settings.php:233
663
- msgid "ACF will create the PHP code to include in your theme"
664
- msgstr "ACF genererà il codice PHP da includere nel tuo tema"
665
 
666
- #: core/admin/page_settings.php:236
667
- msgid "Create PHP"
668
- msgstr "Genera PHP"
669
 
670
- #: core/admin/page_settings.php:242 core/admin/page_settings.php:270
671
- msgid "Register Field Groups with PHP"
672
- msgstr "Registra i gruppi di campi con PHP"
 
 
 
 
 
 
673
 
674
- #: core/admin/page_settings.php:244 core/admin/page_settings.php:272
675
- msgid "Copy the PHP code generated"
676
- msgstr "Copia il codice PHP generato"
677
 
678
- #: core/admin/page_settings.php:245 core/admin/page_settings.php:273
679
- msgid "Paste into your functions.php file"
680
- msgstr "Incolla nel tuo file functions.php"
 
 
 
 
 
 
681
 
682
- #: core/admin/page_settings.php:246 core/admin/page_settings.php:274
683
- msgid "To activate any Add-ons, edit and use the code in the first few lines."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  msgstr ""
685
- "Per attivare qualsiasi add-ons, modifica e usa il codice nelle prime linee."
 
 
 
 
 
 
 
 
 
686
 
687
- #: core/admin/page_settings.php:267
688
- msgid "Back to settings"
689
- msgstr "Torna alle impostazioni"
690
 
691
- #: core/admin/page_settings.php:295
692
  msgid ""
693
- "/**\n"
694
- " * Activate Add-ons\n"
695
- " * Here you can enter your activation codes to unlock Add-ons to use in your "
696
- "theme. \n"
697
- " * Since all activation codes are multi-site licenses, you are allowed to "
698
- "include your key in premium themes. \n"
699
- " * Use the commented out code to update the database with your activation "
700
- "code. \n"
701
- " * You may place this code inside an IF statement that only runs on theme "
702
- "activation.\n"
703
- " */"
704
  msgstr ""
705
- "/**\n"
706
- " * Attiva Add-ons\n"
707
- " * Qui puoi digitare il tuo codice di attivazione per sbloccare gli add-ons "
708
- "da utilizzare nel tuo tema. \n"
709
- " * Visto che tutti i codici d'attivazione sono multisito, puoi includere la "
710
- "tua chiave nei temi premium. \n"
711
- " * Usa il codice commentato per aggiornare il database con il tuo codice di "
712
- "attivazione. \n"
713
- " * Puoi inserire questo codice all'interno di una condizione IF relativa "
714
- "all'attivazione del tema.\n"
715
- " */"
716
-
717
- #: core/admin/page_settings.php:308
 
 
 
 
 
 
 
718
  msgid ""
719
- "/**\n"
720
- " * Register field groups\n"
721
- " * The register_field_group function accepts 1 array which holds the "
722
- "relevant data to register a field group\n"
723
- " * You may edit the array as you see fit. However, this may result in errors "
724
- "if the array is not compatible with ACF\n"
725
- " * This code must run every time the functions.php file is read\n"
726
- " */"
727
  msgstr ""
728
- "/**\n"
729
- " * Registra i gruppi di campi\n"
730
- " * La funzione register_field_group function accetta 1 array che contiene le "
731
- "informazioni necessarie per registrare un gruppo di campi\n"
732
- " * Puoi modificare questo array. Tuttavia, potresti generare degli errori se "
733
- "l'array non è compatibile con ACF\n"
734
- " * Questo codice deve essere eseguito ogni qual volta viene letto il file "
735
- "functions.php\n"
736
- " */"
737
-
738
- #: core/admin/page_settings.php:336
739
- msgid "No field groups were selected"
740
- msgstr "Nessun gruppo di campi è stato selezionato"
741
 
742
- #: core/fields/checkbox.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
743
  msgid "Checkbox"
744
  msgstr "Checkbox"
745
 
746
- #: core/fields/checkbox.php:44 core/fields/radio.php:45
747
- #: core/fields/select.php:50
748
- msgid "No choices to choose from"
749
- msgstr "Nessuna opzione da scegliere da"
 
 
750
 
751
- #: core/fields/checkbox.php:102 core/fields/radio.php:114
752
- #: core/fields/select.php:164
 
753
  msgid "Choices"
754
  msgstr "Opzioni"
755
 
756
- #: core/fields/checkbox.php:103 core/fields/radio.php:115
757
- #: core/fields/select.php:165
758
- msgid "Enter your choices one per line"
759
- msgstr "Inserisci una opzione per linea"
760
-
761
- #: core/fields/checkbox.php:105 core/fields/radio.php:117
762
- #: core/fields/select.php:167
763
- msgid "Red"
764
- msgstr "Rosso"
765
 
766
- #: core/fields/checkbox.php:106 core/fields/radio.php:118
767
- #: core/fields/select.php:168
768
- msgid "Blue"
769
- msgstr "Blu"
 
 
770
 
771
- #: core/fields/checkbox.php:108 core/fields/radio.php:120
772
- #: core/fields/select.php:170
 
773
  msgid "red : Red"
774
  msgstr "rosso : Rosso"
775
 
776
- #: core/fields/checkbox.php:109 core/fields/radio.php:121
777
- #: core/fields/select.php:171
 
778
  msgid "blue : Blue"
779
  msgstr "blu : Blu"
780
 
781
- #: core/fields/color_picker.php:21
782
- msgid "Color Picker"
783
- msgstr "Color Picker"
 
 
 
 
 
 
 
 
 
784
 
785
- #: core/fields/date_picker/date_picker.php:21
786
- msgid "Date Picker"
787
- msgstr "Date Picker"
 
 
 
 
 
 
 
 
 
 
 
 
 
788
 
789
- #: core/fields/date_picker/date_picker.php:82
790
- msgid "Date format"
791
- msgstr "Formato data"
 
792
 
793
- #: core/fields/date_picker/date_picker.php:83
794
- msgid "eg. dd/mm/yy. read more about"
795
- msgstr "es. dd/mm/yy. Approfondisci"
796
 
797
- #: core/fields/file.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
798
  msgid "File"
799
  msgstr "File"
800
 
801
- #: core/fields/file.php:60
802
- msgid "Remove File"
803
- msgstr "Cancella file"
 
 
 
 
 
 
 
 
 
 
804
 
805
- #: core/fields/file.php:165
 
 
 
 
 
 
 
 
 
806
  msgid "No File Selected"
807
  msgstr "Nessun file selezionato"
808
 
809
- #: core/fields/file.php:165
810
  msgid "Add File"
811
  msgstr "Aggiungi file"
812
 
813
- #: core/fields/file.php:194 core/fields/image.php:177
 
 
814
  msgid "Return Value"
815
  msgstr "Restituisci valore"
816
 
817
- #: core/fields/file.php:342
818
- msgid "No files selected"
819
- msgstr "Nessun file selezionato"
820
 
821
- #: core/fields/file.php:419
822
- msgid "Add Selected Files"
823
- msgstr "Aggiungi i file selezionati"
824
 
825
- #: core/fields/file.php:445
826
- msgid "Select File"
827
- msgstr "Seleziona file"
828
 
829
- #: core/fields/flexible_content.php:21
830
- msgid "Flexible Content"
831
- msgstr "Contenuto flessibile"
 
832
 
833
- #: core/fields/flexible_content.php:38 core/fields/flexible_content.php:218
834
- #: core/fields/repeater.php:65 core/fields/repeater.php:213
835
- msgid "+ Add Row"
836
- msgstr "+ Aggiungi riga"
837
 
838
- #: core/fields/flexible_content.php:254 core/fields/radio.php:144
839
- #: core/fields/repeater.php:386
840
- msgid "Layout"
841
- msgstr "Layout"
842
 
843
- #: core/fields/flexible_content.php:256
844
- msgid "Reorder Layout"
845
- msgstr "Riordina il layout"
846
 
847
- #: core/fields/flexible_content.php:256
848
- msgid "Reorder"
849
- msgstr "Riordina"
850
 
851
- #: core/fields/flexible_content.php:257
852
- msgid "Add New Layout"
853
- msgstr "Aggiungi un nuovo layout"
854
 
855
- #: core/fields/flexible_content.php:258
856
- msgid "Delete Layout"
857
- msgstr "Cancella layout"
858
 
859
- #: core/fields/flexible_content.php:268
860
- msgid "Label"
861
- msgstr "Etichetta"
862
 
863
- #: core/fields/flexible_content.php:278
864
- msgid "Name"
865
- msgstr "Nome"
866
 
867
- #: core/fields/flexible_content.php:288
868
- msgid "Display"
869
- msgstr "Display"
870
 
871
- #: core/fields/flexible_content.php:295
872
- msgid "Table"
873
- msgstr "Tabella"
874
 
875
- #: core/fields/flexible_content.php:296 core/fields/repeater.php:397
876
- msgid "Row"
877
- msgstr "Riga"
878
 
879
- #: core/fields/flexible_content.php:320 core/fields/repeater.php:255
880
- msgid ""
881
- "No fields. Click the \"+ Add Sub Field button\" to create your first field."
882
- msgstr ""
883
- "Nessun campo. Clicca su \"+ Aggiungi un campo\" per creare il tuo primo "
884
- "campo."
885
 
886
- #: core/fields/flexible_content.php:413 core/fields/repeater.php:348
887
- msgid "Close Sub Field"
888
- msgstr "Chiudi il campo"
889
 
890
- #: core/fields/flexible_content.php:428 core/fields/repeater.php:364
891
- msgid "+ Add Sub Field"
892
- msgstr "+ Aggiungi campo"
893
 
894
- #: core/fields/flexible_content.php:435 core/fields/repeater.php:405
895
- msgid "Button Label"
896
- msgstr "Etichetta del bottone"
897
 
898
- #: core/fields/image.php:21
899
- msgid "Image"
900
- msgstr "Immagine"
 
 
 
 
 
901
 
902
- #: core/fields/image.php:153
903
  msgid "No image selected"
904
  msgstr "Nessuna immagine selezionata"
905
 
906
- #: core/fields/image.php:153
907
  msgid "Add Image"
908
  msgstr "Aggiungi immagine"
909
 
910
- #: core/fields/image.php:187
 
 
 
 
 
 
 
 
 
911
  msgid "Image URL"
912
  msgstr "URL immagine"
913
 
914
- #: core/fields/image.php:188
915
- msgid "Attachment ID"
916
- msgstr "ID allegato"
917
 
918
- #: core/fields/image.php:196
919
  msgid "Preview Size"
920
  msgstr "Anteprima grandezza"
921
 
922
- #: core/fields/image.php:206
923
- msgid "Thumbnail"
924
- msgstr "Miniatura"
925
 
926
- #: core/fields/image.php:207
927
- msgid "Medium"
928
- msgstr "Media"
929
 
930
- #: core/fields/image.php:208
931
- msgid "Large"
932
- msgstr "Grande"
 
 
933
 
934
- #: core/fields/image.php:209 core/fields/wysiwyg.php:141
935
- msgid "Full"
936
- msgstr "Dimensione reale"
937
 
938
- #: core/fields/image.php:392
939
- msgid "No images selected"
940
- msgstr "Nessuna immagine selezionata"
 
941
 
942
- #: core/fields/image.php:469
943
- msgid "Add selected Images"
944
- msgstr "Aggiungi le immagini selezionate"
945
 
946
- #: core/fields/image.php:495
947
- msgid "Select Image"
948
- msgstr "Seleziona immagine"
949
 
950
- #: core/fields/page_link.php:21
951
- msgid "Page Link"
952
- msgstr "Link a pagina"
953
 
954
- #: core/fields/page_link.php:71 core/fields/post_object.php:64
955
- #: core/fields/select.php:21
956
- msgid "Select"
957
- msgstr "Select HTML"
958
 
959
- #: core/fields/page_link.php:195
960
- msgid ""
961
- "Filter posts by selecting a post type<br />\n"
962
- "\t\t\t\tTip: deselect all post types to show all post type's posts"
963
- msgstr ""
964
- "Filtra i contenuti selezionato un tipo di contenuto<br />\n"
965
- "\t\t\t\tTrucco: deleziona tutti i tipi di contenuto per visualizzarne tutti "
966
- "i tipi"
967
 
968
- #: core/fields/page_link.php:200 core/fields/post_object.php:213
969
- #: core/fields/post_object.php:237 core/fields/relationship.php:250
970
- #: core/fields/relationship.php:301
971
- msgid "All"
972
- msgstr "Tutti"
 
 
 
 
 
 
 
 
 
 
973
 
974
- #: core/fields/page_link.php:223 core/fields/post_object.php:281
975
- #: core/fields/select.php:194
 
 
 
976
  msgid "Allow Null?"
977
  msgstr "Campo nullo permesso?"
978
 
979
- #: core/fields/page_link.php:232 core/fields/page_link.php:251
980
- #: core/fields/post_object.php:290 core/fields/post_object.php:309
981
- #: core/fields/select.php:203 core/fields/select.php:222
982
- #: core/fields/wysiwyg.php:160
983
- msgid "Yes"
984
- msgstr "Si"
985
-
986
- #: core/fields/page_link.php:233 core/fields/page_link.php:252
987
- #: core/fields/post_object.php:291 core/fields/post_object.php:310
988
- #: core/fields/select.php:204 core/fields/select.php:223
989
- #: core/fields/wysiwyg.php:161
990
- msgid "No"
991
- msgstr "No"
992
-
993
- #: core/fields/page_link.php:242 core/fields/post_object.php:300
994
- #: core/fields/select.php:213
995
  msgid "Select multiple values?"
996
  msgstr "E' possibile selezionare più valori?"
997
 
998
- #: core/fields/post_object.php:21
 
 
 
 
999
  msgid "Post Object"
1000
  msgstr "Post Object"
1001
 
1002
- #: core/fields/post_object.php:231 core/fields/relationship.php:295
 
1003
  msgid "Filter from Taxonomy"
1004
  msgstr "Filtro da Tassonomia"
1005
 
1006
- #: core/fields/radio.php:21
1007
  msgid "Radio Button"
1008
  msgstr "Radio Button"
1009
 
1010
- #: core/fields/radio.php:130 core/fields/select.php:180
1011
- #: core/fields/text.php:61 core/fields/textarea.php:62
1012
- msgid "Default Value"
1013
- msgstr "Valore di default"
1014
 
1015
- #: core/fields/radio.php:154
1016
- msgid "Vertical"
1017
- msgstr "Verticale"
1018
 
1019
- #: core/fields/radio.php:155
1020
- msgid "Horizontal"
1021
- msgstr "Orizzontale"
 
 
 
 
 
 
 
 
1022
 
1023
- #: core/fields/relationship.php:21
 
 
 
 
1024
  msgid "Relationship"
1025
  msgstr "Relazione"
1026
 
1027
- #: core/fields/relationship.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1028
  msgid "Search"
1029
  msgstr "Cerca"
1030
 
1031
- #: core/fields/relationship.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1032
  msgid "Maximum posts"
1033
  msgstr "Massimo dei post"
1034
 
1035
- #: core/fields/relationship.php:319
1036
- msgid "Set to -1 for infinite"
1037
- msgstr "Imposta a -1 per un numero infinito"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1038
 
1039
- #: core/fields/repeater.php:21
1040
- msgid "Repeater"
1041
- msgstr "Repeater"
 
1042
 
1043
- #: core/fields/repeater.php:236
1044
- msgid "Repeater Fields"
1045
- msgstr "Repeater Fields"
 
1046
 
1047
- #: core/fields/repeater.php:372
1048
- msgid "Row Limit"
1049
- msgstr "Limite delle righe"
1050
 
1051
- #: core/fields/repeater.php:396
1052
- msgid "Table (default)"
1053
- msgstr "Tabella (default)"
1054
 
1055
- #: core/fields/text.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1056
  msgid "Text"
1057
  msgstr "Testo"
1058
 
1059
- #: core/fields/text.php:75 core/fields/textarea.php:76
 
1060
  msgid "Formatting"
1061
  msgstr "Formattazione"
1062
 
1063
- #: core/fields/text.php:76
1064
- msgid "Define how to render html tags"
1065
- msgstr "Definisci come gestire i tag html"
 
1066
 
1067
- #: core/fields/text.php:85 core/fields/textarea.php:86
1068
- msgid "None"
1069
- msgstr "Niente"
 
 
 
 
 
 
 
 
 
 
 
1070
 
1071
- #: core/fields/text.php:86 core/fields/textarea.php:88
1072
- msgid "HTML"
1073
- msgstr "HTML"
 
1074
 
1075
- #: core/fields/textarea.php:21
1076
  msgid "Text Area"
1077
  msgstr "Text Area"
1078
 
1079
- #: core/fields/textarea.php:77
1080
- msgid "Define how to render html tags / new lines"
1081
- msgstr "Definisci come renderizzare i tag html / linee a capo"
1082
 
1083
- #: core/fields/textarea.php:87
1084
- msgid "auto &lt;br /&gt;"
1085
- msgstr "auto &lt;br /&gt;"
1086
-
1087
- #: core/fields/true_false.php:21
1088
  msgid "True / False"
1089
  msgstr "Vero / Falso"
1090
 
1091
- #: core/fields/true_false.php:68
1092
- msgid "Message"
1093
- msgstr "Messaggio"
1094
-
1095
- #: core/fields/true_false.php:69
1096
  msgid "eg. Show extra content"
1097
  msgstr "es. Visualizza contenuto extra"
1098
 
1099
- #: core/fields/wysiwyg.php:21
 
 
 
 
 
 
 
 
 
1100
  msgid "Wysiwyg Editor"
1101
  msgstr "Editor Wysiwyg"
1102
 
1103
- #: core/fields/wysiwyg.php:131
1104
  msgid "Toolbar"
1105
  msgstr "Toolbar"
1106
 
1107
- #: core/fields/wysiwyg.php:150
1108
  msgid "Show Media Upload Buttons?"
1109
  msgstr "Visualizzare il pulsante per il caricamento di file multimediali?"
1110
 
1111
- #: core/options_page.php:161
1112
- msgid "Options Updated"
1113
- msgstr "Opzioni aggiornate"
 
 
 
 
 
1114
 
1115
- #: core/options_page.php:275
1116
- msgid "No Custom Field Group found for the options page"
1117
- msgstr "Non è stato travato nessun gruppo di campi per la pagina delle opzioni"
1118
 
1119
- #: core/options_page.php:275
1120
- msgid "Create a Custom Field Group"
1121
- msgstr "Crea un gruppo di campi"
1122
 
1123
- #: core/options_page.php:286
1124
- msgid "Publish"
1125
- msgstr "Pubblica"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2013-11-09 15:23+0100\n"
8
+ "PO-Revision-Date: 2013-11-09 16:27+0100\n"
9
+ "Last-Translator: Davide De Maestri <davide.demaestri@gmail.com>\n"
10
+ "Language-Team: <a.mignogna@asernet.it>\n"
11
+ "Language: it_IT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: C:\\advanced-custom-fields\\\n"
19
+ "X-Poedit-SearchPath-0: C:\\advanced-custom-fields\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ #: C:\advanced-custom-fields/acf.php:436
22
+ msgid "Field&nbsp;Groups"
23
+ msgstr "Gruddpi di Campi"
24
 
25
+ #: C:\advanced-custom-fields/acf.php:437
26
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:214
27
  msgid "Advanced Custom Fields"
28
  msgstr "Advanced Custom Fields"
29
 
30
+ #: C:\advanced-custom-fields/acf.php:438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid "Add New"
32
  msgstr "Aggiungi nuovo"
33
 
34
+ #: C:\advanced-custom-fields/acf.php:439
35
  msgid "Add New Field Group"
36
  msgstr "Aggiungi un nuovo gruppo di campi"
37
 
38
+ #: C:\advanced-custom-fields/acf.php:440
39
  msgid "Edit Field Group"
40
  msgstr "Modifica il gruppo di campi"
41
 
42
+ #: C:\advanced-custom-fields/acf.php:441
43
  msgid "New Field Group"
44
  msgstr "Nuovo gruppo di campi"
45
 
46
+ #: C:\advanced-custom-fields/acf.php:442
47
  msgid "View Field Group"
48
  msgstr "Visualizza gruppo di campi"
49
 
50
+ #: C:\advanced-custom-fields/acf.php:443
51
  msgid "Search Field Groups"
52
  msgstr "Cerca gruppi di campi"
53
 
54
+ #: C:\advanced-custom-fields/acf.php:444
55
  msgid "No Field Groups found"
56
  msgstr "Nessun gruppo di campi trovato"
57
 
58
+ #: C:\advanced-custom-fields/acf.php:445
59
  msgid "No Field Groups found in Trash"
60
  msgstr "Nessun gruppo di campi trovato nel cestino"
61
 
62
+ #: C:\advanced-custom-fields/acf.php:548
63
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:98
64
+ msgid "Custom Fields"
65
+ msgstr "Advanced Custom Fields"
66
+
67
+ #: C:\advanced-custom-fields/acf.php:566 C:\advanced-custom-fields/acf.php:569
68
  msgid "Field group updated."
69
  msgstr "Gruppo di campi aggiornato."
70
 
71
+ #: C:\advanced-custom-fields/acf.php:567
72
  msgid "Custom field updated."
73
  msgstr "Campo personalizzato aggiornato."
74
 
75
+ #: C:\advanced-custom-fields/acf.php:568
76
  msgid "Custom field deleted."
77
  msgstr "Campo personalizzato cancellato."
78
 
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."
86
  msgstr "Gruppo di campi pubblicato."
87
 
88
+ #: C:\advanced-custom-fields/acf.php:573
89
  msgid "Field group saved."
90
  msgstr "Gruppo di campi salvato."
91
 
92
+ #: C:\advanced-custom-fields/acf.php:574
93
  msgid "Field group submitted."
94
  msgstr "Gruppo di campi inviato."
95
 
96
+ #: C:\advanced-custom-fields/acf.php:575
97
  msgid "Field group scheduled for."
98
  msgstr "Gruppo di campi schedulato."
99
 
100
+ #: C:\advanced-custom-fields/acf.php:576
101
  msgid "Field group draft updated."
102
  msgstr "Bozza del gruppo di campi aggiornata."
103
 
104
+ #: C:\advanced-custom-fields/acf.php:711
105
+ msgid "Thumbnail"
106
+ msgstr "Miniatura"
107
 
108
+ #: C:\advanced-custom-fields/acf.php:712
109
+ msgid "Medium"
110
+ msgstr "Media"
 
111
 
112
+ #: C:\advanced-custom-fields/acf.php:713
113
+ msgid "Large"
114
+ msgstr "Grande"
115
 
116
+ #: C:\advanced-custom-fields/acf.php:714
117
+ msgid "Full"
118
+ msgstr "Dimensione reale"
 
119
 
120
+ #: C:\advanced-custom-fields/core/api.php:1144
121
+ msgid "Update"
122
+ msgstr "Aggiornamento"
 
 
123
 
124
+ #: C:\advanced-custom-fields/core/api.php:1145
125
+ msgid "Post updated"
126
+ msgstr "Post aggiornato"
 
 
127
 
128
+ #: C:\advanced-custom-fields/core/actions/export.php:26
129
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:58
130
+ msgid "Error"
131
+ msgstr "Errore"
 
 
132
 
133
+ #: C:\advanced-custom-fields/core/actions/export.php:33
134
+ msgid "No ACF groups selected"
135
+ msgstr "Nessun gruppo ACF selezionato"
136
+
137
+ #: C:\advanced-custom-fields/core/controllers/addons.php:42
138
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:311
139
+ msgid "Add-ons"
140
+ msgstr "Add-ons"
141
+
142
+ #: C:\advanced-custom-fields/core/controllers/addons.php:130
143
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:433
144
+ msgid "Repeater Field"
145
+ msgstr "Repeater Field"
146
+
147
+ #: C:\advanced-custom-fields/core/controllers/addons.php:131
148
+ msgid "Create infinite rows of repeatable data with this versatile interface!"
149
  msgstr ""
150
+ "Crea infinite righe di dati ripetibili con questa interfaccia versatile!"
 
151
 
152
+ #: C:\advanced-custom-fields/core/controllers/addons.php:137
153
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:441
154
+ msgid "Gallery Field"
155
+ msgstr "Campo Galleria"
 
156
 
157
+ #: C:\advanced-custom-fields/core/controllers/addons.php:138
158
+ msgid "Create image galleries in a simple and intuitive interface!"
159
+ msgstr "Crea gallerie di immagini in modo semplice ed intuitivo!"
 
160
 
161
+ #: C:\advanced-custom-fields/core/controllers/addons.php:144
162
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:449
163
+ msgid "Options Page"
164
+ msgstr "Pagina delle opzioni"
165
 
166
+ #: C:\advanced-custom-fields/core/controllers/addons.php:145
167
+ msgid "Create global data to use throughout your website!"
168
+ msgstr "Crea dati globali da usare in tutto il tuo sito web!"
 
169
 
170
+ #: C:\advanced-custom-fields/core/controllers/addons.php:151
171
+ msgid "Flexible Content Field"
172
+ 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"
180
+ msgstr "Campo Gravity Forms"
 
181
 
182
+ #: C:\advanced-custom-fields/core/controllers/addons.php:162
183
+ msgid "Creates a select field populated with Gravity Forms!"
184
+ msgstr "Crea e seleziona un campo riempito con Gravity Forms!"
 
185
 
186
+ #: C:\advanced-custom-fields/core/controllers/addons.php:168
187
+ msgid "Date & Time Picker"
188
+ msgstr "Date & Time Picker"
 
189
 
190
+ #: C:\advanced-custom-fields/core/controllers/addons.php:169
191
+ msgid "jQuery date & time picker"
192
+ msgstr "jQuery date & time picker"
 
193
 
194
+ #: C:\advanced-custom-fields/core/controllers/addons.php:175
195
+ msgid "Location Field"
196
+ msgstr "Campo Località"
197
 
198
+ #: C:\advanced-custom-fields/core/controllers/addons.php:176
199
+ msgid "Find addresses and coordinates of a desired location"
200
+ msgstr "Cerca l'indirizzo e le coordinate della località desiderata"
 
201
 
202
+ #: C:\advanced-custom-fields/core/controllers/addons.php:182
203
+ msgid "Contact Form 7 Field"
204
+ msgstr "Campo Contact Form 7"
205
 
206
+ #: C:\advanced-custom-fields/core/controllers/addons.php:183
207
+ msgid "Assign one or more contact form 7 forms to a post"
208
+ msgstr "Assegna uno o più form di Contact Form 7 al post"
 
209
 
210
+ #: C:\advanced-custom-fields/core/controllers/addons.php:193
211
+ msgid "Advanced Custom Fields Add-Ons"
212
+ msgstr "Add-Ons per Advanced Custom Fields"
 
213
 
214
+ #: C:\advanced-custom-fields/core/controllers/addons.php:196
215
+ msgid ""
216
+ "The following Add-ons are available to increase the functionality of the "
217
+ "Advanced Custom Fields plugin."
218
+ msgstr ""
219
+ "I seguenti Add-ons sono disponibili per incrementare le funzionalità del "
220
+ "plugin Advanced Custom Fields."
221
 
222
+ #: C:\advanced-custom-fields/core/controllers/addons.php:197
223
+ msgid ""
224
+ "Each Add-on can be installed as a separate plugin (receives updates) or "
225
+ "included in your theme (does not receive updates)."
226
+ msgstr ""
227
+ "Ogni Add-on può essere installato come plugin separato (riceve gli "
228
+ "aggiornamenti) o incluso nel tuo tema (non riceve gli aggiornamenti)"
229
+
230
+ #: C:\advanced-custom-fields/core/controllers/addons.php:219
231
+ #: C:\advanced-custom-fields/core/controllers/addons.php:240
232
+ msgid "Installed"
233
+ msgstr "Installato"
234
+
235
+ #: C:\advanced-custom-fields/core/controllers/addons.php:221
236
+ msgid "Purchase & Install"
237
+ msgstr "Acquista ed Installa"
238
+
239
+ #: C:\advanced-custom-fields/core/controllers/addons.php:242
240
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:426
241
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:435
242
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:443
243
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:451
244
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:459
245
+ msgid "Download"
246
+ msgstr "Scarica"
247
+
248
+ #: C:\advanced-custom-fields/core/controllers/export.php:50
249
+ #: C:\advanced-custom-fields/core/controllers/export.php:159
250
+ msgid "Export"
251
+ msgstr "Esporta"
252
+
253
+ #: C:\advanced-custom-fields/core/controllers/export.php:216
254
+ msgid "Export Field Groups"
255
+ msgstr "Esporta Gruppi di Campi"
256
+
257
+ #: C:\advanced-custom-fields/core/controllers/export.php:221
258
+ msgid "Field Groups"
259
+ msgstr "Gruppi di Campi"
260
+
261
+ #: C:\advanced-custom-fields/core/controllers/export.php:222
262
+ msgid "Select the field groups to be exported"
263
+ msgstr "Scegli il gruppo di campi da esportare"
264
+
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
272
+ msgid "Export to PHP"
273
+ msgstr "Esporta in PHP"
274
 
275
+ #: C:\advanced-custom-fields/core/controllers/export.php:253
276
  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
284
+ msgid ""
285
+ "Imported field groups <b>will</b> appear in the list of editable field "
286
+ "groups. This is useful for migrating fields groups between Wp websites."
287
+ msgstr ""
288
+ "I gruppi di campi importati <b>appariranno</b> nella lista dei gruppi di "
289
+ "campi editabili. Questo è utile per migrare gruppi di campi tra diversi siti "
290
+ "web realizzati con WordPress."
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"
302
+ msgstr "Vai su Strumenti / Importa e seleziona WordPress"
303
 
304
+ #: C:\advanced-custom-fields/core/controllers/export.php:259
305
+ msgid "Install WP import plugin if prompted"
306
+ msgstr "Installare il plugin WP d'importazione, se richiesto"
307
 
308
+ #: C:\advanced-custom-fields/core/controllers/export.php:260
309
+ msgid "Upload and import your exported .xml file"
310
+ msgstr "Carica e importa il tuo file .xml"
311
 
312
+ #: C:\advanced-custom-fields/core/controllers/export.php:261
313
+ msgid "Select your user and ignore Import Attachments"
314
+ msgstr "Seleziona il tuo utente e ignora gli allegati d'importazione"
315
 
316
+ #: C:\advanced-custom-fields/core/controllers/export.php:262
317
+ msgid "That's it! Happy WordPressing"
318
+ msgstr "Fatto! Buon Wordpress"
319
 
320
+ #: C:\advanced-custom-fields/core/controllers/export.php:268
321
+ msgid "ACF will create the PHP code to include in your theme."
322
+ msgstr "ACF genererà il codice PHP da includere nel tuo tema."
323
 
324
+ #: C:\advanced-custom-fields/core/controllers/export.php:269
325
+ #: C:\advanced-custom-fields/core/controllers/export.php:310
326
+ msgid ""
327
+ "Registered field groups <b>will not</b> appear in the list of editable field "
328
+ "groups. This is useful for including fields in themes."
329
+ msgstr ""
330
+ "I gruppi di campi registrati <b>non appariranno</b> nella lista dei gruppi "
331
+ "di campi editabili. Questo è utile per l'inclusione dei campi nei temi."
332
 
333
+ #: C:\advanced-custom-fields/core/controllers/export.php:270
334
+ #: C:\advanced-custom-fields/core/controllers/export.php:311
335
+ msgid ""
336
+ "Please note that if you export and register field groups within the same WP, "
337
+ "you will see duplicate fields on your edit screens. To fix this, please move "
338
+ "the original field group to the trash or remove the code from your functions."
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
352
+ msgid "Copy the PHP code generated"
353
+ msgstr "Copia il codice PHP generato"
354
 
355
+ #: C:\advanced-custom-fields/core/controllers/export.php:274
356
+ #: C:\advanced-custom-fields/core/controllers/export.php:303
357
+ msgid "Paste into your functions.php file"
358
+ msgstr "Incolla nel tuo file functions.php"
359
 
360
+ #: C:\advanced-custom-fields/core/controllers/export.php:275
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"
368
+ msgstr "Esporta i gruppi di campi in PHP"
369
 
370
+ #: C:\advanced-custom-fields/core/controllers/export.php:300
371
+ #: C:\advanced-custom-fields/core/fields/tab.php:65
372
+ msgid "Instructions"
373
+ msgstr "Istruzioni"
374
 
375
+ #: C:\advanced-custom-fields/core/controllers/export.php:309
376
+ msgid "Notes"
377
+ msgstr "Note"
378
 
379
+ #: C:\advanced-custom-fields/core/controllers/export.php:316
380
+ msgid "Include in theme"
381
+ msgstr "Includi nel tema"
382
 
383
+ #: C:\advanced-custom-fields/core/controllers/export.php:317
384
+ msgid ""
385
+ "The Advanced Custom Fields plugin can be included within a theme. To do so, "
386
+ "move the ACF plugin inside your theme and add the following code to your "
387
+ "functions.php file:"
388
+ msgstr ""
389
+ "Il plugin Advanced Custom Fields può essere incluso in un tema. Per farlo "
390
+ "sposta la cartella del plugin ACF all'interno del tuo tema ed aggiungi il "
391
+ "codice seguente all'interno del file functions.php:"
392
 
393
+ #: C:\advanced-custom-fields/core/controllers/export.php:323
394
+ msgid ""
395
+ "To remove all visual interfaces from the ACF plugin, you can use a constant "
396
+ "to enable lite mode. Add the following code to your functions.php file "
397
+ "<b>before</b> the include_once code:"
398
+ msgstr ""
399
+ "Per rimuovere tutte le possibili interferenze visuali dal plugin ACF, puoi "
400
+ "usare una costante per abilitare la modalità leggera. Aggiungi il seguente "
401
+ "codice al tuo file functions.php <b>prima</b> di include_once:"
402
 
403
+ #: C:\advanced-custom-fields/core/controllers/export.php:331
404
+ msgid "Back to export"
405
+ msgstr "Torna all'esportazione"
406
 
407
+ #: C:\advanced-custom-fields/core/controllers/export.php:400
408
+ msgid "No field groups were selected"
409
+ msgstr "Nessun gruppo di campi è stato selezionato"
410
 
411
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:358
412
+ msgid "Move to trash. Are you sure?"
413
+ msgstr "Sei sicuro di spostarlo nel cestino?"
414
 
415
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:359
416
+ msgid "checked"
417
+ msgstr "selezionato"
418
 
419
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:360
420
+ msgid "No toggle fields available"
421
+ msgstr "Nessun campo alternato (toggle) disponibile"
422
 
423
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:361
424
+ msgid "Field group title is required"
425
+ msgstr "Il titolo del gruppo di campi è obbligatorio"
426
 
427
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:362
428
+ msgid "copy"
429
+ msgstr "copia"
430
 
431
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:363
432
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:62
433
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:159
434
+ msgid "or"
435
+ msgstr "o"
436
 
437
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:364
438
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:395
439
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:457
440
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:148
441
+ msgid "Fields"
442
+ msgstr "Campi"
443
 
444
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:365
445
+ msgid "Parent fields"
446
+ msgstr "Campi genitori"
447
 
448
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:366
449
+ msgid "Sibling fields"
450
+ msgstr "Campi fratelli"
451
 
452
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:367
453
+ msgid "Hide / Show All"
454
+ msgstr "Nascondi / Mostra Tutto"
455
+
456
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:396
457
+ msgid "Location"
458
+ msgstr "Location"
459
+
460
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:397
461
+ msgid "Options"
462
+ msgstr "Opzioni"
463
 
464
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:459
465
+ msgid "Show Field Key:"
466
+ msgstr "Mostra la Chiave del Campo:"
467
+
468
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:460
469
+ #: C:\advanced-custom-fields/core/fields/page_link.php:138
470
+ #: C:\advanced-custom-fields/core/fields/page_link.php:159
471
+ #: C:\advanced-custom-fields/core/fields/post_object.php:328
472
+ #: C:\advanced-custom-fields/core/fields/post_object.php:349
473
+ #: C:\advanced-custom-fields/core/fields/select.php:224
474
+ #: C:\advanced-custom-fields/core/fields/select.php:243
475
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:343
476
+ #: C:\advanced-custom-fields/core/fields/user.php:285
477
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:245
478
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:195
479
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:218
480
+ msgid "No"
481
+ msgstr "No"
482
 
483
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:461
484
+ #: C:\advanced-custom-fields/core/fields/page_link.php:137
485
+ #: C:\advanced-custom-fields/core/fields/page_link.php:158
486
+ #: C:\advanced-custom-fields/core/fields/post_object.php:327
487
+ #: C:\advanced-custom-fields/core/fields/post_object.php:348
488
+ #: C:\advanced-custom-fields/core/fields/select.php:223
489
+ #: C:\advanced-custom-fields/core/fields/select.php:242
490
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:342
491
+ #: C:\advanced-custom-fields/core/fields/user.php:284
492
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:244
493
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:194
494
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:217
495
+ msgid "Yes"
496
+ msgstr "Si"
497
 
498
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:638
499
+ msgid "Front Page"
500
+ msgstr "Pagina Iniziale"
 
 
 
 
 
501
 
502
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:639
503
+ msgid "Posts Page"
504
+ msgstr "Pagina dei Posts"
505
 
506
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:640
507
+ msgid "Top Level Page (parent of 0)"
508
+ msgstr "Pagina di Livello Top (parente di 0)"
509
 
510
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:641
511
+ msgid "Parent Page (has children)"
512
+ msgstr "Pagina Parente (ha figli)"
513
 
514
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:642
515
+ msgid "Child Page (has parent)"
516
+ msgstr "Pagina figlia (ha genitore)"
517
 
518
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:650
519
+ msgid "Default Template"
520
+ msgstr "Template di default"
521
+
522
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:727
523
+ msgid "Publish"
524
+ msgstr "Pubblica"
525
+
526
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:728
527
+ msgid "Pending Review"
528
+ msgstr "Revisione in Sospeso"
529
+
530
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:729
531
+ msgid "Draft"
532
+ msgstr "Bozza"
533
+
534
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:730
535
+ msgid "Future"
536
+ msgstr "Futuro"
537
+
538
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:731
539
+ msgid "Private"
540
+ msgstr "Privato"
541
+
542
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:732
543
+ msgid "Revision"
544
+ msgstr "Revisione"
545
+
546
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:733
547
+ msgid "Trash"
548
+ msgstr "Cestina"
549
+
550
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:746
551
+ msgid "Super Admin"
552
+ msgstr "Super Amministratore"
553
+
554
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:761
555
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:782
556
+ #: C:\advanced-custom-fields/core/controllers/field_group.php:789
557
+ #: C:\advanced-custom-fields/core/fields/file.php:186
558
+ #: C:\advanced-custom-fields/core/fields/image.php:170
559
+ #: C:\advanced-custom-fields/core/fields/page_link.php:109
560
+ #: C:\advanced-custom-fields/core/fields/post_object.php:274
561
+ #: C:\advanced-custom-fields/core/fields/post_object.php:298
562
+ #: C:\advanced-custom-fields/core/fields/relationship.php:595
563
+ #: C:\advanced-custom-fields/core/fields/relationship.php:619
564
+ #: C:\advanced-custom-fields/core/fields/user.php:229
565
+ msgid "All"
566
+ msgstr "Tutti"
567
+
568
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:147
569
+ msgid "Title"
570
+ msgstr "Titolo"
571
 
572
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:216
573
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:257
574
  msgid "Changelog"
575
  msgstr "Changelog"
576
 
577
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:217
578
  msgid "See what's new in"
579
  msgstr "Guarda cosa c'è di nuovo in"
580
 
581
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:217
582
+ msgid "version"
583
+ msgstr "versione"
584
+
585
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:219
586
  msgid "Resources"
587
  msgstr "Risorse"
588
 
589
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:221
590
+ msgid "Getting Started"
591
+ msgstr "Guida introduttiva"
 
 
 
 
592
 
593
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:222
594
+ msgid "Field Types"
595
+ msgstr "Tipi di Campo"
596
 
597
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:223
598
+ msgid "Functions"
599
+ msgstr "Funzioni"
600
+
601
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:224
602
+ msgid "Actions"
603
+ msgstr "Azioni"
604
+
605
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:225
606
+ #: C:\advanced-custom-fields/core/fields/relationship.php:638
607
+ msgid "Filters"
608
+ msgstr "Filtri"
609
+
610
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:226
611
+ msgid "'How to' guides"
612
+ msgstr "Guida 'Come fare'"
613
+
614
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:227
615
+ msgid "Tutorials"
616
+ msgstr "Tutorials"
617
+
618
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:232
619
  msgid "Created by"
620
  msgstr "Creato da"
621
 
622
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:235
623
  msgid "Vote"
624
  msgstr "Vota"
625
 
626
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:236
627
  msgid "Follow"
628
  msgstr "Segui"
629
 
630
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:248
631
+ msgid "Welcome to Advanced Custom Fields"
632
+ msgstr "Benvenuto in Advanced Custom Fields"
633
 
634
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:249
635
+ msgid "Thank you for updating to the latest version!"
636
+ msgstr "Grazie per aver aggiornato all'ultima versione!"
637
 
638
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:249
639
+ msgid "is more polished and enjoyable than ever before. We hope you like it."
640
+ msgstr "è più pulito e divertente che mai. Speriamo che vi piaccia."
641
 
642
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:256
643
+ msgid "What’s New"
644
+ msgstr "Cosa c'è di nuovo"
645
 
646
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:259
647
+ msgid "Download Add-ons"
648
+ msgstr "Scarica Add-ons"
649
+
650
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:313
651
+ msgid "Activation codes have grown into plugins!"
652
+ msgstr ""
653
+ "I codici di attivazione sono stati migrati direttamente all'interno dei "
654
+ "plugins!"
655
+
656
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:314
657
+ msgid ""
658
+ "Add-ons are now activated by downloading and installing individual plugins. "
659
+ "Although these plugins will not be hosted on the wordpress.org repository, "
660
+ "each Add-on will continue to receive updates in the usual way."
661
+ msgstr ""
662
+ "I plugin aggiuntivi sono ora attivati dopo il download e l'installazione "
663
+ "degli stessi. Sebbene questi plugins non siano ospitati nella repository "
664
+ "ufficiale di wordpress.org, ogni Add-on continuerà a ricevere aggiornamenti "
665
+ "nella solita maniera."
666
 
667
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:320
668
+ msgid "All previous Add-ons have been successfully installed"
669
+ msgstr "Tutti gli Add-ons precedenti sono stati installati con successo"
 
670
 
671
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:324
672
+ msgid "This website uses premium Add-ons which need to be downloaded"
673
+ 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 ""
681
+ "This website does not use premium Add-ons and will not be affected by this "
682
+ "change."
683
  msgstr ""
684
+ "Questo sito non fa uso di Add-ons premium e non sarà interessato da questo "
685
+ "cambiamento."
686
 
687
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:339
688
+ msgid "Easier Development"
689
+ msgstr "Sviluppo Semplificato"
690
 
691
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:341
692
+ msgid "New Field Types"
693
+ msgstr "Nuovi Tipi di Campo"
694
 
695
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:343
696
+ msgid "Taxonomy Field"
697
+ msgstr "Campo Tassonomia"
698
+
699
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:344
700
+ msgid "User Field"
701
+ msgstr "Campo Utente"
702
+
703
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:345
704
+ msgid "Email Field"
705
+ msgstr "Campo Email"
706
+
707
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:346
708
+ msgid "Password Field"
709
+ msgstr "Campo Password"
710
+
711
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:348
712
+ msgid "Custom Field Types"
713
+ msgstr "Tipi di Campo Personalizzato"
714
+
715
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:349
716
  msgid ""
717
+ "Creating your own field type has never been easier! Unfortunately, version 3 "
718
+ "field types are not compatible with version 4."
719
  msgstr ""
720
+ "Creare il tuo tipo di campo non è mai stato così facile! Sfortunatamente, i "
721
+ "campi della versione 3 non sono compatibili con la verisione 4."
722
 
723
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:350
724
+ msgid "Migrating your field types is easy, please"
725
+ msgstr "Migrare i tuoi campi è semplice, per favore"
726
 
727
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:350
728
+ msgid "follow this tutorial"
729
+ msgstr "segui questo tutorial"
730
 
731
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:350
732
+ msgid "to learn more."
733
+ msgstr "per saperne di più."
734
 
735
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:352
736
+ msgid "Actions &amp; Filters"
737
+ msgstr "Azioni e Filtri"
738
 
739
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:353
740
+ msgid ""
741
+ "All actions & filters have received a major facelift to make customizing ACF "
742
+ "even easier! Please"
743
+ msgstr ""
744
+ "Tutte le azioni e filtri hanno subito un intervento sostanziale per rendere "
745
+ "la personalizzazione di ACF ancora più semplice! Per favore"
746
 
747
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:353
748
+ msgid "read this guide"
749
+ msgstr "leggi questa guida"
750
 
751
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:353
752
+ msgid "to find the updated naming convention."
753
+ msgstr "per trovare le nuove convenzioni adottate per la nomenclatura."
754
 
755
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:355
756
+ msgid "Preview draft is now working!"
757
+ msgstr "Anteprima bozze ora è funzionante!"
758
 
759
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:356
760
+ msgid "This bug has been squashed along with many other little critters!"
761
+ msgstr "Questo bug è stato risolto insieme a molti altri più piccoli!"
762
 
763
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:356
764
+ msgid "See the full changelog"
765
+ msgstr "Vedi la lista di tutti i cambiamenti"
766
 
767
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:360
768
+ msgid "Important"
769
+ msgstr "Importante"
770
 
771
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:362
772
+ msgid "Database Changes"
773
+ msgstr "Cambiamenti al Database"
774
 
775
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:363
776
+ msgid ""
777
+ "Absolutely <strong>no</strong> changes have been made to the database "
778
+ "between versions 3 and 4. This means you can roll back to version 3 without "
779
+ "any issues."
780
+ msgstr ""
781
+ "Assolutamente <strong>nessun</strong> cambiamento è stato fatto al database "
782
+ "tra le versioni 3 e 4. Questo significa che puoi tornare indietro alla "
783
+ "versione 3 senza alcun problema."
784
 
785
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:365
786
+ msgid "Potential Issues"
787
+ 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 ""
795
+ "A causa delle modifiche effettuate agli Add-ons, i tipi di campi e le azioni/"
796
+ "filtri, il tuo sito web potrebbe non funzionare correttamente. E' importante "
797
+ "che tu legga completamente"
798
 
799
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:366
800
+ msgid "Migrating from v3 to v4"
801
+ msgstr "Migrare dalla versione 3 alla 4"
802
+
803
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:366
804
+ msgid "guide to view the full list of changes."
805
+ msgstr "la guida per visualizzare la lista di tutti i cambiamenti fatti."
806
+
807
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:369
808
+ msgid "Really Important!"
809
+ msgstr "Molto Importante!"
810
+
811
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:369
812
+ msgid ""
813
+ "If you updated the ACF plugin without prior knowledge of such changes, "
814
+ "please roll back to the latest"
815
  msgstr ""
816
+ "Se hai aggiornato ACF senza alcuna conoscenza di queste modifiche, per "
817
+ "favore torna indietro all'ultima"
818
+
819
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:369
820
+ msgid "version 3"
821
+ msgstr "versione 3"
822
+
823
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:369
824
+ msgid "of this plugin."
825
+ msgstr "di questa plugin."
826
 
827
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:374
828
+ msgid "Thank You"
829
+ msgstr "Grazie"
830
 
831
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:375
832
  msgid ""
833
+ "A <strong>BIG</strong> thank you to everyone who has helped test the version "
834
+ "4 beta and for all the support I have received."
 
 
 
 
 
 
 
 
 
835
  msgstr ""
836
+ "Un <strong>GRANDE</strong> grazie a tutti coloro che hanno contribuito a "
837
+ "testare la versione 4 beta e per tutto il supporto che ho ricevuto."
838
+
839
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:376
840
+ msgid "Without you all, this release would not have been possible!"
841
+ msgstr "Senza tutti voi, questa release non sarebbe stata possibile!"
842
+
843
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:380
844
+ msgid "Changelog for"
845
+ msgstr "Changelog per"
846
+
847
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:397
848
+ msgid "Learn more"
849
+ msgstr "Scopri di più"
850
+
851
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:403
852
+ msgid "Overview"
853
+ msgstr "Panoramica"
854
+
855
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:405
856
  msgid ""
857
+ "Previously, all Add-ons were unlocked via an activation code (purchased from "
858
+ "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
859
+ "need to be individually downloaded, installed and updated."
 
 
 
 
 
860
  msgstr ""
861
+ "Precedentemente, tutti gli Add-ons dovevano essere sbloccati tramite un "
862
+ "codice di attivazione (acquistato dallo store di ACF). Ora, con la versione "
863
+ "4, tutti gli Add-ons agiscono come plugin separati che devono essere "
864
+ "scaricati singolarmente, installati ed aggiornati."
 
 
 
 
 
 
 
 
 
865
 
866
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:407
867
+ msgid ""
868
+ "This page will assist you in downloading and installing each available Add-"
869
+ "on."
870
+ msgstr ""
871
+ "Questa pagina ti guiderà nel download e nell'installazione di ogni Add-on "
872
+ "disponibile."
873
+
874
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:409
875
+ msgid "Available Add-ons"
876
+ msgstr "Add-ons disponibili"
877
+
878
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:411
879
+ msgid "The following Add-ons have been detected as activated on this website."
880
+ msgstr "I seguenti Add-ons sono stati rilevati come attivi su questo sito web."
881
+
882
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:424
883
+ msgid "Name"
884
+ msgstr "Nome"
885
+
886
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:425
887
+ msgid "Activation Code"
888
+ msgstr "Codice di Attivazione"
889
+
890
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:457
891
+ msgid "Flexible Content"
892
+ msgstr "Contenuto flessibile"
893
+
894
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:467
895
+ msgid "Installation"
896
+ msgstr "Installazione"
897
+
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"
905
+ msgstr "Scarica il plugin dell'Add-on (file .zip) sul tuo desktop"
906
+
907
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:472
908
+ msgid "Navigate to"
909
+ msgstr "Naviga fino a"
910
+
911
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:472
912
+ msgid "Plugins > Add New > Upload"
913
+ msgstr "Plugins > Aggiungi Nuovo > Carica"
914
+
915
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:473
916
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
917
+ msgstr ""
918
+ "Usa l'uploader per cercare, scegliere ed installare il tuo Add-on (file .zip)"
919
+
920
+ #: C:\advanced-custom-fields/core/controllers/field_groups.php:474
921
+ msgid ""
922
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
923
+ "link"
924
+ msgstr ""
925
+ "Una volta che il plugin è stato caricato ed installato, clicca sul link "
926
+ "'Attiva Plugin'"
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"
934
+ msgstr "Eccellente. Iniziamo a lavorare"
935
+
936
+ #: C:\advanced-custom-fields/core/controllers/input.php:63
937
+ msgid "Expand Details"
938
+ msgstr "Espandi Dettagli"
939
+
940
+ #: C:\advanced-custom-fields/core/controllers/input.php:64
941
+ msgid "Collapse Details"
942
+ msgstr "Chiudi Dettagli"
943
+
944
+ #: C:\advanced-custom-fields/core/controllers/input.php:67
945
+ msgid "Validation Failed. One or more fields below are required."
946
+ msgstr "Validazione fallita. Uno o più campi sono obbligatori."
947
+
948
+ #: C:\advanced-custom-fields/core/controllers/upgrade.php:86
949
+ msgid "Upgrade"
950
+ msgstr "Aggiorna"
951
+
952
+ #: C:\advanced-custom-fields/core/controllers/upgrade.php:139
953
+ msgid "What's new"
954
+ msgstr "Cosa c'è di nuovo"
955
+
956
+ #: C:\advanced-custom-fields/core/controllers/upgrade.php:150
957
+ msgid "credits"
958
+ msgstr "crediti"
959
+
960
+ #: C:\advanced-custom-fields/core/controllers/upgrade.php:684
961
+ msgid "Modifying field group options 'show on page'"
962
+ msgstr "Modificare l'opzione del gruppo di campi 'mostra nella pagina'"
963
+
964
+ #: C:\advanced-custom-fields/core/controllers/upgrade.php:738
965
+ msgid "Modifying field option 'taxonomy'"
966
+ 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
974
  msgid "Checkbox"
975
  msgstr "Checkbox"
976
 
977
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:20
978
+ #: C:\advanced-custom-fields/core/fields/radio.php:19
979
+ #: C:\advanced-custom-fields/core/fields/select.php:19
980
+ #: C:\advanced-custom-fields/core/fields/true_false.php:20
981
+ msgid "Choice"
982
+ msgstr "Scelta"
983
 
984
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:146
985
+ #: C:\advanced-custom-fields/core/fields/radio.php:144
986
+ #: C:\advanced-custom-fields/core/fields/select.php:177
987
  msgid "Choices"
988
  msgstr "Opzioni"
989
 
990
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:147
991
+ #: C:\advanced-custom-fields/core/fields/select.php:178
992
+ msgid "Enter each choice on a new line."
993
+ msgstr "Inserisci un'opzione per ogni linea."
 
 
 
 
 
994
 
995
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:148
996
+ #: C:\advanced-custom-fields/core/fields/select.php:179
997
+ msgid "For more control, you may specify both a value and label like this:"
998
+ msgstr ""
999
+ "Per un maggiore controllo, puoi specificare sia un valore che un'etichetta "
1000
+ "così:"
1001
 
1002
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:149
1003
+ #: C:\advanced-custom-fields/core/fields/radio.php:150
1004
+ #: C:\advanced-custom-fields/core/fields/select.php:180
1005
  msgid "red : Red"
1006
  msgstr "rosso : Rosso"
1007
 
1008
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:149
1009
+ #: C:\advanced-custom-fields/core/fields/radio.php:151
1010
+ #: C:\advanced-custom-fields/core/fields/select.php:180
1011
  msgid "blue : Blue"
1012
  msgstr "blu : Blu"
1013
 
1014
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:166
1015
+ #: C:\advanced-custom-fields/core/fields/color_picker.php:89
1016
+ #: C:\advanced-custom-fields/core/fields/email.php:106
1017
+ #: C:\advanced-custom-fields/core/fields/number.php:116
1018
+ #: C:\advanced-custom-fields/core/fields/radio.php:193
1019
+ #: C:\advanced-custom-fields/core/fields/select.php:197
1020
+ #: C:\advanced-custom-fields/core/fields/text.php:116
1021
+ #: C:\advanced-custom-fields/core/fields/textarea.php:96
1022
+ #: C:\advanced-custom-fields/core/fields/true_false.php:94
1023
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:187
1024
+ msgid "Default Value"
1025
+ msgstr "Valore di default"
1026
 
1027
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:167
1028
+ #: C:\advanced-custom-fields/core/fields/select.php:198
1029
+ msgid "Enter each default value on a new line"
1030
+ msgstr "Inserisci ogni valore di default su una nuova riga"
1031
+
1032
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:183
1033
+ #: C:\advanced-custom-fields/core/fields/message.php:20
1034
+ #: C:\advanced-custom-fields/core/fields/radio.php:209
1035
+ #: C:\advanced-custom-fields/core/fields/tab.php:20
1036
+ msgid "Layout"
1037
+ msgstr "Layout"
1038
+
1039
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:194
1040
+ #: C:\advanced-custom-fields/core/fields/radio.php:220
1041
+ msgid "Vertical"
1042
+ msgstr "Verticale"
1043
 
1044
+ #: C:\advanced-custom-fields/core/fields/checkbox.php:195
1045
+ #: C:\advanced-custom-fields/core/fields/radio.php:221
1046
+ msgid "Horizontal"
1047
+ msgstr "Orizzontale"
1048
 
1049
+ #: C:\advanced-custom-fields/core/fields/color_picker.php:19
1050
+ msgid "Color Picker"
1051
+ msgstr "Color Picker"
1052
 
1053
+ #: C:\advanced-custom-fields/core/fields/color_picker.php:20
1054
+ #: C:\advanced-custom-fields/core/fields/google-map.php:19
1055
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:20
1056
+ msgid "jQuery"
1057
+ msgstr "jQuery"
1058
+
1059
+ #: C:\advanced-custom-fields/core/fields/dummy.php:19
1060
+ msgid "Dummy"
1061
+ msgstr "Inutile"
1062
+
1063
+ #: C:\advanced-custom-fields/core/fields/email.php:19
1064
+ msgid "Email"
1065
+ msgstr "Email"
1066
+
1067
+ #: C:\advanced-custom-fields/core/fields/email.php:107
1068
+ #: C:\advanced-custom-fields/core/fields/number.php:117
1069
+ #: C:\advanced-custom-fields/core/fields/text.php:117
1070
+ #: C:\advanced-custom-fields/core/fields/textarea.php:97
1071
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:188
1072
+ msgid "Appears when creating a new post"
1073
+ msgstr "Mostra quando crei un nuovo post"
1074
+
1075
+ #: C:\advanced-custom-fields/core/fields/email.php:123
1076
+ #: C:\advanced-custom-fields/core/fields/number.php:133
1077
+ #: C:\advanced-custom-fields/core/fields/password.php:105
1078
+ #: C:\advanced-custom-fields/core/fields/text.php:131
1079
+ #: C:\advanced-custom-fields/core/fields/textarea.php:111
1080
+ msgid "Placeholder Text"
1081
+ msgstr "Testo Segnaposto"
1082
+
1083
+ #: C:\advanced-custom-fields/core/fields/email.php:124
1084
+ #: C:\advanced-custom-fields/core/fields/number.php:134
1085
+ #: C:\advanced-custom-fields/core/fields/password.php:106
1086
+ #: C:\advanced-custom-fields/core/fields/text.php:132
1087
+ #: C:\advanced-custom-fields/core/fields/textarea.php:112
1088
+ msgid "Appears within the input"
1089
+ msgstr "Mostra insieme all'input"
1090
+
1091
+ #: C:\advanced-custom-fields/core/fields/email.php:138
1092
+ #: C:\advanced-custom-fields/core/fields/number.php:148
1093
+ #: C:\advanced-custom-fields/core/fields/password.php:120
1094
+ #: C:\advanced-custom-fields/core/fields/text.php:146
1095
+ msgid "Prepend"
1096
+ msgstr "Appendi prima"
1097
+
1098
+ #: C:\advanced-custom-fields/core/fields/email.php:139
1099
+ #: C:\advanced-custom-fields/core/fields/number.php:149
1100
+ #: C:\advanced-custom-fields/core/fields/password.php:121
1101
+ #: C:\advanced-custom-fields/core/fields/text.php:147
1102
+ msgid "Appears before the input"
1103
+ msgstr "Mostra prima dell'input"
1104
+
1105
+ #: C:\advanced-custom-fields/core/fields/email.php:153
1106
+ #: C:\advanced-custom-fields/core/fields/number.php:163
1107
+ #: C:\advanced-custom-fields/core/fields/password.php:135
1108
+ #: C:\advanced-custom-fields/core/fields/text.php:161
1109
+ msgid "Append"
1110
+ msgstr "Appendi dopo"
1111
+
1112
+ #: C:\advanced-custom-fields/core/fields/email.php:154
1113
+ #: C:\advanced-custom-fields/core/fields/number.php:164
1114
+ #: C:\advanced-custom-fields/core/fields/password.php:136
1115
+ #: C:\advanced-custom-fields/core/fields/text.php:162
1116
+ msgid "Appears after the input"
1117
+ msgstr "Mostra dopo l'input"
1118
+
1119
+ #: C:\advanced-custom-fields/core/fields/file.php:19
1120
  msgid "File"
1121
  msgstr "File"
1122
 
1123
+ #: C:\advanced-custom-fields/core/fields/file.php:20
1124
+ #: C:\advanced-custom-fields/core/fields/image.php:20
1125
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:36
1126
+ msgid "Content"
1127
+ msgstr "Contenuto"
1128
+
1129
+ #: C:\advanced-custom-fields/core/fields/file.php:26
1130
+ msgid "Select File"
1131
+ 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"
1139
+ msgstr "Aggiorna File"
1140
+
1141
+ #: C:\advanced-custom-fields/core/fields/file.php:29
1142
+ #: C:\advanced-custom-fields/core/fields/image.php:30
1143
+ msgid "uploaded to this post"
1144
+ msgstr "Caricata in questo post"
1145
+
1146
+ #: C:\advanced-custom-fields/core/fields/file.php:123
1147
  msgid "No File Selected"
1148
  msgstr "Nessun file selezionato"
1149
 
1150
+ #: C:\advanced-custom-fields/core/fields/file.php:123
1151
  msgid "Add File"
1152
  msgstr "Aggiungi file"
1153
 
1154
+ #: C:\advanced-custom-fields/core/fields/file.php:153
1155
+ #: C:\advanced-custom-fields/core/fields/image.php:118
1156
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:367
1157
  msgid "Return Value"
1158
  msgstr "Restituisci valore"
1159
 
1160
+ #: C:\advanced-custom-fields/core/fields/file.php:164
1161
+ msgid "File Object"
1162
+ msgstr "Oggetto File"
1163
 
1164
+ #: C:\advanced-custom-fields/core/fields/file.php:165
1165
+ msgid "File URL"
1166
+ msgstr "URL del File"
1167
 
1168
+ #: C:\advanced-custom-fields/core/fields/file.php:166
1169
+ msgid "File ID"
1170
+ msgstr "ID del File"
1171
 
1172
+ #: C:\advanced-custom-fields/core/fields/file.php:175
1173
+ #: C:\advanced-custom-fields/core/fields/image.php:158
1174
+ msgid "Library"
1175
+ msgstr "Libreria"
1176
 
1177
+ #: C:\advanced-custom-fields/core/fields/file.php:187
1178
+ #: C:\advanced-custom-fields/core/fields/image.php:171
1179
+ msgid "Uploaded to post"
1180
+ msgstr "Caricate nel post"
1181
 
1182
+ #: C:\advanced-custom-fields/core/fields/google-map.php:18
1183
+ msgid "Google Map"
1184
+ msgstr "Mappa di Google"
 
1185
 
1186
+ #: C:\advanced-custom-fields/core/fields/google-map.php:31
1187
+ msgid "Locating"
1188
+ msgstr "Localizzare"
1189
 
1190
+ #: C:\advanced-custom-fields/core/fields/google-map.php:32
1191
+ msgid "Sorry, this browser does not support geolocation"
1192
+ 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"
1200
+ 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"
1208
+ msgstr "Centra"
1209
 
1210
+ #: C:\advanced-custom-fields/core/fields/google-map.php:160
1211
+ msgid "Center the initial map"
1212
+ msgstr "Centra la mappa iniziale"
1213
 
1214
+ #: C:\advanced-custom-fields/core/fields/google-map.php:196
1215
+ msgid "Height"
1216
+ msgstr "Altezza"
1217
 
1218
+ #: C:\advanced-custom-fields/core/fields/google-map.php:197
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"
 
 
 
1225
 
1226
+ #: C:\advanced-custom-fields/core/fields/image.php:27
1227
+ msgid "Select Image"
1228
+ msgstr "Seleziona immagine"
1229
 
1230
+ #: C:\advanced-custom-fields/core/fields/image.php:28
1231
+ msgid "Edit Image"
1232
+ msgstr "Modifica Immagine"
1233
 
1234
+ #: C:\advanced-custom-fields/core/fields/image.php:29
1235
+ msgid "Update Image"
1236
+ msgstr "Aggiorna Immagine"
1237
 
1238
+ #: C:\advanced-custom-fields/core/fields/image.php:83
1239
+ msgid "Remove"
1240
+ msgstr "Rimuovi"
1241
+
1242
+ #: C:\advanced-custom-fields/core/fields/image.php:84
1243
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:108
1244
+ msgid "Edit"
1245
+ msgstr "Modifica"
1246
 
1247
+ #: C:\advanced-custom-fields/core/fields/image.php:90
1248
  msgid "No image selected"
1249
  msgstr "Nessuna immagine selezionata"
1250
 
1251
+ #: C:\advanced-custom-fields/core/fields/image.php:90
1252
  msgid "Add Image"
1253
  msgstr "Aggiungi immagine"
1254
 
1255
+ #: C:\advanced-custom-fields/core/fields/image.php:119
1256
+ #: C:\advanced-custom-fields/core/fields/relationship.php:570
1257
+ msgid "Specify the returned value on front end"
1258
+ msgstr "Specifica il valore riportato nel front end"
1259
+
1260
+ #: C:\advanced-custom-fields/core/fields/image.php:129
1261
+ msgid "Image Object"
1262
+ msgstr "Oggetto Immagine"
1263
+
1264
+ #: C:\advanced-custom-fields/core/fields/image.php:130
1265
  msgid "Image URL"
1266
  msgstr "URL immagine"
1267
 
1268
+ #: C:\advanced-custom-fields/core/fields/image.php:131
1269
+ msgid "Image ID"
1270
+ msgstr "ID Immagine"
1271
 
1272
+ #: C:\advanced-custom-fields/core/fields/image.php:139
1273
  msgid "Preview Size"
1274
  msgstr "Anteprima grandezza"
1275
 
1276
+ #: C:\advanced-custom-fields/core/fields/image.php:140
1277
+ msgid "Shown when entering data"
1278
+ msgstr "Mostra quando inserisci dei dati"
1279
 
1280
+ #: C:\advanced-custom-fields/core/fields/image.php:159
1281
+ msgid "Limit the media library choice"
1282
+ msgstr "Limita la scelta della libreria media"
1283
 
1284
+ #: C:\advanced-custom-fields/core/fields/message.php:19
1285
+ #: C:\advanced-custom-fields/core/fields/message.php:70
1286
+ #: C:\advanced-custom-fields/core/fields/true_false.php:79
1287
+ msgid "Message"
1288
+ msgstr "Messaggio"
1289
 
1290
+ #: C:\advanced-custom-fields/core/fields/message.php:71
1291
+ msgid "Text &amp; HTML entered here will appear inline with the fields"
1292
+ msgstr "Testo e HTML inseriti appariranno in linea con i campi"
1293
 
1294
+ #: C:\advanced-custom-fields/core/fields/message.php:72
1295
+ msgid "Please note that all text will first be passed through the wp function "
1296
+ msgstr ""
1297
+ "Per favore, nota che tutto il testo verrà prima passato alla funzione di wp"
1298
 
1299
+ #: C:\advanced-custom-fields/core/fields/number.php:19
1300
+ msgid "Number"
1301
+ msgstr "Numero"
1302
 
1303
+ #: C:\advanced-custom-fields/core/fields/number.php:178
1304
+ msgid "Minimum Value"
1305
+ msgstr "Valore Minimo"
1306
 
1307
+ #: C:\advanced-custom-fields/core/fields/number.php:194
1308
+ msgid "Maximum Value"
1309
+ msgstr "Valore Massimo"
1310
 
1311
+ #: C:\advanced-custom-fields/core/fields/number.php:210
1312
+ msgid "Step Size"
1313
+ msgstr "Incremento"
 
1314
 
1315
+ #: C:\advanced-custom-fields/core/fields/page_link.php:18
1316
+ msgid "Page Link"
1317
+ msgstr "Link a pagina"
 
 
 
 
 
1318
 
1319
+ #: C:\advanced-custom-fields/core/fields/page_link.php:19
1320
+ #: C:\advanced-custom-fields/core/fields/post_object.php:19
1321
+ #: C:\advanced-custom-fields/core/fields/relationship.php:19
1322
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:19
1323
+ #: C:\advanced-custom-fields/core/fields/user.php:19
1324
+ msgid "Relational"
1325
+ msgstr "Relazionale"
1326
+
1327
+ #: C:\advanced-custom-fields/core/fields/page_link.php:103
1328
+ #: C:\advanced-custom-fields/core/fields/post_object.php:268
1329
+ #: C:\advanced-custom-fields/core/fields/relationship.php:589
1330
+ #: C:\advanced-custom-fields/core/fields/relationship.php:668
1331
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:75
1332
+ msgid "Post Type"
1333
+ msgstr "Post Type"
1334
 
1335
+ #: C:\advanced-custom-fields/core/fields/page_link.php:127
1336
+ #: C:\advanced-custom-fields/core/fields/post_object.php:317
1337
+ #: C:\advanced-custom-fields/core/fields/select.php:214
1338
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:333
1339
+ #: C:\advanced-custom-fields/core/fields/user.php:275
1340
  msgid "Allow Null?"
1341
  msgstr "Campo nullo permesso?"
1342
 
1343
+ #: C:\advanced-custom-fields/core/fields/page_link.php:148
1344
+ #: C:\advanced-custom-fields/core/fields/post_object.php:338
1345
+ #: C:\advanced-custom-fields/core/fields/select.php:233
 
 
 
 
 
 
 
 
 
 
 
 
 
1346
  msgid "Select multiple values?"
1347
  msgstr "E' possibile selezionare più valori?"
1348
 
1349
+ #: C:\advanced-custom-fields/core/fields/password.php:19
1350
+ msgid "Password"
1351
+ msgstr "Password"
1352
+
1353
+ #: C:\advanced-custom-fields/core/fields/post_object.php:18
1354
  msgid "Post Object"
1355
  msgstr "Post Object"
1356
 
1357
+ #: C:\advanced-custom-fields/core/fields/post_object.php:292
1358
+ #: C:\advanced-custom-fields/core/fields/relationship.php:613
1359
  msgid "Filter from Taxonomy"
1360
  msgstr "Filtro da Tassonomia"
1361
 
1362
+ #: C:\advanced-custom-fields/core/fields/radio.php:18
1363
  msgid "Radio Button"
1364
  msgstr "Radio Button"
1365
 
1366
+ #: C:\advanced-custom-fields/core/fields/radio.php:102
1367
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:91
1368
+ msgid "Other"
1369
+ 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"
1377
+ msgstr "Rosso"
1378
+
1379
+ #: C:\advanced-custom-fields/core/fields/radio.php:148
1380
+ msgid "Blue"
1381
+ msgstr "Blu"
1382
+
1383
+ #: C:\advanced-custom-fields/core/fields/radio.php:172
1384
+ msgid "Add 'other' choice to allow for custom values"
1385
+ 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"
1393
  msgstr "Relazione"
1394
 
1395
+ #: C:\advanced-custom-fields/core/fields/relationship.php:29
1396
+ msgid "Maximum values reached ( {max} values )"
1397
+ msgstr "Valore massimo raggiunto ( {max} )"
1398
+
1399
+ #: C:\advanced-custom-fields/core/fields/relationship.php:425
1400
+ msgid "Search..."
1401
+ msgstr "Cerca..."
1402
+
1403
+ #: C:\advanced-custom-fields/core/fields/relationship.php:436
1404
+ msgid "Filter by post type"
1405
+ 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"
1413
+ msgstr "Oggetto Post"
1414
+
1415
+ #: C:\advanced-custom-fields/core/fields/relationship.php:581
1416
+ msgid "Post IDs"
1417
+ msgstr "ID del Post"
1418
+
1419
+ #: C:\advanced-custom-fields/core/fields/relationship.php:647
1420
  msgid "Search"
1421
  msgstr "Cerca"
1422
 
1423
+ #: C:\advanced-custom-fields/core/fields/relationship.php:648
1424
+ msgid "Post Type Select"
1425
+ msgstr "Scegli Post Type"
1426
+
1427
+ #: C:\advanced-custom-fields/core/fields/relationship.php:656
1428
+ msgid "Elements"
1429
+ msgstr "Elementi"
1430
+
1431
+ #: C:\advanced-custom-fields/core/fields/relationship.php:657
1432
+ msgid "Selected elements will be displayed in each result"
1433
+ msgstr "Gli elementi selezionati verranno mostrati in ogni risultato"
1434
+
1435
+ #: C:\advanced-custom-fields/core/fields/relationship.php:666
1436
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:105
1437
+ msgid "Featured Image"
1438
+ msgstr "Immagine in Evidenza"
1439
+
1440
+ #: C:\advanced-custom-fields/core/fields/relationship.php:667
1441
+ msgid "Post Title"
1442
+ 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
1450
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:324
1451
+ #: C:\advanced-custom-fields/core/fields/user.php:266
1452
+ msgid "Select"
1453
+ msgstr "Select HTML"
1454
+
1455
+ #: C:\advanced-custom-fields/core/fields/tab.php:19
1456
+ msgid "Tab"
1457
+ msgstr "Tab"
1458
+
1459
+ #: C:\advanced-custom-fields/core/fields/tab.php:68
1460
+ msgid ""
1461
+ "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1462
+ "fields together under separate tab headings."
1463
+ msgstr ""
1464
+ "Usa i \"Campi Tab\" per organizzare meglio la schermata di modifica "
1465
+ "raggruppando gruppi di campi insieme in tab con intestazioni separate."
1466
+
1467
+ #: C:\advanced-custom-fields/core/fields/tab.php:69
1468
+ msgid ""
1469
+ "All the fields following this \"tab field\" (or until another \"tab field\" "
1470
+ "is defined) will be grouped together."
1471
+ msgstr ""
1472
+ "Tutti i campi che seguento questo \"campo tab\" (o finchè un altro \"campo "
1473
+ "tab\" è stato definito) verranno raggruppati insieme."
1474
+
1475
+ #: C:\advanced-custom-fields/core/fields/tab.php:70
1476
+ msgid "Use multiple tabs to divide your fields into sections."
1477
+ msgstr "Usa tabs multiple per dividere i tuoi campi in sezioni."
1478
+
1479
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:18
1480
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:278
1481
+ msgid "Taxonomy"
1482
+ msgstr "Tassonomia"
1483
+
1484
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:222
1485
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:231
1486
+ msgid "None"
1487
+ msgstr "Niente"
1488
+
1489
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:308
1490
+ #: C:\advanced-custom-fields/core/fields/user.php:251
1491
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:77
1492
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:159
1493
+ msgid "Field Type"
1494
+ msgstr "Tipo del campo"
1495
+
1496
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:318
1497
+ #: C:\advanced-custom-fields/core/fields/user.php:260
1498
+ msgid "Multiple Values"
1499
+ msgstr "Valori Multipli"
1500
 
1501
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:320
1502
+ #: C:\advanced-custom-fields/core/fields/user.php:262
1503
+ msgid "Multi Select"
1504
+ msgstr "Select Multipla"
1505
 
1506
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:322
1507
+ #: C:\advanced-custom-fields/core/fields/user.php:264
1508
+ msgid "Single Value"
1509
+ msgstr "Valore Singolo"
1510
 
1511
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:323
1512
+ msgid "Radio Buttons"
1513
+ msgstr "Pulsanti Radio"
1514
 
1515
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:352
1516
+ msgid "Load & Save Terms to Post"
1517
+ msgstr "Carica e Salva i Termini per il Post"
1518
 
1519
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:360
1520
+ msgid ""
1521
+ "Load value based on the post's terms and update the post's terms on save"
1522
+ msgstr ""
1523
+ "Carica i valori in base ai termini del post ed aggiorna i termini quando "
1524
+ "salvi"
1525
+
1526
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:377
1527
+ msgid "Term Object"
1528
+ msgstr "Oggetto Termine"
1529
+
1530
+ #: C:\advanced-custom-fields/core/fields/taxonomy.php:378
1531
+ msgid "Term ID"
1532
+ msgstr "ID Termine"
1533
+
1534
+ #: C:\advanced-custom-fields/core/fields/text.php:19
1535
  msgid "Text"
1536
  msgstr "Testo"
1537
 
1538
+ #: C:\advanced-custom-fields/core/fields/text.php:176
1539
+ #: C:\advanced-custom-fields/core/fields/textarea.php:141
1540
  msgid "Formatting"
1541
  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
1550
+ msgid "No formatting"
1551
+ msgstr "Nessuna formattazione"
1552
+
1553
+ #: C:\advanced-custom-fields/core/fields/text.php:187
1554
+ #: C:\advanced-custom-fields/core/fields/textarea.php:153
1555
+ msgid "Convert HTML into tags"
1556
+ msgstr "Converti HTML in tags"
1557
+
1558
+ #: C:\advanced-custom-fields/core/fields/text.php:195
1559
+ #: C:\advanced-custom-fields/core/fields/textarea.php:126
1560
+ msgid "Character Limit"
1561
+ msgstr "Limite Caratteri"
1562
 
1563
+ #: C:\advanced-custom-fields/core/fields/text.php:196
1564
+ #: C:\advanced-custom-fields/core/fields/textarea.php:127
1565
+ msgid "Leave blank for no limit"
1566
+ msgstr "Lascia in bianco per non impostare un limite"
1567
 
1568
+ #: C:\advanced-custom-fields/core/fields/textarea.php:19
1569
  msgid "Text Area"
1570
  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"
1578
  msgstr "Vero / Falso"
1579
 
1580
+ #: C:\advanced-custom-fields/core/fields/true_false.php:80
 
 
 
 
1581
  msgid "eg. Show extra content"
1582
  msgstr "es. Visualizza contenuto extra"
1583
 
1584
+ #: C:\advanced-custom-fields/core/fields/user.php:18
1585
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:94
1586
+ msgid "User"
1587
+ msgstr "Utente"
1588
+
1589
+ #: C:\advanced-custom-fields/core/fields/user.php:224
1590
+ msgid "Filter by role"
1591
+ msgstr "Filtra per ruolo"
1592
+
1593
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:35
1594
  msgid "Wysiwyg Editor"
1595
  msgstr "Editor Wysiwyg"
1596
 
1597
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:202
1598
  msgid "Toolbar"
1599
  msgstr "Toolbar"
1600
 
1601
+ #: C:\advanced-custom-fields/core/fields/wysiwyg.php:234
1602
  msgid "Show Media Upload Buttons?"
1603
  msgstr "Visualizzare il pulsante per il caricamento di file multimediali?"
1604
 
1605
+ #: C:\advanced-custom-fields/core/fields/_base.php:124
1606
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:74
1607
+ msgid "Basic"
1608
+ msgstr "Basic"
1609
+
1610
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:19
1611
+ msgid "Date Picker"
1612
+ msgstr "Date Picker"
1613
 
1614
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:55
1615
+ msgid "Done"
1616
+ msgstr "Fatto"
1617
 
1618
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:56
1619
+ msgid "Today"
1620
+ msgstr "Oggi"
1621
 
1622
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:59
1623
+ msgid "Show a different month"
1624
+ msgstr "Mostra un mese differente"
1625
+
1626
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:126
1627
+ msgid "Save format"
1628
+ 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 "
1636
+ "tramite API"
1637
+
1638
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:128
1639
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1640
+ msgstr "\"yymmdd\" è il formato più versatile. Leggi di più a proposito"
1641
+
1642
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:128
1643
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:144
1644
+ msgid "jQuery date formats"
1645
+ msgstr "formato date jQuery"
1646
+
1647
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:142
1648
+ msgid "Display format"
1649
+ msgstr "Mostra formato"
1650
+
1651
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:143
1652
+ msgid "This format will be seen by the user when entering a value"
1653
+ msgstr "Questo formato verrà visto dall'utente quando inserisce un valore"
1654
+
1655
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:144
1656
+ msgid ""
1657
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1658
+ "about"
1659
+ msgstr ""
1660
+ "\"dd/mm/yy\" o \"mm/dd/yy\" sono i formati di visualizzazione più usati. "
1661
+ "Leggi di più a proposito"
1662
+
1663
+ #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:158
1664
+ msgid "Week Starts On"
1665
+ msgstr "La Settimana comincia di"
1666
+
1667
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:24
1668
+ msgid "New Field"
1669
+ msgstr "Nuovo campo"
1670
+
1671
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:58
1672
+ msgid "Field type does not exist"
1673
+ msgstr "Il tipo di campo non esiste"
1674
+
1675
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:74
1676
+ msgid "Field Order"
1677
+ msgstr "Ordine del campo"
1678
+
1679
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:75
1680
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:127
1681
+ msgid "Field Label"
1682
+ msgstr "Etichetta del campo"
1683
+
1684
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:76
1685
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:143
1686
+ msgid "Field Name"
1687
+ msgstr "Nome del campo"
1688
+
1689
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:78
1690
+ msgid "Field Key"
1691
+ msgstr "Chiave del Campo"
1692
+
1693
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:90
1694
+ msgid ""
1695
+ "No fields. Click the <strong>+ Add Field</strong> button to create your "
1696
+ "first field."
1697
+ msgstr ""
1698
+ "Non hai inserito nessun custom field. Clicca sul pulsante <strong> + "
1699
+ "Aggiungi campo</strong> per creare il tuo primo campo personalizzato."
1700
+
1701
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:105
1702
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:108
1703
+ msgid "Edit this Field"
1704
+ msgstr "Modifica questo campo"
1705
+
1706
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:109
1707
+ msgid "Read documentation for this field"
1708
+ msgstr "Leggi la documentazione per questo campo"
1709
+
1710
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:109
1711
+ msgid "Docs"
1712
+ msgstr "Docs"
1713
+
1714
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:110
1715
+ msgid "Duplicate this Field"
1716
+ msgstr "Duplica questo campo"
1717
+
1718
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:110
1719
+ msgid "Duplicate"
1720
+ msgstr "Duplica"
1721
+
1722
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:111
1723
+ msgid "Delete this Field"
1724
+ msgstr "Cancella questo campo"
1725
+
1726
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:111
1727
+ msgid "Delete"
1728
+ msgstr "Cancella"
1729
+
1730
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:128
1731
+ msgid "This is the name which will appear on the EDIT page"
1732
+ msgstr "Questo è il nome che apparirà nella pagina di modifica"
1733
+
1734
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:144
1735
+ msgid "Single word, no spaces. Underscores and dashes allowed"
1736
+ msgstr "Una parola, senza spazi. \"_\" e trattini permessi"
1737
+
1738
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:173
1739
+ msgid "Field Instructions"
1740
+ msgstr "Istruzioni del campo"
1741
+
1742
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:174
1743
+ msgid "Instructions for authors. Shown when submitting data"
1744
+ msgstr ""
1745
+ "Istruzioni per gli autori. Vengono visualizzate al di sopra del custom field"
1746
+
1747
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:186
1748
+ msgid "Required?"
1749
+ msgstr "Obbligatorio?"
1750
+
1751
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:209
1752
+ msgid "Conditional Logic"
1753
+ msgstr "Logica Condizionale"
1754
+
1755
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:260
1756
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:117
1757
+ msgid "is equal to"
1758
+ msgstr "è uguale a"
1759
+
1760
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:261
1761
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:118
1762
+ msgid "is not equal to"
1763
+ msgstr "non è uguale a"
1764
+
1765
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:279
1766
+ msgid "Show this field when"
1767
+ 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"
1783
+ msgstr "Chiudi campo"
1784
+
1785
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:316
1786
+ msgid "Drag and drop to reorder"
1787
+ msgstr "Trascina e rilascia per riordinare"
1788
+
1789
+ #: C:\advanced-custom-fields/core/views/meta_box_fields.php:317
1790
+ msgid "+ Add Field"
1791
+ msgstr "+ Aggiungi campo"
1792
+
1793
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:48
1794
+ msgid "Rules"
1795
+ msgstr "Condizioni"
1796
+
1797
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:49
1798
+ msgid ""
1799
+ "Create a set of rules to determine which edit screens will use these "
1800
+ "advanced custom fields"
1801
+ msgstr ""
1802
+ "Crea una o pi&ugrave; condizioni per determinare quali post type faranno uso "
1803
+ "di questi campi personalizzati"
1804
+
1805
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:60
1806
+ msgid "Show this field group if"
1807
+ msgstr "Mostra questo gruppo di campi se"
1808
+
1809
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:76
1810
+ msgid "Logged in User Type"
1811
+ msgstr "Logged in User Type"
1812
+
1813
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:78
1814
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:79
1815
+ msgid "Page"
1816
+ msgstr "Pagina"
1817
+
1818
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:80
1819
+ msgid "Page Type"
1820
+ msgstr "Tipo di pagina"
1821
+
1822
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:81
1823
+ msgid "Page Parent"
1824
+ msgstr "Genitore della pagina"
1825
+
1826
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:82
1827
+ msgid "Page Template"
1828
+ msgstr "Template della pagina"
1829
+
1830
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:84
1831
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:85
1832
+ msgid "Post"
1833
+ msgstr "Post"
1834
+
1835
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:86
1836
+ msgid "Post Category"
1837
+ msgstr "Categoria del post"
1838
+
1839
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:87
1840
+ msgid "Post Format"
1841
+ msgstr "Formato del post"
1842
+
1843
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:88
1844
+ msgid "Post Status"
1845
+ msgstr "Stato del Post"
1846
+
1847
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:89
1848
+ msgid "Post Taxonomy"
1849
+ msgstr "Tassonomia del Post"
1850
+
1851
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:92
1852
+ msgid "Attachment"
1853
+ msgstr "Allegato"
1854
+
1855
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:93
1856
+ msgid "Taxonomy Term"
1857
+ msgstr "Termine di Tassonomia"
1858
+
1859
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:146
1860
+ msgid "and"
1861
+ msgstr "e"
1862
+
1863
+ #: C:\advanced-custom-fields/core/views/meta_box_location.php:161
1864
+ msgid "Add rule group"
1865
+ msgstr "Aggiungi una regola al gruppo"
1866
+
1867
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:25
1868
+ msgid "Order No."
1869
+ msgstr "Ordine N."
1870
+
1871
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:26
1872
+ msgid "Field groups are created in order <br />from lowest to highest"
1873
+ msgstr ""
1874
+ "I gruppi di campi sono creati in ordine <br/> dal più basso al più alto"
1875
+
1876
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:42
1877
+ msgid "Position"
1878
+ msgstr "Posizione"
1879
+
1880
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:52
1881
+ msgid "High (after title)"
1882
+ msgstr "Alto (sopra il titolo)"
1883
+
1884
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:53
1885
+ msgid "Normal (after content)"
1886
+ 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"
1894
+ msgstr "Stile"
1895
+
1896
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:74
1897
+ msgid "No Metabox"
1898
+ msgstr "No Metabox"
1899
+
1900
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:75
1901
+ msgid "Standard Metabox"
1902
+ msgstr "Standard Metabox"
1903
+
1904
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:84
1905
+ msgid "Hide on screen"
1906
+ msgstr "Nascondi sullo schermo"
1907
+
1908
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:85
1909
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1910
+ msgstr ""
1911
+ "<b>Seleziona</b> gli oggetti da <b>nascondere</b> nella schermata di modifica"
1912
+
1913
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:86
1914
+ msgid ""
1915
+ "If multiple field groups appear on an edit screen, the first field group's "
1916
+ "options will be used. (the one with the lowest order number)"
1917
+ msgstr ""
1918
+ "Se gruppi di campi multipli appaiono in una schermata di modifica, verranno "
1919
+ "utilizzate le opzioni del primo gruppo di campi. (quello con il numero più "
1920
+ "basso)"
1921
+
1922
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:96
1923
+ msgid "Content Editor"
1924
+ msgstr "Content Editor"
1925
+
1926
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:97
1927
+ msgid "Excerpt"
1928
+ msgstr "Riassunto"
1929
+
1930
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:99
1931
+ msgid "Discussion"
1932
+ msgstr "Discussione"
1933
+
1934
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:100
1935
+ msgid "Comments"
1936
+ msgstr "Commenti"
1937
+
1938
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:101
1939
+ msgid "Revisions"
1940
+ msgstr "Revisioni"
1941
+
1942
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:102
1943
+ msgid "Slug"
1944
+ msgstr "Slug"
1945
+
1946
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:103
1947
+ msgid "Author"
1948
+ msgstr "Autore"
1949
+
1950
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:104
1951
+ msgid "Format"
1952
+ msgstr "Formato"
1953
+
1954
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:106
1955
+ msgid "Categories"
1956
+ msgstr "Categorie"
1957
+
1958
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:107
1959
+ msgid "Tags"
1960
+ msgstr "Tags"
1961
+
1962
+ #: C:\advanced-custom-fields/core/views/meta_box_options.php:108
1963
+ msgid "Send Trackbacks"
1964
+ msgstr "Invia Trackbacks"
1965
+
1966
+ #~ msgid "Settings"
1967
+ #~ msgstr "Impostazioni"
1968
+
1969
+ #~ msgid "Add Fields to Edit Screens"
1970
+ #~ msgstr "Aggiungi campi alle schermate di modifica"
1971
+
1972
+ #~ msgid "required"
1973
+ #~ msgstr "obbligatorio"
1974
+
1975
+ #~ msgid "requires a database upgrade"
1976
+ #~ msgstr "richiede un aggiornamento del databasee"
1977
+
1978
+ #~ msgid "why?"
1979
+ #~ msgstr "perchè?"
1980
+
1981
+ #~ msgid "Please"
1982
+ #~ msgstr "Per piacere"
1983
+
1984
+ #~ msgid "backup your database"
1985
+ #~ msgstr "effettua un backup del tuo database"
1986
+
1987
+ #~ msgid "then click"
1988
+ #~ msgstr "poi clicca"
1989
+
1990
+ #~ msgid "Upgrade Database"
1991
+ #~ msgstr "Aggiorna database"
1992
+
1993
+ #~ msgid "Repeater field deactivated"
1994
+ #~ msgstr "Repeater field disattivato"
1995
+
1996
+ #~ msgid "Options page deactivated"
1997
+ #~ msgstr "Options page disattivata"
1998
+
1999
+ #~ msgid "Flexible Content field deactivated"
2000
+ #~ msgstr "Flexible Content field disattivato"
2001
+
2002
+ #~ msgid "Everything Fields deactivated"
2003
+ #~ msgstr "Everything Fields disattivato"
2004
+
2005
+ #~ msgid "Repeater field activated"
2006
+ #~ msgstr "Repeater field attivato"
2007
+
2008
+ #~ msgid "Options page activated"
2009
+ #~ msgstr "Options page attivata"
2010
+
2011
+ #~ msgid "Flexible Content field activated"
2012
+ #~ msgstr "Flexible Content field attivato"
2013
+
2014
+ #~ msgid "Everything Fields activated"
2015
+ #~ msgstr "Everything Fields attivato"
2016
+
2017
+ #~ msgid "License key unrecognised"
2018
+ #~ msgstr "Licenza non riconosciuta"
2019
+
2020
+ #~ msgid "Page Specific"
2021
+ #~ msgstr "Pagina specifica"
2022
+
2023
+ #~ msgid "Post Specific"
2024
+ #~ msgstr "Post specifico"
2025
+
2026
+ #~ msgid "Taxonomy (Add / Edit)"
2027
+ #~ msgstr "Tassonomia (Aggiungi / Modifica)"
2028
+
2029
+ #~ msgid "User (Add / Edit)"
2030
+ #~ msgstr "Utente (Aggiungi / Modifica)"
2031
+
2032
+ #~ msgid "Media (Edit)"
2033
+ #~ msgstr "Media (Aggiungi/Modifica)"
2034
+
2035
+ #~ msgid "match"
2036
+ #~ msgstr "combina le condizioni di sopra con "
2037
+
2038
+ #~ msgid "of the above"
2039
+ #~ msgstr "operatore logico"
2040
+
2041
+ #~ msgid "Unlock options add-on with an activation code"
2042
+ #~ msgstr "Sblocca le opzioni aggiuntive con un codice di attivazione"
2043
+
2044
+ #~ msgid "Normal"
2045
+ #~ msgstr "Normale"
2046
+
2047
+ #~ msgid "Show on page"
2048
+ #~ msgstr "Visualizza nella pagina"
2049
+
2050
+ #~ msgid ""
2051
+ #~ "Read documentation, learn the functions and find some tips &amp; tricks "
2052
+ #~ "for your next web project."
2053
+ #~ msgstr ""
2054
+ #~ "Leggi la documentazione, impara le funzioni e scopri alcuni trucchi per "
2055
+ #~ "il tuo prossimo progetto web."
2056
+
2057
+ #~ msgid "View the ACF website"
2058
+ #~ msgstr "Visualizza il sito ACF"
2059
+
2060
+ #~ msgid "Advanced Custom Fields Settings"
2061
+ #~ msgstr "Impostazioni di Advanced Custom Fields"
2062
+
2063
+ #~ msgid "Active"
2064
+ #~ msgstr "Attivo"
2065
+
2066
+ #~ msgid "Inactive"
2067
+ #~ msgstr "Inattivo"
2068
+
2069
+ #~ msgid ""
2070
+ #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
2071
+ #~ "on multiple sites."
2072
+ #~ msgstr ""
2073
+ #~ "Gli Add-ons possono essere sbloccati comprando una lienza. Ogni chiave "
2074
+ #~ "può essere usata su più siti."
2075
+
2076
+ #~ msgid "Export Field Groups to XML"
2077
+ #~ msgstr "Esporta i gruppi di campi in XML"
2078
+
2079
+ #~ msgid "and select WordPress"
2080
+ #~ msgstr "e seleziona Wordpress"
2081
+
2082
+ #~ msgid "Create PHP"
2083
+ #~ msgstr "Genera PHP"
2084
+
2085
+ #~ msgid "Register Field Groups with PHP"
2086
+ #~ msgstr "Registra i gruppi di campi con PHP"
2087
+
2088
+ #~ msgid ""
2089
+ #~ "/**\n"
2090
+ #~ " * Activate Add-ons\n"
2091
+ #~ " * Here you can enter your activation codes to unlock Add-ons to use in "
2092
+ #~ "your theme. \n"
2093
+ #~ " * Since all activation codes are multi-site licenses, you are allowed to "
2094
+ #~ "include your key in premium themes. \n"
2095
+ #~ " * Use the commented out code to update the database with your activation "
2096
+ #~ "code. \n"
2097
+ #~ " * You may place this code inside an IF statement that only runs on theme "
2098
+ #~ "activation.\n"
2099
+ #~ " */"
2100
+ #~ msgstr ""
2101
+ #~ "/**\n"
2102
+ #~ " * Attiva Add-ons\n"
2103
+ #~ " * Qui puoi digitare il tuo codice di attivazione per sbloccare gli add-"
2104
+ #~ "ons da utilizzare nel tuo tema. \n"
2105
+ #~ " * Visto che tutti i codici d'attivazione sono multisito, puoi includere "
2106
+ #~ "la tua chiave nei temi premium. \n"
2107
+ #~ " * Usa il codice commentato per aggiornare il database con il tuo codice "
2108
+ #~ "di attivazione. \n"
2109
+ #~ " * Puoi inserire questo codice all'interno di una condizione IF relativa "
2110
+ #~ "all'attivazione del tema.\n"
2111
+ #~ " */"
2112
+
2113
+ #~ msgid ""
2114
+ #~ "/**\n"
2115
+ #~ " * Register field groups\n"
2116
+ #~ " * The register_field_group function accepts 1 array which holds the "
2117
+ #~ "relevant data to register a field group\n"
2118
+ #~ " * You may edit the array as you see fit. However, this may result in "
2119
+ #~ "errors if the array is not compatible with ACF\n"
2120
+ #~ " * This code must run every time the functions.php file is read\n"
2121
+ #~ " */"
2122
+ #~ msgstr ""
2123
+ #~ "/**\n"
2124
+ #~ " * Registra i gruppi di campi\n"
2125
+ #~ " * La funzione register_field_group function accetta 1 array che contiene "
2126
+ #~ "le informazioni necessarie per registrare un gruppo di campi\n"
2127
+ #~ " * Puoi modificare questo array. Tuttavia, potresti generare degli errori "
2128
+ #~ "se l'array non è compatibile con ACF\n"
2129
+ #~ " * Questo codice deve essere eseguito ogni qual volta viene letto il file "
2130
+ #~ "functions.php\n"
2131
+ #~ " */"
2132
+
2133
+ #~ msgid "No choices to choose from"
2134
+ #~ msgstr "Nessuna opzione da scegliere da"
2135
+
2136
+ #~ msgid "eg. dd/mm/yy. read more about"
2137
+ #~ msgstr "es. dd/mm/yy. Approfondisci"
2138
+
2139
+ #~ msgid "No files selected"
2140
+ #~ msgstr "Nessun file selezionato"
2141
+
2142
+ #~ msgid "Add Selected Files"
2143
+ #~ msgstr "Aggiungi i file selezionati"
2144
+
2145
+ #~ msgid "+ Add Row"
2146
+ #~ msgstr "+ Aggiungi riga"
2147
+
2148
+ #~ msgid "Reorder Layout"
2149
+ #~ msgstr "Riordina il layout"
2150
+
2151
+ #~ msgid "Reorder"
2152
+ #~ msgstr "Riordina"
2153
+
2154
+ #~ msgid "Add New Layout"
2155
+ #~ msgstr "Aggiungi un nuovo layout"
2156
+
2157
+ #~ msgid "Delete Layout"
2158
+ #~ msgstr "Cancella layout"
2159
+
2160
+ #~ msgid "Label"
2161
+ #~ msgstr "Etichetta"
2162
+
2163
+ #~ msgid "Display"
2164
+ #~ msgstr "Display"
2165
+
2166
+ #~ msgid "Row"
2167
+ #~ msgstr "Riga"
2168
+
2169
+ #~ msgid ""
2170
+ #~ "No fields. Click the \"+ Add Sub Field button\" to create your first "
2171
+ #~ "field."
2172
+ #~ msgstr ""
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
+
2179
+ #~ msgid "+ Add Sub Field"
2180
+ #~ msgstr "+ Aggiungi campo"
2181
+
2182
+ #~ msgid "Button Label"
2183
+ #~ msgstr "Etichetta del bottone"
2184
+
2185
+ #~ msgid "No images selected"
2186
+ #~ msgstr "Nessuna immagine selezionata"
2187
+
2188
+ #~ msgid "Add selected Images"
2189
+ #~ msgstr "Aggiungi le immagini selezionate"
2190
+
2191
+ #~ msgid ""
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"
2200
+ #~ msgstr "Imposta a -1 per un numero infinito"
2201
+
2202
+ #~ msgid "Repeater"
2203
+ #~ msgstr "Repeater"
2204
+
2205
+ #~ msgid "Repeater Fields"
2206
+ #~ msgstr "Repeater Fields"
2207
+
2208
+ #~ msgid "Row Limit"
2209
+ #~ msgstr "Limite delle righe"
2210
+
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"
2219
+
2220
+ #~ msgid "Define how to render html tags / new lines"
2221
+ #~ msgstr "Definisci come renderizzare i tag html / linee a capo"
2222
+
2223
+ #~ msgid "auto &lt;br /&gt;"
2224
+ #~ msgstr "auto &lt;br /&gt;"
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"
lang/acf-pt_BR.mo CHANGED
File without changes
lang/acf-pt_BR.po CHANGED
File without changes
lang/acf.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2013-11-10 04:27:48+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -117,11 +117,11 @@ msgstr ""
117
  msgid "No ACF groups selected"
118
  msgstr ""
119
 
120
- #: core/api.php:1144
121
  msgid "Update"
122
  msgstr ""
123
 
124
- #: core/api.php:1145
125
  msgid "Post updated"
126
  msgstr ""
127
 
@@ -417,7 +417,7 @@ msgstr ""
417
  #: core/fields/page_link.php:159 core/fields/post_object.php:328
418
  #: core/fields/post_object.php:349 core/fields/select.php:224
419
  #: core/fields/select.php:243 core/fields/taxonomy.php:343
420
- #: core/fields/user.php:285 core/fields/wysiwyg.php:245
421
  #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
422
  msgid "No"
423
  msgstr ""
@@ -426,69 +426,69 @@ msgstr ""
426
  #: core/fields/page_link.php:158 core/fields/post_object.php:327
427
  #: core/fields/post_object.php:348 core/fields/select.php:223
428
  #: core/fields/select.php:242 core/fields/taxonomy.php:342
429
- #: core/fields/user.php:284 core/fields/wysiwyg.php:244
430
  #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
431
  msgid "Yes"
432
  msgstr ""
433
 
434
- #: core/controllers/field_group.php:638
435
  msgid "Front Page"
436
  msgstr ""
437
 
438
- #: core/controllers/field_group.php:639
439
  msgid "Posts Page"
440
  msgstr ""
441
 
442
- #: core/controllers/field_group.php:640
443
  msgid "Top Level Page (parent of 0)"
444
  msgstr ""
445
 
446
- #: core/controllers/field_group.php:641
447
  msgid "Parent Page (has children)"
448
  msgstr ""
449
 
450
- #: core/controllers/field_group.php:642
451
  msgid "Child Page (has parent)"
452
  msgstr ""
453
 
454
- #: core/controllers/field_group.php:650
455
  msgid "Default Template"
456
  msgstr ""
457
 
458
- #: core/controllers/field_group.php:727
459
  msgid "Publish"
460
  msgstr ""
461
 
462
- #: core/controllers/field_group.php:728
463
  msgid "Pending Review"
464
  msgstr ""
465
 
466
- #: core/controllers/field_group.php:729
467
  msgid "Draft"
468
  msgstr ""
469
 
470
- #: core/controllers/field_group.php:730
471
  msgid "Future"
472
  msgstr ""
473
 
474
- #: core/controllers/field_group.php:731
475
  msgid "Private"
476
  msgstr ""
477
 
478
- #: core/controllers/field_group.php:732
479
  msgid "Revision"
480
  msgstr ""
481
 
482
- #: core/controllers/field_group.php:733
483
  msgid "Trash"
484
  msgstr ""
485
 
486
- #: core/controllers/field_group.php:746
487
  msgid "Super Admin"
488
  msgstr ""
489
 
490
- #: core/controllers/field_group.php:761 core/controllers/field_group.php:782
491
- #: core/controllers/field_group.php:789 core/fields/file.php:186
492
  #: core/fields/image.php:170 core/fields/page_link.php:109
493
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
494
  #: core/fields/relationship.php:595 core/fields/relationship.php:619
@@ -879,7 +879,7 @@ msgstr ""
879
  msgid "Choice"
880
  msgstr ""
881
 
882
- #: core/fields/checkbox.php:146 core/fields/radio.php:144
883
  #: core/fields/select.php:177
884
  msgid "Choices"
885
  msgstr ""
@@ -892,21 +892,21 @@ msgstr ""
892
  msgid "For more control, you may specify both a value and label like this:"
893
  msgstr ""
894
 
895
- #: core/fields/checkbox.php:149 core/fields/radio.php:150
896
  #: core/fields/select.php:180
897
  msgid "red : Red"
898
  msgstr ""
899
 
900
- #: core/fields/checkbox.php:149 core/fields/radio.php:151
901
  #: core/fields/select.php:180
902
  msgid "blue : Blue"
903
  msgstr ""
904
 
905
  #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
906
  #: core/fields/email.php:106 core/fields/number.php:116
907
- #: core/fields/radio.php:193 core/fields/select.php:197
908
  #: core/fields/text.php:116 core/fields/textarea.php:96
909
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:187
910
  msgid "Default Value"
911
  msgstr ""
912
 
@@ -915,15 +915,15 @@ msgid "Enter each default value on a new line"
915
  msgstr ""
916
 
917
  #: core/fields/checkbox.php:183 core/fields/message.php:20
918
- #: core/fields/radio.php:209 core/fields/tab.php:20
919
  msgid "Layout"
920
  msgstr ""
921
 
922
- #: core/fields/checkbox.php:194 core/fields/radio.php:220
923
  msgid "Vertical"
924
  msgstr ""
925
 
926
- #: core/fields/checkbox.php:195 core/fields/radio.php:221
927
  msgid "Horizontal"
928
  msgstr ""
929
 
@@ -999,7 +999,7 @@ msgstr ""
999
 
1000
  #: core/fields/email.php:107 core/fields/number.php:117
1001
  #: core/fields/text.php:117 core/fields/textarea.php:97
1002
- #: core/fields/wysiwyg.php:188
1003
  msgid "Appears when creating a new post"
1004
  msgstr ""
1005
 
@@ -1264,27 +1264,27 @@ msgstr ""
1264
  msgid "Radio Button"
1265
  msgstr ""
1266
 
1267
- #: core/fields/radio.php:102 core/views/meta_box_location.php:91
1268
  msgid "Other"
1269
  msgstr ""
1270
 
1271
- #: core/fields/radio.php:145
1272
  msgid "Enter your choices one per line"
1273
  msgstr ""
1274
 
1275
- #: core/fields/radio.php:147
1276
  msgid "Red"
1277
  msgstr ""
1278
 
1279
- #: core/fields/radio.php:148
1280
  msgid "Blue"
1281
  msgstr ""
1282
 
1283
- #: core/fields/radio.php:172
1284
  msgid "Add 'other' choice to allow for custom values"
1285
  msgstr ""
1286
 
1287
- #: core/fields/radio.php:184
1288
  msgid "Save 'other' values to the field's choices"
1289
  msgstr ""
1290
 
@@ -1471,11 +1471,11 @@ msgstr ""
1471
  msgid "Wysiwyg Editor"
1472
  msgstr ""
1473
 
1474
- #: core/fields/wysiwyg.php:202
1475
  msgid "Toolbar"
1476
  msgstr ""
1477
 
1478
- #: core/fields/wysiwyg.php:234
1479
  msgid "Show Media Upload Buttons?"
1480
  msgstr ""
1481
 
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2013-11-22 00:26:04+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
117
  msgid "No ACF groups selected"
118
  msgstr ""
119
 
120
+ #: core/api.php:1162
121
  msgid "Update"
122
  msgstr ""
123
 
124
+ #: core/api.php:1163
125
  msgid "Post updated"
126
  msgstr ""
127
 
417
  #: core/fields/page_link.php:159 core/fields/post_object.php:328
418
  #: core/fields/post_object.php:349 core/fields/select.php:224
419
  #: core/fields/select.php:243 core/fields/taxonomy.php:343
420
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:256
421
  #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
422
  msgid "No"
423
  msgstr ""
426
  #: core/fields/page_link.php:158 core/fields/post_object.php:327
427
  #: core/fields/post_object.php:348 core/fields/select.php:223
428
  #: core/fields/select.php:242 core/fields/taxonomy.php:342
429
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:255
430
  #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
431
  msgid "Yes"
432
  msgstr ""
433
 
434
+ #: core/controllers/field_group.php:645
435
  msgid "Front Page"
436
  msgstr ""
437
 
438
+ #: core/controllers/field_group.php:646
439
  msgid "Posts Page"
440
  msgstr ""
441
 
442
+ #: core/controllers/field_group.php:647
443
  msgid "Top Level Page (parent of 0)"
444
  msgstr ""
445
 
446
+ #: core/controllers/field_group.php:648
447
  msgid "Parent Page (has children)"
448
  msgstr ""
449
 
450
+ #: core/controllers/field_group.php:649
451
  msgid "Child Page (has parent)"
452
  msgstr ""
453
 
454
+ #: core/controllers/field_group.php:657
455
  msgid "Default Template"
456
  msgstr ""
457
 
458
+ #: core/controllers/field_group.php:734
459
  msgid "Publish"
460
  msgstr ""
461
 
462
+ #: core/controllers/field_group.php:735
463
  msgid "Pending Review"
464
  msgstr ""
465
 
466
+ #: core/controllers/field_group.php:736
467
  msgid "Draft"
468
  msgstr ""
469
 
470
+ #: core/controllers/field_group.php:737
471
  msgid "Future"
472
  msgstr ""
473
 
474
+ #: core/controllers/field_group.php:738
475
  msgid "Private"
476
  msgstr ""
477
 
478
+ #: core/controllers/field_group.php:739
479
  msgid "Revision"
480
  msgstr ""
481
 
482
+ #: core/controllers/field_group.php:740
483
  msgid "Trash"
484
  msgstr ""
485
 
486
+ #: core/controllers/field_group.php:753
487
  msgid "Super Admin"
488
  msgstr ""
489
 
490
+ #: core/controllers/field_group.php:768 core/controllers/field_group.php:789
491
+ #: core/controllers/field_group.php:796 core/fields/file.php:186
492
  #: core/fields/image.php:170 core/fields/page_link.php:109
493
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
494
  #: core/fields/relationship.php:595 core/fields/relationship.php:619
879
  msgid "Choice"
880
  msgstr ""
881
 
882
+ #: core/fields/checkbox.php:146 core/fields/radio.php:147
883
  #: core/fields/select.php:177
884
  msgid "Choices"
885
  msgstr ""
892
  msgid "For more control, you may specify both a value and label like this:"
893
  msgstr ""
894
 
895
+ #: core/fields/checkbox.php:149 core/fields/radio.php:153
896
  #: core/fields/select.php:180
897
  msgid "red : Red"
898
  msgstr ""
899
 
900
+ #: core/fields/checkbox.php:149 core/fields/radio.php:154
901
  #: core/fields/select.php:180
902
  msgid "blue : Blue"
903
  msgstr ""
904
 
905
  #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
906
  #: core/fields/email.php:106 core/fields/number.php:116
907
+ #: core/fields/radio.php:196 core/fields/select.php:197
908
  #: core/fields/text.php:116 core/fields/textarea.php:96
909
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:198
910
  msgid "Default Value"
911
  msgstr ""
912
 
915
  msgstr ""
916
 
917
  #: core/fields/checkbox.php:183 core/fields/message.php:20
918
+ #: core/fields/radio.php:212 core/fields/tab.php:20
919
  msgid "Layout"
920
  msgstr ""
921
 
922
+ #: core/fields/checkbox.php:194 core/fields/radio.php:223
923
  msgid "Vertical"
924
  msgstr ""
925
 
926
+ #: core/fields/checkbox.php:195 core/fields/radio.php:224
927
  msgid "Horizontal"
928
  msgstr ""
929
 
999
 
1000
  #: core/fields/email.php:107 core/fields/number.php:117
1001
  #: core/fields/text.php:117 core/fields/textarea.php:97
1002
+ #: core/fields/wysiwyg.php:199
1003
  msgid "Appears when creating a new post"
1004
  msgstr ""
1005
 
1264
  msgid "Radio Button"
1265
  msgstr ""
1266
 
1267
+ #: core/fields/radio.php:105 core/views/meta_box_location.php:91
1268
  msgid "Other"
1269
  msgstr ""
1270
 
1271
+ #: core/fields/radio.php:148
1272
  msgid "Enter your choices one per line"
1273
  msgstr ""
1274
 
1275
+ #: core/fields/radio.php:150
1276
  msgid "Red"
1277
  msgstr ""
1278
 
1279
+ #: core/fields/radio.php:151
1280
  msgid "Blue"
1281
  msgstr ""
1282
 
1283
+ #: core/fields/radio.php:175
1284
  msgid "Add 'other' choice to allow for custom values"
1285
  msgstr ""
1286
 
1287
+ #: core/fields/radio.php:187
1288
  msgid "Save 'other' values to the field's choices"
1289
  msgstr ""
1290
 
1471
  msgid "Wysiwyg Editor"
1472
  msgstr ""
1473
 
1474
+ #: core/fields/wysiwyg.php:213
1475
  msgid "Toolbar"
1476
  msgstr ""
1477
 
1478
+ #: core/fields/wysiwyg.php:245
1479
  msgid "Show Media Upload Buttons?"
1480
  msgstr ""
1481
 
readme.txt CHANGED
@@ -107,6 +107,19 @@ http://support.advancedcustomfields.com/
107
 
108
  == Changelog ==
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  = 4.3.0 =
111
  * Core: get_field can now be used within the functions.php file
112
  * Core: Added new Google maps field
107
 
108
  == Changelog ==
109
 
110
+ = 4.3.1 =
111
+ * API: Fixed bug with has_sub_field and have_rows functions causing complicated nested loops to produce incorrect results
112
+ * API: Fixed bug with get_fields function preventing values to be returned from options page and taxonomy terms
113
+ * Core: Fixed bug causing some SQL LIKE statements to not work correctly on windows servers
114
+ * Core: Removed __() wrappers from PHP export, as these did not work as expected
115
+ * Core: Fixed bug with get_pages() causing sort order issue in child page location rule
116
+ * Core: Added specific position to ACF menu item to reduce conflicts with 3rd party plugins
117
+ * JS: Fixed bug where conditional logic rules did not save when added using a '+' button above the last rule
118
+ * Radio field: Fixed bug where 'other' would be selected when no value exists
119
+ * WYSIWYG field: Added support for users with disabled visual editor setting
120
+ * JS: Improved validation for fields that are hidden by a tab
121
+ * Google maps field: Add refresh action when hidden / shown by a tab
122
+
123
  = 4.3.0 =
124
  * Core: get_field can now be used within the functions.php file
125
  * Core: Added new Google maps field