Advanced Custom Fields - Version 4.3.0

Version Description

  • Core: get_field can now be used within the functions.php file
  • Core: Added new Google maps field
  • Core: Added conditional logic support for sub fields - will also require an update to the repeater / flexible content field add-on to work
  • Core: Added required validation support for sub fields - will also require an update to the repeater / flexible content field add-on to work
  • API: Added new function have_rows()
  • API: Added new function the_row()
  • API: Fixed front end form upload issues when editing a user - http://support.advancedcustomfields.com/forums/topic/repeater-image-upload-failing/
  • API: Fixed front end form bug where the wrong post_id is being passed to JS - http://support.advancedcustomfields.com/forums/topic/attachments-parent-id/
  • Export: wrapped title and instructions in () function - http://support.advancedcustomfields.com/forums/topic/wrap-labels-and-descriptions-with--in-the-php-export-file/
  • Core: Filter out ACF fields from the native custom field dropdown - http://support.advancedcustomfields.com/forums/topic/meta-key-instead-of-name-on-add-new-custom-field-instead-of-name/ - http://support.advancedcustomfields.com/forums/topic/odd-sub-field-names-in-custom-fields/
  • Revisions: Improved save functionality to detect post change when custom fields are edited - http://support.advancedcustomfields.com/forums/topic/wordpress-3-6-revisions-custom-fields-no-longer-tracked/
  • Core: Add field group title for user edit screen - http://support.advancedcustomfields.com/forums/topic/can-you-add-a-title-or-hr-tag-when-using-acf-in-taxonomy-edit-screen/
  • Field group: Add 'toggle all' option to hide from screen - http://support.advancedcustomfields.com/forums/topic/hidecheck-all-single-checkbox-when-hiding-items-from-pagepost-edit-screen/
  • Taxonomy field: Add new filter for wp_list_categories args - http://support.advancedcustomfields.com/forums/topic/taxonomy-field-type-filter-to-only-show-parents/
  • Taxonomy field: Fixed JS bug causing attachment field groups to disappear due to incorrect AJAX location data - http://support.advancedcustomfields.com/forums/topic/taxonomy-checkboxes/
  • WYSIWYG field: Fixed JS bug where formatting is removed when drag/drop it's repeater row
  • Tab field: Corrected minor JS bugs with conditional logic - http://support.advancedcustomfields.com/forums/topic/tabs-logic-hide-issue/
  • Relationship field: Values now save correctly as an array of strings (for LIKE querying)
  • Post object field: Values now save correctly as an array of strings (for LIKE querying)
  • Image field: Added mime_type data to returned value
  • Field field: Added mime_type data to returned value
  • Core: Lots of minor improvements
Download this release

Release Info

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

Code changes from version 4.2.2 to 4.3.0

Files changed (50) hide show
  1. acf.php +255 -132
  2. core/actions/export.php +3 -0
  3. core/api.php +229 -158
  4. core/controllers/addons.php +2 -2
  5. core/controllers/everything_fields.php +27 -6
  6. core/controllers/export.php +5 -31
  7. core/controllers/field_group.php +20 -0
  8. core/controllers/field_groups.php +3 -2
  9. core/controllers/input.php +9 -465
  10. core/controllers/location.php +20 -56
  11. core/controllers/post.php +520 -0
  12. core/controllers/revisions.php +32 -0
  13. core/fields/_base.php +0 -2
  14. core/fields/checkbox.php +19 -10
  15. core/fields/date_picker/date_picker.php +28 -7
  16. core/fields/email.php +1 -1
  17. core/fields/file.php +1 -0
  18. core/fields/google-map.php +220 -0
  19. core/fields/image.php +1 -0
  20. core/fields/post_object.php +53 -8
  21. core/fields/relationship.php +44 -32
  22. core/fields/taxonomy.php +13 -11
  23. core/fields/true_false.php +1 -1
  24. core/fields/wysiwyg.php +16 -21
  25. core/views/meta_box_fields.php +0 -14
  26. core/views/meta_box_location.php +1 -1
  27. core/views/meta_box_options.php +1 -1
  28. css/acf.css +3 -6
  29. css/field-group.css +3 -3
  30. css/global.css +22 -6
  31. css/input.css +171 -21
  32. images/brand-hero-default.png +0 -0
  33. images/button_add.png +0 -0
  34. images/button_remove.png +0 -0
  35. images/sprite.png +0 -0
  36. images/sprite@2x.png +0 -0
  37. js/field-group.js +390 -258
  38. js/field-group.min.js +8 -1
  39. js/input.js +890 -199
  40. js/input.min.js +2 -1
  41. lang/acf-fa_IR.mo +0 -0
  42. lang/acf-fa_IR.po +591 -508
  43. lang/acf-fr_FR.mo +0 -0
  44. lang/acf-fr_FR.po +782 -663
  45. lang/acf-pt_BR.mo +0 -0
  46. lang/acf-pt_BR.po +1105 -972
  47. lang/acf-sv_SE.mo +0 -0
  48. lang/acf-sv_SE.po +481 -367
  49. lang/acf.pot +239 -221
  50. readme.txt +29 -3
acf.php CHANGED
@@ -3,57 +3,32 @@
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.2.2
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
10
  Copyright: Elliot Condon
11
  */
12
 
 
13
 
14
- // lite mode
15
- if( !defined('ACF_LITE') )
16
  {
17
- define( 'ACF_LITE', false );
18
- }
19
-
20
-
21
- // API
22
- include_once('core/api.php');
23
-
24
-
25
- // controllers
26
- include_once('core/controllers/field_groups.php');
27
- include_once('core/controllers/field_group.php');
28
- include_once('core/controllers/input.php');
29
- include_once('core/controllers/location.php');
30
-
31
- if( is_admin() )
32
- {
33
- if( !ACF_LITE )
34
- {
35
- include_once('core/controllers/export.php');
36
- include_once('core/controllers/addons.php');
37
- include_once('core/controllers/third_party.php');
38
- include_once('core/controllers/upgrade.php');
39
- }
40
-
41
- include_once('core/controllers/revisions.php');
42
- include_once('core/controllers/everything_fields.php');
43
- }
44
-
45
-
46
- class Acf
47
- {
48
  var $settings;
49
 
50
-
51
  /*
52
  * Constructor
53
  *
54
- * @description:
55
- * @since 1.0.0
56
- * @created: 23/06/12
 
 
 
 
 
57
  */
58
 
59
  function __construct()
@@ -65,11 +40,11 @@ class Acf
65
 
66
  // vars
67
  $this->settings = array(
68
- 'path' => apply_filters('acf/helpers/get_path', __FILE__),
69
- 'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
70
- 'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
71
- 'version' => '4.2.2',
72
- 'upgrade_version' => '3.4.1',
73
  );
74
 
75
 
@@ -79,12 +54,12 @@ class Acf
79
 
80
  // actions
81
  add_action('init', array($this, 'init'), 1);
82
- add_action('acf/save_post', array($this, 'save_post'), 10);
83
-
84
  add_action('acf/pre_save_post', array($this, 'save_post_lock'), 0);
85
  add_action('acf/pre_save_post', array($this, 'save_post_unlock'), 999);
86
  add_action('acf/save_post', array($this, 'save_post_lock'), 0);
 
87
  add_action('acf/save_post', array($this, 'save_post_unlock'), 999);
 
88
 
89
 
90
  // filters
@@ -93,30 +68,28 @@ class Acf
93
  add_filter('acf/get_post_types', array($this, 'get_post_types'), 1, 3);
94
  add_filter('acf/get_taxonomies_for_select', array($this, 'get_taxonomies_for_select'), 1, 2);
95
  add_filter('acf/get_image_sizes', array($this, 'get_image_sizes'), 1, 1);
96
- add_action('acf/create_fields', array($this, 'create_fields'), 1, 2);
97
- add_action('acf/get_post_id', array($this, 'get_post_id'), 1, 1);
98
 
99
 
100
- // admin only
101
- if( is_admin() && !ACF_LITE )
102
- {
103
- add_action('admin_menu', array($this,'admin_menu'));
104
- add_action('admin_head', array($this,'admin_head'));
105
- add_filter('post_updated_messages', array($this, 'post_updated_messages'));
106
- }
107
-
108
 
109
- return true;
110
  }
111
 
112
 
113
  /*
114
- * helpers_get_path
115
- *
116
- * @description: calculates the path (works for plugin / theme folders)
117
- * @since: 3.6
118
- * @created: 30/01/13
119
- */
 
 
 
 
 
120
 
121
  function helpers_get_path( $file )
122
  {
@@ -124,14 +97,18 @@ class Acf
124
  }
125
 
126
 
127
-
128
  /*
129
- * helpers_get_dir
130
- *
131
- * @description: calculates the directory (works for plugin / theme folders)
132
- * @since: 3.6
133
- * @created: 30/01/13
134
- */
 
 
 
 
 
135
 
136
  function helpers_get_dir( $file )
137
  {
@@ -230,26 +207,31 @@ class Acf
230
  /*
231
  * get_info
232
  *
233
- * @description: helper to get variable from settings array
234
- * @since: 3.6
235
- * @created: 24/01/13
 
 
 
 
 
236
  */
237
 
238
- function get_info( $info )
239
  {
240
  // vars
241
  $return = false;
242
 
243
 
244
  // specific
245
- if( isset($this->settings[ $info ]) )
246
  {
247
- $return = $this->settings[ $info ];
248
  }
249
 
250
 
251
  // all
252
- if( $info == 'all' )
253
  {
254
  $return = $this->settings;
255
  }
@@ -327,11 +309,123 @@ class Acf
327
 
328
 
329
  /*
330
- * Init
331
  *
332
- * @description:
333
- * @since 1.0.0
334
- * @created: 23/06/12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  */
336
 
337
  function init()
@@ -370,35 +464,52 @@ class Acf
370
  // register acf scripts
371
  $scripts = array();
372
  $scripts[] = array(
373
- 'handle' => 'acf-field-group',
374
- 'src' => $this->settings['dir'] . 'js/field-group.min.js',
375
- 'deps' => array('jquery')
 
 
 
 
 
376
  );
377
  $scripts[] = array(
378
- 'handle' => 'acf-input',
379
- 'src' => $this->settings['dir'] . 'js/input.min.js',
380
- 'deps' => array('jquery')
381
  );
 
 
 
 
382
  $scripts[] = array(
383
- 'handle' => 'acf-datepicker',
384
- 'src' => $this->settings['dir'] . 'core/fields/date_picker/jquery.ui.datepicker.js',
385
- 'deps' => array('jquery', 'acf-input')
 
386
  );
 
387
 
388
 
389
  foreach( $scripts as $script )
390
  {
391
- wp_register_script( $script['handle'], $script['src'], $script['deps'], $this->settings['version'] );
 
 
 
 
 
 
392
  }
393
 
394
 
395
  // register acf styles
396
  $styles = array(
397
- 'acf' => $this->settings['dir'] . 'css/acf.css',
398
- 'acf-field-group' => $this->settings['dir'] . 'css/field-group.css',
399
- 'acf-global' => $this->settings['dir'] . 'css/global.css',
400
- 'acf-input' => $this->settings['dir'] . 'css/input.css',
401
- 'acf-datepicker' => $this->settings['dir'] . 'core/fields/date_picker/style.date_picker.css',
402
  );
403
 
404
  foreach( $styles as $k => $v )
@@ -407,42 +518,20 @@ class Acf
407
  }
408
 
409
 
410
- // register fields
411
- include_once('core/fields/_functions.php');
412
- include_once('core/fields/_base.php');
413
-
414
- include_once('core/fields/text.php');
415
- include_once('core/fields/textarea.php');
416
- include_once('core/fields/number.php');
417
- include_once('core/fields/email.php');
418
- include_once('core/fields/password.php');
419
-
420
- include_once('core/fields/wysiwyg.php');
421
- include_once('core/fields/image.php');
422
- include_once('core/fields/file.php');
423
-
424
- include_once('core/fields/select.php');
425
- include_once('core/fields/checkbox.php');
426
- include_once('core/fields/radio.php');
427
- include_once('core/fields/true_false.php');
428
-
429
- include_once('core/fields/page_link.php');
430
- include_once('core/fields/post_object.php');
431
- include_once('core/fields/relationship.php');
432
- include_once('core/fields/taxonomy.php');
433
- include_once('core/fields/user.php');
434
-
435
- include_once('core/fields/date_picker/date_picker.php');
436
- include_once('core/fields/color_picker.php');
437
-
438
- include_once('core/fields/message.php');
439
- include_once('core/fields/tab.php');
440
-
441
-
442
- // register 3rd party fields
443
- do_action('acf/register_fields');
444
 
445
 
 
 
 
 
 
 
 
446
  }
447
 
448
 
@@ -504,7 +593,7 @@ class Acf
504
  {
505
  ?>
506
  <style type="text/css">
507
- #adminmenu #toplevel_page_edit-post_type-acf a[href="edit.php?post_type=acf&page=acf-upgrade"]{ display:none; }
508
  #adminmenu #toplevel_page_edit-post_type-acf .wp-menu-image { background-position: 1px -33px; }
509
  #adminmenu #toplevel_page_edit-post_type-acf:hover .wp-menu-image,
510
  #adminmenu #toplevel_page_edit-post_type-acf.wp-menu-open .wp-menu-image { background-position: 1px -1px; }
@@ -687,7 +776,7 @@ class Acf
687
  echo '</p>';
688
 
689
  $field['name'] = 'fields[' . $field['key'] . ']';
690
- do_action('acf/create_field', $field);
691
 
692
  echo '</div>';
693
 
@@ -780,6 +869,40 @@ class Acf
780
 
781
  }
782
 
783
- $acf = new Acf();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
 
785
  ?>
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
10
  Copyright: Elliot Condon
11
  */
12
 
13
+ if( !class_exists('acf') ):
14
 
15
+ class acf
 
16
  {
17
+ // vars
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  var $settings;
19
 
20
+
21
  /*
22
  * Constructor
23
  *
24
+ * This function will construct all the neccessary actions, filters and functions for the ACF plugin to work
25
+ *
26
+ * @type function
27
+ * @date 23/06/12
28
+ * @since 1.0.0
29
+ *
30
+ * @param N/A
31
+ * @return N/A
32
  */
33
 
34
  function __construct()
40
 
41
  // vars
42
  $this->settings = array(
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
 
50
 
54
 
55
  // actions
56
  add_action('init', array($this, 'init'), 1);
 
 
57
  add_action('acf/pre_save_post', array($this, 'save_post_lock'), 0);
58
  add_action('acf/pre_save_post', array($this, 'save_post_unlock'), 999);
59
  add_action('acf/save_post', array($this, 'save_post_lock'), 0);
60
+ add_action('acf/save_post', array($this, 'save_post'), 10);
61
  add_action('acf/save_post', array($this, 'save_post_unlock'), 999);
62
+ add_action('acf/create_fields', array($this, 'create_fields'), 1, 2);
63
 
64
 
65
  // filters
68
  add_filter('acf/get_post_types', array($this, 'get_post_types'), 1, 3);
69
  add_filter('acf/get_taxonomies_for_select', array($this, 'get_taxonomies_for_select'), 1, 2);
70
  add_filter('acf/get_image_sizes', array($this, 'get_image_sizes'), 1, 1);
71
+ add_filter('acf/get_post_id', array($this, 'get_post_id'), 1, 1);
 
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
  }
79
 
80
 
81
  /*
82
+ * helpers_get_path
83
+ *
84
+ * This function will calculate the path to a file
85
+ *
86
+ * @type function
87
+ * @date 30/01/13
88
+ * @since 3.6.0
89
+ *
90
+ * @param $file (file) a reference to the file
91
+ * @return (string)
92
+ */
93
 
94
  function helpers_get_path( $file )
95
  {
97
  }
98
 
99
 
 
100
  /*
101
+ * helpers_get_dir
102
+ *
103
+ * This function will calculate the directory (URL) to a file
104
+ *
105
+ * @type function
106
+ * @date 30/01/13
107
+ * @since 3.6.0
108
+ *
109
+ * @param $file (file) a reference to the file
110
+ * @return (string)
111
+ */
112
 
113
  function helpers_get_dir( $file )
114
  {
207
  /*
208
  * get_info
209
  *
210
+ * This function will return a setting from the settings array
211
+ *
212
+ * @type function
213
+ * @date 24/01/13
214
+ * @since 3.6.0
215
+ *
216
+ * @param $i (string) the setting to get
217
+ * @return (mixed)
218
  */
219
 
220
+ function get_info( $i )
221
  {
222
  // vars
223
  $return = false;
224
 
225
 
226
  // specific
227
+ if( isset($this->settings[ $i ]) )
228
  {
229
+ $return = $this->settings[ $i ];
230
  }
231
 
232
 
233
  // all
234
+ if( $i == 'all' )
235
  {
236
  $return = $this->settings;
237
  }
309
 
310
 
311
  /*
312
+ * include_before_theme
313
  *
314
+ * This function will include core files before the theme's functions.php file has been excecuted.
315
+ *
316
+ * @type action (plugins_loaded)
317
+ * @date 3/09/13
318
+ * @since 4.3.0
319
+ *
320
+ * @param N/A
321
+ * @return N/A
322
+ */
323
+
324
+ function include_before_theme()
325
+ {
326
+ // incudes
327
+ include_once('core/api.php');
328
+
329
+ include_once('core/controllers/input.php');
330
+ include_once('core/controllers/location.php');
331
+ include_once('core/controllers/field_group.php');
332
+
333
+
334
+ // admin only includes
335
+ if( is_admin() )
336
+ {
337
+ include_once('core/controllers/post.php');
338
+ include_once('core/controllers/revisions.php');
339
+ include_once('core/controllers/everything_fields.php');
340
+ include_once('core/controllers/field_groups.php');
341
+ }
342
+
343
+
344
+ // register fields
345
+ include_once('core/fields/_functions.php');
346
+ include_once('core/fields/_base.php');
347
+
348
+ include_once('core/fields/text.php');
349
+ include_once('core/fields/textarea.php');
350
+ include_once('core/fields/number.php');
351
+ include_once('core/fields/email.php');
352
+ include_once('core/fields/password.php');
353
+
354
+ include_once('core/fields/wysiwyg.php');
355
+ include_once('core/fields/image.php');
356
+ include_once('core/fields/file.php');
357
+
358
+ include_once('core/fields/select.php');
359
+ include_once('core/fields/checkbox.php');
360
+ include_once('core/fields/radio.php');
361
+ include_once('core/fields/true_false.php');
362
+
363
+ include_once('core/fields/page_link.php');
364
+ include_once('core/fields/post_object.php');
365
+ include_once('core/fields/relationship.php');
366
+ include_once('core/fields/taxonomy.php');
367
+ include_once('core/fields/user.php');
368
+
369
+ include_once('core/fields/google-map.php');
370
+ include_once('core/fields/date_picker/date_picker.php');
371
+ include_once('core/fields/color_picker.php');
372
+
373
+ include_once('core/fields/message.php');
374
+ include_once('core/fields/tab.php');
375
+
376
+ }
377
+
378
+
379
+ /*
380
+ * include_after_theme
381
+ *
382
+ * This function will include core files after the theme's functions.php file has been excecuted.
383
+ *
384
+ * @type action (after_setup_theme)
385
+ * @date 3/09/13
386
+ * @since 4.3.0
387
+ *
388
+ * @param N/A
389
+ * @return N/A
390
+ */
391
+
392
+ function include_after_theme()
393
+ {
394
+ // include 3rd party fields
395
+ do_action('acf/register_fields');
396
+
397
+
398
+ // bail early if user has defined LITE_MODE as true
399
+ if( defined('ACF_LITE') && ACF_LITE )
400
+ {
401
+ return;
402
+ }
403
+
404
+
405
+ // admin only includes
406
+ if( is_admin() )
407
+ {
408
+ include_once('core/controllers/export.php');
409
+ include_once('core/controllers/addons.php');
410
+ include_once('core/controllers/third_party.php');
411
+ include_once('core/controllers/upgrade.php');
412
+ }
413
+
414
+ }
415
+
416
+
417
+ /*
418
+ * init
419
+ *
420
+ * This function is called during the 'init' action and will do things such as:
421
+ * create post_type, register scripts, add actions / filters
422
+ *
423
+ * @type action (init)
424
+ * @date 23/06/12
425
+ * @since 1.0.0
426
+ *
427
+ * @param N/A
428
+ * @return N/A
429
  */
430
 
431
  function init()
464
  // register acf scripts
465
  $scripts = array();
466
  $scripts[] = array(
467
+ 'handle' => 'acf-field-group',
468
+ 'src' => $this->settings['dir'] . 'js/field-group.min.js',
469
+ 'deps' => array('jquery')
470
+ );
471
+ $scripts[] = array(
472
+ 'handle' => 'acf-input',
473
+ 'src' => $this->settings['dir'] . 'js/input.min.js',
474
+ 'deps' => array('jquery')
475
  );
476
  $scripts[] = array(
477
+ 'handle' => 'acf-datepicker',
478
+ 'src' => $this->settings['dir'] . 'core/fields/date_picker/jquery.ui.datepicker.js',
479
+ 'deps' => array('jquery', 'acf-input')
480
  );
481
+ /*
482
+
483
+ this script is now lazy loaded via JS
484
+
485
  $scripts[] = array(
486
+ 'handle' => 'acf-googlemaps',
487
+ 'src' => 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places',
488
+ 'deps' => array('jquery'),
489
+ 'in_footer' => true
490
  );
491
+ */
492
 
493
 
494
  foreach( $scripts as $script )
495
  {
496
+ // in footer?
497
+ if( !isset($script['in_footer']) )
498
+ {
499
+ $script['in_footer'] = false;
500
+ }
501
+
502
+ wp_register_script( $script['handle'], $script['src'], $script['deps'], $this->settings['version'], $script['in_footer'] );
503
  }
504
 
505
 
506
  // register acf styles
507
  $styles = array(
508
+ 'acf' => $this->settings['dir'] . 'css/acf.css',
509
+ 'acf-field-group' => $this->settings['dir'] . 'css/field-group.css',
510
+ 'acf-global' => $this->settings['dir'] . 'css/global.css',
511
+ 'acf-input' => $this->settings['dir'] . 'css/input.css',
512
+ 'acf-datepicker' => $this->settings['dir'] . 'core/fields/date_picker/style.date_picker.css',
513
  );
514
 
515
  foreach( $styles as $k => $v )
518
  }
519
 
520
 
521
+ // bail early if user has defined LITE_MODE as true
522
+ if( defined('ACF_LITE') && ACF_LITE )
523
+ {
524
+ return;
525
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
 
527
 
528
+ // admin only
529
+ if( is_admin() )
530
+ {
531
+ add_action('admin_menu', array($this,'admin_menu'));
532
+ add_action('admin_head', array($this,'admin_head'));
533
+ add_filter('post_updated_messages', array($this, 'post_updated_messages'));
534
+ }
535
  }
536
 
537
 
593
  {
594
  ?>
595
  <style type="text/css">
596
+ #adminmenu #toplevel_page_edit-post_type-acf a[href="edit.php?post_type=acf&page=acf-upgrade"]{ display: none; }
597
  #adminmenu #toplevel_page_edit-post_type-acf .wp-menu-image { background-position: 1px -33px; }
598
  #adminmenu #toplevel_page_edit-post_type-acf:hover .wp-menu-image,
599
  #adminmenu #toplevel_page_edit-post_type-acf.wp-menu-open .wp-menu-image { background-position: 1px -1px; }
776
  echo '</p>';
777
 
778
  $field['name'] = 'fields[' . $field['key'] . ']';
779
+ do_action('acf/create_field', $field, $post_id);
780
 
781
  echo '</div>';
782
 
869
 
870
  }
871
 
872
+
873
+ /*
874
+ * acf
875
+ *
876
+ * The main function responsible for returning the one true acf Instance to functions everywhere.
877
+ * Use this function like you would a global variable, except without needing to declare the global.
878
+ *
879
+ * Example: <?php $acf = acf(); ?>
880
+ *
881
+ * @type function
882
+ * @date 4/09/13
883
+ * @since 4.3.0
884
+ *
885
+ * @param N/A
886
+ * @return (object)
887
+ */
888
+
889
+ function acf()
890
+ {
891
+ global $acf;
892
+
893
+ if( !isset($acf) )
894
+ {
895
+ $acf = new acf();
896
+ }
897
+
898
+ return $acf;
899
+ }
900
+
901
+
902
+ // initialize
903
+ acf();
904
+
905
+
906
+ endif; // class_exists check
907
 
908
  ?>
core/actions/export.php CHANGED
@@ -8,6 +8,9 @@
8
  * @created: 25/01/13
9
  */
10
 
 
 
 
11
 
12
  // vars
13
  $defaults = array(
8
  * @created: 25/01/13
9
  */
10
 
11
+ // Exit if accessed directly
12
+ if ( !defined( 'ABSPATH' ) ) exit;
13
+
14
 
15
  // vars
16
  $defaults = array(
core/api.php CHANGED
@@ -1,69 +1,5 @@
1
  <?php
2
 
3
- // vars
4
- $GLOBALS['acf_field'] = array();
5
-
6
-
7
- /*
8
- * acf_filter_post_id()
9
- *
10
- * A helper function to filter the post_id variable.
11
- *
12
- * @type function
13
- * @since 3.6
14
- * @date 29/01/13
15
- *
16
- * @param mixed $post_id
17
- *
18
- * @return mixed $post_id
19
- */
20
-
21
- function acf_filter_post_id( $post_id )
22
- {
23
- // set post_id to global
24
- if( !$post_id )
25
- {
26
- global $post;
27
-
28
- if( $post )
29
- {
30
- $post_id = $post->ID;
31
- }
32
- }
33
-
34
-
35
- // allow for option == options
36
- if( $post_id == "option" )
37
- {
38
- $post_id = "options";
39
- }
40
-
41
-
42
- /*
43
- * Override for preview
44
- *
45
- * If the $_GET['preview_id'] is set, then the user wants to see the preview data.
46
- * There is also the case of previewing a page with post_id = 1, but using get_field
47
- * to load data from another post_id.
48
- * In this case, we need to make sure that the autosave revision is actually related
49
- * to the $post_id variable. If they match, then the autosave data will be used, otherwise,
50
- * the user wants to load data from a completely different post_id
51
- */
52
-
53
- if( isset($_GET['preview_id']) )
54
- {
55
- $autosave = wp_get_post_autosave( $_GET['preview_id'] );
56
- if( $autosave->post_parent == $post_id )
57
- {
58
- $post_id = $autosave->ID;
59
- }
60
- }
61
-
62
-
63
- // return
64
- return $post_id;
65
- }
66
-
67
 
68
  /*
69
  * get_field_reference()
@@ -394,25 +330,30 @@ function the_field( $field_name, $post_id = false )
394
 
395
 
396
  /*
397
- * has_sub_field()
398
  *
399
- * This function is used inside a while loop to return either true or false (loop again or stop).
400
- * When using a repeater or flexible content field, it will loop through the rows until
401
- * there are none left or a break is detected
402
  *
403
  * @type function
404
- * @since 1.0.3
405
- * @date 29/01/13
406
  *
407
- * @param string $field_name: the name of the field - 'sub_heading'
408
- * @param mixed $post_id: the post_id of which the value is saved against
409
- *
410
- * @return bool
411
  */
412
 
413
- function has_sub_field( $field_name, $post_id = false )
414
  {
415
-
 
 
 
 
 
 
 
 
416
  // filter post_id
417
  $post_id = apply_filters('acf/get_post_id', $post_id );
418
 
@@ -420,33 +361,56 @@ function has_sub_field( $field_name, $post_id = false )
420
  // empty?
421
  if( empty($GLOBALS['acf_field']) )
422
  {
423
- // vars
424
- $f = get_field_object( $field_name, $post_id );
425
- $v = $f['value'];
426
- unset( $f['value'] );
427
 
428
 
429
- $GLOBALS['acf_field'][] = array(
430
- 'name' => $field_name,
431
- 'value' => $v,
432
- 'field' => $f,
433
- 'row' => -1,
434
- 'post_id' => $post_id,
435
- );
436
  }
437
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
 
439
- // vars
440
- $depth = count( $GLOBALS['acf_field'] ) - 1;
441
- $name = $GLOBALS['acf_field'][$depth]['name'];
442
- $value = $GLOBALS['acf_field'][$depth]['value'];
443
- $field = $GLOBALS['acf_field'][$depth]['field'];
444
- $row = $GLOBALS['acf_field'][$depth]['row'];
445
- $id = $GLOBALS['acf_field'][$depth]['post_id'];
446
 
447
 
448
- // if ID has changed, this is a new repeater / flexible field!
449
- if( $post_id != $id )
450
  {
451
  // vars
452
  $f = get_field_object( $field_name, $post_id );
@@ -454,73 +418,162 @@ function has_sub_field( $field_name, $post_id = false )
454
  unset( $f['value'] );
455
 
456
 
 
457
  $GLOBALS['acf_field'][] = array(
458
- 'name' => $field_name,
459
- 'value' => $v,
460
- 'field' => $f,
461
- 'row' => -1,
462
- 'post_id' => $post_id,
463
  );
464
 
465
- return has_sub_field($field_name, $post_id);
466
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
467
 
 
 
 
 
 
 
468
 
469
- // does the given $field_name match the current field?
470
- if( $field_name != $name )
471
  {
472
- // is this a "new" while loop refering to a sub field?
473
- if( isset($value[ $row ][ $field_name ]) )
474
- {
475
- $GLOBALS['acf_field'][] = array(
476
- 'name' => $field_name,
477
- 'value' => $value[ $row ][ $field_name ],
478
- 'field' => acf_get_child_field_from_parent_field( $field_name, $field ),
479
- 'row' => -1,
480
- 'post_id' => $post_id,
481
- );
482
- }
483
- elseif( isset($GLOBALS['acf_field'][$depth-1]) && $GLOBALS['acf_field'][$depth-1]['name'] == $field_name )
484
- {
485
- // if someone used break; We should see if the parent value has this field_name as a value.
486
- unset( $GLOBALS['acf_field'][$depth] );
487
- $GLOBALS['acf_field'] = array_values($GLOBALS['acf_field']);
488
- }
489
- else
490
- {
491
- // this was a break; (probably to get the first row only). Clear the repeater
492
- $GLOBALS['acf_field'] = array();
493
- return has_sub_field($field_name, $post_id);
494
- }
495
-
496
  }
497
 
498
 
499
- // update vars
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  $depth = count( $GLOBALS['acf_field'] ) - 1;
501
- $value = $GLOBALS['acf_field'][$depth]['value'];
502
- $field = $GLOBALS['acf_field'][$depth]['field'];
503
- $row = $GLOBALS['acf_field'][$depth]['row'];
 
 
 
 
 
 
504
 
505
-
506
- // increase row number
507
- $GLOBALS['acf_field'][$depth]['row']++;
508
- $row++;
509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
 
511
- if( isset($value[$row]) )
 
512
  {
513
- // next row exists
514
- return true;
 
 
 
 
 
 
 
 
 
 
 
 
515
  }
516
 
517
 
518
- // no next row! Unset this array and return false to stop while loop
519
- unset( $GLOBALS['acf_field'][$depth] );
520
- $GLOBALS['acf_field'] = array_values($GLOBALS['acf_field']);
 
 
521
 
522
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
 
 
 
 
 
 
 
 
 
 
 
524
  }
525
 
526
 
@@ -559,9 +612,8 @@ function has_sub_fields( $field_name, $post_id = false )
559
  * @return mixed $value
560
  */
561
 
562
- function get_sub_field( $field_name )
563
- {
564
-
565
  // no field?
566
  if( empty($GLOBALS['acf_field']) )
567
  {
@@ -570,20 +622,18 @@ function get_sub_field( $field_name )
570
 
571
 
572
  // vars
573
- $depth = count( $GLOBALS['acf_field'] ) - 1;
574
- $value = $GLOBALS['acf_field'][$depth]['value'];
575
- $field = $GLOBALS['acf_field'][$depth]['field'];
576
- $row = $GLOBALS['acf_field'][$depth]['row'];
577
-
578
-
579
- // no value at i
580
- if( !isset($value[ $row ][ $field_name ]) )
581
  {
582
- return false;
583
  }
584
-
585
 
586
- return $value[ $row ][ $field_name ];
 
 
587
  }
588
 
589
 
@@ -1162,6 +1212,9 @@ function acf_form( $options = array() )
1162
  <?php endif; ?>
1163
 
1164
  <div style="display:none">
 
 
 
1165
  <input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'input' ); ?>" />
1166
  <input type="hidden" name="post_id" value="<?php echo $options['post_id']; ?>" />
1167
  <input type="hidden" name="return" value="<?php echo $options['return']; ?>" />
@@ -1459,5 +1512,23 @@ function the_flexible_field($field_name, $post_id = false)
1459
  return has_sub_field($field_name, $post_id);
1460
  }
1461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1462
 
1463
  ?>
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  /*
5
  * get_field_reference()
330
 
331
 
332
  /*
333
+ * have_rows
334
  *
335
+ * This function will instantiate a global variable containing the rows of a repeater or flexible content field,
336
+ * afterwhich, it will determin if another row exists to loop through
 
337
  *
338
  * @type function
339
+ * @date 2/09/13
340
+ * @since 4.3.0
341
  *
342
+ * @param $field_name (string) the name of the field - 'images'
343
+ * @return $post_id (mixed) the post_id of which the value is saved against
 
 
344
  */
345
 
346
+ function have_rows( $field_name, $post_id = false )
347
  {
348
+
349
+ // vars
350
+ $depth = 0;
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
358
  $post_id = apply_filters('acf/get_post_id', $post_id );
359
 
361
  // empty?
362
  if( empty($GLOBALS['acf_field']) )
363
  {
364
+ // reset
365
+ reset_rows( true );
 
 
366
 
367
 
368
+ // create a new loop
369
+ $new_parent_loop = true;
 
 
 
 
 
370
  }
371
+ else
372
+ {
373
+ // vars
374
+ $row = end( $GLOBALS['acf_field'] );
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
+ }
 
 
 
 
411
 
412
 
413
+ if( $new_parent_loop )
 
414
  {
415
  // vars
416
  $f = get_field_object( $field_name, $post_id );
418
  unset( $f['value'] );
419
 
420
 
421
+ // add row
422
  $GLOBALS['acf_field'][] = array(
423
+ 'name' => $field_name,
424
+ 'value' => $v,
425
+ 'field' => $f,
426
+ 'i' => -1,
427
+ 'post_id' => $post_id,
428
  );
429
 
 
430
  }
431
+ elseif( $new_child_loop )
432
+ {
433
+ // vars
434
+ $f = acf_get_child_field_from_parent_field( $field_name, $row['field'] );
435
+ $v = $row['value'][ $row['i'] ][ $field_name ];
436
+
437
+ $GLOBALS['acf_field'][] = array(
438
+ 'name' => $field_name,
439
+ 'value' => $v,
440
+ 'field' => $f,
441
+ 'i' => -1,
442
+ 'post_id' => $post_id,
443
+ );
444
 
445
+ }
446
+
447
+
448
+ // update vars
449
+ $row = end( $GLOBALS['acf_field'] );
450
+
451
 
452
+ if( is_array($row['value']) && array_key_exists( $row['i']+1, $row['value'] ) )
 
453
  {
454
+ // next row exists
455
+ return true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
456
  }
457
 
458
 
459
+ // no newxt row!
460
+ reset_rows();
461
+
462
+
463
+ // return
464
+ return false;
465
+
466
+ }
467
+
468
+
469
+ /*
470
+ * the_row
471
+ *
472
+ * This function will progress the global repeater or flexible content value 1 row
473
+ *
474
+ * @type function
475
+ * @date 2/09/13
476
+ * @since 4.3.0
477
+ *
478
+ * @param N/A
479
+ * @return N/A
480
+ */
481
+
482
+ function the_row() {
483
+
484
+ // vars
485
  $depth = count( $GLOBALS['acf_field'] ) - 1;
486
+
487
+
488
+ // increase row
489
+ $GLOBALS['acf_field'][ $depth ]['i']++;
490
+
491
+
492
+ // get row
493
+ $value = $GLOBALS['acf_field'][ $depth ]['value'];
494
+ $i = $GLOBALS['acf_field'][ $depth ]['i'];
495
 
 
 
 
 
496
 
497
+ // return
498
+ return $value[ $i ];
499
+ }
500
+
501
+
502
+ /*
503
+ * reset_rows
504
+ *
505
+ * This function will find the current loop and unset it from the global array.
506
+ * To bo used when loop finishes or a break is used
507
+ *
508
+ * @type function
509
+ * @date 26/10/13
510
+ * @since 5.0.0
511
+ *
512
+ * @param $post_id (int)
513
+ * @return $post_id (int)
514
+ */
515
+
516
+ function reset_rows( $hard_reset = false ) {
517
 
518
+ // completely destroy?
519
+ if( $hard_reset )
520
  {
521
+ $GLOBALS['acf_field'] = array();
522
+ }
523
+ else
524
+ {
525
+ // vars
526
+ $depth = count( $GLOBALS['acf_field'] ) - 1;
527
+
528
+
529
+ // remove
530
+ unset( $GLOBALS['acf_field'][$depth] );
531
+
532
+
533
+ // refresh index
534
+ $GLOBALS['acf_field'] = array_values($GLOBALS['acf_field']);
535
  }
536
 
537
 
538
+ // return
539
+ return true;
540
+
541
+
542
+ }
543
 
544
+
545
+ /*
546
+ * has_sub_field()
547
+ *
548
+ * This function is used inside a while loop to return either true or false (loop again or stop).
549
+ * When using a repeater or flexible content field, it will loop through the rows until
550
+ * there are none left or a break is detected
551
+ *
552
+ * @type function
553
+ * @since 1.0.3
554
+ * @date 29/01/13
555
+ *
556
+ * @param string $field_name: the name of the field - 'sub_heading'
557
+ * @param mixed $post_id: the post_id of which the value is saved against
558
+ *
559
+ * @return bool
560
+ */
561
+
562
+ function has_sub_field( $field_name, $post_id = false )
563
+ {
564
+ // vars
565
+ $r = have_rows( $field_name, $post_id );
566
 
567
+
568
+ // if has rows, progress through 1 row for the while loop to work
569
+ if( $r )
570
+ {
571
+ the_row();
572
+ }
573
+
574
+
575
+ // return
576
+ return $r;
577
  }
578
 
579
 
612
  * @return mixed $value
613
  */
614
 
615
+ function get_sub_field( $field_name ) {
616
+
 
617
  // no field?
618
  if( empty($GLOBALS['acf_field']) )
619
  {
622
 
623
 
624
  // vars
625
+ $row = end( $GLOBALS['acf_field'] );
626
+
627
+
628
+ // return value
629
+ if( isset($row['value'][ $row['i'] ][ $field_name ]) )
 
 
 
630
  {
631
+ return $row['value'][ $row['i'] ][ $field_name ];
632
  }
 
633
 
634
+
635
+ // return false
636
+ return false;
637
  }
638
 
639
 
1212
  <?php endif; ?>
1213
 
1214
  <div style="display:none">
1215
+ <script type="text/javascript">
1216
+ acf.o.post_id = <?php echo is_numeric($options['post_id']) ? $options['post_id'] : '"' . $options['post_id'] . '"'; ?>;
1217
+ </script>
1218
  <input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'input' ); ?>" />
1219
  <input type="hidden" name="post_id" value="<?php echo $options['post_id']; ?>" />
1220
  <input type="hidden" name="return" value="<?php echo $options['return']; ?>" />
1512
  return has_sub_field($field_name, $post_id);
1513
  }
1514
 
1515
+ /*
1516
+ * acf_filter_post_id()
1517
+ *
1518
+ * This is a deprecated function which is now run through a filter
1519
+ *
1520
+ * @type function
1521
+ * @since 3.6
1522
+ * @date 29/01/13
1523
+ *
1524
+ * @param mixed $post_id
1525
+ *
1526
+ * @return mixed $post_id
1527
+ */
1528
+
1529
+ function acf_filter_post_id( $post_id )
1530
+ {
1531
+ return apply_filters('acf/get_post_id', $post_id );
1532
+ }
1533
 
1534
  ?>
core/controllers/addons.php CHANGED
@@ -216,7 +216,7 @@ class acf_addons
216
  </div>
217
  <div class="footer">
218
  <?php if( $addon['active'] ): ?>
219
- <a class="button button-disabled"><span class="tick"></span><?php _e("Installed",'acf'); ?></a>
220
  <?php else: ?>
221
  <a target="_blank" href="<?php echo $addon['url']; ?>" class="button"><?php _e("Purchase & Install",'acf'); ?></a>
222
  <?php endif; ?>
@@ -237,7 +237,7 @@ class acf_addons
237
  </div>
238
  <div class="footer">
239
  <?php if( $addon['active'] ): ?>
240
- <a class="button button-disabled"><span class="tick"></span><?php _e("Installed",'acf'); ?></a>
241
  <?php else: ?>
242
  <a target="_blank" href="<?php echo $addon['url']; ?>" class="button"><?php _e("Download",'acf'); ?></a>
243
  <?php endif; ?>
216
  </div>
217
  <div class="footer">
218
  <?php if( $addon['active'] ): ?>
219
+ <a class="button button-disabled"><span class="acf-sprite-tick"></span><?php _e("Installed",'acf'); ?></a>
220
  <?php else: ?>
221
  <a target="_blank" href="<?php echo $addon['url']; ?>" class="button"><?php _e("Purchase & Install",'acf'); ?></a>
222
  <?php endif; ?>
237
  </div>
238
  <div class="footer">
239
  <?php if( $addon['active'] ): ?>
240
+ <a class="button button-disabled"><span class="acf-sprite-tick"></span><?php _e("Installed",'acf'); ?></a>
241
  <?php else: ?>
242
  <a target="_blank" href="<?php echo $addon['url']; ?>" class="button"><?php _e("Download",'acf'); ?></a>
243
  <?php endif; ?>
core/controllers/everything_fields.php CHANGED
@@ -69,11 +69,18 @@ class acf_everything_fields
69
  function attachment_fields_to_edit( $form_fields, $post )
70
  {
71
  // vars
 
72
  $post_id = $post->ID;
73
 
74
 
 
 
 
 
 
 
75
  // get field groups
76
- $filter = array( 'ef_media' => 'all' );
77
  $metabox_ids = array();
78
  $metabox_ids = apply_filters( 'acf/location/match_field_groups', $metabox_ids, $filter );
79
 
@@ -318,7 +325,7 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
318
  {
319
 
320
  $this->data['page_type'] = "media";
321
- $filter['ef_media'] = 'all';
322
 
323
  $this->data['page_action'] = "add";
324
  $this->data['option_name'] = "";
@@ -433,7 +440,7 @@ $(document).ready(function(){
433
  }
434
  else
435
  {
436
- echo "$('#edittag > table.form-table:last > tbody').append( html );";
437
  }
438
  }
439
  elseif($this->data['page_type'] == "media")
@@ -667,12 +674,26 @@ $(document).ready(function(){
667
  {
668
  continue;
669
  }
670
-
 
 
 
 
 
 
 
 
 
671
 
672
  // title
673
  if( $options['page_action'] == "edit" && $options['page_type'] == 'user' )
674
  {
675
- echo '<h3>' .$acf['title'] . '</h3><table class="form-table"><tbody>';
 
 
 
 
 
676
  }
677
 
678
 
@@ -680,7 +701,7 @@ $(document).ready(function(){
680
  if( $layout == 'tr' )
681
  {
682
  //nonce
683
- echo '<tr><td colspan="2"><input type="hidden" name="acf_nonce" value="' . wp_create_nonce( 'input' ) . '" /></td></tr>';
684
  }
685
  else
686
  {
69
  function attachment_fields_to_edit( $form_fields, $post )
70
  {
71
  // vars
72
+ $screen = get_current_screen();
73
  $post_id = $post->ID;
74
 
75
 
76
+ if( !empty($screen) )
77
+ {
78
+ return $form_fields;
79
+ }
80
+
81
+
82
  // get field groups
83
+ $filter = array( 'post_type' => 'attachment' );
84
  $metabox_ids = array();
85
  $metabox_ids = apply_filters( 'acf/location/match_field_groups', $metabox_ids, $filter );
86
 
325
  {
326
 
327
  $this->data['page_type'] = "media";
328
+ $filter['post_type'] = 'attachment';
329
 
330
  $this->data['page_action'] = "add";
331
  $this->data['option_name'] = "";
440
  }
441
  else
442
  {
443
+ echo "$('#edittag > table.form-table:first > tbody').append( html );";
444
  }
445
  }
446
  elseif($this->data['page_type'] == "media")
674
  {
675
  continue;
676
  }
677
+
678
+
679
+ // layout dictates heading
680
+ $title = true;
681
+
682
+ if( $acf['options']['layout'] == 'no_box' )
683
+ {
684
+ $title = false;
685
+ }
686
+
687
 
688
  // title
689
  if( $options['page_action'] == "edit" && $options['page_type'] == 'user' )
690
  {
691
+ if( $title )
692
+ {
693
+ echo '<h3>' .$acf['title'] . '</h3>';
694
+ }
695
+
696
+ echo '<table class="form-table"><tbody>';
697
  }
698
 
699
 
701
  if( $layout == 'tr' )
702
  {
703
  //nonce
704
+ echo '<tr style="display:none;"><td colspan="2"><input type="hidden" name="acf_nonce" value="' . wp_create_nonce( 'input' ) . '" /></td></tr>';
705
  }
706
  else
707
  {
core/controllers/export.php CHANGED
@@ -349,37 +349,6 @@ define( 'ACF_LITE', true );
349
  if( $acfs )
350
  {
351
  ?>
352
- <?php _e("/**
353
- * Install Add-ons
354
- *
355
- * The following code will include all 4 premium Add-Ons in your theme.
356
- * Please do not attempt to include a file which does not exist. This will produce an error.
357
- *
358
- * The following code assumes you have a folder 'add-ons' inside your theme.
359
- *
360
- * IMPORTANT
361
- * Add-ons may be included in a premium theme/plugin as outlined in the terms and conditions.
362
- * For more information, please read:
363
- * - http://www.advancedcustomfields.com/terms-conditions/
364
- * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/
365
- */",'acf'); ?>
366
-
367
-
368
- // <?php _e("Add-ons",'acf'); ?>
369
- // include_once('add-ons/acf-repeater/acf-repeater.php');
370
- // include_once('add-ons/acf-gallery/acf-gallery.php');
371
- // include_once('add-ons/acf-flexible-content/acf-flexible-content.php');
372
- // include_once( 'add-ons/acf-options-page/acf-options-page.php' );
373
-
374
-
375
- <?php _e("/**
376
- * Register Field Groups
377
- *
378
- * The register_field_group function accepts 1 array which holds the relevant data to register a field group
379
- * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF
380
- */",'acf'); ?>
381
-
382
-
383
  if(function_exists("register_field_group"))
384
  {
385
  <?php
@@ -414,6 +383,11 @@ if(function_exists("register_field_group"))
414
  // add extra tab at start of each line
415
  $html = str_replace("\n", "\n\t", $html);
416
 
 
 
 
 
 
417
  ?> register_field_group(<?php echo $html ?>);
418
  <?php
419
  }
349
  if( $acfs )
350
  {
351
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  if(function_exists("register_field_group"))
353
  {
354
  <?php
383
  // add extra tab at start of each line
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 ?>);
392
  <?php
393
  }
core/controllers/field_group.php CHANGED
@@ -353,6 +353,22 @@ class acf_field_group
353
  global $post;
354
 
355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  ?>
357
  <script type="text/javascript">
358
  (function($) {
@@ -363,6 +379,10 @@ class acf_field_group
363
  acf.admin_url = "<?php echo admin_url(); ?>";
364
  acf.ajaxurl = "<?php echo admin_url( 'admin-ajax.php' ); ?>";
365
 
 
 
 
 
366
  })(jQuery);
367
  </script>
368
  <?php
353
  global $post;
354
 
355
 
356
+ // l10n
357
+ $l10n = array(
358
+ 'move_to_trash' => __("Move to trash. Are you sure?",'acf'),
359
+ 'checked' => __("checked",'acf'),
360
+ 'no_fields' => __("No toggle fields available",'acf'),
361
+ 'title' => __("Field group title is required",'acf'),
362
+ 'copy' => __("copy",'acf'),
363
+ 'or' => __("or",'acf'),
364
+ 'fields' => __("Fields",'acf'),
365
+ 'parent_fields' => __("Parent fields",'acf'),
366
+ 'sibling_fields' => __("Sibling fields",'acf'),
367
+ 'hide_show_all' => __("Hide / Show All",'acf')
368
+ );
369
+
370
+
371
+
372
  ?>
373
  <script type="text/javascript">
374
  (function($) {
379
  acf.admin_url = "<?php echo admin_url(); ?>";
380
  acf.ajaxurl = "<?php echo admin_url( 'admin-ajax.php' ); ?>";
381
 
382
+
383
+ // l10n
384
+ acf.l10n = <?php echo json_encode( $l10n ); ?>;
385
+
386
  })(jQuery);
387
  </script>
388
  <?php
core/controllers/field_groups.php CHANGED
@@ -381,8 +381,9 @@ class acf_field_groups
381
  <?php
382
 
383
  $items = file_get_contents( $path . 'readme.txt' );
 
384
 
385
- $items = end( explode('= ' . $version . ' =', $items) );
386
  $items = current( explode("\n\n", $items) );
387
  $items = array_filter( array_map('trim', explode("*", $items)) );
388
 
@@ -529,4 +530,4 @@ class acf_field_groups
529
 
530
  new acf_field_groups();
531
 
532
- ?>
381
  <?php
382
 
383
  $items = file_get_contents( $path . 'readme.txt' );
384
+ $items = explode('= ' . $version . ' =', $items);
385
 
386
+ $items = end( $items );
387
  $items = current( explode("\n\n", $items) );
388
  $items = array_filter( array_map('trim', explode("*", $items)) );
389
 
530
 
531
  new acf_field_groups();
532
 
533
+ ?>
core/controllers/input.php CHANGED
@@ -1,14 +1,17 @@
1
  <?php
2
 
3
  /*
4
- * Input
 
 
 
 
 
 
5
  *
6
- * @description: controller for adding field HTML to edit screens
7
- * @since: 3.6
8
- * @created: 25/01/13
9
  */
10
 
11
- class acf_input
12
  {
13
 
14
  /*
@@ -21,468 +24,9 @@ class acf_input
21
 
22
  function __construct()
23
  {
24
-
25
- // actions
26
- add_action('admin_enqueue_scripts', array($this,'admin_enqueue_scripts'));
27
-
28
-
29
- // save
30
- add_action('save_post', array($this, 'save_post'), 10, 1);
31
-
32
-
33
  // actions
34
  add_action('acf/input/admin_head', array($this, 'input_admin_head'));
35
  add_action('acf/input/admin_enqueue_scripts', array($this, 'input_admin_enqueue_scripts'));
36
-
37
-
38
- // ajax acf/update_field_groups
39
- add_action('wp_ajax_acf/input/render_fields', array($this, 'ajax_render_fields'));
40
- add_action('wp_ajax_acf/input/get_style', array($this, 'ajax_get_style'));
41
- }
42
-
43
-
44
- /*
45
- * validate_page
46
- *
47
- * @description: returns true | false. Used to stop a function from continuing
48
- * @since 3.2.6
49
- * @created: 23/06/12
50
- */
51
-
52
- function validate_page()
53
- {
54
- // global
55
- global $pagenow, $typenow;
56
-
57
-
58
- // vars
59
- $return = false;
60
-
61
-
62
- // validate page
63
- if( in_array( $pagenow, array('post.php', 'post-new.php') ) )
64
- {
65
-
66
- // validate post type
67
- global $typenow;
68
-
69
- if( $typenow != "acf" )
70
- {
71
- $return = true;
72
- }
73
-
74
- }
75
-
76
-
77
- // validate page (Shopp)
78
- if( $pagenow == "admin.php" && isset( $_GET['page'] ) && $_GET['page'] == "shopp-products" && isset( $_GET['id'] ) )
79
- {
80
- $return = true;
81
- }
82
-
83
-
84
- // return
85
- return $return;
86
- }
87
-
88
-
89
- /*
90
- * admin_enqueue_scripts
91
- *
92
- * @description: run after post query but before any admin script / head actions. A good place to register all actions.
93
- * @since: 3.6
94
- * @created: 26/01/13
95
- */
96
-
97
- function admin_enqueue_scripts()
98
- {
99
- // validate page
100
- if( ! $this->validate_page() ){ return; }
101
-
102
-
103
- // scripts
104
- do_action('acf/input/admin_enqueue_scripts');
105
-
106
-
107
- // head
108
- add_action('admin_head', array($this,'admin_head'));
109
- }
110
-
111
-
112
- /*
113
- * admin_head
114
- *
115
- * @description:
116
- * @since 3.1.8
117
- * @created: 23/06/12
118
- */
119
-
120
- function admin_head()
121
- {
122
- // globals
123
- global $post, $pagenow, $typenow;
124
-
125
-
126
- // shopp
127
- if( $pagenow == "admin.php" && isset( $_GET['page'] ) && $_GET['page'] == "shopp-products" && isset( $_GET['id'] ) )
128
- {
129
- $typenow = "shopp_product";
130
- }
131
-
132
-
133
- // vars
134
- $post_id = $post ? $post->ID : 0;
135
-
136
-
137
- // get field groups
138
- $filter = array(
139
- 'post_id' => $post_id,
140
- 'post_type' => $typenow
141
- );
142
- $metabox_ids = array();
143
- $metabox_ids = apply_filters( 'acf/location/match_field_groups', $metabox_ids, $filter );
144
-
145
-
146
- // get style of first field group
147
- $style = '';
148
- if( isset($metabox_ids[0]) )
149
- {
150
- $style = $this->get_style( $metabox_ids[0] );
151
- }
152
-
153
-
154
- // Style
155
- echo '<style type="text/css" id="acf_style" >' . $style . '</style>';
156
-
157
-
158
- // add user js + css
159
- do_action('acf/input/admin_head');
160
-
161
-
162
- // get field groups
163
- $acfs = apply_filters('acf/get_field_groups', array());
164
-
165
-
166
- if( $acfs )
167
- {
168
- foreach( $acfs as $acf )
169
- {
170
- // load options
171
- $acf['options'] = apply_filters('acf/field_group/get_options', array(), $acf['id']);
172
-
173
-
174
- // vars
175
- $show = in_array( $acf['id'], $metabox_ids ) ? 1 : 0;
176
- $priority = 'high';
177
- if( $acf['options']['position'] == 'side' )
178
- {
179
- $priority = 'core';
180
- }
181
-
182
-
183
- // add meta box
184
- add_meta_box(
185
- 'acf_' . $acf['id'],
186
- $acf['title'],
187
- array($this, 'meta_box_input'),
188
- $typenow,
189
- $acf['options']['position'],
190
- $priority,
191
- array( 'field_group' => $acf, 'show' => $show, 'post_id' => $post_id )
192
- );
193
-
194
- }
195
- // foreach($acfs as $acf)
196
- }
197
- // if($acfs)
198
-
199
-
200
- // Allow 'acf_after_title' metabox position
201
- add_action('edit_form_after_title', array($this, 'edit_form_after_title'));
202
- }
203
-
204
-
205
- /*
206
- * edit_form_after_title
207
- *
208
- * This action will allow ACF to render metaboxes after the title
209
- *
210
- * @type action
211
- * @date 17/08/13
212
- *
213
- * @param N/A
214
- * @return N/A
215
- */
216
-
217
- function edit_form_after_title()
218
- {
219
- // globals
220
- global $post, $wp_meta_boxes;
221
-
222
-
223
- // render
224
- do_meta_boxes( get_current_screen(), 'acf_after_title', $post);
225
-
226
-
227
- // clean up
228
- unset( $wp_meta_boxes['post']['acf_after_title'] );
229
- }
230
-
231
-
232
- /*
233
- * meta_box_input
234
- *
235
- * @description:
236
- * @since 1.0.0
237
- * @created: 23/06/12
238
- */
239
-
240
- function meta_box_input( $post, $args )
241
- {
242
- // extract $args
243
- extract( $args );
244
-
245
-
246
- // classes
247
- $class = 'acf_postbox ' . $args['field_group']['options']['layout'];
248
- $toggle_class = 'acf_postbox-toggle';
249
-
250
-
251
- if( ! $args['show'] )
252
- {
253
- $class .= ' acf-hidden';
254
- $toggle_class .= ' acf-hidden';
255
- }
256
-
257
- ?>
258
- <script type="text/javascript">
259
- (function($) {
260
-
261
- $('#<?php echo $id; ?>').addClass('<?php echo $class; ?>').removeClass('hide-if-js');
262
- $('#adv-settings label[for="<?php echo $id; ?>-hide"]').addClass('<?php echo $toggle_class; ?>');
263
-
264
- })(jQuery);
265
- </script>
266
- <?php
267
-
268
-
269
- // nonce
270
- echo '<input type="hidden" name="acf_nonce" value="' . wp_create_nonce( 'input' ) . '" />';
271
-
272
-
273
- // HTML
274
- if( $args['show'] )
275
- {
276
- $fields = apply_filters('acf/field_group/get_fields', array(), $args['field_group']['id']);
277
-
278
- do_action('acf/create_fields', $fields, $args['post_id']);
279
- }
280
- else
281
- {
282
- echo '<div class="acf-replace-with-fields"><div class="acf-loading"></div></div>';
283
- }
284
- }
285
-
286
-
287
- /*
288
- * get_style
289
- *
290
- * @description: called by admin_head to generate acf css style (hide other metaboxes)
291
- * @since 2.0.5
292
- * @created: 23/06/12
293
- */
294
-
295
- function get_style( $acf_id )
296
- {
297
- // vars
298
- $options = apply_filters('acf/field_group/get_options', array(), $acf_id);
299
- $html = '';
300
-
301
-
302
- // add style to html
303
- if( in_array('the_content',$options['hide_on_screen']) )
304
- {
305
- $html .= '#postdivrich {display: none;} ';
306
- }
307
- if( in_array('excerpt',$options['hide_on_screen']) )
308
- {
309
- $html .= '#postexcerpt, #screen-meta label[for=postexcerpt-hide] {display: none;} ';
310
- }
311
- if( in_array('custom_fields',$options['hide_on_screen']) )
312
- {
313
- $html .= '#postcustom, #screen-meta label[for=postcustom-hide] { display: none; } ';
314
- }
315
- if( in_array('discussion',$options['hide_on_screen']) )
316
- {
317
- $html .= '#commentstatusdiv, #screen-meta label[for=commentstatusdiv-hide] {display: none;} ';
318
- }
319
- if( in_array('comments',$options['hide_on_screen']) )
320
- {
321
- $html .= '#commentsdiv, #screen-meta label[for=commentsdiv-hide] {display: none;} ';
322
- }
323
- if( in_array('slug',$options['hide_on_screen']) )
324
- {
325
- $html .= '#slugdiv, #screen-meta label[for=slugdiv-hide] {display: none;} ';
326
- }
327
- if( in_array('author',$options['hide_on_screen']) )
328
- {
329
- $html .= '#authordiv, #screen-meta label[for=authordiv-hide] {display: none;} ';
330
- }
331
- if( in_array('format',$options['hide_on_screen']) )
332
- {
333
- $html .= '#formatdiv, #screen-meta label[for=formatdiv-hide] {display: none;} ';
334
- }
335
- if( in_array('featured_image',$options['hide_on_screen']) )
336
- {
337
- $html .= '#postimagediv, #screen-meta label[for=postimagediv-hide] {display: none;} ';
338
- }
339
- if( in_array('revisions',$options['hide_on_screen']) )
340
- {
341
- $html .= '#revisionsdiv, #screen-meta label[for=revisionsdiv-hide] {display: none;} ';
342
- }
343
- if( in_array('categories',$options['hide_on_screen']) )
344
- {
345
- $html .= '#categorydiv, #screen-meta label[for=categorydiv-hide] {display: none;} ';
346
- }
347
- if( in_array('tags',$options['hide_on_screen']) )
348
- {
349
- $html .= '#tagsdiv-post_tag, #screen-meta label[for=tagsdiv-post_tag-hide] {display: none;} ';
350
- }
351
- if( in_array('send-trackbacks',$options['hide_on_screen']) )
352
- {
353
- $html .= '#trackbacksdiv, #screen-meta label[for=trackbacksdiv-hide] {display: none;} ';
354
- }
355
-
356
-
357
- return $html;
358
- }
359
-
360
-
361
- /*
362
- * ajax_get_input_style
363
- *
364
- * @description: called by input-actions.js to hide / show other metaboxes
365
- * @since 2.0.5
366
- * @created: 23/06/12
367
- */
368
-
369
- function ajax_get_style()
370
- {
371
- // vars
372
- $options = array(
373
- 'acf_id' => 0,
374
- 'nonce' => ''
375
- );
376
-
377
- // load post options
378
- $options = array_merge($options, $_POST);
379
-
380
-
381
- // verify nonce
382
- if( ! wp_verify_nonce($options['nonce'], 'acf_nonce') )
383
- {
384
- die(0);
385
- }
386
-
387
-
388
- // return style
389
- echo $this->get_style( $options['acf_id'] );
390
-
391
-
392
- // die
393
- die;
394
- }
395
-
396
-
397
- /*
398
- * ajax_render_fields
399
- *
400
- * @description:
401
- * @since 3.1.6
402
- * @created: 23/06/12
403
- */
404
-
405
- function ajax_render_fields()
406
- {
407
-
408
- // defaults
409
- $options = array(
410
- 'acf_id' => 0,
411
- 'post_id' => 0,
412
- 'nonce' => ''
413
- );
414
-
415
-
416
- // load post options
417
- $options = array_merge($options, $_POST);
418
-
419
-
420
- // verify nonce
421
- if( ! wp_verify_nonce($options['nonce'], 'acf_nonce') )
422
- {
423
- die(0);
424
- }
425
-
426
-
427
- // get acfs
428
- $acfs = apply_filters('acf/get_field_groups', array());
429
- if( $acfs )
430
- {
431
- foreach( $acfs as $acf )
432
- {
433
- if( $acf['id'] == $options['acf_id'] )
434
- {
435
- $fields = apply_filters('acf/field_group/get_fields', array(), $acf['id']);
436
-
437
- do_action('acf/create_fields', $fields, $options['post_id']);
438
-
439
- break;
440
- }
441
- }
442
- }
443
-
444
- die();
445
-
446
- }
447
-
448
-
449
- /*
450
- * save_post
451
- *
452
- * @description: Saves the field / location / option data for a field group
453
- * @since 1.0.0
454
- * @created: 23/06/12
455
- */
456
-
457
- function save_post( $post_id )
458
- {
459
-
460
- // do not save if this is an auto save routine
461
- if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
462
- {
463
- return $post_id;
464
- }
465
-
466
-
467
- // verify nonce
468
- if( !isset($_POST['acf_nonce'], $_POST['fields']) || !wp_verify_nonce($_POST['acf_nonce'], 'input') )
469
- {
470
- return $post_id;
471
- }
472
-
473
-
474
- // if save lock contains a value, the save_post action is already running for another post.
475
- // this would imply that the user is hooking into an ACF update_value or save_post action and inserting a new post
476
- // if this is the case, we do not want to save all the $POST data to this post.
477
- if( isset($GLOBALS['acf_save_lock']) && $GLOBALS['acf_save_lock'] )
478
- {
479
- return $post_id;
480
- }
481
-
482
-
483
- // update the post (may even be a revision / autosave preview)
484
- do_action('acf/save_post', $post_id);
485
-
486
  }
487
 
488
 
@@ -621,6 +165,6 @@ class acf_input
621
 
622
  }
623
 
624
- new acf_input();
625
 
626
  ?>
1
  <?php
2
 
3
  /*
4
+ * acf_controller_input
5
+ *
6
+ * This class contains the functionality for input actions used throughout ACF
7
+ *
8
+ * @type class
9
+ * @date 5/09/13
10
+ * @since 3.1.8
11
  *
 
 
 
12
  */
13
 
14
+ class acf_controller_input
15
  {
16
 
17
  /*
24
 
25
  function __construct()
26
  {
 
 
 
 
 
 
 
 
 
27
  // actions
28
  add_action('acf/input/admin_head', array($this, 'input_admin_head'));
29
  add_action('acf/input/admin_enqueue_scripts', array($this, 'input_admin_enqueue_scripts'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
 
165
 
166
  }
167
 
168
+ new acf_controller_input();
169
 
170
  ?>
core/controllers/location.php CHANGED
@@ -23,6 +23,7 @@ class acf_location
23
  {
24
  // ajax
25
  add_action('wp_ajax_acf/location/match_field_groups_ajax', array($this, 'match_field_groups_ajax'));
 
26
 
27
 
28
  // filters
@@ -173,6 +174,14 @@ class acf_location
173
  {
174
  foreach( $group as $rule_id => $rule )
175
  {
 
 
 
 
 
 
 
 
176
  // $match = true / false
177
  $match = apply_filters( 'acf/location/rule_match/' . $rule['param'] , false, $rule, $options );
178
 
@@ -634,16 +643,21 @@ class acf_location
634
  {
635
  global $plugin_page;
636
 
637
-
 
 
638
  // older location rules may be "options-pagename"
639
- if( substr($rule['value'], 0, 8) == 'options-' )
 
640
  {
641
  $rule['value'] = 'acf-' . $rule['value'];
642
  }
 
643
 
644
 
645
  // older location ruels may be "Pagename"
646
- if( substr($rule['value'], 0, 11) != 'acf-options' )
 
647
  {
648
  $rule['value'] = 'acf-options-' . sanitize_title( $rule['value'] );
649
 
@@ -653,7 +667,8 @@ class acf_location
653
  $rule['value'] = 'acf-options';
654
  }
655
  }
656
-
 
657
 
658
  if($rule['operator'] == "==")
659
  {
@@ -963,58 +978,7 @@ class acf_location
963
 
964
  return $match;
965
 
966
- }
967
-
968
-
969
- /*
970
- * rule_match_ef_media
971
- *
972
- * @description:
973
- * @since: 3.5.7
974
- * @created: 3/01/13
975
- */
976
-
977
- function rule_match_ef_media( $match, $rule, $options )
978
- {
979
- global $pagenow;
980
-
981
-
982
- if( $pagenow == 'post.php' )
983
- {
984
- // in 3.5, the media rule should check the post type
985
- $rule['param'] = 'post_type';
986
- $rule['value'] = 'attachment';
987
- return $this->rule_match_post_type( $match, $rule, $options );
988
- }
989
-
990
-
991
- $ef_media = $options['ef_media'];
992
-
993
- if( $ef_media )
994
- {
995
- if($rule['operator'] == "==")
996
- {
997
- // override for "all"
998
- if( $rule['value'] === "all" )
999
- {
1000
- $match = true;
1001
- }
1002
- }
1003
- elseif($rule['operator'] == "!=")
1004
- {
1005
- // override for "all"
1006
- if( $rule['value'] === "all" )
1007
- {
1008
- $match = false;
1009
- }
1010
- }
1011
-
1012
- }
1013
-
1014
- return $match;
1015
-
1016
- }
1017
-
1018
 
1019
  }
1020
 
23
  {
24
  // ajax
25
  add_action('wp_ajax_acf/location/match_field_groups_ajax', array($this, 'match_field_groups_ajax'));
26
+ add_action('wp_ajax_nopriv_acf/location/match_field_groups_ajax', array($this, 'match_field_groups_ajax'));
27
 
28
 
29
  // filters
174
  {
175
  foreach( $group as $rule_id => $rule )
176
  {
177
+ // Hack for ef_media => now post_type = attachment
178
+ if( $rule['param'] == 'ef_media' )
179
+ {
180
+ $rule['param'] = 'post_type';
181
+ $rule['value'] = 'attachment';
182
+ }
183
+
184
+
185
  // $match = true / false
186
  $match = apply_filters( 'acf/location/rule_match/' . $rule['param'] , false, $rule, $options );
187
 
643
  {
644
  global $plugin_page;
645
 
646
+ // NOTE
647
+ // comment out below code as it was interfering with custom slugs
648
+
649
  // older location rules may be "options-pagename"
650
+ /*
651
+ if( substr($rule['value'], 0, 8) == 'options-' )
652
  {
653
  $rule['value'] = 'acf-' . $rule['value'];
654
  }
655
+ */
656
 
657
 
658
  // older location ruels may be "Pagename"
659
+ /*
660
+ if( substr($rule['value'], 0, 11) != 'acf-options' )
661
  {
662
  $rule['value'] = 'acf-options-' . sanitize_title( $rule['value'] );
663
 
667
  $rule['value'] = 'acf-options';
668
  }
669
  }
670
+ */
671
+
672
 
673
  if($rule['operator'] == "==")
674
  {
978
 
979
  return $match;
980
 
981
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
 
983
  }
984
 
core/controllers/post.php ADDED
@@ -0,0 +1,520 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * acf_controller_post
5
+ *
6
+ * This class contains the functionality to add ACF fields to a post edit form
7
+ *
8
+ * @type class
9
+ * @date 5/09/13
10
+ * @since 3.1.8
11
+ *
12
+ */
13
+
14
+ class acf_controller_post
15
+ {
16
+
17
+ /*
18
+ * Constructor
19
+ *
20
+ * This function will construct all the neccessary actions and filters
21
+ *
22
+ * @type function
23
+ * @date 23/06/12
24
+ * @since 3.1.8
25
+ *
26
+ * @param N/A
27
+ * @return N/A
28
+ */
29
+
30
+ function __construct()
31
+ {
32
+ // actions
33
+ add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts'));
34
+ add_action('save_post', array($this, 'save_post'), 10, 1);
35
+
36
+
37
+ // ajax
38
+ add_action('wp_ajax_acf/post/render_fields', array($this, 'ajax_render_fields'));
39
+ add_action('wp_ajax_acf/post/get_style', array($this, 'ajax_get_style'));
40
+ }
41
+
42
+
43
+ /*
44
+ * validate_page
45
+ *
46
+ * This function will check if the current page is for a post/page edit form
47
+ *
48
+ * @type function
49
+ * @date 23/06/12
50
+ * @since 3.1.8
51
+ *
52
+ * @param N/A
53
+ * @return (boolean)
54
+ */
55
+
56
+ function validate_page()
57
+ {
58
+ // global
59
+ global $pagenow, $typenow;
60
+
61
+
62
+ // vars
63
+ $return = false;
64
+
65
+
66
+ // validate page
67
+ if( in_array( $pagenow, array('post.php', 'post-new.php') ) )
68
+ {
69
+
70
+ // validate post type
71
+ global $typenow;
72
+
73
+ if( $typenow != "acf" )
74
+ {
75
+ $return = true;
76
+ }
77
+
78
+ }
79
+
80
+
81
+ // validate page (Shopp)
82
+ if( $pagenow == "admin.php" && isset( $_GET['page'] ) && $_GET['page'] == "shopp-products" && isset( $_GET['id'] ) )
83
+ {
84
+ $return = true;
85
+ }
86
+
87
+
88
+ // return
89
+ return $return;
90
+ }
91
+
92
+
93
+ /*
94
+ * admin_enqueue_scripts
95
+ *
96
+ * This action is run after post query but before any admin script / head actions.
97
+ * It is a good place to register all actions.
98
+ *
99
+ * @type action (admin_enqueue_scripts)
100
+ * @date 26/01/13
101
+ * @since 3.6.0
102
+ *
103
+ * @param N/A
104
+ * @return N/A
105
+ */
106
+
107
+ function admin_enqueue_scripts()
108
+ {
109
+ // validate page
110
+ if( ! $this->validate_page() )
111
+ {
112
+ return;
113
+ }
114
+
115
+
116
+ // actions
117
+ do_action('acf/input/admin_enqueue_scripts');
118
+
119
+ add_action('admin_head', array($this,'admin_head'));
120
+ }
121
+
122
+
123
+ /*
124
+ * admin_head
125
+ *
126
+ * This action will find and add field groups to the current edit page
127
+ *
128
+ * @type action (admin_head)
129
+ * @date 23/06/12
130
+ * @since 3.1.8
131
+ *
132
+ * @param N/A
133
+ * @return N/A
134
+ */
135
+
136
+ function admin_head()
137
+ {
138
+ // globals
139
+ global $post, $pagenow, $typenow;
140
+
141
+
142
+ // shopp
143
+ if( $pagenow == "admin.php" && isset( $_GET['page'] ) && $_GET['page'] == "shopp-products" && isset( $_GET['id'] ) )
144
+ {
145
+ $typenow = "shopp_product";
146
+ }
147
+
148
+
149
+ // vars
150
+ $post_id = $post ? $post->ID : 0;
151
+
152
+
153
+ // get field groups
154
+ $filter = array(
155
+ 'post_id' => $post_id,
156
+ 'post_type' => $typenow
157
+ );
158
+ $metabox_ids = array();
159
+ $metabox_ids = apply_filters( 'acf/location/match_field_groups', $metabox_ids, $filter );
160
+
161
+
162
+ // get style of first field group
163
+ $style = '';
164
+ if( isset($metabox_ids[0]) )
165
+ {
166
+ $style = $this->get_style( $metabox_ids[0] );
167
+ }
168
+
169
+
170
+ // Style
171
+ echo '<style type="text/css" id="acf_style" >' . $style . '</style>';
172
+
173
+
174
+ // add user js + css
175
+ do_action('acf/input/admin_head');
176
+
177
+
178
+ // get field groups
179
+ $acfs = apply_filters('acf/get_field_groups', array());
180
+
181
+
182
+ if( $acfs )
183
+ {
184
+ foreach( $acfs as $acf )
185
+ {
186
+ // load options
187
+ $acf['options'] = apply_filters('acf/field_group/get_options', array(), $acf['id']);
188
+
189
+
190
+ // vars
191
+ $show = in_array( $acf['id'], $metabox_ids ) ? 1 : 0;
192
+ $priority = 'high';
193
+ if( $acf['options']['position'] == 'side' )
194
+ {
195
+ $priority = 'core';
196
+ }
197
+
198
+
199
+ // add meta box
200
+ add_meta_box(
201
+ 'acf_' . $acf['id'],
202
+ $acf['title'],
203
+ array($this, 'meta_box_input'),
204
+ $typenow,
205
+ $acf['options']['position'],
206
+ $priority,
207
+ array( 'field_group' => $acf, 'show' => $show, 'post_id' => $post_id )
208
+ );
209
+
210
+ }
211
+ // foreach($acfs as $acf)
212
+ }
213
+ // if($acfs)
214
+
215
+
216
+ // Allow 'acf_after_title' metabox position
217
+ add_action('edit_form_after_title', array($this, 'edit_form_after_title'));
218
+ }
219
+
220
+
221
+ /*
222
+ * edit_form_after_title
223
+ *
224
+ * This action will allow ACF to render metaboxes after the title
225
+ *
226
+ * @type action
227
+ * @date 17/08/13
228
+ *
229
+ * @param N/A
230
+ * @return N/A
231
+ */
232
+
233
+ function edit_form_after_title()
234
+ {
235
+ // globals
236
+ global $post, $wp_meta_boxes;
237
+
238
+
239
+ // render
240
+ do_meta_boxes( get_current_screen(), 'acf_after_title', $post);
241
+
242
+
243
+ // clean up
244
+ unset( $wp_meta_boxes['post']['acf_after_title'] );
245
+
246
+
247
+ // preview hack
248
+ // the following code will add a hidden input which will trigger WP to create a revision apon save
249
+ // http://support.advancedcustomfields.com/forums/topic/preview-solution/#post-4106
250
+ ?>
251
+ <div style="display:none">
252
+ <input type="hidden" name="acf_has_changed" id="acf-has-changed" value="0" />
253
+ </div>
254
+ <?php
255
+ }
256
+
257
+
258
+ /*
259
+ * meta_box_input
260
+ *
261
+ * @description:
262
+ * @since 1.0.0
263
+ * @created: 23/06/12
264
+ */
265
+
266
+ function meta_box_input( $post, $args )
267
+ {
268
+ // extract $args
269
+ extract( $args );
270
+
271
+
272
+ // classes
273
+ $class = 'acf_postbox ' . $args['field_group']['options']['layout'];
274
+ $toggle_class = 'acf_postbox-toggle';
275
+
276
+
277
+ if( ! $args['show'] )
278
+ {
279
+ $class .= ' acf-hidden';
280
+ $toggle_class .= ' acf-hidden';
281
+ }
282
+
283
+
284
+ // HTML
285
+ if( $args['show'] )
286
+ {
287
+ $fields = apply_filters('acf/field_group/get_fields', array(), $args['field_group']['id']);
288
+
289
+ do_action('acf/create_fields', $fields, $args['post_id']);
290
+ }
291
+ else
292
+ {
293
+ echo '<div class="acf-replace-with-fields"><div class="acf-loading"></div></div>';
294
+ }
295
+
296
+
297
+ // nonce
298
+ echo '<div style="display:none">';
299
+ echo '<input type="hidden" name="acf_nonce" value="' . wp_create_nonce( 'input' ) . '" />';
300
+ ?>
301
+ <script type="text/javascript">
302
+ (function($) {
303
+
304
+ $('#<?php echo $id; ?>').addClass('<?php echo $class; ?>').removeClass('hide-if-js');
305
+ $('#adv-settings label[for="<?php echo $id; ?>-hide"]').addClass('<?php echo $toggle_class; ?>');
306
+
307
+ })(jQuery);
308
+ </script>
309
+ <?php
310
+ echo '</div>';
311
+ }
312
+
313
+
314
+ /*
315
+ * get_style
316
+ *
317
+ * @description: called by admin_head to generate acf css style (hide other metaboxes)
318
+ * @since 2.0.5
319
+ * @created: 23/06/12
320
+ */
321
+
322
+ function get_style( $acf_id )
323
+ {
324
+ // vars
325
+ $options = apply_filters('acf/field_group/get_options', array(), $acf_id);
326
+ $html = '';
327
+
328
+
329
+ // add style to html
330
+ if( in_array('the_content',$options['hide_on_screen']) )
331
+ {
332
+ $html .= '#postdivrich {display: none;} ';
333
+ }
334
+ if( in_array('excerpt',$options['hide_on_screen']) )
335
+ {
336
+ $html .= '#postexcerpt, #screen-meta label[for=postexcerpt-hide] {display: none;} ';
337
+ }
338
+ if( in_array('custom_fields',$options['hide_on_screen']) )
339
+ {
340
+ $html .= '#postcustom, #screen-meta label[for=postcustom-hide] { display: none; } ';
341
+ }
342
+ if( in_array('discussion',$options['hide_on_screen']) )
343
+ {
344
+ $html .= '#commentstatusdiv, #screen-meta label[for=commentstatusdiv-hide] {display: none;} ';
345
+ }
346
+ if( in_array('comments',$options['hide_on_screen']) )
347
+ {
348
+ $html .= '#commentsdiv, #screen-meta label[for=commentsdiv-hide] {display: none;} ';
349
+ }
350
+ if( in_array('slug',$options['hide_on_screen']) )
351
+ {
352
+ $html .= '#slugdiv, #screen-meta label[for=slugdiv-hide] {display: none;} ';
353
+ }
354
+ if( in_array('author',$options['hide_on_screen']) )
355
+ {
356
+ $html .= '#authordiv, #screen-meta label[for=authordiv-hide] {display: none;} ';
357
+ }
358
+ if( in_array('format',$options['hide_on_screen']) )
359
+ {
360
+ $html .= '#formatdiv, #screen-meta label[for=formatdiv-hide] {display: none;} ';
361
+ }
362
+ if( in_array('featured_image',$options['hide_on_screen']) )
363
+ {
364
+ $html .= '#postimagediv, #screen-meta label[for=postimagediv-hide] {display: none;} ';
365
+ }
366
+ if( in_array('revisions',$options['hide_on_screen']) )
367
+ {
368
+ $html .= '#revisionsdiv, #screen-meta label[for=revisionsdiv-hide] {display: none;} ';
369
+ }
370
+ if( in_array('categories',$options['hide_on_screen']) )
371
+ {
372
+ $html .= '#categorydiv, #screen-meta label[for=categorydiv-hide] {display: none;} ';
373
+ }
374
+ if( in_array('tags',$options['hide_on_screen']) )
375
+ {
376
+ $html .= '#tagsdiv-post_tag, #screen-meta label[for=tagsdiv-post_tag-hide] {display: none;} ';
377
+ }
378
+ if( in_array('send-trackbacks',$options['hide_on_screen']) )
379
+ {
380
+ $html .= '#trackbacksdiv, #screen-meta label[for=trackbacksdiv-hide] {display: none;} ';
381
+ }
382
+
383
+
384
+ return $html;
385
+ }
386
+
387
+
388
+ /*
389
+ * ajax_get_input_style
390
+ *
391
+ * @description: called by input-actions.js to hide / show other metaboxes
392
+ * @since 2.0.5
393
+ * @created: 23/06/12
394
+ */
395
+
396
+ function ajax_get_style()
397
+ {
398
+ // vars
399
+ $options = array(
400
+ 'acf_id' => 0,
401
+ 'nonce' => ''
402
+ );
403
+
404
+ // load post options
405
+ $options = array_merge($options, $_POST);
406
+
407
+
408
+ // verify nonce
409
+ if( ! wp_verify_nonce($options['nonce'], 'acf_nonce') )
410
+ {
411
+ die(0);
412
+ }
413
+
414
+
415
+ // return style
416
+ echo $this->get_style( $options['acf_id'] );
417
+
418
+
419
+ // die
420
+ die;
421
+ }
422
+
423
+
424
+ /*
425
+ * ajax_render_fields
426
+ *
427
+ * @description:
428
+ * @since 3.1.6
429
+ * @created: 23/06/12
430
+ */
431
+
432
+ function ajax_render_fields()
433
+ {
434
+
435
+ // defaults
436
+ $options = array(
437
+ 'acf_id' => 0,
438
+ 'post_id' => 0,
439
+ 'nonce' => ''
440
+ );
441
+
442
+
443
+ // load post options
444
+ $options = array_merge($options, $_POST);
445
+
446
+
447
+ // verify nonce
448
+ if( ! wp_verify_nonce($options['nonce'], 'acf_nonce') )
449
+ {
450
+ die(0);
451
+ }
452
+
453
+
454
+ // get acfs
455
+ $acfs = apply_filters('acf/get_field_groups', array());
456
+ if( $acfs )
457
+ {
458
+ foreach( $acfs as $acf )
459
+ {
460
+ if( $acf['id'] == $options['acf_id'] )
461
+ {
462
+ $fields = apply_filters('acf/field_group/get_fields', array(), $acf['id']);
463
+
464
+ do_action('acf/create_fields', $fields, $options['post_id']);
465
+
466
+ break;
467
+ }
468
+ }
469
+ }
470
+
471
+ die();
472
+
473
+ }
474
+
475
+
476
+ /*
477
+ * save_post
478
+ *
479
+ * @description: Saves the field / location / option data for a field group
480
+ * @since 1.0.0
481
+ * @created: 23/06/12
482
+ */
483
+
484
+ function save_post( $post_id )
485
+ {
486
+
487
+ // do not save if this is an auto save routine
488
+ if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
489
+ {
490
+ return $post_id;
491
+ }
492
+
493
+
494
+ // verify nonce
495
+ if( !isset($_POST['acf_nonce'], $_POST['fields']) || !wp_verify_nonce($_POST['acf_nonce'], 'input') )
496
+ {
497
+ return $post_id;
498
+ }
499
+
500
+
501
+ // if save lock contains a value, the save_post action is already running for another post.
502
+ // this would imply that the user is hooking into an ACF update_value or save_post action and inserting a new post
503
+ // if this is the case, we do not want to save all the $POST data to this post.
504
+ if( isset($GLOBALS['acf_save_lock']) && $GLOBALS['acf_save_lock'] )
505
+ {
506
+ return $post_id;
507
+ }
508
+
509
+
510
+ // update the post (may even be a revision / autosave preview)
511
+ do_action('acf/save_post', $post_id);
512
+
513
+ }
514
+
515
+
516
+ }
517
+
518
+ new acf_controller_post();
519
+
520
+ ?>
core/controllers/revisions.php CHANGED
@@ -32,6 +32,36 @@ class acf_revisions
32
 
33
  // filters
34
  add_filter('_wp_post_revision_fields', array($this, 'wp_post_revision_fields') );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
 
37
 
@@ -51,6 +81,7 @@ class acf_revisions
51
 
52
  function wp_post_revision_fields( $return ) {
53
 
 
54
  //globals
55
  global $post, $pagenow;
56
 
@@ -135,6 +166,7 @@ class acf_revisions
135
  }
136
  }
137
 
 
138
  return $return;
139
 
140
  }
32
 
33
  // filters
34
  add_filter('_wp_post_revision_fields', array($this, 'wp_post_revision_fields') );
35
+ add_filter('wp_save_post_revision_check_for_changes', array($this, 'force_save_revision'), 10, 3);
36
+ }
37
+
38
+
39
+ /*
40
+ * force_save_revision
41
+ *
42
+ * This filter will return false and force WP to save a revision. This is required due to
43
+ * WP checking only post_title, post_excerpt and post_content values, not custom fields.
44
+ *
45
+ * @type filter
46
+ * @date 19/09/13
47
+ *
48
+ * @param $return (boolean) defaults to true
49
+ * @param $last_revision (object) the last revision that WP will compare against
50
+ * @param $post (object) the $post that WP will compare against
51
+ * @return $return (boolean)
52
+ */
53
+
54
+ function force_save_revision( $return, $last_revision, $post )
55
+ {
56
+ // preview hack
57
+ if( isset($_POST['acf_has_changed']) && $_POST['acf_has_changed'] == '1' )
58
+ {
59
+ $return = false;
60
+ }
61
+
62
+
63
+ // return
64
+ return $return;
65
  }
66
 
67
 
81
 
82
  function wp_post_revision_fields( $return ) {
83
 
84
+
85
  //globals
86
  global $post, $pagenow;
87
 
166
  }
167
  }
168
 
169
+
170
  return $return;
171
 
172
  }
core/fields/_base.php CHANGED
@@ -180,8 +180,6 @@ class acf_field
180
  if( !empty($this->l10n) )
181
  {
182
  $l10n[ $this->name ] = $this->l10n;
183
-
184
-
185
  }
186
 
187
  return $l10n;
180
  if( !empty($this->l10n) )
181
  {
182
  $l10n[ $this->name ] = $this->l10n;
 
 
183
  }
184
 
185
  return $l10n;
core/fields/checkbox.php CHANGED
@@ -64,8 +64,10 @@ class acf_field_checkbox extends acf_field
64
  $field['value'] = array_map('trim', $field['value']);
65
 
66
 
67
- echo '<input type="hidden" name="' . $field['name'] . '" value="" />';
68
- echo '<ul class="checkbox_list ' . $field['class'] . ' ' . $field['layout'] . '">';
 
 
69
 
70
 
71
  // checkbox saves an array
@@ -73,32 +75,39 @@ class acf_field_checkbox extends acf_field
73
 
74
 
75
  // foreach choices
76
- foreach($field['choices'] as $key => $value)
77
  {
78
- $selected = '';
 
 
 
 
79
  if( in_array($key, $field['value']) )
80
  {
81
- $selected = 'checked="yes"';
82
  }
83
  if( isset($field['disabled']) && in_array($key, $field['disabled']) )
84
  {
85
- $selected .= ' disabled="true"';
86
  }
87
 
88
 
89
- // ID
90
  // each checkbox ID is generated with the $key, however, the first checkbox must not use $key so that it matches the field's label for attribute
91
  $id = $field['id'];
92
 
93
- if( $key > 1 )
94
  {
95
  $id .= '-' . $key;
96
  }
97
 
98
- echo '<li><label><input id="' . $id . '" type="checkbox" class="' . $field['class'] . '" name="' . $field['name'] . '" value="' . $key . '" ' . $selected . ' />' . $value . '</label></li>';
99
  }
100
 
101
- echo '</ul>';
 
 
 
 
102
  }
103
 
104
 
64
  $field['value'] = array_map('trim', $field['value']);
65
 
66
 
67
+ // vars
68
+ $i = 0;
69
+ $e = '<input type="hidden" name="' . esc_attr($field['name']) . '" value="" />';
70
+ $e .= '<ul class="acf-checkbox-list ' . esc_attr($field['class']) . ' ' . esc_attr($field['layout']) . '">';
71
 
72
 
73
  // checkbox saves an array
75
 
76
 
77
  // foreach choices
78
+ foreach( $field['choices'] as $key => $value )
79
  {
80
+ // vars
81
+ $i++;
82
+ $atts = '';
83
+
84
+
85
  if( in_array($key, $field['value']) )
86
  {
87
+ $atts = 'checked="yes"';
88
  }
89
  if( isset($field['disabled']) && in_array($key, $field['disabled']) )
90
  {
91
+ $atts .= ' disabled="true"';
92
  }
93
 
94
 
 
95
  // each checkbox ID is generated with the $key, however, the first checkbox must not use $key so that it matches the field's label for attribute
96
  $id = $field['id'];
97
 
98
+ if( $i > 1 )
99
  {
100
  $id .= '-' . $key;
101
  }
102
 
103
+ $e .= '<li><label><input id="' . esc_attr($id) . '" type="checkbox" class="' . esc_attr($field['class']) . '" name="' . esc_attr($field['name']) . '" value="' . esc_attr($key) . '" ' . $atts . ' />' . $value . '</label></li>';
104
  }
105
 
106
+ $e .= '</ul>';
107
+
108
+
109
+ // return
110
+ echo $e;
111
  }
112
 
113
 
core/fields/date_picker/date_picker.php CHANGED
@@ -14,9 +14,6 @@ class acf_field_date_picker extends acf_field
14
 
15
  function __construct()
16
  {
17
- global $wp_locale;
18
-
19
-
20
  // vars
21
  $this->name = 'date_picker';
22
  $this->label = __("Date Picker",'acf');
@@ -26,6 +23,34 @@ class acf_field_date_picker extends acf_field
26
  'display_format' => 'dd/mm/yy',
27
  'first_day' => 1, // monday
28
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  $this->l10n = array(
30
  'closeText' => __( 'Done', 'acf' ),
31
  'currentText' => __( 'Today', 'acf' ),
@@ -37,10 +62,6 @@ class acf_field_date_picker extends acf_field
37
  'dayNamesMin' => array_values( $wp_locale->weekday_initial ),
38
  'isRTL' => isset($wp_locale->is_rtl) ? $wp_locale->is_rtl : false,
39
  );
40
-
41
-
42
- // do not delete!
43
- parent::__construct();
44
  }
45
 
46
 
14
 
15
  function __construct()
16
  {
 
 
 
17
  // vars
18
  $this->name = 'date_picker';
19
  $this->label = __("Date Picker",'acf');
23
  'display_format' => 'dd/mm/yy',
24
  'first_day' => 1, // monday
25
  );
26
+
27
+
28
+ // actions
29
+ add_action('init', array($this, 'init'));
30
+
31
+
32
+ // do not delete!
33
+ parent::__construct();
34
+ }
35
+
36
+
37
+ /*
38
+ * init
39
+ *
40
+ * This function is run on the 'init' action to set the field's $l10n data. Before the init action,
41
+ * access to the $wp_locale variable is not possible.
42
+ *
43
+ * @type action (init)
44
+ * @date 3/09/13
45
+ *
46
+ * @param N/A
47
+ * @return N/A
48
+ */
49
+
50
+ function init()
51
+ {
52
+ global $wp_locale;
53
+
54
  $this->l10n = array(
55
  'closeText' => __( 'Done', 'acf' ),
56
  'currentText' => __( 'Today', 'acf' ),
62
  'dayNamesMin' => array_values( $wp_locale->weekday_initial ),
63
  'isRTL' => isset($wp_locale->is_rtl) ? $wp_locale->is_rtl : false,
64
  );
 
 
 
 
65
  }
66
 
67
 
core/fields/email.php CHANGED
@@ -110,7 +110,7 @@ class acf_field_email extends acf_field
110
  <?php
111
 
112
  do_action('acf/create_field', array(
113
- 'type' => 'number',
114
  'name' => 'fields['.$key.'][default_value]',
115
  'value' => $field['default_value'],
116
  ));
110
  <?php
111
 
112
  do_action('acf/create_field', array(
113
+ 'type' => 'text',
114
  'name' => 'fields['.$key.'][default_value]',
115
  'value' => $field['default_value'],
116
  ));
core/fields/file.php CHANGED
@@ -246,6 +246,7 @@ class acf_field_file extends acf_field
246
  'title' => $attachment->post_title,
247
  'caption' => $attachment->post_excerpt,
248
  'description' => $attachment->post_content,
 
249
  'url' => wp_get_attachment_url( $attachment->ID ),
250
  );
251
  }
246
  'title' => $attachment->post_title,
247
  'caption' => $attachment->post_excerpt,
248
  'description' => $attachment->post_content,
249
+ 'mime_type' => $attachment->post_mime_type,
250
  'url' => wp_get_attachment_url( $attachment->ID ),
251
  );
252
  }
core/fields/google-map.php ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class acf_field_google_map extends acf_field
4
+ {
5
+ /*
6
+ * __construct
7
+ *
8
+ * Set name / label needed for actions / filters
9
+ *
10
+ * @since 3.6
11
+ * @date 23/01/13
12
+ */
13
+
14
+ function __construct()
15
+ {
16
+ // vars
17
+ $this->name = 'google_map';
18
+ $this->label = __("Google Map",'acf');
19
+ $this->category = __("jQuery",'acf');
20
+ $this->defaults = array(
21
+ 'height' => '',
22
+ 'center_lat' => '',
23
+ 'center_lng' => ''
24
+ );
25
+ $this->default_values = array(
26
+ 'height' => '400',
27
+ 'center_lat' => '-37.81411',
28
+ 'center_lng' => '144.96328'
29
+ );
30
+ $this->l10n = array(
31
+ 'locating' => __("Locating",'acf'),
32
+ 'browser_support' => __("Sorry, this browser does not support geolocation",'acf'),
33
+ );
34
+
35
+
36
+ // do not delete!
37
+ parent::__construct();
38
+ }
39
+
40
+
41
+ /*
42
+ * create_field()
43
+ *
44
+ * Create the HTML interface for your field
45
+ *
46
+ * @param $field - an array holding all the field's data
47
+ *
48
+ * @type action
49
+ * @since 3.6
50
+ * @date 23/01/13
51
+ */
52
+
53
+ function create_field( $field )
54
+ {
55
+ // require the googlemaps JS ( this script is now lazy loaded via JS )
56
+ //wp_enqueue_script('acf-googlemaps');
57
+
58
+
59
+ // default value
60
+ if( !is_array($field['value']) )
61
+ {
62
+ $field['value'] = array();
63
+ }
64
+
65
+ $field['value'] = wp_parse_args($field['value'], array(
66
+ 'address' => '',
67
+ 'lat' => '',
68
+ 'lng' => ''
69
+ ));
70
+
71
+
72
+ // default options
73
+ foreach( $this->default_values as $k => $v )
74
+ {
75
+ if( ! $field[ $k ] )
76
+ {
77
+ $field[ $k ] = $v;
78
+ }
79
+ }
80
+
81
+
82
+ // vars
83
+ $o = array(
84
+ 'class' => '',
85
+ );
86
+
87
+ if( $field['value']['address'] )
88
+ {
89
+ $o['class'] = 'active';
90
+ }
91
+
92
+
93
+ $atts = '';
94
+ $keys = array(
95
+ 'data-id' => 'id',
96
+ 'data-lat' => 'center_lat',
97
+ 'data-lng' => 'center_lng'
98
+ );
99
+
100
+ foreach( $keys as $k => $v )
101
+ {
102
+ $atts .= ' ' . $k . '="' . esc_attr( $field[ $v ] ) . '"';
103
+ }
104
+
105
+ ?>
106
+ <div class="acf-google-map <?php echo $o['class']; ?>" <?php echo $atts; ?>>
107
+
108
+ <div style="display:none;">
109
+ <?php foreach( $field['value'] as $k => $v ): ?>
110
+ <input type="hidden" class="input-<?php echo $k; ?>" name="<?php echo esc_attr($field['name']); ?>[<?php echo $k; ?>]" value="<?php echo esc_attr( $v ); ?>" />
111
+ <?php endforeach; ?>
112
+ </div>
113
+
114
+ <div class="title">
115
+
116
+ <div class="has-value">
117
+ <a href="#" class="acf-sprite-remove ir" title="<?php _e("Clear location",'acf'); ?>">Remove</a>
118
+ <h4><?php echo $field['value']['address']; ?></h4>
119
+ </div>
120
+
121
+ <div class="no-value">
122
+ <a href="#" class="acf-sprite-locate ir" title="<?php _e("Find current location",'acf'); ?>">Locate</a>
123
+ <input type="text" placeholder="<?php _e("Search for address...",'acf'); ?>" class="search" />
124
+ </div>
125
+
126
+ </div>
127
+
128
+ <div class="canvas" style="height: <?php echo $field['height']; ?>px">
129
+
130
+ </div>
131
+
132
+ </div>
133
+ <?php
134
+ }
135
+
136
+
137
+
138
+ /*
139
+ * create_options()
140
+ *
141
+ * Create extra options for your field. This is rendered when editing a field.
142
+ * The value of $field['name'] can be used (like bellow) to save extra data to the $field
143
+ *
144
+ * @type action
145
+ * @since 3.6
146
+ * @date 23/01/13
147
+ *
148
+ * @param $field - an array holding all the field's data
149
+ */
150
+
151
+ function create_options( $field )
152
+ {
153
+ // vars
154
+ $key = $field['name'];
155
+
156
+ ?>
157
+ <tr class="field_option field_option_<?php echo $this->name; ?>">
158
+ <td class="label">
159
+ <label><?php _e("Center",'acf'); ?></label>
160
+ <p class="description"><?php _e('Center the initial map','acf'); ?></p>
161
+ </td>
162
+ <td>
163
+ <ul class="hl clearfix">
164
+ <li style="width:48%;">
165
+ <?php
166
+
167
+ do_action('acf/create_field', array(
168
+ 'type' => 'text',
169
+ 'name' => 'fields['.$key.'][center_lat]',
170
+ 'value' => $field['center_lat'],
171
+ 'prepend' => 'lat',
172
+ 'placeholder' => $this->default_values['center_lat']
173
+ ));
174
+
175
+ ?>
176
+ </li>
177
+ <li style="width:48%; margin-left:4%;">
178
+ <?php
179
+
180
+ do_action('acf/create_field', array(
181
+ 'type' => 'text',
182
+ 'name' => 'fields['.$key.'][center_lng]',
183
+ 'value' => $field['center_lng'],
184
+ 'prepend' => 'lng',
185
+ 'placeholder' => $this->default_values['center_lng']
186
+ ));
187
+
188
+ ?>
189
+ </li>
190
+ </ul>
191
+
192
+ </td>
193
+ </tr>
194
+ <tr class="field_option field_option_<?php echo $this->name; ?>">
195
+ <td class="label">
196
+ <label><?php _e("Height",'acf'); ?></label>
197
+ <p class="description"><?php _e('Customise the map height','acf'); ?></p>
198
+ </td>
199
+ <td>
200
+ <?php
201
+
202
+ do_action('acf/create_field', array(
203
+ 'type' => 'number',
204
+ 'name' => 'fields['.$key.'][height]',
205
+ 'value' => $field['height'],
206
+ 'append' => 'px',
207
+ 'placeholder' => $this->default_values['height']
208
+ ));
209
+
210
+ ?>
211
+ </td>
212
+ </tr>
213
+ <?php
214
+
215
+ }
216
+ }
217
+
218
+ new acf_field_google_map();
219
+
220
+ ?>
core/fields/image.php CHANGED
@@ -232,6 +232,7 @@ class acf_field_image extends acf_field
232
  'title' => $attachment->post_title,
233
  'caption' => $attachment->post_excerpt,
234
  'description' => $attachment->post_content,
 
235
  'url' => $src[0],
236
  'width' => $src[1],
237
  'height' => $src[2],
232
  'title' => $attachment->post_title,
233
  'caption' => $attachment->post_excerpt,
234
  'description' => $attachment->post_content,
235
+ 'mime_type' => $attachment->post_mime_type,
236
  'url' => $src[0],
237
  'width' => $src[1],
238
  'height' => $src[2],
core/fields/post_object.php CHANGED
@@ -359,6 +359,44 @@ class acf_field_post_object extends acf_field
359
  }
360
 
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  /*
363
  * format_value_for_api()
364
  *
@@ -455,21 +493,28 @@ class acf_field_post_object extends acf_field
455
 
456
  function update_value( $value, $post_id, $field )
457
  {
458
- // object / array?
459
  if( is_object($value) && isset($value->ID) )
460
  {
 
461
  $value = $value->ID;
 
462
  }
463
- elseif( is_array($value) ){ foreach( $value as $k => $v ){
 
 
 
464
 
465
- // object?
466
- if( is_object($v) && isset($v->ID) )
467
- {
468
- $value[ $k ] = $v->ID;
 
469
  }
470
 
471
- }}
472
-
 
 
473
 
474
  return $value;
475
  }
359
  }
360
 
361
 
362
+ /*
363
+ * format_value()
364
+ *
365
+ * This filter is appied to the $value after it is loaded from the db and before it is passed to the create_field action
366
+ *
367
+ * @type filter
368
+ * @since 3.6
369
+ * @date 23/01/13
370
+ *
371
+ * @param $value - the value which was loaded from the database
372
+ * @param $post_id - the $post_id from which the value was loaded
373
+ * @param $field - the field array holding all the field options
374
+ *
375
+ * @return $value - the modified value
376
+ */
377
+
378
+ function format_value( $value, $post_id, $field )
379
+ {
380
+ // empty?
381
+ if( !empty($value) )
382
+ {
383
+ // convert to integers
384
+ if( is_array($value) )
385
+ {
386
+ $value = array_map('intval', $value);
387
+ }
388
+ else
389
+ {
390
+ $value = intval($value);
391
+ }
392
+ }
393
+
394
+
395
+ // return value
396
+ return $value;
397
+ }
398
+
399
+
400
  /*
401
  * format_value_for_api()
402
  *
493
 
494
  function update_value( $value, $post_id, $field )
495
  {
 
496
  if( is_object($value) && isset($value->ID) )
497
  {
498
+ // object
499
  $value = $value->ID;
500
+
501
  }
502
+ elseif( is_array($value) )
503
+ {
504
+ // array
505
+ foreach( $value as $k => $v ){
506
 
507
+ // object?
508
+ if( is_object($v) && isset($v->ID) )
509
+ {
510
+ $value[ $k ] = $v->ID;
511
+ }
512
  }
513
 
514
+ // save value as strings, so we can clearly search for them in SQL LIKE statements
515
+ $value = array_map('strval', $value);
516
+
517
+ }
518
 
519
  return $value;
520
  }
core/fields/relationship.php CHANGED
@@ -712,34 +712,27 @@ class acf_field_relationship extends acf_field
712
  function format_value( $value, $post_id, $field )
713
  {
714
  // empty?
715
- if( !$value )
716
- {
717
- return $value;
718
- }
719
-
720
-
721
- // Pre 3.3.3, the value is a string coma seperated
722
- if( is_string($value) )
723
- {
724
- $value = explode(',', $value);
725
- }
726
-
727
-
728
- // empty?
729
- if( !is_array($value) || empty($value) )
730
  {
731
- return $value;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
  }
733
 
734
 
735
- // convert to integers
736
- $value = array_map('intval', $value);
737
-
738
-
739
- // convert into post objects
740
- $value = $this->get_posts( $value );
741
-
742
-
743
  // return value
744
  return $value;
745
  }
@@ -877,17 +870,36 @@ class acf_field_relationship extends acf_field
877
 
878
  function update_value( $value, $post_id, $field )
879
  {
880
- // array?
881
- if( is_array($value) ){ foreach( $value as $k => $v ){
 
 
882
 
883
- // object?
884
- if( is_object($v) && isset($v->ID) )
885
- {
886
- $value[ $k ] = $v->ID;
 
 
 
 
 
 
 
 
 
 
 
 
 
887
  }
888
 
889
- }}
890
-
 
 
 
 
891
 
892
  return $value;
893
  }
712
  function format_value( $value, $post_id, $field )
713
  {
714
  // empty?
715
+ if( !empty($value) )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
716
  {
717
+ // Pre 3.3.3, the value is a string coma seperated
718
+ if( is_string($value) )
719
+ {
720
+ $value = explode(',', $value);
721
+ }
722
+
723
+
724
+ // convert to integers
725
+ if( is_array($value) )
726
+ {
727
+ $value = array_map('intval', $value);
728
+
729
+ // convert into post objects
730
+ $value = $this->get_posts( $value );
731
+ }
732
+
733
  }
734
 
735
 
 
 
 
 
 
 
 
 
736
  // return value
737
  return $value;
738
  }
870
 
871
  function update_value( $value, $post_id, $field )
872
  {
873
+ if( is_string($value) )
874
+ {
875
+ // string
876
+ $value = explode(',', $value);
877
 
878
+ }
879
+ elseif( is_object($value) && isset($value->ID) )
880
+ {
881
+ // object
882
+ $value = array( $value->ID );
883
+
884
+ }
885
+ elseif( is_array($value) )
886
+ {
887
+ // array
888
+ foreach( $value as $k => $v ){
889
+
890
+ // object?
891
+ if( is_object($v) && isset($v->ID) )
892
+ {
893
+ $value[ $k ] = $v->ID;
894
+ }
895
  }
896
 
897
+ }
898
+
899
+
900
+ // save value as strings, so we can clearly search for them in SQL LIKE statements
901
+ $value = array_map('strval', $value);
902
+
903
 
904
  return $value;
905
  }
core/fields/taxonomy.php CHANGED
@@ -200,6 +200,17 @@ class acf_field_taxonomy extends acf_field
200
  $field['value'] = array( $field['value'] );
201
  }
202
 
 
 
 
 
 
 
 
 
 
 
 
203
  ?>
204
  <div class="acf-taxonomy-field">
205
  <input type="hidden" name="<?php echo $single_name; ?>" value="" />
@@ -213,7 +224,7 @@ class acf_field_taxonomy extends acf_field
213
 
214
  <?php else: ?>
215
  <div class="categorychecklist-holder">
216
- <ul class="categorychecklist">
217
  <?php if( $field['allow_null'] ): ?>
218
  <li>
219
  <label class="selectit">
@@ -224,16 +235,7 @@ class acf_field_taxonomy extends acf_field
224
 
225
  <?php endif; ?>
226
 
227
- <?php
228
-
229
- wp_list_categories( array(
230
- 'taxonomy' => $field['taxonomy'],
231
- 'hide_empty' => false,
232
- 'style' => 'none',
233
- 'walker' => new acf_taxonomy_field_walker( $field ),
234
- ));
235
-
236
- ?>
237
 
238
  <?php if( $field['field_type'] == 'select' ): ?>
239
 
200
  $field['value'] = array( $field['value'] );
201
  }
202
 
203
+
204
+ // vars
205
+ $args = array(
206
+ 'taxonomy' => $field['taxonomy'],
207
+ 'hide_empty' => false,
208
+ 'style' => 'none',
209
+ 'walker' => new acf_taxonomy_field_walker( $field ),
210
+ );
211
+
212
+ $args = apply_filters('acf/fields/taxonomy/wp_list_categories', $args, $field );
213
+
214
  ?>
215
  <div class="acf-taxonomy-field">
216
  <input type="hidden" name="<?php echo $single_name; ?>" value="" />
224
 
225
  <?php else: ?>
226
  <div class="categorychecklist-holder">
227
+ <ul class="categorychecklist<?php if( !$field['load_save_terms'] ){ echo ' no-ajax'; } ?>">
228
  <?php if( $field['allow_null'] ): ?>
229
  <li>
230
  <label class="selectit">
235
 
236
  <?php endif; ?>
237
 
238
+ <?php wp_list_categories( $args ); ?>
 
 
 
 
 
 
 
 
 
239
 
240
  <?php if( $field['field_type'] == 'select' ): ?>
241
 
core/fields/true_false.php CHANGED
@@ -45,7 +45,7 @@ class acf_field_true_false extends acf_field
45
  function create_field( $field )
46
  {
47
  // html
48
- echo '<ul class="checkbox_list ' . $field['class'] . '">';
49
  echo '<input type="hidden" name="'.$field['name'].'" value="0" />';
50
  $selected = ($field['value'] == 1) ? 'checked="yes"' : '';
51
  echo '<li><label><input id="' . $field['id'] . '-1" type="checkbox" name="'.$field['name'].'" value="1" ' . $selected . ' />' . $field['message'] . '</label></li>';
45
  function create_field( $field )
46
  {
47
  // html
48
+ echo '<ul class="acf-checkbox-list ' . $field['class'] . '">';
49
  echo '<input type="hidden" name="'.$field['name'].'" value="0" />';
50
  $selected = ($field['value'] == 1) ? 'checked="yes"' : '';
51
  echo '<li><label><input id="' . $field['id'] . '-1" type="checkbox" name="'.$field['name'].'" value="1" ' . $selected . ' />' . $field['message'] . '</label></li>';
core/fields/wysiwyg.php CHANGED
@@ -1,5 +1,21 @@
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  class acf_field_wysiwyg extends acf_field
4
  {
5
 
@@ -254,25 +270,6 @@ class acf_field_wysiwyg extends acf_field
254
 
255
  function format_value_for_api( $value, $post_id, $field )
256
  {
257
-
258
- // shortcode / wp_embed
259
- if( isset($GLOBALS['wp_embed']) )
260
- {
261
- add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'run_shortcode' ), 8 );
262
- add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );
263
- }
264
-
265
-
266
- // the_content filters
267
- add_filter( 'acf_the_content', 'capital_P_dangit', 11 );
268
- add_filter( 'acf_the_content', 'wptexturize' );
269
- add_filter( 'acf_the_content', 'convert_smilies' );
270
- add_filter( 'acf_the_content', 'convert_chars' );
271
- add_filter( 'acf_the_content', 'wpautop' );
272
- add_filter( 'acf_the_content', 'shortcode_unautop' );
273
- add_filter( 'acf_the_content', 'do_shortcode', 11);
274
-
275
-
276
  // apply filters
277
  $value = apply_filters( 'acf_the_content', $value );
278
 
@@ -286,8 +283,6 @@ class acf_field_wysiwyg extends acf_field
286
 
287
  }
288
 
289
-
290
-
291
  new acf_field_wysiwyg();
292
 
293
  ?>
1
  <?php
2
 
3
+ // Create an acf version of the_content filter (acf_the_content)
4
+ if( isset($GLOBALS['wp_embed']) )
5
+ {
6
+ add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'run_shortcode' ), 8 );
7
+ add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );
8
+ }
9
+
10
+ add_filter( 'acf_the_content', 'capital_P_dangit', 11 );
11
+ add_filter( 'acf_the_content', 'wptexturize' );
12
+ add_filter( 'acf_the_content', 'convert_smilies' );
13
+ add_filter( 'acf_the_content', 'convert_chars' );
14
+ add_filter( 'acf_the_content', 'wpautop' );
15
+ add_filter( 'acf_the_content', 'shortcode_unautop' );
16
+ add_filter( 'acf_the_content', 'do_shortcode', 11);
17
+
18
+
19
  class acf_field_wysiwyg extends acf_field
20
  {
21
 
270
 
271
  function format_value_for_api( $value, $post_id, $field )
272
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  // apply filters
274
  $value = apply_filters( 'acf_the_content', $value );
275
 
283
 
284
  }
285
 
 
 
286
  new acf_field_wysiwyg();
287
 
288
  ?>
core/views/meta_box_fields.php CHANGED
@@ -56,25 +56,11 @@ $conditional_logic_rule = array(
56
  );
57
 
58
  $error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
59
-
60
-
61
- // l10n
62
- $l10n = array(
63
- 'move_to_trash' => __("Move to trash. Are you sure?",'acf'),
64
- 'checked' => __("checked",'acf'),
65
- 'conditional_no_fields' => __("No toggle fields available",'acf'),
66
- 'title' => __("Field group title is required",'acf'),
67
- 'copy' => __("copy",'acf'),
68
- 'or' => __("or",'acf')
69
- );
70
 
71
  ?>
72
 
73
  <!-- Hidden Fields -->
74
  <div style="display:none;">
75
- <script type="text/javascript">
76
- acf.l10n = <?php echo json_encode( $l10n ); ?>;
77
- </script>
78
  <input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'field_group' ); ?>" />
79
  </div>
80
  <!-- / Hidden Fields -->
56
  );
57
 
58
  $error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  ?>
61
 
62
  <!-- Hidden Fields -->
63
  <div style="display:none;">
 
 
 
64
  <input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'field_group' ); ?>" />
65
  </div>
66
  <!-- / Hidden Fields -->
core/views/meta_box_location.php CHANGED
@@ -90,7 +90,7 @@ if( empty($groups) )
90
  ),
91
  __("Other",'acf') => array(
92
  'ef_media' => __("Attachment",'acf'),
93
- 'ef_taxonomy' => __("Term",'acf'),
94
  'ef_user' => __("User",'acf'),
95
  )
96
  );
90
  ),
91
  __("Other",'acf') => array(
92
  'ef_media' => __("Attachment",'acf'),
93
+ 'ef_taxonomy' => __("Taxonomy Term",'acf'),
94
  'ef_user' => __("User",'acf'),
95
  )
96
  );
core/views/meta_box_options.php CHANGED
@@ -79,7 +79,7 @@ $options = apply_filters('acf/field_group/get_options', array(), $post->ID);
79
  ?>
80
  </td>
81
  </tr>
82
- <tr>
83
  <td class="label">
84
  <label for="post_type"><?php _e("Hide on screen",'acf'); ?></label>
85
  <p class="description"><?php _e("<b>Select</b> items to <b>hide</b> them from the edit screen",'acf'); ?></p>
79
  ?>
80
  </td>
81
  </tr>
82
+ <tr id="hide-on-screen">
83
  <td class="label">
84
  <label for="post_type"><?php _e("Hide on screen",'acf'); ?></label>
85
  <p class="description"><?php _e("<b>Select</b> items to <b>hide</b> them from the edit screen",'acf'); ?></p>
css/acf.css CHANGED
@@ -166,13 +166,11 @@ body.custom-fields_page_acf-settings .wp-pointer-arrow {
166
  padding-left: 4px;
167
  }
168
 
169
- #add-ons .add-on-active .tick {
170
  width: 14px;
171
  height: 14px;
172
- display: block;
173
- float: left;
174
  margin: 4px 5px 0 0;
175
- background: url(../images/sprite.png) -18px -318px no-repeat;
176
  }
177
 
178
  #add-ons .add-on-title {
@@ -365,8 +363,7 @@ only screen and ( min-resolution: 192dpi),
365
  only screen and ( min-resolution: 2dppx) {
366
 
367
  #icon-edit,
368
- #icon-acf,
369
- #add-ons .add-on.active .tick {
370
  background-image: url(../images/sprite@2x.png);
371
  background-size: 100px 600px;
372
  }
166
  padding-left: 4px;
167
  }
168
 
169
+ .acf-sprite-tick {
170
  width: 14px;
171
  height: 14px;
 
 
172
  margin: 4px 5px 0 0;
173
+ background-position: 0px -300px;
174
  }
175
 
176
  #add-ons .add-on-title {
363
  only screen and ( min-resolution: 2dppx) {
364
 
365
  #icon-edit,
366
+ #icon-acf {
 
367
  background-image: url(../images/sprite@2x.png);
368
  background-size: 100px 600px;
369
  }
css/field-group.css CHANGED
@@ -538,17 +538,17 @@ table.acf-rules tbody .acf-loading {
538
  padding-left: 4px;
539
  }
540
 
541
- .postbox#acf_options ul.checkbox_list {
542
  display: block;
543
  float: left;
544
  width: 300px;
545
  }
546
 
547
- .postbox#acf_options ul.checkbox_list li {
548
  display: block;
549
  }
550
 
551
- ul.checkbox_list li input {
552
  margin: 2px 5px 0 0;
553
  vertical-align: top;
554
  }
538
  padding-left: 4px;
539
  }
540
 
541
+ .postbox#acf_options ul.acf-checkbox-list {
542
  display: block;
543
  float: left;
544
  width: 300px;
545
  }
546
 
547
+ .postbox#acf_options ul.acf-checkbox-list li {
548
  display: block;
549
  }
550
 
551
+ ul.acf-checkbox-list li input {
552
  margin: 2px 5px 0 0;
553
  vertical-align: top;
554
  }
css/global.css CHANGED
@@ -105,9 +105,19 @@ input.ir { border: 0 none; background: none; }
105
  margin-left: 5px;
106
  }
107
 
 
 
 
 
 
 
 
 
 
 
108
 
109
- /* Input append / prepend */
110
 
 
111
  .acf-input-prepend,
112
  .acf-input-append {
113
  font-size: 12px;
@@ -364,7 +374,7 @@ table.acf_input select:focus {
364
 
365
 
366
  ul.acf-radio-list,
367
- ul.checkbox_list {
368
  background: transparent !important;
369
  position: relative;
370
  display: block;
@@ -373,18 +383,18 @@ ul.checkbox_list {
373
  }
374
 
375
  ul.acf-radio-list.horizontal,
376
- ul.checkbox_list.horizontal {
377
  overflow: hidden;
378
  }
379
 
380
  ul.acf-radio-list.horizontal li,
381
- ul.checkbox_list.horizontal li {
382
  float: left;
383
  margin-right: 20px;
384
  }
385
 
386
  ul.acf-radio-list li input,
387
- ul.checkbox_list li input {
388
  margin-top: -1px;
389
  margin-right: 5px !important;
390
  width: auto !important;
@@ -491,6 +501,10 @@ a.acf-button-big {
491
  padding: 13px;
492
  }
493
 
 
 
 
 
494
  /*--------------------------------------------------------------------------
495
  *
496
  * ACF add / remove
@@ -592,7 +606,9 @@ only screen and ( min-resolution: 2dppx) {
592
  .acf-button-add,
593
  .acf-button-remove,
594
  .acf-button-edit,
595
- .acf-button-delete {
 
 
596
  background-image: url(../images/sprite@2x.png);
597
  background-size: 100px 600px;
598
  }
105
  margin-left: 5px;
106
  }
107
 
108
+ /* icon */
109
+ [class^="acf-sprite"],
110
+ [class*=" acf-sprite"] {
111
+ display: block;
112
+ width: 16px;
113
+ height: 16px;
114
+ float: left;
115
+ background: url(../images/sprite.png);
116
+ margin: 0;
117
+ }
118
 
 
119
 
120
+ /* Input append / prepend */
121
  .acf-input-prepend,
122
  .acf-input-append {
123
  font-size: 12px;
374
 
375
 
376
  ul.acf-radio-list,
377
+ ul.acf-checkbox-list {
378
  background: transparent !important;
379
  position: relative;
380
  display: block;
383
  }
384
 
385
  ul.acf-radio-list.horizontal,
386
+ ul.acf-checkbox-list.horizontal {
387
  overflow: hidden;
388
  }
389
 
390
  ul.acf-radio-list.horizontal li,
391
+ ul.acf-checkbox-list.horizontal li {
392
  float: left;
393
  margin-right: 20px;
394
  }
395
 
396
  ul.acf-radio-list li input,
397
+ ul.acf-checkbox-list li input {
398
  margin-top: -1px;
399
  margin-right: 5px !important;
400
  width: auto !important;
501
  padding: 13px;
502
  }
503
 
504
+ div.error a.acf-button {
505
+ color: #fff;
506
+ }
507
+
508
  /*--------------------------------------------------------------------------
509
  *
510
  * ACF add / remove
606
  .acf-button-add,
607
  .acf-button-remove,
608
  .acf-button-edit,
609
+ .acf-button-delete,
610
+ [class^="acf-sprite"],
611
+ [class*=" acf-sprite"] {
612
  background-image: url(../images/sprite@2x.png);
613
  background-size: 100px 600px;
614
  }
css/input.css CHANGED
@@ -42,18 +42,20 @@
42
 
43
  .acf_postbox .field {
44
  position: relative;
45
- padding: 15px 10px;
46
- border-bottom: #e8e8e8 solid 1px;
47
  color: #333333;
48
  }
49
 
50
- .acf_postbox .field:last-child {
51
- border-bottom: none;
 
 
 
 
 
52
  }
53
 
54
- .acf_postbox.no_box .field {
55
  border-top: 0 none;
56
- border-bottom: 0 none;
57
  padding-left: 0;
58
  padding-right: 0;
59
  }
@@ -61,29 +63,58 @@
61
 
62
  /* Field Error */
63
  .acf_postbox .field.error {
64
- margin: 0;
65
  border: #CC0000 solid 1px !important;
66
- border-radius: 0;
67
  }
68
 
69
- .acf_postbox.no_box .field.error {
70
- padding-left: 10px;
71
- padding-right: 10px;
72
- }
73
-
 
 
 
 
 
 
 
 
 
 
 
74
 
75
- .acf_postbox .field.error + .error {
76
- border-top: 0 none !important;
 
 
 
 
 
 
 
 
77
  }
78
 
79
- .acf_postbox .field.error:last-child {
80
- border-bottom: #CC0000 solid 1px;
81
  }
82
 
83
  .acf_postbox .field.error label.field_label {
84
  color: #CC0000;
85
  }
86
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
  /* Field Label */
89
  .acf_postbox p.label {
@@ -643,11 +674,11 @@
643
  padding-left: 6px;
644
  }
645
 
646
- ul.checkbox_list {
647
  background: transparent !important;
648
  }
649
 
650
- #createuser ul.checkbox_list input {
651
  width: auto;
652
  }
653
 
@@ -939,10 +970,10 @@ td.acf_input-wrap {
939
 
940
  .field_type-tab {
941
  display: none !important;
942
-
943
  }
944
 
945
  .acf-tab-group {
 
946
  border-bottom: #DFDFDF solid 1px;
947
  margin: 0 0 10px;
948
  padding: 10px 4px 0 10px;
@@ -986,6 +1017,9 @@ td.acf_input-wrap {
986
  border-bottom-color: #F7F7F7;
987
  }
988
 
 
 
 
989
 
990
 
991
  /*
@@ -994,6 +1028,7 @@ td.acf_input-wrap {
994
 
995
  .acf_postbox.no_box .acf-tab-group {
996
  padding-left: 0;
 
997
  border-bottom-color: #CCC;
998
  background: transparent;
999
  }
@@ -1060,13 +1095,38 @@ tr.acf-tab_group-show {
1060
  *
1061
  *-------------------------------------------------------------------------*/
1062
 
 
1063
  .acf-conditional_logic-show {
1064
  display: block;
1065
  }
 
1066
  tr.acf-conditional_logic-show {
1067
  display: table-row;
1068
  }
1069
- .acf-conditional_logic-hide {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1070
  display: none;
1071
  }
1072
 
@@ -1127,6 +1187,96 @@ tr.acf-conditional_logic-show {
1127
  padding: 0 10px 1px;
1128
  }
1129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  /*--------------------------------------------------------------------------
1131
  *
1132
  * Retina
42
 
43
  .acf_postbox .field {
44
  position: relative;
 
 
45
  color: #333333;
46
  }
47
 
48
+ .acf_postbox > .inside > .field {
49
+ padding: 15px 10px;
50
+ border-top: #e8e8e8 solid 1px;
51
+ }
52
+
53
+ .acf_postbox > .inside > .field:first-child {
54
+ border-top: none;
55
  }
56
 
57
+ .acf_postbox.no_box > .inside > .field {
58
  border-top: 0 none;
 
59
  padding-left: 0;
60
  padding-right: 0;
61
  }
63
 
64
  /* Field Error */
65
  .acf_postbox .field.error {
 
66
  border: #CC0000 solid 1px !important;
67
+ background: #FFEBE8 !important;
68
  }
69
 
70
+ .acf_postbox .field .acf-error-message {
71
+ display: none;
72
+ position: relative;
73
+
74
+ background: #CC0000;
75
+ color: #fff;
76
+ text-shadow: none;
77
+
78
+ border-radius: 3px;
79
+ padding: 5px 10px;
80
+
81
+ font-size: 12px;
82
+ line-height: 14px;
83
+
84
+ margin: 5px 0 0;
85
+ }
86
 
87
+ .acf_postbox .field .acf-error-message .bit {
88
+ width: 0;
89
+ height: 0;
90
+ border: transparent 5px solid;
91
+ border-bottom-color: #CC0000;
92
+
93
+ display: block;
94
+ position: absolute;
95
+ top: -10px;
96
+ left: 10px;
97
  }
98
 
99
+ .acf_postbox .field.error .acf-error-message {
100
+ display: inline-block;
101
  }
102
 
103
  .acf_postbox .field.error label.field_label {
104
  color: #CC0000;
105
  }
106
 
107
+ .acf_postbox.no_box > .inside > .field.error {
108
+ padding-left: 10px;
109
+ padding-right: 10px;
110
+ }
111
+
112
+ .acf_postbox > .inside > .field.error + .field.error {
113
+ border-top: 0 none !important;
114
+ }
115
+
116
+
117
+
118
 
119
  /* Field Label */
120
  .acf_postbox p.label {
674
  padding-left: 6px;
675
  }
676
 
677
+ ul.acf-checkbox-list {
678
  background: transparent !important;
679
  }
680
 
681
+ #createuser ul.acf-checkbox-list input {
682
  width: auto;
683
  }
684
 
970
 
971
  .field_type-tab {
972
  display: none !important;
 
973
  }
974
 
975
  .acf-tab-group {
976
+ border-top: #E8E8E8 solid 1px;
977
  border-bottom: #DFDFDF solid 1px;
978
  margin: 0 0 10px;
979
  padding: 10px 4px 0 10px;
1017
  border-bottom-color: #F7F7F7;
1018
  }
1019
 
1020
+ .acf_postbox > .inside > .field_type-tab + .field {
1021
+ border-top: 0 none;
1022
+ }
1023
 
1024
 
1025
  /*
1028
 
1029
  .acf_postbox.no_box .acf-tab-group {
1030
  padding-left: 0;
1031
+ border-top: 0 none;
1032
  border-bottom-color: #CCC;
1033
  background: transparent;
1034
  }
1095
  *
1096
  *-------------------------------------------------------------------------*/
1097
 
1098
+ /* Show */
1099
  .acf-conditional_logic-show {
1100
  display: block;
1101
  }
1102
+
1103
  tr.acf-conditional_logic-show {
1104
  display: table-row;
1105
  }
1106
+
1107
+ td.acf-conditional_logic-show,
1108
+ th.acf-conditional_logic-show {
1109
+ display: table-cell;
1110
+ }
1111
+
1112
+
1113
+ /* Hide */
1114
+ .acf-conditional_logic-hide,
1115
+ tr.acf-conditional_logic-hide,
1116
+ td.acf-conditional_logic-hide,
1117
+ th.acf-conditional_logic-hide {
1118
+ display: none;
1119
+ }
1120
+
1121
+
1122
+ /* Hide (show blank) */
1123
+ td.acf-conditional_logic-hide.acf-show-blank,
1124
+ th.acf-conditional_logic-hide.acf-show-blank {
1125
+ display: table-cell;
1126
+ }
1127
+
1128
+ td.acf-conditional_logic-hide.acf-show-blank .inner,
1129
+ th.acf-conditional_logic-hide.acf-show-blank .inner {
1130
  display: none;
1131
  }
1132
 
1187
  padding: 0 10px 1px;
1188
  }
1189
 
1190
+
1191
+ /*--------------------------------------------------------------------------
1192
+ *
1193
+ * Field: Location
1194
+ *
1195
+ *-------------------------------------------------------------------------*/
1196
+
1197
+ .acf-google-map {
1198
+ position: relative;
1199
+ border: #DFDFDF solid 1px;
1200
+ background: #fff;
1201
+ }
1202
+
1203
+ .acf-google-map .title {
1204
+ position: relative;
1205
+ border-bottom: #DFDFDF solid 1px;
1206
+ }
1207
+
1208
+ .acf-google-map .has-value { display: none; }
1209
+ .acf-google-map .no-value { display: block; }
1210
+
1211
+ .acf-google-map.active .has-value { display: block; }
1212
+ .acf-google-map.active .no-value { display: none; }
1213
+
1214
+ .acf-google-map .title h4,
1215
+ .acf-google-map .title input[type="text"] {
1216
+ margin: 0;
1217
+ font-size: 12px;
1218
+ line-height: 16px;
1219
+ padding: 10px;
1220
+ border: 0 none;
1221
+ box-shadow: none;
1222
+ border-radius: 0;
1223
+ font-family: inherit;
1224
+ cursor: text;
1225
+ }
1226
+
1227
+ .acf-google-map .title input[type="text"] {
1228
+ height: 36px;
1229
+ line-height: normal;
1230
+ }
1231
+
1232
+ .acf-google-map .title .search {
1233
+ height: auto;
1234
+ border: 0 none;
1235
+ }
1236
+
1237
+ .acf-google-map .acf-sprite-remove,
1238
+ .acf-google-map .acf-sprite-locate {
1239
+ right: 7px;
1240
+ top: 7px;
1241
+ position: absolute;
1242
+ }
1243
+
1244
+ .acf-google-map .acf-sprite-remove {
1245
+ background-position: -71px -221px;
1246
+ height: 9px;
1247
+ width: 9px;
1248
+ border: 6px solid transparent;
1249
+ }
1250
+ .acf-google-map .acf-sprite-remove:hover { background-position: -71px -271px; }
1251
+
1252
+ .acf-google-map .acf-sprite-locate {
1253
+ background-position: -50px -300px;
1254
+ width: 13px;
1255
+ height: 13px;
1256
+ border: 5px solid transparent;
1257
+ }
1258
+ .acf-google-map .acf-sprite-locate:hover { background-position: -50px -350px; }
1259
+
1260
+ .acf-google-map .canvas {
1261
+ height: 400px;
1262
+ }
1263
+
1264
+ .pac-container {
1265
+ margin-left: -1px;
1266
+ margin-top: -1px;
1267
+ padding: 5px 0;
1268
+ border-color: #DFDFDF;
1269
+ }
1270
+
1271
+ .pac-container:after {
1272
+ display: none;
1273
+ }
1274
+
1275
+ .pac-container .pac-item {
1276
+ padding: 5px;
1277
+ margin: 0 5px;
1278
+ }
1279
+
1280
  /*--------------------------------------------------------------------------
1281
  *
1282
  * Retina
images/brand-hero-default.png DELETED
Binary file
images/button_add.png DELETED
Binary file
images/button_remove.png DELETED
Binary file
images/sprite.png CHANGED
Binary file
images/sprite@2x.png CHANGED
Binary file
js/field-group.js CHANGED
@@ -1,29 +1,37 @@
 
 
 
 
 
 
 
 
 
1
  var acf = {
2
- post_id : 0,
3
- nonce : '',
4
- admin_url : '',
5
- ajaxurl : '',
6
- text : {},
7
- l10n : {},
8
- helpers : {
9
- uniqid : function(){},
10
- sortable : function(){},
11
- create_field : function(){}
12
- },
13
- conditional_logic : {
14
- fields : [],
15
- setup : function(){}
 
16
  },
17
- location : {
18
- $el : null,
19
- init : function(){},
20
- add_rule : function(){},
21
- remove_rule : function(){},
22
- add_group : function(){},
23
- remove_group : function(){}
24
- }
25
  };
26
 
 
27
  (function($){
28
 
29
 
@@ -323,20 +331,20 @@ var acf = {
323
 
324
  $(document).on('click', '#acf_fields a.acf_edit_field', function(){
325
 
326
- var field = $(this).closest('.field');
327
 
328
- if( field.hasClass('form_open') )
329
  {
330
- field.removeClass('form_open');
331
- $(document).trigger('acf/field_form-close', field);
332
  }
333
  else
334
  {
335
- field.addClass('form_open');
336
- $(document).trigger('acf/field_form-open', field);
337
  }
338
 
339
- field.children('.field_form_mask').animate({'height':'toggle'}, 250);
340
 
341
  });
342
 
@@ -646,6 +654,8 @@ var acf = {
646
 
647
  acf.location.init();
648
 
 
 
649
  });
650
 
651
 
@@ -843,6 +853,32 @@ var acf = {
843
  $('#submitdiv #publish').attr('class', 'acf-button');
844
  $('#submitdiv a.submitdelete').attr('class', 'delete-field-group').attr('id', 'submit-delete');
845
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  });
847
 
848
 
@@ -869,7 +905,7 @@ var acf = {
869
 
870
 
871
  /*
872
- * Conditional Logic
873
  *
874
  * @description:
875
  * @since 3.5.1
@@ -880,10 +916,10 @@ var acf = {
880
 
881
  // dafaults
882
  var defaults = {
883
- 'type' : 'text',
884
- 'classname' : '',
885
- 'name' : '',
886
- 'value' : ''
887
  };
888
  options = $.extend(true, defaults, options);
889
 
@@ -897,19 +933,68 @@ var acf = {
897
  }
898
  else if( options.type == "select" )
899
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
900
  html += '<select class="select ' + options.classname + '" id="' + options.name + '" name="' + options.name + '">';
901
- if( options.choices )
902
- {
903
- for( var i = 0; i < options.choices.length; i++ )
 
 
904
  {
 
 
 
 
 
 
 
905
  var attr = '';
906
- if( options.choices[i].value == options.value )
 
907
  {
908
  attr = 'selected="selected"';
909
  }
910
- html += '<option ' + attr + ' value="' + options.choices[i].value + '">' + options.choices[i].label + '</option>';
 
 
 
 
 
 
 
 
 
911
  }
912
- }
 
 
 
913
  html += '</select>';
914
  }
915
 
@@ -919,268 +1004,315 @@ var acf = {
919
 
920
  };
921
 
922
- $(document).on('acf/field_form-open', function(e, field){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
923
 
924
- // populate fields
925
- acf.conditional_logic.setup();
 
 
 
 
 
926
 
 
 
 
 
 
 
 
927
 
928
- $(field).find('.conditional-logic-field').each(function(){
929
 
930
- var val = $(this).val(),
931
- name = $(this).attr('name'),
932
- choices = [];
933
 
934
 
935
- // populate choices
936
- if( acf.conditional_logic.fields )
937
- {
938
- for( var i = 0; i < acf.conditional_logic.fields.length; i++ )
939
- {
940
- choices.push({
941
- value : acf.conditional_logic.fields[i].id,
942
- label : acf.conditional_logic.fields[i].label
943
- });
944
- }
945
- }
946
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
 
948
  // empty?
949
  if( choices.length == 0 )
950
  {
951
  choices.push({
952
  'value' : 'null',
953
- 'label' : acf.l10n.conditional_no_fields
954
  });
955
  }
956
-
957
 
958
- // create select
959
- var select = acf.helpers.create_field({
960
- 'type' : 'select',
961
- 'classname' : 'conditional-logic-field',
962
- 'name' : name,
963
- 'value' : val,
964
- 'choices' : choices
965
- });
966
 
967
-
968
- $(this).replaceWith( select );
969
 
970
- select.trigger('change');
 
971
 
972
- });
973
-
974
- });
975
-
976
-
977
-
978
- /*
979
- * Toggle Conditional Logic
980
- *
981
- * @description:
982
- * @since 3.5.1
983
- * @created: 14/10/12
984
- */
985
-
986
- $(document).on('change', 'tr.conditional-logic input[type="radio"]', function(){
987
-
988
- if( $(this).val() == "1" )
989
- {
990
- $(this).closest('tr.conditional-logic').find('.contional-logic-rules-wrapper').show();
991
- }
992
- else
993
- {
994
- $(this).closest('tr.conditional-logic').find('.contional-logic-rules-wrapper').hide();
995
- }
996
-
997
- });
998
-
999
-
1000
- /*
1001
- * Conditional logic: Change field
1002
- *
1003
- * @description:
1004
- * @since 3.5.1
1005
- * @created: 14/10/12
1006
- */
1007
-
1008
- $(document).on('change', 'select.conditional-logic-field', function(){
1009
 
1010
- // vars
1011
- var id = $(this).val(),
1012
- field = $('#acf_fields .field_key-' + id),
1013
- type = field.attr('data-type'),
1014
- conditional_function = $(this).closest('tr').find('.conditional-logic-value'),
1015
- choices = [];
1016
 
 
 
 
 
 
 
 
 
 
 
1017
 
1018
- // populate choices
1019
- if( type == "true_false" )
1020
- {
1021
- choices = [
1022
- { value : 1, label : acf.l10n.checked }
1023
- ];
1024
-
1025
- }
1026
- else if( type == "select" || type == "checkbox" || type == "radio" )
1027
- {
1028
- var field_choices = field.find('.field_option-choices').val().split("\n");
1029
-
1030
- if( field_choices )
 
 
 
 
 
 
1031
  {
1032
- for( var i = 0; i < field_choices.length; i++ )
 
 
1033
  {
1034
- var choice = field_choices[i].split(':');
1035
-
1036
- var label = choice[0];
1037
- if( choice[1] )
1038
  {
1039
- label = choice[1];
 
 
 
 
 
 
 
 
 
 
 
 
1040
  }
1041
-
1042
- choices.push({
1043
- 'value' : $.trim( choice[0] ),
1044
- 'label' : $.trim( label )
1045
- });
1046
-
1047
  }
 
1048
  }
1049
 
1050
- }
1051
-
1052
-
1053
- // create select
1054
- var select = acf.helpers.create_field({
1055
- 'type' : 'select',
1056
- 'classname' : 'conditional-logic-value',
1057
- 'name' : conditional_function.attr('name'),
1058
- 'value' : conditional_function.val(),
1059
- 'choices' : choices
1060
- });
1061
-
1062
- conditional_function.replaceWith( select );
1063
-
1064
-
1065
- });
1066
-
1067
-
1068
-
1069
- /*
1070
- * setup_conditional_fields
1071
- *
1072
- * @description: populates the acf object with all available fields
1073
- * @since 3.5.1
1074
- * @created: 15/10/12
1075
- */
1076
-
1077
- acf.conditional_logic.setup = function()
1078
- {
1079
- // reset
1080
- acf.conditional_logic.fields = [];
1081
-
1082
 
1083
- // loop through fields
1084
- $('#acf_fields > .inside > .fields > .field:not(.field_key-field_clone)').each(function(){
1085
 
1086
- var field = $(this),
1087
- id = field.attr('data-id'),
1088
- //key = field.children('.input-field_key').val(),
1089
- type = field.attr('data-type'),
1090
- label = field.find('tr.field_label input').val();
1091
 
1092
 
1093
- if( type == 'select' || type == 'checkbox' || type == 'true_false' || type == 'radio' )
1094
- {
1095
- acf.conditional_logic.fields.push({
1096
- id : id,
1097
- type : type,
1098
- label : label
1099
- });
1100
- }
 
 
 
 
 
 
 
1101
 
1102
 
1103
- });
1104
-
1105
- };
1106
-
1107
-
1108
- /*
1109
- * Add conditional rule
1110
- *
1111
- * @description:
1112
- * @since 3.5.1
1113
- * @created: 15/10/12
1114
- */
1115
-
1116
- $(document).on('click', 'tr.conditional-logic .acf-button-add', function(){
1117
-
1118
- // vars
1119
- var old_tr = $(this).closest('tr'),
1120
- new_tr = old_tr.clone(),
1121
- old_i = parseFloat( new_tr.attr('data-i') ),
1122
- new_i = old_i + 1;
1123
 
 
 
 
1124
 
1125
- // update names
1126
- new_tr.find('[name]').each(function(){
 
 
 
1127
 
1128
- $(this).attr('name', $(this).attr('name').replace('[' + old_i + ']', '[' + new_i + ']') );
1129
- $(this).attr('id', $(this).attr('id').replace('[' + old_i + ']', '[' + new_i + ']') );
1130
 
1131
- });
 
1132
 
1133
 
1134
- // update data-i
1135
- new_tr.attr('data-i', new_i);
1136
-
1137
-
1138
- // add tr
1139
- old_tr.after( new_tr );
1140
-
1141
-
1142
- // remove disabled
1143
- old_tr.closest('table').removeClass('remove-disabled');
1144
-
1145
-
1146
- return false;
1147
 
1148
- });
1149
 
1150
 
1151
- /*
1152
- * Remove conditional rule
1153
- *
1154
- * @description:
1155
- * @since 3.5.1
1156
- * @created: 15/10/12
1157
- */
1158
-
1159
- $(document).on('click', 'tr.conditional-logic .acf-button-remove', function(){
1160
-
1161
- var table = $(this).closest('table');
1162
-
1163
- // validate
1164
- if( table.hasClass('remove-disabled') )
1165
- {
1166
- return false;
1167
- }
1168
-
1169
-
1170
- // remove tr
1171
- $(this).closest('tr').remove();
1172
-
1173
-
1174
- // add clas to table
1175
- if( table.find('tr').length <= 1 )
1176
- {
1177
- table.addClass('remove-disabled');
1178
- }
1179
-
1180
-
1181
- return false;
1182
-
1183
- });
1184
 
1185
 
1186
  /*
1
+ /*
2
+ * field-group.js
3
+ *
4
+ * All javascript needed to create a field group
5
+ *
6
+ * @type JS
7
+ * @date 1/08/13
8
+ */
9
+
10
  var acf = {
11
+
12
+ // vars
13
+ ajaxurl : '',
14
+ admin_url : '',
15
+ post_id : 0,
16
+ nonce : '',
17
+ l10n : {},
18
+ text : {},
19
+
20
+
21
+ // helper functions
22
+ helpers : {
23
+ uniqid : null,
24
+ sortable : null,
25
+ create_field : null
26
  },
27
+
28
+
29
+ // modules
30
+ conditional_logic : null,
31
+ location : null
 
 
 
32
  };
33
 
34
+
35
  (function($){
36
 
37
 
331
 
332
  $(document).on('click', '#acf_fields a.acf_edit_field', function(){
333
 
334
+ var $field = $(this).closest('.field');
335
 
336
+ if( $field.hasClass('form_open') )
337
  {
338
+ $field.removeClass('form_open');
339
+ $(document).trigger('acf/field_form-close', [ $field ]);
340
  }
341
  else
342
  {
343
+ $field.addClass('form_open');
344
+ $(document).trigger('acf/field_form-open', [ $field ]);
345
  }
346
 
347
+ $field.children('.field_form_mask').animate({'height':'toggle'}, 250);
348
 
349
  });
350
 
654
 
655
  acf.location.init();
656
 
657
+ acf.conditional_logic.init();
658
+
659
  });
660
 
661
 
853
  $('#submitdiv #publish').attr('class', 'acf-button');
854
  $('#submitdiv a.submitdelete').attr('class', 'delete-field-group').attr('id', 'submit-delete');
855
 
856
+
857
+ // hide on screen toggle
858
+ var $ul = $('#hide-on-screen ul.acf-checkbox-list'),
859
+ $li = $('<li><label><input type="checkbox" value="" name="" >' + acf.l10n.hide_show_all + '</label></li>');
860
+
861
+
862
+ // start checked?
863
+ if( $ul.find('input:not(:checked)').length == 0 )
864
+ {
865
+ $li.find('input').attr('checked', 'checked');
866
+ }
867
+
868
+
869
+ // event
870
+ $li.on('change', 'input', function(){
871
+
872
+ var checked = $(this).is(':checked');
873
+
874
+ $ul.find('input').attr('checked', checked);
875
+
876
+ });
877
+
878
+
879
+ // add to ul
880
+ $ul.prepend( $li );
881
+
882
  });
883
 
884
 
905
 
906
 
907
  /*
908
+ * Create Field
909
  *
910
  * @description:
911
  * @since 3.5.1
916
 
917
  // dafaults
918
  var defaults = {
919
+ 'type' : 'text',
920
+ 'classname' : '',
921
+ 'name' : '',
922
+ 'value' : ''
923
  };
924
  options = $.extend(true, defaults, options);
925
 
933
  }
934
  else if( options.type == "select" )
935
  {
936
+ // vars
937
+ var groups = {};
938
+
939
+
940
+ // populate groups
941
+ $.each(options.choices, function(k, v){
942
+
943
+ // group may not exist
944
+ if( v.group === undefined )
945
+ {
946
+ v.group = 0;
947
+ }
948
+
949
+
950
+ // instantiate group
951
+ if( groups[ v.group ] === undefined )
952
+ {
953
+ groups[ v.group ] = [];
954
+ }
955
+
956
+
957
+ // add to group
958
+ groups[ v.group ].push( v );
959
+
960
+ });
961
+
962
+
963
  html += '<select class="select ' + options.classname + '" id="' + options.name + '" name="' + options.name + '">';
964
+
965
+ $.each(groups, function(k, v){
966
+
967
+ // start optgroup?
968
+ if( k != 0 )
969
  {
970
+ html += '<optgroup label="' + k + '">';
971
+ }
972
+
973
+
974
+ // options
975
+ $.each(v, function(k2, v2){
976
+
977
  var attr = '';
978
+
979
+ if( v2.value == options.value )
980
  {
981
  attr = 'selected="selected"';
982
  }
983
+
984
+ html += '<option ' + attr + ' value="' + v2.value + '">' + v2.label + '</option>';
985
+
986
+ });
987
+
988
+
989
+ // end optgroup?
990
+ if( k != 0 )
991
+ {
992
+ html += '</optgroup>';
993
  }
994
+
995
+ });
996
+
997
+
998
  html += '</select>';
999
  }
1000
 
1004
 
1005
  };
1006
 
1007
+
1008
+ /*
1009
+ * Conditional Logic
1010
+ *
1011
+ * This object contains all the functionality for seting up the conditional logic rules for fields
1012
+ *
1013
+ * @type object
1014
+ * @date 21/08/13
1015
+ *
1016
+ * @param N/A
1017
+ * @return N/A
1018
+ */
1019
+
1020
+ acf.conditional_logic = {
1021
+
1022
+ triggers : null,
1023
+
1024
+ init : function(){
1025
+
1026
+
1027
+ // reference
1028
+ var _this = this;
1029
+
1030
+
1031
+ // events
1032
+ $(document).on('acf/field_form-open', function(e, $field){
1033
+
1034
+ // render select elements
1035
+ _this.render( $field );
1036
+
1037
+ });
1038
+
1039
+ $(document).on('change', '#acf_fields tr.field_label input.label', function(){
1040
+
1041
+ // render all open fields
1042
+ $('#acf_fields .field.form_open').each(function(){
1043
+
1044
+ _this.render( $(this) );
1045
+
1046
+ });
1047
+
1048
+ });
1049
+
1050
+
1051
+ $(document).on('change', 'tr.conditional-logic input[type="radio"]', function( e ){
1052
+
1053
+ e.preventDefault();
1054
+
1055
+ _this.change_toggle( $(this) );
1056
+
1057
+ });
1058
+
1059
+ $(document).on('change', 'select.conditional-logic-field', function( e ){
1060
+
1061
+ e.preventDefault();
1062
+
1063
+ _this.change_trigger( $(this) );
1064
+
1065
+ });
1066
+
1067
+ $(document).on('click', 'tr.conditional-logic .acf-button-add', function( e ){
1068
 
1069
+ e.preventDefault();
1070
+
1071
+ _this.add( $(this).closest('tr') );
1072
+
1073
+ });
1074
+
1075
+ $(document).on('click', 'tr.conditional-logic .acf-button-remove', function( e ){
1076
 
1077
+ e.preventDefault();
1078
+
1079
+ _this.remove( $(this).closest('tr') );
1080
+
1081
+ });
1082
+
1083
+ },
1084
 
1085
+ render : function( $field ){
1086
 
1087
+ // reference
1088
+ var _this = this;
 
1089
 
1090
 
1091
+ // vars
1092
+ var choices = [],
1093
+ key = $field.attr('data-id'),
1094
+ $ancestors = $field.parents('.fields'),
1095
+ $tr = $field.find('> .field_form_mask > .field_form > table > tbody > tr.conditional-logic');
1096
+
 
 
 
 
 
1097
 
1098
+ $.each( $ancestors, function( i ){
1099
+
1100
+ var group = (i == 0) ? acf.l10n.sibling_fields : acf.l10n.parent_fields;
1101
+
1102
+ $(this).children('.field').each(function(){
1103
+
1104
+
1105
+ // vars
1106
+ var $this_field = $(this),
1107
+ this_id = $this_field.attr('data-id'),
1108
+ this_type = $this_field.attr('data-type'),
1109
+ this_label = $this_field.find('tr.field_label input').val();
1110
+
1111
+
1112
+ // validate
1113
+ if( this_id == 'field_clone' )
1114
+ {
1115
+ return;
1116
+ }
1117
+
1118
+ if( this_id == key )
1119
+ {
1120
+ return;
1121
+ }
1122
+
1123
+
1124
+ // add this field to available triggers
1125
+ if( this_type == 'select' || this_type == 'checkbox' || this_type == 'true_false' || this_type == 'radio' )
1126
+ {
1127
+ choices.push({
1128
+ value : this_id,
1129
+ label : this_label,
1130
+ group : group
1131
+ });
1132
+ }
1133
+
1134
+
1135
+ });
1136
+
1137
+ });
1138
+
1139
 
1140
  // empty?
1141
  if( choices.length == 0 )
1142
  {
1143
  choices.push({
1144
  'value' : 'null',
1145
+ 'label' : acf.l10n.no_fields
1146
  });
1147
  }
 
1148
 
 
 
 
 
 
 
 
 
1149
 
1150
+ // create select fields
1151
+ $tr.find('.conditional-logic-field').each(function(){
1152
 
1153
+ var val = $(this).val(),
1154
+ name = $(this).attr('name');
1155
 
1156
+
1157
+ // create select
1158
+ var $select = acf.helpers.create_field({
1159
+ 'type' : 'select',
1160
+ 'classname' : 'conditional-logic-field',
1161
+ 'name' : name,
1162
+ 'value' : val,
1163
+ 'choices' : choices
1164
+ });
1165
+
1166
+
1167
+ // update select
1168
+ $(this).replaceWith( $select );
1169
+
1170
+
1171
+ // trigger change
1172
+ $select.trigger('change');
1173
+
1174
+ });
1175
+
1176
+ },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1177
 
1178
+ change_toggle : function( $input ){
1179
+
1180
+ // vars
1181
+ var val = $input.val(),
1182
+ $tr = $input.closest('tr.conditional-logic');
1183
+
1184
 
1185
+ if( val == "1" )
1186
+ {
1187
+ $tr.find('.contional-logic-rules-wrapper').show();
1188
+ }
1189
+ else
1190
+ {
1191
+ $tr.find('.contional-logic-rules-wrapper').hide();
1192
+ }
1193
+
1194
+ },
1195
 
1196
+ change_trigger : function( $select ){
1197
+
1198
+ // vars
1199
+ var val = $select.val(),
1200
+ $trigger = $('.field_key-' + val),
1201
+ type = $trigger.attr('data-type'),
1202
+ $value = $select.closest('tr').find('.conditional-logic-value'),
1203
+ choices = [];
1204
+
1205
+
1206
+ // populate choices
1207
+ if( type == "true_false" )
1208
+ {
1209
+ choices = [
1210
+ { value : 1, label : acf.l10n.checked }
1211
+ ];
1212
+
1213
+ }
1214
+ else if( type == "select" || type == "checkbox" || type == "radio" )
1215
  {
1216
+ var field_choices = $trigger.find('.field_option-choices').val().split("\n");
1217
+
1218
+ if( field_choices )
1219
  {
1220
+ for( var i = 0; i < field_choices.length; i++ )
 
 
 
1221
  {
1222
+ var choice = field_choices[i].split(':');
1223
+
1224
+ var label = choice[0];
1225
+ if( choice[1] )
1226
+ {
1227
+ label = choice[1];
1228
+ }
1229
+
1230
+ choices.push({
1231
+ 'value' : $.trim( choice[0] ),
1232
+ 'label' : $.trim( label )
1233
+ });
1234
+
1235
  }
 
 
 
 
 
 
1236
  }
1237
+
1238
  }
1239
 
1240
+
1241
+ // create select
1242
+ var $select = acf.helpers.create_field({
1243
+ 'type' : 'select',
1244
+ 'classname' : 'conditional-logic-value',
1245
+ 'name' : $value.attr('name'),
1246
+ 'value' : $value.val(),
1247
+ 'choices' : choices
1248
+ });
1249
+
1250
+ $value.replaceWith( $select );
1251
+
1252
+ $select.trigger('change');
1253
+
1254
+ },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
 
1256
+ add : function( $old_tr ){
 
1257
 
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
1265
+ $new_tr.find('[name]').each(function(){
1266
+
1267
+ // flexible content uses [0], [1] as the layout index. To avoid conflict, make sure we search for the entire conditional logic string in the name and id
1268
+ var find = '[conditional_logic][rules][' + old_i + ']',
1269
+ replace = '[conditional_logic][rules][' + new_i + ']';
1270
+
1271
+ $(this).attr('name', $(this).attr('name').replace(find, replace) );
1272
+ $(this).attr('id', $(this).attr('id').replace(find, replace) );
1273
+
1274
+ });
1275
+
1276
+
1277
+ // update data-i
1278
+ $new_tr.attr('data-i', new_i);
1279
 
1280
 
1281
+ // add tr
1282
+ $old_tr.after( $new_tr );
1283
+
1284
+
1285
+ // remove disabled
1286
+ $old_tr.closest('table').removeClass('remove-disabled');
1287
+
1288
+ },
 
 
 
 
 
 
 
 
 
 
 
 
1289
 
1290
+ remove : function( $tr ){
1291
+
1292
+ var $table = $tr.closest('table');
1293
 
1294
+ // validate
1295
+ if( $table.hasClass('remove-disabled') )
1296
+ {
1297
+ return false;
1298
+ }
1299
 
 
 
1300
 
1301
+ // remove tr
1302
+ $tr.remove();
1303
 
1304
 
1305
+ // add clas to table
1306
+ if( $table.find('tr').length <= 1 )
1307
+ {
1308
+ $table.addClass('remove-disabled');
1309
+ }
1310
+
1311
+ },
 
 
 
 
 
 
1312
 
1313
+ };
1314
 
1315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1316
 
1317
 
1318
  /*
js/field-group.min.js CHANGED
@@ -1 +1,8 @@
1
- var acf={post_id:0,nonce:"",admin_url:"",ajaxurl:"",text:{},l10n:{},helpers:{uniqid:function(){},sortable:function(){},create_field:function(){}},conditional_logic:{fields:[],setup:function(){}},location:{$el:null,init:function(){},add_rule:function(){},remove_rule:function(){},add_group:function(){},remove_group:function(){}}};(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.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")});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"){r+='<select class="select '+t.classname+'" id="'+t.name+'" name="'+t.name+'">';if(t.choices)for(var i=0;i<t.choices.length;i++){var s="";t.choices[i].value==t.value&&(s='selected="selected"');r+="<option "+s+' value="'+t.choices[i].value+'">'+t.choices[i].label+"</option>"}r+="</select>"}r=e(r);return r};e(document).on("acf/field_form-open",function(t,n){acf.conditional_logic.setup();e(n).find(".conditional-logic-field").each(function(){var t=e(this).val(),n=e(this).attr("name"),r=[];if(acf.conditional_logic.fields)for(var i=0;i<acf.conditional_logic.fields.length;i++)r.push({value:acf.conditional_logic.fields[i].id,label:acf.conditional_logic.fields[i].label});r.length==0&&r.push({value:"null",label:acf.l10n.conditional_no_fields});var s=acf.helpers.create_field({type:"select",classname:"conditional-logic-field",name:n,value:t,choices:r});e(this).replaceWith(s);s.trigger("change")})});e(document).on("change",'tr.conditional-logic input[type="radio"]',function(){e(this).val()=="1"?e(this).closest("tr.conditional-logic").find(".contional-logic-rules-wrapper").show():e(this).closest("tr.conditional-logic").find(".contional-logic-rules-wrapper").hide()});e(document).on("change","select.conditional-logic-field",function(){var t=e(this).val(),n=e("#acf_fields .field_key-"+t),r=n.attr("data-type"),i=e(this).closest("tr").find(".conditional-logic-value"),s=[];if(r=="true_false")s=[{value:1,label:acf.l10n.checked}];else if(r=="select"||r=="checkbox"||r=="radio"){var o=n.find(".field_option-choices").val().split("\n");if(o)for(var u=0;u<o.length;u++){var a=o[u].split(":"),f=a[0];a[1]&&(f=a[1]);s.push({value:e.trim(a[0]),label:e.trim(f)})}}var l=acf.helpers.create_field({type:"select",classname:"conditional-logic-value",name:i.attr("name"),value:i.val(),choices:s});i.replaceWith(l)});acf.conditional_logic.setup=function(){acf.conditional_logic.fields=[];e("#acf_fields > .inside > .fields > .field:not(.field_key-field_clone)").each(function(){var t=e(this),n=t.attr("data-id"),r=t.attr("data-type"),i=t.find("tr.field_label input").val();(r=="select"||r=="checkbox"||r=="true_false"||r=="radio")&&acf.conditional_logic.fields.push({id:n,type:r,label:i})})};e(document).on("click","tr.conditional-logic .acf-button-add",function(){var t=e(this).closest("tr"),n=t.clone(),r=parseFloat(n.attr("data-i")),i=r+1;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-i",i);t.after(n);t.closest("table").removeClass("remove-disabled");return!1});e(document).on("click","tr.conditional-logic .acf-button-remove",function(){var t=e(this).closest("table");if(t.hasClass("remove-disabled"))return!1;e(this).closest("tr").remove();t.find("tr").length<=1&&t.addClass("remove-disabled");return!1});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);
 
 
 
 
 
 
 
1
+ /*
2
+ * field-group.js
3
+ *
4
+ * All javascript needed to create a field group
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);
js/input.js CHANGED
@@ -426,7 +426,7 @@ var acf = {
426
  clearTimeout( acf.media.render_timout );
427
  acf.media.render_timout = setTimeout(function(){
428
 
429
- $(document).trigger( 'acf/setup_fields', _this.$el );
430
 
431
  }, 50);
432
 
@@ -516,6 +516,19 @@ var acf = {
516
  // events
517
  $(document).on('change', '.field input, .field textarea, .field select', function(){
518
 
 
 
 
 
 
 
 
 
 
 
 
 
 
519
  _this.change();
520
 
521
  });
@@ -526,92 +539,172 @@ var acf = {
526
  },
527
  change : function(){
528
 
 
529
  // reference
530
  var _this = this;
531
 
532
-
533
- // vars
534
- //var $el = $( e.target ),
535
- // $field = $el.closest('.field');
536
-
537
-
538
  // loop through items
539
  $.each(this.items, function( k, item ){
540
 
541
  // vars
542
- var show = true,
543
- $field = $('.field_key-' + item.field);
544
-
545
-
546
- // if 'any' was selected, start of as false and any match will result in show = true
547
- if( item.allorany == 'any' )
548
- {
549
- show = false;
550
- }
551
-
552
 
553
- // loop through rules
554
- $.each(item.rules, function( k2, rule ){
555
 
556
- var calculate = _this.calculate( rule );
 
 
 
557
 
558
- if( item.allorany == 'all' )
 
 
559
  {
560
- if( calculate == false )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
  {
562
- show = false;
 
 
 
 
563
 
564
- // end loop
565
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
  }
568
  else
569
  {
570
- if( calculate == true )
 
 
 
 
 
571
  {
572
- show = true;
573
-
574
- // end loop
575
- return false;
576
  }
 
 
 
577
  }
578
 
 
579
  });
580
 
581
 
582
- // hide / show field
583
- if( show )
584
- {
585
- // remove "disabled"
586
- $field.find('input, textarea, select').removeAttr('disabled');
587
-
588
-
589
- $field.removeClass('acf-conditional_logic-hide').addClass('acf-conditional_logic-show');
590
- }
591
- else
592
- {
593
- // add "disabled"
594
- $field.find('input, textarea, select').attr('disabled', 'disabled');
595
-
596
-
597
- $field.removeClass('acf-conditional_logic-show').addClass('acf-conditional_logic-hide');
598
- }
599
 
600
 
601
  });
602
 
603
  },
604
- calculate : function( rule ){
605
 
606
  // vars
607
- var $field = $('.field_key-' + rule.field),
608
- r = false;
609
-
610
 
 
611
  // compare values
612
- if( $field.hasClass('field_type-true_false') || $field.hasClass('field_type-checkbox') || $field.hasClass('field_type-radio') )
613
  {
614
- var exists = $field.find('input[value="' + rule.value + '"]:checked').exists();
615
 
616
 
617
  if( rule.operator == "==" )
@@ -633,7 +726,7 @@ var acf = {
633
  else
634
  {
635
  // get val and make sure it is an array
636
- var val = $field.find('input, textarea, select').last().val();
637
 
638
  if( ! $.isArray(val) )
639
  {
@@ -692,6 +785,10 @@ var acf = {
692
 
693
  });
694
 
 
 
 
 
695
 
696
  });
697
 
@@ -715,7 +812,12 @@ var acf = {
715
  // Hack for CPT without a content editor
716
  try
717
  {
718
- wp.media.view.settings.post.id = acf.post_id;
 
 
 
 
 
719
  }
720
  catch(e)
721
  {
@@ -754,6 +856,7 @@ var acf = {
754
  }
755
  };
756
 
 
757
 
758
  })(jQuery);
759
 
@@ -839,10 +942,9 @@ var acf = {
839
 
840
  $(document).on('acf/update_field_groups', function(){
841
 
842
-
843
  // Only for a post.
844
  // This is an attempt to stop the action running on the options page add-on.
845
- if( ! acf.o.post_id )
846
  {
847
  return false;
848
  }
@@ -897,7 +999,7 @@ var acf = {
897
  $.ajax({
898
  url : ajaxurl,
899
  data : {
900
- action : 'acf/input/render_fields',
901
  acf_id : v,
902
  post_id : acf.o.post_id,
903
  nonce : acf.o.nonce
@@ -921,7 +1023,7 @@ var acf = {
921
  $.ajax({
922
  url : ajaxurl,
923
  data : {
924
- action : 'acf/input/get_style',
925
  acf_id : result[0],
926
  nonce : acf.o.nonce
927
  },
@@ -1003,6 +1105,14 @@ var acf = {
1003
 
1004
  $(document).on('change', '.categorychecklist input[type="checkbox"]', function(){
1005
 
 
 
 
 
 
 
 
 
1006
  // set timeout to fix issue with chrome which does not register the change has yet happened
1007
  setTimeout(function(){
1008
 
@@ -1583,14 +1693,470 @@ var acf = {
1583
  // acf.media.frame.on( 'select', function() {
1584
 
1585
 
1586
- // Finally, open the modal
1587
- acf.media.frame.open();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1588
 
1589
-
1590
- return false;
 
 
 
 
 
 
 
 
1591
  }
1592
 
1593
- };
1594
 
1595
 
1596
  /*
@@ -1605,29 +2171,57 @@ var acf = {
1605
  * @return N/A
1606
  */
1607
 
1608
- $(document).on('click', '.acf-file-uploader .acf-button-edit', function( e ){
1609
 
1610
  e.preventDefault();
1611
 
1612
- acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).edit();
1613
-
 
 
1614
  });
1615
 
1616
- $(document).on('click', '.acf-file-uploader .acf-button-delete', function( e ){
 
1617
 
1618
  e.preventDefault();
1619
 
1620
- acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).remove();
 
 
 
 
 
 
 
 
 
 
1621
 
1622
  });
1623
 
 
 
 
 
 
 
 
 
 
1624
 
1625
- $(document).on('click', '.acf-file-uploader .add-file', function( e ){
1626
 
1627
- e.preventDefault();
 
1628
 
1629
- acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).popup();
1630
 
 
 
 
 
 
 
1631
  });
1632
 
1633
 
@@ -2517,6 +3111,14 @@ var acf = {
2517
 
2518
  $(document).on('acf/setup_fields', function(e, el){
2519
 
 
 
 
 
 
 
 
 
2520
  $(el).find('.acf-tab').each(function(){
2521
 
2522
  // vars
@@ -2548,16 +3150,20 @@ var acf = {
2548
  // add tab
2549
  $wrap.children('.acf-tab-group').append('<li class="field_key-' + id + '" data-field_key="' + id + '"><a class="acf-tab-button" href="#" data-id="' + id + '">' + label + '</a></li>');
2550
 
2551
-
2552
  });
2553
 
2554
-
2555
  // trigger
2556
  $(el).find('.acf-tab-group').each(function(){
2557
 
2558
  $(this).find('li:first a').trigger('click');
2559
 
2560
  });
 
 
 
 
 
 
2561
 
2562
 
2563
  });
@@ -2615,8 +3221,64 @@ var acf = {
2615
 
2616
 
2617
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2618
 
2619
 
 
 
 
 
2620
  })(jQuery);
2621
 
2622
  /* **********************************************
@@ -2638,8 +3300,8 @@ var acf = {
2638
 
2639
  acf.validation = {
2640
 
2641
- status : true,
2642
- disabled : false,
2643
 
2644
  run : function(){
2645
 
@@ -2652,153 +3314,163 @@ var acf = {
2652
 
2653
 
2654
  // loop through all fields
2655
- $('.postbox:not(.acf-hidden) .field.required, .form-field.required').each(function(){
2656
-
2657
- // vars
2658
- var div = $(this);
2659
-
2660
 
2661
- // set validation data
2662
- div.data('validation', true);
2663
 
2664
 
2665
- // if is hidden by conditional logic, ignore
2666
- if( div.hasClass('acf-conditional_logic-hide') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2667
  {
2668
  return;
2669
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2670
 
2671
-
2672
- // if is hidden by conditional logic on a parent tab, ignore
2673
- if( div.hasClass('acf-tab_group-hide') )
 
 
2674
  {
2675
- if( div.prevAll('.field_type-tab:first').hasClass('acf-conditional_logic-hide') )
2676
- {
2677
- return;
2678
- }
2679
  }
2680
-
2681
-
2682
- // text / textarea
2683
- if( div.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val() == "" )
 
 
 
 
 
2684
  {
2685
  div.data('validation', false);
2686
  }
2687
-
2688
-
2689
- // wysiwyg
2690
- if( div.find('.acf_wysiwyg').exists() && typeof(tinyMCE) == "object")
 
 
 
 
 
2691
  {
2692
  div.data('validation', true);
2693
-
2694
- var id = div.find('.wp-editor-area').attr('id'),
2695
- editor = tinyMCE.get( id );
2696
-
2697
-
2698
- if( editor && !editor.getContent() )
2699
- {
2700
- div.data('validation', false);
2701
- }
2702
  }
2703
-
2704
-
2705
- // select
2706
- if( div.find('select').exists() )
 
 
 
 
 
2707
  {
2708
  div.data('validation', true);
2709
-
2710
- if( div.find('select').val() == "null" || ! div.find('select').val() )
2711
- {
2712
- div.data('validation', false);
2713
- }
2714
  }
2715
-
 
 
 
 
 
 
2716
 
2717
- // radio
2718
- if( div.find('input[type="radio"]').exists() )
2719
  {
2720
- div.data('validation', false);
2721
-
2722
- if( div.find('input[type="radio"]:checked').exists() )
2723
- {
2724
- div.data('validation', true);
2725
- }
2726
  }
 
 
 
 
 
 
 
2727
 
2728
-
2729
- // checkbox
2730
- if( div.find('input[type="checkbox"]').exists() )
2731
  {
2732
- div.data('validation', false);
2733
-
2734
- if( div.find('input[type="checkbox"]:checked').exists() )
2735
- {
2736
- div.data('validation', true);
2737
- }
2738
- }
2739
-
 
2740
 
2741
- // relationship
2742
- if( div.find('.acf_relationship').exists() )
2743
  {
2744
- div.data('validation', false);
2745
-
2746
- if( div.find('.acf_relationship .relationship_right input').exists() )
2747
- {
2748
- div.data('validation', true);
2749
- }
2750
  }
 
 
 
 
 
 
 
 
 
 
 
 
2751
 
2752
-
2753
- // repeater
2754
- if( div.find('.repeater').exists() )
2755
  {
2756
- div.data('validation', false);
 
 
2757
 
2758
- if( div.find('.repeater tr.row').exists() )
2759
- {
2760
- div.data('validation', true);
2761
- }
2762
- }
2763
-
2764
-
2765
- // flexible content
2766
- if( div.find('.acf_flexible_content').exists() )
2767
- {
2768
- div.data('validation', false);
2769
- if( div.find('.acf_flexible_content .values table').exists() )
2770
- {
2771
- div.data('validation', true);
2772
- }
2773
- }
2774
-
2775
-
2776
- // gallery
2777
- if( div.find('.acf-gallery').exists() )
2778
- {
2779
- div.data('validation', false);
2780
 
2781
- if( div.find('.acf-gallery .thumbnail').exists())
2782
- {
2783
- div.data('validation', true);
2784
- }
2785
- }
2786
-
2787
-
2788
- // hook for custom validation
2789
- $(document).trigger('acf/validate_field', div );
2790
-
2791
-
2792
- // set validation
2793
- if( ! div.data('validation') )
2794
- {
2795
- _this.status = false;
2796
- div.closest('.field').addClass('error');
2797
  }
2798
-
2799
-
2800
- });
2801
- // end loop through all fields
2802
  }
2803
 
2804
  };
@@ -2823,6 +3495,15 @@ var acf = {
2823
  });
2824
 
2825
 
 
 
 
 
 
 
 
 
 
2826
  /*
2827
  * Save Post
2828
  *
@@ -3048,21 +3729,31 @@ var acf = {
3048
  },
3049
  destroy : function(){
3050
 
3051
- // vars
3052
- var id = this.o.id,
3053
- editor = tinyMCE.get( id );
3054
-
3055
-
3056
  // Remove tinymcy functionality.
3057
  // Due to the media popup destroying and creating the field within such a short amount of time,
3058
  // a JS error will be thrown when launching the edit window twice in a row.
3059
  try
3060
  {
3061
- tinyMCE.execCommand("mceRemoveControl", false, id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3062
  }
3063
  catch(e)
3064
  {
3065
- console.log( e );
3066
  }
3067
 
3068
 
426
  clearTimeout( acf.media.render_timout );
427
  acf.media.render_timout = setTimeout(function(){
428
 
429
+ $(document).trigger( 'acf/setup_fields', [ _this.$el ] );
430
 
431
  }, 50);
432
 
516
  // events
517
  $(document).on('change', '.field input, .field textarea, .field select', function(){
518
 
519
+ // preview hack
520
+ if( $('#acf-has-changed').exists() )
521
+ {
522
+ $('#acf-has-changed').val(1);
523
+ }
524
+
525
+ _this.change();
526
+
527
+ });
528
+
529
+
530
+ $(document).on('acf/setup_fields', function(e, el){
531
+
532
  _this.change();
533
 
534
  });
539
  },
540
  change : function(){
541
 
542
+
543
  // reference
544
  var _this = this;
545
 
546
+ //console.clear();
547
+ //console.log( this.items );
 
 
 
 
548
  // loop through items
549
  $.each(this.items, function( k, item ){
550
 
551
  // vars
552
+ var $targets = $('.field_key-' + item.field);
553
+
 
 
 
 
 
 
 
 
554
 
555
+ // may be multiple targets (sub fields)
556
+ $targets.each(function(){
557
 
558
+ //console.log('target %o', $(this));
559
+
560
+ // vars
561
+ var show = true;
562
 
563
+
564
+ // if 'any' was selected, start of as false and any match will result in show = true
565
+ if( item.allorany == 'any' )
566
  {
567
+ show = false;
568
+ }
569
+
570
+
571
+ // vars
572
+ var $target = $(this),
573
+ hide_all = true;
574
+
575
+
576
+ // loop through rules
577
+ $.each(item.rules, function( k2, rule ){
578
+
579
+ // vars
580
+ var $toggle = $('.field_key-' + rule.field);
581
+
582
+
583
+ // are any of $toggle a sub field?
584
+ if( $toggle.hasClass('sub_field') )
585
  {
586
+ // toggle may be a sibling sub field.
587
+ // if so ,show an empty td but keep the column
588
+ $toggle = $target.siblings('.field_key-' + rule.field);
589
+ hide_all = false;
590
+
591
 
592
+ // if no toggle was found, we need to look at parent sub fields.
593
+ // if so, hide the entire column
594
+ if( ! $toggle.exists() )
595
+ {
596
+ // loop through all the parents that could contain sub fields
597
+ $target.parents('tr').each(function(){
598
+
599
+ // attempt to update $toggle to this parent sub field
600
+ $toggle = $(this).find('.field_key-' + rule.field)
601
+
602
+ // if the parent sub field actuallly exists, great! Stop the loop
603
+ if( $toggle.exists() )
604
+ {
605
+ return false;
606
+ }
607
+
608
+ });
609
+
610
+ hide_all = true;
611
+ }
612
+
613
+ }
614
+
615
+
616
+ // if this sub field is within a flexible content layout, hide the entire column because
617
+ // there will never be another row added to this table
618
+ if( $target.parent('tr').parent().parent('table').parent('.layout').exists() )
619
+ {
620
+ hide_all = true;
621
+
622
+ if( $target.is('th') && $toggle.is('th') )
623
+ {
624
+ $toggle = $target.closest('.layout').find('td.field_key-' + rule.field);
625
+ }
626
+
627
+ }
628
+
629
+
630
+ var calculate = _this.calculate( rule, $toggle, $target );
631
+
632
+ if( item.allorany == 'all' )
633
+ {
634
+ if( calculate == false )
635
+ {
636
+ show = false;
637
+
638
+ // end loop
639
+ return false;
640
+ }
641
+ }
642
+ else
643
+ {
644
+ if( calculate == true )
645
+ {
646
+ show = true;
647
+
648
+ // end loop
649
+ return false;
650
+ }
651
  }
652
+
653
+ });
654
+ // $.each(item.rules, function( k2, rule ){
655
+
656
+
657
+ // clear classes
658
+ $target.removeClass('acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank');
659
+
660
+
661
+ // hide / show field
662
+ if( show )
663
+ {
664
+ // remove "disabled"
665
+ $target.find('input, textarea, select').removeAttr('disabled');
666
+
667
+ $target.addClass('acf-conditional_logic-show');
668
+
669
+ // hook
670
+ $(document).trigger('acf/conditional_logic/show', [ $target, item ]);
671
+
672
  }
673
  else
674
  {
675
+ // add "disabled"
676
+ $target.find('input, textarea, select').attr('disabled', 'disabled');
677
+
678
+ $target.addClass('acf-conditional_logic-hide');
679
+
680
+ if( !hide_all )
681
  {
682
+ $target.addClass('acf-show-blank');
 
 
 
683
  }
684
+
685
+ // hook
686
+ $(document).trigger('acf/conditional_logic/hide', [ $target, item ]);
687
  }
688
 
689
+
690
  });
691
 
692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
 
694
 
695
  });
696
 
697
  },
698
+ calculate : function( rule, $toggle, $target ){
699
 
700
  // vars
701
+ var r = false;
 
 
702
 
703
+
704
  // compare values
705
+ if( $toggle.hasClass('field_type-true_false') || $toggle.hasClass('field_type-checkbox') || $toggle.hasClass('field_type-radio') )
706
  {
707
+ var exists = $toggle.find('input[value="' + rule.value + '"]:checked').exists();
708
 
709
 
710
  if( rule.operator == "==" )
726
  else
727
  {
728
  // get val and make sure it is an array
729
+ var val = $toggle.find('input, textarea, select').last().val();
730
 
731
  if( ! $.isArray(val) )
732
  {
785
 
786
  });
787
 
788
+
789
+ // Remove 'field_123' from native custom field metabox
790
+ $('#metakeyselect option[value^="field_"]').remove();
791
+
792
 
793
  });
794
 
812
  // Hack for CPT without a content editor
813
  try
814
  {
815
+ // post_id may be string (user_1) and therefore, the uploaded image cannot be attached to the post
816
+ if( $.isNumeric(acf.o.post_id) )
817
+ {
818
+ wp.media.view.settings.post.id = acf.o.post_id;
819
+ }
820
+
821
  }
822
  catch(e)
823
  {
856
  }
857
  };
858
 
859
+
860
 
861
  })(jQuery);
862
 
942
 
943
  $(document).on('acf/update_field_groups', function(){
944
 
 
945
  // Only for a post.
946
  // This is an attempt to stop the action running on the options page add-on.
947
+ if( ! acf.screen.post_id || ! $.isNumeric(acf.screen.post_id) )
948
  {
949
  return false;
950
  }
999
  $.ajax({
1000
  url : ajaxurl,
1001
  data : {
1002
+ action : 'acf/post/render_fields',
1003
  acf_id : v,
1004
  post_id : acf.o.post_id,
1005
  nonce : acf.o.nonce
1023
  $.ajax({
1024
  url : ajaxurl,
1025
  data : {
1026
+ action : 'acf/post/get_style',
1027
  acf_id : result[0],
1028
  nonce : acf.o.nonce
1029
  },
1105
 
1106
  $(document).on('change', '.categorychecklist input[type="checkbox"]', function(){
1107
 
1108
+ // a taxonomy field may trigger this change event, however, the value selected is not
1109
+ // actually a term relatinoship, it is meta data
1110
+ if( $(this).closest('.categorychecklist').hasClass('no-ajax') )
1111
+ {
1112
+ return;
1113
+ }
1114
+
1115
+
1116
  // set timeout to fix issue with chrome which does not register the change has yet happened
1117
  setTimeout(function(){
1118
 
1693
  // acf.media.frame.on( 'select', function() {
1694
 
1695
 
1696
+ // Finally, open the modal
1697
+ acf.media.frame.open();
1698
+
1699
+
1700
+ return false;
1701
+ }
1702
+
1703
+ };
1704
+
1705
+
1706
+ /*
1707
+ * Events
1708
+ *
1709
+ * jQuery events for this field
1710
+ *
1711
+ * @type function
1712
+ * @date 1/03/2011
1713
+ *
1714
+ * @param N/A
1715
+ * @return N/A
1716
+ */
1717
+
1718
+ $(document).on('click', '.acf-file-uploader .acf-button-edit', function( e ){
1719
+
1720
+ e.preventDefault();
1721
+
1722
+ acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).edit();
1723
+
1724
+ });
1725
+
1726
+ $(document).on('click', '.acf-file-uploader .acf-button-delete', function( e ){
1727
+
1728
+ e.preventDefault();
1729
+
1730
+ acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).remove();
1731
+
1732
+ });
1733
+
1734
+
1735
+ $(document).on('click', '.acf-file-uploader .add-file', function( e ){
1736
+
1737
+ e.preventDefault();
1738
+
1739
+ acf.fields.file.set({ $el : $(this).closest('.acf-file-uploader') }).popup();
1740
+
1741
+ });
1742
+
1743
+
1744
+ })(jQuery);
1745
+
1746
+ /* **********************************************
1747
+ Begin google-map.js
1748
+ ********************************************** */
1749
+
1750
+ (function($){
1751
+
1752
+ /*
1753
+ * Location
1754
+ *
1755
+ * static model for this field
1756
+ *
1757
+ * @type event
1758
+ * @date 1/06/13
1759
+ *
1760
+ */
1761
+
1762
+ acf.fields.location = {
1763
+
1764
+ $el : null,
1765
+ $input : null,
1766
+
1767
+ o : {},
1768
+
1769
+ geocoder : false,
1770
+ map : false,
1771
+ maps : {},
1772
+
1773
+ set : function( o ){
1774
+
1775
+ // merge in new option
1776
+ $.extend( this, o );
1777
+
1778
+
1779
+ // find input
1780
+ this.$input = this.$el.find('.value');
1781
+
1782
+
1783
+ // get options
1784
+ this.o = acf.helpers.get_atts( this.$el );
1785
+
1786
+
1787
+ // get map
1788
+ if( this.maps[ this.o.id ] )
1789
+ {
1790
+ this.map = this.maps[ this.o.id ];
1791
+ }
1792
+
1793
+
1794
+ // geocode
1795
+ this.geocoder = new google.maps.Geocoder();
1796
+
1797
+
1798
+ // return this for chaining
1799
+ return this;
1800
+
1801
+ },
1802
+ init : function(){
1803
+
1804
+ // is clone field?
1805
+ if( acf.helpers.is_clone_field(this.$input) )
1806
+ {
1807
+ return;
1808
+ }
1809
+
1810
+ this.render();
1811
+
1812
+ },
1813
+ render : function(){
1814
+
1815
+ // reference
1816
+ var _this = this,
1817
+ _$el = this.$el;
1818
+
1819
+
1820
+ // vars
1821
+ var args = {
1822
+ zoom : 14,
1823
+ center : new google.maps.LatLng(this.o.lat, this.o.lng),
1824
+ mapTypeId : google.maps.MapTypeId.ROADMAP
1825
+ };
1826
+
1827
+ // create map
1828
+ this.map = new google.maps.Map( this.$el.find('.canvas')[0], args);
1829
+
1830
+
1831
+ // add search
1832
+ var autocomplete = new google.maps.places.Autocomplete( this.$el.find('.search')[0] );
1833
+ autocomplete.map = this.map;
1834
+ autocomplete.bindTo('bounds', this.map);
1835
+
1836
+
1837
+ // add dummy marker
1838
+ this.map.marker = new google.maps.Marker({
1839
+ draggable : true,
1840
+ raiseOnDrag : true,
1841
+ map : this.map,
1842
+ });
1843
+
1844
+
1845
+ // add references
1846
+ this.map.$el = this.$el;
1847
+
1848
+
1849
+ // value exists?
1850
+ var lat = this.$el.find('.input-lat').val(),
1851
+ lng = this.$el.find('.input-lng').val();
1852
+
1853
+ if( lat && lng )
1854
+ {
1855
+ this.update( lat, lng ).center();
1856
+ }
1857
+
1858
+
1859
+ // events
1860
+ google.maps.event.addListener(autocomplete, 'place_changed', function( e ) {
1861
+
1862
+ // reference
1863
+ var $el = this.map.$el;
1864
+
1865
+
1866
+ // manually update address
1867
+ var address = $el.find('.search').val();
1868
+ $el.find('.input-address').val( address );
1869
+ $el.find('.title h4').text( address );
1870
+
1871
+
1872
+ // vars
1873
+ var place = this.getPlace();
1874
+
1875
+
1876
+ // validate
1877
+ if( place.geometry )
1878
+ {
1879
+ var lat = place.geometry.location.lat(),
1880
+ lng = place.geometry.location.lng();
1881
+
1882
+
1883
+ _this.set({ $el : $el }).update( lat, lng ).center();
1884
+ }
1885
+ else
1886
+ {
1887
+ // client hit enter, manulaly get the place
1888
+ _this.geocoder.geocode({ 'address' : address }, function( results, status ){
1889
+
1890
+ // validate
1891
+ if( status != google.maps.GeocoderStatus.OK )
1892
+ {
1893
+ console.log('Geocoder failed due to: ' + status);
1894
+ return;
1895
+ }
1896
+
1897
+ if( !results[0] )
1898
+ {
1899
+ console.log('No results found');
1900
+ return;
1901
+ }
1902
+
1903
+
1904
+ // get place
1905
+ place = results[0];
1906
+
1907
+ var lat = place.geometry.location.lat(),
1908
+ lng = place.geometry.location.lng();
1909
+
1910
+
1911
+ _this.set({ $el : $el }).update( lat, lng ).center();
1912
+
1913
+ });
1914
+ }
1915
+
1916
+ });
1917
+
1918
+
1919
+ google.maps.event.addListener( this.map.marker, 'dragend', function(){
1920
+
1921
+ // reference
1922
+ var $el = this.map.$el;
1923
+
1924
+
1925
+ // vars
1926
+ var position = this.map.marker.getPosition(),
1927
+ lat = position.lat(),
1928
+ lng = position.lng();
1929
+
1930
+ _this.set({ $el : $el }).update( lat, lng ).sync();
1931
+
1932
+ });
1933
+
1934
+
1935
+ google.maps.event.addListener( this.map, 'click', function( e ) {
1936
+
1937
+ // reference
1938
+ var $el = this.$el;
1939
+
1940
+
1941
+ // vars
1942
+ var lat = e.latLng.lat(),
1943
+ lng = e.latLng.lng();
1944
+
1945
+
1946
+ _this.set({ $el : $el }).update( lat, lng ).sync();
1947
+
1948
+ });
1949
+
1950
+
1951
+
1952
+ // add to maps
1953
+ this.maps[ this.o.id ] = this.map;
1954
+
1955
+
1956
+ },
1957
+
1958
+ update : function( lat, lng ){
1959
+
1960
+ // vars
1961
+ var latlng = new google.maps.LatLng( lat, lng );
1962
+
1963
+
1964
+ // update inputs
1965
+ this.$el.find('.input-lat').val( lat );
1966
+ this.$el.find('.input-lng').val( lng ).trigger('change');
1967
+
1968
+
1969
+ // update marker
1970
+ this.map.marker.setPosition( latlng );
1971
+
1972
+
1973
+ // show marker
1974
+ this.map.marker.setVisible( true );
1975
+
1976
+
1977
+ // update class
1978
+ this.$el.addClass('active');
1979
+
1980
+
1981
+ // validation
1982
+ this.$el.closest('.field').removeClass('error');
1983
+
1984
+
1985
+ // return for chaining
1986
+ return this;
1987
+ },
1988
+
1989
+ center : function(){
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
1997
+ this.map.setCenter( latlng );
1998
+ },
1999
+
2000
+ sync : function(){
2001
+
2002
+ // reference
2003
+ var $el = this.$el;
2004
+
2005
+
2006
+ // vars
2007
+ var position = this.map.marker.getPosition(),
2008
+ latlng = new google.maps.LatLng( position.lat(), position.lng() );
2009
+
2010
+
2011
+ this.geocoder.geocode({ 'latLng' : latlng }, function( results, status ){
2012
+
2013
+ // validate
2014
+ if( status != google.maps.GeocoderStatus.OK )
2015
+ {
2016
+ console.log('Geocoder failed due to: ' + status);
2017
+ return;
2018
+ }
2019
+
2020
+ if( !results[0] )
2021
+ {
2022
+ console.log('No results found');
2023
+ return;
2024
+ }
2025
+
2026
+
2027
+ // get location
2028
+ var location = results[0];
2029
+
2030
+
2031
+ // update h4
2032
+ $el.find('.title h4').text( location.formatted_address );
2033
+
2034
+
2035
+ // update input
2036
+ $el.find('.input-address').val( location.formatted_address ).trigger('change');
2037
+
2038
+ });
2039
+
2040
+
2041
+ // return for chaining
2042
+ return this;
2043
+ },
2044
+
2045
+ locate : function(){
2046
+
2047
+ // reference
2048
+ var _this = this,
2049
+ _$el = this.$el;
2050
+
2051
+
2052
+ // Try HTML5 geolocation
2053
+ if( ! navigator.geolocation )
2054
+ {
2055
+ alert( acf.l10n.google_map.browser_support );
2056
+ return this;
2057
+ }
2058
+
2059
+
2060
+ // show loading text
2061
+ _$el.find('.title h4').text(acf.l10n.google_map.locating + '...');
2062
+ _$el.addClass('active');
2063
+
2064
+ navigator.geolocation.getCurrentPosition(function(position){
2065
+
2066
+ // vars
2067
+ var lat = position.coords.latitude,
2068
+ lng = position.coords.longitude;
2069
+
2070
+ _this.set({ $el : _$el }).update( lat, lng ).sync().center();
2071
+
2072
+ });
2073
+
2074
+
2075
+ },
2076
+
2077
+ clear : function(){
2078
+
2079
+ // update class
2080
+ this.$el.removeClass('active');
2081
+
2082
+
2083
+ // clear search
2084
+ this.$el.find('.search').val('');
2085
+
2086
+
2087
+ // clear inputs
2088
+ this.$el.find('.input-address').val('');
2089
+ this.$el.find('.input-lat').val('');
2090
+ this.$el.find('.input-lng').val('');
2091
+
2092
+
2093
+ // hide marker
2094
+ this.map.marker.setVisible( false );
2095
+ },
2096
+
2097
+ edit : function(){
2098
+
2099
+ // update class
2100
+ this.$el.removeClass('active');
2101
+
2102
+
2103
+ // clear search
2104
+ var val = this.$el.find('.title h4').text();
2105
+
2106
+
2107
+ this.$el.find('.search').val( val ).focus();
2108
+
2109
+ }
2110
+
2111
+ };
2112
+
2113
+
2114
+ /*
2115
+ * acf/setup_fields
2116
+ *
2117
+ * run init function on all elements for this field
2118
+ *
2119
+ * @type event
2120
+ * @date 20/07/13
2121
+ *
2122
+ * @param {object} e event object
2123
+ * @param {object} el DOM object which may contain new ACF elements
2124
+ * @return N/A
2125
+ */
2126
+
2127
+ $(document).on('acf/setup_fields', function(e, el){
2128
+
2129
+ if( $(el).find('.acf-google-map').exists() )
2130
+ {
2131
+ // validate google
2132
+ if( typeof google === 'undefined' )
2133
+ {
2134
+ $.getScript('https://www.google.com/jsapi', function(){
2135
+
2136
+ google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){
2137
+
2138
+ $(el).find('.acf-google-map').each(function(){
2139
+
2140
+ acf.fields.location.set({ $el : $(this) }).init();
2141
+
2142
+ });
2143
+
2144
+ }});
2145
+ });
2146
 
2147
+ }
2148
+ else
2149
+ {
2150
+ $(el).find('.acf-google-map').each(function(){
2151
+
2152
+ acf.fields.location.set({ $el : $(this) }).init();
2153
+
2154
+ });
2155
+
2156
+ }
2157
  }
2158
 
2159
+ });
2160
 
2161
 
2162
  /*
2171
  * @return N/A
2172
  */
2173
 
2174
+ $(document).on('click', '.acf-google-map .acf-sprite-remove', function( e ){
2175
 
2176
  e.preventDefault();
2177
 
2178
+ acf.fields.location.set({ $el : $(this).closest('.acf-google-map') }).clear();
2179
+
2180
+ $(this).blur();
2181
+
2182
  });
2183
 
2184
+
2185
+ $(document).on('click', '.acf-google-map .acf-sprite-locate', function( e ){
2186
 
2187
  e.preventDefault();
2188
 
2189
+ acf.fields.location.set({ $el : $(this).closest('.acf-google-map') }).locate();
2190
+
2191
+ $(this).blur();
2192
+
2193
+ });
2194
+
2195
+ $(document).on('click', '.acf-google-map .title h4', function( e ){
2196
+
2197
+ e.preventDefault();
2198
+
2199
+ acf.fields.location.set({ $el : $(this).closest('.acf-google-map') }).edit();
2200
 
2201
  });
2202
 
2203
+ $(document).on('keydown', '.acf-google-map .search', function( e ){
2204
+
2205
+ // prevent form from submitting
2206
+ if( e.which == 13 )
2207
+ {
2208
+ return false;
2209
+ }
2210
+
2211
+ });
2212
 
2213
+ $(document).on('blur', '.acf-google-map .search', function( e ){
2214
 
2215
+ // vars
2216
+ var $el = $(this).closest('.acf-google-map');
2217
 
 
2218
 
2219
+ // has a value?
2220
+ if( $el.find('.input-lat').val() )
2221
+ {
2222
+ $el.addClass('active');
2223
+ }
2224
+
2225
  });
2226
 
2227
 
3111
 
3112
  $(document).on('acf/setup_fields', function(e, el){
3113
 
3114
+ // validate
3115
+ if( ! $(el).find('.acf-tab').exists() )
3116
+ {
3117
+ return;
3118
+ }
3119
+
3120
+
3121
+ // init
3122
  $(el).find('.acf-tab').each(function(){
3123
 
3124
  // vars
3150
  // add tab
3151
  $wrap.children('.acf-tab-group').append('<li class="field_key-' + id + '" data-field_key="' + id + '"><a class="acf-tab-button" href="#" data-id="' + id + '">' + label + '</a></li>');
3152
 
 
3153
  });
3154
 
 
3155
  // trigger
3156
  $(el).find('.acf-tab-group').each(function(){
3157
 
3158
  $(this).find('li:first a').trigger('click');
3159
 
3160
  });
3161
+ // trigger conditional logic
3162
+ // this code ( acf/setup_fields ) is run after the main acf.conditional_logic.init();
3163
+ acf.conditional_logic.change();
3164
+
3165
+
3166
+
3167
 
3168
 
3169
  });
3221
 
3222
 
3223
  });
3224
+
3225
+
3226
+ $(document).on('acf/conditional_logic/hide', function( e, $target, item ){
3227
+
3228
+ // validate
3229
+ if( ! $target.parent().hasClass('acf-tab-group') )
3230
+ {
3231
+ return;
3232
+ }
3233
+
3234
+
3235
+ var key = $target.attr('data-field_key');
3236
+
3237
+
3238
+ if( $target.siblings(':visible').exists() )
3239
+ {
3240
+ // if the $target to be hidden is a tab button, lets toggle a sibling tab button
3241
+ $target.siblings(':visible').first().children('a').trigger('click');
3242
+ }
3243
+ else
3244
+ {
3245
+ // no onther tabs
3246
+ $('.field_type-tab[data-field_key="' + key + '"]').nextUntil('.field_type-tab').removeClass('acf-tab_group-show').addClass('acf-tab_group-hide');
3247
+ }
3248
+
3249
+ });
3250
+
3251
+
3252
+ $(document).on('acf/conditional_logic/show', function( e, $target, item ){
3253
+
3254
+ // validate
3255
+ if( ! $target.parent().hasClass('acf-tab-group') )
3256
+ {
3257
+ return;
3258
+ }
3259
+
3260
+
3261
+ // if this is the active tab
3262
+ if( $target.hasClass('active') )
3263
+ {
3264
+ $target.children('a').trigger('click');
3265
+ return;
3266
+ }
3267
+
3268
+
3269
+ // if the sibling active tab is actually hidden by conditional logic, take ownership of tabs
3270
+ if( $target.siblings('.active').hasClass('acf-conditional_logic-hide') )
3271
+ {
3272
+ // show this tab group
3273
+ $target.children('a').trigger('click');
3274
+ return;
3275
+ }
3276
 
3277
 
3278
+ });
3279
+
3280
+
3281
+
3282
  })(jQuery);
3283
 
3284
  /* **********************************************
3300
 
3301
  acf.validation = {
3302
 
3303
+ status : true,
3304
+ disabled : false,
3305
 
3306
  run : function(){
3307
 
3314
 
3315
 
3316
  // loop through all fields
3317
+ $('.field.required, .form-field.required').each(function(){
 
 
 
 
3318
 
3319
+ // run validation
3320
+ _this.validate( $(this) );
3321
 
3322
 
3323
+ });
3324
+ // end loop through all fields
3325
+ },
3326
+
3327
+ validate : function( div ){
3328
+
3329
+ // set validation data
3330
+ div.data('validation', true);
3331
+
3332
+
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
+ {
3359
+ div.data('validation', false);
3360
+ }
3361
+
3362
+
3363
+ // wysiwyg
3364
+ if( div.find('.acf_wysiwyg').exists() && typeof(tinyMCE) == "object")
3365
+ {
3366
+ div.data('validation', true);
3367
 
3368
+ var id = div.find('.wp-editor-area').attr('id'),
3369
+ editor = tinyMCE.get( id );
3370
+
3371
+
3372
+ if( editor && !editor.getContent() )
3373
  {
3374
+ div.data('validation', false);
 
 
 
3375
  }
3376
+ }
3377
+
3378
+
3379
+ // select
3380
+ if( div.find('select').exists() )
3381
+ {
3382
+ div.data('validation', true);
3383
+
3384
+ if( div.find('select').val() == "null" || ! div.find('select').val() )
3385
  {
3386
  div.data('validation', false);
3387
  }
3388
+ }
3389
+
3390
+
3391
+ // radio
3392
+ if( div.find('input[type="radio"]').exists() )
3393
+ {
3394
+ div.data('validation', false);
3395
+
3396
+ if( div.find('input[type="radio"]:checked').exists() )
3397
  {
3398
  div.data('validation', true);
 
 
 
 
 
 
 
 
 
3399
  }
3400
+ }
3401
+
3402
+
3403
+ // checkbox
3404
+ if( div.find('input[type="checkbox"]').exists() )
3405
+ {
3406
+ div.data('validation', false);
3407
+
3408
+ if( div.find('input[type="checkbox"]:checked').exists() )
3409
  {
3410
  div.data('validation', true);
 
 
 
 
 
3411
  }
3412
+ }
3413
+
3414
+
3415
+ // relationship
3416
+ if( div.find('.acf_relationship').exists() )
3417
+ {
3418
+ div.data('validation', false);
3419
 
3420
+ if( div.find('.acf_relationship .relationship_right input').exists() )
 
3421
  {
3422
+ div.data('validation', true);
 
 
 
 
 
3423
  }
3424
+ }
3425
+
3426
+
3427
+ // repeater
3428
+ if( div.find('.repeater').exists() )
3429
+ {
3430
+ div.data('validation', false);
3431
 
3432
+ if( div.find('.repeater tr.row').exists() )
 
 
3433
  {
3434
+ div.data('validation', true);
3435
+ }
3436
+ }
3437
+
3438
+
3439
+ // gallery
3440
+ if( div.find('.acf-gallery').exists() )
3441
+ {
3442
+ div.data('validation', false);
3443
 
3444
+ if( div.find('.acf-gallery .thumbnail').exists())
 
3445
  {
3446
+ div.data('validation', true);
 
 
 
 
 
3447
  }
3448
+ }
3449
+
3450
+
3451
+ // hook for custom validation
3452
+ $(document).trigger('acf/validate_field', [ div ] );
3453
+
3454
+
3455
+ // set validation
3456
+ if( ! div.data('validation') )
3457
+ {
3458
+ this.status = false;
3459
+ div.closest('.field').addClass('error');
3460
 
3461
+ if( div.data('validation_message') )
 
 
3462
  {
3463
+ var $label = div.find('p.label:first'),
3464
+ $message = null;
3465
+
3466
 
3467
+ // remove old message
3468
+ $label.children('.acf-error-message').remove();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3469
 
3470
+
3471
+ $label.append( '<span class="acf-error-message"><i class="bit"></i>' + div.data('validation_message') + '</span>' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3472
  }
3473
+ }
 
 
 
3474
  }
3475
 
3476
  };
3495
  });
3496
 
3497
 
3498
+ /*
3499
+ $(document).on('blur change', '.field.required input, .field.required textarea, .field.required select', function( e ){
3500
+
3501
+ acf.validation.validate( $(this).closest('.field') );
3502
+
3503
+ });
3504
+ */
3505
+
3506
+
3507
  /*
3508
  * Save Post
3509
  *
3729
  },
3730
  destroy : function(){
3731
 
 
 
 
 
 
3732
  // Remove tinymcy functionality.
3733
  // Due to the media popup destroying and creating the field within such a short amount of time,
3734
  // a JS error will be thrown when launching the edit window twice in a row.
3735
  try
3736
  {
3737
+ // vars
3738
+ var id = this.o.id,
3739
+ editor = tinyMCE.get( id );
3740
+
3741
+
3742
+ // store the val, and add it back in to keep line breaks / formating
3743
+ if( editor )
3744
+ {
3745
+ var val = editor.getContent();
3746
+
3747
+ tinyMCE.execCommand("mceRemoveControl", false, id);
3748
+
3749
+ this.$textarea.val( val );
3750
+ }
3751
+
3752
+
3753
  }
3754
  catch(e)
3755
  {
3756
+ //console.log( e );
3757
  }
3758
 
3759
 
js/input.min.js CHANGED
@@ -10,4 +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(){t.change()});t.change()},change:function(){var t=this;e.each(this.items,function(n,r){var i=!0,s=e(".field_key-"+r.field);r.allorany=="any"&&(i=!1);e.each(r.rules,function(e,n){var s=t.calculate(n);if(r.allorany=="all"){if(s==0){i=!1;return!1}}else if(s==1){i=!0;return!1}});if(i){s.find("input, textarea, select").removeAttr("disabled");s.removeClass("acf-conditional_logic-hide").addClass("acf-conditional_logic-show")}else{s.find("input, textarea, select").attr("disabled","disabled");s.removeClass("acf-conditional_logic-show").addClass("acf-conditional_logic-hide")}})},calculate:function(t){var n=e(".field_key-"+t.field),r=!1;if(n.hasClass("field_type-true_false")||n.hasClass("field_type-checkbox")||n.hasClass("field_type-radio")){var i=n.find('input[value="'+t.value+'"]:checked').exists();t.operator=="=="?i&&(r=!0):i||(r=!0)}else{var s=n.find("input, textarea, select").last().val();e.isArray(s)||(s=[s]);t.operator=="=="?e.inArray(t.value,s)>-1&&(r=!0):e.inArray(t.value,s)<0&&(r=!0)}return r}};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(window).load(function(){acf.media.init();setTimeout(function(){try{wp.media.view.settings.post.id=acf.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.o.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/input/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/input/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(){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){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){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")})});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")})})(jQuery);(function(e){acf.validation={status:!0,disabled:!1,run:function(){var t=this;t.status=!0;e(".postbox:not(.acf-hidden) .field.required, .form-field.required").each(function(){var n=e(this);n.data("validation",!0);if(n.hasClass("acf-conditional_logic-hide"))return;if(n.hasClass("acf-tab_group-hide")&&n.prevAll(".field_type-tab:first").hasClass("acf-conditional_logic-hide"))return;n.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()==""&&n.data("validation",!1);if(n.find(".acf_wysiwyg").exists()&&typeof tinyMCE=="object"){n.data("validation",!0);var r=n.find(".wp-editor-area").attr("id"),i=tinyMCE.get(r);i&&!i.getContent()&&n.data("validation",!1)}if(n.find("select").exists()){n.data("validation",!0);(n.find("select").val()=="null"||!n.find("select").val())&&n.data("validation",!1)}if(n.find('input[type="radio"]').exists()){n.data("validation",!1);n.find('input[type="radio"]:checked').exists()&&n.data("validation",!0)}if(n.find('input[type="checkbox"]').exists()){n.data("validation",!1);n.find('input[type="checkbox"]:checked').exists()&&n.data("validation",!0)}if(n.find(".acf_relationship").exists()){n.data("validation",!1);n.find(".acf_relationship .relationship_right input").exists()&&n.data("validation",!0)}if(n.find(".repeater").exists()){n.data("validation",!1);n.find(".repeater tr.row").exists()&&n.data("validation",!0)}if(n.find(".acf_flexible_content").exists()){n.data("validation",!1);n.find(".acf_flexible_content .values table").exists()&&n.data("validation",!0)}if(n.find(".acf-gallery").exists()){n.data("validation",!1);n.find(".acf-gallery .thumbnail").exists()&&n.data("validation",!0)}e(document).trigger("acf/validate_field",n);if(!n.data("validation")){t.status=!1;n.closest(".field").addClass("error")}})}};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(){var e=this.o.id,t=tinyMCE.get(e);try{tinyMCE.execCommand("mceRemoveControl",!1,e)}catch(n){console.log(n)}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")&&(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(){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);
lang/acf-fa_IR.mo CHANGED
Binary file
lang/acf-fa_IR.po CHANGED
@@ -2,117 +2,111 @@
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Advanced Custom Fields 4.2 Persian\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2013-07-09 03:49:07+00:00\n"
8
  "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-08-14 08:36+0330\n"
12
  "Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
13
- "Language-Team: Shahrakdownload.ir <ghaemomidi@yahoo.com>\n"
14
  "X-Generator: Poedit 1.5.7\n"
15
- "Language: fa_IR\n"
16
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
17
- "X-Poedit-Basepath: C:\\Users\\taninafzar\\Desktop\\Advanced Custom Fields "
18
- "4.2 Persian ( Shahrakdownload.ir )\\lang\n"
19
- "X-Poedit-SearchPath-0: C:\\Users\\taninafzar\\Desktop\\Advanced Custom "
20
- "Fields 4.2 Persian ( Shahrakdownload.ir )\\lang\n"
21
-
22
- #: acf.php:325
23
  msgid "Field&nbsp;Groups"
24
- msgstr "گروه زمینه"
25
 
26
- #: acf.php:326 core/controllers/field_groups.php:214
27
  msgid "Advanced Custom Fields"
28
- msgstr "زمینه سفارشی پیشرفته"
29
 
30
- #: acf.php:327
31
  msgid "Add New"
32
  msgstr "افزودن"
33
 
34
- #: acf.php:328
35
  msgid "Add New Field Group"
36
  msgstr "افزودن گروه زمینه جدید"
37
 
38
- #: acf.php:329
39
  msgid "Edit Field Group"
40
  msgstr "ویرایش گروه زمینه"
41
 
42
- #: acf.php:330
43
  msgid "New Field Group"
44
  msgstr "گروه زمینه جدید"
45
 
46
- #: acf.php:331
47
  msgid "View Field Group"
48
  msgstr "مشاهده گروه زمینه"
49
 
50
- #: acf.php:332
51
  msgid "Search Field Groups"
52
- msgstr "جستجوی گروه زمینه"
53
 
54
- #: acf.php:333
55
  msgid "No Field Groups found"
56
- msgstr "گروه زمینه ای یافت نشد"
57
 
58
- #: acf.php:334
59
  msgid "No Field Groups found in Trash"
60
- msgstr "گروه زمینه ای در زباله دان یافت نشد"
61
 
62
- #: acf.php:447 core/views/meta_box_options.php:96
63
  msgid "Custom Fields"
64
- msgstr "زمینه سفارشی"
65
 
66
- #: acf.php:465 acf.php:468
67
  msgid "Field group updated."
68
  msgstr "گروه زمینه بروز شد."
69
 
70
- #: acf.php:466
71
  msgid "Custom field updated."
72
- msgstr "زمینه سفارشی بروز شد."
73
 
74
- #: acf.php:467
75
  msgid "Custom field deleted."
76
- msgstr "زمینه سفارشی حذف شد."
77
 
78
  #. translators: %s: date and time of the revision
79
- #: acf.php:470
80
  msgid "Field group restored to revision from %s"
81
- msgstr "گروه زمینه ترمیم به تجدید نظر از %s"
82
 
83
- #: acf.php:471
84
  msgid "Field group published."
85
- msgstr "گروه زمینه منتشر شد"
86
 
87
- #: acf.php:472
88
  msgid "Field group saved."
89
  msgstr "گروه زمینه ذخیره شد."
90
 
91
- #: acf.php:473
92
  msgid "Field group submitted."
93
- msgstr "گروه زمینه را مشاهده کنید."
94
 
95
- #: acf.php:474
96
  msgid "Field group scheduled for."
97
- msgstr "گروه زمینه برنامه ریزی شده است برای."
98
 
99
- #: acf.php:475
100
  msgid "Field group draft updated."
101
- msgstr "پیش نویس زمینه گروهی به روز رسانی شده است."
102
 
103
- #: acf.php:610
104
  msgid "Thumbnail"
105
- msgstr "بند انگشتی"
106
 
107
- #: acf.php:611
108
  msgid "Medium"
109
  msgstr "متوسط"
110
 
111
- #: acf.php:612
112
  msgid "Large"
113
  msgstr "بزرگ"
114
 
115
- #: acf.php:613
116
  msgid "Full"
117
  msgstr "کامل"
118
 
@@ -122,46 +116,46 @@ msgstr "خطا"
122
 
123
  #: core/actions/export.php:30
124
  msgid "No ACF groups selected"
125
- msgstr "هیچ گروه زمینه سفارشی پیشرفته انتخاب نشده است."
126
 
127
- #: core/api.php:1093
128
  msgid "Update"
129
  msgstr "بروزرسانی"
130
 
131
- #: core/api.php:1094
132
  msgid "Post updated"
133
- msgstr "نوشته بروزرسانی شد"
134
 
135
- #: core/controllers/addons.php:42 core/controllers/field_groups.php:311
 
136
  msgid "Add-ons"
137
  msgstr "افزودنی ها"
138
 
139
  #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
140
  msgid "Repeater Field"
141
- msgstr "زمینه تکرارکننده"
142
 
143
  #: core/controllers/addons.php:131
144
  msgid "Create infinite rows of repeatable data with this versatile interface!"
145
  msgstr ""
146
- "ایجاد ردیف های بی نهایت از داده های تکرار شونده با این رابط کاربری چند "
147
  "منظوره!"
148
 
149
  #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
150
  msgid "Gallery Field"
151
- msgstr "گالری زمینه"
152
 
153
  #: core/controllers/addons.php:138
154
  msgid "Create image galleries in a simple and intuitive interface!"
155
- msgstr "ایجاد گالری های عکس در یک رابط کاربری ساده و بصری!"
156
 
157
- #: core/controllers/addons.php:144 core/controllers/export.php:380
158
- #: core/controllers/field_groups.php:448
159
  msgid "Options Page"
160
- msgstr "صغحه تنظیمات"
161
 
162
  #: core/controllers/addons.php:145
163
  msgid "Create global data to use throughout your website!"
164
- msgstr "ایجاد داده های جهانی برای استفاده در سراسر وبسایت شما!"
165
 
166
  #: core/controllers/addons.php:151
167
  msgid "Flexible Content Field"
@@ -169,23 +163,23 @@ msgstr "زمینه محتوای انعطاف پذیر"
169
 
170
  #: core/controllers/addons.php:152
171
  msgid "Create unique designs with a flexible content layout manager!"
172
- msgstr "ایجاد طرح های منحصر به فرد با یک مدیریت چیدمان محتوای انعطاف پذیر!"
173
 
174
  #: core/controllers/addons.php:161
175
  msgid "Gravity Forms Field"
176
- msgstr "زمینه فرم های جذب"
177
 
178
  #: core/controllers/addons.php:162
179
  msgid "Creates a select field populated with Gravity Forms!"
180
- msgstr "ایجاد یک زمینه انتخاب جمعیت با فرم های جذب!"
181
 
182
  #: core/controllers/addons.php:168
183
  msgid "Date & Time Picker"
184
- msgstr "چیننده تاریخ و زمان"
185
 
186
  #: core/controllers/addons.php:169
187
  msgid "jQuery date & time picker"
188
- msgstr "چیننده تاریخ و زمان jQuery"
189
 
190
  #: core/controllers/addons.php:175
191
  msgid "Location Field"
@@ -193,26 +187,26 @@ msgstr "مکان زمینه"
193
 
194
  #: core/controllers/addons.php:176
195
  msgid "Find addresses and coordinates of a desired location"
196
- msgstr "یافتن آدرس و مختصات مکان مورد نظر"
197
 
198
  #: core/controllers/addons.php:182
199
  msgid "Contact Form 7 Field"
200
- msgstr "زمینه فرم تماس 7"
201
 
202
  #: core/controllers/addons.php:183
203
  msgid "Assign one or more contact form 7 forms to a post"
204
- msgstr "اختصاص یک یا چند فرم تماس 7 شکل به یک نوشته"
205
 
206
  #: core/controllers/addons.php:193
207
  msgid "Advanced Custom Fields Add-Ons"
208
- msgstr "افزودنی های زمینه های سفارشی پیشرفته"
209
 
210
  #: core/controllers/addons.php:196
211
  msgid ""
212
  "The following Add-ons are available to increase the functionality of the "
213
  "Advanced Custom Fields plugin."
214
  msgstr ""
215
- "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های سفارشی پیشرفته در "
216
  "دسترس هستند."
217
 
218
  #: core/controllers/addons.php:197
@@ -220,8 +214,8 @@ msgid ""
220
  "Each Add-on can be installed as a separate plugin (receives updates) or "
221
  "included in your theme (does not receive updates)."
222
  msgstr ""
223
- "هر افزودنی را می توان به عنوان یک افزونه مجزا ( قابل بروزرسانی ) ویا موجود "
224
- "در قالب شما ( غیر قابل بروزرسانی ) نصب کرد."
225
 
226
  #: core/controllers/addons.php:219 core/controllers/addons.php:240
227
  msgid "Installed"
@@ -235,15 +229,15 @@ msgstr "خرید و نصب"
235
  #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
236
  #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
237
  msgid "Download"
238
- msgstr "دانلود"
239
 
240
  #: core/controllers/export.php:50 core/controllers/export.php:159
241
  msgid "Export"
242
- msgstr "صادرکردن"
243
 
244
  #: core/controllers/export.php:216
245
  msgid "Export Field Groups"
246
- msgstr "صادر کردن گروه های زمینه"
247
 
248
  #: core/controllers/export.php:221
249
  msgid "Field Groups"
@@ -251,75 +245,76 @@ msgstr "گروه های زمینه"
251
 
252
  #: core/controllers/export.php:222
253
  msgid "Select the field groups to be exported"
254
- msgstr "انتخاب گروه های زمینه برای صادر شدن"
255
 
256
  #: core/controllers/export.php:239 core/controllers/export.php:252
257
  msgid "Export to XML"
258
- msgstr "صادر کردن به فرمت XML"
259
 
260
  #: core/controllers/export.php:242 core/controllers/export.php:267
261
  msgid "Export to PHP"
262
- msgstr "صادر کردن به فرمت PHP"
263
 
264
  #: core/controllers/export.php:253
265
  msgid ""
266
  "ACF will create a .xml export file which is compatible with the native WP "
267
  "import plugin."
268
  msgstr ""
269
- "زمینه سفارشی پیشرفته ایجاد خواهد کرد یک پرونده XML صادر شده که سازگار است با "
270
- "پلاگین وردپرس واردات."
271
 
272
  #: core/controllers/export.php:254
273
  msgid ""
274
  "Imported field groups <b>will</b> appear in the list of editable field "
275
  "groups. This is useful for migrating fields groups between Wp websites."
276
  msgstr ""
277
- "گروه های زمینه وارد شده <b> <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 "حرکت به ابزار >> وارد کنید و وردپرس را انتخاب کنید"
293
 
294
  #: core/controllers/export.php:259
295
  msgid "Install WP import plugin if prompted"
296
- msgstr "نصب پلاگین WP-Import در صورت درخواست"
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
- "زمینه سفارشی پیشرفته کد پی اچ پی را ایجاد خواهد کرد تا آن را در قالبتان قرار "
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."
320
  msgstr ""
321
- "گروه های زمینه ثبت نام شده <b>نخواهد شد</b> به نظر می رسد در لیست گروه های "
322
- "زمینه قابل ویرایش است. این برای زمینه های راهنمایی در قالب ها مفید است."
323
 
324
  #: core/controllers/export.php:270 core/controllers/export.php:311
325
  msgid ""
@@ -328,45 +323,46 @@ msgid ""
328
  "the original field group to the trash or remove the code from your functions."
329
  "php file."
330
  msgstr ""
331
- "لطفا توجه داشنه باشید که اگر شما صادرات و ثبت نام گروه های زمینه را در داخل "
332
- "وردپرس انجام دهید، ما تکثیر زمینه ها را در صفحات ویرایشتان خواهید دید. برای "
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
- "گروه های زمینه را از لیست انتخاب کنید و روی دکمه /*ایجاد پی اچ پی/* کلیک "
340
- "کنید."
341
 
342
  #: core/controllers/export.php:273 core/controllers/export.php:302
343
  msgid "Copy the PHP code generated"
344
- msgstr "کپی کردن کد پی اچ پی ساخته شده"
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
  #: core/controllers/export.php:295
356
  msgid "Export Field Groups to PHP"
357
- msgstr "صادر کردن گروه های زمینه به فرمت پی اچ پی"
358
 
359
  #: core/controllers/export.php:300 core/fields/tab.php:65
360
  msgid "Instructions"
361
- msgstr "راهنمایی"
362
 
363
  #: core/controllers/export.php:309
364
  msgid "Notes"
365
- msgstr "یادداشت ها"
366
 
367
  #: core/controllers/export.php:316
368
  msgid "Include in theme"
369
- msgstr "شامل در قالب"
370
 
371
  #: core/controllers/export.php:317
372
  msgid ""
@@ -374,9 +370,9 @@ msgid ""
374
  "move the ACF plugin inside your theme and add the following code to your "
375
  "functions.php file:"
376
  msgstr ""
377
- "افزونه زمینه های سفارشی پیشرفته می تواند در داخل یک قالب شامل شود. برای "
378
- "انجام این کار، افزونه زمینه های سفارشی پیشرفته را در داخل قالبتان قرار دهید "
379
- "و کد زیر را به فایل functions.php تان اضافه کنید :"
380
 
381
  #: core/controllers/export.php:323
382
  msgid ""
@@ -384,13 +380,13 @@ msgid ""
384
  "to enable lite mode. Add the following code to your functions.php file "
385
  "<b>before</b> the include_once code:"
386
  msgstr ""
387
- "برای حذف همه ی رابط های بصری از افزونه زمینه های سفارشی پیشرفته، شما می "
388
- "توانید به طور ثابت برای فعال کردن حالت مطلب استفاده کنید. کد زیر را به فایل "
389
- "functions.php خود قبل از کد include_once اضافه کنید:"
390
 
391
  #: core/controllers/export.php:331
392
  msgid "Back to export"
393
- msgstr "بازگشت به صادرات"
394
 
395
  #: core/controllers/export.php:352
396
  msgid ""
@@ -401,43 +397,38 @@ msgid ""
401
  " * Please do not attempt to include a file which does not exist. This will "
402
  "produce an error.\n"
403
  " * \n"
404
- " * All fields must be included during the 'acf/register_fields' action.\n"
405
- " * Other types of Add-ons (like the options page) can be included outside "
406
- "of this action.\n"
407
- " * \n"
408
  " * The following code assumes you have a folder 'add-ons' inside your "
409
  "theme.\n"
410
  " *\n"
411
  " * IMPORTANT\n"
412
- " * Add-ons may be included in a premium theme as outlined in the terms and "
413
- "conditions.\n"
414
- " * However, they are NOT to be included in a premium / free plugin.\n"
415
- " * For more information, please read http://www.advancedcustomfields.com/"
416
- "terms-conditions/\n"
 
417
  " */"
418
  msgstr ""
419
  "/**\n"
420
- "* نصب افزودنی ها /n * \n"
421
- "* کد زیر را که شامل همه 4 افزودنی پریمیوم خواهد بود را در قالب خود قرار "
422
- "دهید. /n* لطفا سعی نکنید که یک فایل را که وجود ندارد قرار دهید. این خطا است. "
423
- "* \n"
424
- "* همه زمینه ها باید در طول عمل 'acf/register_fields' action شامل شده باشند.* "
425
- "انواع دیگر افزودنی ها ( مانند برگه گزینه ها ) می توانند در خارج از این عمل "
426
- "گنجتنده شوند./n * \n"
427
- "* کد زیر تظاهر می کند که شما یک پوشه به نام ( افزودنی ها ) در کنار قالبتان "
428
- "دارید./n *\n"
429
- "* مهم\n"
430
- "* * با این حال آن ها نه در افزونه ویژه شامل می شوند نه در افزونه رایگان./n* "
431
- "برای کسب اطلاعات بیشتر، لطفا به این آدرس بروید : http://www."
432
- "advancedcustomfields.com/terms-conditions/\n"
 
 
 
433
  " */"
434
 
435
- #: core/controllers/export.php:370 core/controllers/field_group.php:366
436
- #: core/controllers/field_group.php:428 core/controllers/field_groups.php:148
437
- msgid "Fields"
438
- msgstr "زمینه ها"
439
-
440
- #: core/controllers/export.php:384
441
  msgid ""
442
  "/**\n"
443
  " * Register Field Groups\n"
@@ -449,75 +440,116 @@ msgid ""
449
  " */"
450
  msgstr ""
451
  "/**\n"
452
- "* ثبت نام گروه های زمینه /n * تابع ثبت نام گروه زمینه یک آرایه را که دیتاهای "
453
- "مربوط را برای ثبت نام گروه زمینه نگه می دارد، می پذیرد. /n* شما ممکن است "
454
- "آرایه را طوری که خودتان مناسب می بینید ویرایش کنید. هرچند، این ممکن است در "
455
- "خطاها نتیجه بدهد اگر آرایه با زمینه های سفارشی پیشرفنه ( ACF ) سازگار "
456
- "نباشد. /n */"
 
 
 
 
457
 
458
- #: core/controllers/export.php:435
459
  msgid "No field groups were selected"
460
- msgstr "گروه زمینه انتخاب نشده است"
 
 
 
 
 
461
 
462
- #: core/controllers/field_group.php:367
463
  msgid "Location"
464
  msgstr "مکان"
465
 
466
- #: core/controllers/field_group.php:368
467
  msgid "Options"
468
  msgstr "تنظیمات"
469
 
470
- #: core/controllers/field_group.php:430
471
  msgid "Show Field Key:"
472
- msgstr "نمایش کلید زمینه :"
473
 
474
- #: core/controllers/field_group.php:431 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:228
479
- #: core/views/meta_box_fields.php:207 core/views/meta_box_fields.php:230
480
  msgid "No"
481
  msgstr "خیر"
482
 
483
- #: core/controllers/field_group.php:432 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:227
488
- #: core/views/meta_box_fields.php:206 core/views/meta_box_fields.php:229
489
  msgid "Yes"
490
  msgstr "بله"
491
 
492
- #: core/controllers/field_group.php:609
493
  msgid "Front Page"
494
- msgstr "سر برگه"
495
 
496
- #: core/controllers/field_group.php:610
497
  msgid "Posts Page"
498
  msgstr "برگه نوشته ها"
499
 
500
- #: core/controllers/field_group.php:611
501
  msgid "Top Level Page (parent of 0)"
502
- msgstr "برگه سطح بالا ( مادر از 0 )"
503
 
504
- #: core/controllers/field_group.php:612
505
  msgid "Parent Page (has children)"
506
- msgstr "مادر برگه ( دارای فرزند )"
507
 
508
- #: core/controllers/field_group.php:613
509
  msgid "Child Page (has parent)"
510
- msgstr "برگه ی کودک ( دارای مادر )"
511
 
512
- #: core/controllers/field_group.php:621
513
  msgid "Default Template"
514
- msgstr "قالب پیش فرض"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
 
516
- #: core/controllers/field_group.php:713 core/controllers/field_group.php:734
517
- #: core/controllers/field_group.php:741 core/fields/file.php:181
518
- #: core/fields/image.php:166 core/fields/page_link.php:109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
519
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
520
- #: core/fields/relationship.php:553 core/fields/relationship.php:577
521
  #: core/fields/user.php:229
522
  msgid "All"
523
  msgstr "همه"
@@ -532,7 +564,7 @@ msgstr "تغییرات"
532
 
533
  #: core/controllers/field_groups.php:217
534
  msgid "See what's new in"
535
- msgstr "چه چیز جدیدی در"
536
 
537
  #: core/controllers/field_groups.php:217
538
  msgid "version"
@@ -540,7 +572,7 @@ msgstr "نسخه"
540
 
541
  #: core/controllers/field_groups.php:219
542
  msgid "Resources"
543
- msgstr "منبع"
544
 
545
  #: core/controllers/field_groups.php:221
546
  msgid "Getting Started"
@@ -556,27 +588,27 @@ msgstr "توابع"
556
 
557
  #: core/controllers/field_groups.php:224
558
  msgid "Actions"
559
- msgstr "اَعمال"
560
 
561
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:596
562
  msgid "Filters"
563
  msgstr "فیلترها"
564
 
565
  #: core/controllers/field_groups.php:226
566
  msgid "'How to' guides"
567
- msgstr "راهنماهای ' چگونه '"
568
 
569
  #: core/controllers/field_groups.php:227
570
  msgid "Tutorials"
571
- msgstr "آموزش"
572
 
573
  #: core/controllers/field_groups.php:232
574
  msgid "Created by"
575
- msgstr "ایجاد شده توسط"
576
 
577
  #: core/controllers/field_groups.php:235
578
  msgid "Vote"
579
- msgstr "رای"
580
 
581
  #: core/controllers/field_groups.php:236
582
  msgid "Follow"
@@ -584,7 +616,7 @@ msgstr "دنبال کردن"
584
 
585
  #: core/controllers/field_groups.php:248
586
  msgid "Welcome to Advanced Custom Fields"
587
- msgstr "به زمینه های سفارشی پیشرفته خوش آمدید."
588
 
589
  #: core/controllers/field_groups.php:249
590
  msgid "Thank you for updating to the latest version!"
@@ -593,20 +625,21 @@ msgstr "از شما برای بروزرسانی به آخرین نسخه سپا
593
  #: core/controllers/field_groups.php:249
594
  msgid "is more polished and enjoyable than ever before. We hope you like it."
595
  msgstr ""
596
- "بهتر و لذت بخش تر از هر زمان دیگری است. ما امیدواریم که شما آن را دوست "
597
- "بدارید."
 
598
 
599
  #: core/controllers/field_groups.php:256
600
  msgid "What’s New"
601
- msgstr "چه چیزی جدید است"
602
 
603
  #: core/controllers/field_groups.php:259
604
  msgid "Download Add-ons"
605
- msgstr "دانلود افزودنی"
606
 
607
  #: core/controllers/field_groups.php:313
608
  msgid "Activation codes have grown into plugins!"
609
- msgstr "کد های فعال سازی در افزونه ها افزایش یافته اند!"
610
 
611
  #: core/controllers/field_groups.php:314
612
  msgid ""
@@ -614,37 +647,37 @@ msgid ""
614
  "Although these plugins will not be hosted on the wordpress.org repository, "
615
  "each Add-on will continue to receive updates in the usual way."
616
  msgstr ""
617
- "افزودنی ها الآن با دانلود و نصب افزونه های فردی فعال سازی می شوند. اگر چه "
618
- "این افزونه ها در مخزن wordpress.org میزبانی خواهد شد, هر افزودنی برای دریافت "
619
- "به روز رسانی ها در راه معمول ادامه خواهد داد."
620
 
621
  #: core/controllers/field_groups.php:320
622
  msgid "All previous Add-ons have been successfully installed"
623
- msgstr "تمامی افزودنی های قبلی با موفقیت نصب شده اند"
624
 
625
  #: core/controllers/field_groups.php:324
626
  msgid "This website uses premium Add-ons which need to be downloaded"
627
- msgstr "این وبسایت از افزودنی های ویژه استفاده می کند که به دانلود نیاز دارند."
628
 
629
  #: core/controllers/field_groups.php:324
630
  msgid "Download your activated Add-ons"
631
- msgstr "دانلود افزودنی های فعال سازی شده شما"
632
 
633
  #: core/controllers/field_groups.php:329
634
  msgid ""
635
  "This website does not use premium Add-ons and will not be affected by this "
636
  "change."
637
  msgstr ""
638
- "این وبسایت از افزودنی های ویژه استفاده نمی کند و با این تغییرات تحت تأثیر "
639
- "قرار نخواهد گرفت."
640
 
641
  #: core/controllers/field_groups.php:339
642
  msgid "Easier Development"
643
- msgstr "توسعه آسان"
644
 
645
  #: core/controllers/field_groups.php:341
646
  msgid "New Field Types"
647
- msgstr "انواع زمینه های جدید"
648
 
649
  #: core/controllers/field_groups.php:343
650
  msgid "Taxonomy Field"
@@ -656,67 +689,68 @@ msgstr "زمینه کاربر"
656
 
657
  #: core/controllers/field_groups.php:345
658
  msgid "Email Field"
659
- msgstr "زمینه ایمیل"
660
 
661
  #: core/controllers/field_groups.php:346
662
  msgid "Password Field"
663
- msgstr "رمز زمینه"
664
 
665
  #: core/controllers/field_groups.php:348
666
  msgid "Custom Field Types"
667
- msgstr "انواع زمینه سفارشی"
668
 
669
  #: core/controllers/field_groups.php:349
670
  msgid ""
671
  "Creating your own field type has never been easier! Unfortunately, version 3 "
672
  "field types are not compatible with version 4."
673
  msgstr ""
674
- "ایجاد نوع زمینه خود ساده تر شده است! متأسفانه انواع زمینه نسخه 3 با نسخه 4 "
675
- "سازگار نیست."
676
 
677
  #: core/controllers/field_groups.php:350
678
  msgid "Migrating your field types is easy, please"
679
- msgstr "مهاجرت انواع زمینه شما آسان است، لطفا"
 
680
 
681
  #: core/controllers/field_groups.php:350
682
  msgid "follow this tutorial"
683
- msgstr "دنبال کردن این آموزش"
684
 
685
  #: core/controllers/field_groups.php:350
686
  msgid "to learn more."
687
- msgstr "برای کسب اطلاعات بیشتر."
688
 
689
  #: core/controllers/field_groups.php:352
690
  msgid "Actions &amp; Filters"
691
- msgstr "اَعمال و فیلترها"
692
 
693
  #: core/controllers/field_groups.php:353
694
  msgid ""
695
  "All actions & filters have received a major facelift to make customizing ACF "
696
  "even easier! Please"
697
  msgstr ""
698
- "همه ی اعمال و فیلتر ها مورد قبول یک جراح پلاستیک ( تعمیرکار ) بزرگ که سفارش "
699
- "های افزونه زمینه های سفارشی پیشرفته را به آسانی درست می کند است! لطفا"
700
 
701
  #: core/controllers/field_groups.php:353
702
  msgid "read this guide"
703
- msgstr "خواندن این راهنمایی"
704
 
705
  #: core/controllers/field_groups.php:353
706
  msgid "to find the updated naming convention."
707
- msgstr "پیداکردن بروزرسانی نامگذاری قرارداد."
708
 
709
  #: core/controllers/field_groups.php:355
710
  msgid "Preview draft is now working!"
711
- msgstr "پیش پیش نویس در حال حاضر در حال کار است!"
712
 
713
  #: core/controllers/field_groups.php:356
714
  msgid "This bug has been squashed along with many other little critters!"
715
- msgstr "این اشکال همراه با بسیاری از اشکالات دیگر از بین رفته اند."
716
 
717
  #: core/controllers/field_groups.php:356
718
  msgid "See the full changelog"
719
- msgstr "دیدن تغییرات کامل"
720
 
721
  #: core/controllers/field_groups.php:360
722
  msgid "Important"
@@ -732,9 +766,8 @@ msgid ""
732
  "between versions 3 and 4. This means you can roll back to version 3 without "
733
  "any issues."
734
  msgstr ""
735
- "کاملا <strong>بدون</strong> تغییرات به پایگاه داده بین نسخه های 3 و 4 ساخته "
736
- "شده اند. این به این معنی است که شما بدون هیچ گونه مسئله ای می توانید به نسخه "
737
- "3 برگردید."
738
 
739
  #: core/controllers/field_groups.php:365
740
  msgid "Potential Issues"
@@ -746,8 +779,8 @@ msgid ""
746
  "filters, your website may not operate correctly. It is important that you "
747
  "read the full"
748
  msgstr ""
749
- "با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه و عمل/ فیلترها، سایت شما "
750
- "ممکن است به درستی عمل نکند. این مهم است که شما راهنمای کامل را بخوانید."
751
 
752
  #: core/controllers/field_groups.php:366
753
  msgid "Migrating from v3 to v4"
@@ -755,7 +788,7 @@ msgstr "مهاجرت از نسخه 3 به نسخه 4"
755
 
756
  #: core/controllers/field_groups.php:366
757
  msgid "guide to view the full list of changes."
758
- msgstr "راهنما برای دیدن لیست کاملی از تغییرات."
759
 
760
  #: core/controllers/field_groups.php:369
761
  msgid "Really Important!"
@@ -766,8 +799,8 @@ msgid ""
766
  "If you updated the ACF plugin without prior knowledge of such changes, "
767
  "please roll back to the latest"
768
  msgstr ""
769
- "اگر شما افزونه زمینه های سفارشی پیشرفته را بدون اگاهی از آخرین تغییرات "
770
- "بروزرسانی کردید لطفا به آخرین نسخه برگردید."
771
 
772
  #: core/controllers/field_groups.php:369
773
  msgid "version 3"
@@ -786,12 +819,15 @@ msgid ""
786
  "A <strong>BIG</strong> thank you to everyone who has helped test the version "
787
  "4 beta and for all the support I have received."
788
  msgstr ""
789
- "یک<strong>تشکر بزرگ</strong> از همه کسانی که برای آزمایش نسخه 4 بتا کمک "
790
- "کردند و من به همه ی درخواست های پشتیبانی پاسخ خواهم داد."
 
791
 
792
  #: core/controllers/field_groups.php:376
793
  msgid "Without you all, this release would not have been possible!"
794
- msgstr "بدون همه ی شما، انتشار این نسخه امکان پذیر نبود."
 
 
795
 
796
  #: core/controllers/field_groups.php:380
797
  msgid "Changelog for"
@@ -799,7 +835,7 @@ msgstr "تغییرات برای"
799
 
800
  #: core/controllers/field_groups.php:396
801
  msgid "Learn more"
802
- msgstr "یادگیری بیشتر"
803
 
804
  #: core/controllers/field_groups.php:402
805
  msgid "Overview"
@@ -811,16 +847,16 @@ msgid ""
811
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
812
  "need to be individually downloaded, installed and updated."
813
  msgstr ""
814
- "پیش از این، همه ی افزودنی ها با یک کد فعال سازی ( خریداری شده از طریق "
815
- "فروشگاه افزودنی های افزونه زمینه های سفارشی پیشرفته ) باز شده اند. چیز جدید "
816
- "در نسخه 4 این است که همه اعمال افزودنی ها جداگانه است و باید به طور جداگانه "
817
- "دریافت، نصب و بروزرسانی شوند."
818
 
819
  #: core/controllers/field_groups.php:406
820
  msgid ""
821
  "This page will assist you in downloading and installing each available Add-"
822
  "on."
823
- msgstr "این برگه به شما در دانلود و نصب هر افزودنی موجود کمک خواهد کرد."
824
 
825
  #: core/controllers/field_groups.php:408
826
  msgid "Available Add-ons"
@@ -828,7 +864,7 @@ msgstr "افزودنی های موجود"
828
 
829
  #: core/controllers/field_groups.php:410
830
  msgid "The following Add-ons have been detected as activated on this website."
831
- msgstr "افزودنی های زیر شناسایی شده اند تا در این وبسایت فعال شوند."
832
 
833
  #: core/controllers/field_groups.php:423
834
  msgid "Name"
@@ -836,11 +872,11 @@ msgstr "نام"
836
 
837
  #: core/controllers/field_groups.php:424
838
  msgid "Activation Code"
839
- msgstr "کد فعال سازی"
840
 
841
  #: core/controllers/field_groups.php:456
842
  msgid "Flexible Content"
843
- msgstr "محتوا انعطاف پذیر"
844
 
845
  #: core/controllers/field_groups.php:466
846
  msgid "Installation"
@@ -848,76 +884,86 @@ msgstr "نصب"
848
 
849
  #: core/controllers/field_groups.php:468
850
  msgid "For each Add-on available, please perform the following:"
851
- msgstr "برای هر افزودنی موجود لطفا کارهای زیر را انجام دهید :"
852
 
853
  #: core/controllers/field_groups.php:470
854
  msgid "Download the Add-on plugin (.zip file) to your desktop"
855
- msgstr "دانلود پلاگین افزودنی ( فایل زیپ ) در دسکتاپ شما"
856
 
857
  #: core/controllers/field_groups.php:471
858
  msgid "Navigate to"
859
- msgstr "حرکت به"
860
 
861
  #: core/controllers/field_groups.php:471
862
  msgid "Plugins > Add New > Upload"
863
- msgstr "افزونه ها >> افزودن >> آپلود"
864
 
865
  #: core/controllers/field_groups.php:472
866
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
867
  msgstr ""
868
- "استفاده از آپلود کننده برای مرور، انتخاب و نصب افزودنی شما ( فایل زیپ )"
 
869
 
870
  #: core/controllers/field_groups.php:473
871
  msgid ""
872
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
873
  "link"
874
  msgstr ""
875
- "هنگامی که یک افزونه آپلود و نصب شده است، بر روی لینک \"فعال کردن افزونه\" "
876
- "کلیک کنید"
877
 
878
  #: core/controllers/field_groups.php:474
879
  msgid "The Add-on is now installed and activated!"
880
- msgstr "افزودنی الآن نصب و فعال سازی شده است!"
881
 
882
  #: core/controllers/field_groups.php:488
883
  msgid "Awesome. Let's get to work"
884
- msgstr "حیرت آور است نه؟ پس بیا شروع به کارکنیم."
 
 
 
 
885
 
886
- #: core/controllers/input.php:510
 
 
 
 
887
  msgid "Validation Failed. One or more fields below are required."
888
- msgstr "اعتبار سنجی شکست خورد. یک یا چند زمینه های زیر مورد نیاز است."
 
889
 
890
  #: core/controllers/upgrade.php:86
891
  msgid "Upgrade"
892
- msgstr "بروز رسانی"
893
 
894
  #: core/controllers/upgrade.php:139
895
  msgid "What's new"
896
- msgstr "چه چیزی جدید است"
897
 
898
  #: core/controllers/upgrade.php:150
899
  msgid "credits"
900
- msgstr "اعتبارات"
901
 
902
  #: core/controllers/upgrade.php:684
903
  msgid "Modifying field group options 'show on page'"
904
- msgstr "گزینه های اصلاح گروه های زمینه ( نشان دادن در صفحه )"
905
 
906
  #: core/controllers/upgrade.php:738
907
  msgid "Modifying field option 'taxonomy'"
908
- msgstr "گزینه اصلاح زمینه ( طبقه بندی )"
909
 
910
  #: core/controllers/upgrade.php:835
911
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
912
- msgstr "حرکت زمینه های سفارشی کاربر از wp_options به wp_usermeta '"
913
 
914
  #: core/fields/_base.php:124 core/views/meta_box_location.php:74
915
  msgid "Basic"
916
- msgstr "پایه ( عمومی )"
917
 
918
  #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
919
  msgid "Checkbox"
920
- msgstr "جعبه چک"
921
 
922
  #: core/fields/checkbox.php:20 core/fields/radio.php:19
923
  #: core/fields/select.php:19 core/fields/true_false.php:20
@@ -931,13 +977,12 @@ msgstr "گزینه ها"
931
 
932
  #: core/fields/checkbox.php:138 core/fields/select.php:178
933
  msgid "Enter each choice on a new line."
934
- msgstr "هر انتخاب را در خط جدید وارد کنید."
935
 
936
  #: core/fields/checkbox.php:139 core/fields/select.php:179
937
  msgid "For more control, you may specify both a value and label like this:"
938
  msgstr ""
939
- "برای کنترل بیشتر، شما ممکن است هر دو یک مقدار و برچسب شبیه به این را مشخص "
940
- "کنید:"
941
 
942
  #: core/fields/checkbox.php:140 core/fields/radio.php:150
943
  #: core/fields/select.php:180
@@ -949,17 +994,17 @@ msgstr "قرمز : قرمز"
949
  msgid "blue : Blue"
950
  msgstr "آبی : آبی"
951
 
952
- #: core/fields/checkbox.php:157 core/fields/color_picker.php:73
953
- #: core/fields/email.php:69 core/fields/number.php:94
954
  #: core/fields/radio.php:193 core/fields/select.php:197
955
- #: core/fields/text.php:71 core/fields/textarea.php:71
956
  #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
957
  msgid "Default Value"
958
  msgstr "مقدار پیش فرض"
959
 
960
  #: core/fields/checkbox.php:158 core/fields/select.php:198
961
  msgid "Enter each default value on a new line"
962
- msgstr "هر مقدار پیش فرض را در خط جدید وارد کنید"
963
 
964
  #: core/fields/checkbox.php:174 core/fields/message.php:20
965
  #: core/fields/radio.php:209 core/fields/tab.php:20
@@ -976,15 +1021,11 @@ msgstr "افقی"
976
 
977
  #: core/fields/color_picker.php:19
978
  msgid "Color Picker"
979
- msgstr "جمع کننده رنگ"
980
 
981
  #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
982
  msgid "jQuery"
983
- msgstr "jQuery"
984
-
985
- #: core/fields/color_picker.php:74
986
- msgid "eg: #ffffff"
987
- msgstr "به عنوان مثال : #ffffff"
988
 
989
  #: core/fields/date_picker/date_picker.php:22
990
  msgid "Date Picker"
@@ -1004,24 +1045,24 @@ msgstr "نمایش یک ماه مختلف"
1004
 
1005
  #: core/fields/date_picker/date_picker.php:105
1006
  msgid "Save format"
1007
- msgstr "فرمت ذخیره"
1008
 
1009
  #: core/fields/date_picker/date_picker.php:106
1010
  msgid ""
1011
  "This format will determin the value saved to the database and returned via "
1012
  "the API"
1013
  msgstr ""
1014
- "این فرمت تعیین خواهد کرد مقدار ذخیره شده دیتابیس را و از طریق API بازگشت "
1015
- "داده می شود."
1016
 
1017
  #: core/fields/date_picker/date_picker.php:107
1018
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1019
- msgstr "( روز/ماه/سال ) بهترین فرمت ذخیره است. خواندن اطلاعات بیشتر"
1020
 
1021
  #: core/fields/date_picker/date_picker.php:107
1022
  #: core/fields/date_picker/date_picker.php:123
1023
  msgid "jQuery date formats"
1024
- msgstr "فرمت های تاریخ از JQuery"
1025
 
1026
  #: core/fields/date_picker/date_picker.php:121
1027
  msgid "Display format"
@@ -1029,15 +1070,15 @@ msgstr "فرمت نمایش"
1029
 
1030
  #: core/fields/date_picker/date_picker.php:122
1031
  msgid "This format will be seen by the user when entering a value"
1032
- msgstr "این قالب توسط کاربر هنگام ورود به یک ارزش ( مقدار ) دیده خواهد شد."
1033
 
1034
  #: core/fields/date_picker/date_picker.php:123
1035
  msgid ""
1036
  "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1037
  "about"
1038
  msgstr ""
1039
- "( روز/ماه/سال ) یا ( ماه/روز/سال ) پر استفاده ترین فرمت های نمایش تاریخ "
1040
- "هستند خواندن اطلاعات بیشتر"
1041
 
1042
  #: core/fields/date_picker/date_picker.php:137
1043
  msgid "Week Starts On"
@@ -1049,7 +1090,45 @@ msgstr "ساختگی"
1049
 
1050
  #: core/fields/email.php:19
1051
  msgid "Email"
1052
- msgstr "ایمیل"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1053
 
1054
  #: core/fields/file.php:19
1055
  msgid "File"
@@ -1059,7 +1138,7 @@ msgstr "پرونده"
1059
  msgid "Content"
1060
  msgstr "محتوا"
1061
 
1062
- #: core/fields/file.php:26 core/fields/file.php:711
1063
  msgid "Select File"
1064
  msgstr "انتخاب پرونده"
1065
 
@@ -1067,68 +1146,52 @@ msgstr "انتخاب پرونده"
1067
  msgid "Edit File"
1068
  msgstr "ویرایش پرونده"
1069
 
1070
- #: core/fields/file.php:28 core/fields/image.php:29
 
 
 
 
1071
  msgid "uploaded to this post"
1072
- msgstr "آپلود شده در این پست"
1073
 
1074
- #: core/fields/file.php:118
1075
  msgid "No File Selected"
1076
- msgstr "پرونده ای انتخاب نشده است"
1077
 
1078
- #: core/fields/file.php:118
1079
  msgid "Add File"
1080
  msgstr "افزودن پرونده"
1081
 
1082
- #: core/fields/file.php:148 core/fields/image.php:117
1083
  #: core/fields/taxonomy.php:365
1084
  msgid "Return Value"
1085
- msgstr "مقدار برگشتی"
1086
 
1087
- #: core/fields/file.php:159
1088
  msgid "File Object"
1089
  msgstr "موضوع پرونده"
1090
 
1091
- #: core/fields/file.php:160
1092
  msgid "File URL"
1093
  msgstr "آدرس پرونده"
1094
 
1095
- #: core/fields/file.php:161
1096
  msgid "File ID"
1097
  msgstr "شناسه پرونده"
1098
 
1099
- #: core/fields/file.php:170 core/fields/image.php:155
1100
  msgid "Library"
1101
  msgstr "کتابخانه"
1102
 
1103
- #: core/fields/file.php:182 core/fields/image.php:167
1104
  msgid "Uploaded to post"
1105
- msgstr "آپلود شده در پست"
1106
-
1107
- #: core/fields/file.php:286
1108
- msgid "File Updated."
1109
- msgstr "پرونده بروزرسانی شد."
1110
-
1111
- #: core/fields/file.php:379 core/fields/image.php:396
1112
- msgid "Media attachment updated."
1113
- msgstr "پیوست رسانه بروز شد."
1114
-
1115
- #: core/fields/file.php:537
1116
- msgid "No files selected"
1117
- msgstr "پرونده ای انتخاب نشده است."
1118
-
1119
- #: core/fields/file.php:678
1120
- msgid "Add Selected Files"
1121
- msgstr "افزودن پرونده های انتخاب شده"
1122
-
1123
- #: core/fields/file.php:714
1124
- msgid "Update File"
1125
- msgstr "بروزرسانی پرونده"
1126
 
1127
  #: core/fields/image.php:19
1128
  msgid "Image"
1129
  msgstr "تصویر"
1130
 
1131
- #: core/fields/image.php:27 core/fields/image.php:718
1132
  msgid "Select Image"
1133
  msgstr "انتخاب تصویر"
1134
 
@@ -1136,53 +1199,53 @@ msgstr "انتخاب تصویر"
1136
  msgid "Edit Image"
1137
  msgstr "ویرایش تصویر"
1138
 
1139
- #: core/fields/image.php:82
 
 
 
 
1140
  msgid "Remove"
1141
- msgstr "برداشتن"
1142
 
1143
- #: core/fields/image.php:83 core/views/meta_box_fields.php:122
1144
  msgid "Edit"
1145
  msgstr "ویرایش"
1146
 
1147
- #: core/fields/image.php:89
1148
  msgid "No image selected"
1149
- msgstr "تصویری انتخاب نشده است"
1150
 
1151
- #: core/fields/image.php:89
1152
  msgid "Add Image"
1153
  msgstr "افزودن تصویر"
1154
 
1155
- #: core/fields/image.php:127
 
 
 
 
1156
  msgid "Image Object"
1157
  msgstr "موضوع تصویر"
1158
 
1159
- #: core/fields/image.php:128
1160
  msgid "Image URL"
1161
  msgstr "آدرس تصویر"
1162
 
1163
- #: core/fields/image.php:129
1164
  msgid "Image ID"
1165
  msgstr "شناسه تصویر"
1166
 
1167
- #: core/fields/image.php:137
1168
  msgid "Preview Size"
1169
- msgstr "اندازه قبلی"
1170
-
1171
- #: core/fields/image.php:305
1172
- msgid "Image Updated."
1173
- msgstr "تصویر بروزرسانی شد."
1174
-
1175
- #: core/fields/image.php:547
1176
- msgid "No images selected"
1177
- msgstr "تصویری انتخاب نشده است"
1178
 
1179
- #: core/fields/image.php:689
1180
- msgid "Add Selected Images"
1181
- msgstr "افزودن تصاویر انتخاب شده"
1182
 
1183
- #: core/fields/image.php:721
1184
- msgid "Update Image"
1185
- msgstr "بروزرسانی تصویر"
1186
 
1187
  #: core/fields/message.php:19 core/fields/message.php:70
1188
  #: core/fields/true_false.php:79
@@ -1192,54 +1255,42 @@ msgstr "پیام"
1192
  #: core/fields/message.php:71
1193
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1194
  msgstr ""
1195
- "متن و اچ تی ام ال وارد شده در این جا در خط و با زمینه ها ظاهر خواهد شد."
1196
 
1197
  #: core/fields/message.php:72
1198
  msgid "Please note that all text will first be passed through the wp function "
1199
  msgstr ""
1200
- "لطفا توجه داشته باشید که تمام متن را برای اولین بار از طریق تابع وردپرس "
1201
  "انتقال دهید."
1202
 
1203
  #: core/fields/number.php:19
1204
  msgid "Number"
1205
  msgstr "شماره"
1206
 
1207
- #: core/fields/number.php:110
1208
- msgid "Min"
1209
- msgstr "حداقل"
1210
-
1211
- #: core/fields/number.php:111
1212
- msgid "Specifies the minimum value allowed"
1213
- msgstr "مشخص کردن کمترین مقدار مجاز"
1214
 
1215
- #: core/fields/number.php:127
1216
- msgid "Max"
1217
- msgstr "حداکثر"
1218
 
1219
- #: core/fields/number.php:128
1220
- msgid "Specifies the maximim value allowed"
1221
- msgstr "مشخص کردن بیشترین مقدار مجاز"
1222
-
1223
- #: core/fields/number.php:144
1224
- msgid "Step"
1225
- msgstr "قدم زدن"
1226
-
1227
- #: core/fields/number.php:145
1228
- msgid "Specifies the legal number intervals"
1229
- msgstr "مشخص کردن تعداد فواصل حقوقی"
1230
 
1231
  #: core/fields/page_link.php:18
1232
  msgid "Page Link"
1233
- msgstr "لینک برگه"
1234
 
1235
  #: core/fields/page_link.php:19 core/fields/post_object.php:19
1236
  #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1237
  #: core/fields/user.php:19
1238
  msgid "Relational"
1239
- msgstr "وابستگی"
1240
 
1241
  #: core/fields/page_link.php:103 core/fields/post_object.php:268
1242
- #: core/fields/relationship.php:547 core/fields/relationship.php:626
1243
  #: core/views/meta_box_location.php:75
1244
  msgid "Post Type"
1245
  msgstr "نوع نوشته"
@@ -1248,36 +1299,36 @@ msgstr "نوع نوشته"
1248
  #: core/fields/select.php:214 core/fields/taxonomy.php:331
1249
  #: core/fields/user.php:275
1250
  msgid "Allow Null?"
1251
- msgstr "نول اجازه می دهد؟"
1252
 
1253
  #: core/fields/page_link.php:148 core/fields/post_object.php:338
1254
  #: core/fields/select.php:233
1255
  msgid "Select multiple values?"
1256
- msgstr "آیا چندین مقدار انتخاب شود؟"
1257
 
1258
  #: core/fields/password.php:19
1259
  msgid "Password"
1260
- msgstr "رمز"
1261
 
1262
  #: core/fields/post_object.php:18
1263
  msgid "Post Object"
1264
  msgstr "موضوع نوشته"
1265
 
1266
- #: core/fields/post_object.php:292 core/fields/relationship.php:571
1267
  msgid "Filter from Taxonomy"
1268
- msgstr "فیلتر از طبقه بندی"
1269
 
1270
  #: core/fields/radio.php:18
1271
  msgid "Radio Button"
1272
  msgstr "دکمه رادیویی"
1273
 
1274
- #: core/fields/radio.php:102 core/views/meta_box_location.php:90
1275
  msgid "Other"
1276
  msgstr "دیگر"
1277
 
1278
  #: core/fields/radio.php:145
1279
  msgid "Enter your choices one per line"
1280
- msgstr "انتخاب های خود را در هر خط وارد کنید"
1281
 
1282
  #: core/fields/radio.php:147
1283
  msgid "Red"
@@ -1289,103 +1340,121 @@ msgstr "آبی"
1289
 
1290
  #: core/fields/radio.php:172
1291
  msgid "Add 'other' choice to allow for custom values"
1292
- msgstr "افزودن انتخاب دیگر اجازه می دهد برای ارزش های سفارشی"
1293
 
1294
  #: core/fields/radio.php:184
1295
  msgid "Save 'other' values to the field's choices"
1296
- msgstr "ذخیره مقادیر دیگر برای انتخاب های زمینه"
1297
 
1298
  #: core/fields/relationship.php:18
1299
  msgid "Relationship"
1300
  msgstr "ارتباط"
1301
 
1302
- #: core/fields/relationship.php:28
1303
  msgid "Maximum values reached ( {max} values )"
1304
- msgstr "حداکثر مقدار ها رسیده است ( (حداکثر) ارزش ها )"
1305
 
1306
- #: core/fields/relationship.php:401
1307
  msgid "Search..."
1308
  msgstr "جستجو . . ."
1309
 
1310
- #: core/fields/relationship.php:414
1311
  msgid "Filter by post type"
1312
- msgstr "فیلتر شده توسط نوع پست"
 
 
 
 
 
 
 
 
 
 
 
 
1313
 
1314
- #: core/fields/relationship.php:605
1315
  msgid "Search"
1316
  msgstr "جستجو"
1317
 
1318
- #: core/fields/relationship.php:606
1319
  msgid "Post Type Select"
1320
  msgstr "انتخاب نوع نوشته"
1321
 
1322
- #: core/fields/relationship.php:614
1323
  msgid "Elements"
1324
  msgstr "عناصر"
1325
 
1326
- #: core/fields/relationship.php:615
1327
  msgid "Selected elements will be displayed in each result"
1328
- msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهد شد"
1329
 
1330
- #: core/fields/relationship.php:624 core/views/meta_box_options.php:103
1331
  msgid "Featured Image"
1332
- msgstr "ویژگی های تصویر"
1333
 
1334
- #: core/fields/relationship.php:625
1335
  msgid "Post Title"
1336
  msgstr "عنوان نوشته"
1337
 
1338
- #: core/fields/relationship.php:637
1339
  msgid "Maximum posts"
1340
- msgstr "حداکثر ارسال ها"
1341
 
1342
- #: core/fields/select.php:18 core/fields/taxonomy.php:322
1343
- #: core/fields/user.php:266
1344
  msgid "Select"
1345
  msgstr "انتخاب"
1346
 
1347
  #: core/fields/tab.php:19
1348
  msgid "Tab"
1349
- msgstr "بند ( باریکه، برگه )"
1350
 
1351
  #: core/fields/tab.php:68
1352
  msgid ""
1353
- "All fields proceeding this \"tab field\" (or until another \"tab field\" is "
1354
- "defined) will appear grouped on the edit screen."
1355
  msgstr ""
1356
- "همه ی زمینه های اقدام این \"tab field\" ( یا زمانی دیگر \"tab field\" تعریف "
1357
- "شده است. ) در صفحه ویرایش گروه بندی ظاهر خواهد شد."
1358
 
1359
  #: core/fields/tab.php:69
1360
- msgid "You can use multiple tabs to break up your fields into sections."
 
 
1361
  msgstr ""
1362
- "شما می توانید از چندین تب برای تفکیک زمینه های خود به بخش استفاده کنید."
 
 
 
 
 
1363
 
1364
  #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
1365
  msgid "Taxonomy"
1366
  msgstr "طبقه بندی"
1367
 
1368
  #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
1369
- #: core/fields/text.php:95 core/fields/textarea.php:95
1370
  msgid "None"
1371
- msgstr "هیچ کدام"
1372
 
1373
  #: core/fields/taxonomy.php:306 core/fields/user.php:251
1374
- #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:172
1375
  msgid "Field Type"
1376
  msgstr "نوع زمینه"
1377
 
1378
  #: core/fields/taxonomy.php:316 core/fields/user.php:260
1379
  msgid "Multiple Values"
1380
- msgstr "چندین ارزش"
1381
 
1382
  #: core/fields/taxonomy.php:318 core/fields/user.php:262
1383
  msgid "Multi Select"
1384
- msgstr "چند انتخاب"
1385
 
1386
  #: core/fields/taxonomy.php:320 core/fields/user.php:264
1387
  msgid "Single Value"
1388
- msgstr "تکارزش"
1389
 
1390
  #: core/fields/taxonomy.php:321
1391
  msgid "Radio Buttons"
@@ -1393,12 +1462,13 @@ msgstr "دکمه های رادیویی"
1393
 
1394
  #: core/fields/taxonomy.php:350
1395
  msgid "Load & Save Terms to Post"
1396
- msgstr "بارگذاری و ذخیره شرایط پست"
1397
 
1398
  #: core/fields/taxonomy.php:358
1399
  msgid ""
1400
  "Load value based on the post's terms and update the post's terms on save"
1401
- msgstr "بارگذاری ارزش براساس شرایط پست و بروزرسانی شرایط پست در ذخیره کردن"
 
1402
 
1403
  #: core/fields/taxonomy.php:375
1404
  msgid "Term Object"
@@ -1412,57 +1482,65 @@ msgstr "شناسه دوره"
1412
  msgid "Text"
1413
  msgstr "متن"
1414
 
1415
- #: core/fields/text.php:85 core/fields/textarea.php:85
1416
  msgid "Formatting"
1417
- msgstr "قال بندی"
 
 
 
 
 
 
 
 
1418
 
1419
- #: core/fields/text.php:86
1420
- msgid "Define how to render html tags"
1421
- msgstr "تعریف چگونگی ترجمه به تگ های اچ تی ام ال"
1422
 
1423
- #: core/fields/text.php:96 core/fields/textarea.php:97
1424
- msgid "HTML"
1425
- msgstr "اچ تی ام ال"
 
 
 
 
1426
 
1427
  #: core/fields/textarea.php:19
1428
  msgid "Text Area"
1429
- msgstr "محل متن"
1430
-
1431
- #: core/fields/textarea.php:86
1432
- msgid "Define how to render html tags / new lines"
1433
- msgstr "تعریف چگونگی ترجمه به تگ های اچ تی ام ال / خطوط جدید"
1434
 
1435
- #: core/fields/textarea.php:96
1436
- msgid "auto &lt;br /&gt;"
1437
- msgstr "<br>خودکار<br/>"
1438
 
1439
  #: core/fields/true_false.php:19
1440
  msgid "True / False"
1441
- msgstr "درست / نادرست"
1442
 
1443
  #: core/fields/true_false.php:80
1444
  msgid "eg. Show extra content"
1445
- msgstr "به عنوان مثال : نمایش محتوای اضافی"
1446
 
1447
- #: core/fields/user.php:18
1448
  msgid "User"
1449
  msgstr "کاربر"
1450
 
1451
  #: core/fields/user.php:224
1452
  msgid "Filter by role"
1453
- msgstr "فیلتر توسط نقش"
1454
 
1455
  #: core/fields/wysiwyg.php:19
1456
  msgid "Wysiwyg Editor"
1457
- msgstr "ویرایشگر بصری"
1458
 
1459
- #: core/fields/wysiwyg.php:185
1460
  msgid "Toolbar"
1461
  msgstr "نوار ابزار"
1462
 
1463
- #: core/fields/wysiwyg.php:217
1464
  msgid "Show Media Upload Buttons?"
1465
- msgstr "آیا دکمه های آپلود رسانه ای نمایش داده شوند؟"
1466
 
1467
  #: core/views/meta_box_fields.php:24
1468
  msgid "New Field"
@@ -1470,36 +1548,36 @@ msgstr "زمینه جدید"
1470
 
1471
  #: core/views/meta_box_fields.php:58
1472
  msgid "Field type does not exist"
1473
- msgstr "نوع زمینه وجود ندارد"
1474
 
1475
  #: core/views/meta_box_fields.php:63
1476
  msgid "Move to trash. Are you sure?"
1477
- msgstr "انتقال به زباله دان، مطمئنید؟"
1478
 
1479
  #: core/views/meta_box_fields.php:64
1480
  msgid "checked"
1481
- msgstr "بررسی"
1482
 
1483
  #: core/views/meta_box_fields.php:65
1484
  msgid "No toggle fields available"
1485
- msgstr "بدون زمینه های آمار بازدید در دسترس"
1486
 
1487
  #: core/views/meta_box_fields.php:66
1488
  msgid "Field group title is required"
1489
- msgstr "عنوان گروه زمینه مورد نیاز است"
1490
 
1491
  #: core/views/meta_box_fields.php:67
1492
  msgid "copy"
1493
  msgstr "کپی"
1494
 
1495
  #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1496
- #: core/views/meta_box_location.php:158
1497
  msgid "or"
1498
  msgstr "یا"
1499
 
1500
  #: core/views/meta_box_fields.php:88
1501
  msgid "Field Order"
1502
- msgstr "رتبه زمینه"
1503
 
1504
  #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
1505
  msgid "Field Label"
@@ -1518,8 +1596,8 @@ msgid ""
1518
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1519
  "first field."
1520
  msgstr ""
1521
- "زمینه وجود ندارد. روی دکمه ( اضافه کردن زمینه + ) کلیک کنید تا اولین زمینه "
1522
- "شما ساخته شود."
1523
 
1524
  #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
1525
  msgid "Edit this Field"
@@ -1527,7 +1605,7 @@ msgstr "ویرایش این زمینه"
1527
 
1528
  #: core/views/meta_box_fields.php:123
1529
  msgid "Read documentation for this field"
1530
- msgstr "خواندن مستندات برای این زمینه"
1531
 
1532
  #: core/views/meta_box_fields.php:123
1533
  msgid "Docs"
@@ -1547,67 +1625,68 @@ msgstr "حذف این زمینه"
1547
 
1548
  #: core/views/meta_box_fields.php:125
1549
  msgid "Delete"
1550
- msgstr "حذف کردن"
1551
 
1552
  #: core/views/meta_box_fields.php:142
1553
  msgid "This is the name which will appear on the EDIT page"
1554
- msgstr "This is the name which will appear on the EDIT page"
1555
 
1556
  #: core/views/meta_box_fields.php:158
1557
  msgid "Single word, no spaces. Underscores and dashes allowed"
1558
- msgstr "تک کلمه، بدون فاصله و خط تیره مجاز است."
1559
 
1560
- #: core/views/meta_box_fields.php:185
1561
  msgid "Field Instructions"
1562
- msgstr "راهنمای زمینه"
1563
 
1564
- #: core/views/meta_box_fields.php:186
1565
  msgid "Instructions for authors. Shown when submitting data"
1566
- msgstr "راهنمای نویسندگان. هنگام ارسال داده ها نشان داده شده است."
 
1567
 
1568
- #: core/views/meta_box_fields.php:198
1569
  msgid "Required?"
1570
- msgstr "آیا لازم است؟"
1571
 
1572
- #: core/views/meta_box_fields.php:221
1573
  msgid "Conditional Logic"
1574
  msgstr "منطق نامعلوم"
1575
 
1576
- #: core/views/meta_box_fields.php:272 core/views/meta_box_location.php:116
1577
  msgid "is equal to"
1578
  msgstr "برابر است با"
1579
 
1580
- #: core/views/meta_box_fields.php:273 core/views/meta_box_location.php:117
1581
  msgid "is not equal to"
1582
  msgstr "برابر نیست با"
1583
 
1584
- #: core/views/meta_box_fields.php:291
1585
  msgid "Show this field when"
1586
  msgstr "نمایش این زمینه موقعی که"
1587
 
1588
- #: core/views/meta_box_fields.php:297
1589
  msgid "all"
1590
  msgstr "همه"
1591
 
1592
- #: core/views/meta_box_fields.php:298
1593
  msgid "any"
1594
  msgstr "هیچ"
1595
 
1596
- #: core/views/meta_box_fields.php:301
1597
  msgid "these rules are met"
1598
- msgstr "این قانون ها گذشته هستند."
1599
 
1600
- #: core/views/meta_box_fields.php:315
1601
  msgid "Close Field"
1602
  msgstr "بستن زمینه"
1603
 
1604
- #: core/views/meta_box_fields.php:328
1605
  msgid "Drag and drop to reorder"
1606
- msgstr "بالا و پایین کشاندن برای دوباره مرتب کردن"
1607
 
1608
- #: core/views/meta_box_fields.php:329
1609
  msgid "+ Add Field"
1610
- msgstr "اضفه کردن زمینه +"
1611
 
1612
  #: core/views/meta_box_location.php:48
1613
  msgid "Rules"
@@ -1618,8 +1697,8 @@ msgid ""
1618
  "Create a set of rules to determine which edit screens will use these "
1619
  "advanced custom fields"
1620
  msgstr ""
1621
- "ایجاد یک مجموعه ای از قوانین برای تعیین این که از زمینه های سفارشی پیشرفته "
1622
- "استفاده خواهد شد."
1623
 
1624
  #: core/views/meta_box_location.php:60
1625
  msgid "Show this field group if"
@@ -1627,7 +1706,7 @@ msgstr "نمایش این گروه زمینه اگر"
1627
 
1628
  #: core/views/meta_box_location.php:76
1629
  msgid "Logged in User Type"
1630
- msgstr "خارج شده به عنوان کاربر"
1631
 
1632
  #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
1633
  msgid "Page"
@@ -1643,7 +1722,7 @@ msgstr "برگه مادر"
1643
 
1644
  #: core/views/meta_box_location.php:82
1645
  msgid "Page Template"
1646
- msgstr "برگه الگو"
1647
 
1648
  #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
1649
  msgid "Post"
@@ -1655,121 +1734,125 @@ msgstr "دسته بندی نوشته"
1655
 
1656
  #: core/views/meta_box_location.php:87
1657
  msgid "Post Format"
1658
- msgstr "نوع نوشته"
1659
 
1660
  #: core/views/meta_box_location.php:88
 
 
 
 
1661
  msgid "Post Taxonomy"
1662
  msgstr "طبقه بندی نوشته"
1663
 
1664
- #: core/views/meta_box_location.php:91
1665
- msgid "Taxonomy Term (Add / Edit)"
1666
- msgstr "طبقه بندی دوره ( افزودن / ویرایش )"
1667
-
1668
  #: core/views/meta_box_location.php:92
1669
- msgid "User (Add / Edit)"
1670
- msgstr "کاربر (افزودن / ویرایش)"
1671
 
1672
  #: core/views/meta_box_location.php:93
1673
- msgid "Media Attachment (Edit)"
1674
- msgstr "پیوست رسانه ( ویرایش )"
1675
 
1676
- #: core/views/meta_box_location.php:145
1677
  msgid "and"
1678
  msgstr "و"
1679
 
1680
- #: core/views/meta_box_location.php:160
1681
  msgid "Add rule group"
1682
- msgstr "افزودن گروه قانون"
1683
 
1684
  #: core/views/meta_box_options.php:25
1685
  msgid "Order No."
1686
- msgstr "شماره سفارش"
1687
 
1688
  #: core/views/meta_box_options.php:26
1689
  msgid "Field groups are created in order <br />from lowest to highest"
1690
  msgstr ""
1691
- "گروه های فیلد در حال ایجاد دستور <br/> از پایین ترین تا بالاترین نقطه هستند."
1692
 
1693
  #: core/views/meta_box_options.php:42
1694
  msgid "Position"
1695
  msgstr "موقعیت"
1696
 
1697
  #: core/views/meta_box_options.php:52
1698
- msgid "Normal"
1699
- msgstr "عادی"
1700
 
1701
  #: core/views/meta_box_options.php:53
 
 
 
 
1702
  msgid "Side"
1703
  msgstr "کنار"
1704
 
1705
- #: core/views/meta_box_options.php:62
1706
  msgid "Style"
1707
- msgstr "شیوه"
1708
 
1709
- #: core/views/meta_box_options.php:72
1710
  msgid "No Metabox"
1711
  msgstr "بدون متاباکس"
1712
 
1713
- #: core/views/meta_box_options.php:73
1714
  msgid "Standard Metabox"
1715
- msgstr "متاباکس استاندارد"
1716
 
1717
- #: core/views/meta_box_options.php:82
1718
  msgid "Hide on screen"
1719
- msgstr "مخفی نگه داشتن روی صفحه"
1720
 
1721
- #: core/views/meta_box_options.php:83
1722
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1723
- msgstr "<b>انتخاب کردن<b/> آیتم ها به <b>مخفی کردن<b/> آن ها از ویرایش صفحه"
1724
 
1725
- #: core/views/meta_box_options.php:84
1726
  msgid ""
1727
  "If multiple field groups appear on an edit screen, the first field group's "
1728
  "options will be used. (the one with the lowest order number)"
1729
  msgstr ""
1730
- "اگر چندین گروه زمینه در یک صفحه ویرایش ظاهر شوند، تنظیمات اولین گروه زمینه "
1731
- "استفاده خواهد شد ( یکی با کمترین تعداد سفارش )"
1732
 
1733
- #: core/views/meta_box_options.php:94
1734
  msgid "Content Editor"
1735
  msgstr "ویرایشگر محتوا"
1736
 
1737
- #: core/views/meta_box_options.php:95
1738
  msgid "Excerpt"
1739
- msgstr "انتخاب کردن و جداکردن"
1740
 
1741
- #: core/views/meta_box_options.php:97
1742
  msgid "Discussion"
1743
  msgstr "گفتگو"
1744
 
1745
- #: core/views/meta_box_options.php:98
1746
  msgid "Comments"
1747
  msgstr "دیدگاه ها"
1748
 
1749
- #: core/views/meta_box_options.php:99
1750
  msgid "Revisions"
1751
- msgstr "تجدید نظر"
1752
 
1753
- #: core/views/meta_box_options.php:100
1754
  msgid "Slug"
1755
- msgstr "آهسته حرکت کردن ( مثل حلزون حرکت کردن )"
1756
 
1757
- #: core/views/meta_box_options.php:101
1758
  msgid "Author"
1759
  msgstr "نویسنده"
1760
 
1761
- #: core/views/meta_box_options.php:102
1762
  msgid "Format"
1763
- msgstr "قالب"
1764
 
1765
- #: core/views/meta_box_options.php:104
1766
  msgid "Categories"
1767
  msgstr "دسته ها"
1768
 
1769
- #: core/views/meta_box_options.php:105
1770
  msgid "Tags"
1771
- msgstr "تگ ها"
1772
 
1773
- #: core/views/meta_box_options.php:106
1774
  msgid "Send Trackbacks"
1775
  msgstr "ارسال بازتاب ها"
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2013-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
 
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"
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"
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."
208
  msgstr ""
209
+ "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته در "
210
  "دسترس هستند."
211
 
212
  #: core/controllers/addons.php:197
214
  "Each Add-on can be installed as a separate plugin (receives updates) or "
215
  "included in your theme (does not receive updates)."
216
  msgstr ""
217
+ "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
218
+ "پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
219
 
220
  #: core/controllers/addons.php:219 core/controllers/addons.php:240
221
  msgid "Installed"
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"
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."
262
  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."
270
  msgstr ""
271
+ "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قایل ویرایش <b>نمایش "
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."
315
  msgstr ""
316
+ "گروه های زمینه ثبت نام شده در لیست گروه های زمینه قابل ویرایش <b>نمایش داده "
317
+ "نخواهند شد</b>. این برای قرار دادن زمینه ها در پوسته مفید است."
318
 
319
  #: core/controllers/export.php:270 core/controllers/export.php:311
320
  msgid ""
323
  "the original field group to the trash or remove the code from your functions."
324
  "php file."
325
  msgstr ""
326
+ "لطفا توجه داشته باشید که اگر شما برون بری و ثبت نام گروه های زمینه را در "
327
+ "داخل وردپرس انجام دهید، تکثیر زمینه هایتان را در صفحه ویرایش خواهید دید. "
328
+ "برای تعمیر این، لطفا گروه زمینه اورجینال را به زباله دان حرکت دهید یا کد را "
329
+ "از پرونده functions.php خود پاک کنید."
330
 
331
  #: core/controllers/export.php:272
332
  msgid "Select field group(s) from the list and click \"Create PHP\""
333
  msgstr ""
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 ""
370
  "move the ACF plugin inside your theme and add the following code to your "
371
  "functions.php file:"
372
  msgstr ""
373
+ "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار بگیرد. "
374
+ "برای انجام این کار، افزونه را در کنار پوسته تان انتقال دهید و کدهای زیر را "
375
+ "به پرونده functions.php اضافه کنید:"
376
 
377
  #: core/controllers/export.php:323
378
  msgid ""
380
  "to enable lite mode. Add the following code to your functions.php file "
381
  "<b>before</b> the include_once code:"
382
  msgstr ""
383
+ "برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته، شما می توانید "
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 ""
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"
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 "همه"
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"
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"
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"
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!"
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 ""
647
  "Although these plugins will not be hosted on the wordpress.org repository, "
648
  "each Add-on will continue to receive updates in the usual way."
649
  msgstr ""
650
+ "افزودنی ها الآن با دریافت و نصب افزونه های فردی فعالسازی شده اند. اگرچه این "
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."
670
  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"
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."
706
  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"
731
  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"
766
  "between versions 3 and 4. This means you can roll back to version 3 without "
767
  "any issues."
768
  msgstr ""
769
+ "<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
770
+ "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
 
771
 
772
  #: core/controllers/field_groups.php:365
773
  msgid "Potential Issues"
779
  "filters, your website may not operate correctly. It is important that you "
780
  "read the full"
781
  msgstr ""
782
+ "با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه ها و عمل/فیلترها، ممکن است "
783
+ "سایت شما به درستی عمل نکند. این مهم است که شما راهمای کامل را بخوانید."
784
 
785
  #: core/controllers/field_groups.php:366
786
  msgid "Migrating from v3 to v4"
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!"
799
  "If you updated the ACF plugin without prior knowledge of such changes, "
800
  "please roll back to the latest"
801
  msgstr ""
802
+ "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
803
+ "تغییرات بروزرسانی کردید، لطفا به آخرین نسخه برگردید "
804
 
805
  #: core/controllers/field_groups.php:369
806
  msgid "version 3"
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."
821
  msgstr ""
822
+ "یک <strong>تشکر بزرگ</strong> از شما و همه کسانی که در تست نسخه 4 بتا به من "
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"
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"
847
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
848
  "need to be individually downloaded, installed and updated."
849
  msgstr ""
850
+ "پیش از این، همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از فروشگاه "
851
+ "افزودنی های افزونه زمینه های دلخواه پیشرفته) باز شده اند. چیز جدید در نسخه 4 "
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"
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"
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"
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"
911
  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
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
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
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"
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"
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"
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"
1138
  msgid "Content"
1139
  msgstr "محتوا"
1140
 
1141
+ #: core/fields/file.php:26
1142
  msgid "Select File"
1143
  msgstr "انتخاب پرونده"
1144
 
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
 
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
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 "نوع نوشته"
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"
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."
1418
  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."
1426
  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"
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"
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"
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"
1596
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1597
  "first field."
1598
  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"
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"
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"
1697
  "Create a set of rules to determine which edit screens will use these "
1698
  "advanced custom fields"
1699
  msgstr ""
1700
+ "ایجاد مجموعه ای از قوانین برای تعیین این که صفحه ویرایش از این زمینه های "
1701
+ "سفارشی پیشرفته استفاده خواهند کرد."
1702
 
1703
  #: core/views/meta_box_location.php:60
1704
  msgid "Show this field group if"
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"
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"
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)"
1812
  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 "ارسال بازتاب ها"
lang/acf-fr_FR.mo CHANGED
Binary file
lang/acf-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
- "POT-Creation-Date: 2013-07-09 03:49:07+00:00\n"
6
- "PO-Revision-Date: 2013-08-02 14:10+0100\n"
7
- "Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
8
  "Language-Team: RVOLA <hello@rvola.com>\n"
9
  "Language: French\n"
10
  "MIME-Version: 1.0\n"
@@ -16,233 +16,232 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-Basepath: .\n"
19
- "X-Generator: Poedit 1.5.5\n"
20
 
21
  # @ acf
22
- #: acf.php:325
23
  msgid "Field&nbsp;Groups"
24
  msgstr "Groupes de champs"
25
 
26
  # @ acf
27
- #: acf.php:326 core/controllers/field_groups.php:214
28
  msgid "Advanced Custom Fields"
29
  msgstr "Advanced Custom Fields"
30
 
31
  # @ acf
32
- #: acf.php:327
33
  msgid "Add New"
34
  msgstr "Ajouter"
35
 
36
  # @ acf
37
- #: acf.php:328
38
  msgid "Add New Field Group"
39
  msgstr "Nouveau groupe de champs"
40
 
41
  # @ acf
42
- #: acf.php:329
43
  msgid "Edit Field Group"
44
  msgstr "Modifier le groupe de champs"
45
 
46
  # @ acf
47
- #: acf.php:330
48
  msgid "New Field Group"
49
  msgstr "Nouveau groupe de champs"
50
 
51
  # @ default
52
- #: acf.php:331
53
  msgid "View Field Group"
54
- msgstr "Voir le champ groupe"
55
 
56
  # @ default
57
- #: acf.php:332
58
  msgid "Search Field Groups"
59
- msgstr "Rechercher un champ groupe"
60
 
61
  # @ default
62
- #: acf.php:333
63
  msgid "No Field Groups found"
64
- msgstr "Aucun champ groupe trouvé"
65
 
66
  # @ default
67
- #: acf.php:334
68
  msgid "No Field Groups found in Trash"
69
- msgstr "Aucun champ groupe trouvé dans la corbeille"
70
 
71
  # @ acf
72
- #: acf.php:447 core/views/meta_box_options.php:96
73
  msgid "Custom Fields"
74
  msgstr "ACF"
75
 
76
  # @ default
77
- #: acf.php:465 acf.php:468
78
  msgid "Field group updated."
79
  msgstr "Groupe de champs mis à jour"
80
 
81
  # @ acf
82
- #: acf.php:466
83
  msgid "Custom field updated."
84
  msgstr "Champ mis à jour"
85
 
86
  # @ acf
87
- #: acf.php:467
88
  msgid "Custom field deleted."
89
  msgstr "Champ supprimé"
90
 
91
- #. translators: %s: date and time of the revision
92
- #: acf.php:470
93
  msgid "Field group restored to revision from %s"
94
  msgstr "Groupe de champs restauré à la révision %s"
95
 
96
  # @ default
97
- #: acf.php:471
98
  msgid "Field group published."
99
  msgstr "Groupe de champ publié"
100
 
101
  # @ default
102
- #: acf.php:472
103
  msgid "Field group saved."
104
  msgstr "Groupe de champ enregistré"
105
 
106
  # @ default
107
- #: acf.php:473
108
  msgid "Field group submitted."
109
- msgstr "Groupe de champ enregistré"
110
 
111
- #: acf.php:474
112
  msgid "Field group scheduled for."
113
  msgstr "Groupe de champs programmé pour."
114
 
115
- #: acf.php:475
116
  msgid "Field group draft updated."
117
- msgstr "Brouillon du groupe de champs mis à jour "
118
 
119
- #: acf.php:610
120
  msgid "Thumbnail"
121
  msgstr "Miniature"
122
 
123
- #: acf.php:611
124
  msgid "Medium"
125
  msgstr "Moyen"
126
 
127
- #: acf.php:612
128
  msgid "Large"
129
  msgstr "Grande"
130
 
131
- #: acf.php:613
132
  msgid "Full"
133
  msgstr "Complète"
134
 
135
- #: core/actions/export.php:23 core/views/meta_box_fields.php:58
136
- msgid "Error"
137
- msgstr "Erreur"
138
-
139
- # @ acf
140
- #: core/actions/export.php:30
141
- msgid "No ACF groups selected"
142
- msgstr "Aucun groupe de champs sélectionné"
143
-
144
  # @ acf
145
- #: core/api.php:1093
146
  msgid "Update"
147
  msgstr "Mise à jour"
148
 
149
  # @ acf
150
- #: core/api.php:1094
151
  msgid "Post updated"
152
  msgstr "Article mis à jour"
153
 
 
 
 
 
154
  # @ acf
155
- #: core/controllers/addons.php:42 core/controllers/field_groups.php:311
 
 
 
 
 
156
  msgid "Add-ons"
157
  msgstr "Add-ons"
158
 
159
  # @ acf
160
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
161
  msgid "Repeater Field"
162
  msgstr "Champs répéteur"
163
 
164
- #: core/controllers/addons.php:131
165
  msgid "Create infinite rows of repeatable data with this versatile interface!"
166
  msgstr "Créez des champs répétables à l'infini pour plus de souplesse !"
167
 
168
  # @ acf
169
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
170
  msgid "Gallery Field"
171
  msgstr "Champ galerie"
172
 
173
- #: core/controllers/addons.php:138
174
  msgid "Create image galleries in a simple and intuitive interface!"
175
  msgstr "Créez en toute simplicité de superbes galeries photos "
176
 
177
  # @ acf
178
- #: core/controllers/addons.php:144 core/controllers/export.php:380
179
- #: core/controllers/field_groups.php:448
180
  msgid "Options Page"
181
  msgstr "Page d‘options"
182
 
183
- #: core/controllers/addons.php:145
184
  msgid "Create global data to use throughout your website!"
185
  msgstr ""
186
  "Créez avec ACF une page d'options pour configurer des informations "
187
  "utilisable depuis n'importe quelle page."
188
 
189
  # @ acf
190
- #: core/controllers/addons.php:151
191
  msgid "Flexible Content Field"
192
  msgstr "Champs au contenu flexible "
193
 
194
- #: core/controllers/addons.php:152
195
  msgid "Create unique designs with a flexible content layout manager!"
196
  msgstr "Créez des mises en pages uniques grâce aux contenus flexibles"
197
 
198
- #: core/controllers/addons.php:161
199
  msgid "Gravity Forms Field"
200
  msgstr "Champs Gravity Forms"
201
 
202
- #: core/controllers/addons.php:162
203
  msgid "Creates a select field populated with Gravity Forms!"
204
  msgstr "Permet de sélectionner des formulaires Gravity Forms !"
205
 
206
  # @ acf
207
- #: core/controllers/addons.php:168
208
  msgid "Date & Time Picker"
209
  msgstr "Sélecteur de date"
210
 
211
- #: core/controllers/addons.php:169
212
  msgid "jQuery date & time picker"
213
  msgstr "Sélecteur de date jQuery"
214
 
215
  # @ acf
216
- #: core/controllers/addons.php:175
217
  msgid "Location Field"
218
  msgstr "Champ Localisation"
219
 
220
- #: core/controllers/addons.php:176
221
  msgid "Find addresses and coordinates of a desired location"
222
  msgstr "Trouvez l'adresse ou les coordonnées d'un lieu"
223
 
224
  # @ acf
225
- #: core/controllers/addons.php:182
226
  msgid "Contact Form 7 Field"
227
  msgstr "Champ Contact Form 7"
228
 
229
- #: core/controllers/addons.php:183
230
  msgid "Assign one or more contact form 7 forms to a post"
231
  msgstr ""
232
  "Assignez un ou plusieurs formulaires Contact Form 7 dans vos publications."
233
 
234
  # @ acf
235
- #: core/controllers/addons.php:193
236
  msgid "Advanced Custom Fields Add-Ons"
237
  msgstr "Add-ons Advanced Custom Fields"
238
 
239
- #: core/controllers/addons.php:196
240
  msgid ""
241
  "The following Add-ons are available to increase the functionality of the "
242
  "Advanced Custom Fields plugin."
243
  msgstr "Ces Add-ons vous permettent d'étendre les possibilités d'ACF."
244
 
245
- #: core/controllers/addons.php:197
246
  msgid ""
247
  "Each Add-on can be installed as a separate plugin (receives updates) or "
248
  "included in your theme (does not receive updates)."
@@ -250,53 +249,55 @@ msgstr ""
250
  "Chaque Add-on peut être installé séparément en tant qu'extension (avec mises "
251
  "à jour) ou inclus dans votre thème (sans mises à jour)"
252
 
253
- #: core/controllers/addons.php:219 core/controllers/addons.php:240
254
  msgid "Installed"
255
  msgstr "Installé"
256
 
257
- #: core/controllers/addons.php:221
258
  msgid "Purchase & Install"
259
  msgstr "Acheter & installer"
260
 
261
- #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
262
- #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
263
- #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
 
 
264
  msgid "Download"
265
  msgstr "Télécharger"
266
 
267
  # @ acf
268
- #: core/controllers/export.php:50 core/controllers/export.php:159
269
  msgid "Export"
270
  msgstr "Exporter"
271
 
272
  # @ acf
273
- #: core/controllers/export.php:216
274
  msgid "Export Field Groups"
275
  msgstr "Exporter les groupes de champs"
276
 
277
  # @ acf
278
- #: core/controllers/export.php:221
279
  msgid "Field Groups"
280
  msgstr "Groupes de champs"
281
 
282
- #: core/controllers/export.php:222
283
  msgid "Select the field groups to be exported"
284
  msgstr ""
285
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
286
  "XML\""
287
 
288
  # @ acf
289
- #: core/controllers/export.php:239 core/controllers/export.php:252
290
  msgid "Export to XML"
291
  msgstr "Export XML"
292
 
293
  # @ acf
294
- #: core/controllers/export.php:242 core/controllers/export.php:267
295
  msgid "Export to PHP"
296
  msgstr "Export PHP"
297
 
298
  # @ acf
299
- #: core/controllers/export.php:253
300
  msgid ""
301
  "ACF will create a .xml export file which is compatible with the native WP "
302
  "import plugin."
@@ -304,7 +305,7 @@ msgstr ""
304
  "ACF générera un fichier d‘export .xml compatible avec le plugin d'import "
305
  "natif de WordPress."
306
 
307
- #: core/controllers/export.php:254
308
  msgid ""
309
  "Imported field groups <b>will</b> appear in the list of editable field "
310
  "groups. This is useful for migrating fields groups between Wp websites."
@@ -312,46 +313,46 @@ msgstr ""
312
  "Les groupes de champs importés <b>apparaitront</b> dans ACF. Utile pour "
313
  "migrer les groupes de champs entre plusieurs site Wordpress."
314
 
315
- #: core/controllers/export.php:256
316
  msgid "Select field group(s) from the list and click \"Export XML\""
317
  msgstr ""
318
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
319
  "XML\""
320
 
321
- #: core/controllers/export.php:257
322
  msgid "Save the .xml file when prompted"
323
  msgstr "Enregistrer le .xml"
324
 
325
- #: core/controllers/export.php:258
326
  msgid "Navigate to Tools &raquo; Import and select WordPress"
327
  msgstr "Allez dans \"Outils &raquo; Importer\" et sélectionnez WordPress"
328
 
329
  # @ acf
330
- #: core/controllers/export.php:259
331
  msgid "Install WP import plugin if prompted"
332
  msgstr "Installez le plugin d‘import WordPress si demandé"
333
 
334
  # @ acf
335
- #: core/controllers/export.php:260
336
  msgid "Upload and import your exported .xml file"
337
  msgstr "Importez votre fichier .xml "
338
 
339
  # @ acf
340
- #: core/controllers/export.php:261
341
  msgid "Select your user and ignore Import Attachments"
342
  msgstr "Sélectionnez votre utilisateur et ignorez l‘import des pièces jointes"
343
 
344
  # @ acf
345
- #: core/controllers/export.php:262
346
  msgid "That's it! Happy WordPressing"
347
  msgstr "C‘est tout ! WordPressez bien"
348
 
349
  # @ acf
350
- #: core/controllers/export.php:268
351
  msgid "ACF will create the PHP code to include in your theme."
352
  msgstr "ACF générera le code PHP à inclure dans votre thème"
353
 
354
- #: core/controllers/export.php:269 core/controllers/export.php:310
355
  msgid ""
356
  "Registered field groups <b>will not</b> appear in the list of editable field "
357
  "groups. This is useful for including fields in themes."
@@ -359,7 +360,7 @@ msgstr ""
359
  "Les groupes de champs enregistrés <b>n‘apparaitront pas</b> dans ACF. Cette "
360
  "manipulation sert à insérer les champs en PHP directement dans le thème."
361
 
362
- #: core/controllers/export.php:270 core/controllers/export.php:311
363
  msgid ""
364
  "Please note that if you export and register field groups within the same WP, "
365
  "you will see duplicate fields on your edit screens. To fix this, please move "
@@ -370,47 +371,47 @@ msgstr ""
370
  "verrez les champs en double dans votre page d‘édition. Pour éviter cela, "
371
  "supprimer le groupe depuis ACF ou retirez le code PHP de functions.php."
372
 
373
- #: core/controllers/export.php:272
374
  msgid "Select field group(s) from the list and click \"Create PHP\""
375
  msgstr ""
376
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Générer PHP"
377
  "\""
378
 
379
  # @ acf
380
- #: core/controllers/export.php:273 core/controllers/export.php:302
381
  msgid "Copy the PHP code generated"
382
  msgstr "Copiez le code PHP généré"
383
 
384
  # @ acf
385
- #: core/controllers/export.php:274 core/controllers/export.php:303
386
  msgid "Paste into your functions.php file"
387
  msgstr "Collez le code dans votre fichier functions.php"
388
 
389
  # @ acf
390
- #: core/controllers/export.php:275 core/controllers/export.php:304
391
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
392
  msgstr ""
393
  "Pour activer un add-on, éditez le code dans les toutes premières lignes."
394
 
395
  # @ acf
396
- #: core/controllers/export.php:295
397
  msgid "Export Field Groups to PHP"
398
  msgstr "Exportez des groupes de champs en PHP"
399
 
400
  # @ acf
401
- #: core/controllers/export.php:300 core/fields/tab.php:65
402
  msgid "Instructions"
403
  msgstr "Instructions"
404
 
405
- #: core/controllers/export.php:309
406
  msgid "Notes"
407
  msgstr "Notes"
408
 
409
- #: core/controllers/export.php:316
410
  msgid "Include in theme"
411
  msgstr "Inclure dans le thème"
412
 
413
- #: core/controllers/export.php:317
414
  msgid ""
415
  "The Advanced Custom Fields plugin can be included within a theme. To do so, "
416
  "move the ACF plugin inside your theme and add the following code to your "
@@ -420,7 +421,7 @@ msgstr ""
420
  "dossier Advanced Custom Field dans votre thème et ajoutez le code suivant à "
421
  "votre fichier functions.php :"
422
 
423
- #: core/controllers/export.php:323
424
  msgid ""
425
  "To remove all visual interfaces from the ACF plugin, you can use a constant "
426
  "to enable lite mode. Add the following code to your functions.php file "
@@ -431,253 +432,261 @@ msgstr ""
431
  "b> le code 'include_once' :"
432
 
433
  # @ acf
434
- #: core/controllers/export.php:331
435
  msgid "Back to export"
436
  msgstr "Retour à l'export"
437
 
438
- #: core/controllers/export.php:352
439
- msgid ""
440
- "/**\n"
441
- " * Install Add-ons\n"
442
- " * \n"
443
- " * The following code will include all 4 premium Add-Ons in your theme.\n"
444
- " * Please do not attempt to include a file which does not exist. This will "
445
- "produce an error.\n"
446
- " * \n"
447
- " * All fields must be included during the 'acf/register_fields' action.\n"
448
- " * Other types of Add-ons (like the options page) can be included outside "
449
- "of this action.\n"
450
- " * \n"
451
- " * The following code assumes you have a folder 'add-ons' inside your "
452
- "theme.\n"
453
- " *\n"
454
- " * IMPORTANT\n"
455
- " * Add-ons may be included in a premium theme as outlined in the terms and "
456
- "conditions.\n"
457
- " * However, they are NOT to be included in a premium / free plugin.\n"
458
- " * For more information, please read http://www.advancedcustomfields.com/"
459
- "terms-conditions/\n"
460
- " */"
461
- msgstr ""
462
- "/**\n"
463
- " * Installation des Add-ons\n"
464
- " * \n"
465
- " * Le code suivant incluera les 4 Add-ons premium dans votre thème.\n"
466
- " * N'essayez pas d'inclure un fichier qui n'existe pas sous peine de "
467
- "rencontrer des erreurs.\n"
468
- " * \n"
469
- " * Tous les champs doivent être inclus durant l'action 'acf/"
470
- "register_fields'.\n"
471
- " * Les autres Add-ons (comme la page Options) peuvent être inclus en dehors "
472
- "de cette action.\n"
473
- " * \n"
474
- " * Vous devez placer un dossier add-ons dans votre thème afin que le code "
475
- "suivant fonctionne correctement.\n"
476
- " *\n"
477
- " * IMPORTANT\n"
478
- " * Les Add-ons peuvent être inclus dans un thème premium à condition de "
479
- "respecter les termes du contrat de licence ACF.\n"
480
- " * Cependant, ils ne doivent pas être inclus dans une autre extension "
481
- "gratuite ou premium. \n"
482
- " * Pour plus d'informations veuillez consulter cette page http://www."
483
- "advancedcustomfields.com/terms-conditions/\n"
484
- " */"
485
-
486
- # @ acf
487
- #: core/controllers/export.php:370 core/controllers/field_group.php:366
488
- #: core/controllers/field_group.php:428 core/controllers/field_groups.php:148
489
- msgid "Fields"
490
- msgstr "Champs"
491
 
492
  # @ acf
493
- #: core/controllers/export.php:384
494
- msgid ""
495
- "/**\n"
496
- " * Register Field Groups\n"
497
- " *\n"
498
- " * The register_field_group function accepts 1 array which holds the "
499
- "relevant data to register a field group\n"
500
- " * You may edit the array as you see fit. However, this may result in "
501
- "errors if the array is not compatible with ACF\n"
502
- " */"
503
- msgstr ""
504
- "/**\n"
505
- " * Enregistrez des groupes de champs\n"
506
- " * La fonction register_field_group accepte 1 tableau qui contient les "
507
- "données nécessaire à l‘enregistrement d'un groupe de champs\n"
508
- " * Vous pouvez modifier ce tableau selon vos besoins. Cela peut toutefois "
509
- "provoquer des erreurs dans les cas où le tableau ne serait plus compatible "
510
- "avec ACF\n"
511
- " */"
 
 
 
 
 
 
 
512
 
513
  # @ acf
514
- #: core/controllers/export.php:435
515
- msgid "No field groups were selected"
516
- msgstr "Aucun groupe de champs n‘a été sélectionné"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
 
518
  # @ acf
519
- #: core/controllers/field_group.php:367
520
  msgid "Location"
521
  msgstr "Assigner ce groupe de champs"
522
 
523
  # @ acf
524
- #: core/controllers/field_group.php:368
525
  msgid "Options"
526
  msgstr "Options"
527
 
528
  # @ acf
529
- #: core/controllers/field_group.php:430
530
  msgid "Show Field Key:"
531
  msgstr "Montrer la clé :"
532
 
533
- #: core/controllers/field_group.php:431 core/fields/page_link.php:138
534
- #: core/fields/page_link.php:159 core/fields/post_object.php:328
535
- #: core/fields/post_object.php:349 core/fields/select.php:224
536
- #: core/fields/select.php:243 core/fields/taxonomy.php:341
537
- #: core/fields/user.php:285 core/fields/wysiwyg.php:228
538
- #: core/views/meta_box_fields.php:207 core/views/meta_box_fields.php:230
539
  msgid "No"
540
  msgstr "Non"
541
 
542
- #: core/controllers/field_group.php:432 core/fields/page_link.php:137
543
- #: core/fields/page_link.php:158 core/fields/post_object.php:327
544
- #: core/fields/post_object.php:348 core/fields/select.php:223
545
- #: core/fields/select.php:242 core/fields/taxonomy.php:340
546
- #: core/fields/user.php:284 core/fields/wysiwyg.php:227
547
- #: core/views/meta_box_fields.php:206 core/views/meta_box_fields.php:229
548
  msgid "Yes"
549
  msgstr "Oui"
550
 
551
- #: core/controllers/field_group.php:609
552
  msgid "Front Page"
553
  msgstr "Page d'accueil"
554
 
555
- #: core/controllers/field_group.php:610
556
  msgid "Posts Page"
557
  msgstr "Page des articles"
558
 
559
- #: core/controllers/field_group.php:611
560
  msgid "Top Level Page (parent of 0)"
561
  msgstr "Page de haut niveau (sans descendant)"
562
 
563
- #: core/controllers/field_group.php:612
564
  msgid "Parent Page (has children)"
565
  msgstr "Page parente (avec page enfant)"
566
 
567
- #: core/controllers/field_group.php:613
568
  msgid "Child Page (has parent)"
569
  msgstr "Page enfant (avec parent)"
570
 
571
  # @ acf
572
- #: core/controllers/field_group.php:621
573
  msgid "Default Template"
574
  msgstr "Modèle de base"
575
 
576
- #: core/controllers/field_group.php:713 core/controllers/field_group.php:734
577
- #: core/controllers/field_group.php:741 core/fields/file.php:181
578
- #: core/fields/image.php:166 core/fields/page_link.php:109
579
- #: core/fields/post_object.php:274 core/fields/post_object.php:298
580
- #: core/fields/relationship.php:553 core/fields/relationship.php:577
581
- #: core/fields/user.php:229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  msgid "All"
583
  msgstr "Tous"
584
 
585
- #: core/controllers/field_groups.php:147
586
  msgid "Title"
587
  msgstr "Titre"
588
 
589
  # @ acf
590
- #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
 
591
  msgid "Changelog"
592
  msgstr "Notes de version"
593
 
594
  # @ acf
595
- #: core/controllers/field_groups.php:217
596
  msgid "See what's new in"
597
  msgstr "Voir les nouveautés de la"
598
 
599
- #: core/controllers/field_groups.php:217
600
  msgid "version"
601
  msgstr "version"
602
 
603
  # @ acf
604
- #: core/controllers/field_groups.php:219
605
  msgid "Resources"
606
  msgstr "Ressources"
607
 
608
- #: core/controllers/field_groups.php:221
609
  msgid "Getting Started"
610
  msgstr "Guide de démarrage"
611
 
612
  # @ acf
613
- #: core/controllers/field_groups.php:222
614
  msgid "Field Types"
615
  msgstr "Types de champ"
616
 
617
  # @ acf
618
- #: core/controllers/field_groups.php:223
619
  msgid "Functions"
620
  msgstr "Fonctions"
621
 
622
  # @ acf
623
- #: core/controllers/field_groups.php:224
624
  msgid "Actions"
625
  msgstr "Actions"
626
 
627
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:596
 
628
  msgid "Filters"
629
  msgstr "Filtres"
630
 
631
- #: core/controllers/field_groups.php:226
632
  msgid "'How to' guides"
633
  msgstr "Guides"
634
 
635
- #: core/controllers/field_groups.php:227
636
  msgid "Tutorials"
637
  msgstr "Tutoriels"
638
 
639
  # @ acf
640
- #: core/controllers/field_groups.php:232
641
  msgid "Created by"
642
  msgstr "Créé par"
643
 
644
  # @ acf
645
- #: core/controllers/field_groups.php:235
646
  msgid "Vote"
647
  msgstr "Votez"
648
 
649
  # @ acf
650
- #: core/controllers/field_groups.php:236
651
  msgid "Follow"
652
- msgstr "twitter"
653
 
654
  # @ acf
655
- #: core/controllers/field_groups.php:248
656
  msgid "Welcome to Advanced Custom Fields"
657
- msgstr "Bienvenue sur Advances Custom Fields"
658
 
659
- #: core/controllers/field_groups.php:249
660
  msgid "Thank you for updating to the latest version!"
661
- msgstr "Merci d'être passé sur la dernière version"
662
 
663
- #: core/controllers/field_groups.php:249
664
  msgid "is more polished and enjoyable than ever before. We hope you like it."
665
  msgstr "est plus aboutie que jamais. Nous espérons que vous l'apprécierez ! "
666
 
667
- #: core/controllers/field_groups.php:256
668
  msgid "What’s New"
669
  msgstr "Nouveautés"
670
 
671
  # @ acf
672
- #: core/controllers/field_groups.php:259
673
  msgid "Download Add-ons"
674
  msgstr "Télécharger des add-ons"
675
 
676
- #: core/controllers/field_groups.php:313
677
  msgid "Activation codes have grown into plugins!"
678
  msgstr "Les codes d'activation sont devenus des extensions"
679
 
680
- #: core/controllers/field_groups.php:314
681
  msgid ""
682
  "Add-ons are now activated by downloading and installing individual plugins. "
683
  "Although these plugins will not be hosted on the wordpress.org repository, "
@@ -688,21 +697,21 @@ msgstr ""
688
  "répertoire d'extension de WordPress. Chaque Add-on continuera de recevoir "
689
  "les mises à jour comme d'habitude."
690
 
691
- #: core/controllers/field_groups.php:320
692
  msgid "All previous Add-ons have been successfully installed"
693
  msgstr "Tous les Add-ons ont bien été installés."
694
 
695
- #: core/controllers/field_groups.php:324
696
  msgid "This website uses premium Add-ons which need to be downloaded"
697
  msgstr ""
698
  "Ce site utilise des Add-ons premium qui nécessitent d'être téléchargés."
699
 
700
  # @ acf
701
- #: core/controllers/field_groups.php:324
702
  msgid "Download your activated Add-ons"
703
  msgstr "Téléchargez les Add-ons activés"
704
 
705
- #: core/controllers/field_groups.php:329
706
  msgid ""
707
  "This website does not use premium Add-ons and will not be affected by this "
708
  "change."
@@ -710,40 +719,40 @@ msgstr ""
710
  "Ce site n'utilise pas d'Add-ons et ne sera donc pas affecté par cette mise à "
711
  "jour."
712
 
713
- #: core/controllers/field_groups.php:339
714
  msgid "Easier Development"
715
  msgstr "Développement plus efficace"
716
 
717
  # @ acf
718
- #: core/controllers/field_groups.php:341
719
  msgid "New Field Types"
720
  msgstr "Nouveaux types de champs"
721
 
722
- #: core/controllers/field_groups.php:343
723
  msgid "Taxonomy Field"
724
  msgstr "Champ taxonomie"
725
 
726
  # @ acf
727
- #: core/controllers/field_groups.php:344
728
  msgid "User Field"
729
  msgstr "Champ utilisateur"
730
 
731
  # @ acf
732
- #: core/controllers/field_groups.php:345
733
  msgid "Email Field"
734
  msgstr "Champ email"
735
 
736
  # @ acf
737
- #: core/controllers/field_groups.php:346
738
  msgid "Password Field"
739
  msgstr "Champ mot de passe"
740
 
741
  # @ acf
742
- #: core/controllers/field_groups.php:348
743
  msgid "Custom Field Types"
744
  msgstr "Types de champs"
745
 
746
- #: core/controllers/field_groups.php:349
747
  msgid ""
748
  "Creating your own field type has never been easier! Unfortunately, version 3 "
749
  "field types are not compatible with version 4."
@@ -751,23 +760,23 @@ msgstr ""
751
  "Créer votre propre type de champ est très facile ! Malheureusement les "
752
  "champs créés avec la version 3 ne seront pas compatible avec la version 4."
753
 
754
- #: core/controllers/field_groups.php:350
755
  msgid "Migrating your field types is easy, please"
756
  msgstr "Migrez vos types de champs en toute simplicité."
757
 
758
- #: core/controllers/field_groups.php:350
759
  msgid "follow this tutorial"
760
  msgstr "Suivez ce tutoriel"
761
 
762
- #: core/controllers/field_groups.php:350
763
  msgid "to learn more."
764
  msgstr "pour en savoir plus."
765
 
766
- #: core/controllers/field_groups.php:352
767
  msgid "Actions &amp; Filters"
768
  msgstr "Actions &amp; Filtres"
769
 
770
- #: core/controllers/field_groups.php:353
771
  msgid ""
772
  "All actions & filters have received a major facelift to make customizing ACF "
773
  "even easier! Please"
@@ -776,35 +785,35 @@ msgstr ""
776
  "personnalisation d'ACF encore plus facile !"
777
 
778
  # @ acf
779
- #: core/controllers/field_groups.php:353
780
  msgid "read this guide"
781
  msgstr "Lisez ce guide"
782
 
783
- #: core/controllers/field_groups.php:353
784
  msgid "to find the updated naming convention."
785
  msgstr "afin de prendre connaissance de la nouvelle convention de nomage."
786
 
787
- #: core/controllers/field_groups.php:355
788
  msgid "Preview draft is now working!"
789
  msgstr "Problème de l'aperçu qui ne fonctionnait pas"
790
 
791
- #: core/controllers/field_groups.php:356
792
  msgid "This bug has been squashed along with many other little critters!"
793
  msgstr "Ce bug a finalement été corrigé ! "
794
 
795
- #: core/controllers/field_groups.php:356
796
  msgid "See the full changelog"
797
  msgstr "Jetez un oeil aux notes de version."
798
 
799
- #: core/controllers/field_groups.php:360
800
  msgid "Important"
801
  msgstr "Important"
802
 
803
- #: core/controllers/field_groups.php:362
804
  msgid "Database Changes"
805
  msgstr "Structure de la base de données"
806
 
807
- #: core/controllers/field_groups.php:363
808
  msgid ""
809
  "Absolutely <strong>no</strong> changes have been made to the database "
810
  "between versions 3 and 4. This means you can roll back to version 3 without "
@@ -814,33 +823,33 @@ msgstr ""
814
  "la version 3 et la version 4. Cela veut dire que vous pouvez retourner à la "
815
  "version 3 sans aucun problème."
816
 
817
- #: core/controllers/field_groups.php:365
818
  msgid "Potential Issues"
819
  msgstr "Problèmes connus"
820
 
821
- #: core/controllers/field_groups.php:366
822
  msgid ""
823
  "Do to the sizable changes surounding Add-ons, field types and action/"
824
  "filters, your website may not operate correctly. It is important that you "
825
  "read the full"
826
  msgstr ""
827
- "A cause des gros changements effectués autour des Add-ons, types de champs "
828
  "et actions/filtres, votre site ne pourrait plus fonctionner correctement "
829
  "après la migration. Il est important que vous consultiez"
830
 
831
- #: core/controllers/field_groups.php:366
832
  msgid "Migrating from v3 to v4"
833
  msgstr "le guide de migration de la version 3 à la version 4"
834
 
835
- #: core/controllers/field_groups.php:366
836
  msgid "guide to view the full list of changes."
837
  msgstr "afin de prendre connaissance de ces informations."
838
 
839
- #: core/controllers/field_groups.php:369
840
  msgid "Really Important!"
841
  msgstr "Très important !"
842
 
843
- #: core/controllers/field_groups.php:369
844
  msgid ""
845
  "If you updated the ACF plugin without prior knowledge of such changes, "
846
  "please roll back to the latest"
@@ -848,19 +857,19 @@ msgstr ""
848
  "Si vous n'étiez pas au courant de ces changements lors de la mise à jour, "
849
  "nous vous conseillons de revenir à la"
850
 
851
- #: core/controllers/field_groups.php:369
852
  msgid "version 3"
853
  msgstr "version 3"
854
 
855
- #: core/controllers/field_groups.php:369
856
  msgid "of this plugin."
857
  msgstr "de cette extension"
858
 
859
- #: core/controllers/field_groups.php:374
860
  msgid "Thank You"
861
  msgstr "Merci !"
862
 
863
- #: core/controllers/field_groups.php:375
864
  msgid ""
865
  "A <strong>BIG</strong> thank you to everyone who has helped test the version "
866
  "4 beta and for all the support I have received."
@@ -869,26 +878,26 @@ msgstr ""
869
  "développement de cette nouvelle version 4 et pour tout le support que vous "
870
  "m'avez apporté !"
871
 
872
- #: core/controllers/field_groups.php:376
873
  msgid "Without you all, this release would not have been possible!"
874
  msgstr ""
875
  "Sans vous, cette version n'aurait pas pu voir le jour ! (Traduction FR par "
876
  "@maximebj)"
877
 
878
  # @ acf
879
- #: core/controllers/field_groups.php:380
880
  msgid "Changelog for"
881
  msgstr "Notes de version pour"
882
 
883
- #: core/controllers/field_groups.php:396
884
  msgid "Learn more"
885
  msgstr "En savoir plus"
886
 
887
- #: core/controllers/field_groups.php:402
888
  msgid "Overview"
889
  msgstr "Aperçu"
890
 
891
- #: core/controllers/field_groups.php:404
892
  msgid ""
893
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
894
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
@@ -899,7 +908,7 @@ msgstr ""
899
  "les Add-ons fonctionnent en tant qu'extensions séparées qu'il faut "
900
  "télécharger, installer et mettre à jour individuellement. "
901
 
902
- #: core/controllers/field_groups.php:406
903
  msgid ""
904
  "This page will assist you in downloading and installing each available Add-"
905
  "on."
@@ -907,57 +916,57 @@ msgstr ""
907
  "Cette page vous permet de télécharger et installer les Add-ons disponibles."
908
 
909
  # @ acf
910
- #: core/controllers/field_groups.php:408
911
  msgid "Available Add-ons"
912
  msgstr "Add-ons disponibles"
913
 
914
- #: core/controllers/field_groups.php:410
915
  msgid "The following Add-ons have been detected as activated on this website."
916
- msgstr "Les Add-ons suivants ont été détéctés et activés pour ce site : "
917
 
918
  # @ acf
919
- #: core/controllers/field_groups.php:423
920
  msgid "Name"
921
  msgstr "Nom"
922
 
923
  # @ acf
924
- #: core/controllers/field_groups.php:424
925
  msgid "Activation Code"
926
- msgstr "Code dactivation"
927
 
928
  # @ acf
929
- #: core/controllers/field_groups.php:456
930
  msgid "Flexible Content"
931
  msgstr "Contenu flexible"
932
 
933
  # @ acf
934
- #: core/controllers/field_groups.php:466
935
  msgid "Installation"
936
  msgstr "Installation"
937
 
938
- #: core/controllers/field_groups.php:468
939
  msgid "For each Add-on available, please perform the following:"
940
  msgstr "Pour chaque Add-on disponible, effectuez les actions suivantes :"
941
 
942
- #: core/controllers/field_groups.php:470
943
  msgid "Download the Add-on plugin (.zip file) to your desktop"
944
  msgstr "Téléchargez l'Add-on sur votre bureau (fichier .zip)"
945
 
946
- #: core/controllers/field_groups.php:471
947
  msgid "Navigate to"
948
  msgstr "Naviguer vers"
949
 
950
- #: core/controllers/field_groups.php:471
951
  msgid "Plugins > Add New > Upload"
952
  msgstr "Extensions > Ajouter > Importer"
953
 
954
- #: core/controllers/field_groups.php:472
955
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
956
  msgstr ""
957
  "Utilisez l'uploader pour trouver, sélectionner et installer votre Add-on "
958
  "(fichier .zip)"
959
 
960
- #: core/controllers/field_groups.php:473
961
  msgid ""
962
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
963
  "link"
@@ -965,589 +974,598 @@ msgstr ""
965
  "Une fois que l'extension a été importée et installée, cliquez sur \"Activer "
966
  "l'extension\""
967
 
968
- #: core/controllers/field_groups.php:474
969
  msgid "The Add-on is now installed and activated!"
970
  msgstr "L'Add-on a été installé et activé avec succès !"
971
 
972
- #: core/controllers/field_groups.php:488
973
  msgid "Awesome. Let's get to work"
974
  msgstr "C'est parti !"
975
 
 
 
 
 
 
 
 
 
976
  # @ acf
977
- #: core/controllers/input.php:510
978
  msgid "Validation Failed. One or more fields below are required."
979
  msgstr "Validation échouée. Un ou plusieurs champs sont requis."
980
 
981
  # @ wp3i
982
- #: core/controllers/upgrade.php:86
983
  msgid "Upgrade"
984
  msgstr "Mettre à jour"
985
 
986
- #: core/controllers/upgrade.php:139
987
  msgid "What's new"
988
  msgstr "Nouveautés"
989
 
990
- #: core/controllers/upgrade.php:150
991
  msgid "credits"
992
  msgstr "crédits"
993
 
994
- #: core/controllers/upgrade.php:684
995
  msgid "Modifying field group options 'show on page'"
996
  msgstr "Modification du groupe de champs 'montrer sur la page'"
997
 
998
- #: core/controllers/upgrade.php:738
999
  msgid "Modifying field option 'taxonomy'"
1000
  msgstr "Modifier le champ 'taxonomie'"
1001
 
1002
- #: core/controllers/upgrade.php:835
1003
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1004
  msgstr ""
1005
  "Déplacer les champs personnalisés des utilisateurs de wp_options à "
1006
  "wp_usermeta '"
1007
 
1008
- #: core/fields/_base.php:124 core/views/meta_box_location.php:74
1009
- msgid "Basic"
1010
- msgstr "Champs basiques"
1011
-
1012
  # @ acf
1013
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
1014
  msgid "Checkbox"
1015
  msgstr "Case à cocher"
1016
 
1017
  # @ acf
1018
- #: core/fields/checkbox.php:20 core/fields/radio.php:19
1019
- #: core/fields/select.php:19 core/fields/true_false.php:20
1020
  msgid "Choice"
1021
  msgstr "Choix"
1022
 
1023
  # @ acf
1024
- #: core/fields/checkbox.php:137 core/fields/radio.php:144
1025
- #: core/fields/select.php:177
1026
  msgid "Choices"
1027
  msgstr "Choix"
1028
 
1029
- #: core/fields/checkbox.php:138 core/fields/select.php:178
1030
  msgid "Enter each choice on a new line."
1031
  msgstr "Indiquez une valeur par ligne"
1032
 
1033
- #: core/fields/checkbox.php:139 core/fields/select.php:179
1034
  msgid "For more control, you may specify both a value and label like this:"
1035
  msgstr ""
1036
  "Pour un contrôle plus poussé, vous pouvez spécifier la valeur et le libellé "
1037
  "de cette manière :"
1038
 
1039
- #: core/fields/checkbox.php:140 core/fields/radio.php:150
1040
- #: core/fields/select.php:180
1041
  msgid "red : Red"
1042
  msgstr "rouge : Rouge"
1043
 
1044
- #: core/fields/checkbox.php:140 core/fields/radio.php:151
1045
- #: core/fields/select.php:180
1046
  msgid "blue : Blue"
1047
  msgstr "bleu : Bleu"
1048
 
1049
  # @ acf
1050
- #: core/fields/checkbox.php:157 core/fields/color_picker.php:73
1051
- #: core/fields/email.php:69 core/fields/number.php:94
1052
- #: core/fields/radio.php:193 core/fields/select.php:197
1053
- #: core/fields/text.php:71 core/fields/textarea.php:71
1054
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
1055
  msgid "Default Value"
1056
  msgstr "Valeur par défaut"
1057
 
1058
- #: core/fields/checkbox.php:158 core/fields/select.php:198
1059
  msgid "Enter each default value on a new line"
1060
  msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne"
1061
 
1062
  # @ acf
1063
- #: core/fields/checkbox.php:174 core/fields/message.php:20
1064
- #: core/fields/radio.php:209 core/fields/tab.php:20
1065
  msgid "Layout"
1066
  msgstr "Disposition"
1067
 
1068
- #: core/fields/checkbox.php:185 core/fields/radio.php:220
1069
  msgid "Vertical"
1070
  msgstr "Vertical"
1071
 
1072
- #: core/fields/checkbox.php:186 core/fields/radio.php:221
1073
  msgid "Horizontal"
1074
  msgstr "Horizontal"
1075
 
1076
  # @ acf
1077
- #: core/fields/color_picker.php:19
1078
  msgid "Color Picker"
1079
  msgstr "Sélecteur de couleur"
1080
 
1081
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
1082
  msgid "jQuery"
1083
  msgstr "jQuery"
1084
 
1085
- #: core/fields/color_picker.php:74
1086
- msgid "eg: #ffffff"
1087
- msgstr "Ex : #ffffff"
1088
-
1089
- # @ acf
1090
- #: core/fields/date_picker/date_picker.php:22
1091
- msgid "Date Picker"
1092
- msgstr "Date"
1093
-
1094
- #: core/fields/date_picker/date_picker.php:30
1095
- msgid "Done"
1096
- msgstr "Effectué"
1097
-
1098
- #: core/fields/date_picker/date_picker.php:31
1099
- msgid "Today"
1100
- msgstr "Aujourd'hui"
1101
-
1102
- #: core/fields/date_picker/date_picker.php:34
1103
- msgid "Show a different month"
1104
- msgstr "Montrer un mois différent"
1105
-
1106
- # @ acf
1107
- #: core/fields/date_picker/date_picker.php:105
1108
- msgid "Save format"
1109
- msgstr "Sauvegarder format"
1110
-
1111
- #: core/fields/date_picker/date_picker.php:106
1112
- msgid ""
1113
- "This format will determin the value saved to the database and returned via "
1114
- "the API"
1115
- msgstr ""
1116
- "Ce format sera détermine la valeur enregistrée dans la base de données et "
1117
- "retournée par l‘API"
1118
-
1119
- #: core/fields/date_picker/date_picker.php:107
1120
- msgid "\"yymmdd\" is the most versatile save format. Read more about"
1121
- msgstr ""
1122
- "\"yymmdd\" est le format d‘enregistrement le plus polyvalent. En savoir plus "
1123
- "sur"
1124
-
1125
- # @ acf
1126
- #: core/fields/date_picker/date_picker.php:107
1127
- #: core/fields/date_picker/date_picker.php:123
1128
- msgid "jQuery date formats"
1129
- msgstr "Format date jQuery"
1130
-
1131
- # @ acf
1132
- #: core/fields/date_picker/date_picker.php:121
1133
- msgid "Display format"
1134
- msgstr "Format d‘affichage"
1135
-
1136
- #: core/fields/date_picker/date_picker.php:122
1137
- msgid "This format will be seen by the user when entering a value"
1138
- msgstr "Ce format sera vu par l‘utilisateur lors de la saisie d‘une valeur"
1139
-
1140
- #: core/fields/date_picker/date_picker.php:123
1141
- msgid ""
1142
- "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1143
- "about"
1144
- msgstr ""
1145
- "\"dd/mm/yy\" ou \"mm/dd/yy\" sont les formats d‘affichage les plus "
1146
- "utilisées. En savoir plus sur"
1147
-
1148
- #: core/fields/date_picker/date_picker.php:137
1149
- msgid "Week Starts On"
1150
- msgstr "Les semaines commencent le"
1151
-
1152
- #: core/fields/dummy.php:19
1153
  msgid "Dummy"
1154
  msgstr "Factice"
1155
 
1156
- #: core/fields/email.php:19
1157
  msgid "Email"
1158
  msgstr "Mail"
1159
 
1160
- # @ acf
1161
- #: core/fields/file.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
  msgid "File"
1163
  msgstr "Fichier"
1164
 
1165
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
 
1166
  msgid "Content"
1167
  msgstr "Contenu"
1168
 
1169
  # @ acf
1170
- #: core/fields/file.php:26 core/fields/file.php:711
1171
  msgid "Select File"
1172
  msgstr "Sélectionner un fichier"
1173
 
1174
  # @ acf
1175
- #: core/fields/file.php:27
1176
  msgid "Edit File"
1177
  msgstr "Modifier le fichier"
1178
 
1179
- #: core/fields/file.php:28 core/fields/image.php:29
 
 
 
 
 
1180
  msgid "uploaded to this post"
1181
  msgstr "Liés à l'article"
1182
 
1183
  # @ acf
1184
- #: core/fields/file.php:118
1185
  msgid "No File Selected"
1186
  msgstr "Aucun fichier sélectionné"
1187
 
1188
  # @ acf
1189
- #: core/fields/file.php:118
1190
  msgid "Add File"
1191
  msgstr "Ajouter un fichier"
1192
 
1193
  # @ acf
1194
- #: core/fields/file.php:148 core/fields/image.php:117
1195
- #: core/fields/taxonomy.php:365
1196
  msgid "Return Value"
1197
  msgstr "Valeur affichée dans le template"
1198
 
1199
  # @ acf
1200
- #: core/fields/file.php:159
1201
  msgid "File Object"
1202
  msgstr "Objet 'fichier'"
1203
 
1204
  # @ acf
1205
- #: core/fields/file.php:160
1206
  msgid "File URL"
1207
  msgstr "URL du fichier"
1208
 
1209
  # @ acf
1210
- #: core/fields/file.php:161
1211
  msgid "File ID"
1212
  msgstr "ID du Fichier"
1213
 
1214
- #: core/fields/file.php:170 core/fields/image.php:155
1215
  msgid "Library"
1216
  msgstr "Médias"
1217
 
1218
- #: core/fields/file.php:182 core/fields/image.php:167
1219
  msgid "Uploaded to post"
1220
  msgstr "Liés à cet article"
1221
 
1222
- #: core/fields/file.php:286
1223
- msgid "File Updated."
1224
- msgstr "Fichier mis à jour."
1225
-
1226
- #: core/fields/file.php:379 core/fields/image.php:396
1227
- msgid "Media attachment updated."
1228
- msgstr "Fichier mis à jour"
1229
 
1230
  # @ acf
1231
- #: core/fields/file.php:537
1232
- msgid "No files selected"
1233
- msgstr "Aucun fichier sélectionné"
1234
 
1235
- # @ acf
1236
- #: core/fields/file.php:678
1237
- msgid "Add Selected Files"
1238
- msgstr "Ajouter les fichiers sélectionnés"
1239
 
1240
  # @ acf
1241
- #: core/fields/file.php:714
1242
- msgid "Update File"
1243
- msgstr "Mettre à jour le fichier"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1244
 
1245
  # @ acf
1246
- #: core/fields/image.php:19
1247
  msgid "Image"
1248
  msgstr "Image"
1249
 
1250
  # acf
1251
- #: core/fields/image.php:27 core/fields/image.php:718
1252
  msgid "Select Image"
1253
  msgstr "Sélectionner l‘image"
1254
 
1255
  # @ acf
1256
- #: core/fields/image.php:28
1257
  msgid "Edit Image"
1258
  msgstr "Modifier l'image"
1259
 
1260
  # @ acf
1261
- #: core/fields/image.php:82
 
 
 
 
 
1262
  msgid "Remove"
1263
  msgstr "Retirer"
1264
 
1265
  # @ acf
1266
- #: core/fields/image.php:83 core/views/meta_box_fields.php:122
1267
  msgid "Edit"
1268
  msgstr "Modifier"
1269
 
1270
  # @ acf
1271
- #: core/fields/image.php:89
1272
  msgid "No image selected"
1273
  msgstr "Aucune image sélectionnée"
1274
 
1275
  # @ acf
1276
- #: core/fields/image.php:89
1277
  msgid "Add Image"
1278
  msgstr "Ajouter une image"
1279
 
 
 
 
 
1280
  # @ acf
1281
- #: core/fields/image.php:127
1282
  msgid "Image Object"
1283
  msgstr "Objet 'image'"
1284
 
1285
  # @ acf
1286
- #: core/fields/image.php:128
1287
  msgid "Image URL"
1288
  msgstr "URL de l‘image"
1289
 
1290
  # @ acf
1291
- #: core/fields/image.php:129
1292
  msgid "Image ID"
1293
  msgstr "ID de l‘image"
1294
 
1295
  # @ acf
1296
- #: core/fields/image.php:137
1297
  msgid "Preview Size"
1298
  msgstr "Taille de prévisualisation"
1299
 
1300
- #: core/fields/image.php:305
1301
- msgid "Image Updated."
1302
- msgstr "Image mise à jour."
1303
 
1304
- # @ acf
1305
- #: core/fields/image.php:547
1306
- msgid "No images selected"
1307
- msgstr "Aucune image sélectionnée"
1308
-
1309
- # @ acf
1310
- #: core/fields/image.php:689
1311
- msgid "Add Selected Images"
1312
- msgstr "Ajouter ces images"
1313
 
1314
  # @ acf
1315
- #: core/fields/image.php:721
1316
- msgid "Update Image"
1317
- msgstr "Mettre à jour"
1318
-
1319
- # @ acf
1320
- #: core/fields/message.php:19 core/fields/message.php:70
1321
- #: core/fields/true_false.php:79
1322
  msgid "Message"
1323
  msgstr "Message"
1324
 
1325
- #: core/fields/message.php:71
1326
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1327
  msgstr ""
1328
  "Cette zone de texte &amp; HTML permet d'afficher des indications de saisie "
1329
  "au rédacteur"
1330
 
1331
- #: core/fields/message.php:72
1332
  msgid "Please note that all text will first be passed through the wp function "
1333
  msgstr "Nota : le texte sera traité par la fonction "
1334
 
1335
- #: core/fields/number.php:19
1336
  msgid "Number"
1337
  msgstr "Nombre"
1338
 
1339
- #: core/fields/number.php:110
1340
- msgid "Min"
1341
- msgstr "Min"
1342
-
1343
- #: core/fields/number.php:111
1344
- msgid "Specifies the minimum value allowed"
1345
- msgstr "Indique la valeur minimale autorisée"
1346
-
1347
- #: core/fields/number.php:127
1348
- msgid "Max"
1349
- msgstr "Max"
1350
 
1351
- #: core/fields/number.php:128
1352
- msgid "Specifies the maximim value allowed"
1353
- msgstr "Indique la valeur maximale autorisée"
1354
-
1355
- #: core/fields/number.php:144
1356
- msgid "Step"
1357
- msgstr "Pas"
1358
 
1359
- #: core/fields/number.php:145
1360
- msgid "Specifies the legal number intervals"
1361
- msgstr "Indique l'écart entre chaque interval"
1362
 
1363
  # @ acf
1364
- #: core/fields/page_link.php:18
1365
  msgid "Page Link"
1366
  msgstr "Lien vers page ou article"
1367
 
1368
  # @ acf
1369
- #: core/fields/page_link.php:19 core/fields/post_object.php:19
1370
- #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1371
- #: core/fields/user.php:19
1372
  msgid "Relational"
1373
  msgstr "Relationnel"
1374
 
1375
  # @ acf
1376
- #: core/fields/page_link.php:103 core/fields/post_object.php:268
1377
- #: core/fields/relationship.php:547 core/fields/relationship.php:626
1378
- #: core/views/meta_box_location.php:75
1379
  msgid "Post Type"
1380
  msgstr "Type de publication"
1381
 
1382
  # @ acf
1383
- #: core/fields/page_link.php:127 core/fields/post_object.php:317
1384
- #: core/fields/select.php:214 core/fields/taxonomy.php:331
1385
- #: core/fields/user.php:275
1386
  msgid "Allow Null?"
1387
  msgstr "Autoriser vide ?"
1388
 
1389
  # @ acf
1390
- #: core/fields/page_link.php:148 core/fields/post_object.php:338
1391
- #: core/fields/select.php:233
1392
  msgid "Select multiple values?"
1393
  msgstr "Plusieurs valeurs possibles ?"
1394
 
1395
- #: core/fields/password.php:19
1396
  msgid "Password"
1397
  msgstr "Mot de passe"
1398
 
1399
  # @ acf
1400
- #: core/fields/post_object.php:18
1401
  msgid "Post Object"
1402
  msgstr "Objet 'article'"
1403
 
1404
  # @ acf
1405
- #: core/fields/post_object.php:292 core/fields/relationship.php:571
1406
  msgid "Filter from Taxonomy"
1407
  msgstr "Filtrer par taxonomie"
1408
 
1409
  # @ acf
1410
- #: core/fields/radio.php:18
1411
  msgid "Radio Button"
1412
  msgstr "Bouton radio"
1413
 
1414
- #: core/fields/radio.php:102 core/views/meta_box_location.php:90
1415
  msgid "Other"
1416
  msgstr "Sections de l'admin WordPress"
1417
 
1418
- #: core/fields/radio.php:145
1419
  msgid "Enter your choices one per line"
1420
  msgstr "Indiquez une valeur par ligne"
1421
 
1422
  # @ acf
1423
- #: core/fields/radio.php:147
1424
  msgid "Red"
1425
  msgstr "Rouge"
1426
 
1427
- #: core/fields/radio.php:148
1428
  msgid "Blue"
1429
  msgstr "Bleu"
1430
 
1431
- #: core/fields/radio.php:172
1432
  msgid "Add 'other' choice to allow for custom values"
1433
  msgstr "Ajouter 'autre' pour autoriser une valeur personnalisée"
1434
 
1435
- #: core/fields/radio.php:184
1436
  msgid "Save 'other' values to the field's choices"
1437
  msgstr "Enregistrer 'autre' en tant que choix"
1438
 
1439
  # @ acf
1440
- #: core/fields/relationship.php:18
1441
  msgid "Relationship"
1442
  msgstr "Relation"
1443
 
1444
- #: core/fields/relationship.php:28
1445
  msgid "Maximum values reached ( {max} values )"
1446
  msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
1447
 
1448
- #: core/fields/relationship.php:401
1449
  msgid "Search..."
1450
  msgstr "Rechercher"
1451
 
1452
- #: core/fields/relationship.php:414
1453
  msgid "Filter by post type"
1454
  msgstr "Filtrer par type de publication"
1455
 
1456
- #: core/fields/relationship.php:605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
  msgid "Search"
1458
  msgstr "Rechercher"
1459
 
1460
  # @ acf
1461
- #: core/fields/relationship.php:606
1462
  msgid "Post Type Select"
1463
  msgstr "Sélecteur Type d‘article"
1464
 
1465
- #: core/fields/relationship.php:614
1466
  msgid "Elements"
1467
- msgstr "Eléments"
1468
 
1469
- #: core/fields/relationship.php:615
1470
  msgid "Selected elements will be displayed in each result"
1471
  msgstr "Les éléments sélectionnés seront affichés dans chaque résultat"
1472
 
1473
  # @ acf
1474
- #: core/fields/relationship.php:624 core/views/meta_box_options.php:103
1475
  msgid "Featured Image"
1476
  msgstr "Image à la Une"
1477
 
1478
  # @ acf
1479
- #: core/fields/relationship.php:625
1480
  msgid "Post Title"
1481
  msgstr "Titre de l'article"
1482
 
1483
  # @ acf
1484
- #: core/fields/relationship.php:637
1485
  msgid "Maximum posts"
1486
- msgstr "Nombre max d‘articles"
1487
 
1488
  # @ acf
1489
- #: core/fields/select.php:18 core/fields/taxonomy.php:322
1490
- #: core/fields/user.php:266
1491
  msgid "Select"
1492
  msgstr "Liste de choix"
1493
 
1494
- #: core/fields/tab.php:19
1495
  msgid "Tab"
1496
  msgstr "Onglet"
1497
 
1498
- #: core/fields/tab.php:68
1499
  msgid ""
1500
- "All fields proceeding this \"tab field\" (or until another \"tab field\" is "
1501
- "defined) will appear grouped on the edit screen."
1502
  msgstr ""
1503
- "Tous les champs listés sous cet onglet (ou jusqu'au prochain onglet) "
1504
- "apparaitront groupés ensembles sur la page d'édition."
1505
 
1506
- #: core/fields/tab.php:69
1507
- msgid "You can use multiple tabs to break up your fields into sections."
 
 
1508
  msgstr ""
1509
- "Utilisez des onglets pour organiser vos champs en différentes sections."
 
 
 
 
 
1510
 
1511
  # @ acf
1512
- #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
1513
  msgid "Taxonomy"
1514
- msgstr "Taxonimie"
1515
 
1516
- #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
1517
- #: core/fields/text.php:95 core/fields/textarea.php:95
1518
  msgid "None"
1519
  msgstr "Aucun"
1520
 
1521
  # @ acf
1522
- #: core/fields/taxonomy.php:306 core/fields/user.php:251
1523
- #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:172
1524
  msgid "Field Type"
1525
  msgstr "Type de champ"
1526
 
1527
  # @ acf
1528
- #: core/fields/taxonomy.php:316 core/fields/user.php:260
1529
  msgid "Multiple Values"
1530
  msgstr "Valeurs multiples"
1531
 
1532
  # @ acf
1533
- #: core/fields/taxonomy.php:318 core/fields/user.php:262
1534
  msgid "Multi Select"
1535
  msgstr "Sélecteur multiple"
1536
 
1537
- #: core/fields/taxonomy.php:320 core/fields/user.php:264
1538
  msgid "Single Value"
1539
  msgstr "Valeur seule"
1540
 
1541
  # @ acf
1542
- #: core/fields/taxonomy.php:321
1543
  msgid "Radio Buttons"
1544
  msgstr "Boutons radio"
1545
 
1546
- #: core/fields/taxonomy.php:350
1547
  msgid "Load & Save Terms to Post"
1548
  msgstr "Charger & enregistrer les termes"
1549
 
1550
- #: core/fields/taxonomy.php:358
1551
  msgid ""
1552
  "Load value based on the post's terms and update the post's terms on save"
1553
  msgstr ""
@@ -1555,139 +1573,186 @@ msgstr ""
1555
  "lors de l'enregistrement"
1556
 
1557
  # @ acf
1558
- #: core/fields/taxonomy.php:375
1559
  msgid "Term Object"
1560
  msgstr "Objet Terme"
1561
 
1562
- #: core/fields/taxonomy.php:376
1563
  msgid "Term ID"
1564
  msgstr "ID du terme"
1565
 
1566
  # @ acf
1567
- #: core/fields/text.php:19
1568
  msgid "Text"
1569
  msgstr "Texte"
1570
 
1571
  # @ acf
1572
- #: core/fields/text.php:85 core/fields/textarea.php:85
1573
  msgid "Formatting"
1574
  msgstr "Formatage "
1575
 
 
 
 
 
1576
  # @ acf
1577
- #: core/fields/text.php:86
1578
- msgid "Define how to render html tags"
1579
- msgstr "Définition du rendu des balises html"
 
 
 
 
1580
 
1581
- #: core/fields/text.php:96 core/fields/textarea.php:97
1582
- msgid "HTML"
1583
- msgstr "HTML"
 
 
 
 
1584
 
1585
  # @ acf
1586
- #: core/fields/textarea.php:19
1587
  msgid "Text Area"
1588
  msgstr "Zone de texte"
1589
 
1590
- # @ acf
1591
- #: core/fields/textarea.php:86
1592
- msgid "Define how to render html tags / new lines"
1593
- msgstr "Définition du rendu des balises html et des nouvelles lignes"
1594
-
1595
- #: core/fields/textarea.php:96
1596
- msgid "auto &lt;br /&gt;"
1597
- msgstr "auto &lt;br /&gt;"
1598
 
1599
  # @ acf
1600
- #: core/fields/true_false.php:19
1601
  msgid "True / False"
1602
  msgstr "Vrai / Faux"
1603
 
1604
  # @ acf
1605
- #: core/fields/true_false.php:80
1606
  msgid "eg. Show extra content"
1607
  msgstr "ex : Montrer du contenu supplémentaire"
1608
 
1609
- #: core/fields/user.php:18
1610
  msgid "User"
1611
  msgstr "Utilisateur"
1612
 
1613
- #: core/fields/user.php:224
1614
  msgid "Filter by role"
1615
  msgstr "Filtrer par rôle"
1616
 
1617
  # @ acf
1618
- #: core/fields/wysiwyg.php:19
1619
  msgid "Wysiwyg Editor"
1620
- msgstr "Editeur WYSIWYG"
1621
 
1622
  # @ acf
1623
- #: core/fields/wysiwyg.php:185
1624
  msgid "Toolbar"
1625
  msgstr "Barre d‘outils"
1626
 
1627
  # @ acf
1628
- #: core/fields/wysiwyg.php:217
1629
  msgid "Show Media Upload Buttons?"
1630
  msgstr "Afficher les boutons d‘ajout de médias ?"
1631
 
 
 
 
 
1632
  # @ acf
1633
- #: core/views/meta_box_fields.php:24
1634
- msgid "New Field"
1635
- msgstr "Nouveau champ"
 
 
 
 
 
 
 
 
 
 
 
 
1636
 
1637
  # @ acf
1638
- #: core/views/meta_box_fields.php:58
1639
- msgid "Field type does not exist"
1640
- msgstr "Ce type de champ n‘existe pas !"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1641
 
1642
  # @ acf
1643
- #: core/views/meta_box_fields.php:63
1644
- msgid "Move to trash. Are you sure?"
1645
- msgstr "Mettre à la corbeille. Etes-vous sûr ?"
 
1646
 
1647
- #: core/views/meta_box_fields.php:64
1648
- msgid "checked"
1649
- msgstr "sélectionné"
 
1650
 
1651
- #: core/views/meta_box_fields.php:65
1652
- msgid "No toggle fields available"
1653
- msgstr "Ajoutez d'abord une case à cocher ou un champ sélection"
1654
 
1655
- # @ default
1656
- #: core/views/meta_box_fields.php:66
1657
- msgid "Field group title is required"
1658
- msgstr "Veuillez indiquer un titre pour le groupe de champs"
 
 
 
1659
 
1660
- #: core/views/meta_box_fields.php:67
1661
- msgid "copy"
1662
- msgstr "copie"
1663
 
1664
- #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1665
- #: core/views/meta_box_location.php:158
1666
- msgid "or"
1667
- msgstr "ou"
1668
 
1669
  # @ acf
1670
- #: core/views/meta_box_fields.php:88
 
 
 
 
 
1671
  msgid "Field Order"
1672
  msgstr "Position du champ"
1673
 
1674
  # @ acf
1675
- #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
1676
  msgid "Field Label"
1677
  msgstr "Titre du champ"
1678
 
1679
  # @ acf
1680
- #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
1681
  msgid "Field Name"
1682
  msgstr "Nom du champ"
1683
 
1684
  # @ acf
1685
- #: core/views/meta_box_fields.php:92
1686
  msgid "Field Key"
1687
  msgstr "Clé du champ"
1688
 
1689
  # @ acf
1690
- #: core/views/meta_box_fields.php:104
1691
  msgid ""
1692
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1693
  "first field."
@@ -1696,115 +1761,117 @@ msgstr ""
1696
  "votre premier champ."
1697
 
1698
  # @ acf
1699
- #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
1700
  msgid "Edit this Field"
1701
  msgstr "Modifier ce champ"
1702
 
1703
  # @ acf
1704
- #: core/views/meta_box_fields.php:123
1705
  msgid "Read documentation for this field"
1706
  msgstr "Lire la documentation de ce champ"
1707
 
1708
  # @ acf
1709
- #: core/views/meta_box_fields.php:123
1710
  msgid "Docs"
1711
  msgstr "Documentation"
1712
 
1713
  # @ acf
1714
- #: core/views/meta_box_fields.php:124
1715
  msgid "Duplicate this Field"
1716
  msgstr "Dupliquer ce champ"
1717
 
1718
- #: core/views/meta_box_fields.php:124
1719
  msgid "Duplicate"
1720
  msgstr "Dupliquer"
1721
 
1722
  # @ acf
1723
- #: core/views/meta_box_fields.php:125
1724
  msgid "Delete this Field"
1725
  msgstr "Supprimer ce champ"
1726
 
1727
  # @ acf
1728
- #: core/views/meta_box_fields.php:125
1729
  msgid "Delete"
1730
  msgstr "Supprimer"
1731
 
1732
  # @ acf
1733
- #: core/views/meta_box_fields.php:142
1734
  msgid "This is the name which will appear on the EDIT page"
1735
  msgstr "Ce nom apparaîtra sur la page d‘édition"
1736
 
1737
  # @ acf
1738
- #: core/views/meta_box_fields.php:158
1739
  msgid "Single word, no spaces. Underscores and dashes allowed"
1740
  msgstr "Un seul mot sans espace.<br />Les '_' et '-' sont autorisés"
1741
 
1742
  # @ acf
1743
- #: core/views/meta_box_fields.php:185
1744
  msgid "Field Instructions"
1745
  msgstr "Instructions pour ce champ"
1746
 
1747
  # @ acf
1748
- #: core/views/meta_box_fields.php:186
1749
  msgid "Instructions for authors. Shown when submitting data"
1750
  msgstr ""
1751
  "Instructions pour les auteurs. Affichées lors de la soumission de données."
1752
 
1753
  # @ acf
1754
- #: core/views/meta_box_fields.php:198
1755
  msgid "Required?"
1756
  msgstr "Requis ?"
1757
 
1758
- #: core/views/meta_box_fields.php:221
1759
  msgid "Conditional Logic"
1760
  msgstr "Logique conditionnelle"
1761
 
1762
- #: core/views/meta_box_fields.php:272 core/views/meta_box_location.php:116
 
1763
  msgid "is equal to"
1764
  msgstr "est égal à"
1765
 
1766
- #: core/views/meta_box_fields.php:273 core/views/meta_box_location.php:117
 
1767
  msgid "is not equal to"
1768
  msgstr "n‘est pas égal à"
1769
 
1770
- #: core/views/meta_box_fields.php:291
1771
  msgid "Show this field when"
1772
  msgstr "Montrer ce champ quand"
1773
 
1774
- #: core/views/meta_box_fields.php:297
1775
  msgid "all"
1776
  msgstr "toutes les règles sont respectées"
1777
 
1778
- #: core/views/meta_box_fields.php:298
1779
  msgid "any"
1780
  msgstr "au moins une règle est respectée"
1781
 
1782
  # Volontairement laissé vide car la tournure de la phrase en français n'a pas besoin de complément à la fin.
1783
- #: core/views/meta_box_fields.php:301
1784
  msgid "these rules are met"
1785
- msgstr " "
1786
 
1787
  # @ acf
1788
- #: core/views/meta_box_fields.php:315
1789
  msgid "Close Field"
1790
  msgstr "Fermer le champ"
1791
 
1792
- #: core/views/meta_box_fields.php:328
1793
  msgid "Drag and drop to reorder"
1794
  msgstr "Faites glisser pour réorganiser"
1795
 
1796
  # @ acf
1797
- #: core/views/meta_box_fields.php:329
1798
  msgid "+ Add Field"
1799
  msgstr "+ Ajouter"
1800
 
1801
  # @ acf
1802
- #: core/views/meta_box_location.php:48
1803
  msgid "Rules"
1804
  msgstr "Règles"
1805
 
1806
  # @ acf
1807
- #: core/views/meta_box_location.php:49
1808
  msgid ""
1809
  "Create a set of rules to determine which edit screens will use these "
1810
  "advanced custom fields"
@@ -1812,124 +1879,131 @@ msgstr ""
1812
  "Créez une série de règles pour déterminer sur quelles pages d‘édition ce "
1813
  "groupe de champs sera utilisé"
1814
 
1815
- #: core/views/meta_box_location.php:60
1816
  msgid "Show this field group if"
1817
  msgstr "Montrer ce champ quand"
1818
 
1819
- #: core/views/meta_box_location.php:76
1820
  msgid "Logged in User Type"
1821
  msgstr "Rôle de l‘utilisateur"
1822
 
1823
  # @ acf
1824
- #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
 
1825
  msgid "Page"
1826
  msgstr "Page"
1827
 
1828
  # @ acf
1829
- #: core/views/meta_box_location.php:80
1830
  msgid "Page Type"
1831
  msgstr "Type de page"
1832
 
1833
  # @ acf
1834
- #: core/views/meta_box_location.php:81
1835
  msgid "Page Parent"
1836
  msgstr "Page parente"
1837
 
1838
- #: core/views/meta_box_location.php:82
1839
  msgid "Page Template"
1840
  msgstr "Modèle de page"
1841
 
1842
  # @ acf
1843
- #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
 
1844
  msgid "Post"
1845
  msgstr "Article"
1846
 
1847
- #: core/views/meta_box_location.php:86
1848
  msgid "Post Category"
1849
  msgstr "Catégorie"
1850
 
1851
  # @ acf
1852
- #: core/views/meta_box_location.php:87
1853
  msgid "Post Format"
1854
  msgstr "Format d‘article"
1855
 
1856
  # @ acf
1857
- #: core/views/meta_box_location.php:88
1858
- msgid "Post Taxonomy"
1859
- msgstr "Taxonimie"
1860
 
1861
- #: core/views/meta_box_location.php:91
1862
- msgid "Taxonomy Term (Add / Edit)"
1863
- msgstr "Taxonomies (catégories, mots-clés…)"
 
1864
 
1865
- #: core/views/meta_box_location.php:92
1866
- msgid "User (Add / Edit)"
1867
- msgstr "Utilisateurs (profil)"
1868
 
1869
- #: core/views/meta_box_location.php:93
1870
- msgid "Media Attachment (Edit)"
1871
- msgstr "Média (photo, fichier…)"
1872
 
1873
- #: core/views/meta_box_location.php:145
1874
  msgid "and"
1875
  msgstr "et"
1876
 
1877
  # @ acf
1878
- #: core/views/meta_box_location.php:160
1879
  msgid "Add rule group"
1880
  msgstr "Ajouter une règle"
1881
 
1882
  # @ acf
1883
- #: core/views/meta_box_options.php:25
1884
  msgid "Order No."
1885
  msgstr "Numéro d‘ordre"
1886
 
1887
  # @ acf
1888
- #: core/views/meta_box_options.php:26
1889
  msgid "Field groups are created in order <br />from lowest to highest"
1890
  msgstr ""
1891
  "Les groupes de champs sont créés dans <br/> ordre du plus bas vers le plus "
1892
  "haut"
1893
 
1894
  # @ acf
1895
- #: core/views/meta_box_options.php:42
1896
  msgid "Position"
1897
  msgstr "Position"
1898
 
1899
- #: core/views/meta_box_options.php:52
1900
- msgid "Normal"
1901
- msgstr "Normal"
 
 
 
 
1902
 
1903
- #: core/views/meta_box_options.php:53
1904
  msgid "Side"
1905
  msgstr "Sur le côté"
1906
 
1907
  # @ acf
1908
- #: core/views/meta_box_options.php:62
1909
  msgid "Style"
1910
  msgstr "Style"
1911
 
1912
- #: core/views/meta_box_options.php:72
1913
  msgid "No Metabox"
1914
  msgstr "Sans encadrement"
1915
 
1916
- #: core/views/meta_box_options.php:73
1917
  msgid "Standard Metabox"
1918
  msgstr "Encadré d‘un bloc"
1919
 
1920
- #: core/views/meta_box_options.php:82
1921
  msgid "Hide on screen"
1922
  msgstr "Ne pas afficher"
1923
 
1924
  # @ acf
1925
- #: core/views/meta_box_options.php:83
1926
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1927
  msgstr ""
1928
  "<b>Décochez</b> les champs que vous souhaitez <b>masquer</b> sur la page "
1929
  "d‘édition"
1930
 
1931
  # @ acf
1932
- #: core/views/meta_box_options.php:84
1933
  msgid ""
1934
  "If multiple field groups appear on an edit screen, the first field group's "
1935
  "options will be used. (the one with the lowest order number)"
@@ -1937,47 +2011,92 @@ msgstr ""
1937
  "Si plusieurs groupes ACF sont présents sur une page d‘édition, le groupe "
1938
  "portant le numéro le plus bas sera affiché en premier."
1939
 
1940
- #: core/views/meta_box_options.php:94
1941
  msgid "Content Editor"
1942
  msgstr "L'éditeur visuel (WYSIWYG)"
1943
 
1944
- #: core/views/meta_box_options.php:95
1945
  msgid "Excerpt"
1946
  msgstr "Le résumé (excerpt)"
1947
 
1948
- #: core/views/meta_box_options.php:97
1949
  msgid "Discussion"
1950
  msgstr "Discussion"
1951
 
1952
- #: core/views/meta_box_options.php:98
1953
  msgid "Comments"
1954
  msgstr "Les commentaires"
1955
 
1956
- #: core/views/meta_box_options.php:99
1957
  msgid "Revisions"
1958
  msgstr "Révisions"
1959
 
1960
- #: core/views/meta_box_options.php:100
1961
  msgid "Slug"
1962
  msgstr "Identifiant (slug)"
1963
 
1964
- #: core/views/meta_box_options.php:101
1965
  msgid "Author"
1966
  msgstr "Auteur"
1967
 
1968
  # @ acf
1969
- #: core/views/meta_box_options.php:102
1970
  msgid "Format"
1971
  msgstr "Format"
1972
 
1973
- #: core/views/meta_box_options.php:104
1974
  msgid "Categories"
1975
  msgstr "Catégories"
1976
 
1977
- #: core/views/meta_box_options.php:105
1978
  msgid "Tags"
1979
  msgstr "Mots-clés"
1980
 
1981
- #: core/views/meta_box_options.php:106
1982
  msgid "Send Trackbacks"
1983
  msgstr "Envoyer des Trackbacks"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
+ "POT-Creation-Date: 2013-10-22 18:19+0100\n"
6
+ "PO-Revision-Date: 2013-10-22 18:32+0100\n"
7
+ "Last-Translator: Frédéric Lopez <frederic.lopez@glasshouse.fr>\n"
8
  "Language-Team: RVOLA <hello@rvola.com>\n"
9
  "Language: French\n"
10
  "MIME-Version: 1.0\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Generator: Poedit 1.5.7\n"
20
 
21
  # @ acf
22
+ #: ../acf.php:436
23
  msgid "Field&nbsp;Groups"
24
  msgstr "Groupes de champs"
25
 
26
  # @ acf
27
+ #: ../acf.php:437 ../core/controllers/field_groups.php:214
28
  msgid "Advanced Custom Fields"
29
  msgstr "Advanced Custom Fields"
30
 
31
  # @ acf
32
+ #: ../acf.php:438
33
  msgid "Add New"
34
  msgstr "Ajouter"
35
 
36
  # @ acf
37
+ #: ../acf.php:439
38
  msgid "Add New Field Group"
39
  msgstr "Nouveau groupe de champs"
40
 
41
  # @ acf
42
+ #: ../acf.php:440
43
  msgid "Edit Field Group"
44
  msgstr "Modifier le groupe de champs"
45
 
46
  # @ acf
47
+ #: ../acf.php:441
48
  msgid "New Field Group"
49
  msgstr "Nouveau groupe de champs"
50
 
51
  # @ default
52
+ #: ../acf.php:442
53
  msgid "View Field Group"
54
+ msgstr "Voir le groupe de champs"
55
 
56
  # @ default
57
+ #: ../acf.php:443
58
  msgid "Search Field Groups"
59
+ msgstr "Rechercher un groupe de champs"
60
 
61
  # @ default
62
+ #: ../acf.php:444
63
  msgid "No Field Groups found"
64
+ msgstr "Aucun groupe de champs trouvé"
65
 
66
  # @ default
67
+ #: ../acf.php:445
68
  msgid "No Field Groups found in Trash"
69
+ msgstr "Aucun groupe de champs trouvé dans la corbeille"
70
 
71
  # @ acf
72
+ #: ../acf.php:548 ../core/views/meta_box_options.php:98
73
  msgid "Custom Fields"
74
  msgstr "ACF"
75
 
76
  # @ default
77
+ #: ../acf.php:566 ../acf.php:569
78
  msgid "Field group updated."
79
  msgstr "Groupe de champs mis à jour"
80
 
81
  # @ acf
82
+ #: ../acf.php:567
83
  msgid "Custom field updated."
84
  msgstr "Champ mis à jour"
85
 
86
  # @ acf
87
+ #: ../acf.php:568
88
  msgid "Custom field deleted."
89
  msgstr "Champ supprimé"
90
 
91
+ #: ../acf.php:571
92
+ #, php-format
93
  msgid "Field group restored to revision from %s"
94
  msgstr "Groupe de champs restauré à la révision %s"
95
 
96
  # @ default
97
+ #: ../acf.php:572
98
  msgid "Field group published."
99
  msgstr "Groupe de champ publié"
100
 
101
  # @ default
102
+ #: ../acf.php:573
103
  msgid "Field group saved."
104
  msgstr "Groupe de champ enregistré"
105
 
106
  # @ default
107
+ #: ../acf.php:574
108
  msgid "Field group submitted."
109
+ msgstr "Groupe de champ enregistré."
110
 
111
+ #: ../acf.php:575
112
  msgid "Field group scheduled for."
113
  msgstr "Groupe de champs programmé pour."
114
 
115
+ #: ../acf.php:576
116
  msgid "Field group draft updated."
117
+ msgstr "Brouillon du groupe de champs mis à jour."
118
 
119
+ #: ../acf.php:711
120
  msgid "Thumbnail"
121
  msgstr "Miniature"
122
 
123
+ #: ../acf.php:712
124
  msgid "Medium"
125
  msgstr "Moyen"
126
 
127
+ #: ../acf.php:713
128
  msgid "Large"
129
  msgstr "Grande"
130
 
131
+ #: ../acf.php:714
132
  msgid "Full"
133
  msgstr "Complète"
134
 
 
 
 
 
 
 
 
 
 
135
  # @ acf
136
+ #: ../core/api.php:1106
137
  msgid "Update"
138
  msgstr "Mise à jour"
139
 
140
  # @ acf
141
+ #: ../core/api.php:1107
142
  msgid "Post updated"
143
  msgstr "Article mis à jour"
144
 
145
+ #: ../core/actions/export.php:23 ../core/views/meta_box_fields.php:58
146
+ msgid "Error"
147
+ msgstr "Erreur"
148
+
149
  # @ acf
150
+ #: ../core/actions/export.php:30
151
+ msgid "No ACF groups selected"
152
+ msgstr "Aucun groupe de champs sélectionné"
153
+
154
+ # @ acf
155
+ #: ../core/controllers/addons.php:42 ../core/controllers/field_groups.php:311
156
  msgid "Add-ons"
157
  msgstr "Add-ons"
158
 
159
  # @ acf
160
+ #: ../core/controllers/addons.php:130 ../core/controllers/field_groups.php:433
161
  msgid "Repeater Field"
162
  msgstr "Champs répéteur"
163
 
164
+ #: ../core/controllers/addons.php:131
165
  msgid "Create infinite rows of repeatable data with this versatile interface!"
166
  msgstr "Créez des champs répétables à l'infini pour plus de souplesse !"
167
 
168
  # @ acf
169
+ #: ../core/controllers/addons.php:137 ../core/controllers/field_groups.php:441
170
  msgid "Gallery Field"
171
  msgstr "Champ galerie"
172
 
173
+ #: ../core/controllers/addons.php:138
174
  msgid "Create image galleries in a simple and intuitive interface!"
175
  msgstr "Créez en toute simplicité de superbes galeries photos "
176
 
177
  # @ acf
178
+ #: ../core/controllers/addons.php:144 ../core/controllers/field_groups.php:449
 
179
  msgid "Options Page"
180
  msgstr "Page d‘options"
181
 
182
+ #: ../core/controllers/addons.php:145
183
  msgid "Create global data to use throughout your website!"
184
  msgstr ""
185
  "Créez avec ACF une page d'options pour configurer des informations "
186
  "utilisable depuis n'importe quelle page."
187
 
188
  # @ acf
189
+ #: ../core/controllers/addons.php:151
190
  msgid "Flexible Content Field"
191
  msgstr "Champs au contenu flexible "
192
 
193
+ #: ../core/controllers/addons.php:152
194
  msgid "Create unique designs with a flexible content layout manager!"
195
  msgstr "Créez des mises en pages uniques grâce aux contenus flexibles"
196
 
197
+ #: ../core/controllers/addons.php:161
198
  msgid "Gravity Forms Field"
199
  msgstr "Champs Gravity Forms"
200
 
201
+ #: ../core/controllers/addons.php:162
202
  msgid "Creates a select field populated with Gravity Forms!"
203
  msgstr "Permet de sélectionner des formulaires Gravity Forms !"
204
 
205
  # @ acf
206
+ #: ../core/controllers/addons.php:168
207
  msgid "Date & Time Picker"
208
  msgstr "Sélecteur de date"
209
 
210
+ #: ../core/controllers/addons.php:169
211
  msgid "jQuery date & time picker"
212
  msgstr "Sélecteur de date jQuery"
213
 
214
  # @ acf
215
+ #: ../core/controllers/addons.php:175
216
  msgid "Location Field"
217
  msgstr "Champ Localisation"
218
 
219
+ #: ../core/controllers/addons.php:176
220
  msgid "Find addresses and coordinates of a desired location"
221
  msgstr "Trouvez l'adresse ou les coordonnées d'un lieu"
222
 
223
  # @ acf
224
+ #: ../core/controllers/addons.php:182
225
  msgid "Contact Form 7 Field"
226
  msgstr "Champ Contact Form 7"
227
 
228
+ #: ../core/controllers/addons.php:183
229
  msgid "Assign one or more contact form 7 forms to a post"
230
  msgstr ""
231
  "Assignez un ou plusieurs formulaires Contact Form 7 dans vos publications."
232
 
233
  # @ acf
234
+ #: ../core/controllers/addons.php:193
235
  msgid "Advanced Custom Fields Add-Ons"
236
  msgstr "Add-ons Advanced Custom Fields"
237
 
238
+ #: ../core/controllers/addons.php:196
239
  msgid ""
240
  "The following Add-ons are available to increase the functionality of the "
241
  "Advanced Custom Fields plugin."
242
  msgstr "Ces Add-ons vous permettent d'étendre les possibilités d'ACF."
243
 
244
+ #: ../core/controllers/addons.php:197
245
  msgid ""
246
  "Each Add-on can be installed as a separate plugin (receives updates) or "
247
  "included in your theme (does not receive updates)."
249
  "Chaque Add-on peut être installé séparément en tant qu'extension (avec mises "
250
  "à jour) ou inclus dans votre thème (sans mises à jour)"
251
 
252
+ #: ../core/controllers/addons.php:219 ../core/controllers/addons.php:240
253
  msgid "Installed"
254
  msgstr "Installé"
255
 
256
+ #: ../core/controllers/addons.php:221
257
  msgid "Purchase & Install"
258
  msgstr "Acheter & installer"
259
 
260
+ #: ../core/controllers/addons.php:242 ../core/controllers/field_groups.php:426
261
+ #: ../core/controllers/field_groups.php:435
262
+ #: ../core/controllers/field_groups.php:443
263
+ #: ../core/controllers/field_groups.php:451
264
+ #: ../core/controllers/field_groups.php:459
265
  msgid "Download"
266
  msgstr "Télécharger"
267
 
268
  # @ acf
269
+ #: ../core/controllers/export.php:50 ../core/controllers/export.php:159
270
  msgid "Export"
271
  msgstr "Exporter"
272
 
273
  # @ acf
274
+ #: ../core/controllers/export.php:216
275
  msgid "Export Field Groups"
276
  msgstr "Exporter les groupes de champs"
277
 
278
  # @ acf
279
+ #: ../core/controllers/export.php:221
280
  msgid "Field Groups"
281
  msgstr "Groupes de champs"
282
 
283
+ #: ../core/controllers/export.php:222
284
  msgid "Select the field groups to be exported"
285
  msgstr ""
286
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
287
  "XML\""
288
 
289
  # @ acf
290
+ #: ../core/controllers/export.php:239 ../core/controllers/export.php:252
291
  msgid "Export to XML"
292
  msgstr "Export XML"
293
 
294
  # @ acf
295
+ #: ../core/controllers/export.php:242 ../core/controllers/export.php:267
296
  msgid "Export to PHP"
297
  msgstr "Export PHP"
298
 
299
  # @ acf
300
+ #: ../core/controllers/export.php:253
301
  msgid ""
302
  "ACF will create a .xml export file which is compatible with the native WP "
303
  "import plugin."
305
  "ACF générera un fichier d‘export .xml compatible avec le plugin d'import "
306
  "natif de WordPress."
307
 
308
+ #: ../core/controllers/export.php:254
309
  msgid ""
310
  "Imported field groups <b>will</b> appear in the list of editable field "
311
  "groups. This is useful for migrating fields groups between Wp websites."
313
  "Les groupes de champs importés <b>apparaitront</b> dans ACF. Utile pour "
314
  "migrer les groupes de champs entre plusieurs site Wordpress."
315
 
316
+ #: ../core/controllers/export.php:256
317
  msgid "Select field group(s) from the list and click \"Export XML\""
318
  msgstr ""
319
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
320
  "XML\""
321
 
322
+ #: ../core/controllers/export.php:257
323
  msgid "Save the .xml file when prompted"
324
  msgstr "Enregistrer le .xml"
325
 
326
+ #: ../core/controllers/export.php:258
327
  msgid "Navigate to Tools &raquo; Import and select WordPress"
328
  msgstr "Allez dans \"Outils &raquo; Importer\" et sélectionnez WordPress"
329
 
330
  # @ acf
331
+ #: ../core/controllers/export.php:259
332
  msgid "Install WP import plugin if prompted"
333
  msgstr "Installez le plugin d‘import WordPress si demandé"
334
 
335
  # @ acf
336
+ #: ../core/controllers/export.php:260
337
  msgid "Upload and import your exported .xml file"
338
  msgstr "Importez votre fichier .xml "
339
 
340
  # @ acf
341
+ #: ../core/controllers/export.php:261
342
  msgid "Select your user and ignore Import Attachments"
343
  msgstr "Sélectionnez votre utilisateur et ignorez l‘import des pièces jointes"
344
 
345
  # @ acf
346
+ #: ../core/controllers/export.php:262
347
  msgid "That's it! Happy WordPressing"
348
  msgstr "C‘est tout ! WordPressez bien"
349
 
350
  # @ acf
351
+ #: ../core/controllers/export.php:268
352
  msgid "ACF will create the PHP code to include in your theme."
353
  msgstr "ACF générera le code PHP à inclure dans votre thème"
354
 
355
+ #: ../core/controllers/export.php:269 ../core/controllers/export.php:310
356
  msgid ""
357
  "Registered field groups <b>will not</b> appear in the list of editable field "
358
  "groups. This is useful for including fields in themes."
360
  "Les groupes de champs enregistrés <b>n‘apparaitront pas</b> dans ACF. Cette "
361
  "manipulation sert à insérer les champs en PHP directement dans le thème."
362
 
363
+ #: ../core/controllers/export.php:270 ../core/controllers/export.php:311
364
  msgid ""
365
  "Please note that if you export and register field groups within the same WP, "
366
  "you will see duplicate fields on your edit screens. To fix this, please move "
371
  "verrez les champs en double dans votre page d‘édition. Pour éviter cela, "
372
  "supprimer le groupe depuis ACF ou retirez le code PHP de functions.php."
373
 
374
+ #: ../core/controllers/export.php:272
375
  msgid "Select field group(s) from the list and click \"Create PHP\""
376
  msgstr ""
377
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Générer PHP"
378
  "\""
379
 
380
  # @ acf
381
+ #: ../core/controllers/export.php:273 ../core/controllers/export.php:302
382
  msgid "Copy the PHP code generated"
383
  msgstr "Copiez le code PHP généré"
384
 
385
  # @ acf
386
+ #: ../core/controllers/export.php:274 ../core/controllers/export.php:303
387
  msgid "Paste into your functions.php file"
388
  msgstr "Collez le code dans votre fichier functions.php"
389
 
390
  # @ acf
391
+ #: ../core/controllers/export.php:275 ../core/controllers/export.php:304
392
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
393
  msgstr ""
394
  "Pour activer un add-on, éditez le code dans les toutes premières lignes."
395
 
396
  # @ acf
397
+ #: ../core/controllers/export.php:295
398
  msgid "Export Field Groups to PHP"
399
  msgstr "Exportez des groupes de champs en PHP"
400
 
401
  # @ acf
402
+ #: ../core/controllers/export.php:300 ../core/fields/tab.php:65
403
  msgid "Instructions"
404
  msgstr "Instructions"
405
 
406
+ #: ../core/controllers/export.php:309
407
  msgid "Notes"
408
  msgstr "Notes"
409
 
410
+ #: ../core/controllers/export.php:316
411
  msgid "Include in theme"
412
  msgstr "Inclure dans le thème"
413
 
414
+ #: ../core/controllers/export.php:317
415
  msgid ""
416
  "The Advanced Custom Fields plugin can be included within a theme. To do so, "
417
  "move the ACF plugin inside your theme and add the following code to your "
421
  "dossier Advanced Custom Field dans votre thème et ajoutez le code suivant à "
422
  "votre fichier functions.php :"
423
 
424
+ #: ../core/controllers/export.php:323
425
  msgid ""
426
  "To remove all visual interfaces from the ACF plugin, you can use a constant "
427
  "to enable lite mode. Add the following code to your functions.php file "
432
  "b> le code 'include_once' :"
433
 
434
  # @ acf
435
+ #: ../core/controllers/export.php:331
436
  msgid "Back to export"
437
  msgstr "Retour à l'export"
438
 
439
+ # @ acf
440
+ #: ../core/controllers/export.php:400
441
+ msgid "No field groups were selected"
442
+ msgstr "Aucun groupe de champs n‘a été sélectionné"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
 
444
  # @ acf
445
+ #: ../core/controllers/field_group.php:358
446
+ msgid "Move to trash. Are you sure?"
447
+ msgstr "Mettre à la corbeille. Êtes-vous sûr ?"
448
+
449
+ #: ../core/controllers/field_group.php:359
450
+ msgid "checked"
451
+ msgstr "sélectionné"
452
+
453
+ #: ../core/controllers/field_group.php:360
454
+ msgid "No toggle fields available"
455
+ msgstr "Ajoutez d'abord une case à cocher ou un champ sélection"
456
+
457
+ # @ default
458
+ #: ../core/controllers/field_group.php:361
459
+ msgid "Field group title is required"
460
+ msgstr "Veuillez indiquer un titre pour le groupe de champs"
461
+
462
+ #: ../core/controllers/field_group.php:362
463
+ msgid "copy"
464
+ msgstr "copie"
465
+
466
+ #: ../core/controllers/field_group.php:363
467
+ #: ../core/views/meta_box_location.php:62
468
+ #: ../core/views/meta_box_location.php:159
469
+ msgid "or"
470
+ msgstr "ou"
471
 
472
  # @ acf
473
+ #: ../core/controllers/field_group.php:364
474
+ #: ../core/controllers/field_group.php:395
475
+ #: ../core/controllers/field_group.php:457
476
+ #: ../core/controllers/field_groups.php:148
477
+ msgid "Fields"
478
+ msgstr "Champs"
479
+
480
+ #: ../core/controllers/field_group.php:365
481
+ msgid "Parent fields"
482
+ msgstr "Champs parents"
483
+
484
+ #: ../core/controllers/field_group.php:366
485
+ msgid "Sibling fields"
486
+ msgstr "Champs frères et sœurs"
487
+
488
+ #: ../core/controllers/field_group.php:367
489
+ msgid "Hide / Show All"
490
+ msgstr "Masquer / Afficher tout"
491
 
492
  # @ acf
493
+ #: ../core/controllers/field_group.php:396
494
  msgid "Location"
495
  msgstr "Assigner ce groupe de champs"
496
 
497
  # @ acf
498
+ #: ../core/controllers/field_group.php:397
499
  msgid "Options"
500
  msgstr "Options"
501
 
502
  # @ acf
503
+ #: ../core/controllers/field_group.php:459
504
  msgid "Show Field Key:"
505
  msgstr "Montrer la clé :"
506
 
507
+ #: ../core/controllers/field_group.php:460 ../core/fields/page_link.php:138
508
+ #: ../core/fields/page_link.php:159 ../core/fields/post_object.php:328
509
+ #: ../core/fields/post_object.php:349 ../core/fields/select.php:224
510
+ #: ../core/fields/select.php:243 ../core/fields/taxonomy.php:343
511
+ #: ../core/fields/user.php:285 ../core/fields/wysiwyg.php:245
512
+ #: ../core/views/meta_box_fields.php:195 ../core/views/meta_box_fields.php:218
513
  msgid "No"
514
  msgstr "Non"
515
 
516
+ #: ../core/controllers/field_group.php:461 ../core/fields/page_link.php:137
517
+ #: ../core/fields/page_link.php:158 ../core/fields/post_object.php:327
518
+ #: ../core/fields/post_object.php:348 ../core/fields/select.php:223
519
+ #: ../core/fields/select.php:242 ../core/fields/taxonomy.php:342
520
+ #: ../core/fields/user.php:284 ../core/fields/wysiwyg.php:244
521
+ #: ../core/views/meta_box_fields.php:194 ../core/views/meta_box_fields.php:217
522
  msgid "Yes"
523
  msgstr "Oui"
524
 
525
+ #: ../core/controllers/field_group.php:638
526
  msgid "Front Page"
527
  msgstr "Page d'accueil"
528
 
529
+ #: ../core/controllers/field_group.php:639
530
  msgid "Posts Page"
531
  msgstr "Page des articles"
532
 
533
+ #: ../core/controllers/field_group.php:640
534
  msgid "Top Level Page (parent of 0)"
535
  msgstr "Page de haut niveau (sans descendant)"
536
 
537
+ #: ../core/controllers/field_group.php:641
538
  msgid "Parent Page (has children)"
539
  msgstr "Page parente (avec page enfant)"
540
 
541
+ #: ../core/controllers/field_group.php:642
542
  msgid "Child Page (has parent)"
543
  msgstr "Page enfant (avec parent)"
544
 
545
  # @ acf
546
+ #: ../core/controllers/field_group.php:650
547
  msgid "Default Template"
548
  msgstr "Modèle de base"
549
 
550
+ #: ../core/controllers/field_group.php:727
551
+ msgid "Publish"
552
+ msgstr "Publier"
553
+
554
+ #: ../core/controllers/field_group.php:728
555
+ msgid "Pending Review"
556
+ msgstr "En attente de relecture"
557
+
558
+ #: ../core/controllers/field_group.php:729
559
+ msgid "Draft"
560
+ msgstr "Brouillon"
561
+
562
+ #: ../core/controllers/field_group.php:730
563
+ msgid "Future"
564
+ msgstr "Futur"
565
+
566
+ #: ../core/controllers/field_group.php:731
567
+ msgid "Private"
568
+ msgstr "Privé"
569
+
570
+ #: ../core/controllers/field_group.php:732
571
+ msgid "Revision"
572
+ msgstr "Révision"
573
+
574
+ #: ../core/controllers/field_group.php:733
575
+ msgid "Trash"
576
+ msgstr "Corbeille"
577
+
578
+ #: ../core/controllers/field_group.php:746
579
+ msgid "Super Admin"
580
+ msgstr "Super-admin"
581
+
582
+ #: ../core/controllers/field_group.php:761
583
+ #: ../core/controllers/field_group.php:782
584
+ #: ../core/controllers/field_group.php:789 ../core/fields/file.php:186
585
+ #: ../core/fields/image.php:170 ../core/fields/page_link.php:109
586
+ #: ../core/fields/post_object.php:274 ../core/fields/post_object.php:298
587
+ #: ../core/fields/relationship.php:595 ../core/fields/relationship.php:619
588
+ #: ../core/fields/user.php:229
589
  msgid "All"
590
  msgstr "Tous"
591
 
592
+ #: ../core/controllers/field_groups.php:147
593
  msgid "Title"
594
  msgstr "Titre"
595
 
596
  # @ acf
597
+ #: ../core/controllers/field_groups.php:216
598
+ #: ../core/controllers/field_groups.php:257
599
  msgid "Changelog"
600
  msgstr "Notes de version"
601
 
602
  # @ acf
603
+ #: ../core/controllers/field_groups.php:217
604
  msgid "See what's new in"
605
  msgstr "Voir les nouveautés de la"
606
 
607
+ #: ../core/controllers/field_groups.php:217
608
  msgid "version"
609
  msgstr "version"
610
 
611
  # @ acf
612
+ #: ../core/controllers/field_groups.php:219
613
  msgid "Resources"
614
  msgstr "Ressources"
615
 
616
+ #: ../core/controllers/field_groups.php:221
617
  msgid "Getting Started"
618
  msgstr "Guide de démarrage"
619
 
620
  # @ acf
621
+ #: ../core/controllers/field_groups.php:222
622
  msgid "Field Types"
623
  msgstr "Types de champ"
624
 
625
  # @ acf
626
+ #: ../core/controllers/field_groups.php:223
627
  msgid "Functions"
628
  msgstr "Fonctions"
629
 
630
  # @ acf
631
+ #: ../core/controllers/field_groups.php:224
632
  msgid "Actions"
633
  msgstr "Actions"
634
 
635
+ #: ../core/controllers/field_groups.php:225
636
+ #: ../core/fields/relationship.php:638
637
  msgid "Filters"
638
  msgstr "Filtres"
639
 
640
+ #: ../core/controllers/field_groups.php:226
641
  msgid "'How to' guides"
642
  msgstr "Guides"
643
 
644
+ #: ../core/controllers/field_groups.php:227
645
  msgid "Tutorials"
646
  msgstr "Tutoriels"
647
 
648
  # @ acf
649
+ #: ../core/controllers/field_groups.php:232
650
  msgid "Created by"
651
  msgstr "Créé par"
652
 
653
  # @ acf
654
+ #: ../core/controllers/field_groups.php:235
655
  msgid "Vote"
656
  msgstr "Votez"
657
 
658
  # @ acf
659
+ #: ../core/controllers/field_groups.php:236
660
  msgid "Follow"
661
+ msgstr "Twitter"
662
 
663
  # @ acf
664
+ #: ../core/controllers/field_groups.php:248
665
  msgid "Welcome to Advanced Custom Fields"
666
+ msgstr "Bienvenue sur Advanced Custom Fields"
667
 
668
+ #: ../core/controllers/field_groups.php:249
669
  msgid "Thank you for updating to the latest version!"
670
+ msgstr "Merci d'être passé sur la dernière version !"
671
 
672
+ #: ../core/controllers/field_groups.php:249
673
  msgid "is more polished and enjoyable than ever before. We hope you like it."
674
  msgstr "est plus aboutie que jamais. Nous espérons que vous l'apprécierez ! "
675
 
676
+ #: ../core/controllers/field_groups.php:256
677
  msgid "What’s New"
678
  msgstr "Nouveautés"
679
 
680
  # @ acf
681
+ #: ../core/controllers/field_groups.php:259
682
  msgid "Download Add-ons"
683
  msgstr "Télécharger des add-ons"
684
 
685
+ #: ../core/controllers/field_groups.php:313
686
  msgid "Activation codes have grown into plugins!"
687
  msgstr "Les codes d'activation sont devenus des extensions"
688
 
689
+ #: ../core/controllers/field_groups.php:314
690
  msgid ""
691
  "Add-ons are now activated by downloading and installing individual plugins. "
692
  "Although these plugins will not be hosted on the wordpress.org repository, "
697
  "répertoire d'extension de WordPress. Chaque Add-on continuera de recevoir "
698
  "les mises à jour comme d'habitude."
699
 
700
+ #: ../core/controllers/field_groups.php:320
701
  msgid "All previous Add-ons have been successfully installed"
702
  msgstr "Tous les Add-ons ont bien été installés."
703
 
704
+ #: ../core/controllers/field_groups.php:324
705
  msgid "This website uses premium Add-ons which need to be downloaded"
706
  msgstr ""
707
  "Ce site utilise des Add-ons premium qui nécessitent d'être téléchargés."
708
 
709
  # @ acf
710
+ #: ../core/controllers/field_groups.php:324
711
  msgid "Download your activated Add-ons"
712
  msgstr "Téléchargez les Add-ons activés"
713
 
714
+ #: ../core/controllers/field_groups.php:329
715
  msgid ""
716
  "This website does not use premium Add-ons and will not be affected by this "
717
  "change."
719
  "Ce site n'utilise pas d'Add-ons et ne sera donc pas affecté par cette mise à "
720
  "jour."
721
 
722
+ #: ../core/controllers/field_groups.php:339
723
  msgid "Easier Development"
724
  msgstr "Développement plus efficace"
725
 
726
  # @ acf
727
+ #: ../core/controllers/field_groups.php:341
728
  msgid "New Field Types"
729
  msgstr "Nouveaux types de champs"
730
 
731
+ #: ../core/controllers/field_groups.php:343
732
  msgid "Taxonomy Field"
733
  msgstr "Champ taxonomie"
734
 
735
  # @ acf
736
+ #: ../core/controllers/field_groups.php:344
737
  msgid "User Field"
738
  msgstr "Champ utilisateur"
739
 
740
  # @ acf
741
+ #: ../core/controllers/field_groups.php:345
742
  msgid "Email Field"
743
  msgstr "Champ email"
744
 
745
  # @ acf
746
+ #: ../core/controllers/field_groups.php:346
747
  msgid "Password Field"
748
  msgstr "Champ mot de passe"
749
 
750
  # @ acf
751
+ #: ../core/controllers/field_groups.php:348
752
  msgid "Custom Field Types"
753
  msgstr "Types de champs"
754
 
755
+ #: ../core/controllers/field_groups.php:349
756
  msgid ""
757
  "Creating your own field type has never been easier! Unfortunately, version 3 "
758
  "field types are not compatible with version 4."
760
  "Créer votre propre type de champ est très facile ! Malheureusement les "
761
  "champs créés avec la version 3 ne seront pas compatible avec la version 4."
762
 
763
+ #: ../core/controllers/field_groups.php:350
764
  msgid "Migrating your field types is easy, please"
765
  msgstr "Migrez vos types de champs en toute simplicité."
766
 
767
+ #: ../core/controllers/field_groups.php:350
768
  msgid "follow this tutorial"
769
  msgstr "Suivez ce tutoriel"
770
 
771
+ #: ../core/controllers/field_groups.php:350
772
  msgid "to learn more."
773
  msgstr "pour en savoir plus."
774
 
775
+ #: ../core/controllers/field_groups.php:352
776
  msgid "Actions &amp; Filters"
777
  msgstr "Actions &amp; Filtres"
778
 
779
+ #: ../core/controllers/field_groups.php:353
780
  msgid ""
781
  "All actions & filters have received a major facelift to make customizing ACF "
782
  "even easier! Please"
785
  "personnalisation d'ACF encore plus facile !"
786
 
787
  # @ acf
788
+ #: ../core/controllers/field_groups.php:353
789
  msgid "read this guide"
790
  msgstr "Lisez ce guide"
791
 
792
+ #: ../core/controllers/field_groups.php:353
793
  msgid "to find the updated naming convention."
794
  msgstr "afin de prendre connaissance de la nouvelle convention de nomage."
795
 
796
+ #: ../core/controllers/field_groups.php:355
797
  msgid "Preview draft is now working!"
798
  msgstr "Problème de l'aperçu qui ne fonctionnait pas"
799
 
800
+ #: ../core/controllers/field_groups.php:356
801
  msgid "This bug has been squashed along with many other little critters!"
802
  msgstr "Ce bug a finalement été corrigé ! "
803
 
804
+ #: ../core/controllers/field_groups.php:356
805
  msgid "See the full changelog"
806
  msgstr "Jetez un oeil aux notes de version."
807
 
808
+ #: ../core/controllers/field_groups.php:360
809
  msgid "Important"
810
  msgstr "Important"
811
 
812
+ #: ../core/controllers/field_groups.php:362
813
  msgid "Database Changes"
814
  msgstr "Structure de la base de données"
815
 
816
+ #: ../core/controllers/field_groups.php:363
817
  msgid ""
818
  "Absolutely <strong>no</strong> changes have been made to the database "
819
  "between versions 3 and 4. This means you can roll back to version 3 without "
823
  "la version 3 et la version 4. Cela veut dire que vous pouvez retourner à la "
824
  "version 3 sans aucun problème."
825
 
826
+ #: ../core/controllers/field_groups.php:365
827
  msgid "Potential Issues"
828
  msgstr "Problèmes connus"
829
 
830
+ #: ../core/controllers/field_groups.php:366
831
  msgid ""
832
  "Do to the sizable changes surounding Add-ons, field types and action/"
833
  "filters, your website may not operate correctly. It is important that you "
834
  "read the full"
835
  msgstr ""
836
+ "À cause des gros changements effectués autour des Add-ons, types de champs "
837
  "et actions/filtres, votre site ne pourrait plus fonctionner correctement "
838
  "après la migration. Il est important que vous consultiez"
839
 
840
+ #: ../core/controllers/field_groups.php:366
841
  msgid "Migrating from v3 to v4"
842
  msgstr "le guide de migration de la version 3 à la version 4"
843
 
844
+ #: ../core/controllers/field_groups.php:366
845
  msgid "guide to view the full list of changes."
846
  msgstr "afin de prendre connaissance de ces informations."
847
 
848
+ #: ../core/controllers/field_groups.php:369
849
  msgid "Really Important!"
850
  msgstr "Très important !"
851
 
852
+ #: ../core/controllers/field_groups.php:369
853
  msgid ""
854
  "If you updated the ACF plugin without prior knowledge of such changes, "
855
  "please roll back to the latest"
857
  "Si vous n'étiez pas au courant de ces changements lors de la mise à jour, "
858
  "nous vous conseillons de revenir à la"
859
 
860
+ #: ../core/controllers/field_groups.php:369
861
  msgid "version 3"
862
  msgstr "version 3"
863
 
864
+ #: ../core/controllers/field_groups.php:369
865
  msgid "of this plugin."
866
  msgstr "de cette extension"
867
 
868
+ #: ../core/controllers/field_groups.php:374
869
  msgid "Thank You"
870
  msgstr "Merci !"
871
 
872
+ #: ../core/controllers/field_groups.php:375
873
  msgid ""
874
  "A <strong>BIG</strong> thank you to everyone who has helped test the version "
875
  "4 beta and for all the support I have received."
878
  "développement de cette nouvelle version 4 et pour tout le support que vous "
879
  "m'avez apporté !"
880
 
881
+ #: ../core/controllers/field_groups.php:376
882
  msgid "Without you all, this release would not have been possible!"
883
  msgstr ""
884
  "Sans vous, cette version n'aurait pas pu voir le jour ! (Traduction FR par "
885
  "@maximebj)"
886
 
887
  # @ acf
888
+ #: ../core/controllers/field_groups.php:380
889
  msgid "Changelog for"
890
  msgstr "Notes de version pour"
891
 
892
+ #: ../core/controllers/field_groups.php:397
893
  msgid "Learn more"
894
  msgstr "En savoir plus"
895
 
896
+ #: ../core/controllers/field_groups.php:403
897
  msgid "Overview"
898
  msgstr "Aperçu"
899
 
900
+ #: ../core/controllers/field_groups.php:405
901
  msgid ""
902
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
903
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
908
  "les Add-ons fonctionnent en tant qu'extensions séparées qu'il faut "
909
  "télécharger, installer et mettre à jour individuellement. "
910
 
911
+ #: ../core/controllers/field_groups.php:407
912
  msgid ""
913
  "This page will assist you in downloading and installing each available Add-"
914
  "on."
916
  "Cette page vous permet de télécharger et installer les Add-ons disponibles."
917
 
918
  # @ acf
919
+ #: ../core/controllers/field_groups.php:409
920
  msgid "Available Add-ons"
921
  msgstr "Add-ons disponibles"
922
 
923
+ #: ../core/controllers/field_groups.php:411
924
  msgid "The following Add-ons have been detected as activated on this website."
925
+ msgstr "Les Add-ons suivants ont été détectés et activés pour ce site : "
926
 
927
  # @ acf
928
+ #: ../core/controllers/field_groups.php:424
929
  msgid "Name"
930
  msgstr "Nom"
931
 
932
  # @ acf
933
+ #: ../core/controllers/field_groups.php:425
934
  msgid "Activation Code"
935
+ msgstr "Code d'activation"
936
 
937
  # @ acf
938
+ #: ../core/controllers/field_groups.php:457
939
  msgid "Flexible Content"
940
  msgstr "Contenu flexible"
941
 
942
  # @ acf
943
+ #: ../core/controllers/field_groups.php:467
944
  msgid "Installation"
945
  msgstr "Installation"
946
 
947
+ #: ../core/controllers/field_groups.php:469
948
  msgid "For each Add-on available, please perform the following:"
949
  msgstr "Pour chaque Add-on disponible, effectuez les actions suivantes :"
950
 
951
+ #: ../core/controllers/field_groups.php:471
952
  msgid "Download the Add-on plugin (.zip file) to your desktop"
953
  msgstr "Téléchargez l'Add-on sur votre bureau (fichier .zip)"
954
 
955
+ #: ../core/controllers/field_groups.php:472
956
  msgid "Navigate to"
957
  msgstr "Naviguer vers"
958
 
959
+ #: ../core/controllers/field_groups.php:472
960
  msgid "Plugins > Add New > Upload"
961
  msgstr "Extensions > Ajouter > Importer"
962
 
963
+ #: ../core/controllers/field_groups.php:473
964
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
965
  msgstr ""
966
  "Utilisez l'uploader pour trouver, sélectionner et installer votre Add-on "
967
  "(fichier .zip)"
968
 
969
+ #: ../core/controllers/field_groups.php:474
970
  msgid ""
971
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
972
  "link"
974
  "Une fois que l'extension a été importée et installée, cliquez sur \"Activer "
975
  "l'extension\""
976
 
977
+ #: ../core/controllers/field_groups.php:475
978
  msgid "The Add-on is now installed and activated!"
979
  msgstr "L'Add-on a été installé et activé avec succès !"
980
 
981
+ #: ../core/controllers/field_groups.php:489
982
  msgid "Awesome. Let's get to work"
983
  msgstr "C'est parti !"
984
 
985
+ #: ../core/controllers/input.php:63
986
+ msgid "Expand Details"
987
+ msgstr "Afficher les détails"
988
+
989
+ #: ../core/controllers/input.php:64
990
+ msgid "Collapse Details"
991
+ msgstr "Masquer les détails"
992
+
993
  # @ acf
994
+ #: ../core/controllers/input.php:67
995
  msgid "Validation Failed. One or more fields below are required."
996
  msgstr "Validation échouée. Un ou plusieurs champs sont requis."
997
 
998
  # @ wp3i
999
+ #: ../core/controllers/upgrade.php:86
1000
  msgid "Upgrade"
1001
  msgstr "Mettre à jour"
1002
 
1003
+ #: ../core/controllers/upgrade.php:139
1004
  msgid "What's new"
1005
  msgstr "Nouveautés"
1006
 
1007
+ #: ../core/controllers/upgrade.php:150
1008
  msgid "credits"
1009
  msgstr "crédits"
1010
 
1011
+ #: ../core/controllers/upgrade.php:684
1012
  msgid "Modifying field group options 'show on page'"
1013
  msgstr "Modification du groupe de champs 'montrer sur la page'"
1014
 
1015
+ #: ../core/controllers/upgrade.php:738
1016
  msgid "Modifying field option 'taxonomy'"
1017
  msgstr "Modifier le champ 'taxonomie'"
1018
 
1019
+ #: ../core/controllers/upgrade.php:835
1020
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1021
  msgstr ""
1022
  "Déplacer les champs personnalisés des utilisateurs de wp_options à "
1023
  "wp_usermeta '"
1024
 
 
 
 
 
1025
  # @ acf
1026
+ #: ../core/fields/checkbox.php:19 ../core/fields/taxonomy.php:319
1027
  msgid "Checkbox"
1028
  msgstr "Case à cocher"
1029
 
1030
  # @ acf
1031
+ #: ../core/fields/checkbox.php:20 ../core/fields/radio.php:19
1032
+ #: ../core/fields/select.php:19 ../core/fields/true_false.php:20
1033
  msgid "Choice"
1034
  msgstr "Choix"
1035
 
1036
  # @ acf
1037
+ #: ../core/fields/checkbox.php:146 ../core/fields/radio.php:144
1038
+ #: ../core/fields/select.php:177
1039
  msgid "Choices"
1040
  msgstr "Choix"
1041
 
1042
+ #: ../core/fields/checkbox.php:147 ../core/fields/select.php:178
1043
  msgid "Enter each choice on a new line."
1044
  msgstr "Indiquez une valeur par ligne"
1045
 
1046
+ #: ../core/fields/checkbox.php:148 ../core/fields/select.php:179
1047
  msgid "For more control, you may specify both a value and label like this:"
1048
  msgstr ""
1049
  "Pour un contrôle plus poussé, vous pouvez spécifier la valeur et le libellé "
1050
  "de cette manière :"
1051
 
1052
+ #: ../core/fields/checkbox.php:149 ../core/fields/radio.php:150
1053
+ #: ../core/fields/select.php:180
1054
  msgid "red : Red"
1055
  msgstr "rouge : Rouge"
1056
 
1057
+ #: ../core/fields/checkbox.php:149 ../core/fields/radio.php:151
1058
+ #: ../core/fields/select.php:180
1059
  msgid "blue : Blue"
1060
  msgstr "bleu : Bleu"
1061
 
1062
  # @ acf
1063
+ #: ../core/fields/checkbox.php:166 ../core/fields/color_picker.php:89
1064
+ #: ../core/fields/email.php:106 ../core/fields/number.php:116
1065
+ #: ../core/fields/radio.php:193 ../core/fields/select.php:197
1066
+ #: ../core/fields/text.php:116 ../core/fields/textarea.php:96
1067
+ #: ../core/fields/true_false.php:94 ../core/fields/wysiwyg.php:187
1068
  msgid "Default Value"
1069
  msgstr "Valeur par défaut"
1070
 
1071
+ #: ../core/fields/checkbox.php:167 ../core/fields/select.php:198
1072
  msgid "Enter each default value on a new line"
1073
  msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne"
1074
 
1075
  # @ acf
1076
+ #: ../core/fields/checkbox.php:183 ../core/fields/message.php:20
1077
+ #: ../core/fields/radio.php:209 ../core/fields/tab.php:20
1078
  msgid "Layout"
1079
  msgstr "Disposition"
1080
 
1081
+ #: ../core/fields/checkbox.php:194 ../core/fields/radio.php:220
1082
  msgid "Vertical"
1083
  msgstr "Vertical"
1084
 
1085
+ #: ../core/fields/checkbox.php:195 ../core/fields/radio.php:221
1086
  msgid "Horizontal"
1087
  msgstr "Horizontal"
1088
 
1089
  # @ acf
1090
+ #: ../core/fields/color_picker.php:19
1091
  msgid "Color Picker"
1092
  msgstr "Sélecteur de couleur"
1093
 
1094
+ #: ../core/fields/color_picker.php:20 ../core/fields/google-map.php:19
1095
+ #: ../core/fields/date_picker/date_picker.php:20
1096
  msgid "jQuery"
1097
  msgstr "jQuery"
1098
 
1099
+ #: ../core/fields/dummy.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
  msgid "Dummy"
1101
  msgstr "Factice"
1102
 
1103
+ #: ../core/fields/email.php:19
1104
  msgid "Email"
1105
  msgstr "Mail"
1106
 
1107
+ #: ../core/fields/email.php:107 ../core/fields/number.php:117
1108
+ #: ../core/fields/text.php:117 ../core/fields/textarea.php:97
1109
+ #: ../core/fields/wysiwyg.php:188
1110
+ msgid "Appears when creating a new post"
1111
+ msgstr "Apparaît lors de la création d'un article"
1112
+
1113
+ #: ../core/fields/email.php:123 ../core/fields/number.php:133
1114
+ #: ../core/fields/password.php:105 ../core/fields/text.php:131
1115
+ #: ../core/fields/textarea.php:111
1116
+ msgid "Placeholder Text"
1117
+ msgstr "Texte de substitution"
1118
+
1119
+ #: ../core/fields/email.php:124 ../core/fields/number.php:134
1120
+ #: ../core/fields/password.php:106 ../core/fields/text.php:132
1121
+ #: ../core/fields/textarea.php:112
1122
+ msgid "Appears within the input"
1123
+ msgstr "Apparaît dans la saisie"
1124
+
1125
+ #: ../core/fields/email.php:138 ../core/fields/number.php:148
1126
+ #: ../core/fields/password.php:120 ../core/fields/text.php:146
1127
+ msgid "Prepend"
1128
+ msgstr "Préfixe"
1129
+
1130
+ #: ../core/fields/email.php:139 ../core/fields/number.php:149
1131
+ #: ../core/fields/password.php:121 ../core/fields/text.php:147
1132
+ msgid "Appears before the input"
1133
+ msgstr "Apparaît avant la saisie"
1134
+
1135
+ #: ../core/fields/email.php:153 ../core/fields/number.php:163
1136
+ #: ../core/fields/password.php:135 ../core/fields/text.php:161
1137
+ msgid "Append"
1138
+ msgstr "Suffixe"
1139
+
1140
+ #: ../core/fields/email.php:154 ../core/fields/number.php:164
1141
+ #: ../core/fields/password.php:136 ../core/fields/text.php:162
1142
+ msgid "Appears after the input"
1143
+ msgstr "Apparaît après la saisie"
1144
+
1145
+ # @ acf
1146
+ #: ../core/fields/file.php:19
1147
  msgid "File"
1148
  msgstr "Fichier"
1149
 
1150
+ #: ../core/fields/file.php:20 ../core/fields/image.php:20
1151
+ #: ../core/fields/wysiwyg.php:36
1152
  msgid "Content"
1153
  msgstr "Contenu"
1154
 
1155
  # @ acf
1156
+ #: ../core/fields/file.php:26
1157
  msgid "Select File"
1158
  msgstr "Sélectionner un fichier"
1159
 
1160
  # @ acf
1161
+ #: ../core/fields/file.php:27
1162
  msgid "Edit File"
1163
  msgstr "Modifier le fichier"
1164
 
1165
+ # @ acf
1166
+ #: ../core/fields/file.php:28
1167
+ msgid "Update File"
1168
+ msgstr "Mettre à jour le fichier"
1169
+
1170
+ #: ../core/fields/file.php:29 ../core/fields/image.php:30
1171
  msgid "uploaded to this post"
1172
  msgstr "Liés à l'article"
1173
 
1174
  # @ acf
1175
+ #: ../core/fields/file.php:123
1176
  msgid "No File Selected"
1177
  msgstr "Aucun fichier sélectionné"
1178
 
1179
  # @ acf
1180
+ #: ../core/fields/file.php:123
1181
  msgid "Add File"
1182
  msgstr "Ajouter un fichier"
1183
 
1184
  # @ acf
1185
+ #: ../core/fields/file.php:153 ../core/fields/image.php:118
1186
+ #: ../core/fields/taxonomy.php:367
1187
  msgid "Return Value"
1188
  msgstr "Valeur affichée dans le template"
1189
 
1190
  # @ acf
1191
+ #: ../core/fields/file.php:164
1192
  msgid "File Object"
1193
  msgstr "Objet 'fichier'"
1194
 
1195
  # @ acf
1196
+ #: ../core/fields/file.php:165
1197
  msgid "File URL"
1198
  msgstr "URL du fichier"
1199
 
1200
  # @ acf
1201
+ #: ../core/fields/file.php:166
1202
  msgid "File ID"
1203
  msgstr "ID du Fichier"
1204
 
1205
+ #: ../core/fields/file.php:175 ../core/fields/image.php:158
1206
  msgid "Library"
1207
  msgstr "Médias"
1208
 
1209
+ #: ../core/fields/file.php:187 ../core/fields/image.php:171
1210
  msgid "Uploaded to post"
1211
  msgstr "Liés à cet article"
1212
 
1213
+ #: ../core/fields/google-map.php:18
1214
+ msgid "Google Map"
1215
+ msgstr "Google Map"
 
 
 
 
1216
 
1217
  # @ acf
1218
+ #: ../core/fields/google-map.php:31
1219
+ msgid "Locating"
1220
+ msgstr "Recherche de position en cours"
1221
 
1222
+ #: ../core/fields/google-map.php:32
1223
+ msgid "Sorry, this browser does not support geolocation"
1224
+ msgstr "Désolé, ce navigateur ne supporte pas la géolocalisation"
 
1225
 
1226
  # @ acf
1227
+ #: ../core/fields/google-map.php:117
1228
+ msgid "Clear location"
1229
+ msgstr "Effacer la position"
1230
+
1231
+ #: ../core/fields/google-map.php:122
1232
+ msgid "Find current location"
1233
+ msgstr "Rechercher la position actuelle"
1234
+
1235
+ #: ../core/fields/google-map.php:123
1236
+ msgid "Search for address..."
1237
+ msgstr "Rechercher une adresse..."
1238
+
1239
+ #: ../core/fields/google-map.php:159
1240
+ msgid "Center"
1241
+ msgstr "Centrer"
1242
+
1243
+ #: ../core/fields/google-map.php:160
1244
+ msgid "Center the initial map"
1245
+ msgstr "Centrer la carte initiale"
1246
+
1247
+ #: ../core/fields/google-map.php:196
1248
+ msgid "Height"
1249
+ msgstr "Hauteur"
1250
+
1251
+ #: ../core/fields/google-map.php:197
1252
+ msgid "Customise the map height"
1253
+ msgstr "Spécifier la hauteur de la carte"
1254
 
1255
  # @ acf
1256
+ #: ../core/fields/image.php:19
1257
  msgid "Image"
1258
  msgstr "Image"
1259
 
1260
  # acf
1261
+ #: ../core/fields/image.php:27
1262
  msgid "Select Image"
1263
  msgstr "Sélectionner l‘image"
1264
 
1265
  # @ acf
1266
+ #: ../core/fields/image.php:28
1267
  msgid "Edit Image"
1268
  msgstr "Modifier l'image"
1269
 
1270
  # @ acf
1271
+ #: ../core/fields/image.php:29
1272
+ msgid "Update Image"
1273
+ msgstr "Mettre à jour"
1274
+
1275
+ # @ acf
1276
+ #: ../core/fields/image.php:83
1277
  msgid "Remove"
1278
  msgstr "Retirer"
1279
 
1280
  # @ acf
1281
+ #: ../core/fields/image.php:84 ../core/views/meta_box_fields.php:108
1282
  msgid "Edit"
1283
  msgstr "Modifier"
1284
 
1285
  # @ acf
1286
+ #: ../core/fields/image.php:90
1287
  msgid "No image selected"
1288
  msgstr "Aucune image sélectionnée"
1289
 
1290
  # @ acf
1291
+ #: ../core/fields/image.php:90
1292
  msgid "Add Image"
1293
  msgstr "Ajouter une image"
1294
 
1295
+ #: ../core/fields/image.php:119 ../core/fields/relationship.php:570
1296
+ msgid "Specify the returned value on front end"
1297
+ msgstr "Spécifie la valeur retournée dans la partie publique du site"
1298
+
1299
  # @ acf
1300
+ #: ../core/fields/image.php:129
1301
  msgid "Image Object"
1302
  msgstr "Objet 'image'"
1303
 
1304
  # @ acf
1305
+ #: ../core/fields/image.php:130
1306
  msgid "Image URL"
1307
  msgstr "URL de l‘image"
1308
 
1309
  # @ acf
1310
+ #: ../core/fields/image.php:131
1311
  msgid "Image ID"
1312
  msgstr "ID de l‘image"
1313
 
1314
  # @ acf
1315
+ #: ../core/fields/image.php:139
1316
  msgid "Preview Size"
1317
  msgstr "Taille de prévisualisation"
1318
 
1319
+ #: ../core/fields/image.php:140
1320
+ msgid "Shown when entering data"
1321
+ msgstr "Affiché lors de la soumission de données"
1322
 
1323
+ #: ../core/fields/image.php:159
1324
+ msgid "Limit the media library choice"
1325
+ msgstr "Limite le choix dans la bibliothèque de médias"
 
 
 
 
 
 
1326
 
1327
  # @ acf
1328
+ #: ../core/fields/message.php:19 ../core/fields/message.php:70
1329
+ #: ../core/fields/true_false.php:79
 
 
 
 
 
1330
  msgid "Message"
1331
  msgstr "Message"
1332
 
1333
+ #: ../core/fields/message.php:71
1334
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1335
  msgstr ""
1336
  "Cette zone de texte &amp; HTML permet d'afficher des indications de saisie "
1337
  "au rédacteur"
1338
 
1339
+ #: ../core/fields/message.php:72
1340
  msgid "Please note that all text will first be passed through the wp function "
1341
  msgstr "Nota : le texte sera traité par la fonction "
1342
 
1343
+ #: ../core/fields/number.php:19
1344
  msgid "Number"
1345
  msgstr "Nombre"
1346
 
1347
+ #: ../core/fields/number.php:178
1348
+ msgid "Minimum Value"
1349
+ msgstr "Valeur minimale"
 
 
 
 
 
 
 
 
1350
 
1351
+ # @ acf
1352
+ #: ../core/fields/number.php:194
1353
+ msgid "Maximum Value"
1354
+ msgstr "Valeur maximale"
 
 
 
1355
 
1356
+ #: ../core/fields/number.php:210
1357
+ msgid "Step Size"
1358
+ msgstr "Incrément"
1359
 
1360
  # @ acf
1361
+ #: ../core/fields/page_link.php:18
1362
  msgid "Page Link"
1363
  msgstr "Lien vers page ou article"
1364
 
1365
  # @ acf
1366
+ #: ../core/fields/page_link.php:19 ../core/fields/post_object.php:19
1367
+ #: ../core/fields/relationship.php:19 ../core/fields/taxonomy.php:19
1368
+ #: ../core/fields/user.php:19
1369
  msgid "Relational"
1370
  msgstr "Relationnel"
1371
 
1372
  # @ acf
1373
+ #: ../core/fields/page_link.php:103 ../core/fields/post_object.php:268
1374
+ #: ../core/fields/relationship.php:589 ../core/fields/relationship.php:668
1375
+ #: ../core/views/meta_box_location.php:75
1376
  msgid "Post Type"
1377
  msgstr "Type de publication"
1378
 
1379
  # @ acf
1380
+ #: ../core/fields/page_link.php:127 ../core/fields/post_object.php:317
1381
+ #: ../core/fields/select.php:214 ../core/fields/taxonomy.php:333
1382
+ #: ../core/fields/user.php:275
1383
  msgid "Allow Null?"
1384
  msgstr "Autoriser vide ?"
1385
 
1386
  # @ acf
1387
+ #: ../core/fields/page_link.php:148 ../core/fields/post_object.php:338
1388
+ #: ../core/fields/select.php:233
1389
  msgid "Select multiple values?"
1390
  msgstr "Plusieurs valeurs possibles ?"
1391
 
1392
+ #: ../core/fields/password.php:19
1393
  msgid "Password"
1394
  msgstr "Mot de passe"
1395
 
1396
  # @ acf
1397
+ #: ../core/fields/post_object.php:18
1398
  msgid "Post Object"
1399
  msgstr "Objet 'article'"
1400
 
1401
  # @ acf
1402
+ #: ../core/fields/post_object.php:292 ../core/fields/relationship.php:613
1403
  msgid "Filter from Taxonomy"
1404
  msgstr "Filtrer par taxonomie"
1405
 
1406
  # @ acf
1407
+ #: ../core/fields/radio.php:18
1408
  msgid "Radio Button"
1409
  msgstr "Bouton radio"
1410
 
1411
+ #: ../core/fields/radio.php:102 ../core/views/meta_box_location.php:91
1412
  msgid "Other"
1413
  msgstr "Sections de l'admin WordPress"
1414
 
1415
+ #: ../core/fields/radio.php:145
1416
  msgid "Enter your choices one per line"
1417
  msgstr "Indiquez une valeur par ligne"
1418
 
1419
  # @ acf
1420
+ #: ../core/fields/radio.php:147
1421
  msgid "Red"
1422
  msgstr "Rouge"
1423
 
1424
+ #: ../core/fields/radio.php:148
1425
  msgid "Blue"
1426
  msgstr "Bleu"
1427
 
1428
+ #: ../core/fields/radio.php:172
1429
  msgid "Add 'other' choice to allow for custom values"
1430
  msgstr "Ajouter 'autre' pour autoriser une valeur personnalisée"
1431
 
1432
+ #: ../core/fields/radio.php:184
1433
  msgid "Save 'other' values to the field's choices"
1434
  msgstr "Enregistrer 'autre' en tant que choix"
1435
 
1436
  # @ acf
1437
+ #: ../core/fields/relationship.php:18
1438
  msgid "Relationship"
1439
  msgstr "Relation"
1440
 
1441
+ #: ../core/fields/relationship.php:29
1442
  msgid "Maximum values reached ( {max} values )"
1443
  msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
1444
 
1445
+ #: ../core/fields/relationship.php:425
1446
  msgid "Search..."
1447
  msgstr "Rechercher"
1448
 
1449
+ #: ../core/fields/relationship.php:436
1450
  msgid "Filter by post type"
1451
  msgstr "Filtrer par type de publication"
1452
 
1453
+ # @ acf
1454
+ #: ../core/fields/relationship.php:569
1455
+ msgid "Return Format"
1456
+ msgstr "Format retourné"
1457
+
1458
+ # @ acf
1459
+ #: ../core/fields/relationship.php:580
1460
+ msgid "Post Objects"
1461
+ msgstr "Objets 'article'"
1462
+
1463
+ # @ acf
1464
+ #: ../core/fields/relationship.php:581
1465
+ msgid "Post IDs"
1466
+ msgstr "ID des articles"
1467
+
1468
+ #: ../core/fields/relationship.php:647
1469
  msgid "Search"
1470
  msgstr "Rechercher"
1471
 
1472
  # @ acf
1473
+ #: ../core/fields/relationship.php:648
1474
  msgid "Post Type Select"
1475
  msgstr "Sélecteur Type d‘article"
1476
 
1477
+ #: ../core/fields/relationship.php:656
1478
  msgid "Elements"
1479
+ msgstr "Éléments"
1480
 
1481
+ #: ../core/fields/relationship.php:657
1482
  msgid "Selected elements will be displayed in each result"
1483
  msgstr "Les éléments sélectionnés seront affichés dans chaque résultat"
1484
 
1485
  # @ acf
1486
+ #: ../core/fields/relationship.php:666 ../core/views/meta_box_options.php:105
1487
  msgid "Featured Image"
1488
  msgstr "Image à la Une"
1489
 
1490
  # @ acf
1491
+ #: ../core/fields/relationship.php:667
1492
  msgid "Post Title"
1493
  msgstr "Titre de l'article"
1494
 
1495
  # @ acf
1496
+ #: ../core/fields/relationship.php:679
1497
  msgid "Maximum posts"
1498
+ msgstr "Nombre d‘articles maximal"
1499
 
1500
  # @ acf
1501
+ #: ../core/fields/select.php:18 ../core/fields/select.php:109
1502
+ #: ../core/fields/taxonomy.php:324 ../core/fields/user.php:266
1503
  msgid "Select"
1504
  msgstr "Liste de choix"
1505
 
1506
+ #: ../core/fields/tab.php:19
1507
  msgid "Tab"
1508
  msgstr "Onglet"
1509
 
1510
+ #: ../core/fields/tab.php:68
1511
  msgid ""
1512
+ "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1513
+ "fields together under separate tab headings."
1514
  msgstr ""
1515
+ "Utilisez le type de champ \"Onglet\" pour mieux organiser votre écran de "
1516
+ "saisie en regroupant vos champs sous des onglets différents."
1517
 
1518
+ #: ../core/fields/tab.php:69
1519
+ msgid ""
1520
+ "All the fields following this \"tab field\" (or until another \"tab field\" "
1521
+ "is defined) will be grouped together."
1522
  msgstr ""
1523
+ "Tous les champs listés après cet onglet (ou jusqu'au prochain onglet) seront "
1524
+ "regroupés ensemble."
1525
+
1526
+ #: ../core/fields/tab.php:70
1527
+ msgid "Use multiple tabs to divide your fields into sections."
1528
+ msgstr "Utilisez des onglets multiples pour regrouper vos champs en sections."
1529
 
1530
  # @ acf
1531
+ #: ../core/fields/taxonomy.php:18 ../core/fields/taxonomy.php:278
1532
  msgid "Taxonomy"
1533
+ msgstr "Taxonomie"
1534
 
1535
+ #: ../core/fields/taxonomy.php:222 ../core/fields/taxonomy.php:231
 
1536
  msgid "None"
1537
  msgstr "Aucun"
1538
 
1539
  # @ acf
1540
+ #: ../core/fields/taxonomy.php:308 ../core/fields/user.php:251
1541
+ #: ../core/views/meta_box_fields.php:77 ../core/views/meta_box_fields.php:159
1542
  msgid "Field Type"
1543
  msgstr "Type de champ"
1544
 
1545
  # @ acf
1546
+ #: ../core/fields/taxonomy.php:318 ../core/fields/user.php:260
1547
  msgid "Multiple Values"
1548
  msgstr "Valeurs multiples"
1549
 
1550
  # @ acf
1551
+ #: ../core/fields/taxonomy.php:320 ../core/fields/user.php:262
1552
  msgid "Multi Select"
1553
  msgstr "Sélecteur multiple"
1554
 
1555
+ #: ../core/fields/taxonomy.php:322 ../core/fields/user.php:264
1556
  msgid "Single Value"
1557
  msgstr "Valeur seule"
1558
 
1559
  # @ acf
1560
+ #: ../core/fields/taxonomy.php:323
1561
  msgid "Radio Buttons"
1562
  msgstr "Boutons radio"
1563
 
1564
+ #: ../core/fields/taxonomy.php:352
1565
  msgid "Load & Save Terms to Post"
1566
  msgstr "Charger & enregistrer les termes"
1567
 
1568
+ #: ../core/fields/taxonomy.php:360
1569
  msgid ""
1570
  "Load value based on the post's terms and update the post's terms on save"
1571
  msgstr ""
1573
  "lors de l'enregistrement"
1574
 
1575
  # @ acf
1576
+ #: ../core/fields/taxonomy.php:377
1577
  msgid "Term Object"
1578
  msgstr "Objet Terme"
1579
 
1580
+ #: ../core/fields/taxonomy.php:378
1581
  msgid "Term ID"
1582
  msgstr "ID du terme"
1583
 
1584
  # @ acf
1585
+ #: ../core/fields/text.php:19
1586
  msgid "Text"
1587
  msgstr "Texte"
1588
 
1589
  # @ acf
1590
+ #: ../core/fields/text.php:176 ../core/fields/textarea.php:141
1591
  msgid "Formatting"
1592
  msgstr "Formatage "
1593
 
1594
+ #: ../core/fields/text.php:177 ../core/fields/textarea.php:142
1595
+ msgid "Effects value on front end"
1596
+ msgstr "Modifie le contenu sur la partie publique du site"
1597
+
1598
  # @ acf
1599
+ #: ../core/fields/text.php:186 ../core/fields/textarea.php:151
1600
+ msgid "No formatting"
1601
+ msgstr "Aucun formatage"
1602
+
1603
+ #: ../core/fields/text.php:187 ../core/fields/textarea.php:153
1604
+ msgid "Convert HTML into tags"
1605
+ msgstr "Convertir le HTML en tags"
1606
 
1607
+ #: ../core/fields/text.php:195 ../core/fields/textarea.php:126
1608
+ msgid "Character Limit"
1609
+ msgstr "Nombre de caractères"
1610
+
1611
+ #: ../core/fields/text.php:196 ../core/fields/textarea.php:127
1612
+ msgid "Leave blank for no limit"
1613
+ msgstr "Laisser vide pour aucune limite"
1614
 
1615
  # @ acf
1616
+ #: ../core/fields/textarea.php:19
1617
  msgid "Text Area"
1618
  msgstr "Zone de texte"
1619
 
1620
+ #: ../core/fields/textarea.php:152
1621
+ msgid "Convert new lines into &lt;br /&gt; tags"
1622
+ msgstr "Convertir les sauts de ligne en tags &lt;br /&gt;"
 
 
 
 
 
1623
 
1624
  # @ acf
1625
+ #: ../core/fields/true_false.php:19
1626
  msgid "True / False"
1627
  msgstr "Vrai / Faux"
1628
 
1629
  # @ acf
1630
+ #: ../core/fields/true_false.php:80
1631
  msgid "eg. Show extra content"
1632
  msgstr "ex : Montrer du contenu supplémentaire"
1633
 
1634
+ #: ../core/fields/user.php:18 ../core/views/meta_box_location.php:94
1635
  msgid "User"
1636
  msgstr "Utilisateur"
1637
 
1638
+ #: ../core/fields/user.php:224
1639
  msgid "Filter by role"
1640
  msgstr "Filtrer par rôle"
1641
 
1642
  # @ acf
1643
+ #: ../core/fields/wysiwyg.php:35
1644
  msgid "Wysiwyg Editor"
1645
+ msgstr "Éditeur WYSIWYG"
1646
 
1647
  # @ acf
1648
+ #: ../core/fields/wysiwyg.php:202
1649
  msgid "Toolbar"
1650
  msgstr "Barre d‘outils"
1651
 
1652
  # @ acf
1653
+ #: ../core/fields/wysiwyg.php:234
1654
  msgid "Show Media Upload Buttons?"
1655
  msgstr "Afficher les boutons d‘ajout de médias ?"
1656
 
1657
+ #: ../core/fields/_base.php:124 ../core/views/meta_box_location.php:74
1658
+ msgid "Basic"
1659
+ msgstr "Champs basiques"
1660
+
1661
  # @ acf
1662
+ #: ../core/fields/date_picker/date_picker.php:19
1663
+ msgid "Date Picker"
1664
+ msgstr "Date"
1665
+
1666
+ #: ../core/fields/date_picker/date_picker.php:55
1667
+ msgid "Done"
1668
+ msgstr "Effectué"
1669
+
1670
+ #: ../core/fields/date_picker/date_picker.php:56
1671
+ msgid "Today"
1672
+ msgstr "Aujourd'hui"
1673
+
1674
+ #: ../core/fields/date_picker/date_picker.php:59
1675
+ msgid "Show a different month"
1676
+ msgstr "Montrer un mois différent"
1677
 
1678
  # @ acf
1679
+ #: ../core/fields/date_picker/date_picker.php:126
1680
+ msgid "Save format"
1681
+ msgstr "Sauvegarder format"
1682
+
1683
+ #: ../core/fields/date_picker/date_picker.php:127
1684
+ msgid ""
1685
+ "This format will determin the value saved to the database and returned via "
1686
+ "the API"
1687
+ msgstr ""
1688
+ "Ce format déterminera la valeur enregistrée dans la base de données et "
1689
+ "retournée par l‘API"
1690
+
1691
+ #: ../core/fields/date_picker/date_picker.php:128
1692
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1693
+ msgstr ""
1694
+ "\"yymmdd\" est le format d‘enregistrement le plus polyvalent. En savoir plus "
1695
+ "sur"
1696
 
1697
  # @ acf
1698
+ #: ../core/fields/date_picker/date_picker.php:128
1699
+ #: ../core/fields/date_picker/date_picker.php:144
1700
+ msgid "jQuery date formats"
1701
+ msgstr "Format date jQuery"
1702
 
1703
+ # @ acf
1704
+ #: ../core/fields/date_picker/date_picker.php:142
1705
+ msgid "Display format"
1706
+ msgstr "Format d'affichage"
1707
 
1708
+ #: ../core/fields/date_picker/date_picker.php:143
1709
+ msgid "This format will be seen by the user when entering a value"
1710
+ msgstr "Ce format sera vu par l'utilisateur lors de la saisie d‘une valeur"
1711
 
1712
+ #: ../core/fields/date_picker/date_picker.php:144
1713
+ msgid ""
1714
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1715
+ "about"
1716
+ msgstr ""
1717
+ "\"dd/mm/yy\" ou \"mm/dd/yy\" sont les formats d‘affichage les plus "
1718
+ "utilisées. En savoir plus sur"
1719
 
1720
+ #: ../core/fields/date_picker/date_picker.php:158
1721
+ msgid "Week Starts On"
1722
+ msgstr "Les semaines commencent le"
1723
 
1724
+ # @ acf
1725
+ #: ../core/views/meta_box_fields.php:24
1726
+ msgid "New Field"
1727
+ msgstr "Nouveau champ"
1728
 
1729
  # @ acf
1730
+ #: ../core/views/meta_box_fields.php:58
1731
+ msgid "Field type does not exist"
1732
+ msgstr "Ce type de champ n‘existe pas !"
1733
+
1734
+ # @ acf
1735
+ #: ../core/views/meta_box_fields.php:74
1736
  msgid "Field Order"
1737
  msgstr "Position du champ"
1738
 
1739
  # @ acf
1740
+ #: ../core/views/meta_box_fields.php:75 ../core/views/meta_box_fields.php:127
1741
  msgid "Field Label"
1742
  msgstr "Titre du champ"
1743
 
1744
  # @ acf
1745
+ #: ../core/views/meta_box_fields.php:76 ../core/views/meta_box_fields.php:143
1746
  msgid "Field Name"
1747
  msgstr "Nom du champ"
1748
 
1749
  # @ acf
1750
+ #: ../core/views/meta_box_fields.php:78
1751
  msgid "Field Key"
1752
  msgstr "Clé du champ"
1753
 
1754
  # @ acf
1755
+ #: ../core/views/meta_box_fields.php:90
1756
  msgid ""
1757
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1758
  "first field."
1761
  "votre premier champ."
1762
 
1763
  # @ acf
1764
+ #: ../core/views/meta_box_fields.php:105 ../core/views/meta_box_fields.php:108
1765
  msgid "Edit this Field"
1766
  msgstr "Modifier ce champ"
1767
 
1768
  # @ acf
1769
+ #: ../core/views/meta_box_fields.php:109
1770
  msgid "Read documentation for this field"
1771
  msgstr "Lire la documentation de ce champ"
1772
 
1773
  # @ acf
1774
+ #: ../core/views/meta_box_fields.php:109
1775
  msgid "Docs"
1776
  msgstr "Documentation"
1777
 
1778
  # @ acf
1779
+ #: ../core/views/meta_box_fields.php:110
1780
  msgid "Duplicate this Field"
1781
  msgstr "Dupliquer ce champ"
1782
 
1783
+ #: ../core/views/meta_box_fields.php:110
1784
  msgid "Duplicate"
1785
  msgstr "Dupliquer"
1786
 
1787
  # @ acf
1788
+ #: ../core/views/meta_box_fields.php:111
1789
  msgid "Delete this Field"
1790
  msgstr "Supprimer ce champ"
1791
 
1792
  # @ acf
1793
+ #: ../core/views/meta_box_fields.php:111
1794
  msgid "Delete"
1795
  msgstr "Supprimer"
1796
 
1797
  # @ acf
1798
+ #: ../core/views/meta_box_fields.php:128
1799
  msgid "This is the name which will appear on the EDIT page"
1800
  msgstr "Ce nom apparaîtra sur la page d‘édition"
1801
 
1802
  # @ acf
1803
+ #: ../core/views/meta_box_fields.php:144
1804
  msgid "Single word, no spaces. Underscores and dashes allowed"
1805
  msgstr "Un seul mot sans espace.<br />Les '_' et '-' sont autorisés"
1806
 
1807
  # @ acf
1808
+ #: ../core/views/meta_box_fields.php:173
1809
  msgid "Field Instructions"
1810
  msgstr "Instructions pour ce champ"
1811
 
1812
  # @ acf
1813
+ #: ../core/views/meta_box_fields.php:174
1814
  msgid "Instructions for authors. Shown when submitting data"
1815
  msgstr ""
1816
  "Instructions pour les auteurs. Affichées lors de la soumission de données."
1817
 
1818
  # @ acf
1819
+ #: ../core/views/meta_box_fields.php:186
1820
  msgid "Required?"
1821
  msgstr "Requis ?"
1822
 
1823
+ #: ../core/views/meta_box_fields.php:209
1824
  msgid "Conditional Logic"
1825
  msgstr "Logique conditionnelle"
1826
 
1827
+ #: ../core/views/meta_box_fields.php:260
1828
+ #: ../core/views/meta_box_location.php:117
1829
  msgid "is equal to"
1830
  msgstr "est égal à"
1831
 
1832
+ #: ../core/views/meta_box_fields.php:261
1833
+ #: ../core/views/meta_box_location.php:118
1834
  msgid "is not equal to"
1835
  msgstr "n‘est pas égal à"
1836
 
1837
+ #: ../core/views/meta_box_fields.php:279
1838
  msgid "Show this field when"
1839
  msgstr "Montrer ce champ quand"
1840
 
1841
+ #: ../core/views/meta_box_fields.php:285
1842
  msgid "all"
1843
  msgstr "toutes les règles sont respectées"
1844
 
1845
+ #: ../core/views/meta_box_fields.php:286
1846
  msgid "any"
1847
  msgstr "au moins une règle est respectée"
1848
 
1849
  # Volontairement laissé vide car la tournure de la phrase en français n'a pas besoin de complément à la fin.
1850
+ #: ../core/views/meta_box_fields.php:289
1851
  msgid "these rules are met"
1852
+ msgstr "ces règles sont respectées"
1853
 
1854
  # @ acf
1855
+ #: ../core/views/meta_box_fields.php:303
1856
  msgid "Close Field"
1857
  msgstr "Fermer le champ"
1858
 
1859
+ #: ../core/views/meta_box_fields.php:316
1860
  msgid "Drag and drop to reorder"
1861
  msgstr "Faites glisser pour réorganiser"
1862
 
1863
  # @ acf
1864
+ #: ../core/views/meta_box_fields.php:317
1865
  msgid "+ Add Field"
1866
  msgstr "+ Ajouter"
1867
 
1868
  # @ acf
1869
+ #: ../core/views/meta_box_location.php:48
1870
  msgid "Rules"
1871
  msgstr "Règles"
1872
 
1873
  # @ acf
1874
+ #: ../core/views/meta_box_location.php:49
1875
  msgid ""
1876
  "Create a set of rules to determine which edit screens will use these "
1877
  "advanced custom fields"
1879
  "Créez une série de règles pour déterminer sur quelles pages d‘édition ce "
1880
  "groupe de champs sera utilisé"
1881
 
1882
+ #: ../core/views/meta_box_location.php:60
1883
  msgid "Show this field group if"
1884
  msgstr "Montrer ce champ quand"
1885
 
1886
+ #: ../core/views/meta_box_location.php:76
1887
  msgid "Logged in User Type"
1888
  msgstr "Rôle de l‘utilisateur"
1889
 
1890
  # @ acf
1891
+ #: ../core/views/meta_box_location.php:78
1892
+ #: ../core/views/meta_box_location.php:79
1893
  msgid "Page"
1894
  msgstr "Page"
1895
 
1896
  # @ acf
1897
+ #: ../core/views/meta_box_location.php:80
1898
  msgid "Page Type"
1899
  msgstr "Type de page"
1900
 
1901
  # @ acf
1902
+ #: ../core/views/meta_box_location.php:81
1903
  msgid "Page Parent"
1904
  msgstr "Page parente"
1905
 
1906
+ #: ../core/views/meta_box_location.php:82
1907
  msgid "Page Template"
1908
  msgstr "Modèle de page"
1909
 
1910
  # @ acf
1911
+ #: ../core/views/meta_box_location.php:84
1912
+ #: ../core/views/meta_box_location.php:85
1913
  msgid "Post"
1914
  msgstr "Article"
1915
 
1916
+ #: ../core/views/meta_box_location.php:86
1917
  msgid "Post Category"
1918
  msgstr "Catégorie"
1919
 
1920
  # @ acf
1921
+ #: ../core/views/meta_box_location.php:87
1922
  msgid "Post Format"
1923
  msgstr "Format d‘article"
1924
 
1925
  # @ acf
1926
+ #: ../core/views/meta_box_location.php:88
1927
+ msgid "Post Status"
1928
+ msgstr "État de l'article"
1929
 
1930
+ # @ acf
1931
+ #: ../core/views/meta_box_location.php:89
1932
+ msgid "Post Taxonomy"
1933
+ msgstr "Taxonomie"
1934
 
1935
+ #: ../core/views/meta_box_location.php:92
1936
+ msgid "Attachment"
1937
+ msgstr "Attachement"
1938
 
1939
+ #: ../core/views/meta_box_location.php:93
1940
+ msgid "Term"
1941
+ msgstr "Terme"
1942
 
1943
+ #: ../core/views/meta_box_location.php:146
1944
  msgid "and"
1945
  msgstr "et"
1946
 
1947
  # @ acf
1948
+ #: ../core/views/meta_box_location.php:161
1949
  msgid "Add rule group"
1950
  msgstr "Ajouter une règle"
1951
 
1952
  # @ acf
1953
+ #: ../core/views/meta_box_options.php:25
1954
  msgid "Order No."
1955
  msgstr "Numéro d‘ordre"
1956
 
1957
  # @ acf
1958
+ #: ../core/views/meta_box_options.php:26
1959
  msgid "Field groups are created in order <br />from lowest to highest"
1960
  msgstr ""
1961
  "Les groupes de champs sont créés dans <br/> ordre du plus bas vers le plus "
1962
  "haut"
1963
 
1964
  # @ acf
1965
+ #: ../core/views/meta_box_options.php:42
1966
  msgid "Position"
1967
  msgstr "Position"
1968
 
1969
+ #: ../core/views/meta_box_options.php:52
1970
+ msgid "High (after title)"
1971
+ msgstr "Haut (après le titre)"
1972
+
1973
+ #: ../core/views/meta_box_options.php:53
1974
+ msgid "Normal (after content)"
1975
+ msgstr "Normal (après le contenu)"
1976
 
1977
+ #: ../core/views/meta_box_options.php:54
1978
  msgid "Side"
1979
  msgstr "Sur le côté"
1980
 
1981
  # @ acf
1982
+ #: ../core/views/meta_box_options.php:64
1983
  msgid "Style"
1984
  msgstr "Style"
1985
 
1986
+ #: ../core/views/meta_box_options.php:74
1987
  msgid "No Metabox"
1988
  msgstr "Sans encadrement"
1989
 
1990
+ #: ../core/views/meta_box_options.php:75
1991
  msgid "Standard Metabox"
1992
  msgstr "Encadré d‘un bloc"
1993
 
1994
+ #: ../core/views/meta_box_options.php:84
1995
  msgid "Hide on screen"
1996
  msgstr "Ne pas afficher"
1997
 
1998
  # @ acf
1999
+ #: ../core/views/meta_box_options.php:85
2000
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
2001
  msgstr ""
2002
  "<b>Décochez</b> les champs que vous souhaitez <b>masquer</b> sur la page "
2003
  "d‘édition"
2004
 
2005
  # @ acf
2006
+ #: ../core/views/meta_box_options.php:86
2007
  msgid ""
2008
  "If multiple field groups appear on an edit screen, the first field group's "
2009
  "options will be used. (the one with the lowest order number)"
2011
  "Si plusieurs groupes ACF sont présents sur une page d‘édition, le groupe "
2012
  "portant le numéro le plus bas sera affiché en premier."
2013
 
2014
+ #: ../core/views/meta_box_options.php:96
2015
  msgid "Content Editor"
2016
  msgstr "L'éditeur visuel (WYSIWYG)"
2017
 
2018
+ #: ../core/views/meta_box_options.php:97
2019
  msgid "Excerpt"
2020
  msgstr "Le résumé (excerpt)"
2021
 
2022
+ #: ../core/views/meta_box_options.php:99
2023
  msgid "Discussion"
2024
  msgstr "Discussion"
2025
 
2026
+ #: ../core/views/meta_box_options.php:100
2027
  msgid "Comments"
2028
  msgstr "Les commentaires"
2029
 
2030
+ #: ../core/views/meta_box_options.php:101
2031
  msgid "Revisions"
2032
  msgstr "Révisions"
2033
 
2034
+ #: ../core/views/meta_box_options.php:102
2035
  msgid "Slug"
2036
  msgstr "Identifiant (slug)"
2037
 
2038
+ #: ../core/views/meta_box_options.php:103
2039
  msgid "Author"
2040
  msgstr "Auteur"
2041
 
2042
  # @ acf
2043
+ #: ../core/views/meta_box_options.php:104
2044
  msgid "Format"
2045
  msgstr "Format"
2046
 
2047
+ #: ../core/views/meta_box_options.php:106
2048
  msgid "Categories"
2049
  msgstr "Catégories"
2050
 
2051
+ #: ../core/views/meta_box_options.php:107
2052
  msgid "Tags"
2053
  msgstr "Mots-clés"
2054
 
2055
+ #: ../core/views/meta_box_options.php:108
2056
  msgid "Send Trackbacks"
2057
  msgstr "Envoyer des Trackbacks"
2058
+
2059
+ #, fuzzy
2060
+ #~ msgid ""
2061
+ #~ "/**\n"
2062
+ #~ " * Install Add-ons\n"
2063
+ #~ " * \n"
2064
+ #~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
2065
+ #~ " * Please do not attempt to include a file which does not exist. This "
2066
+ #~ "will produce an error.\n"
2067
+ #~ " * \n"
2068
+ #~ " * The following code assumes you have a folder 'add-ons' inside your "
2069
+ #~ "theme.\n"
2070
+ #~ " *\n"
2071
+ #~ " * IMPORTANT\n"
2072
+ #~ " * Add-ons may be included in a premium theme/plugin as outlined in the "
2073
+ #~ "terms and conditions.\n"
2074
+ #~ " * For more information, please read:\n"
2075
+ #~ " * - http://www.advancedcustomfields.com/terms-conditions/\n"
2076
+ #~ " * - http://www.advancedcustomfields.com/resources/getting-started/"
2077
+ #~ "including-lite-mode-in-a-plugin-theme/\n"
2078
+ #~ " */"
2079
+ #~ msgstr ""
2080
+ #~ "/**\n"
2081
+ #~ " * Installation des Add-ons\n"
2082
+ #~ " * \n"
2083
+ #~ " * Le code suivant incluera les 4 Add-ons premium dans votre thème.\n"
2084
+ #~ " * N'essayez pas d'inclure un fichier qui n'existe pas sous peine de "
2085
+ #~ "rencontrer des erreurs.\n"
2086
+ #~ " * \n"
2087
+ #~ " * Tous les champs doivent être inclus durant l'action 'acf/"
2088
+ #~ "register_fields'.\n"
2089
+ #~ " * Les autres Add-ons (comme la page Options) peuvent être inclus en "
2090
+ #~ "dehors de cette action.\n"
2091
+ #~ " * \n"
2092
+ #~ " * Vous devez placer un dossier add-ons dans votre thème afin que le "
2093
+ #~ "code suivant fonctionne correctement.\n"
2094
+ #~ " *\n"
2095
+ #~ " * IMPORTANT\n"
2096
+ #~ " * Les Add-ons peuvent être inclus dans un thème premium à condition de "
2097
+ #~ "respecter les termes du contrat de licence ACF.\n"
2098
+ #~ " * Cependant, ils ne doivent pas être inclus dans une autre extension "
2099
+ #~ "gratuite ou premium. \n"
2100
+ #~ " * Pour plus d'informations veuillez consulter cette page http://www."
2101
+ #~ "advancedcustomfields.com/terms-conditions/\n"
2102
+ #~ " */"
lang/acf-pt_BR.mo CHANGED
Binary file
lang/acf-pt_BR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Advanced Custom Fields v4.1.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
6
- "PO-Revision-Date: 2013-06-10 19:00-0600\n"
7
  "Last-Translator: Augusto Simão <augusto@ams.art.br>\n"
8
  "Language-Team: Augusto Simão <augusto@ams.art.br>\n"
9
  "MIME-Version: 1.0\n"
@@ -11,2082 +11,2215 @@ msgstr ""
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
  "X-Generator: Poedit 1.5.5\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Textdomain-Support: yes\n"
18
- "Language: pt_BR\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
- # @ acf
22
- # @ default
23
- #: acf.php:386 core/views/meta_box_options.php:94
 
24
  msgid "Custom Fields"
25
  msgstr "Campos Personalizados"
26
 
27
- # @ acf
28
- #: core/controllers/upgrade.php:72
29
  msgid "Upgrade"
30
  msgstr "Atualizar"
31
 
32
- # @ acf
33
- #: core/controllers/export.php:370 core/controllers/field_group.php:365
34
- #: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
 
35
  msgid "Fields"
36
  msgstr "Campos"
37
 
38
- # @ acf
39
- #: core/controllers/field_group.php:366
40
  msgid "Location"
41
  msgstr "Local"
42
 
43
- # @ acf
44
- #: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
45
  msgid "Options"
46
  msgstr "Opções"
47
 
48
- # @ acf
49
- #: core/controllers/input.php:480
50
  msgid "Validation Failed. One or more fields below are required."
51
  msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios."
52
 
53
- # @ acf
54
- #: core/controllers/field_group.php:620
55
  msgid "Default Template"
56
  msgstr "Modelo Padrão"
57
 
58
- # @ acf
59
  #: core/actions/export.php:30
 
60
  msgid "No ACF groups selected"
61
  msgstr "Nenhum grupo ACF selecionado"
62
 
63
- # @ acf
64
- #: acf.php:265 core/controllers/field_groups.php:214
 
65
  msgid "Advanced Custom Fields"
66
  msgstr "Advanced Custom Fields"
67
 
68
- # @ acf
69
- #: acf.php:264
70
  msgid "Field&nbsp;Groups"
71
  msgstr "Grupos&nbsp;de&nbsp;Campos"
72
 
73
- # @ acf
74
- #: acf.php:266
75
  msgid "Add New"
76
  msgstr "Adicionar Novo"
77
 
78
- # @ acf
79
- #: acf.php:267
80
  msgid "Add New Field Group"
81
  msgstr "Adicionar Novo Grupo de Campos"
82
 
83
- # @ acf
84
- #: acf.php:268
85
  msgid "Edit Field Group"
86
  msgstr "Editar Grupo de Campos"
87
 
88
- # @ acf
89
- #: acf.php:269
90
  msgid "New Field Group"
91
  msgstr "Novo Grupo de Campos"
92
 
93
- # @ acf
94
- #: acf.php:270
95
  msgid "View Field Group"
96
  msgstr "Ver Grupo de Campos"
97
 
98
- # @ acf
99
- #: acf.php:271
100
  msgid "Search Field Groups"
101
  msgstr "Pesquisar Grupos de Campos"
102
 
103
- # @ acf
104
- #: acf.php:272
105
  msgid "No Field Groups found"
106
  msgstr "Nenhum Grupo de Campos encontrado"
107
 
108
- # @ acf
109
- #: acf.php:273
110
  msgid "No Field Groups found in Trash"
111
  msgstr "Nenhum Grupo de Campos encontrado na Lixeira"
112
 
113
- # @ acf
114
- #: acf.php:404 acf.php:407
 
115
  msgid "Field group updated."
116
  msgstr "Grupo de campos atualizado."
117
 
118
- # @ acf
119
- #: acf.php:405
120
  msgid "Custom field updated."
121
  msgstr "Campo personalizado atualizado."
122
 
123
- # @ acf
124
- #: acf.php:406
125
  msgid "Custom field deleted."
126
  msgstr "Campo personalizado excluído."
127
 
128
- # @ acf
129
  #. translators: %s: date and time of the revision
130
- #: acf.php:409
131
  #, php-format
 
132
  msgid "Field group restored to revision from %s"
133
  msgstr "Grupo de campos restaurado para revisão de %s"
134
 
135
- # @ acf
136
- #: acf.php:410
137
  msgid "Field group published."
138
  msgstr "Grupo de campos publicado."
139
 
140
- # @ acf
141
- #: acf.php:411
142
  msgid "Field group saved."
143
  msgstr "Grupo de campos salvo."
144
 
145
- # @ acf
146
- #: acf.php:412
147
  msgid "Field group submitted."
148
  msgstr "Grupo de campos enviado."
149
 
150
- # @ acf
151
- #: acf.php:413
152
  msgid "Field group scheduled for."
153
  msgstr "Grupo de campos agendado."
154
 
155
- # @ acf
156
- #: acf.php:414
157
  msgid "Field group draft updated."
158
  msgstr "Rascunho de grupo de campos atualizado."
159
 
160
- # @ default
161
  #: core/controllers/field_groups.php:147
 
162
  msgid "Title"
163
  msgstr "Título"
164
 
165
- # @ acf
166
- #: core/views/meta_box_fields.php:23
167
  msgid "New Field"
168
  msgstr "Novo Campo"
169
 
170
- # @ acf
171
- #: core/views/meta_box_fields.php:64
172
  msgid "Move to trash. Are you sure?"
173
  msgstr "Mover para a lixeira. Você tem certeza?"
174
 
175
- # @ acf
176
- #: core/views/meta_box_fields.php:79
177
  msgid "Field Order"
178
  msgstr "Ordem do Campo"
179
 
180
- # @ acf
181
- #: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
 
182
  msgid "Field Label"
183
  msgstr "Rótulo do Campo"
184
 
185
- # @ acf
186
- #: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
 
187
  msgid "Field Name"
188
  msgstr "Nome do Campo"
189
 
190
- # @ acf
191
- #: core/fields/taxonomy.php:317 core/fields/user.php:260
192
- #: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
 
 
193
  msgid "Field Type"
194
  msgstr "Tipo de Campo"
195
 
196
- # @ acf
197
- #: core/views/meta_box_fields.php:95
198
- msgid ""
199
- "No fields. Click the <strong>+ Add Field</strong> button to create your "
200
- "first field."
201
- msgstr ""
202
- "Nenhum campo. Clique no botão <strong>+ Adicionar Campo</strong> para criar "
203
- "seu primeiro campo."
204
 
205
- # @ acf
206
- #: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
 
207
  msgid "Edit this Field"
208
  msgstr "Editar este Campo"
209
 
210
- # @ acf
211
- #: core/fields/file.php:76 core/fields/image.php:76
212
- #: core/views/meta_box_fields.php:113
213
  msgid "Edit"
214
  msgstr "Editar"
215
 
216
- # @ acf
217
- #: core/views/meta_box_fields.php:114
218
  msgid "Read documentation for this field"
219
  msgstr "Ler a documentação para esse campo"
220
 
221
- # @ acf
222
- #: core/views/meta_box_fields.php:114
223
  msgid "Docs"
224
  msgstr "Docs"
225
 
226
- # @ acf
227
- #: core/views/meta_box_fields.php:115
228
  msgid "Duplicate this Field"
229
  msgstr "Duplicar este Campo"
230
 
231
- # @ acf
232
- #: core/views/meta_box_fields.php:115
233
  msgid "Duplicate"
234
  msgstr "Duplicar"
235
 
236
- # @ acf
237
- #: core/views/meta_box_fields.php:116
238
  msgid "Delete this Field"
239
  msgstr "Excluir este Campo"
240
 
241
- # @ acf
242
- #: core/views/meta_box_fields.php:116
243
  msgid "Delete"
244
  msgstr "Excluir"
245
 
246
- # @ acf
247
- #: core/views/meta_box_fields.php:133
248
  msgid "This is the name which will appear on the EDIT page"
249
  msgstr "Este é o nome que irá aparecer na página de EDIÇÃO"
250
 
251
- # @ acf
252
- #: core/views/meta_box_fields.php:149
253
  msgid "Single word, no spaces. Underscores and dashes allowed"
254
- msgstr ""
255
- "Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos"
256
 
257
- # @ acf
258
- #: core/views/meta_box_fields.php:176
259
  msgid "Field Instructions"
260
  msgstr "Instruções do Campo"
261
 
262
- # @ acf
263
- #: core/views/meta_box_fields.php:177
264
  msgid "Instructions for authors. Shown when submitting data"
265
  msgstr "Instrução para os autores. Exibido quando se está enviando dados"
266
 
267
- # @ acf
268
- #: core/views/meta_box_fields.php:189
269
  msgid "Required?"
270
  msgstr "Obrigatório?"
271
 
272
- # @ acf
273
- #: core/views/meta_box_fields.php:306
274
  msgid "Close Field"
275
  msgstr "Fechar Campo"
276
 
277
- # @ acf
278
- #: core/views/meta_box_fields.php:319
279
  msgid "Drag and drop to reorder"
280
  msgstr "Clique e arraste para reorganizar"
281
 
282
- # @ acf
283
- #: core/views/meta_box_fields.php:320
284
  msgid "+ Add Field"
285
  msgstr "+ Adicionar Campo"
286
 
287
- # @ acf
288
- #: core/views/meta_box_location.php:45
289
  msgid "Rules"
290
  msgstr "Regras"
291
 
292
- # @ acf
293
- #: core/views/meta_box_location.php:46
294
- msgid ""
295
- "Create a set of rules to determine which edit screens will use these "
296
- "advanced custom fields"
297
- msgstr ""
298
- "Criar um conjunto de regras para determinar quais telas de edição irão "
299
- "utilizar esses campos avançados."
300
 
301
- # @ acf
302
- #: core/fields/_base.php:120 core/views/meta_box_location.php:71
 
303
  msgid "Basic"
304
  msgstr "Básico"
305
 
306
- # @ acf
307
- #: core/fields/page_link.php:78 core/fields/post_object.php:263
308
- #: core/fields/relationship.php:533 core/fields/relationship.php:612
309
- #: core/views/meta_box_location.php:72
 
 
310
  msgid "Post Type"
311
  msgstr "Tipo de Post"
312
 
313
- # @ acf
314
- #: core/views/meta_box_location.php:73
315
  msgid "Logged in User Type"
316
  msgstr "Tipo de Usuário Logado"
317
 
318
- # @ acf
319
- #: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
 
320
  msgid "Page"
321
  msgstr "Página"
322
 
323
- # @ acf
324
- #: core/views/meta_box_location.php:77
325
  msgid "Page Type"
326
  msgstr "Tipo de Página"
327
 
328
- # @ acf
329
- #: core/views/meta_box_location.php:78
330
  msgid "Page Parent"
331
  msgstr "Página Mãe"
332
 
333
- # @ acf
334
- #: core/views/meta_box_location.php:79
335
  msgid "Page Template"
336
  msgstr "Modelo de Página"
337
 
338
- # @ acf
339
- #: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
 
340
  msgid "Post"
341
  msgstr "Post"
342
 
343
- # @ acf
344
- #: core/views/meta_box_location.php:83
345
  msgid "Post Category"
346
  msgstr "Categoria de Post"
347
 
348
- # @ acf
349
- #: core/views/meta_box_location.php:84
350
  msgid "Post Format"
351
  msgstr "Formato de Post"
352
 
353
- # @ acf
354
- #: core/views/meta_box_location.php:85
355
  msgid "Post Taxonomy"
356
  msgstr "Taxonomia de Post"
357
 
358
- # @ acf
359
- #: core/views/meta_box_location.php:87
 
360
  msgid "Other"
361
  msgstr "Outro"
362
 
363
- # @ acf
364
- #: core/views/meta_box_location.php:89
365
- msgid "User (Add / Edit)"
366
- msgstr "Usuário (Pág. de Adição / Edição)"
367
-
368
- # @ acf
369
- #: core/controllers/addons.php:144 core/controllers/export.php:380
370
  #: core/controllers/field_groups.php:448
 
371
  msgid "Options Page"
372
  msgstr "Página de Opções"
373
 
374
- # @ acf
375
- #: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
 
376
  msgid "is equal to"
377
  msgstr "é igual a"
378
 
379
- # @ acf
380
- #: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
 
381
  msgid "is not equal to"
382
  msgstr "não é igual a"
383
 
384
- # @ acf
385
- #: core/views/meta_box_fields.php:288
386
  msgid "all"
387
  msgstr "todas"
388
 
389
- # @ acf
390
- #: core/views/meta_box_fields.php:289
391
  msgid "any"
392
  msgstr "quaisquer"
393
 
394
- # @ acf
395
- #: core/views/meta_box_location.php:168
396
- msgid "Unlock options add-on with an activation code"
397
- msgstr "Desbloqueie o complemento de opções com um código de ativação"
398
-
399
- # @ acf
400
- #: core/views/meta_box_options.php:23
401
  msgid "Order No."
402
  msgstr "No. de Ordem"
403
 
404
- # @ acf
405
- #: core/views/meta_box_options.php:40
406
  msgid "Position"
407
  msgstr "Posição"
408
 
409
- # @ acf
410
- #: core/views/meta_box_options.php:50
411
- msgid "Normal"
412
- msgstr "Normal"
413
-
414
- # @ acf
415
- #: core/views/meta_box_options.php:51
416
  msgid "Side"
417
  msgstr "Lateral"
418
 
419
- # @ acf
420
- #: core/views/meta_box_options.php:60
421
  msgid "Style"
422
  msgstr "Estilo"
423
 
424
- # @ acf
425
- #: core/views/meta_box_options.php:71
426
  msgid "Standard Metabox"
427
  msgstr "Metabox Padrão"
428
 
429
- # @ acf
430
- #: core/views/meta_box_options.php:70
431
  msgid "No Metabox"
432
  msgstr "Sem Metabox"
433
 
434
- # @ acf
435
- #: core/views/meta_box_options.php:92
436
  msgid "Content Editor"
437
  msgstr "Editor de Conteúdo"
438
 
439
- # @ default
440
- #: core/views/meta_box_options.php:95
441
  msgid "Discussion"
442
  msgstr "Discussão"
443
 
444
- # @ default
445
- #: core/views/meta_box_options.php:96
446
  msgid "Comments"
447
  msgstr "Comentários"
448
 
449
- # @ default
450
- #: core/views/meta_box_options.php:98
451
  msgid "Slug"
452
  msgstr "Slug"
453
 
454
- # @ default
455
- #: core/views/meta_box_options.php:99
456
  msgid "Author"
457
  msgstr "Autor"
458
 
459
- # @ acf
460
- #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
 
461
  msgid "Changelog"
462
  msgstr "Changelog"
463
 
464
- # @ acf
465
  #: core/controllers/field_groups.php:217
 
466
  msgid "See what's new in"
467
  msgstr "Veja o que há de novo na"
468
 
469
- # @ acf
470
  #: core/controllers/field_groups.php:219
 
471
  msgid "Resources"
472
  msgstr "Recursos (em inglês)"
473
 
474
- # @ acf
475
  #: core/controllers/field_groups.php:232
 
476
  msgid "Created by"
477
  msgstr "Criado por"
478
 
479
- # @ acf
480
  #: core/controllers/field_groups.php:235
 
481
  msgid "Vote"
482
  msgstr "Votar"
483
 
484
- # @ acf
485
  #: core/controllers/field_groups.php:236
 
486
  msgid "Follow"
487
  msgstr "Seguir"
488
 
489
- # @ acf
490
  #: core/controllers/field_groups.php:424
 
491
  msgid "Activation Code"
492
  msgstr "Código de Ativação"
493
 
494
- # @ acf
495
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
 
496
  msgid "Repeater Field"
497
  msgstr "Campo Repetidor"
498
 
499
- # @ acf
500
  #: core/controllers/addons.php:151
 
501
  msgid "Flexible Content Field"
502
  msgstr "Campo de Conteúdo Flexível"
503
 
504
- # @ acf
505
  #: core/controllers/export.php:253
506
- msgid ""
507
- "ACF will create a .xml export file which is compatible with the native WP "
508
- "import plugin."
509
- msgstr ""
510
- "O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin "
511
- "de importação nativo do WP."
512
 
513
- # @ acf
514
  #: core/controllers/export.php:259
 
515
  msgid "Install WP import plugin if prompted"
516
  msgstr "Instale o plugin de importação do WP se necessário"
517
 
518
- # @ acf
519
  #: core/controllers/export.php:260
 
520
  msgid "Upload and import your exported .xml file"
521
  msgstr "Faça o upload e importe o arquivo .xml exportado"
522
 
523
- # @ acf
524
  #: core/controllers/export.php:261
 
525
  msgid "Select your user and ignore Import Attachments"
526
  msgstr "Selecione o seu usuário e ignore a Importação de Anexos"
527
 
528
- # @ acf
529
  #: core/controllers/export.php:262
 
530
  msgid "That's it! Happy WordPressing"
531
  msgstr "É isso! Feliz WordPressing"
532
 
533
- # @ acf
534
  #: core/controllers/export.php:295
 
535
  msgid "Export Field Groups to PHP"
536
  msgstr "Exportar Grupos de Campos para PHP"
537
 
538
- # @ acf
539
- #: core/controllers/export.php:273 core/controllers/export.php:302
 
540
  msgid "Copy the PHP code generated"
541
  msgstr "Copie o código PHP gerado"
542
 
543
- # @ acf
544
- #: core/controllers/export.php:274 core/controllers/export.php:303
 
545
  msgid "Paste into your functions.php file"
546
  msgstr "Cole no seu arquivo functions.php"
547
 
548
- # @ acf
549
- #: core/controllers/export.php:275 core/controllers/export.php:304
 
550
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
551
- msgstr ""
552
- "Para ativar qualquer Complemento, edite e utilize o código que estão nas "
553
- "linhas iniciais."
554
 
555
- # @ acf
556
- #: core/controllers/export.php:435
557
  msgid "No field groups were selected"
558
  msgstr "Nenhum grupo de campos foi selecionado"
559
 
560
- # @ acf
561
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
 
562
  msgid "Checkbox"
563
  msgstr "Checkbox"
564
 
565
- # @ acf
566
- #: core/fields/checkbox.php:147 core/fields/radio.php:121
567
- #: core/fields/select.php:183
 
568
  msgid "Choices"
569
  msgstr "Escolhas"
570
 
571
- # @ acf
572
- #: core/fields/radio.php:122
573
  msgid "Enter your choices one per line"
574
  msgstr "Digite cada uma de suas opções em uma nova linha."
575
 
576
- # @ acf
577
- #: core/fields/radio.php:124
578
  msgid "Red"
579
  msgstr "Vermelho"
580
 
581
- # @ acf
582
- #: core/fields/radio.php:125
583
  msgid "Blue"
584
  msgstr "Azul"
585
 
586
- # @ acf
587
- #: core/fields/checkbox.php:150 core/fields/radio.php:127
588
- #: core/fields/select.php:186
 
589
  msgid "red : Red"
590
  msgstr "vermelho : Vermelho"
591
 
592
- # @ acf
593
- #: core/fields/checkbox.php:150 core/fields/radio.php:128
594
- #: core/fields/select.php:186
 
595
  msgid "blue : Blue"
596
  msgstr "azul : Azul"
597
 
598
- # @ acf
599
  #: core/fields/color_picker.php:19
 
600
  msgid "Color Picker"
601
  msgstr "Seletor de Cor"
602
 
603
- # @ acf
604
- #: core/fields/date_picker/date_picker.php:19
605
  msgid "Date Picker"
606
  msgstr "Seletor de Datas"
607
 
608
- # @ acf
609
  #: core/fields/file.php:19
 
610
  msgid "File"
611
  msgstr "Arquivo"
612
 
613
- # @ acf
614
- #: core/fields/file.php:84
615
  msgid "No File Selected"
616
  msgstr "Nenhum Arquivo Selecionado"
617
 
618
- # @ acf
619
- #: core/fields/file.php:84
620
  msgid "Add File"
621
  msgstr "Adicionar Arquivo"
622
 
623
- # @ acf
624
- #: core/fields/file.php:119 core/fields/image.php:116
625
- #: core/fields/taxonomy.php:376
 
626
  msgid "Return Value"
627
  msgstr "Valor Retornado"
628
 
629
- # @ acf
630
- #: core/fields/file.php:493
631
- msgid "No files selected"
632
- msgstr "Nenhum arquivo selecionado"
633
-
634
- # @ acf
635
- #: core/fields/file.php:634
636
- msgid "Add Selected Files"
637
- msgstr "Adicionar Arquivos Selecionados"
638
-
639
- # @ acf
640
- #: core/fields/file.php:667
641
  msgid "Select File"
642
  msgstr "Selecionar Arquivo"
643
 
644
- # @ acf
645
  #: core/controllers/field_groups.php:456
 
646
  msgid "Flexible Content"
647
  msgstr "Conteúdo Flexível"
648
 
649
- # @ acf
650
- #: core/fields/message.php:20 core/fields/radio.php:162 core/fields/tab.php:20
 
 
 
651
  msgid "Layout"
652
  msgstr "Layout"
653
 
654
- # @ acf
655
  #: core/controllers/field_groups.php:423
 
656
  msgid "Name"
657
  msgstr "Nome"
658
 
659
- # @ acf
660
  #: core/fields/image.php:19
 
661
  msgid "Image"
662
  msgstr "Imagem"
663
 
664
- # @ acf
665
- #: core/fields/image.php:82
666
  msgid "No image selected"
667
  msgstr "Nenhuma imagem selecionada"
668
 
669
- # @ acf
670
- #: core/fields/image.php:82
671
  msgid "Add Image"
672
  msgstr "Adicionar Imagem"
673
 
674
- # @ acf
675
- #: core/fields/image.php:127
676
  msgid "Image URL"
677
  msgstr "URL da Imagem"
678
 
679
- # @ acf
680
- #: core/fields/image.php:136
681
  msgid "Preview Size"
682
  msgstr "Tamanho da Pré-visualização"
683
 
684
- # @ acf
685
- #: acf.php:549
686
  msgid "Thumbnail"
687
  msgstr "Miniatura"
688
 
689
- # @ acf
690
- #: acf.php:550
691
  msgid "Medium"
692
  msgstr "Média"
693
 
694
- # @ acf
695
- #: acf.php:551
696
  msgid "Large"
697
  msgstr "Grande"
698
 
699
- # @ acf
700
- #: acf.php:552
701
  msgid "Full"
702
  msgstr "Completo"
703
 
704
- # @ acf
705
- #: core/fields/image.php:525
706
- msgid "No images selected"
707
- msgstr "Nenhuma imagem selecionada"
708
-
709
- # @ acf
710
- #: core/fields/image.php:696
711
  msgid "Select Image"
712
  msgstr "Selecionar Imagem"
713
 
714
- # @ acf
715
- #: core/fields/page_link.php:19
716
  msgid "Page Link"
717
  msgstr "Link da Página"
718
 
719
- # @ acf
720
- #: core/fields/select.php:22 core/fields/taxonomy.php:333
721
- #: core/fields/user.php:275
 
 
722
  msgid "Select"
723
  msgstr "Seleção"
724
 
725
- # @ acf
726
- #: core/controllers/field_group.php:712 core/controllers/field_group.php:733
727
- #: core/controllers/field_group.php:740 core/fields/page_link.php:84
728
- #: core/fields/post_object.php:269 core/fields/post_object.php:293
729
- #: core/fields/relationship.php:539 core/fields/relationship.php:563
730
- #: core/fields/user.php:238
 
 
 
 
 
 
731
  msgid "All"
732
  msgstr "Todos"
733
 
734
- # @ acf
735
- #: core/fields/page_link.php:102 core/fields/post_object.php:312
736
- #: core/fields/select.php:220 core/fields/taxonomy.php:342
737
- #: core/fields/user.php:284
 
 
738
  msgid "Allow Null?"
739
  msgstr "Permitir Nulo?"
740
 
741
- # @ acf
742
- #: core/controllers/field_group.php:431 core/fields/page_link.php:112
743
- #: core/fields/page_link.php:133 core/fields/post_object.php:322
744
- #: core/fields/post_object.php:343 core/fields/select.php:229
745
- #: core/fields/select.php:248 core/fields/taxonomy.php:351
746
- #: core/fields/user.php:293 core/fields/wysiwyg.php:235
747
- #: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
 
 
 
 
 
 
748
  msgid "Yes"
749
  msgstr "Sim"
750
 
751
- # @ acf
752
- #: core/controllers/field_group.php:430 core/fields/page_link.php:113
753
- #: core/fields/page_link.php:134 core/fields/post_object.php:323
754
- #: core/fields/post_object.php:344 core/fields/select.php:230
755
- #: core/fields/select.php:249 core/fields/taxonomy.php:352
756
- #: core/fields/user.php:294 core/fields/wysiwyg.php:236
757
- #: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
 
 
 
 
 
 
758
  msgid "No"
759
  msgstr "Não"
760
 
761
- # @ acf
762
- #: core/fields/page_link.php:123 core/fields/post_object.php:333
763
- #: core/fields/select.php:239
 
764
  msgid "Select multiple values?"
765
  msgstr "Selecionar vários valores?"
766
 
767
- # @ acf
768
- #: core/fields/post_object.php:22
769
  msgid "Post Object"
770
  msgstr "Objeto do Post"
771
 
772
- # @ acf
773
- #: core/fields/post_object.php:287 core/fields/relationship.php:557
 
774
  msgid "Filter from Taxonomy"
775
  msgstr "Filtro de Taxonomia"
776
 
777
- # @ acf
778
- #: core/fields/radio.php:19
779
  msgid "Radio Button"
780
  msgstr "Botão de Rádio"
781
 
782
- # @ acf
783
- #: core/fields/checkbox.php:167 core/fields/color_picker.php:73
784
- #: core/fields/email.php:71 core/fields/number.php:71
785
- #: core/fields/radio.php:146 core/fields/select.php:203
786
- #: core/fields/text.php:73 core/fields/textarea.php:73
787
- #: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
 
 
 
 
 
788
  msgid "Default Value"
789
  msgstr "Valor Padrão"
790
 
791
- # @ acf
792
- #: core/fields/radio.php:173
 
793
  msgid "Vertical"
794
  msgstr "Vertical"
795
 
796
- # @ acf
797
- #: core/fields/radio.php:174
 
798
  msgid "Horizontal"
799
  msgstr "Horizontal"
800
 
801
- # @ acf
802
- #: core/fields/relationship.php:22
803
  msgid "Relationship"
804
  msgstr "Relação"
805
 
806
- # @ acf
807
- #: core/fields/relationship.php:591
808
  msgid "Search"
809
  msgstr "Pesquisa"
810
 
811
- # @ acf
812
- #: core/fields/relationship.php:623
813
  msgid "Maximum posts"
814
  msgstr "Posts máximos"
815
 
816
- # @ acf
817
  #: core/fields/text.php:19
 
818
  msgid "Text"
819
  msgstr "Texto"
820
 
821
- # @ acf
822
- #: core/fields/text.php:87 core/fields/textarea.php:87
 
823
  msgid "Formatting"
824
  msgstr "Formatação"
825
 
826
- # @ acf
827
- #: core/fields/text.php:88
828
- msgid "Define how to render html tags"
829
- msgstr "Define como renderizar as tags html"
830
-
831
- # @ acf
832
- #: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
833
- #: core/fields/text.php:97 core/fields/textarea.php:97
834
  msgid "None"
835
  msgstr "Nenhuma"
836
 
837
- # @ acf
838
- #: core/fields/text.php:98 core/fields/textarea.php:99
839
- msgid "HTML"
840
- msgstr "HTML"
841
-
842
- # @ acf
843
  #: core/fields/textarea.php:19
 
844
  msgid "Text Area"
845
  msgstr "Área de Texto"
846
 
847
- # @ acf
848
- #: core/fields/textarea.php:88
849
- msgid "Define how to render html tags / new lines"
850
- msgstr "Define como renderizar as tags html / novas linhas"
851
-
852
- # @ acf
853
- #: core/fields/textarea.php:98
854
- msgid "auto &lt;br /&gt;"
855
- msgstr "auto &lt;br /&gt;"
856
-
857
- # @ acf
858
  #: core/fields/true_false.php:19
 
859
  msgid "True / False"
860
  msgstr "Verdadeiro / Falso"
861
 
862
- # @ acf
863
- #: core/fields/message.php:19 core/fields/message.php:71
864
- #: core/fields/true_false.php:89
 
865
  msgid "Message"
866
  msgstr "Mensagem"
867
 
868
- # @ acf
869
- #: core/fields/true_false.php:90
870
  msgid "eg. Show extra content"
871
  msgstr "ex.: Mostrar conteúdo adicional"
872
 
873
- # @ acf
874
  #: core/fields/wysiwyg.php:19
 
875
  msgid "Wysiwyg Editor"
876
  msgstr "Editor Wysiwyg"
877
 
878
- # @ acf
879
- #: core/fields/wysiwyg.php:193
880
  msgid "Toolbar"
881
  msgstr "Barra de Ferramentas"
882
 
883
- # @ acf
884
- #: core/fields/wysiwyg.php:225
885
  msgid "Show Media Upload Buttons?"
886
  msgstr "Mostrar Botões de Upload de Mídia?"
887
 
888
- # @ acf
889
- #: core/actions/export.php:23 core/views/meta_box_fields.php:57
 
890
  msgid "Error"
891
  msgstr "Erro"
892
 
893
- # @ acf
894
- #: core/controllers/addons.php:42 core/controllers/field_groups.php:311
 
 
895
  msgid "Add-ons"
896
  msgstr "Complementos"
897
 
898
- # @ acf
899
  #: core/controllers/addons.php:131
 
900
  msgid "Create infinite rows of repeatable data with this versatile interface!"
901
- msgstr ""
902
- "Através desta versátil interface é prossível criar infinitas linhas de dados "
903
- "repetitíveis!"
904
 
905
- # @ acf
906
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
 
907
  msgid "Gallery Field"
908
  msgstr "Campo de Galeria"
909
 
910
- # @ acf
911
  #: core/controllers/addons.php:138
 
912
  msgid "Create image galleries in a simple and intuitive interface!"
913
  msgstr "Cria galerias de imagens em uma interface simples e intuitiva!"
914
 
915
- # @ acf
916
  #: core/controllers/addons.php:145
 
917
  msgid "Create global data to use throughout your website!"
918
  msgstr "Cria dados globais para serem usados em todo o seu site!"
919
 
920
- # @ acf
921
  #: core/controllers/addons.php:152
 
922
  msgid "Create unique designs with a flexible content layout manager!"
923
- msgstr ""
924
- "Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!"
925
 
926
- # @ acf
927
  #: core/controllers/addons.php:161
 
928
  msgid "Gravity Forms Field"
929
  msgstr "Campo Gravity Forms"
930
 
931
- # @ acf
932
  #: core/controllers/addons.php:162
 
933
  msgid "Creates a select field populated with Gravity Forms!"
934
  msgstr "Cria um campo de seleção preenchido com Gravity Forms!"
935
 
936
- # @ acf
937
  #: core/controllers/addons.php:168
 
938
  msgid "Date & Time Picker"
939
  msgstr "Seletor de Data e Hora"
940
 
941
- # @ acf
942
  #: core/controllers/addons.php:169
 
943
  msgid "jQuery date & time picker"
944
  msgstr "Seletor jQuery de data e hora"
945
 
946
- # @ acf
947
  #: core/controllers/addons.php:175
 
948
  msgid "Location Field"
949
  msgstr "Campo de Localização"
950
 
951
- # @ acf
952
  #: core/controllers/addons.php:176
 
953
  msgid "Find addresses and coordinates of a desired location"
954
  msgstr "Busca endereços e coordenadas de um local desejado"
955
 
956
- # @ acf
957
  #: core/controllers/addons.php:182
 
958
  msgid "Contact Form 7 Field"
959
  msgstr "Campo Contact Form 7"
960
 
961
- # @ acf
962
  #: core/controllers/addons.php:183
 
963
  msgid "Assign one or more contact form 7 forms to a post"
964
  msgstr "Atribui um ou mais formulários Contact Form 7 para um post"
965
 
966
- # @ acf
967
  #: core/controllers/addons.php:193
 
968
  msgid "Advanced Custom Fields Add-Ons"
969
  msgstr "Complementos do Advanced Custom Fields"
970
 
971
- # @ acf
972
  #: core/controllers/addons.php:196
973
- msgid ""
974
- "The following Add-ons are available to increase the functionality of the "
975
- "Advanced Custom Fields plugin."
976
- msgstr ""
977
- "Os Complementos a seguir estão disponíveis para ampliar as funcionalidades "
978
- "do plugin Advanced Custom Fields."
979
 
980
- # @ acf
981
  #: core/controllers/addons.php:197
982
- msgid ""
983
- "Each Add-on can be installed as a separate plugin (receives updates) or "
984
- "included in your theme (does not receive updates)."
985
- msgstr ""
986
- "Cada Complemento pode ser instalado como um plugin separado (recebendo "
987
- "atualizações) ou pode ser incluído em seu tema (sem atualizações)."
988
 
989
- # @ acf
990
- #: core/controllers/addons.php:218 core/controllers/addons.php:239
 
991
  msgid "Installed"
992
  msgstr "Instalado"
993
 
994
- # @ acf
995
- #: core/controllers/addons.php:220
996
  msgid "Purchase & Install"
997
  msgstr "Comprar & Instalar"
998
 
999
- # @ acf
1000
- #: core/controllers/addons.php:241 core/controllers/field_groups.php:425
1001
- #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
1002
- #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
 
 
 
1003
  msgid "Download"
1004
  msgstr "Download"
1005
 
1006
- # @ acf
1007
- #: core/controllers/export.php:50 core/controllers/export.php:159
 
1008
  msgid "Export"
1009
  msgstr "Exportar"
1010
 
1011
- # @ acf
1012
  #: core/controllers/export.php:216
 
1013
  msgid "Export Field Groups"
1014
  msgstr "Exportar Grupos de Campos"
1015
 
1016
- # @ acf
1017
  #: core/controllers/export.php:221
 
1018
  msgid "Field Groups"
1019
  msgstr "Grupos de Campos"
1020
 
1021
- # @ acf
1022
  #: core/controllers/export.php:222
 
1023
  msgid "Select the field groups to be exported"
1024
  msgstr "Selecione os grupos de campos para serem exportados"
1025
 
1026
- # @ acf
1027
- #: core/controllers/export.php:239 core/controllers/export.php:252
 
1028
  msgid "Export to XML"
1029
  msgstr "Exportar como XML"
1030
 
1031
- # @ acf
1032
- #: core/controllers/export.php:242 core/controllers/export.php:267
 
1033
  msgid "Export to PHP"
1034
  msgstr "Exportar como PHP"
1035
 
1036
- # @ acf
1037
  #: core/controllers/export.php:254
1038
- msgid ""
1039
- "Imported field groups <b>will</b> appear in the list of editable field "
1040
- "groups. This is useful for migrating fields groups between Wp websites."
1041
- msgstr ""
1042
- "Os grupos de campos importados <b>irão</b> aparecer na lista de grupos "
1043
- "editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP."
1044
 
1045
- # @ acf
1046
  #: core/controllers/export.php:256
 
1047
  msgid "Select field group(s) from the list and click \"Export XML\""
1048
- msgstr ""
1049
- "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\""
1050
 
1051
- # @ acf
1052
  #: core/controllers/export.php:257
 
1053
  msgid "Save the .xml file when prompted"
1054
  msgstr "Salvar o arquivo .xml quando solicitado"
1055
 
1056
- # @ acf
1057
  #: core/controllers/export.php:258
 
1058
  msgid "Navigate to Tools &raquo; Import and select WordPress"
1059
  msgstr "Navegue até Ferramentas &raquo; Importar e selecione WordPress"
1060
 
1061
- # @ acf
1062
  #: core/controllers/export.php:268
 
1063
  msgid "ACF will create the PHP code to include in your theme."
1064
  msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema."
1065
 
1066
- # @ acf
1067
- #: core/controllers/export.php:269 core/controllers/export.php:310
1068
- msgid ""
1069
- "Registered field groups <b>will not</b> appear in the list of editable field "
1070
- "groups. This is useful for including fields in themes."
1071
- msgstr ""
1072
- "Os grupos de campos registrados <b>não irão</b> aparecer na lista de campos "
1073
- "editáveis. Isso pode ser útil para incluir grupos de campos em temas."
1074
 
1075
- # @ acf
1076
  #: core/controllers/export.php:272
 
1077
  msgid "Select field group(s) from the list and click \"Create PHP\""
1078
- msgstr ""
1079
- "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\""
1080
 
1081
- # @ acf
1082
- #: core/controllers/export.php:300 core/fields/tab.php:64
 
1083
  msgid "Instructions"
1084
  msgstr "Instruções"
1085
 
1086
- # @ acf
1087
  #: core/controllers/export.php:309
 
1088
  msgid "Notes"
1089
  msgstr "Observações"
1090
 
1091
- # @ acf
1092
  #: core/controllers/export.php:316
 
1093
  msgid "Include in theme"
1094
  msgstr "Inclusão no tema"
1095
 
1096
- # @ acf
1097
  #: core/controllers/export.php:317
1098
- msgid ""
1099
- "The Advanced Custom Fields plugin can be included within a theme. To do so, "
1100
- "move the ACF plugin inside your theme and add the following code to your "
1101
- "functions.php file:"
1102
- msgstr ""
1103
- "O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer "
1104
- "isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o "
1105
- "seguinte código em seu arquivo functions.php"
1106
 
1107
- # @ acf
1108
  #: core/controllers/export.php:331
 
1109
  msgid "Back to export"
1110
  msgstr "Voltar para a exportação"
1111
 
1112
- # @ acf
1113
- #: core/controllers/export.php:352
1114
- msgid ""
1115
- "/**\n"
1116
- " * Install Add-ons\n"
1117
- " * \n"
1118
- " * The following code will include all 4 premium Add-Ons in your theme.\n"
1119
- " * Please do not attempt to include a file which does not exist. This will "
1120
- "produce an error.\n"
1121
- " * \n"
1122
- " * All fields must be included during the 'acf/register_fields' action.\n"
1123
- " * Other types of Add-ons (like the options page) can be included outside "
1124
- "of this action.\n"
1125
- " * \n"
1126
- " * The following code assumes you have a folder 'add-ons' inside your "
1127
- "theme.\n"
1128
- " *\n"
1129
- " * IMPORTANT\n"
1130
- " * Add-ons may be included in a premium theme as outlined in the terms and "
1131
- "conditions.\n"
1132
- " * However, they are NOT to be included in a premium / free plugin.\n"
1133
- " * For more information, please read http://www.advancedcustomfields.com/"
1134
- "terms-conditions/\n"
1135
- " */"
1136
- msgstr ""
1137
- "/**\n"
1138
- " * Instalar Complementos\n"
1139
- " * \n"
1140
- " * O código a seguir irá incluir todos os 4 Complementos Premium em seu "
1141
- "tema.\n"
1142
- " * Não tente incluir um arquivo que não existe. Isso irá produzir um erro.\n"
1143
- " * \n"
1144
- " * Todos os campos devem ser incluídos durante a ação 'acf/"
1145
- "register_fields'.\n"
1146
- " * Outros tipos de Complementos (como a Página de Opções) podem ser "
1147
- "incluídos fora desta action.\n"
1148
- " * \n"
1149
- " * O código a seguir pressupõe que você tenha uma pasta 'add-ons' dentro de "
1150
- "seu tema.\n"
1151
- " *\n"
1152
- " * IMPORTANTE\n"
1153
- " * Complementos podem ser incluídos em temas premium conforme descrito nos "
1154
- "termos e condições.\n"
1155
- " * No entanto, eles NÃO podem ser incluídos em plugins premium / "
1156
- "gratuitos.\n"
1157
- " * Para mais informações, por favor leia http://www.advancedcustomfields."
1158
- "com/terms-conditions/\n"
1159
- " */"
1160
-
1161
- # @ acf
1162
- #: core/controllers/export.php:384
1163
  msgid ""
1164
  "/**\n"
1165
  " * Register Field Groups\n"
1166
  " *\n"
1167
- " * The register_field_group function accepts 1 array which holds the "
1168
- "relevant data to register a field group\n"
1169
- " * You may edit the array as you see fit. However, this may result in "
1170
- "errors if the array is not compatible with ACF\n"
1171
  " */"
1172
  msgstr ""
1173
  "/**\n"
1174
  " * Registrar Grupos de Campos\n"
1175
  " *\n"
1176
- " * A função register_field_group aceita 1 array que retém os dados "
1177
- "necessários para registrar um grupo de campos.\n"
1178
- " * Você pode editar o array conforme a sua necessidade, entretanto, isso "
1179
- "pode resultar em erros caso o array não esteja compatível com o ACF.\n"
1180
  " */"
1181
 
1182
- # @ acf
1183
- #: core/controllers/field_group.php:429
1184
  msgid "Show Field Key:"
1185
  msgstr "Mostrar a Chave do Campo"
1186
 
1187
- # @ acf
1188
- #: core/controllers/field_group.php:608
1189
  msgid "Front Page"
1190
  msgstr "Página Inicial"
1191
 
1192
- # @ acf
1193
- #: core/controllers/field_group.php:609
1194
  msgid "Posts Page"
1195
  msgstr "Página de Posts"
1196
 
1197
- # @ acf
1198
- #: core/controllers/field_group.php:610
1199
  msgid "Top Level Page (parent of 0)"
1200
  msgstr "Página de nível mais alto (sem mãe)"
1201
 
1202
- # @ acf
1203
- #: core/controllers/field_group.php:611
1204
  msgid "Parent Page (has children)"
1205
  msgstr "Página Mãe (tem filhos)"
1206
 
1207
- # @ acf
1208
- #: core/controllers/field_group.php:612
1209
  msgid "Child Page (has parent)"
1210
  msgstr "Página filha (possui mãe)"
1211
 
1212
- # @ acf
1213
  #: core/controllers/field_groups.php:217
 
1214
  msgid "version"
1215
  msgstr "versão"
1216
 
1217
- # @ acf
1218
  #: core/controllers/field_groups.php:221
 
1219
  msgid "Getting Started"
1220
  msgstr "Primeiros Passos"
1221
 
1222
- # @ acf
1223
  #: core/controllers/field_groups.php:222
 
1224
  msgid "Field Types"
1225
  msgstr "Tipos de Campos"
1226
 
1227
- # @ acf
1228
  #: core/controllers/field_groups.php:223
 
1229
  msgid "Functions"
1230
  msgstr "Funções"
1231
 
1232
- # @ acf
1233
  #: core/controllers/field_groups.php:224
 
1234
  msgid "Actions"
1235
  msgstr "Ações"
1236
 
1237
- # @ acf
1238
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:582
 
1239
  msgid "Filters"
1240
  msgstr "Filtros"
1241
 
1242
- # @ acf
1243
  #: core/controllers/field_groups.php:226
 
1244
  msgid "'How to' guides"
1245
  msgstr "Guias práticos"
1246
 
1247
- # @ acf
1248
  #: core/controllers/field_groups.php:227
 
1249
  msgid "Tutorials"
1250
  msgstr "Tutoriais"
1251
 
1252
- # @ acf
1253
  #: core/controllers/field_groups.php:248
 
1254
  msgid "Welcome to Advanced Custom Fields"
1255
  msgstr "Bem-vindo ao Advanced Custom Fields"
1256
 
1257
- # @ acf
1258
  #: core/controllers/field_groups.php:249
 
1259
  msgid "Thank you for updating to the latest version!"
1260
  msgstr "Ele foi atualizado para a última versão!"
1261
 
1262
- # @ acf
1263
  #: core/controllers/field_groups.php:249
 
1264
  msgid "is more polished and enjoyable than ever before. We hope you like it."
1265
  msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta."
1266
 
1267
- # @ acf
1268
  #: core/controllers/field_groups.php:256
 
1269
  msgid "What’s New"
1270
  msgstr "O que há de novo"
1271
 
1272
- # @ acf
1273
  #: core/controllers/field_groups.php:259
 
1274
  msgid "Download Add-ons"
1275
  msgstr "Fazer download de Complementos"
1276
 
1277
- # @ acf
1278
  #: core/controllers/field_groups.php:313
 
1279
  msgid "Activation codes have grown into plugins!"
1280
  msgstr "Os códigos de ativação se transformaram em plugins!"
1281
 
1282
- # @ acf
1283
  #: core/controllers/field_groups.php:314
1284
- msgid ""
1285
- "Add-ons are now activated by downloading and installing individual plugins. "
1286
- "Although these plugins will not be hosted on the wordpress.org repository, "
1287
- "each Add-on will continue to receive updates in the usual way."
1288
- msgstr ""
1289
- "Os complementos agora são ativados fazendo download e instalando plugins "
1290
- "individuais. Embora esses plugins não estejam hospedados no repositório "
1291
- "wordpress.org, cada Complemento continuará recebendo as atualizações da "
1292
- "maneira habitual."
1293
 
1294
- # @ acf
1295
  #: core/controllers/field_groups.php:320
 
1296
  msgid "All previous Add-ons have been successfully installed"
1297
  msgstr "Todos os Complementos anteriores foram instalados com sucesso"
1298
 
1299
- # @ acf
1300
  #: core/controllers/field_groups.php:324
 
1301
  msgid "This website uses premium Add-ons which need to be downloaded"
1302
  msgstr "Este site usa Complementos Premium que precisam ser baixados"
1303
 
1304
- # @ acf
1305
  #: core/controllers/field_groups.php:324
 
1306
  msgid "Download your activated Add-ons"
1307
  msgstr "Faça o download dos Complementos ativados"
1308
 
1309
- # @ acf
1310
  #: core/controllers/field_groups.php:329
1311
- msgid ""
1312
- "This website does not use premium Add-ons and will not be affected by this "
1313
- "change."
1314
- msgstr ""
1315
- "Este site não utiliza nenhum Complemento Premium e não será afetado por esta "
1316
- "mudança."
1317
 
1318
- # @ acf
1319
  #: core/controllers/field_groups.php:339
 
1320
  msgid "Easier Development"
1321
  msgstr "Desenvolvimento mais fácil"
1322
 
1323
- # @ acf
1324
  #: core/controllers/field_groups.php:341
 
1325
  msgid "New Field Types"
1326
  msgstr "Novos Tipos de Campos"
1327
 
1328
- # @ acf
1329
  #: core/controllers/field_groups.php:343
 
1330
  msgid "Taxonomy Field"
1331
  msgstr "Campo de Taxonomia"
1332
 
1333
- # @ acf
1334
  #: core/controllers/field_groups.php:344
 
1335
  msgid "User Field"
1336
  msgstr "Campo de Usuário"
1337
 
1338
- # @ acf
1339
  #: core/controllers/field_groups.php:345
 
1340
  msgid "Email Field"
1341
  msgstr "Campo de Email"
1342
 
1343
- # @ acf
1344
  #: core/controllers/field_groups.php:346
 
1345
  msgid "Password Field"
1346
  msgstr "Campo de Senha"
1347
 
1348
- # @ acf
1349
  #: core/controllers/field_groups.php:348
 
1350
  msgid "Custom Field Types"
1351
  msgstr "Tipos de Campos Personalizados"
1352
 
1353
- # @ acf
1354
  #: core/controllers/field_groups.php:349
1355
- msgid ""
1356
- "Creating your own field type has never been easier! Unfortunately, version 3 "
1357
- "field types are not compatible with version 4."
1358
- msgstr ""
1359
- "Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os "
1360
- "tipos de campos da versão 3 não são compatíveis com a versão 4."
1361
 
1362
- # @ acf
1363
  #: core/controllers/field_groups.php:350
 
1364
  msgid "Migrating your field types is easy, please"
1365
  msgstr "Migrar os seus tipos de campos é fácil, "
1366
 
1367
- # @ acf
1368
  #: core/controllers/field_groups.php:350
 
1369
  msgid "follow this tutorial"
1370
  msgstr "siga este tutorial (em inglês)"
1371
 
1372
- # @ acf
1373
  #: core/controllers/field_groups.php:350
 
1374
  msgid "to learn more."
1375
  msgstr "para saber mais."
1376
 
1377
- # @ acf
1378
  #: core/controllers/field_groups.php:352
 
1379
  msgid "Actions &amp; Filters"
1380
  msgstr "Ações &amp; Filtros"
1381
 
1382
- # @ acf
1383
  #: core/controllers/field_groups.php:353
 
1384
  msgid "read this guide"
1385
  msgstr "Leia este guia (em inglês)"
1386
 
1387
- # @ acf
1388
  #: core/controllers/field_groups.php:353
 
1389
  msgid "to find the updated naming convention."
1390
  msgstr "para encontrar convenção de nomenclaturas atualizada."
1391
 
1392
- # @ acf
1393
  #: core/controllers/field_groups.php:355
 
1394
  msgid "Preview draft is now working!"
1395
  msgstr "A visualização de rascunhos agora está funcionando!"
1396
 
1397
- # @ acf
1398
  #: core/controllers/field_groups.php:356
 
1399
  msgid "This bug has been squashed along with many other little critters!"
1400
  msgstr "Este problema foi liquidado junto com muitos outros bugs!"
1401
 
1402
- # @ acf
1403
  #: core/controllers/field_groups.php:356
 
1404
  msgid "See the full changelog"
1405
  msgstr "Veja o changelog completo (em inglês)"
1406
 
1407
- # @ acf
1408
  #: core/controllers/field_groups.php:360
 
1409
  msgid "Important"
1410
  msgstr "Importante"
1411
 
1412
- # @ acf
1413
  #: core/controllers/field_groups.php:362
 
1414
  msgid "Database Changes"
1415
  msgstr "Alterações do Banco de Dados"
1416
 
1417
- # @ acf
1418
  #: core/controllers/field_groups.php:363
1419
- msgid ""
1420
- "Absolutely <strong>no</strong> changes have been made to the database "
1421
- "between versions 3 and 4. This means you can roll back to version 3 without "
1422
- "any issues."
1423
- msgstr ""
1424
- "Não foi feita absolutamente <strong>nenhuma</strong> alteração no banco de "
1425
- "dados entre as versões 3 e 4. Isso significa que você pode reverter para a "
1426
- "versão 3 sem quaisquer problemas."
1427
 
1428
- # @ acf
1429
  #: core/controllers/field_groups.php:365
 
1430
  msgid "Potential Issues"
1431
  msgstr "Possíveis Problemas"
1432
 
1433
- # @ acf
1434
  #: core/controllers/field_groups.php:366
1435
- msgid ""
1436
- "Do to the sizable changes surounding Add-ons, field types and action/"
1437
- "filters, your website may not operate correctly. It is important that you "
1438
- "read the full"
1439
- msgstr ""
1440
- "Em virtude das mudanças significativas que ocorreram com os Complementos, "
1441
- "nos tipos de campos e nas ações/filtros, seu site poderá não funcionar "
1442
- "corretamente. É importante que você leia todo o guia"
1443
 
1444
- # @ acf
1445
  #: core/controllers/field_groups.php:366
 
1446
  msgid "Migrating from v3 to v4"
1447
  msgstr "Migrando da v3 para v4 (em inglês)"
1448
 
1449
- # @ acf
1450
  #: core/controllers/field_groups.php:366
 
1451
  msgid "guide to view the full list of changes."
1452
  msgstr "para ver a lista completa de mudanças."
1453
 
1454
- # @ acf
1455
  #: core/controllers/field_groups.php:369
 
1456
  msgid "Really Important!"
1457
  msgstr "Muito Importante!"
1458
 
1459
- # @ acf
1460
- #: core/controllers/field_groups.php:369
1461
- msgid ""
1462
- "If you updated the ACF plugin without prior knowledge of such changes, "
1463
- "Please roll back to the latest"
1464
- msgstr ""
1465
- "Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas "
1466
- "mudanças, reverta para a última"
1467
-
1468
- # @ acf
1469
  #: core/controllers/field_groups.php:369
 
1470
  msgid "version 3"
1471
  msgstr "versão 3"
1472
 
1473
- # @ acf
1474
  #: core/controllers/field_groups.php:369
 
1475
  msgid "of this plugin."
1476
  msgstr "disponível deste plugin."
1477
 
1478
- # @ acf
1479
  #: core/controllers/field_groups.php:374
 
1480
  msgid "Thank You"
1481
  msgstr "Obrigado"
1482
 
1483
- # @ acf
1484
  #: core/controllers/field_groups.php:375
1485
- msgid ""
1486
- "A <strong>BIG</strong> thank you to everyone who has helped test the version "
1487
- "4 beta and for all the support I have received."
1488
- msgstr ""
1489
- "Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 "
1490
- "beta e por todo o apoio que recebi."
1491
 
1492
- # @ acf
1493
  #: core/controllers/field_groups.php:376
 
1494
  msgid "Without you all, this release would not have been possible!"
1495
  msgstr "Sem vocês este release não seria possível!"
1496
 
1497
- # @ acf
1498
  #: core/controllers/field_groups.php:380
 
1499
  msgid "Changelog for"
1500
  msgstr "Changelog da versão"
1501
 
1502
- # @ acf
1503
  #: core/controllers/field_groups.php:396
 
1504
  msgid "Learn more"
1505
  msgstr "Saiba mais"
1506
 
1507
- # @ acf
1508
  #: core/controllers/field_groups.php:402
 
1509
  msgid "Overview"
1510
  msgstr "Visão geral"
1511
 
1512
- # @ acf
1513
  #: core/controllers/field_groups.php:404
1514
- msgid ""
1515
- "Previously, all Add-ons were unlocked via an activation code (purchased from "
1516
- "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
1517
- "need to be individually downloaded, installed and updated."
1518
- msgstr ""
1519
- "Antes, todos os Complementos eram desbloqueados através de códigos de "
1520
- "ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que "
1521
- "todos os Complementos funcionam como plugins separados, que precisam ser "
1522
- "baixados invididualmente, instalados e atualizados."
1523
 
1524
- # @ acf
1525
  #: core/controllers/field_groups.php:406
1526
- msgid ""
1527
- "This page will assist you in downloading and installing each available Add-"
1528
- "on."
1529
- msgstr ""
1530
- "Esta página irá te ajudar a fazer o download e a realizar a instalação de "
1531
- "cada Complemento disponível."
1532
 
1533
- # @ acf
1534
  #: core/controllers/field_groups.php:408
 
1535
  msgid "Available Add-ons"
1536
  msgstr "Complementos Disponíveis"
1537
 
1538
- # @ acf
1539
  #: core/controllers/field_groups.php:410
 
1540
  msgid "The following Add-ons have been detected as activated on this website."
1541
  msgstr "Os seguintes Complementos foram detectados como ativados neste site."
1542
 
1543
- # @ acf
1544
  #: core/controllers/field_groups.php:466
 
1545
  msgid "Installation"
1546
  msgstr "Instalação"
1547
 
1548
- # @ acf
1549
  #: core/controllers/field_groups.php:468
 
1550
  msgid "For each Add-on available, please perform the following:"
1551
  msgstr "Para cada Complemento disponível, faça o seguinte:"
1552
 
1553
- # @ acf
1554
  #: core/controllers/field_groups.php:470
 
1555
  msgid "Download the Add-on plugin (.zip file) to your desktop"
1556
- msgstr ""
1557
- "Faça o download do Complemento (arquivo .zip) para a sua área de trabalho"
1558
 
1559
- # @ acf
1560
  #: core/controllers/field_groups.php:471
 
1561
  msgid "Navigate to"
1562
  msgstr "Navegue para"
1563
 
1564
- # @ acf
1565
  #: core/controllers/field_groups.php:471
 
1566
  msgid "Plugins > Add New > Upload"
1567
  msgstr "Plugins > Adicionar Novo > Enviar"
1568
 
1569
- # @ acf
1570
  #: core/controllers/field_groups.php:472
 
1571
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1572
- msgstr ""
1573
- "Utilize o uploader para procurar, selecionar e instalar o seu Complemento "
1574
- "(arquivo .zip)"
1575
 
1576
- # @ acf
1577
  #: core/controllers/field_groups.php:473
1578
- msgid ""
1579
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1580
- "link"
1581
- msgstr ""
1582
- "Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'"
1583
 
1584
- # @ acf
1585
  #: core/controllers/field_groups.php:474
 
1586
  msgid "The Add-on is now installed and activated!"
1587
  msgstr "O Complemento agora está instalado e ativado!"
1588
 
1589
- # @ acf
1590
  #: core/controllers/field_groups.php:488
 
1591
  msgid "Awesome. Let's get to work"
1592
  msgstr "Fantástico. Vamos trabalhar"
1593
 
1594
- # @ acf
1595
- #: core/controllers/input.php:482
1596
  msgid "Maximum values reached ( {max} values )"
1597
  msgstr "Quantidade máxima atingida ( {max} item(s) )"
1598
 
1599
- # @ acf
1600
- #: core/controllers/upgrade.php:616
1601
  msgid "Modifying field group options 'show on page'"
1602
  msgstr "Modificando as opções 'exibir na página' do grupo de campos"
1603
 
1604
- # @ acf
1605
- #: core/controllers/upgrade.php:670
1606
  msgid "Modifying field option 'taxonomy'"
1607
  msgstr "Modificando a opção 'taxonomia' do campo"
1608
 
1609
- # @ acf
1610
- #: core/controllers/upgrade.php:767
1611
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1612
- msgstr ""
1613
- "Movendo os campos personalizados do usuário de wp_options para wp_usermeta"
1614
 
1615
- # @ acf
1616
- #: core/fields/checkbox.php:20 core/fields/radio.php:20
1617
- #: core/fields/select.php:23 core/fields/true_false.php:20
 
 
1618
  msgid "Choice"
1619
  msgstr "Escolhas"
1620
 
1621
- # @ acf
1622
- #: core/fields/checkbox.php:148 core/fields/select.php:184
 
1623
  msgid "Enter each choice on a new line."
1624
  msgstr "Digite cada opção em uma nova linha."
1625
 
1626
- # @ acf
1627
- #: core/fields/checkbox.php:149 core/fields/select.php:185
 
1628
  msgid "For more control, you may specify both a value and label like this:"
1629
- msgstr ""
1630
- "Para mais controle, você pode especificar tanto os valores quanto os "
1631
- "rótulos, como nos exemplos:"
1632
 
1633
- # @ acf
1634
- #: core/fields/checkbox.php:168 core/fields/select.php:204
 
1635
  msgid "Enter each default value on a new line"
1636
  msgstr "Digite cada valor padrão em uma nova linha"
1637
 
1638
- # @ acf
1639
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
 
1640
  msgid "jQuery"
1641
  msgstr "jQuery"
1642
 
1643
- # @ acf
1644
- #: core/fields/color_picker.php:74
1645
- msgid "eg: #ffffff"
1646
- msgstr "ex.: #ffffff"
1647
-
1648
- # @ acf
1649
- #: core/fields/date_picker/date_picker.php:52
1650
- #: core/fields/date_picker/date_picker.php:132
1651
  msgid "Done"
1652
  msgstr "Concluído"
1653
 
1654
- # @ acf
1655
- #: core/fields/date_picker/date_picker.php:53
1656
- #: core/fields/date_picker/date_picker.php:133
1657
  msgid "Today"
1658
  msgstr "Hoje"
1659
 
1660
- # @ acf
1661
- #: core/fields/date_picker/date_picker.php:56
1662
- #: core/fields/date_picker/date_picker.php:136
1663
  msgid "Show a different month"
1664
  msgstr "Mostrar um mês diferente"
1665
 
1666
- # @ acf
1667
- #: core/fields/date_picker/date_picker.php:146
1668
  msgid "Save format"
1669
  msgstr "Formato dos dados"
1670
 
1671
- # @ acf
1672
- #: core/fields/date_picker/date_picker.php:147
1673
- msgid ""
1674
- "This format will determin the value saved to the database and returned via "
1675
- "the API"
1676
- msgstr ""
1677
- "Este será o formato salvo no banco de dados e depois devolvido através da API"
1678
 
1679
- # @ acf
1680
- #: core/fields/date_picker/date_picker.php:148
1681
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1682
  msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre"
1683
 
1684
- # @ acf
1685
- #: core/fields/date_picker/date_picker.php:148
1686
- #: core/fields/date_picker/date_picker.php:164
1687
  msgid "jQuery date formats"
1688
  msgstr "formatos de data jQuery"
1689
 
1690
- # @ acf
1691
- #: core/fields/date_picker/date_picker.php:162
1692
  msgid "Display format"
1693
  msgstr "Formato de exibição"
1694
 
1695
- # @ acf
1696
- #: core/fields/date_picker/date_picker.php:163
1697
  msgid "This format will be seen by the user when entering a value"
1698
- msgstr ""
1699
- "Este é o formato que será visto pelo usuário quando um valor for digitado"
1700
 
1701
- # @ acf
1702
- #: core/fields/date_picker/date_picker.php:164
1703
- msgid ""
1704
- "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1705
- "about"
1706
- msgstr ""
1707
- "\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. "
1708
- "Leia mais sobre"
1709
 
1710
- # @ acf
1711
- #: core/fields/date_picker/date_picker.php:178
1712
  msgid "Week Starts On"
1713
  msgstr "Semana começa em"
1714
 
1715
- # @ default
1716
  #: core/fields/dummy.php:19
 
1717
  msgid "Dummy"
1718
  msgstr "Dummy"
1719
 
1720
- # @ acf
1721
  #: core/fields/email.php:19
 
1722
  msgid "Email"
1723
  msgstr "Email"
1724
 
1725
- # @ acf
1726
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
 
 
1727
  msgid "Content"
1728
  msgstr "Conteúdo"
1729
 
1730
- # @ acf
1731
- #: core/fields/file.php:77 core/fields/image.php:75
1732
  msgid "Remove"
1733
  msgstr "Remover"
1734
 
1735
- # @ acf
1736
- #: core/fields/file.php:130
1737
  msgid "File Object"
1738
  msgstr "Objeto do Arquivo"
1739
 
1740
- # @ acf
1741
- #: core/fields/file.php:131
1742
  msgid "File URL"
1743
  msgstr "URL do Arquivo"
1744
 
1745
- # @ acf
1746
- #: core/fields/file.php:132
1747
  msgid "File ID"
1748
  msgstr "ID do Arquivo"
1749
 
1750
- # @ acf
1751
- #: core/fields/file.php:243
1752
- msgid "File Updated."
1753
- msgstr "Arquivo Atualizado."
1754
-
1755
- # @ default
1756
- #: core/fields/file.php:335 core/fields/image.php:374
1757
- msgid "Media attachment updated."
1758
- msgstr "Arquivo de mídia atualizado."
1759
-
1760
- # @ acf
1761
- #: core/fields/file.php:670
1762
  msgid "Update File"
1763
  msgstr "Atualizar Arquivo"
1764
 
1765
- # @ acf
1766
- #: core/fields/image.php:126
1767
  msgid "Image Object"
1768
  msgstr "Objeto da Imagem"
1769
 
1770
- # @ acf
1771
- #: core/fields/image.php:128
1772
  msgid "Image ID"
1773
  msgstr "ID da Imagem"
1774
 
1775
- # @ acf
1776
- #: core/fields/image.php:283
1777
- msgid "Image Updated."
1778
- msgstr "Imagem Atualizada."
1779
-
1780
- # @ acf
1781
- #: core/fields/image.php:667
1782
- msgid "Add Selected Images"
1783
- msgstr "Adicionar Imagens Selecionadas"
1784
-
1785
- # @ acf
1786
- #: core/fields/image.php:699
1787
  msgid "Update Image"
1788
  msgstr "Atualizar Imagem"
1789
 
1790
- # @ acf
1791
- #: core/fields/message.php:72
1792
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1793
- msgstr ""
1794
- "O Texto &amp; HTML digitados aqui irão aparecer em linha, como os campos"
1795
 
1796
- # @ acf
1797
- #: core/fields/message.php:73
1798
  msgid "Please note that all text will first be passed through the wp function "
1799
  msgstr "Antes, todo o texto irá passar pela função "
1800
 
1801
- # @ acf
1802
  #: core/fields/number.php:19
 
1803
  msgid "Number"
1804
  msgstr "Número"
1805
 
1806
- # @ acf
1807
- #: core/fields/page_link.php:20 core/fields/post_object.php:23
1808
- #: core/fields/relationship.php:23 core/fields/taxonomy.php:23
1809
- #: core/fields/user.php:23
 
 
1810
  msgid "Relational"
1811
  msgstr "Relacional"
1812
 
1813
- # @ acf
1814
  #: core/fields/password.php:19
 
1815
  msgid "Password"
1816
  msgstr "Senha"
1817
 
1818
- # @ acf
1819
- #: core/fields/relationship.php:592
1820
  msgid "Post Type Select"
1821
  msgstr "Seleção de Tipos de Post"
1822
 
1823
- # @ acf
1824
- #: core/fields/relationship.php:600
1825
  msgid "Elements"
1826
  msgstr "Elementos"
1827
 
1828
- # @ acf
1829
- #: core/fields/relationship.php:601
1830
  msgid "Selected elements will be displayed in each result"
1831
  msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro"
1832
 
1833
- # @ acf
1834
- #: core/fields/relationship.php:611
1835
  msgid "Post Title"
1836
  msgstr "Título do Post"
1837
 
1838
- # @ acf
1839
  #: core/fields/tab.php:19
 
1840
  msgid "Tab"
1841
  msgstr "Aba"
1842
 
1843
- # @ acf
1844
- #: core/fields/tab.php:67
1845
- msgid ""
1846
- "All fields proceeding this \"tab field\" (or until another \"tab field\" is "
1847
- "defined) will appear grouped on the edit screen."
1848
- msgstr ""
1849
- "Todos os campos que procedem esta \"Aba\" (ou até que outra \"Aba\" seja "
1850
- "definida) aparecerão agrupados na tela de edição."
1851
-
1852
- # @ acf
1853
- #: core/fields/tab.php:68
1854
- msgid "You can use multiple tabs to break up your fields into sections."
1855
- msgstr "Você pode utilizar várias abas para dividir seus campos em seções."
1856
-
1857
- # @ acf
1858
- #: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
1859
  msgid "Taxonomy"
1860
  msgstr "Taxonomia"
1861
 
1862
- # @ acf
1863
- #: core/fields/taxonomy.php:327 core/fields/user.php:269
 
1864
  msgid "Multiple Values"
1865
  msgstr "Vários valores"
1866
 
1867
- # @ acf
1868
- #: core/fields/taxonomy.php:329 core/fields/user.php:271
 
1869
  msgid "Multi Select"
1870
  msgstr "Seleção Múltipla"
1871
 
1872
- # @ acf
1873
- #: core/fields/taxonomy.php:331 core/fields/user.php:273
 
1874
  msgid "Single Value"
1875
  msgstr "Um único valor"
1876
 
1877
- # @ acf
1878
- #: core/fields/taxonomy.php:332
1879
  msgid "Radio Buttons"
1880
  msgstr "Botões de Rádio"
1881
 
1882
- # @ acf
1883
- #: core/fields/taxonomy.php:361
1884
  msgid "Load & Save Terms to Post"
1885
  msgstr "Carregar & Salvar Termos do Post"
1886
 
1887
- # @ acf
1888
- #: core/fields/taxonomy.php:369
1889
- msgid ""
1890
- "Load value based on the post's terms and update the post's terms on save"
1891
  msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar."
1892
 
1893
- # @ acf
1894
- #: core/fields/taxonomy.php:386
1895
  msgid "Term Object"
1896
  msgstr "Objeto do Termo"
1897
 
1898
- # @ acf
1899
- #: core/fields/taxonomy.php:387
1900
  msgid "Term ID"
1901
  msgstr "ID do Termo"
1902
 
1903
- # @ acf
1904
- #: core/fields/user.php:22
 
1905
  msgid "User"
1906
  msgstr "Usuário"
1907
 
1908
- # @ acf
1909
- #: core/fields/user.php:233
1910
  msgid "Filter by role"
1911
  msgstr "Filtrar por função"
1912
 
1913
- # @ acf
1914
- #: core/views/meta_box_fields.php:24
1915
- msgid "new_field"
1916
- msgstr "novo_campo"
1917
-
1918
- # @ acf
1919
- #: core/views/meta_box_fields.php:57
1920
  msgid "Field type does not exist"
1921
  msgstr "Tipo de campo não existe"
1922
 
1923
- # @ acf
1924
- #: core/views/meta_box_fields.php:65
1925
  msgid "checked"
1926
  msgstr "selecionado"
1927
 
1928
- # @ acf
1929
- #: core/views/meta_box_fields.php:66
1930
  msgid "No toggle fields available"
1931
  msgstr "Não há campos de alternância disponíveis"
1932
 
1933
- # @ acf
1934
  #: core/views/meta_box_fields.php:67
 
1935
  msgid "copy"
1936
  msgstr "copiar"
1937
 
1938
- # @ acf
1939
- #: core/views/meta_box_fields.php:83
1940
  msgid "Field Key"
1941
  msgstr "Chave do Campo"
1942
 
1943
- # @ acf
1944
- #: core/views/meta_box_fields.php:212
1945
  msgid "Conditional Logic"
1946
  msgstr "Condições para exibição"
1947
 
1948
- # @ acf
1949
- #: core/views/meta_box_fields.php:282
1950
  msgid "Show this field when"
1951
  msgstr "Mostrar este campo se"
1952
 
1953
- # @ acf
1954
- #: core/views/meta_box_fields.php:292
1955
  msgid "these rules are met"
1956
  msgstr "regras forem atendidas"
1957
 
1958
- # @ acf
1959
- #: core/views/meta_box_location.php:57
1960
  msgid "Show this field group if"
1961
  msgstr "Mostrar este grupo de campos se"
1962
 
1963
- # @ acf
1964
- #: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
1965
- #: core/views/meta_box_location.php:172
 
1966
  msgid "or"
1967
  msgstr "ou"
1968
 
1969
- # @ acf
1970
- #: core/views/meta_box_location.php:88
1971
- msgid "Taxonomy Term (Add / Edit)"
1972
- msgstr "Taxonomia (Pág. de Adição / Edição)"
1973
-
1974
- # @ acf
1975
- #: core/views/meta_box_location.php:90
1976
- msgid "Media Attachment (Edit)"
1977
- msgstr "Mídia (Pág. de Edição)"
1978
-
1979
- # @ acf
1980
- #: core/views/meta_box_location.php:142
1981
  msgid "and"
1982
  msgstr "e"
1983
 
1984
- # @ acf
1985
- #: core/views/meta_box_location.php:157
1986
  msgid "Add rule group"
1987
  msgstr "Adicionar grupo de regras"
1988
 
1989
- # @ acf
1990
- #: core/views/meta_box_options.php:24
1991
  msgid "Field groups are created in order <br />from lowest to highest"
1992
  msgstr "Grupos de campo são criados na ordem <br />do menor para o maior valor"
1993
 
1994
- # @ acf
1995
- #: core/views/meta_box_options.php:80
1996
  msgid "Hide on screen"
1997
  msgstr "Ocultar na tela"
1998
 
1999
- # @ acf
2000
- #: core/views/meta_box_options.php:81
2001
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
2002
- msgstr "<b>Selecione</b> os itens para <b>ocultar</b> na tela de edição"
2003
 
2004
- # @ acf
2005
- #: core/views/meta_box_options.php:82
2006
- msgid ""
2007
- "If multiple field groups appear on an edit screen, the first field group's "
2008
- "options will be used. (the one with the lowest order number)"
2009
- msgstr ""
2010
- "Se vários grupos de campos aparecem em uma tela de edição, as opções do "
2011
- "primeiro grupo de campos é a que será utilizada. (aquele com o menor número "
2012
- "de ordem)"
2013
 
2014
- # @ default
2015
- #: core/views/meta_box_options.php:93
2016
  msgid "Excerpt"
2017
  msgstr "Resumo"
2018
 
2019
- # @ default
2020
- #: core/views/meta_box_options.php:97
2021
  msgid "Revisions"
2022
  msgstr "Revisões"
2023
 
2024
- # @ default
2025
- #: core/views/meta_box_options.php:100
2026
  msgid "Format"
2027
  msgstr "Formato"
2028
 
2029
- # @ acf
2030
- # @ default
2031
- #: core/fields/relationship.php:610 core/views/meta_box_options.php:101
 
2032
  msgid "Featured Image"
2033
  msgstr "Imagem Destacada"
2034
 
2035
- # @ default
2036
- #: core/views/meta_box_options.php:102
2037
  msgid "Categories"
2038
  msgstr "Categorias"
2039
 
2040
- # @ default
2041
- #: core/views/meta_box_options.php:103
2042
  msgid "Tags"
2043
  msgstr "Tags"
2044
 
2045
- # @ default
2046
- #: core/views/meta_box_options.php:104
2047
  msgid "Send Trackbacks"
2048
  msgstr "Enviar Trackbacks"
2049
 
2050
- # @ acf
2051
- #: core/controllers/export.php:270 core/controllers/export.php:311
2052
- msgid ""
2053
- "Please note that if you export and register field groups within the same WP, "
2054
- "you will see duplicate fields on your edit screens. To fix this, please move "
2055
- "the original field group to the trash or remove the code from your functions."
2056
- "php file."
2057
- msgstr ""
2058
- "Note que se você exportar e registrar os grupos de campos dentro de um mesmo "
2059
- "WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, "
2060
- "mova o grupo de campos original para a lixeira ou remova o código de seu "
2061
- "arquivo functions.php."
2062
 
2063
- # @ acf
2064
  #: core/controllers/export.php:323
2065
- msgid ""
2066
- "To remove all visual interfaces from the ACF plugin, you can use a constant "
2067
- "to enable lite mode. Add the following code to your functions.php file "
2068
- "<b>before</b> the include_once code:"
2069
- msgstr ""
2070
- "Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma "
2071
- "constante para habilitar o <i>modo Lite</i>. Adicione o seguinte código em "
2072
- "seu arquivo functions.php, <b>antes</b> do código include_once (sugerido "
2073
- "anteriormente):"
2074
 
2075
- # @ acf
2076
  #: core/controllers/field_groups.php:353
2077
- msgid ""
2078
- "All actions & filters have received a major facelift to make customizing ACF "
2079
- "even easier! Please"
2080
- msgstr ""
2081
- "Todas as ações & filtros sofreram alterações significativas para tornar a "
2082
- "personalização do ACF ainda mai fácil! "
2083
 
2084
- # @ acf
2085
- #: core/fields/relationship.php:380
2086
  msgid "Filter by post type"
2087
  msgstr "Filtrar por tipo de post"
2088
 
2089
- # @ acf
2090
- #: core/fields/relationship.php:367
2091
  msgid "Search..."
2092
  msgstr "Pesquisar..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Advanced Custom Fields v4.2.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
  "POT-Creation-Date: 2012-05-12 11:12:49+00:00\n"
6
+ "PO-Revision-Date: 2013-08-26 01:26:30+0000\n"
7
  "Last-Translator: Augusto Simão <augusto@ams.art.br>\n"
8
  "Language-Team: Augusto Simão <augusto@ams.art.br>\n"
9
  "MIME-Version: 1.0\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
  "X-Generator: Poedit 1.5.5\n"
14
+ "X-Poedit-Language: \n"
15
+ "X-Poedit-Country: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: \n"
19
+ "X-Poedit-Bookmarks: \n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
 
23
+ #: acf.php:459
24
+ #: core/views/meta_box_options.php:98
25
+ #@ acf
26
+ #@ default
27
  msgid "Custom Fields"
28
  msgstr "Campos Personalizados"
29
 
30
+ #: core/controllers/upgrade.php:86
31
+ #@ acf
32
  msgid "Upgrade"
33
  msgstr "Atualizar"
34
 
35
+ #: core/controllers/field_group.php:375
36
+ #: core/controllers/field_group.php:437
37
+ #: core/controllers/field_groups.php:148
38
+ #@ acf
39
  msgid "Fields"
40
  msgstr "Campos"
41
 
42
+ #: core/controllers/field_group.php:376
43
+ #@ acf
44
  msgid "Location"
45
  msgstr "Local"
46
 
47
+ #: core/controllers/field_group.php:377
48
+ #@ acf
49
  msgid "Options"
50
  msgstr "Opções"
51
 
52
+ #: core/controllers/input.php:523
53
+ #@ acf
54
  msgid "Validation Failed. One or more fields below are required."
55
  msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios."
56
 
57
+ #: core/controllers/field_group.php:630
58
+ #@ acf
59
  msgid "Default Template"
60
  msgstr "Modelo Padrão"
61
 
 
62
  #: core/actions/export.php:30
63
+ #@ acf
64
  msgid "No ACF groups selected"
65
  msgstr "Nenhum grupo ACF selecionado"
66
 
67
+ #: acf.php:343
68
+ #: core/controllers/field_groups.php:214
69
+ #@ acf
70
  msgid "Advanced Custom Fields"
71
  msgstr "Advanced Custom Fields"
72
 
73
+ #: acf.php:342
74
+ #@ acf
75
  msgid "Field&nbsp;Groups"
76
  msgstr "Grupos&nbsp;de&nbsp;Campos"
77
 
78
+ #: acf.php:344
79
+ #@ acf
80
  msgid "Add New"
81
  msgstr "Adicionar Novo"
82
 
83
+ #: acf.php:345
84
+ #@ acf
85
  msgid "Add New Field Group"
86
  msgstr "Adicionar Novo Grupo de Campos"
87
 
88
+ #: acf.php:346
89
+ #@ acf
90
  msgid "Edit Field Group"
91
  msgstr "Editar Grupo de Campos"
92
 
93
+ #: acf.php:347
94
+ #@ acf
95
  msgid "New Field Group"
96
  msgstr "Novo Grupo de Campos"
97
 
98
+ #: acf.php:348
99
+ #@ acf
100
  msgid "View Field Group"
101
  msgstr "Ver Grupo de Campos"
102
 
103
+ #: acf.php:349
104
+ #@ acf
105
  msgid "Search Field Groups"
106
  msgstr "Pesquisar Grupos de Campos"
107
 
108
+ #: acf.php:350
109
+ #@ acf
110
  msgid "No Field Groups found"
111
  msgstr "Nenhum Grupo de Campos encontrado"
112
 
113
+ #: acf.php:351
114
+ #@ acf
115
  msgid "No Field Groups found in Trash"
116
  msgstr "Nenhum Grupo de Campos encontrado na Lixeira"
117
 
118
+ #: acf.php:477
119
+ #: acf.php:480
120
+ #@ acf
121
  msgid "Field group updated."
122
  msgstr "Grupo de campos atualizado."
123
 
124
+ #: acf.php:478
125
+ #@ acf
126
  msgid "Custom field updated."
127
  msgstr "Campo personalizado atualizado."
128
 
129
+ #: acf.php:479
130
+ #@ acf
131
  msgid "Custom field deleted."
132
  msgstr "Campo personalizado excluído."
133
 
 
134
  #. translators: %s: date and time of the revision
135
+ #: acf.php:482
136
  #, php-format
137
+ #@ acf
138
  msgid "Field group restored to revision from %s"
139
  msgstr "Grupo de campos restaurado para revisão de %s"
140
 
141
+ #: acf.php:483
142
+ #@ acf
143
  msgid "Field group published."
144
  msgstr "Grupo de campos publicado."
145
 
146
+ #: acf.php:484
147
+ #@ acf
148
  msgid "Field group saved."
149
  msgstr "Grupo de campos salvo."
150
 
151
+ #: acf.php:485
152
+ #@ acf
153
  msgid "Field group submitted."
154
  msgstr "Grupo de campos enviado."
155
 
156
+ #: acf.php:486
157
+ #@ acf
158
  msgid "Field group scheduled for."
159
  msgstr "Grupo de campos agendado."
160
 
161
+ #: acf.php:487
162
+ #@ acf
163
  msgid "Field group draft updated."
164
  msgstr "Rascunho de grupo de campos atualizado."
165
 
 
166
  #: core/controllers/field_groups.php:147
167
+ #@ default
168
  msgid "Title"
169
  msgstr "Título"
170
 
171
+ #: core/views/meta_box_fields.php:24
172
+ #@ acf
173
  msgid "New Field"
174
  msgstr "Novo Campo"
175
 
176
+ #: core/views/meta_box_fields.php:63
177
+ #@ acf
178
  msgid "Move to trash. Are you sure?"
179
  msgstr "Mover para a lixeira. Você tem certeza?"
180
 
181
+ #: core/views/meta_box_fields.php:88
182
+ #@ acf
183
  msgid "Field Order"
184
  msgstr "Ordem do Campo"
185
 
186
+ #: core/views/meta_box_fields.php:89
187
+ #: core/views/meta_box_fields.php:141
188
+ #@ acf
189
  msgid "Field Label"
190
  msgstr "Rótulo do Campo"
191
 
192
+ #: core/views/meta_box_fields.php:90
193
+ #: core/views/meta_box_fields.php:157
194
+ #@ acf
195
  msgid "Field Name"
196
  msgstr "Nome do Campo"
197
 
198
+ #: core/fields/taxonomy.php:306
199
+ #: core/fields/user.php:251
200
+ #: core/views/meta_box_fields.php:91
201
+ #: core/views/meta_box_fields.php:173
202
+ #@ acf
203
  msgid "Field Type"
204
  msgstr "Tipo de Campo"
205
 
206
+ #: core/views/meta_box_fields.php:104
207
+ #@ acf
208
+ msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
209
+ msgstr "Nenhum campo. Clique no botão <strong>+ Adicionar Campo</strong> para criar seu primeiro campo."
 
 
 
 
210
 
211
+ #: core/views/meta_box_fields.php:119
212
+ #: core/views/meta_box_fields.php:122
213
+ #@ acf
214
  msgid "Edit this Field"
215
  msgstr "Editar este Campo"
216
 
217
+ #: core/fields/image.php:84
218
+ #: core/views/meta_box_fields.php:122
219
+ #@ acf
220
  msgid "Edit"
221
  msgstr "Editar"
222
 
223
+ #: core/views/meta_box_fields.php:123
224
+ #@ acf
225
  msgid "Read documentation for this field"
226
  msgstr "Ler a documentação para esse campo"
227
 
228
+ #: core/views/meta_box_fields.php:123
229
+ #@ acf
230
  msgid "Docs"
231
  msgstr "Docs"
232
 
233
+ #: core/views/meta_box_fields.php:124
234
+ #@ acf
235
  msgid "Duplicate this Field"
236
  msgstr "Duplicar este Campo"
237
 
238
+ #: core/views/meta_box_fields.php:124
239
+ #@ acf
240
  msgid "Duplicate"
241
  msgstr "Duplicar"
242
 
243
+ #: core/views/meta_box_fields.php:125
244
+ #@ acf
245
  msgid "Delete this Field"
246
  msgstr "Excluir este Campo"
247
 
248
+ #: core/views/meta_box_fields.php:125
249
+ #@ acf
250
  msgid "Delete"
251
  msgstr "Excluir"
252
 
253
+ #: core/views/meta_box_fields.php:142
254
+ #@ acf
255
  msgid "This is the name which will appear on the EDIT page"
256
  msgstr "Este é o nome que irá aparecer na página de EDIÇÃO"
257
 
258
+ #: core/views/meta_box_fields.php:158
259
+ #@ acf
260
  msgid "Single word, no spaces. Underscores and dashes allowed"
261
+ msgstr "Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos"
 
262
 
263
+ #: core/views/meta_box_fields.php:187
264
+ #@ acf
265
  msgid "Field Instructions"
266
  msgstr "Instruções do Campo"
267
 
268
+ #: core/views/meta_box_fields.php:188
269
+ #@ acf
270
  msgid "Instructions for authors. Shown when submitting data"
271
  msgstr "Instrução para os autores. Exibido quando se está enviando dados"
272
 
273
+ #: core/views/meta_box_fields.php:200
274
+ #@ acf
275
  msgid "Required?"
276
  msgstr "Obrigatório?"
277
 
278
+ #: core/views/meta_box_fields.php:317
279
+ #@ acf
280
  msgid "Close Field"
281
  msgstr "Fechar Campo"
282
 
283
+ #: core/views/meta_box_fields.php:330
284
+ #@ acf
285
  msgid "Drag and drop to reorder"
286
  msgstr "Clique e arraste para reorganizar"
287
 
288
+ #: core/views/meta_box_fields.php:331
289
+ #@ acf
290
  msgid "+ Add Field"
291
  msgstr "+ Adicionar Campo"
292
 
293
+ #: core/views/meta_box_location.php:48
294
+ #@ acf
295
  msgid "Rules"
296
  msgstr "Regras"
297
 
298
+ #: core/views/meta_box_location.php:49
299
+ #@ acf
300
+ msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
301
+ msgstr "Criar um conjunto de regras para determinar quais telas de edição irão utilizar esses campos avançados."
 
 
 
 
302
 
303
+ #: core/fields/_base.php:124
304
+ #: core/views/meta_box_location.php:74
305
+ #@ acf
306
  msgid "Basic"
307
  msgstr "Básico"
308
 
309
+ #: core/fields/page_link.php:103
310
+ #: core/fields/post_object.php:268
311
+ #: core/fields/relationship.php:589
312
+ #: core/fields/relationship.php:668
313
+ #: core/views/meta_box_location.php:75
314
+ #@ acf
315
  msgid "Post Type"
316
  msgstr "Tipo de Post"
317
 
318
+ #: core/views/meta_box_location.php:76
319
+ #@ acf
320
  msgid "Logged in User Type"
321
  msgstr "Tipo de Usuário Logado"
322
 
323
+ #: core/views/meta_box_location.php:78
324
+ #: core/views/meta_box_location.php:79
325
+ #@ acf
326
  msgid "Page"
327
  msgstr "Página"
328
 
329
+ #: core/views/meta_box_location.php:80
330
+ #@ acf
331
  msgid "Page Type"
332
  msgstr "Tipo de Página"
333
 
334
+ #: core/views/meta_box_location.php:81
335
+ #@ acf
336
  msgid "Page Parent"
337
  msgstr "Página Mãe"
338
 
339
+ #: core/views/meta_box_location.php:82
340
+ #@ acf
341
  msgid "Page Template"
342
  msgstr "Modelo de Página"
343
 
344
+ #: core/views/meta_box_location.php:84
345
+ #: core/views/meta_box_location.php:85
346
+ #@ acf
347
  msgid "Post"
348
  msgstr "Post"
349
 
350
+ #: core/views/meta_box_location.php:86
351
+ #@ acf
352
  msgid "Post Category"
353
  msgstr "Categoria de Post"
354
 
355
+ #: core/views/meta_box_location.php:87
356
+ #@ acf
357
  msgid "Post Format"
358
  msgstr "Formato de Post"
359
 
360
+ #: core/views/meta_box_location.php:89
361
+ #@ acf
362
  msgid "Post Taxonomy"
363
  msgstr "Taxonomia de Post"
364
 
365
+ #: core/fields/radio.php:102
366
+ #: core/views/meta_box_location.php:91
367
+ #@ acf
368
  msgid "Other"
369
  msgstr "Outro"
370
 
371
+ #: core/controllers/addons.php:144
 
 
 
 
 
 
372
  #: core/controllers/field_groups.php:448
373
+ #@ acf
374
  msgid "Options Page"
375
  msgstr "Página de Opções"
376
 
377
+ #: core/views/meta_box_fields.php:274
378
+ #: core/views/meta_box_location.php:117
379
+ #@ acf
380
  msgid "is equal to"
381
  msgstr "é igual a"
382
 
383
+ #: core/views/meta_box_fields.php:275
384
+ #: core/views/meta_box_location.php:118
385
+ #@ acf
386
  msgid "is not equal to"
387
  msgstr "não é igual a"
388
 
389
+ #: core/views/meta_box_fields.php:299
390
+ #@ acf
391
  msgid "all"
392
  msgstr "todas"
393
 
394
+ #: core/views/meta_box_fields.php:300
395
+ #@ acf
396
  msgid "any"
397
  msgstr "quaisquer"
398
 
399
+ #: core/views/meta_box_options.php:25
400
+ #@ acf
 
 
 
 
 
401
  msgid "Order No."
402
  msgstr "No. de Ordem"
403
 
404
+ #: core/views/meta_box_options.php:42
405
+ #@ acf
406
  msgid "Position"
407
  msgstr "Posição"
408
 
409
+ #: core/views/meta_box_options.php:54
410
+ #@ acf
 
 
 
 
 
411
  msgid "Side"
412
  msgstr "Lateral"
413
 
414
+ #: core/views/meta_box_options.php:64
415
+ #@ acf
416
  msgid "Style"
417
  msgstr "Estilo"
418
 
419
+ #: core/views/meta_box_options.php:75
420
+ #@ acf
421
  msgid "Standard Metabox"
422
  msgstr "Metabox Padrão"
423
 
424
+ #: core/views/meta_box_options.php:74
425
+ #@ acf
426
  msgid "No Metabox"
427
  msgstr "Sem Metabox"
428
 
429
+ #: core/views/meta_box_options.php:96
430
+ #@ acf
431
  msgid "Content Editor"
432
  msgstr "Editor de Conteúdo"
433
 
434
+ #: core/views/meta_box_options.php:99
435
+ #@ default
436
  msgid "Discussion"
437
  msgstr "Discussão"
438
 
439
+ #: core/views/meta_box_options.php:100
440
+ #@ default
441
  msgid "Comments"
442
  msgstr "Comentários"
443
 
444
+ #: core/views/meta_box_options.php:102
445
+ #@ default
446
  msgid "Slug"
447
  msgstr "Slug"
448
 
449
+ #: core/views/meta_box_options.php:103
450
+ #@ default
451
  msgid "Author"
452
  msgstr "Autor"
453
 
454
+ #: core/controllers/field_groups.php:216
455
+ #: core/controllers/field_groups.php:257
456
+ #@ acf
457
  msgid "Changelog"
458
  msgstr "Changelog"
459
 
 
460
  #: core/controllers/field_groups.php:217
461
+ #@ acf
462
  msgid "See what's new in"
463
  msgstr "Veja o que há de novo na"
464
 
 
465
  #: core/controllers/field_groups.php:219
466
+ #@ acf
467
  msgid "Resources"
468
  msgstr "Recursos (em inglês)"
469
 
 
470
  #: core/controllers/field_groups.php:232
471
+ #@ acf
472
  msgid "Created by"
473
  msgstr "Criado por"
474
 
 
475
  #: core/controllers/field_groups.php:235
476
+ #@ acf
477
  msgid "Vote"
478
  msgstr "Votar"
479
 
 
480
  #: core/controllers/field_groups.php:236
481
+ #@ acf
482
  msgid "Follow"
483
  msgstr "Seguir"
484
 
 
485
  #: core/controllers/field_groups.php:424
486
+ #@ acf
487
  msgid "Activation Code"
488
  msgstr "Código de Ativação"
489
 
490
+ #: core/controllers/addons.php:130
491
+ #: core/controllers/field_groups.php:432
492
+ #@ acf
493
  msgid "Repeater Field"
494
  msgstr "Campo Repetidor"
495
 
 
496
  #: core/controllers/addons.php:151
497
+ #@ acf
498
  msgid "Flexible Content Field"
499
  msgstr "Campo de Conteúdo Flexível"
500
 
 
501
  #: core/controllers/export.php:253
502
+ #@ acf
503
+ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
504
+ msgstr "O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin de importação nativo do WP."
 
 
 
505
 
 
506
  #: core/controllers/export.php:259
507
+ #@ acf
508
  msgid "Install WP import plugin if prompted"
509
  msgstr "Instale o plugin de importação do WP se necessário"
510
 
 
511
  #: core/controllers/export.php:260
512
+ #@ acf
513
  msgid "Upload and import your exported .xml file"
514
  msgstr "Faça o upload e importe o arquivo .xml exportado"
515
 
 
516
  #: core/controllers/export.php:261
517
+ #@ acf
518
  msgid "Select your user and ignore Import Attachments"
519
  msgstr "Selecione o seu usuário e ignore a Importação de Anexos"
520
 
 
521
  #: core/controllers/export.php:262
522
+ #@ acf
523
  msgid "That's it! Happy WordPressing"
524
  msgstr "É isso! Feliz WordPressing"
525
 
 
526
  #: core/controllers/export.php:295
527
+ #@ acf
528
  msgid "Export Field Groups to PHP"
529
  msgstr "Exportar Grupos de Campos para PHP"
530
 
531
+ #: core/controllers/export.php:273
532
+ #: core/controllers/export.php:302
533
+ #@ acf
534
  msgid "Copy the PHP code generated"
535
  msgstr "Copie o código PHP gerado"
536
 
537
+ #: core/controllers/export.php:274
538
+ #: core/controllers/export.php:303
539
+ #@ acf
540
  msgid "Paste into your functions.php file"
541
  msgstr "Cole no seu arquivo functions.php"
542
 
543
+ #: core/controllers/export.php:275
544
+ #: core/controllers/export.php:304
545
+ #@ acf
546
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
547
+ msgstr "Para ativar qualquer Complemento, edite e utilize o código que estão nas linhas iniciais."
 
 
548
 
549
+ #: core/controllers/export.php:426
550
+ #@ acf
551
  msgid "No field groups were selected"
552
  msgstr "Nenhum grupo de campos foi selecionado"
553
 
554
+ #: core/fields/checkbox.php:19
555
+ #: core/fields/taxonomy.php:317
556
+ #@ acf
557
  msgid "Checkbox"
558
  msgstr "Checkbox"
559
 
560
+ #: core/fields/checkbox.php:137
561
+ #: core/fields/radio.php:144
562
+ #: core/fields/select.php:177
563
+ #@ acf
564
  msgid "Choices"
565
  msgstr "Escolhas"
566
 
567
+ #: core/fields/radio.php:145
568
+ #@ acf
569
  msgid "Enter your choices one per line"
570
  msgstr "Digite cada uma de suas opções em uma nova linha."
571
 
572
+ #: core/fields/radio.php:147
573
+ #@ acf
574
  msgid "Red"
575
  msgstr "Vermelho"
576
 
577
+ #: core/fields/radio.php:148
578
+ #@ acf
579
  msgid "Blue"
580
  msgstr "Azul"
581
 
582
+ #: core/fields/checkbox.php:140
583
+ #: core/fields/radio.php:150
584
+ #: core/fields/select.php:180
585
+ #@ acf
586
  msgid "red : Red"
587
  msgstr "vermelho : Vermelho"
588
 
589
+ #: core/fields/checkbox.php:140
590
+ #: core/fields/radio.php:151
591
+ #: core/fields/select.php:180
592
+ #@ acf
593
  msgid "blue : Blue"
594
  msgstr "azul : Azul"
595
 
 
596
  #: core/fields/color_picker.php:19
597
+ #@ acf
598
  msgid "Color Picker"
599
  msgstr "Seletor de Cor"
600
 
601
+ #: core/fields/date_picker/date_picker.php:22
602
+ #@ acf
603
  msgid "Date Picker"
604
  msgstr "Seletor de Datas"
605
 
 
606
  #: core/fields/file.php:19
607
+ #@ acf
608
  msgid "File"
609
  msgstr "Arquivo"
610
 
611
+ #: core/fields/file.php:123
612
+ #@ acf
613
  msgid "No File Selected"
614
  msgstr "Nenhum Arquivo Selecionado"
615
 
616
+ #: core/fields/file.php:123
617
+ #@ acf
618
  msgid "Add File"
619
  msgstr "Adicionar Arquivo"
620
 
621
+ #: core/fields/file.php:153
622
+ #: core/fields/image.php:118
623
+ #: core/fields/taxonomy.php:365
624
+ #@ acf
625
  msgid "Return Value"
626
  msgstr "Valor Retornado"
627
 
628
+ #: core/fields/file.php:26
629
+ #@ acf
 
 
 
 
 
 
 
 
 
 
630
  msgid "Select File"
631
  msgstr "Selecionar Arquivo"
632
 
 
633
  #: core/controllers/field_groups.php:456
634
+ #@ acf
635
  msgid "Flexible Content"
636
  msgstr "Conteúdo Flexível"
637
 
638
+ #: core/fields/checkbox.php:174
639
+ #: core/fields/message.php:20
640
+ #: core/fields/radio.php:209
641
+ #: core/fields/tab.php:20
642
+ #@ acf
643
  msgid "Layout"
644
  msgstr "Layout"
645
 
 
646
  #: core/controllers/field_groups.php:423
647
+ #@ acf
648
  msgid "Name"
649
  msgstr "Nome"
650
 
 
651
  #: core/fields/image.php:19
652
+ #@ acf
653
  msgid "Image"
654
  msgstr "Imagem"
655
 
656
+ #: core/fields/image.php:90
657
+ #@ acf
658
  msgid "No image selected"
659
  msgstr "Nenhuma imagem selecionada"
660
 
661
+ #: core/fields/image.php:90
662
+ #@ acf
663
  msgid "Add Image"
664
  msgstr "Adicionar Imagem"
665
 
666
+ #: core/fields/image.php:130
667
+ #@ acf
668
  msgid "Image URL"
669
  msgstr "URL da Imagem"
670
 
671
+ #: core/fields/image.php:139
672
+ #@ acf
673
  msgid "Preview Size"
674
  msgstr "Tamanho da Pré-visualização"
675
 
676
+ #: acf.php:622
677
+ #@ acf
678
  msgid "Thumbnail"
679
  msgstr "Miniatura"
680
 
681
+ #: acf.php:623
682
+ #@ acf
683
  msgid "Medium"
684
  msgstr "Média"
685
 
686
+ #: acf.php:624
687
+ #@ acf
688
  msgid "Large"
689
  msgstr "Grande"
690
 
691
+ #: acf.php:625
692
+ #@ acf
693
  msgid "Full"
694
  msgstr "Completo"
695
 
696
+ #: core/fields/image.php:27
697
+ #@ acf
 
 
 
 
 
698
  msgid "Select Image"
699
  msgstr "Selecionar Imagem"
700
 
701
+ #: core/fields/page_link.php:18
702
+ #@ acf
703
  msgid "Page Link"
704
  msgstr "Link da Página"
705
 
706
+ #: core/fields/select.php:18
707
+ #: core/fields/select.php:109
708
+ #: core/fields/taxonomy.php:322
709
+ #: core/fields/user.php:266
710
+ #@ acf
711
  msgid "Select"
712
  msgstr "Seleção"
713
 
714
+ #: core/controllers/field_group.php:741
715
+ #: core/controllers/field_group.php:762
716
+ #: core/controllers/field_group.php:769
717
+ #: core/fields/file.php:186
718
+ #: core/fields/image.php:170
719
+ #: core/fields/page_link.php:109
720
+ #: core/fields/post_object.php:274
721
+ #: core/fields/post_object.php:298
722
+ #: core/fields/relationship.php:595
723
+ #: core/fields/relationship.php:619
724
+ #: core/fields/user.php:229
725
+ #@ acf
726
  msgid "All"
727
  msgstr "Todos"
728
 
729
+ #: core/fields/page_link.php:127
730
+ #: core/fields/post_object.php:317
731
+ #: core/fields/select.php:214
732
+ #: core/fields/taxonomy.php:331
733
+ #: core/fields/user.php:275
734
+ #@ acf
735
  msgid "Allow Null?"
736
  msgstr "Permitir Nulo?"
737
 
738
+ #: core/controllers/field_group.php:441
739
+ #: core/fields/page_link.php:137
740
+ #: core/fields/page_link.php:158
741
+ #: core/fields/post_object.php:327
742
+ #: core/fields/post_object.php:348
743
+ #: core/fields/select.php:223
744
+ #: core/fields/select.php:242
745
+ #: core/fields/taxonomy.php:340
746
+ #: core/fields/user.php:284
747
+ #: core/fields/wysiwyg.php:228
748
+ #: core/views/meta_box_fields.php:208
749
+ #: core/views/meta_box_fields.php:231
750
+ #@ acf
751
  msgid "Yes"
752
  msgstr "Sim"
753
 
754
+ #: core/controllers/field_group.php:440
755
+ #: core/fields/page_link.php:138
756
+ #: core/fields/page_link.php:159
757
+ #: core/fields/post_object.php:328
758
+ #: core/fields/post_object.php:349
759
+ #: core/fields/select.php:224
760
+ #: core/fields/select.php:243
761
+ #: core/fields/taxonomy.php:341
762
+ #: core/fields/user.php:285
763
+ #: core/fields/wysiwyg.php:229
764
+ #: core/views/meta_box_fields.php:209
765
+ #: core/views/meta_box_fields.php:232
766
+ #@ acf
767
  msgid "No"
768
  msgstr "Não"
769
 
770
+ #: core/fields/page_link.php:148
771
+ #: core/fields/post_object.php:338
772
+ #: core/fields/select.php:233
773
+ #@ acf
774
  msgid "Select multiple values?"
775
  msgstr "Selecionar vários valores?"
776
 
777
+ #: core/fields/post_object.php:18
778
+ #@ acf
779
  msgid "Post Object"
780
  msgstr "Objeto do Post"
781
 
782
+ #: core/fields/post_object.php:292
783
+ #: core/fields/relationship.php:613
784
+ #@ acf
785
  msgid "Filter from Taxonomy"
786
  msgstr "Filtro de Taxonomia"
787
 
788
+ #: core/fields/radio.php:18
789
+ #@ acf
790
  msgid "Radio Button"
791
  msgstr "Botão de Rádio"
792
 
793
+ #: core/fields/checkbox.php:157
794
+ #: core/fields/color_picker.php:89
795
+ #: core/fields/email.php:106
796
+ #: core/fields/number.php:116
797
+ #: core/fields/radio.php:193
798
+ #: core/fields/select.php:197
799
+ #: core/fields/text.php:116
800
+ #: core/fields/textarea.php:96
801
+ #: core/fields/true_false.php:94
802
+ #: core/fields/wysiwyg.php:171
803
+ #@ acf
804
  msgid "Default Value"
805
  msgstr "Valor Padrão"
806
 
807
+ #: core/fields/checkbox.php:185
808
+ #: core/fields/radio.php:220
809
+ #@ acf
810
  msgid "Vertical"
811
  msgstr "Vertical"
812
 
813
+ #: core/fields/checkbox.php:186
814
+ #: core/fields/radio.php:221
815
+ #@ acf
816
  msgid "Horizontal"
817
  msgstr "Horizontal"
818
 
819
+ #: core/fields/relationship.php:18
820
+ #@ acf
821
  msgid "Relationship"
822
  msgstr "Relação"
823
 
824
+ #: core/fields/relationship.php:647
825
+ #@ acf
826
  msgid "Search"
827
  msgstr "Pesquisa"
828
 
829
+ #: core/fields/relationship.php:679
830
+ #@ acf
831
  msgid "Maximum posts"
832
  msgstr "Posts máximos"
833
 
 
834
  #: core/fields/text.php:19
835
+ #@ acf
836
  msgid "Text"
837
  msgstr "Texto"
838
 
839
+ #: core/fields/text.php:176
840
+ #: core/fields/textarea.php:141
841
+ #@ acf
842
  msgid "Formatting"
843
  msgstr "Formatação"
844
 
845
+ #: core/fields/taxonomy.php:211
846
+ #: core/fields/taxonomy.php:220
847
+ #@ acf
 
 
 
 
 
848
  msgid "None"
849
  msgstr "Nenhuma"
850
 
 
 
 
 
 
 
851
  #: core/fields/textarea.php:19
852
+ #@ acf
853
  msgid "Text Area"
854
  msgstr "Área de Texto"
855
 
 
 
 
 
 
 
 
 
 
 
 
856
  #: core/fields/true_false.php:19
857
+ #@ acf
858
  msgid "True / False"
859
  msgstr "Verdadeiro / Falso"
860
 
861
+ #: core/fields/message.php:19
862
+ #: core/fields/message.php:70
863
+ #: core/fields/true_false.php:79
864
+ #@ acf
865
  msgid "Message"
866
  msgstr "Mensagem"
867
 
868
+ #: core/fields/true_false.php:80
869
+ #@ acf
870
  msgid "eg. Show extra content"
871
  msgstr "ex.: Mostrar conteúdo adicional"
872
 
 
873
  #: core/fields/wysiwyg.php:19
874
+ #@ acf
875
  msgid "Wysiwyg Editor"
876
  msgstr "Editor Wysiwyg"
877
 
878
+ #: core/fields/wysiwyg.php:186
879
+ #@ acf
880
  msgid "Toolbar"
881
  msgstr "Barra de Ferramentas"
882
 
883
+ #: core/fields/wysiwyg.php:218
884
+ #@ acf
885
  msgid "Show Media Upload Buttons?"
886
  msgstr "Mostrar Botões de Upload de Mídia?"
887
 
888
+ #: core/actions/export.php:23
889
+ #: core/views/meta_box_fields.php:58
890
+ #@ acf
891
  msgid "Error"
892
  msgstr "Erro"
893
 
894
+ #: core/controllers/addons.php:42
895
+ #: core/controllers/export.php:368
896
+ #: core/controllers/field_groups.php:311
897
+ #@ acf
898
  msgid "Add-ons"
899
  msgstr "Complementos"
900
 
 
901
  #: core/controllers/addons.php:131
902
+ #@ acf
903
  msgid "Create infinite rows of repeatable data with this versatile interface!"
904
+ msgstr "Através desta versátil interface é prossível criar infinitas linhas de dados repetitíveis!"
 
 
905
 
906
+ #: core/controllers/addons.php:137
907
+ #: core/controllers/field_groups.php:440
908
+ #@ acf
909
  msgid "Gallery Field"
910
  msgstr "Campo de Galeria"
911
 
 
912
  #: core/controllers/addons.php:138
913
+ #@ acf
914
  msgid "Create image galleries in a simple and intuitive interface!"
915
  msgstr "Cria galerias de imagens em uma interface simples e intuitiva!"
916
 
 
917
  #: core/controllers/addons.php:145
918
+ #@ acf
919
  msgid "Create global data to use throughout your website!"
920
  msgstr "Cria dados globais para serem usados em todo o seu site!"
921
 
 
922
  #: core/controllers/addons.php:152
923
+ #@ acf
924
  msgid "Create unique designs with a flexible content layout manager!"
925
+ msgstr "Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!"
 
926
 
 
927
  #: core/controllers/addons.php:161
928
+ #@ acf
929
  msgid "Gravity Forms Field"
930
  msgstr "Campo Gravity Forms"
931
 
 
932
  #: core/controllers/addons.php:162
933
+ #@ acf
934
  msgid "Creates a select field populated with Gravity Forms!"
935
  msgstr "Cria um campo de seleção preenchido com Gravity Forms!"
936
 
 
937
  #: core/controllers/addons.php:168
938
+ #@ acf
939
  msgid "Date & Time Picker"
940
  msgstr "Seletor de Data e Hora"
941
 
 
942
  #: core/controllers/addons.php:169
943
+ #@ acf
944
  msgid "jQuery date & time picker"
945
  msgstr "Seletor jQuery de data e hora"
946
 
 
947
  #: core/controllers/addons.php:175
948
+ #@ acf
949
  msgid "Location Field"
950
  msgstr "Campo de Localização"
951
 
 
952
  #: core/controllers/addons.php:176
953
+ #@ acf
954
  msgid "Find addresses and coordinates of a desired location"
955
  msgstr "Busca endereços e coordenadas de um local desejado"
956
 
 
957
  #: core/controllers/addons.php:182
958
+ #@ acf
959
  msgid "Contact Form 7 Field"
960
  msgstr "Campo Contact Form 7"
961
 
 
962
  #: core/controllers/addons.php:183
963
+ #@ acf
964
  msgid "Assign one or more contact form 7 forms to a post"
965
  msgstr "Atribui um ou mais formulários Contact Form 7 para um post"
966
 
 
967
  #: core/controllers/addons.php:193
968
+ #@ acf
969
  msgid "Advanced Custom Fields Add-Ons"
970
  msgstr "Complementos do Advanced Custom Fields"
971
 
 
972
  #: core/controllers/addons.php:196
973
+ #@ acf
974
+ msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
975
+ msgstr "Os Complementos a seguir estão disponíveis para ampliar as funcionalidades do plugin Advanced Custom Fields."
 
 
 
976
 
 
977
  #: core/controllers/addons.php:197
978
+ #@ acf
979
+ msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
980
+ msgstr "Cada Complemento pode ser instalado como um plugin separado (recebendo atualizações) ou pode ser incluído em seu tema (sem atualizações)."
 
 
 
981
 
982
+ #: core/controllers/addons.php:219
983
+ #: core/controllers/addons.php:240
984
+ #@ acf
985
  msgid "Installed"
986
  msgstr "Instalado"
987
 
988
+ #: core/controllers/addons.php:221
989
+ #@ acf
990
  msgid "Purchase & Install"
991
  msgstr "Comprar & Instalar"
992
 
993
+ #: core/controllers/addons.php:242
994
+ #: core/controllers/field_groups.php:425
995
+ #: core/controllers/field_groups.php:434
996
+ #: core/controllers/field_groups.php:442
997
+ #: core/controllers/field_groups.php:450
998
+ #: core/controllers/field_groups.php:458
999
+ #@ acf
1000
  msgid "Download"
1001
  msgstr "Download"
1002
 
1003
+ #: core/controllers/export.php:50
1004
+ #: core/controllers/export.php:159
1005
+ #@ acf
1006
  msgid "Export"
1007
  msgstr "Exportar"
1008
 
 
1009
  #: core/controllers/export.php:216
1010
+ #@ acf
1011
  msgid "Export Field Groups"
1012
  msgstr "Exportar Grupos de Campos"
1013
 
 
1014
  #: core/controllers/export.php:221
1015
+ #@ acf
1016
  msgid "Field Groups"
1017
  msgstr "Grupos de Campos"
1018
 
 
1019
  #: core/controllers/export.php:222
1020
+ #@ acf
1021
  msgid "Select the field groups to be exported"
1022
  msgstr "Selecione os grupos de campos para serem exportados"
1023
 
1024
+ #: core/controllers/export.php:239
1025
+ #: core/controllers/export.php:252
1026
+ #@ acf
1027
  msgid "Export to XML"
1028
  msgstr "Exportar como XML"
1029
 
1030
+ #: core/controllers/export.php:242
1031
+ #: core/controllers/export.php:267
1032
+ #@ acf
1033
  msgid "Export to PHP"
1034
  msgstr "Exportar como PHP"
1035
 
 
1036
  #: core/controllers/export.php:254
1037
+ #@ acf
1038
+ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
1039
+ msgstr "Os grupos de campos importados <b>irão</b> aparecer na lista de grupos editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP."
 
 
 
1040
 
 
1041
  #: core/controllers/export.php:256
1042
+ #@ acf
1043
  msgid "Select field group(s) from the list and click \"Export XML\""
1044
+ msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\""
 
1045
 
 
1046
  #: core/controllers/export.php:257
1047
+ #@ acf
1048
  msgid "Save the .xml file when prompted"
1049
  msgstr "Salvar o arquivo .xml quando solicitado"
1050
 
 
1051
  #: core/controllers/export.php:258
1052
+ #@ acf
1053
  msgid "Navigate to Tools &raquo; Import and select WordPress"
1054
  msgstr "Navegue até Ferramentas &raquo; Importar e selecione WordPress"
1055
 
 
1056
  #: core/controllers/export.php:268
1057
+ #@ acf
1058
  msgid "ACF will create the PHP code to include in your theme."
1059
  msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema."
1060
 
1061
+ #: core/controllers/export.php:269
1062
+ #: core/controllers/export.php:310
1063
+ #@ acf
1064
+ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
1065
+ msgstr "Os grupos de campos registrados <b>não irão</b> aparecer na lista de campos editáveis. Isso pode ser útil para incluir grupos de campos em temas."
 
 
 
1066
 
 
1067
  #: core/controllers/export.php:272
1068
+ #@ acf
1069
  msgid "Select field group(s) from the list and click \"Create PHP\""
1070
+ msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\""
 
1071
 
1072
+ #: core/controllers/export.php:300
1073
+ #: core/fields/tab.php:65
1074
+ #@ acf
1075
  msgid "Instructions"
1076
  msgstr "Instruções"
1077
 
 
1078
  #: core/controllers/export.php:309
1079
+ #@ acf
1080
  msgid "Notes"
1081
  msgstr "Observações"
1082
 
 
1083
  #: core/controllers/export.php:316
1084
+ #@ acf
1085
  msgid "Include in theme"
1086
  msgstr "Inclusão no tema"
1087
 
 
1088
  #: core/controllers/export.php:317
1089
+ #@ acf
1090
+ msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
1091
+ msgstr "O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o seguinte código em seu arquivo functions.php"
 
 
 
 
 
1092
 
 
1093
  #: core/controllers/export.php:331
1094
+ #@ acf
1095
  msgid "Back to export"
1096
  msgstr "Voltar para a exportação"
1097
 
1098
+ #: core/controllers/export.php:375
1099
+ #@ acf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
  msgid ""
1101
  "/**\n"
1102
  " * Register Field Groups\n"
1103
  " *\n"
1104
+ " * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
1105
+ " * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
 
 
1106
  " */"
1107
  msgstr ""
1108
  "/**\n"
1109
  " * Registrar Grupos de Campos\n"
1110
  " *\n"
1111
+ " * A função register_field_group aceita 1 array que retém os dados necessários para registrar um grupo de campos.\n"
1112
+ " * Você pode editar o array conforme a sua necessidade, entretanto, isso pode resultar em erros caso o array não esteja compatível com o ACF.\n"
 
 
1113
  " */"
1114
 
1115
+ #: core/controllers/field_group.php:439
1116
+ #@ acf
1117
  msgid "Show Field Key:"
1118
  msgstr "Mostrar a Chave do Campo"
1119
 
1120
+ #: core/controllers/field_group.php:618
1121
+ #@ acf
1122
  msgid "Front Page"
1123
  msgstr "Página Inicial"
1124
 
1125
+ #: core/controllers/field_group.php:619
1126
+ #@ acf
1127
  msgid "Posts Page"
1128
  msgstr "Página de Posts"
1129
 
1130
+ #: core/controllers/field_group.php:620
1131
+ #@ acf
1132
  msgid "Top Level Page (parent of 0)"
1133
  msgstr "Página de nível mais alto (sem mãe)"
1134
 
1135
+ #: core/controllers/field_group.php:621
1136
+ #@ acf
1137
  msgid "Parent Page (has children)"
1138
  msgstr "Página Mãe (tem filhos)"
1139
 
1140
+ #: core/controllers/field_group.php:622
1141
+ #@ acf
1142
  msgid "Child Page (has parent)"
1143
  msgstr "Página filha (possui mãe)"
1144
 
 
1145
  #: core/controllers/field_groups.php:217
1146
+ #@ acf
1147
  msgid "version"
1148
  msgstr "versão"
1149
 
 
1150
  #: core/controllers/field_groups.php:221
1151
+ #@ acf
1152
  msgid "Getting Started"
1153
  msgstr "Primeiros Passos"
1154
 
 
1155
  #: core/controllers/field_groups.php:222
1156
+ #@ acf
1157
  msgid "Field Types"
1158
  msgstr "Tipos de Campos"
1159
 
 
1160
  #: core/controllers/field_groups.php:223
1161
+ #@ acf
1162
  msgid "Functions"
1163
  msgstr "Funções"
1164
 
 
1165
  #: core/controllers/field_groups.php:224
1166
+ #@ acf
1167
  msgid "Actions"
1168
  msgstr "Ações"
1169
 
1170
+ #: core/controllers/field_groups.php:225
1171
+ #: core/fields/relationship.php:638
1172
+ #@ acf
1173
  msgid "Filters"
1174
  msgstr "Filtros"
1175
 
 
1176
  #: core/controllers/field_groups.php:226
1177
+ #@ acf
1178
  msgid "'How to' guides"
1179
  msgstr "Guias práticos"
1180
 
 
1181
  #: core/controllers/field_groups.php:227
1182
+ #@ acf
1183
  msgid "Tutorials"
1184
  msgstr "Tutoriais"
1185
 
 
1186
  #: core/controllers/field_groups.php:248
1187
+ #@ acf
1188
  msgid "Welcome to Advanced Custom Fields"
1189
  msgstr "Bem-vindo ao Advanced Custom Fields"
1190
 
 
1191
  #: core/controllers/field_groups.php:249
1192
+ #@ acf
1193
  msgid "Thank you for updating to the latest version!"
1194
  msgstr "Ele foi atualizado para a última versão!"
1195
 
 
1196
  #: core/controllers/field_groups.php:249
1197
+ #@ acf
1198
  msgid "is more polished and enjoyable than ever before. We hope you like it."
1199
  msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta."
1200
 
 
1201
  #: core/controllers/field_groups.php:256
1202
+ #@ acf
1203
  msgid "What’s New"
1204
  msgstr "O que há de novo"
1205
 
 
1206
  #: core/controllers/field_groups.php:259
1207
+ #@ acf
1208
  msgid "Download Add-ons"
1209
  msgstr "Fazer download de Complementos"
1210
 
 
1211
  #: core/controllers/field_groups.php:313
1212
+ #@ acf
1213
  msgid "Activation codes have grown into plugins!"
1214
  msgstr "Os códigos de ativação se transformaram em plugins!"
1215
 
 
1216
  #: core/controllers/field_groups.php:314
1217
+ #@ acf
1218
+ msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
1219
+ msgstr "Os complementos agora são ativados fazendo download e instalando plugins individuais. Embora esses plugins não estejam hospedados no repositório wordpress.org, cada Complemento continuará recebendo as atualizações da maneira habitual."
 
 
 
 
 
 
1220
 
 
1221
  #: core/controllers/field_groups.php:320
1222
+ #@ acf
1223
  msgid "All previous Add-ons have been successfully installed"
1224
  msgstr "Todos os Complementos anteriores foram instalados com sucesso"
1225
 
 
1226
  #: core/controllers/field_groups.php:324
1227
+ #@ acf
1228
  msgid "This website uses premium Add-ons which need to be downloaded"
1229
  msgstr "Este site usa Complementos Premium que precisam ser baixados"
1230
 
 
1231
  #: core/controllers/field_groups.php:324
1232
+ #@ acf
1233
  msgid "Download your activated Add-ons"
1234
  msgstr "Faça o download dos Complementos ativados"
1235
 
 
1236
  #: core/controllers/field_groups.php:329
1237
+ #@ acf
1238
+ msgid "This website does not use premium Add-ons and will not be affected by this change."
1239
+ msgstr "Este site não utiliza nenhum Complemento Premium e não será afetado por esta mudança."
 
 
 
1240
 
 
1241
  #: core/controllers/field_groups.php:339
1242
+ #@ acf
1243
  msgid "Easier Development"
1244
  msgstr "Desenvolvimento mais fácil"
1245
 
 
1246
  #: core/controllers/field_groups.php:341
1247
+ #@ acf
1248
  msgid "New Field Types"
1249
  msgstr "Novos Tipos de Campos"
1250
 
 
1251
  #: core/controllers/field_groups.php:343
1252
+ #@ acf
1253
  msgid "Taxonomy Field"
1254
  msgstr "Campo de Taxonomia"
1255
 
 
1256
  #: core/controllers/field_groups.php:344
1257
+ #@ acf
1258
  msgid "User Field"
1259
  msgstr "Campo de Usuário"
1260
 
 
1261
  #: core/controllers/field_groups.php:345
1262
+ #@ acf
1263
  msgid "Email Field"
1264
  msgstr "Campo de Email"
1265
 
 
1266
  #: core/controllers/field_groups.php:346
1267
+ #@ acf
1268
  msgid "Password Field"
1269
  msgstr "Campo de Senha"
1270
 
 
1271
  #: core/controllers/field_groups.php:348
1272
+ #@ acf
1273
  msgid "Custom Field Types"
1274
  msgstr "Tipos de Campos Personalizados"
1275
 
 
1276
  #: core/controllers/field_groups.php:349
1277
+ #@ acf
1278
+ msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
1279
+ msgstr "Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os tipos de campos da versão 3 não são compatíveis com a versão 4."
 
 
 
1280
 
 
1281
  #: core/controllers/field_groups.php:350
1282
+ #@ acf
1283
  msgid "Migrating your field types is easy, please"
1284
  msgstr "Migrar os seus tipos de campos é fácil, "
1285
 
 
1286
  #: core/controllers/field_groups.php:350
1287
+ #@ acf
1288
  msgid "follow this tutorial"
1289
  msgstr "siga este tutorial (em inglês)"
1290
 
 
1291
  #: core/controllers/field_groups.php:350
1292
+ #@ acf
1293
  msgid "to learn more."
1294
  msgstr "para saber mais."
1295
 
 
1296
  #: core/controllers/field_groups.php:352
1297
+ #@ acf
1298
  msgid "Actions &amp; Filters"
1299
  msgstr "Ações &amp; Filtros"
1300
 
 
1301
  #: core/controllers/field_groups.php:353
1302
+ #@ acf
1303
  msgid "read this guide"
1304
  msgstr "Leia este guia (em inglês)"
1305
 
 
1306
  #: core/controllers/field_groups.php:353
1307
+ #@ acf
1308
  msgid "to find the updated naming convention."
1309
  msgstr "para encontrar convenção de nomenclaturas atualizada."
1310
 
 
1311
  #: core/controllers/field_groups.php:355
1312
+ #@ acf
1313
  msgid "Preview draft is now working!"
1314
  msgstr "A visualização de rascunhos agora está funcionando!"
1315
 
 
1316
  #: core/controllers/field_groups.php:356
1317
+ #@ acf
1318
  msgid "This bug has been squashed along with many other little critters!"
1319
  msgstr "Este problema foi liquidado junto com muitos outros bugs!"
1320
 
 
1321
  #: core/controllers/field_groups.php:356
1322
+ #@ acf
1323
  msgid "See the full changelog"
1324
  msgstr "Veja o changelog completo (em inglês)"
1325
 
 
1326
  #: core/controllers/field_groups.php:360
1327
+ #@ acf
1328
  msgid "Important"
1329
  msgstr "Importante"
1330
 
 
1331
  #: core/controllers/field_groups.php:362
1332
+ #@ acf
1333
  msgid "Database Changes"
1334
  msgstr "Alterações do Banco de Dados"
1335
 
 
1336
  #: core/controllers/field_groups.php:363
1337
+ #@ acf
1338
+ msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
1339
+ msgstr "Não foi feita absolutamente <strong>nenhuma</strong> alteração no banco de dados entre as versões 3 e 4. Isso significa que você pode reverter para a versão 3 sem quaisquer problemas."
 
 
 
 
 
1340
 
 
1341
  #: core/controllers/field_groups.php:365
1342
+ #@ acf
1343
  msgid "Potential Issues"
1344
  msgstr "Possíveis Problemas"
1345
 
 
1346
  #: core/controllers/field_groups.php:366
1347
+ #@ acf
1348
+ msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
1349
+ msgstr "Em virtude das mudanças significativas que ocorreram com os Complementos, nos tipos de campos e nas ações/filtros, seu site poderá não funcionar corretamente. É importante que você leia todo o guia"
 
 
 
 
 
1350
 
 
1351
  #: core/controllers/field_groups.php:366
1352
+ #@ acf
1353
  msgid "Migrating from v3 to v4"
1354
  msgstr "Migrando da v3 para v4 (em inglês)"
1355
 
 
1356
  #: core/controllers/field_groups.php:366
1357
+ #@ acf
1358
  msgid "guide to view the full list of changes."
1359
  msgstr "para ver a lista completa de mudanças."
1360
 
 
1361
  #: core/controllers/field_groups.php:369
1362
+ #@ acf
1363
  msgid "Really Important!"
1364
  msgstr "Muito Importante!"
1365
 
 
 
 
 
 
 
 
 
 
 
1366
  #: core/controllers/field_groups.php:369
1367
+ #@ acf
1368
  msgid "version 3"
1369
  msgstr "versão 3"
1370
 
 
1371
  #: core/controllers/field_groups.php:369
1372
+ #@ acf
1373
  msgid "of this plugin."
1374
  msgstr "disponível deste plugin."
1375
 
 
1376
  #: core/controllers/field_groups.php:374
1377
+ #@ acf
1378
  msgid "Thank You"
1379
  msgstr "Obrigado"
1380
 
 
1381
  #: core/controllers/field_groups.php:375
1382
+ #@ acf
1383
+ msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
1384
+ msgstr "Um <strong>ENORME</strong> obrigado a todos que ajudaram a testar a versão 4 beta e por todo o apoio que recebi."
 
 
 
1385
 
 
1386
  #: core/controllers/field_groups.php:376
1387
+ #@ acf
1388
  msgid "Without you all, this release would not have been possible!"
1389
  msgstr "Sem vocês este release não seria possível!"
1390
 
 
1391
  #: core/controllers/field_groups.php:380
1392
+ #@ acf
1393
  msgid "Changelog for"
1394
  msgstr "Changelog da versão"
1395
 
 
1396
  #: core/controllers/field_groups.php:396
1397
+ #@ acf
1398
  msgid "Learn more"
1399
  msgstr "Saiba mais"
1400
 
 
1401
  #: core/controllers/field_groups.php:402
1402
+ #@ acf
1403
  msgid "Overview"
1404
  msgstr "Visão geral"
1405
 
 
1406
  #: core/controllers/field_groups.php:404
1407
+ #@ acf
1408
+ msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
1409
+ msgstr "Antes, todos os Complementos eram desbloqueados através de códigos de ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que todos os Complementos funcionam como plugins separados, que precisam ser baixados invididualmente, instalados e atualizados."
 
 
 
 
 
 
1410
 
 
1411
  #: core/controllers/field_groups.php:406
1412
+ #@ acf
1413
+ msgid "This page will assist you in downloading and installing each available Add-on."
1414
+ msgstr "Esta página irá te ajudar a fazer o download e a realizar a instalação de cada Complemento disponível."
 
 
 
1415
 
 
1416
  #: core/controllers/field_groups.php:408
1417
+ #@ acf
1418
  msgid "Available Add-ons"
1419
  msgstr "Complementos Disponíveis"
1420
 
 
1421
  #: core/controllers/field_groups.php:410
1422
+ #@ acf
1423
  msgid "The following Add-ons have been detected as activated on this website."
1424
  msgstr "Os seguintes Complementos foram detectados como ativados neste site."
1425
 
 
1426
  #: core/controllers/field_groups.php:466
1427
+ #@ acf
1428
  msgid "Installation"
1429
  msgstr "Instalação"
1430
 
 
1431
  #: core/controllers/field_groups.php:468
1432
+ #@ acf
1433
  msgid "For each Add-on available, please perform the following:"
1434
  msgstr "Para cada Complemento disponível, faça o seguinte:"
1435
 
 
1436
  #: core/controllers/field_groups.php:470
1437
+ #@ acf
1438
  msgid "Download the Add-on plugin (.zip file) to your desktop"
1439
+ msgstr "Faça o download do Complemento (arquivo .zip) para a sua área de trabalho"
 
1440
 
 
1441
  #: core/controllers/field_groups.php:471
1442
+ #@ acf
1443
  msgid "Navigate to"
1444
  msgstr "Navegue para"
1445
 
 
1446
  #: core/controllers/field_groups.php:471
1447
+ #@ acf
1448
  msgid "Plugins > Add New > Upload"
1449
  msgstr "Plugins > Adicionar Novo > Enviar"
1450
 
 
1451
  #: core/controllers/field_groups.php:472
1452
+ #@ acf
1453
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1454
+ msgstr "Utilize o uploader para procurar, selecionar e instalar o seu Complemento (arquivo .zip)"
 
 
1455
 
 
1456
  #: core/controllers/field_groups.php:473
1457
+ #@ acf
1458
+ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1459
+ msgstr "Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'"
 
 
1460
 
 
1461
  #: core/controllers/field_groups.php:474
1462
+ #@ acf
1463
  msgid "The Add-on is now installed and activated!"
1464
  msgstr "O Complemento agora está instalado e ativado!"
1465
 
 
1466
  #: core/controllers/field_groups.php:488
1467
+ #@ acf
1468
  msgid "Awesome. Let's get to work"
1469
  msgstr "Fantástico. Vamos trabalhar"
1470
 
1471
+ #: core/fields/relationship.php:29
1472
+ #@ acf
1473
  msgid "Maximum values reached ( {max} values )"
1474
  msgstr "Quantidade máxima atingida ( {max} item(s) )"
1475
 
1476
+ #: core/controllers/upgrade.php:684
1477
+ #@ acf
1478
  msgid "Modifying field group options 'show on page'"
1479
  msgstr "Modificando as opções 'exibir na página' do grupo de campos"
1480
 
1481
+ #: core/controllers/upgrade.php:738
1482
+ #@ acf
1483
  msgid "Modifying field option 'taxonomy'"
1484
  msgstr "Modificando a opção 'taxonomia' do campo"
1485
 
1486
+ #: core/controllers/upgrade.php:835
1487
+ #@ acf
1488
  msgid "Moving user custom fields from wp_options to wp_usermeta'"
1489
+ msgstr "Movendo os campos personalizados do usuário de wp_options para wp_usermeta"
 
1490
 
1491
+ #: core/fields/checkbox.php:20
1492
+ #: core/fields/radio.php:19
1493
+ #: core/fields/select.php:19
1494
+ #: core/fields/true_false.php:20
1495
+ #@ acf
1496
  msgid "Choice"
1497
  msgstr "Escolhas"
1498
 
1499
+ #: core/fields/checkbox.php:138
1500
+ #: core/fields/select.php:178
1501
+ #@ acf
1502
  msgid "Enter each choice on a new line."
1503
  msgstr "Digite cada opção em uma nova linha."
1504
 
1505
+ #: core/fields/checkbox.php:139
1506
+ #: core/fields/select.php:179
1507
+ #@ acf
1508
  msgid "For more control, you may specify both a value and label like this:"
1509
+ msgstr "Para mais controle, você pode especificar tanto os valores quanto os rótulos, como nos exemplos:"
 
 
1510
 
1511
+ #: core/fields/checkbox.php:158
1512
+ #: core/fields/select.php:198
1513
+ #@ acf
1514
  msgid "Enter each default value on a new line"
1515
  msgstr "Digite cada valor padrão em uma nova linha"
1516
 
1517
+ #: core/fields/color_picker.php:20
1518
+ #: core/fields/date_picker/date_picker.php:23
1519
+ #@ acf
1520
  msgid "jQuery"
1521
  msgstr "jQuery"
1522
 
1523
+ #: core/fields/date_picker/date_picker.php:30
1524
+ #@ acf
 
 
 
 
 
 
1525
  msgid "Done"
1526
  msgstr "Concluído"
1527
 
1528
+ #: core/fields/date_picker/date_picker.php:31
1529
+ #@ acf
 
1530
  msgid "Today"
1531
  msgstr "Hoje"
1532
 
1533
+ #: core/fields/date_picker/date_picker.php:34
1534
+ #@ acf
 
1535
  msgid "Show a different month"
1536
  msgstr "Mostrar um mês diferente"
1537
 
1538
+ #: core/fields/date_picker/date_picker.php:105
1539
+ #@ acf
1540
  msgid "Save format"
1541
  msgstr "Formato dos dados"
1542
 
1543
+ #: core/fields/date_picker/date_picker.php:106
1544
+ #@ acf
1545
+ msgid "This format will determin the value saved to the database and returned via the API"
1546
+ msgstr "Este será o formato salvo no banco de dados e depois devolvido através da API"
 
 
 
1547
 
1548
+ #: core/fields/date_picker/date_picker.php:107
1549
+ #@ acf
1550
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1551
  msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre"
1552
 
1553
+ #: core/fields/date_picker/date_picker.php:107
1554
+ #: core/fields/date_picker/date_picker.php:123
1555
+ #@ acf
1556
  msgid "jQuery date formats"
1557
  msgstr "formatos de data jQuery"
1558
 
1559
+ #: core/fields/date_picker/date_picker.php:121
1560
+ #@ acf
1561
  msgid "Display format"
1562
  msgstr "Formato de exibição"
1563
 
1564
+ #: core/fields/date_picker/date_picker.php:122
1565
+ #@ acf
1566
  msgid "This format will be seen by the user when entering a value"
1567
+ msgstr "Este é o formato que será visto pelo usuário quando um valor for digitado"
 
1568
 
1569
+ #: core/fields/date_picker/date_picker.php:123
1570
+ #@ acf
1571
+ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1572
+ msgstr "\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. Leia mais sobre"
 
 
 
 
1573
 
1574
+ #: core/fields/date_picker/date_picker.php:137
1575
+ #@ acf
1576
  msgid "Week Starts On"
1577
  msgstr "Semana começa em"
1578
 
 
1579
  #: core/fields/dummy.php:19
1580
+ #@ default
1581
  msgid "Dummy"
1582
  msgstr "Dummy"
1583
 
 
1584
  #: core/fields/email.php:19
1585
+ #@ acf
1586
  msgid "Email"
1587
  msgstr "Email"
1588
 
1589
+ #: core/fields/file.php:20
1590
+ #: core/fields/image.php:20
1591
+ #: core/fields/wysiwyg.php:20
1592
+ #@ acf
1593
  msgid "Content"
1594
  msgstr "Conteúdo"
1595
 
1596
+ #: core/fields/image.php:83
1597
+ #@ acf
1598
  msgid "Remove"
1599
  msgstr "Remover"
1600
 
1601
+ #: core/fields/file.php:164
1602
+ #@ acf
1603
  msgid "File Object"
1604
  msgstr "Objeto do Arquivo"
1605
 
1606
+ #: core/fields/file.php:165
1607
+ #@ acf
1608
  msgid "File URL"
1609
  msgstr "URL do Arquivo"
1610
 
1611
+ #: core/fields/file.php:166
1612
+ #@ acf
1613
  msgid "File ID"
1614
  msgstr "ID do Arquivo"
1615
 
1616
+ #: core/fields/file.php:28
1617
+ #@ acf
 
 
 
 
 
 
 
 
 
 
1618
  msgid "Update File"
1619
  msgstr "Atualizar Arquivo"
1620
 
1621
+ #: core/fields/image.php:129
1622
+ #@ acf
1623
  msgid "Image Object"
1624
  msgstr "Objeto da Imagem"
1625
 
1626
+ #: core/fields/image.php:131
1627
+ #@ acf
1628
  msgid "Image ID"
1629
  msgstr "ID da Imagem"
1630
 
1631
+ #: core/fields/image.php:29
1632
+ #@ acf
 
 
 
 
 
 
 
 
 
 
1633
  msgid "Update Image"
1634
  msgstr "Atualizar Imagem"
1635
 
1636
+ #: core/fields/message.php:71
1637
+ #@ acf
1638
  msgid "Text &amp; HTML entered here will appear inline with the fields"
1639
+ msgstr "O Texto &amp; HTML digitados aqui irão aparecer em linha, como os campos"
 
1640
 
1641
+ #: core/fields/message.php:72
1642
+ #@ acf
1643
  msgid "Please note that all text will first be passed through the wp function "
1644
  msgstr "Antes, todo o texto irá passar pela função "
1645
 
 
1646
  #: core/fields/number.php:19
1647
+ #@ acf
1648
  msgid "Number"
1649
  msgstr "Número"
1650
 
1651
+ #: core/fields/page_link.php:19
1652
+ #: core/fields/post_object.php:19
1653
+ #: core/fields/relationship.php:19
1654
+ #: core/fields/taxonomy.php:19
1655
+ #: core/fields/user.php:19
1656
+ #@ acf
1657
  msgid "Relational"
1658
  msgstr "Relacional"
1659
 
 
1660
  #: core/fields/password.php:19
1661
+ #@ acf
1662
  msgid "Password"
1663
  msgstr "Senha"
1664
 
1665
+ #: core/fields/relationship.php:648
1666
+ #@ acf
1667
  msgid "Post Type Select"
1668
  msgstr "Seleção de Tipos de Post"
1669
 
1670
+ #: core/fields/relationship.php:656
1671
+ #@ acf
1672
  msgid "Elements"
1673
  msgstr "Elementos"
1674
 
1675
+ #: core/fields/relationship.php:657
1676
+ #@ acf
1677
  msgid "Selected elements will be displayed in each result"
1678
  msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro"
1679
 
1680
+ #: core/fields/relationship.php:667
1681
+ #@ acf
1682
  msgid "Post Title"
1683
  msgstr "Título do Post"
1684
 
 
1685
  #: core/fields/tab.php:19
1686
+ #@ acf
1687
  msgid "Tab"
1688
  msgstr "Aba"
1689
 
1690
+ #: core/fields/taxonomy.php:18
1691
+ #: core/fields/taxonomy.php:276
1692
+ #@ acf
 
 
 
 
 
 
 
 
 
 
 
 
 
1693
  msgid "Taxonomy"
1694
  msgstr "Taxonomia"
1695
 
1696
+ #: core/fields/taxonomy.php:316
1697
+ #: core/fields/user.php:260
1698
+ #@ acf
1699
  msgid "Multiple Values"
1700
  msgstr "Vários valores"
1701
 
1702
+ #: core/fields/taxonomy.php:318
1703
+ #: core/fields/user.php:262
1704
+ #@ acf
1705
  msgid "Multi Select"
1706
  msgstr "Seleção Múltipla"
1707
 
1708
+ #: core/fields/taxonomy.php:320
1709
+ #: core/fields/user.php:264
1710
+ #@ acf
1711
  msgid "Single Value"
1712
  msgstr "Um único valor"
1713
 
1714
+ #: core/fields/taxonomy.php:321
1715
+ #@ acf
1716
  msgid "Radio Buttons"
1717
  msgstr "Botões de Rádio"
1718
 
1719
+ #: core/fields/taxonomy.php:350
1720
+ #@ acf
1721
  msgid "Load & Save Terms to Post"
1722
  msgstr "Carregar & Salvar Termos do Post"
1723
 
1724
+ #: core/fields/taxonomy.php:358
1725
+ #@ acf
1726
+ msgid "Load value based on the post's terms and update the post's terms on save"
 
1727
  msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar."
1728
 
1729
+ #: core/fields/taxonomy.php:375
1730
+ #@ acf
1731
  msgid "Term Object"
1732
  msgstr "Objeto do Termo"
1733
 
1734
+ #: core/fields/taxonomy.php:376
1735
+ #@ acf
1736
  msgid "Term ID"
1737
  msgstr "ID do Termo"
1738
 
1739
+ #: core/fields/user.php:18
1740
+ #: core/views/meta_box_location.php:94
1741
+ #@ acf
1742
  msgid "User"
1743
  msgstr "Usuário"
1744
 
1745
+ #: core/fields/user.php:224
1746
+ #@ acf
1747
  msgid "Filter by role"
1748
  msgstr "Filtrar por função"
1749
 
1750
+ #: core/views/meta_box_fields.php:58
1751
+ #@ acf
 
 
 
 
 
1752
  msgid "Field type does not exist"
1753
  msgstr "Tipo de campo não existe"
1754
 
1755
+ #: core/views/meta_box_fields.php:64
1756
+ #@ acf
1757
  msgid "checked"
1758
  msgstr "selecionado"
1759
 
1760
+ #: core/views/meta_box_fields.php:65
1761
+ #@ acf
1762
  msgid "No toggle fields available"
1763
  msgstr "Não há campos de alternância disponíveis"
1764
 
 
1765
  #: core/views/meta_box_fields.php:67
1766
+ #@ acf
1767
  msgid "copy"
1768
  msgstr "copiar"
1769
 
1770
+ #: core/views/meta_box_fields.php:92
1771
+ #@ acf
1772
  msgid "Field Key"
1773
  msgstr "Chave do Campo"
1774
 
1775
+ #: core/views/meta_box_fields.php:223
1776
+ #@ acf
1777
  msgid "Conditional Logic"
1778
  msgstr "Condições para exibição"
1779
 
1780
+ #: core/views/meta_box_fields.php:293
1781
+ #@ acf
1782
  msgid "Show this field when"
1783
  msgstr "Mostrar este campo se"
1784
 
1785
+ #: core/views/meta_box_fields.php:303
1786
+ #@ acf
1787
  msgid "these rules are met"
1788
  msgstr "regras forem atendidas"
1789
 
1790
+ #: core/views/meta_box_location.php:60
1791
+ #@ acf
1792
  msgid "Show this field group if"
1793
  msgstr "Mostrar este grupo de campos se"
1794
 
1795
+ #: core/views/meta_box_fields.php:68
1796
+ #: core/views/meta_box_location.php:62
1797
+ #: core/views/meta_box_location.php:159
1798
+ #@ acf
1799
  msgid "or"
1800
  msgstr "ou"
1801
 
1802
+ #: core/views/meta_box_location.php:146
1803
+ #@ acf
 
 
 
 
 
 
 
 
 
 
1804
  msgid "and"
1805
  msgstr "e"
1806
 
1807
+ #: core/views/meta_box_location.php:161
1808
+ #@ acf
1809
  msgid "Add rule group"
1810
  msgstr "Adicionar grupo de regras"
1811
 
1812
+ #: core/views/meta_box_options.php:26
1813
+ #@ acf
1814
  msgid "Field groups are created in order <br />from lowest to highest"
1815
  msgstr "Grupos de campo são criados na ordem <br />do menor para o maior valor"
1816
 
1817
+ #: core/views/meta_box_options.php:84
1818
+ #@ acf
1819
  msgid "Hide on screen"
1820
  msgstr "Ocultar na tela"
1821
 
1822
+ #: core/views/meta_box_options.php:85
1823
+ #@ acf
1824
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1825
+ msgstr "<b>Selecione</b> os itens deverão ser <b>ocultados</b> na tela de edição"
1826
 
1827
+ #: core/views/meta_box_options.php:86
1828
+ #@ acf
1829
+ msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1830
+ msgstr "Se vários grupos de campos aparecem em uma tela de edição, as opções do primeiro grupo de campos é a que será utilizada. (aquele com o menor número de ordem)"
 
 
 
 
 
1831
 
1832
+ #: core/views/meta_box_options.php:97
1833
+ #@ default
1834
  msgid "Excerpt"
1835
  msgstr "Resumo"
1836
 
1837
+ #: core/views/meta_box_options.php:101
1838
+ #@ default
1839
  msgid "Revisions"
1840
  msgstr "Revisões"
1841
 
1842
+ #: core/views/meta_box_options.php:104
1843
+ #@ default
1844
  msgid "Format"
1845
  msgstr "Formato"
1846
 
1847
+ #: core/fields/relationship.php:666
1848
+ #: core/views/meta_box_options.php:105
1849
+ #@ acf
1850
+ #@ default
1851
  msgid "Featured Image"
1852
  msgstr "Imagem Destacada"
1853
 
1854
+ #: core/views/meta_box_options.php:106
1855
+ #@ default
1856
  msgid "Categories"
1857
  msgstr "Categorias"
1858
 
1859
+ #: core/views/meta_box_options.php:107
1860
+ #@ default
1861
  msgid "Tags"
1862
  msgstr "Tags"
1863
 
1864
+ #: core/views/meta_box_options.php:108
1865
+ #@ default
1866
  msgid "Send Trackbacks"
1867
  msgstr "Enviar Trackbacks"
1868
 
1869
+ #: core/controllers/export.php:270
1870
+ #: core/controllers/export.php:311
1871
+ #@ acf
1872
+ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
1873
+ msgstr "Note que se você exportar e registrar os grupos de campos dentro de um mesmo WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, mova o grupo de campos original para a lixeira ou remova o código de seu arquivo functions.php."
 
 
 
 
 
 
 
1874
 
 
1875
  #: core/controllers/export.php:323
1876
+ #@ acf
1877
+ msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1878
+ msgstr "Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma constante para habilitar o <i>modo Lite</i>. Adicione o seguinte código em seu arquivo functions.php, <b>antes</b> do código include_once (sugerido anteriormente):"
 
 
 
 
 
 
1879
 
 
1880
  #: core/controllers/field_groups.php:353
1881
+ #@ acf
1882
+ msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
1883
+ msgstr "Todas as ações & filtros sofreram alterações significativas para tornar a personalização do ACF ainda mai fácil! "
 
 
 
1884
 
1885
+ #: core/fields/relationship.php:436
1886
+ #@ acf
1887
  msgid "Filter by post type"
1888
  msgstr "Filtrar por tipo de post"
1889
 
1890
+ #: core/fields/relationship.php:425
1891
+ #@ acf
1892
  msgid "Search..."
1893
  msgstr "Pesquisar..."
1894
+
1895
+ #: core/api.php:1094
1896
+ #@ acf
1897
+ msgid "Update"
1898
+ msgstr "Atualizar"
1899
+
1900
+ #: core/api.php:1095
1901
+ #@ acf
1902
+ msgid "Post updated"
1903
+ msgstr "Post atualizado"
1904
+
1905
+ #: core/controllers/export.php:352
1906
+ #@ acf
1907
+ msgid ""
1908
+ "/**\n"
1909
+ " * Install Add-ons\n"
1910
+ " * \n"
1911
+ " * The following code will include all 4 premium Add-Ons in your theme.\n"
1912
+ " * Please do not attempt to include a file which does not exist. This will produce an error.\n"
1913
+ " * \n"
1914
+ " * The following code assumes you have a folder 'add-ons' inside your theme.\n"
1915
+ " *\n"
1916
+ " * IMPORTANT\n"
1917
+ " * Add-ons may be included in a premium theme/plugin as outlined in the terms and conditions.\n"
1918
+ " * For more information, please read:\n"
1919
+ " * - http://www.advancedcustomfields.com/terms-conditions/\n"
1920
+ " * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/\n"
1921
+ " */"
1922
+ msgstr ""
1923
+ "/**\n"
1924
+ " * Instalar Complementos\n"
1925
+ " * \n"
1926
+ " * código a seguir irá incluir todos os 4 Complementos Premium em seu tema.\n"
1927
+ " * Não tente incluir um arquivo que não existe. Isso irá produzir um erro.\n"
1928
+ " * \n"
1929
+ " * O código a seguir pressupõe que você tenha uma pasta 'add-ons' dentro de seu tema.\n"
1930
+ " *\n"
1931
+ " * IMPORTANT\n"
1932
+ " * Complementos podem ser incluídos em temas.plugins premium conforme descrito nos termos e condições.\n"
1933
+ " * Para mais informações, leia:\n"
1934
+ " * - http://www.advancedcustomfields.com/terms-conditions/\n"
1935
+ " * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/\n"
1936
+ " */"
1937
+
1938
+ #: core/controllers/field_group.php:707
1939
+ #@ default
1940
+ msgid "Publish"
1941
+ msgstr "Publicar"
1942
+
1943
+ #: core/controllers/field_group.php:708
1944
+ #@ default
1945
+ msgid "Pending Review"
1946
+ msgstr "Revisão Pendente"
1947
+
1948
+ #: core/controllers/field_group.php:709
1949
+ #@ default
1950
+ msgid "Draft"
1951
+ msgstr "Rascunho"
1952
+
1953
+ #: core/controllers/field_group.php:710
1954
+ #@ default
1955
+ msgid "Future"
1956
+ msgstr "Futuro"
1957
+
1958
+ #: core/controllers/field_group.php:711
1959
+ #@ default
1960
+ msgid "Private"
1961
+ msgstr "Privado"
1962
+
1963
+ #: core/controllers/field_group.php:712
1964
+ #@ default
1965
+ msgid "Revision"
1966
+ msgstr "Revisão"
1967
+
1968
+ #: core/controllers/field_group.php:713
1969
+ #@ default
1970
+ msgid "Trash"
1971
+ msgstr "Lixeira"
1972
+
1973
+ #: core/controllers/field_group.php:726
1974
+ #@ default
1975
+ msgid "Super Admin"
1976
+ msgstr "Super Admin"
1977
+
1978
+ #: core/controllers/field_groups.php:369
1979
+ #@ acf
1980
+ msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
1981
+ msgstr "Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas mudanças, reverta para a última versão"
1982
+
1983
+ #: core/controllers/input.php:519
1984
+ #@ acf
1985
+ msgid "Expand Details"
1986
+ msgstr "Expandir Detalhes"
1987
+
1988
+ #: core/controllers/input.php:520
1989
+ #@ acf
1990
+ msgid "Collapse Details"
1991
+ msgstr "Recolher Detalhes"
1992
+
1993
+ #: core/controllers/upgrade.php:139
1994
+ #@ acf
1995
+ msgid "What's new"
1996
+ msgstr "O que há de novo"
1997
+
1998
+ #: core/controllers/upgrade.php:150
1999
+ #@ acf
2000
+ msgid "credits"
2001
+ msgstr "créditos"
2002
+
2003
+ #: core/fields/email.php:107
2004
+ #: core/fields/number.php:117
2005
+ #: core/fields/text.php:117
2006
+ #: core/fields/textarea.php:97
2007
+ #: core/fields/wysiwyg.php:172
2008
+ #@ acf
2009
+ msgid "Appears when creating a new post"
2010
+ msgstr "Aparece quando é criado o novo post"
2011
+
2012
+ #: core/fields/email.php:123
2013
+ #: core/fields/number.php:133
2014
+ #: core/fields/password.php:105
2015
+ #: core/fields/text.php:131
2016
+ #: core/fields/textarea.php:111
2017
+ #@ acf
2018
+ msgid "Placeholder Text"
2019
+ msgstr "Texto Placeholder"
2020
+
2021
+ #: core/fields/email.php:124
2022
+ #: core/fields/number.php:134
2023
+ #: core/fields/password.php:106
2024
+ #: core/fields/text.php:132
2025
+ #: core/fields/textarea.php:112
2026
+ #@ acf
2027
+ msgid "Appears within the input"
2028
+ msgstr "Texto que aparecerá dentro do campo (até que algo seja digitado)"
2029
+
2030
+ #: core/fields/email.php:138
2031
+ #: core/fields/number.php:148
2032
+ #: core/fields/password.php:120
2033
+ #: core/fields/text.php:146
2034
+ #@ acf
2035
+ msgid "Prepend"
2036
+ msgstr "Prefixo"
2037
+
2038
+ #: core/fields/email.php:139
2039
+ #: core/fields/number.php:149
2040
+ #: core/fields/password.php:121
2041
+ #: core/fields/text.php:147
2042
+ #@ acf
2043
+ msgid "Appears before the input"
2044
+ msgstr "Texto que aparecerá antes do campo"
2045
+
2046
+ #: core/fields/email.php:153
2047
+ #: core/fields/number.php:163
2048
+ #: core/fields/password.php:135
2049
+ #: core/fields/text.php:161
2050
+ #@ acf
2051
+ msgid "Append"
2052
+ msgstr "Sufixo"
2053
+
2054
+ #: core/fields/email.php:154
2055
+ #: core/fields/number.php:164
2056
+ #: core/fields/password.php:136
2057
+ #: core/fields/text.php:162
2058
+ #@ acf
2059
+ msgid "Appears after the input"
2060
+ msgstr "Texto que aparecerá após o campo"
2061
+
2062
+ #: core/fields/file.php:27
2063
+ #@ acf
2064
+ msgid "Edit File"
2065
+ msgstr "Editar Arquivo"
2066
+
2067
+ #: core/fields/file.php:29
2068
+ #: core/fields/image.php:30
2069
+ #@ acf
2070
+ msgid "uploaded to this post"
2071
+ msgstr "anexada a este post"
2072
+
2073
+ #: core/fields/file.php:175
2074
+ #: core/fields/image.php:158
2075
+ #@ acf
2076
+ msgid "Library"
2077
+ msgstr "Biblioteca"
2078
+
2079
+ #: core/fields/file.php:187
2080
+ #: core/fields/image.php:171
2081
+ #@ acf
2082
+ msgid "Uploaded to post"
2083
+ msgstr "Anexado ao post"
2084
+
2085
+ #: core/fields/image.php:28
2086
+ #@ acf
2087
+ msgid "Edit Image"
2088
+ msgstr "Editar Imagem"
2089
+
2090
+ #: core/fields/image.php:119
2091
+ #: core/fields/relationship.php:570
2092
+ #@ acf
2093
+ msgid "Specify the returned value on front end"
2094
+ msgstr "Especifique a forma com os valores serão retornados no front-end"
2095
+
2096
+ #: core/fields/image.php:140
2097
+ #@ acf
2098
+ msgid "Shown when entering data"
2099
+ msgstr "Exibido ao inserir os dados"
2100
+
2101
+ #: core/fields/image.php:159
2102
+ #@ acf
2103
+ msgid "Limit the media library choice"
2104
+ msgstr "Determinar a escolha da biblioteca de mídia"
2105
+
2106
+ #: core/fields/number.php:178
2107
+ #@ acf
2108
+ msgid "Minimum Value"
2109
+ msgstr "Valor Mínimo"
2110
+
2111
+ #: core/fields/number.php:194
2112
+ #@ acf
2113
+ msgid "Maximum Value"
2114
+ msgstr "Valor Máximo"
2115
+
2116
+ #: core/fields/number.php:210
2117
+ #@ acf
2118
+ msgid "Step Size"
2119
+ msgstr "Tamanho das frações"
2120
+
2121
+ #: core/fields/radio.php:172
2122
+ #@ acf
2123
+ msgid "Add 'other' choice to allow for custom values"
2124
+ msgstr "Adicionar uma opção 'Outro' (que irá permitir a inserção de valores personalizados)"
2125
+
2126
+ #: core/fields/radio.php:184
2127
+ #@ acf
2128
+ msgid "Save 'other' values to the field's choices"
2129
+ msgstr "Salvar os valores personalizados inseridos na opção 'Outros' na lista de escolhas"
2130
+
2131
+ #: core/fields/relationship.php:569
2132
+ #@ acf
2133
+ msgid "Return Format"
2134
+ msgstr "Formato dos Dados"
2135
+
2136
+ #: core/fields/relationship.php:580
2137
+ #@ acf
2138
+ msgid "Post Objects"
2139
+ msgstr "Objetos dos Posts"
2140
+
2141
+ #: core/fields/relationship.php:581
2142
+ #@ acf
2143
+ msgid "Post IDs"
2144
+ msgstr "IDs dos Posts"
2145
+
2146
+ #: core/fields/tab.php:68
2147
+ #@ acf
2148
+ msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings."
2149
+ msgstr "Utilize o campo \"Aba\" para organizar melhor sua tela de edição, agrupando seus campos em diferentes guias."
2150
+
2151
+ #: core/fields/tab.php:69
2152
+ #@ acf
2153
+ msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together."
2154
+ msgstr "Todos os campos que seguirem este campo \"Aba\" (ou até que outra \"Aba\" seja definida) ficarão agrupados."
2155
+
2156
+ #: core/fields/tab.php:70
2157
+ #@ acf
2158
+ msgid "Use multiple tabs to divide your fields into sections."
2159
+ msgstr "Aproveite para utilizar várias guias e dividir seus campos em seções."
2160
+
2161
+ #: core/fields/text.php:177
2162
+ #: core/fields/textarea.php:142
2163
+ #@ acf
2164
+ msgid "Effects value on front end"
2165
+ msgstr "Valor dos efeitos no front-end"
2166
+
2167
+ #: core/fields/text.php:186
2168
+ #: core/fields/textarea.php:151
2169
+ #@ acf
2170
+ msgid "No formatting"
2171
+ msgstr "Sem formatação"
2172
+
2173
+ #: core/fields/text.php:187
2174
+ #: core/fields/textarea.php:153
2175
+ #@ acf
2176
+ msgid "Convert HTML into tags"
2177
+ msgstr "Converter HTML em tags"
2178
+
2179
+ #: core/fields/text.php:195
2180
+ #: core/fields/textarea.php:126
2181
+ #@ acf
2182
+ msgid "Character Limit"
2183
+ msgstr "Limite de Caracteres"
2184
+
2185
+ #: core/fields/text.php:196
2186
+ #: core/fields/textarea.php:127
2187
+ #@ acf
2188
+ msgid "Leave blank for no limit"
2189
+ msgstr "Deixe em branco para nenhum limite"
2190
+
2191
+ #: core/fields/textarea.php:152
2192
+ #@ acf
2193
+ msgid "Convert new lines into &lt;br /&gt; tags"
2194
+ msgstr "Converter novas linhas em tags &lt;br /&gt;"
2195
+
2196
+ #: core/views/meta_box_fields.php:66
2197
+ #@ acf
2198
+ msgid "Field group title is required"
2199
+ msgstr "O título do grupo de campos é obrigatório"
2200
+
2201
+ #: core/views/meta_box_location.php:88
2202
+ #@ acf
2203
+ msgid "Post Status"
2204
+ msgstr "Status do Post"
2205
+
2206
+ #: core/views/meta_box_location.php:92
2207
+ #@ acf
2208
+ msgid "Attachment"
2209
+ msgstr "Anexo"
2210
+
2211
+ #: core/views/meta_box_location.php:93
2212
+ #@ acf
2213
+ msgid "Term"
2214
+ msgstr "Termo"
2215
+
2216
+ #: core/views/meta_box_options.php:52
2217
+ #@ acf
2218
+ msgid "High (after title)"
2219
+ msgstr "Superior (depois do título)"
2220
+
2221
+ #: core/views/meta_box_options.php:53
2222
+ #@ acf
2223
+ msgid "Normal (after content)"
2224
+ msgstr "Normal (depois do editor de conteúdo)"
2225
+
lang/acf-sv_SE.mo CHANGED
Binary file
lang/acf-sv_SE.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Advanced Custom Fields 4.2.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2013-07-29 11:10+0100\n"
8
- "PO-Revision-Date: 2013-07-29 12:26+0100\n"
9
  "Last-Translator: Mikael Jorhult <mikael@jorhult.se>\n"
10
  "Language-Team: Mikael Jorhult <mikael@jorhult.se>\n"
11
  "Language: Swedish\n"
@@ -19,108 +19,108 @@ msgstr ""
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: acf.php:331
23
  msgid "Field&nbsp;Groups"
24
  msgstr "Fältgrupper"
25
 
26
- #: acf.php:332 core/controllers/field_groups.php:214
27
  msgid "Advanced Custom Fields"
28
  msgstr "Advanced Custom Fields"
29
 
30
- #: acf.php:333
31
  msgid "Add New"
32
  msgstr "Lägg till ny"
33
 
34
- #: acf.php:334
35
  msgid "Add New Field Group"
36
  msgstr "Lägg till ny fältgrupp"
37
 
38
- #: acf.php:335
39
  msgid "Edit Field Group"
40
  msgstr "Redigera fältgrupp"
41
 
42
- #: acf.php:336
43
  msgid "New Field Group"
44
  msgstr "Ny fältgrupp"
45
 
46
- #: acf.php:337
47
  msgid "View Field Group"
48
  msgstr "Visa fältgrupp"
49
 
50
- #: acf.php:338
51
  msgid "Search Field Groups"
52
  msgstr "Sök fältgrupp"
53
 
54
- #: acf.php:339
55
  msgid "No Field Groups found"
56
  msgstr "Inga fältgrupper hittades"
57
 
58
- #: acf.php:340
59
  msgid "No Field Groups found in Trash"
60
  msgstr "Inga fältgrupper finns i papperskorgen"
61
 
62
- #: acf.php:453 core/views/meta_box_options.php:96
63
  msgid "Custom Fields"
64
  msgstr "Egna fält"
65
 
66
- #: acf.php:471 acf.php:474
67
  msgid "Field group updated."
68
  msgstr "Fältgruppen uppdaterades."
69
 
70
- #: acf.php:472
71
  msgid "Custom field updated."
72
  msgstr "Eget fält uppdaterades."
73
 
74
- #: acf.php:473
75
  msgid "Custom field deleted."
76
  msgstr "Eget fält raderades."
77
 
78
- #: acf.php:476
79
  #, php-format
80
  msgid "Field group restored to revision from %s"
81
  msgstr "Fältgruppen återställdes till revision %s"
82
 
83
- #: acf.php:477
84
  msgid "Field group published."
85
  msgstr "Fältgruppen publicerades."
86
 
87
- #: acf.php:478
88
  msgid "Field group saved."
89
  msgstr "Fältgruppen sparades."
90
 
91
- #: acf.php:479
92
  msgid "Field group submitted."
93
  msgstr "Fältgruppen skickades."
94
 
95
- #: acf.php:480
96
  msgid "Field group scheduled for."
97
  msgstr "Fältgruppen schemalades."
98
 
99
- #: acf.php:481
100
  msgid "Field group draft updated."
101
  msgstr "Utkastet till fältgrupp uppdaterades."
102
 
103
- #: acf.php:616
104
  msgid "Thumbnail"
105
  msgstr "Tumnagel"
106
 
107
- #: acf.php:617
108
  msgid "Medium"
109
  msgstr "Medium"
110
 
111
- #: acf.php:618
112
  msgid "Large"
113
  msgstr "Stor"
114
 
115
- #: acf.php:619
116
  msgid "Full"
117
  msgstr "Full"
118
 
119
- #: core/api.php:1094
120
  msgid "Update"
121
  msgstr "Uppdatera"
122
 
123
- #: core/api.php:1095
124
  msgid "Post updated"
125
  msgstr "Inlägget uppdaterades"
126
 
@@ -136,7 +136,7 @@ msgstr "Inga ACF-grupper har valts"
136
  msgid "Add-ons"
137
  msgstr "Tillägg"
138
 
139
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
140
  msgid "Repeater Field"
141
  msgstr "Upprepningsfält"
142
 
@@ -146,7 +146,7 @@ msgstr ""
146
  "Skapa obegränsat antal rader av upprepningsbar data med detta mångsidiga "
147
  "verktyg!"
148
 
149
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
150
  msgid "Gallery Field"
151
  msgstr "Gallerifält"
152
 
@@ -154,10 +154,9 @@ msgstr "Gallerifält"
154
  msgid "Create image galleries in a simple and intuitive interface!"
155
  msgstr "Skapa bildgallerier i ett enkelt och intuitivt gränssnitt!"
156
 
157
- #: core/controllers/addons.php:144 core/controllers/export.php:380
158
- #: core/controllers/field_groups.php:448
159
  msgid "Options Page"
160
- msgstr "Inställningssida"
161
 
162
  #: core/controllers/addons.php:145
163
  msgid "Create global data to use throughout your website!"
@@ -231,9 +230,9 @@ msgstr "Installerades"
231
  msgid "Purchase & Install"
232
  msgstr "Köp och installera"
233
 
234
- #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
235
- #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
236
- #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
237
  msgid "Download"
238
  msgstr "Ladda ner"
239
 
@@ -385,140 +384,143 @@ msgstr ""
385
  msgid "Back to export"
386
  msgstr "Tillbaka till export"
387
 
388
- #: core/controllers/export.php:352
389
- msgid ""
390
- "/**\n"
391
- " * Install Add-ons\n"
392
- " * \n"
393
- " * The following code will include all 4 premium Add-Ons in your theme.\n"
394
- " * Please do not attempt to include a file which does not exist. This will "
395
- "produce an error.\n"
396
- " * \n"
397
- " * All fields must be included during the 'acf/register_fields' action.\n"
398
- " * Other types of Add-ons (like the options page) can be included outside "
399
- "of this action.\n"
400
- " * \n"
401
- " * The following code assumes you have a folder 'add-ons' inside your "
402
- "theme.\n"
403
- " *\n"
404
- " * IMPORTANT\n"
405
- " * Add-ons may be included in a premium theme as outlined in the terms and "
406
- "conditions.\n"
407
- " * However, they are NOT to be included in a premium / free plugin.\n"
408
- " * For more information, please read http://www.advancedcustomfields.com/"
409
- "terms-conditions/\n"
410
- " */"
411
- msgstr ""
412
- "/**\n"
413
- " * Installera tillägg\n"
414
- " * \n"
415
- " * Följande kod kommer att inkludera samtliga fyra premiumtillägg i ditt "
416
- "tema.\n"
417
- " * Vänligen inkludera inte filer som inte existerar. Detta kommer att "
418
- "resultera i ett felmeddelande.\n"
419
- " * \n"
420
- " * Alla fält måste inkluderas under 'acf/register_fields' funktionen.\n"
421
- " * Andra fälttyper, som inställningssidan, kan läggas till utanför denna "
422
- "funktion.\n"
423
- " * \n"
424
- " * Koden antar att du har mappen 'add-ons' i ditt tema.\n"
425
- " *\n"
426
- " * VIKTIGT\n"
427
- " * Tillägg kan inkluderas i premiumteman enligt villkoren.\n"
428
- " * De får dock INTE inkluderas med andra tillägg, varken premium eller "
429
- "gratis.\n"
430
- " * Läs följande sida för mer information: http://www.advancedcustomfields."
431
- "com/terms-conditions/\n"
432
- " */"
433
-
434
- #: core/controllers/export.php:370 core/controllers/field_group.php:367
435
- #: core/controllers/field_group.php:429 core/controllers/field_groups.php:148
436
  msgid "Fields"
437
  msgstr "Fält"
438
 
439
- #: core/controllers/export.php:384
440
- msgid ""
441
- "/**\n"
442
- " * Register Field Groups\n"
443
- " *\n"
444
- " * The register_field_group function accepts 1 array which holds the "
445
- "relevant data to register a field group\n"
446
- " * You may edit the array as you see fit. However, this may result in "
447
- "errors if the array is not compatible with ACF\n"
448
- " */"
449
- msgstr ""
450
- "/**\n"
451
- " * Registrera fältgrupper\n"
452
- " *\n"
453
- " * Funktionen register_field_group tar emot en array som innehåller "
454
- "inställningarna för samtliga fältgrupper.\n"
455
- " * Du kan redigera denna array fritt. Detta kan dock leda till fel om "
456
- "ändringarna inte är kompatibla med ACF.\n"
457
- " */"
458
-
459
- #: core/controllers/export.php:435
460
- msgid "No field groups were selected"
461
- msgstr "Inga fältgrupper var valda"
462
 
463
- #: core/controllers/field_group.php:368
 
 
 
 
464
  msgid "Location"
465
  msgstr "Plats"
466
 
467
- #: core/controllers/field_group.php:369
468
  msgid "Options"
469
- msgstr "Inställningar"
470
 
471
- #: core/controllers/field_group.php:431
472
  msgid "Show Field Key:"
473
  msgstr "Visa fältnyckel:"
474
 
475
- #: core/controllers/field_group.php:432 core/fields/page_link.php:138
476
  #: core/fields/page_link.php:159 core/fields/post_object.php:328
477
  #: core/fields/post_object.php:349 core/fields/select.php:224
478
- #: core/fields/select.php:243 core/fields/taxonomy.php:341
479
- #: core/fields/user.php:285 core/fields/wysiwyg.php:229
480
- #: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232
481
  msgid "No"
482
  msgstr "Nej"
483
 
484
- #: core/controllers/field_group.php:433 core/fields/page_link.php:137
485
  #: core/fields/page_link.php:158 core/fields/post_object.php:327
486
  #: core/fields/post_object.php:348 core/fields/select.php:223
487
- #: core/fields/select.php:242 core/fields/taxonomy.php:340
488
- #: core/fields/user.php:284 core/fields/wysiwyg.php:228
489
- #: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231
490
  msgid "Yes"
491
  msgstr "Ja"
492
 
493
- #: core/controllers/field_group.php:610
494
  msgid "Front Page"
495
  msgstr "Förstasida"
496
 
497
- #: core/controllers/field_group.php:611
498
  msgid "Posts Page"
499
  msgstr "Inläggssida"
500
 
501
- #: core/controllers/field_group.php:612
502
  msgid "Top Level Page (parent of 0)"
503
  msgstr "Toppsida (förälder satt till 0)"
504
 
505
- #: core/controllers/field_group.php:613
506
  msgid "Parent Page (has children)"
507
  msgstr "Föräldersida (har undersidor)"
508
 
509
- #: core/controllers/field_group.php:614
510
  msgid "Child Page (has parent)"
511
  msgstr "Undersida (har föräldersida)"
512
 
513
- #: core/controllers/field_group.php:622
514
  msgid "Default Template"
515
  msgstr "Standardmall"
516
 
517
- #: core/controllers/field_group.php:714 core/controllers/field_group.php:735
518
- #: core/controllers/field_group.php:742 core/fields/file.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
519
  #: core/fields/image.php:170 core/fields/page_link.php:109
520
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
521
- #: core/fields/relationship.php:553 core/fields/relationship.php:577
522
  #: core/fields/user.php:229
523
  msgid "All"
524
  msgstr "Alla"
@@ -559,7 +561,7 @@ msgstr "Funktioner"
559
  msgid "Actions"
560
  msgstr "Actions"
561
 
562
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:596
563
  msgid "Filters"
564
  msgstr "Filter"
565
 
@@ -796,15 +798,15 @@ msgstr "Utan er hade denna release aldrig varit möjlig!"
796
  msgid "Changelog for"
797
  msgstr "Förändringsloggen för"
798
 
799
- #: core/controllers/field_groups.php:396
800
  msgid "Learn more"
801
  msgstr "Läs mer"
802
 
803
- #: core/controllers/field_groups.php:402
804
  msgid "Overview"
805
  msgstr "Översikt"
806
 
807
- #: core/controllers/field_groups.php:404
808
  msgid ""
809
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
810
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
@@ -814,7 +816,7 @@ msgstr ""
814
  "via ACFs webbshop). Från och med version 4 är alla tillägg separata plugins "
815
  "som laddas ner, installeras och uppdateras individuellt."
816
 
817
- #: core/controllers/field_groups.php:406
818
  msgid ""
819
  "This page will assist you in downloading and installing each available Add-"
820
  "on."
@@ -822,51 +824,51 @@ msgstr ""
822
  "Denna sida kommer att hjälpa dig ladda ner och installera alla tillgängliga "
823
  "tillägg."
824
 
825
- #: core/controllers/field_groups.php:408
826
  msgid "Available Add-ons"
827
  msgstr "Tillgängliga tillägg"
828
 
829
- #: core/controllers/field_groups.php:410
830
  msgid "The following Add-ons have been detected as activated on this website."
831
  msgstr "Följande tillägg har upptäckts och aktiverats på denna webbplats."
832
 
833
- #: core/controllers/field_groups.php:423
834
  msgid "Name"
835
  msgstr "Namn"
836
 
837
- #: core/controllers/field_groups.php:424
838
  msgid "Activation Code"
839
  msgstr "Aktiveringskod"
840
 
841
- #: core/controllers/field_groups.php:456
842
  msgid "Flexible Content"
843
  msgstr "Flexibelt innehåll"
844
 
845
- #: core/controllers/field_groups.php:466
846
  msgid "Installation"
847
  msgstr "Installation"
848
 
849
- #: core/controllers/field_groups.php:468
850
  msgid "For each Add-on available, please perform the following:"
851
  msgstr "Gör följande för varje tillgängligt tillägg:"
852
 
853
- #: core/controllers/field_groups.php:470
854
  msgid "Download the Add-on plugin (.zip file) to your desktop"
855
  msgstr "Ladda ner tillägget (.zip-fil) till ditt skrivbord"
856
 
857
- #: core/controllers/field_groups.php:471
858
  msgid "Navigate to"
859
  msgstr "Gå till"
860
 
861
- #: core/controllers/field_groups.php:471
862
  msgid "Plugins > Add New > Upload"
863
  msgstr "Tillägg > Lägg till > Ladda upp"
864
 
865
- #: core/controllers/field_groups.php:472
866
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
867
  msgstr "Använd uppladdaren för att välja och installera tillägget (.zip-filen)"
868
 
869
- #: core/controllers/field_groups.php:473
870
  msgid ""
871
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
872
  "link"
@@ -874,23 +876,23 @@ msgstr ""
874
  "När tillägget har laddats upp och installerats klickar du på länken "
875
  "\"Aktivera tillägg\""
876
 
877
- #: core/controllers/field_groups.php:474
878
  msgid "The Add-on is now installed and activated!"
879
  msgstr "Tillägget har nu installerats och aktiverats!"
880
 
881
- #: core/controllers/field_groups.php:488
882
  msgid "Awesome. Let's get to work"
883
  msgstr "Grymt! Dags att återgå till arbetet."
884
 
885
- #: core/controllers/input.php:498
886
  msgid "Expand Details"
887
  msgstr "Visa detaljer"
888
 
889
- #: core/controllers/input.php:499
890
  msgid "Collapse Details"
891
  msgstr "Dölj detaljer"
892
 
893
- #: core/controllers/input.php:502
894
  msgid "Validation Failed. One or more fields below are required."
895
  msgstr "Valideringen misslyckades. Ett eller flera fält nedan måste fyllas i."
896
 
@@ -922,7 +924,7 @@ msgstr "Flyttar användarfält från wp_options till wp_usermeta"
922
  msgid "Basic"
923
  msgstr "Enkel"
924
 
925
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
926
  msgid "Checkbox"
927
  msgstr "Kryssruta"
928
 
@@ -931,51 +933,51 @@ msgstr "Kryssruta"
931
  msgid "Choice"
932
  msgstr "Alternativ"
933
 
934
- #: core/fields/checkbox.php:137 core/fields/radio.php:144
935
  #: core/fields/select.php:177
936
  msgid "Choices"
937
  msgstr "Alternativ"
938
 
939
- #: core/fields/checkbox.php:138 core/fields/select.php:178
940
  msgid "Enter each choice on a new line."
941
  msgstr "Ange ett alternativ per rad"
942
 
943
- #: core/fields/checkbox.php:139 core/fields/select.php:179
944
  msgid "For more control, you may specify both a value and label like this:"
945
  msgstr "För mer kontroll kan du specificera både värde och etikett enligt:"
946
 
947
- #: core/fields/checkbox.php:140 core/fields/radio.php:150
948
  #: core/fields/select.php:180
949
  msgid "red : Red"
950
  msgstr "röd : Röd"
951
 
952
- #: core/fields/checkbox.php:140 core/fields/radio.php:151
953
  #: core/fields/select.php:180
954
  msgid "blue : Blue"
955
  msgstr "blå : Blå"
956
 
957
- #: core/fields/checkbox.php:157 core/fields/color_picker.php:89
958
- #: core/fields/email.php:69 core/fields/number.php:116
959
  #: core/fields/radio.php:193 core/fields/select.php:197
960
  #: core/fields/text.php:116 core/fields/textarea.php:96
961
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
962
  msgid "Default Value"
963
  msgstr "Standardvärde"
964
 
965
- #: core/fields/checkbox.php:158 core/fields/select.php:198
966
  msgid "Enter each default value on a new line"
967
  msgstr "Ange varje värde på en ny rad"
968
 
969
- #: core/fields/checkbox.php:174 core/fields/message.php:20
970
  #: core/fields/radio.php:209 core/fields/tab.php:20
971
  msgid "Layout"
972
  msgstr "Layout"
973
 
974
- #: core/fields/checkbox.php:185 core/fields/radio.php:220
975
  msgid "Vertical"
976
  msgstr "Vertikalt"
977
 
978
- #: core/fields/checkbox.php:186 core/fields/radio.php:221
979
  msgid "Horizontal"
980
  msgstr "Horisontellt"
981
 
@@ -983,7 +985,8 @@ msgstr "Horisontellt"
983
  msgid "Color Picker"
984
  msgstr "Färgväljare"
985
 
986
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
987
  msgid "jQuery"
988
  msgstr "jQuery"
989
 
@@ -995,11 +998,49 @@ msgstr "Dummy"
995
  msgid "Email"
996
  msgstr "E-post"
997
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  #: core/fields/file.php:19
999
  msgid "File"
1000
  msgstr "Fil"
1001
 
1002
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
1003
  msgid "Content"
1004
  msgstr "Innehåll"
1005
 
@@ -1019,39 +1060,67 @@ msgstr "Uppdatera fil"
1019
  msgid "uploaded to this post"
1020
  msgstr "uppladdade till detta inlägg"
1021
 
1022
- #: core/fields/file.php:121
1023
  msgid "No File Selected"
1024
  msgstr "Ingen fil vald"
1025
 
1026
- #: core/fields/file.php:121
1027
  msgid "Add File"
1028
  msgstr "Lägg till fil"
1029
 
1030
- #: core/fields/file.php:151 core/fields/image.php:118
1031
- #: core/fields/taxonomy.php:365
1032
  msgid "Return Value"
1033
  msgstr "Returvärde"
1034
 
1035
- #: core/fields/file.php:162
1036
  msgid "File Object"
1037
  msgstr "Filobjekt"
1038
 
1039
- #: core/fields/file.php:163
1040
  msgid "File URL"
1041
  msgstr "Filadress"
1042
 
1043
- #: core/fields/file.php:164
1044
  msgid "File ID"
1045
  msgstr "Filens ID"
1046
 
1047
- #: core/fields/file.php:173 core/fields/image.php:158
1048
  msgid "Library"
1049
  msgstr "Bibliotek"
1050
 
1051
- #: core/fields/file.php:185 core/fields/image.php:171
1052
  msgid "Uploaded to post"
1053
  msgstr "Uppladdade till detta inlägg"
1054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1055
  #: core/fields/image.php:19
1056
  msgid "Image"
1057
  msgstr "Bild"
@@ -1072,7 +1141,7 @@ msgstr "Uppdatera bild"
1072
  msgid "Remove"
1073
  msgstr "Radera"
1074
 
1075
- #: core/fields/image.php:84 core/views/meta_box_fields.php:122
1076
  msgid "Edit"
1077
  msgstr "Redigera"
1078
 
@@ -1084,7 +1153,7 @@ msgstr "Ingen bild vald"
1084
  msgid "Add Image"
1085
  msgstr "Lägg till bild"
1086
 
1087
- #: core/fields/image.php:119
1088
  msgid "Specify the returned value on front end"
1089
  msgstr "Välj vilken typ av värde som ska returneras"
1090
 
@@ -1129,42 +1198,17 @@ msgstr "Notera att all text först kommer att passera genom funktionen"
1129
  msgid "Number"
1130
  msgstr "Nummer"
1131
 
1132
- #: core/fields/number.php:132
1133
- msgid "Min"
1134
- msgstr "Min"
1135
-
1136
- #: core/fields/number.php:133
1137
- msgid "Specifies the minimum value allowed"
1138
- msgstr "Bestämmer det minsta tillåtna värdet"
1139
-
1140
- #: core/fields/number.php:149
1141
- msgid "Max"
1142
- msgstr "Max"
1143
-
1144
- #: core/fields/number.php:150
1145
- msgid "Specifies the maximim value allowed"
1146
- msgstr "Bestämmer det högsta tillåtna värdet"
1147
-
1148
- #: core/fields/number.php:166
1149
- msgid "Step"
1150
- msgstr "Steg"
1151
-
1152
- #: core/fields/number.php:167
1153
- msgid "Specifies the legal number intervals"
1154
- msgstr "Bestämmer intervaller mellan tillåtna värden"
1155
-
1156
- #: core/fields/number.php:183 core/fields/text.php:165
1157
- #: core/fields/textarea.php:146
1158
- msgid "Placeholder Text"
1159
- msgstr "Platshållartext"
1160
 
1161
- #: core/fields/number.php:197 core/fields/text.php:180
1162
- msgid "Prepend"
1163
- msgstr "Lägg till före"
1164
 
1165
- #: core/fields/number.php:211 core/fields/text.php:195
1166
- msgid "Append"
1167
- msgstr "Lägg till efter"
1168
 
1169
  #: core/fields/page_link.php:18
1170
  msgid "Page Link"
@@ -1177,13 +1221,13 @@ msgid "Relational"
1177
  msgstr "Relation"
1178
 
1179
  #: core/fields/page_link.php:103 core/fields/post_object.php:268
1180
- #: core/fields/relationship.php:547 core/fields/relationship.php:626
1181
  #: core/views/meta_box_location.php:75
1182
  msgid "Post Type"
1183
  msgstr "Inläggstyp"
1184
 
1185
  #: core/fields/page_link.php:127 core/fields/post_object.php:317
1186
- #: core/fields/select.php:214 core/fields/taxonomy.php:331
1187
  #: core/fields/user.php:275
1188
  msgid "Allow Null?"
1189
  msgstr "Tillått nollvärde?"
@@ -1201,7 +1245,7 @@ msgstr "Lösenord"
1201
  msgid "Post Object"
1202
  msgstr "Inläggsobjekt"
1203
 
1204
- #: core/fields/post_object.php:292 core/fields/relationship.php:571
1205
  msgid "Filter from Taxonomy"
1206
  msgstr "Filtera från taxonomi"
1207
 
@@ -1209,7 +1253,7 @@ msgstr "Filtera från taxonomi"
1209
  msgid "Radio Button"
1210
  msgstr "Alternativknapp"
1211
 
1212
- #: core/fields/radio.php:102 core/views/meta_box_location.php:90
1213
  msgid "Other"
1214
  msgstr "Annat"
1215
 
@@ -1237,48 +1281,60 @@ msgstr "Spara \"other\"-värden till fältets alternativ"
1237
  msgid "Relationship"
1238
  msgstr "Relation"
1239
 
1240
- #: core/fields/relationship.php:28
1241
  msgid "Maximum values reached ( {max} values )"
1242
  msgstr "Maximalt antal värden nåddes ( maximalt {max} värden )"
1243
 
1244
- #: core/fields/relationship.php:401
1245
  msgid "Search..."
1246
  msgstr "Sök..."
1247
 
1248
- #: core/fields/relationship.php:414
1249
  msgid "Filter by post type"
1250
  msgstr "Filtrera inläggstyp"
1251
 
1252
- #: core/fields/relationship.php:605
 
 
 
 
 
 
 
 
 
 
 
 
1253
  msgid "Search"
1254
  msgstr "Sök"
1255
 
1256
- #: core/fields/relationship.php:606
1257
  msgid "Post Type Select"
1258
  msgstr "Välj inläggstyp"
1259
 
1260
- #: core/fields/relationship.php:614
1261
  msgid "Elements"
1262
  msgstr "Element"
1263
 
1264
- #: core/fields/relationship.php:615
1265
  msgid "Selected elements will be displayed in each result"
1266
  msgstr "Valda element visas i varje resultat"
1267
 
1268
- #: core/fields/relationship.php:624 core/views/meta_box_options.php:103
1269
  msgid "Featured Image"
1270
  msgstr "Utvald bild"
1271
 
1272
- #: core/fields/relationship.php:625
1273
  msgid "Post Title"
1274
  msgstr "Inläggstitel"
1275
 
1276
- #: core/fields/relationship.php:637
1277
  msgid "Maximum posts"
1278
  msgstr "Maximalt antal inlägg"
1279
 
1280
- #: core/fields/select.php:18 core/fields/taxonomy.php:322
1281
- #: core/fields/user.php:266
1282
  msgid "Select"
1283
  msgstr "Välj"
1284
 
@@ -1288,62 +1344,69 @@ msgstr "Flik"
1288
 
1289
  #: core/fields/tab.php:68
1290
  msgid ""
1291
- "All fields proceeding this \"tab field\" (or until another \"tab field\" is "
1292
- "defined) will appear grouped on the edit screen."
1293
  msgstr ""
1294
- "Alla fält efter detta \"flikfält\" (eller fram till nästa flikfält) kommer "
1295
- "att grupperas tillsammans i redigeringsvyn."
1296
 
1297
  #: core/fields/tab.php:69
1298
- msgid "You can use multiple tabs to break up your fields into sections."
 
 
1299
  msgstr ""
1300
- "Du kan använda flera flikar för att dela upp fält i sektioner eller grupper."
 
 
 
 
 
1301
 
1302
- #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
1303
  msgid "Taxonomy"
1304
  msgstr "Taxonomi"
1305
 
1306
- #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
1307
  msgid "None"
1308
  msgstr "Ingen"
1309
 
1310
- #: core/fields/taxonomy.php:306 core/fields/user.php:251
1311
- #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173
1312
  msgid "Field Type"
1313
  msgstr "Fälttyp"
1314
 
1315
- #: core/fields/taxonomy.php:316 core/fields/user.php:260
1316
  msgid "Multiple Values"
1317
  msgstr "Multipla värden"
1318
 
1319
- #: core/fields/taxonomy.php:318 core/fields/user.php:262
1320
  msgid "Multi Select"
1321
  msgstr "Flera värden"
1322
 
1323
- #: core/fields/taxonomy.php:320 core/fields/user.php:264
1324
  msgid "Single Value"
1325
  msgstr "Ett värde"
1326
 
1327
- #: core/fields/taxonomy.php:321
1328
  msgid "Radio Buttons"
1329
  msgstr "Alternativknappar"
1330
 
1331
- #: core/fields/taxonomy.php:350
1332
  msgid "Load & Save Terms to Post"
1333
  msgstr "Ladda eller spara termer till inlägg"
1334
 
1335
- #: core/fields/taxonomy.php:358
1336
  msgid ""
1337
  "Load value based on the post's terms and update the post's terms on save"
1338
  msgstr ""
1339
  "Ladda värde baserat på inläggets termer och uppdatera dessa när inlägget "
1340
  "sparas"
1341
 
1342
- #: core/fields/taxonomy.php:375
1343
  msgid "Term Object"
1344
  msgstr "Termobjekt"
1345
 
1346
- #: core/fields/taxonomy.php:376
1347
  msgid "Term ID"
1348
  msgstr "Term-ID"
1349
 
@@ -1351,52 +1414,35 @@ msgstr "Term-ID"
1351
  msgid "Text"
1352
  msgstr "Text"
1353
 
1354
- #: core/fields/text.php:117 core/fields/textarea.php:97
1355
- #: core/fields/wysiwyg.php:172
1356
- msgid "Appears when creating a new post"
1357
- msgstr "Visas när ett nytt inlägg skapas"
1358
-
1359
- #: core/fields/text.php:131 core/fields/textarea.php:111
1360
  msgid "Formatting"
1361
  msgstr "Formatering"
1362
 
1363
- #: core/fields/text.php:132 core/fields/textarea.php:112
1364
  msgid "Effects value on front end"
1365
  msgstr "Påverkar hur värdet skrivs ut"
1366
 
1367
- #: core/fields/text.php:141 core/fields/textarea.php:121
1368
  msgid "No formatting"
1369
  msgstr "Ingen formatering"
1370
 
1371
- #: core/fields/text.php:142 core/fields/textarea.php:123
1372
  msgid "Convert HTML into tags"
1373
  msgstr "Konvertera HTML till taggar"
1374
 
1375
- #: core/fields/text.php:150 core/fields/textarea.php:131
1376
  msgid "Character Limit"
1377
  msgstr "Maximalt antal tecken"
1378
 
1379
- #: core/fields/text.php:151 core/fields/textarea.php:132
1380
  msgid "Leave blank for no limit"
1381
  msgstr "Lämna tomt för att inte begränsa"
1382
 
1383
- #: core/fields/text.php:166 core/fields/textarea.php:147
1384
- msgid "Appears within the input"
1385
- msgstr "Visas inuti fältet"
1386
-
1387
- #: core/fields/text.php:181
1388
- msgid "Appears before the input"
1389
- msgstr "Visas före fältet"
1390
-
1391
- #: core/fields/text.php:196
1392
- msgid "Appears after the input"
1393
- msgstr "Visas efter fältet"
1394
-
1395
  #: core/fields/textarea.php:19
1396
  msgid "Text Area"
1397
  msgstr "Textfält"
1398
 
1399
- #: core/fields/textarea.php:122
1400
  msgid "Convert new lines into &lt;br /&gt; tags"
1401
  msgstr "Konvertera radbrytnignar till &lt;br /&gt;-taggar"
1402
 
@@ -1408,7 +1454,7 @@ msgstr "Sant / Falskt"
1408
  msgid "eg. Show extra content"
1409
  msgstr "exempel: Visa extra innehåll"
1410
 
1411
- #: core/fields/user.php:18
1412
  msgid "User"
1413
  msgstr "Användare"
1414
 
@@ -1416,39 +1462,39 @@ msgstr "Användare"
1416
  msgid "Filter by role"
1417
  msgstr "Filtrera efter roll"
1418
 
1419
- #: core/fields/wysiwyg.php:19
1420
  msgid "Wysiwyg Editor"
1421
  msgstr "WYSIWYG-editor"
1422
 
1423
- #: core/fields/wysiwyg.php:186
1424
  msgid "Toolbar"
1425
  msgstr "Verktygsfält"
1426
 
1427
- #: core/fields/wysiwyg.php:218
1428
  msgid "Show Media Upload Buttons?"
1429
  msgstr "Visa knappar för mediauppladdning"
1430
 
1431
- #: core/fields/date_picker/date_picker.php:22
1432
  msgid "Date Picker"
1433
  msgstr "Datumväljare"
1434
 
1435
- #: core/fields/date_picker/date_picker.php:30
1436
  msgid "Done"
1437
  msgstr "Klar"
1438
 
1439
- #: core/fields/date_picker/date_picker.php:31
1440
  msgid "Today"
1441
  msgstr "Idag"
1442
 
1443
- #: core/fields/date_picker/date_picker.php:34
1444
  msgid "Show a different month"
1445
  msgstr "Visa en annan månad"
1446
 
1447
- #: core/fields/date_picker/date_picker.php:105
1448
  msgid "Save format"
1449
  msgstr "Lagringsformat"
1450
 
1451
- #: core/fields/date_picker/date_picker.php:106
1452
  msgid ""
1453
  "This format will determin the value saved to the database and returned via "
1454
  "the API"
@@ -1456,30 +1502,30 @@ msgstr ""
1456
  "Detta format avgör hur värdet sparas i databasen och returneras via "
1457
  "tilläggets API"
1458
 
1459
- #: core/fields/date_picker/date_picker.php:107
1460
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1461
  msgstr "\"yymmdd\" är det mest flexibla formatet. Läs mer om"
1462
 
1463
- #: core/fields/date_picker/date_picker.php:107
1464
- #: core/fields/date_picker/date_picker.php:123
1465
  msgid "jQuery date formats"
1466
  msgstr "jQuery datumformat"
1467
 
1468
- #: core/fields/date_picker/date_picker.php:121
1469
  msgid "Display format"
1470
  msgstr "Visningsformat"
1471
 
1472
- #: core/fields/date_picker/date_picker.php:122
1473
  msgid "This format will be seen by the user when entering a value"
1474
  msgstr "Detta format är det som visas när användaren anger ett värde"
1475
 
1476
- #: core/fields/date_picker/date_picker.php:123
1477
  msgid ""
1478
  "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1479
  "about"
1480
  msgstr "\"yy-mm-dd\" är set vanligaste visningsformatet. Läs mer om"
1481
 
1482
- #: core/fields/date_picker/date_picker.php:137
1483
  msgid "Week Starts On"
1484
  msgstr "Veckor börjar på"
1485
 
@@ -1491,48 +1537,23 @@ msgstr "Nytt fält"
1491
  msgid "Field type does not exist"
1492
  msgstr "Fälttypen finns inte"
1493
 
1494
- #: core/views/meta_box_fields.php:63
1495
- msgid "Move to trash. Are you sure?"
1496
- msgstr "Flytta till papperskorgen. Är du säker?"
1497
-
1498
- #: core/views/meta_box_fields.php:64
1499
- msgid "checked"
1500
- msgstr "vald"
1501
-
1502
- #: core/views/meta_box_fields.php:65
1503
- msgid "No toggle fields available"
1504
- msgstr "Det finns inga aktiveringsbara fält"
1505
-
1506
- #: core/views/meta_box_fields.php:66
1507
- msgid "Field group title is required"
1508
- msgstr "Fältgruppen måste ha en titel"
1509
-
1510
- #: core/views/meta_box_fields.php:67
1511
- msgid "copy"
1512
- msgstr "kopiera"
1513
-
1514
- #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1515
- #: core/views/meta_box_location.php:158
1516
- msgid "or"
1517
- msgstr "eller"
1518
-
1519
- #: core/views/meta_box_fields.php:88
1520
  msgid "Field Order"
1521
  msgstr "Ordning på fält"
1522
 
1523
- #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
1524
  msgid "Field Label"
1525
  msgstr "Fältetikett"
1526
 
1527
- #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
1528
  msgid "Field Name"
1529
  msgstr "Fältnamn"
1530
 
1531
- #: core/views/meta_box_fields.php:92
1532
  msgid "Field Key"
1533
  msgstr "Fältnyckel"
1534
 
1535
- #: core/views/meta_box_fields.php:104
1536
  msgid ""
1537
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1538
  "first field."
@@ -1540,91 +1561,91 @@ msgstr ""
1540
  "Inga fält. Klicka på knappen <strong>+ Lägg till fält</strong> för att skapa "
1541
  "ditt första fält."
1542
 
1543
- #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
1544
  msgid "Edit this Field"
1545
  msgstr "Redigera detta fält"
1546
 
1547
- #: core/views/meta_box_fields.php:123
1548
  msgid "Read documentation for this field"
1549
  msgstr "Läs dokumentationen för detta fält"
1550
 
1551
- #: core/views/meta_box_fields.php:123
1552
  msgid "Docs"
1553
  msgstr "Dokumentation"
1554
 
1555
- #: core/views/meta_box_fields.php:124
1556
  msgid "Duplicate this Field"
1557
  msgstr "Duplicera detta fält"
1558
 
1559
- #: core/views/meta_box_fields.php:124
1560
  msgid "Duplicate"
1561
  msgstr "Duplicera"
1562
 
1563
- #: core/views/meta_box_fields.php:125
1564
  msgid "Delete this Field"
1565
  msgstr "Radera detta fält"
1566
 
1567
- #: core/views/meta_box_fields.php:125
1568
  msgid "Delete"
1569
  msgstr "Radera"
1570
 
1571
- #: core/views/meta_box_fields.php:142
1572
  msgid "This is the name which will appear on the EDIT page"
1573
  msgstr "Detta namn kommer att visas i redigeringsvyn"
1574
 
1575
- #: core/views/meta_box_fields.php:158
1576
  msgid "Single word, no spaces. Underscores and dashes allowed"
1577
  msgstr "Ett ord utan mellanslag. Understreck och bindestreck är tillåtna"
1578
 
1579
- #: core/views/meta_box_fields.php:187
1580
  msgid "Field Instructions"
1581
  msgstr "Instruktioner för fält"
1582
 
1583
- #: core/views/meta_box_fields.php:188
1584
  msgid "Instructions for authors. Shown when submitting data"
1585
  msgstr "Instruktioner till författare. Visas när data anges"
1586
 
1587
- #: core/views/meta_box_fields.php:200
1588
  msgid "Required?"
1589
  msgstr "Obligatorisk?"
1590
 
1591
- #: core/views/meta_box_fields.php:223
1592
  msgid "Conditional Logic"
1593
  msgstr "Visningsvillkor"
1594
 
1595
- #: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:116
1596
  msgid "is equal to"
1597
  msgstr "är lika med"
1598
 
1599
- #: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:117
1600
  msgid "is not equal to"
1601
  msgstr "inte är lika med"
1602
 
1603
- #: core/views/meta_box_fields.php:293
1604
  msgid "Show this field when"
1605
  msgstr "Visa detta fält när"
1606
 
1607
- #: core/views/meta_box_fields.php:299
1608
  msgid "all"
1609
  msgstr "alla"
1610
 
1611
- #: core/views/meta_box_fields.php:300
1612
  msgid "any"
1613
  msgstr "någon"
1614
 
1615
- #: core/views/meta_box_fields.php:303
1616
  msgid "these rules are met"
1617
  msgstr "av dessa villkor uppfylls"
1618
 
1619
- #: core/views/meta_box_fields.php:317
1620
  msgid "Close Field"
1621
  msgstr "Stäng fält"
1622
 
1623
- #: core/views/meta_box_fields.php:330
1624
  msgid "Drag and drop to reorder"
1625
  msgstr "Dra och släpp för att ändra ordning"
1626
 
1627
- #: core/views/meta_box_fields.php:331
1628
  msgid "+ Add Field"
1629
  msgstr "+ Lägg till fält"
1630
 
@@ -1675,26 +1696,26 @@ msgid "Post Format"
1675
  msgstr "Inläggsformat"
1676
 
1677
  #: core/views/meta_box_location.php:88
 
 
 
 
1678
  msgid "Post Taxonomy"
1679
  msgstr "Inläggstaxonomi"
1680
 
1681
- #: core/views/meta_box_location.php:91
1682
- msgid "Taxonomy Term (Add / Edit)"
1683
- msgstr "Taxonomiterm (Lägg till / Redigera)"
1684
-
1685
  #: core/views/meta_box_location.php:92
1686
- msgid "User (Add / Edit)"
1687
- msgstr "Användare (Lägg till / Redigera)"
1688
 
1689
  #: core/views/meta_box_location.php:93
1690
- msgid "Media Attachment (Add / Edit)"
1691
- msgstr "Mediabilaga (Lägg till / Redigera)"
1692
 
1693
- #: core/views/meta_box_location.php:145
1694
  msgid "and"
1695
  msgstr "och"
1696
 
1697
- #: core/views/meta_box_location.php:160
1698
  msgid "Add rule group"
1699
  msgstr "Lägg till regelgrupp"
1700
 
@@ -1711,34 +1732,38 @@ msgid "Position"
1711
  msgstr "Plats"
1712
 
1713
  #: core/views/meta_box_options.php:52
1714
- msgid "Normal"
1715
- msgstr "Normal"
1716
 
1717
  #: core/views/meta_box_options.php:53
 
 
 
 
1718
  msgid "Side"
1719
  msgstr "Sidopanel"
1720
 
1721
- #: core/views/meta_box_options.php:62
1722
  msgid "Style"
1723
  msgstr "Stil"
1724
 
1725
- #: core/views/meta_box_options.php:72
1726
  msgid "No Metabox"
1727
  msgstr "Ingen metabox"
1728
 
1729
- #: core/views/meta_box_options.php:73
1730
  msgid "Standard Metabox"
1731
  msgstr "Vanlig metabox"
1732
 
1733
- #: core/views/meta_box_options.php:82
1734
  msgid "Hide on screen"
1735
  msgstr "Dölj på sida"
1736
 
1737
- #: core/views/meta_box_options.php:83
1738
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1739
  msgstr "<b>Välj</b> objekt för att <b>dölja</b> dem från redigeringsvyn"
1740
 
1741
- #: core/views/meta_box_options.php:84
1742
  msgid ""
1743
  "If multiple field groups appear on an edit screen, the first field group's "
1744
  "options will be used. (the one with the lowest order number)"
@@ -1746,50 +1771,139 @@ msgstr ""
1746
  "Om flera fältgrupper visas i redigeringsvyn kommer första gruppens "
1747
  "inställningar att användas (den med lägst ordningsnummer)"
1748
 
1749
- #: core/views/meta_box_options.php:94
1750
  msgid "Content Editor"
1751
  msgstr "Innehållseditor"
1752
 
1753
- #: core/views/meta_box_options.php:95
1754
  msgid "Excerpt"
1755
  msgstr "Utdrag"
1756
 
1757
- #: core/views/meta_box_options.php:97
1758
  msgid "Discussion"
1759
  msgstr "Diskussion"
1760
 
1761
- #: core/views/meta_box_options.php:98
1762
  msgid "Comments"
1763
  msgstr "Kommentarer"
1764
 
1765
- #: core/views/meta_box_options.php:99
1766
  msgid "Revisions"
1767
  msgstr "Revisioner"
1768
 
1769
- #: core/views/meta_box_options.php:100
1770
  msgid "Slug"
1771
  msgstr "Permalänk"
1772
 
1773
- #: core/views/meta_box_options.php:101
1774
  msgid "Author"
1775
  msgstr "Författare"
1776
 
1777
- #: core/views/meta_box_options.php:102
1778
  msgid "Format"
1779
  msgstr "Format"
1780
 
1781
- #: core/views/meta_box_options.php:104
1782
  msgid "Categories"
1783
  msgstr "Kategorier"
1784
 
1785
- #: core/views/meta_box_options.php:105
1786
  msgid "Tags"
1787
  msgstr "Etiketter"
1788
 
1789
- #: core/views/meta_box_options.php:106
1790
  msgid "Send Trackbacks"
1791
  msgstr "Skicka trackbacks"
1792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1793
  #~ msgid "eg: #ffffff"
1794
  #~ msgstr "exempel: #ffffff"
1795
 
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Advanced Custom Fields 4.3.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2013-09-25 22:42+0100\n"
8
+ "PO-Revision-Date: 2013-09-25 22:42+0100\n"
9
  "Last-Translator: Mikael Jorhult <mikael@jorhult.se>\n"
10
  "Language-Team: Mikael Jorhult <mikael@jorhult.se>\n"
11
  "Language: Swedish\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: acf.php:436
23
  msgid "Field&nbsp;Groups"
24
  msgstr "Fältgrupper"
25
 
26
+ #: acf.php:437 core/controllers/field_groups.php:214
27
  msgid "Advanced Custom Fields"
28
  msgstr "Advanced Custom Fields"
29
 
30
+ #: acf.php:438
31
  msgid "Add New"
32
  msgstr "Lägg till ny"
33
 
34
+ #: acf.php:439
35
  msgid "Add New Field Group"
36
  msgstr "Lägg till ny fältgrupp"
37
 
38
+ #: acf.php:440
39
  msgid "Edit Field Group"
40
  msgstr "Redigera fältgrupp"
41
 
42
+ #: acf.php:441
43
  msgid "New Field Group"
44
  msgstr "Ny fältgrupp"
45
 
46
+ #: acf.php:442
47
  msgid "View Field Group"
48
  msgstr "Visa fältgrupp"
49
 
50
+ #: acf.php:443
51
  msgid "Search Field Groups"
52
  msgstr "Sök fältgrupp"
53
 
54
+ #: acf.php:444
55
  msgid "No Field Groups found"
56
  msgstr "Inga fältgrupper hittades"
57
 
58
+ #: acf.php:445
59
  msgid "No Field Groups found in Trash"
60
  msgstr "Inga fältgrupper finns i papperskorgen"
61
 
62
+ #: acf.php:543 core/views/meta_box_options.php:98
63
  msgid "Custom Fields"
64
  msgstr "Egna fält"
65
 
66
+ #: acf.php:561 acf.php:564
67
  msgid "Field group updated."
68
  msgstr "Fältgruppen uppdaterades."
69
 
70
+ #: acf.php:562
71
  msgid "Custom field updated."
72
  msgstr "Eget fält uppdaterades."
73
 
74
+ #: acf.php:563
75
  msgid "Custom field deleted."
76
  msgstr "Eget fält raderades."
77
 
78
+ #: acf.php:566
79
  #, php-format
80
  msgid "Field group restored to revision from %s"
81
  msgstr "Fältgruppen återställdes till revision %s"
82
 
83
+ #: acf.php:567
84
  msgid "Field group published."
85
  msgstr "Fältgruppen publicerades."
86
 
87
+ #: acf.php:568
88
  msgid "Field group saved."
89
  msgstr "Fältgruppen sparades."
90
 
91
+ #: acf.php:569
92
  msgid "Field group submitted."
93
  msgstr "Fältgruppen skickades."
94
 
95
+ #: acf.php:570
96
  msgid "Field group scheduled for."
97
  msgstr "Fältgruppen schemalades."
98
 
99
+ #: acf.php:571
100
  msgid "Field group draft updated."
101
  msgstr "Utkastet till fältgrupp uppdaterades."
102
 
103
+ #: acf.php:706
104
  msgid "Thumbnail"
105
  msgstr "Tumnagel"
106
 
107
+ #: acf.php:707
108
  msgid "Medium"
109
  msgstr "Medium"
110
 
111
+ #: acf.php:708
112
  msgid "Large"
113
  msgstr "Stor"
114
 
115
+ #: acf.php:709
116
  msgid "Full"
117
  msgstr "Full"
118
 
119
+ #: core/api.php:1097
120
  msgid "Update"
121
  msgstr "Uppdatera"
122
 
123
+ #: core/api.php:1098
124
  msgid "Post updated"
125
  msgstr "Inlägget uppdaterades"
126
 
136
  msgid "Add-ons"
137
  msgstr "Tillägg"
138
 
139
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:433
140
  msgid "Repeater Field"
141
  msgstr "Upprepningsfält"
142
 
146
  "Skapa obegränsat antal rader av upprepningsbar data med detta mångsidiga "
147
  "verktyg!"
148
 
149
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:441
150
  msgid "Gallery Field"
151
  msgstr "Gallerifält"
152
 
154
  msgid "Create image galleries in a simple and intuitive interface!"
155
  msgstr "Skapa bildgallerier i ett enkelt och intuitivt gränssnitt!"
156
 
157
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:449
 
158
  msgid "Options Page"
159
+ msgstr "Alternativsida"
160
 
161
  #: core/controllers/addons.php:145
162
  msgid "Create global data to use throughout your website!"
230
  msgid "Purchase & Install"
231
  msgstr "Köp och installera"
232
 
233
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:426
234
+ #: core/controllers/field_groups.php:435 core/controllers/field_groups.php:443
235
+ #: core/controllers/field_groups.php:451 core/controllers/field_groups.php:459
236
  msgid "Download"
237
  msgstr "Ladda ner"
238
 
384
  msgid "Back to export"
385
  msgstr "Tillbaka till export"
386
 
387
+ #: core/controllers/export.php:400
388
+ msgid "No field groups were selected"
389
+ msgstr "Inga fältgrupper var valda"
390
+
391
+ #: core/controllers/field_group.php:358
392
+ msgid "Move to trash. Are you sure?"
393
+ msgstr "Flytta till papperskorgen. Är du säker?"
394
+
395
+ #: core/controllers/field_group.php:359
396
+ msgid "checked"
397
+ msgstr "vald"
398
+
399
+ #: core/controllers/field_group.php:360
400
+ msgid "No toggle fields available"
401
+ msgstr "Det finns inga aktiveringsbara fält"
402
+
403
+ #: core/controllers/field_group.php:361
404
+ msgid "Field group title is required"
405
+ msgstr "Fältgruppen måste ha en titel"
406
+
407
+ #: core/controllers/field_group.php:362
408
+ msgid "copy"
409
+ msgstr "kopiera"
410
+
411
+ #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
412
+ #: core/views/meta_box_location.php:159
413
+ msgid "or"
414
+ msgstr "eller"
415
+
416
+ #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
417
+ #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Fields"
419
  msgstr "Fält"
420
 
421
+ #: core/controllers/field_group.php:365
422
+ msgid "Parent fields"
423
+ msgstr "Överliggande fält"
424
+
425
+ #: core/controllers/field_group.php:366
426
+ msgid "Sibling fields"
427
+ msgstr "Intilliggande fält"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
 
429
+ #: core/controllers/field_group.php:367
430
+ msgid "Hide / Show All"
431
+ msgstr "Dölj / Visa alla"
432
+
433
+ #: core/controllers/field_group.php:396
434
  msgid "Location"
435
  msgstr "Plats"
436
 
437
+ #: core/controllers/field_group.php:397
438
  msgid "Options"
439
+ msgstr "Alternativ"
440
 
441
+ #: core/controllers/field_group.php:459
442
  msgid "Show Field Key:"
443
  msgstr "Visa fältnyckel:"
444
 
445
+ #: core/controllers/field_group.php:460 core/fields/page_link.php:138
446
  #: core/fields/page_link.php:159 core/fields/post_object.php:328
447
  #: core/fields/post_object.php:349 core/fields/select.php:224
448
+ #: core/fields/select.php:243 core/fields/taxonomy.php:343
449
+ #: core/fields/user.php:285 core/fields/wysiwyg.php:245
450
+ #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
451
  msgid "No"
452
  msgstr "Nej"
453
 
454
+ #: core/controllers/field_group.php:461 core/fields/page_link.php:137
455
  #: core/fields/page_link.php:158 core/fields/post_object.php:327
456
  #: core/fields/post_object.php:348 core/fields/select.php:223
457
+ #: core/fields/select.php:242 core/fields/taxonomy.php:342
458
+ #: core/fields/user.php:284 core/fields/wysiwyg.php:244
459
+ #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
460
  msgid "Yes"
461
  msgstr "Ja"
462
 
463
+ #: core/controllers/field_group.php:638
464
  msgid "Front Page"
465
  msgstr "Förstasida"
466
 
467
+ #: core/controllers/field_group.php:639
468
  msgid "Posts Page"
469
  msgstr "Inläggssida"
470
 
471
+ #: core/controllers/field_group.php:640
472
  msgid "Top Level Page (parent of 0)"
473
  msgstr "Toppsida (förälder satt till 0)"
474
 
475
+ #: core/controllers/field_group.php:641
476
  msgid "Parent Page (has children)"
477
  msgstr "Föräldersida (har undersidor)"
478
 
479
+ #: core/controllers/field_group.php:642
480
  msgid "Child Page (has parent)"
481
  msgstr "Undersida (har föräldersida)"
482
 
483
+ #: core/controllers/field_group.php:650
484
  msgid "Default Template"
485
  msgstr "Standardmall"
486
 
487
+ #: core/controllers/field_group.php:727
488
+ msgid "Publish"
489
+ msgstr "Publicerat"
490
+
491
+ #: core/controllers/field_group.php:728
492
+ msgid "Pending Review"
493
+ msgstr "Väntar på granskning"
494
+
495
+ #: core/controllers/field_group.php:729
496
+ msgid "Draft"
497
+ msgstr "Utkast"
498
+
499
+ #: core/controllers/field_group.php:730
500
+ msgid "Future"
501
+ msgstr "Tidsbestämt"
502
+
503
+ #: core/controllers/field_group.php:731
504
+ msgid "Private"
505
+ msgstr "Privat"
506
+
507
+ #: core/controllers/field_group.php:732
508
+ msgid "Revision"
509
+ msgstr "Revision"
510
+
511
+ #: core/controllers/field_group.php:733
512
+ msgid "Trash"
513
+ msgstr "I papperskorgen"
514
+
515
+ #: core/controllers/field_group.php:746
516
+ msgid "Super Admin"
517
+ msgstr "Superadministratör"
518
+
519
+ #: core/controllers/field_group.php:761 core/controllers/field_group.php:782
520
+ #: core/controllers/field_group.php:789 core/fields/file.php:186
521
  #: core/fields/image.php:170 core/fields/page_link.php:109
522
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
523
+ #: core/fields/relationship.php:595 core/fields/relationship.php:619
524
  #: core/fields/user.php:229
525
  msgid "All"
526
  msgstr "Alla"
561
  msgid "Actions"
562
  msgstr "Actions"
563
 
564
+ #: core/controllers/field_groups.php:225 core/fields/relationship.php:638
565
  msgid "Filters"
566
  msgstr "Filter"
567
 
798
  msgid "Changelog for"
799
  msgstr "Förändringsloggen för"
800
 
801
+ #: core/controllers/field_groups.php:397
802
  msgid "Learn more"
803
  msgstr "Läs mer"
804
 
805
+ #: core/controllers/field_groups.php:403
806
  msgid "Overview"
807
  msgstr "Översikt"
808
 
809
+ #: core/controllers/field_groups.php:405
810
  msgid ""
811
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
812
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
816
  "via ACFs webbshop). Från och med version 4 är alla tillägg separata plugins "
817
  "som laddas ner, installeras och uppdateras individuellt."
818
 
819
+ #: core/controllers/field_groups.php:407
820
  msgid ""
821
  "This page will assist you in downloading and installing each available Add-"
822
  "on."
824
  "Denna sida kommer att hjälpa dig ladda ner och installera alla tillgängliga "
825
  "tillägg."
826
 
827
+ #: core/controllers/field_groups.php:409
828
  msgid "Available Add-ons"
829
  msgstr "Tillgängliga tillägg"
830
 
831
+ #: core/controllers/field_groups.php:411
832
  msgid "The following Add-ons have been detected as activated on this website."
833
  msgstr "Följande tillägg har upptäckts och aktiverats på denna webbplats."
834
 
835
+ #: core/controllers/field_groups.php:424
836
  msgid "Name"
837
  msgstr "Namn"
838
 
839
+ #: core/controllers/field_groups.php:425
840
  msgid "Activation Code"
841
  msgstr "Aktiveringskod"
842
 
843
+ #: core/controllers/field_groups.php:457
844
  msgid "Flexible Content"
845
  msgstr "Flexibelt innehåll"
846
 
847
+ #: core/controllers/field_groups.php:467
848
  msgid "Installation"
849
  msgstr "Installation"
850
 
851
+ #: core/controllers/field_groups.php:469
852
  msgid "For each Add-on available, please perform the following:"
853
  msgstr "Gör följande för varje tillgängligt tillägg:"
854
 
855
+ #: core/controllers/field_groups.php:471
856
  msgid "Download the Add-on plugin (.zip file) to your desktop"
857
  msgstr "Ladda ner tillägget (.zip-fil) till ditt skrivbord"
858
 
859
+ #: core/controllers/field_groups.php:472
860
  msgid "Navigate to"
861
  msgstr "Gå till"
862
 
863
+ #: core/controllers/field_groups.php:472
864
  msgid "Plugins > Add New > Upload"
865
  msgstr "Tillägg > Lägg till > Ladda upp"
866
 
867
+ #: core/controllers/field_groups.php:473
868
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
869
  msgstr "Använd uppladdaren för att välja och installera tillägget (.zip-filen)"
870
 
871
+ #: core/controllers/field_groups.php:474
872
  msgid ""
873
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
874
  "link"
876
  "När tillägget har laddats upp och installerats klickar du på länken "
877
  "\"Aktivera tillägg\""
878
 
879
+ #: core/controllers/field_groups.php:475
880
  msgid "The Add-on is now installed and activated!"
881
  msgstr "Tillägget har nu installerats och aktiverats!"
882
 
883
+ #: core/controllers/field_groups.php:489
884
  msgid "Awesome. Let's get to work"
885
  msgstr "Grymt! Dags att återgå till arbetet."
886
 
887
+ #: core/controllers/input.php:63
888
  msgid "Expand Details"
889
  msgstr "Visa detaljer"
890
 
891
+ #: core/controllers/input.php:64
892
  msgid "Collapse Details"
893
  msgstr "Dölj detaljer"
894
 
895
+ #: core/controllers/input.php:67
896
  msgid "Validation Failed. One or more fields below are required."
897
  msgstr "Valideringen misslyckades. Ett eller flera fält nedan måste fyllas i."
898
 
924
  msgid "Basic"
925
  msgstr "Enkel"
926
 
927
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:319
928
  msgid "Checkbox"
929
  msgstr "Kryssruta"
930
 
933
  msgid "Choice"
934
  msgstr "Alternativ"
935
 
936
+ #: core/fields/checkbox.php:146 core/fields/radio.php:144
937
  #: core/fields/select.php:177
938
  msgid "Choices"
939
  msgstr "Alternativ"
940
 
941
+ #: core/fields/checkbox.php:147 core/fields/select.php:178
942
  msgid "Enter each choice on a new line."
943
  msgstr "Ange ett alternativ per rad"
944
 
945
+ #: core/fields/checkbox.php:148 core/fields/select.php:179
946
  msgid "For more control, you may specify both a value and label like this:"
947
  msgstr "För mer kontroll kan du specificera både värde och etikett enligt:"
948
 
949
+ #: core/fields/checkbox.php:149 core/fields/radio.php:150
950
  #: core/fields/select.php:180
951
  msgid "red : Red"
952
  msgstr "röd : Röd"
953
 
954
+ #: core/fields/checkbox.php:149 core/fields/radio.php:151
955
  #: core/fields/select.php:180
956
  msgid "blue : Blue"
957
  msgstr "blå : Blå"
958
 
959
+ #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
960
+ #: core/fields/email.php:106 core/fields/number.php:116
961
  #: core/fields/radio.php:193 core/fields/select.php:197
962
  #: core/fields/text.php:116 core/fields/textarea.php:96
963
+ #: core/fields/true_false.php:94 core/fields/wysiwyg.php:187
964
  msgid "Default Value"
965
  msgstr "Standardvärde"
966
 
967
+ #: core/fields/checkbox.php:167 core/fields/select.php:198
968
  msgid "Enter each default value on a new line"
969
  msgstr "Ange varje värde på en ny rad"
970
 
971
+ #: core/fields/checkbox.php:183 core/fields/message.php:20
972
  #: core/fields/radio.php:209 core/fields/tab.php:20
973
  msgid "Layout"
974
  msgstr "Layout"
975
 
976
+ #: core/fields/checkbox.php:194 core/fields/radio.php:220
977
  msgid "Vertical"
978
  msgstr "Vertikalt"
979
 
980
+ #: core/fields/checkbox.php:195 core/fields/radio.php:221
981
  msgid "Horizontal"
982
  msgstr "Horisontellt"
983
 
985
  msgid "Color Picker"
986
  msgstr "Färgväljare"
987
 
988
+ #: core/fields/color_picker.php:20 core/fields/google-map.php:19
989
+ #: core/fields/date_picker/date_picker.php:20
990
  msgid "jQuery"
991
  msgstr "jQuery"
992
 
998
  msgid "Email"
999
  msgstr "E-post"
1000
 
1001
+ #: core/fields/email.php:107 core/fields/number.php:117
1002
+ #: core/fields/text.php:117 core/fields/textarea.php:97
1003
+ #: core/fields/wysiwyg.php:188
1004
+ msgid "Appears when creating a new post"
1005
+ msgstr "Visas när ett nytt inlägg skapas"
1006
+
1007
+ #: core/fields/email.php:123 core/fields/number.php:133
1008
+ #: core/fields/password.php:105 core/fields/text.php:131
1009
+ #: core/fields/textarea.php:111
1010
+ msgid "Placeholder Text"
1011
+ msgstr "Platshållartext"
1012
+
1013
+ #: core/fields/email.php:124 core/fields/number.php:134
1014
+ #: core/fields/password.php:106 core/fields/text.php:132
1015
+ #: core/fields/textarea.php:112
1016
+ msgid "Appears within the input"
1017
+ msgstr "Visas inuti fältet"
1018
+
1019
+ #: core/fields/email.php:138 core/fields/number.php:148
1020
+ #: core/fields/password.php:120 core/fields/text.php:146
1021
+ msgid "Prepend"
1022
+ msgstr "Lägg till före"
1023
+
1024
+ #: core/fields/email.php:139 core/fields/number.php:149
1025
+ #: core/fields/password.php:121 core/fields/text.php:147
1026
+ msgid "Appears before the input"
1027
+ msgstr "Visas före fältet"
1028
+
1029
+ #: core/fields/email.php:153 core/fields/number.php:163
1030
+ #: core/fields/password.php:135 core/fields/text.php:161
1031
+ msgid "Append"
1032
+ msgstr "Lägg till efter"
1033
+
1034
+ #: core/fields/email.php:154 core/fields/number.php:164
1035
+ #: core/fields/password.php:136 core/fields/text.php:162
1036
+ msgid "Appears after the input"
1037
+ msgstr "Visas efter fältet"
1038
+
1039
  #: core/fields/file.php:19
1040
  msgid "File"
1041
  msgstr "Fil"
1042
 
1043
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36
1044
  msgid "Content"
1045
  msgstr "Innehåll"
1046
 
1060
  msgid "uploaded to this post"
1061
  msgstr "uppladdade till detta inlägg"
1062
 
1063
+ #: core/fields/file.php:123
1064
  msgid "No File Selected"
1065
  msgstr "Ingen fil vald"
1066
 
1067
+ #: core/fields/file.php:123
1068
  msgid "Add File"
1069
  msgstr "Lägg till fil"
1070
 
1071
+ #: core/fields/file.php:153 core/fields/image.php:118
1072
+ #: core/fields/taxonomy.php:367
1073
  msgid "Return Value"
1074
  msgstr "Returvärde"
1075
 
1076
+ #: core/fields/file.php:164
1077
  msgid "File Object"
1078
  msgstr "Filobjekt"
1079
 
1080
+ #: core/fields/file.php:165
1081
  msgid "File URL"
1082
  msgstr "Filadress"
1083
 
1084
+ #: core/fields/file.php:166
1085
  msgid "File ID"
1086
  msgstr "Filens ID"
1087
 
1088
+ #: core/fields/file.php:175 core/fields/image.php:158
1089
  msgid "Library"
1090
  msgstr "Bibliotek"
1091
 
1092
+ #: core/fields/file.php:187 core/fields/image.php:171
1093
  msgid "Uploaded to post"
1094
  msgstr "Uppladdade till detta inlägg"
1095
 
1096
+ #: core/fields/google-map.php:18
1097
+ msgid "Google Map"
1098
+ msgstr "Google Map"
1099
+
1100
+ #: core/fields/google-map.php:31
1101
+ msgid "Locating"
1102
+ msgstr "Söker plats"
1103
+
1104
+ #: core/fields/google-map.php:32
1105
+ msgid "Sorry, this browser does not support geolocation"
1106
+ msgstr "Tyvärr saknar denna webbläsare stöd för platsinformation"
1107
+
1108
+ #: core/fields/google-map.php:159
1109
+ msgid "Center"
1110
+ msgstr "Centrum"
1111
+
1112
+ #: core/fields/google-map.php:160
1113
+ msgid "Center the initial map"
1114
+ msgstr "Kartans initiala centrum"
1115
+
1116
+ #: core/fields/google-map.php:196
1117
+ msgid "Height"
1118
+ msgstr "Höjd"
1119
+
1120
+ #: core/fields/google-map.php:197
1121
+ msgid "Customise the map height"
1122
+ msgstr "Skräddarsy kartans höjd"
1123
+
1124
  #: core/fields/image.php:19
1125
  msgid "Image"
1126
  msgstr "Bild"
1141
  msgid "Remove"
1142
  msgstr "Radera"
1143
 
1144
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:108
1145
  msgid "Edit"
1146
  msgstr "Redigera"
1147
 
1153
  msgid "Add Image"
1154
  msgstr "Lägg till bild"
1155
 
1156
+ #: core/fields/image.php:119 core/fields/relationship.php:570
1157
  msgid "Specify the returned value on front end"
1158
  msgstr "Välj vilken typ av värde som ska returneras"
1159
 
1198
  msgid "Number"
1199
  msgstr "Nummer"
1200
 
1201
+ #: core/fields/number.php:178
1202
+ msgid "Minimum Value"
1203
+ msgstr "Minsta värde"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
 
1205
+ #: core/fields/number.php:194
1206
+ msgid "Maximum Value"
1207
+ msgstr "Högsta värde"
1208
 
1209
+ #: core/fields/number.php:210
1210
+ msgid "Step Size"
1211
+ msgstr "Stegvärde"
1212
 
1213
  #: core/fields/page_link.php:18
1214
  msgid "Page Link"
1221
  msgstr "Relation"
1222
 
1223
  #: core/fields/page_link.php:103 core/fields/post_object.php:268
1224
+ #: core/fields/relationship.php:589 core/fields/relationship.php:668
1225
  #: core/views/meta_box_location.php:75
1226
  msgid "Post Type"
1227
  msgstr "Inläggstyp"
1228
 
1229
  #: core/fields/page_link.php:127 core/fields/post_object.php:317
1230
+ #: core/fields/select.php:214 core/fields/taxonomy.php:333
1231
  #: core/fields/user.php:275
1232
  msgid "Allow Null?"
1233
  msgstr "Tillått nollvärde?"
1245
  msgid "Post Object"
1246
  msgstr "Inläggsobjekt"
1247
 
1248
+ #: core/fields/post_object.php:292 core/fields/relationship.php:613
1249
  msgid "Filter from Taxonomy"
1250
  msgstr "Filtera från taxonomi"
1251
 
1253
  msgid "Radio Button"
1254
  msgstr "Alternativknapp"
1255
 
1256
+ #: core/fields/radio.php:102 core/views/meta_box_location.php:91
1257
  msgid "Other"
1258
  msgstr "Annat"
1259
 
1281
  msgid "Relationship"
1282
  msgstr "Relation"
1283
 
1284
+ #: core/fields/relationship.php:29
1285
  msgid "Maximum values reached ( {max} values )"
1286
  msgstr "Maximalt antal värden nåddes ( maximalt {max} värden )"
1287
 
1288
+ #: core/fields/relationship.php:425
1289
  msgid "Search..."
1290
  msgstr "Sök..."
1291
 
1292
+ #: core/fields/relationship.php:436
1293
  msgid "Filter by post type"
1294
  msgstr "Filtrera inläggstyp"
1295
 
1296
+ #: core/fields/relationship.php:569
1297
+ msgid "Return Format"
1298
+ msgstr "Returvärde"
1299
+
1300
+ #: core/fields/relationship.php:580
1301
+ msgid "Post Objects"
1302
+ msgstr "Inläggsobjekt"
1303
+
1304
+ #: core/fields/relationship.php:581
1305
+ msgid "Post IDs"
1306
+ msgstr "Inläggets ID"
1307
+
1308
+ #: core/fields/relationship.php:647
1309
  msgid "Search"
1310
  msgstr "Sök"
1311
 
1312
+ #: core/fields/relationship.php:648
1313
  msgid "Post Type Select"
1314
  msgstr "Välj inläggstyp"
1315
 
1316
+ #: core/fields/relationship.php:656
1317
  msgid "Elements"
1318
  msgstr "Element"
1319
 
1320
+ #: core/fields/relationship.php:657
1321
  msgid "Selected elements will be displayed in each result"
1322
  msgstr "Valda element visas i varje resultat"
1323
 
1324
+ #: core/fields/relationship.php:666 core/views/meta_box_options.php:105
1325
  msgid "Featured Image"
1326
  msgstr "Utvald bild"
1327
 
1328
+ #: core/fields/relationship.php:667
1329
  msgid "Post Title"
1330
  msgstr "Inläggstitel"
1331
 
1332
+ #: core/fields/relationship.php:679
1333
  msgid "Maximum posts"
1334
  msgstr "Maximalt antal inlägg"
1335
 
1336
+ #: core/fields/select.php:18 core/fields/select.php:109
1337
+ #: core/fields/taxonomy.php:324 core/fields/user.php:266
1338
  msgid "Select"
1339
  msgstr "Välj"
1340
 
1344
 
1345
  #: core/fields/tab.php:68
1346
  msgid ""
1347
+ "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1348
+ "fields together under separate tab headings."
1349
  msgstr ""
1350
+ "Använd \"flikfält\" för att bättre organisera redigeringsvyn genom att "
1351
+ "gruppera dina fält under separata flikar."
1352
 
1353
  #: core/fields/tab.php:69
1354
+ msgid ""
1355
+ "All the fields following this \"tab field\" (or until another \"tab field\" "
1356
+ "is defined) will be grouped together."
1357
  msgstr ""
1358
+ "Alla fält efter detta \"flikfält\" (eller fram till nästa \"flikfält\") "
1359
+ "kommer att grupperas tillsammans."
1360
+
1361
+ #: core/fields/tab.php:70
1362
+ msgid "Use multiple tabs to divide your fields into sections."
1363
+ msgstr "Använd flera flikar för att dela upp dina fält i sektioner."
1364
 
1365
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278
1366
  msgid "Taxonomy"
1367
  msgstr "Taxonomi"
1368
 
1369
+ #: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231
1370
  msgid "None"
1371
  msgstr "Ingen"
1372
 
1373
+ #: core/fields/taxonomy.php:308 core/fields/user.php:251
1374
+ #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159
1375
  msgid "Field Type"
1376
  msgstr "Fälttyp"
1377
 
1378
+ #: core/fields/taxonomy.php:318 core/fields/user.php:260
1379
  msgid "Multiple Values"
1380
  msgstr "Multipla värden"
1381
 
1382
+ #: core/fields/taxonomy.php:320 core/fields/user.php:262
1383
  msgid "Multi Select"
1384
  msgstr "Flera värden"
1385
 
1386
+ #: core/fields/taxonomy.php:322 core/fields/user.php:264
1387
  msgid "Single Value"
1388
  msgstr "Ett värde"
1389
 
1390
+ #: core/fields/taxonomy.php:323
1391
  msgid "Radio Buttons"
1392
  msgstr "Alternativknappar"
1393
 
1394
+ #: core/fields/taxonomy.php:352
1395
  msgid "Load & Save Terms to Post"
1396
  msgstr "Ladda eller spara termer till inlägg"
1397
 
1398
+ #: core/fields/taxonomy.php:360
1399
  msgid ""
1400
  "Load value based on the post's terms and update the post's terms on save"
1401
  msgstr ""
1402
  "Ladda värde baserat på inläggets termer och uppdatera dessa när inlägget "
1403
  "sparas"
1404
 
1405
+ #: core/fields/taxonomy.php:377
1406
  msgid "Term Object"
1407
  msgstr "Termobjekt"
1408
 
1409
+ #: core/fields/taxonomy.php:378
1410
  msgid "Term ID"
1411
  msgstr "Term-ID"
1412
 
1414
  msgid "Text"
1415
  msgstr "Text"
1416
 
1417
+ #: core/fields/text.php:176 core/fields/textarea.php:141
 
 
 
 
 
1418
  msgid "Formatting"
1419
  msgstr "Formatering"
1420
 
1421
+ #: core/fields/text.php:177 core/fields/textarea.php:142
1422
  msgid "Effects value on front end"
1423
  msgstr "Påverkar hur värdet skrivs ut"
1424
 
1425
+ #: core/fields/text.php:186 core/fields/textarea.php:151
1426
  msgid "No formatting"
1427
  msgstr "Ingen formatering"
1428
 
1429
+ #: core/fields/text.php:187 core/fields/textarea.php:153
1430
  msgid "Convert HTML into tags"
1431
  msgstr "Konvertera HTML till taggar"
1432
 
1433
+ #: core/fields/text.php:195 core/fields/textarea.php:126
1434
  msgid "Character Limit"
1435
  msgstr "Maximalt antal tecken"
1436
 
1437
+ #: core/fields/text.php:196 core/fields/textarea.php:127
1438
  msgid "Leave blank for no limit"
1439
  msgstr "Lämna tomt för att inte begränsa"
1440
 
 
 
 
 
 
 
 
 
 
 
 
 
1441
  #: core/fields/textarea.php:19
1442
  msgid "Text Area"
1443
  msgstr "Textfält"
1444
 
1445
+ #: core/fields/textarea.php:152
1446
  msgid "Convert new lines into &lt;br /&gt; tags"
1447
  msgstr "Konvertera radbrytnignar till &lt;br /&gt;-taggar"
1448
 
1454
  msgid "eg. Show extra content"
1455
  msgstr "exempel: Visa extra innehåll"
1456
 
1457
+ #: core/fields/user.php:18 core/views/meta_box_location.php:94
1458
  msgid "User"
1459
  msgstr "Användare"
1460
 
1462
  msgid "Filter by role"
1463
  msgstr "Filtrera efter roll"
1464
 
1465
+ #: core/fields/wysiwyg.php:35
1466
  msgid "Wysiwyg Editor"
1467
  msgstr "WYSIWYG-editor"
1468
 
1469
+ #: core/fields/wysiwyg.php:202
1470
  msgid "Toolbar"
1471
  msgstr "Verktygsfält"
1472
 
1473
+ #: core/fields/wysiwyg.php:234
1474
  msgid "Show Media Upload Buttons?"
1475
  msgstr "Visa knappar för mediauppladdning"
1476
 
1477
+ #: core/fields/date_picker/date_picker.php:19
1478
  msgid "Date Picker"
1479
  msgstr "Datumväljare"
1480
 
1481
+ #: core/fields/date_picker/date_picker.php:55
1482
  msgid "Done"
1483
  msgstr "Klar"
1484
 
1485
+ #: core/fields/date_picker/date_picker.php:56
1486
  msgid "Today"
1487
  msgstr "Idag"
1488
 
1489
+ #: core/fields/date_picker/date_picker.php:59
1490
  msgid "Show a different month"
1491
  msgstr "Visa en annan månad"
1492
 
1493
+ #: core/fields/date_picker/date_picker.php:126
1494
  msgid "Save format"
1495
  msgstr "Lagringsformat"
1496
 
1497
+ #: core/fields/date_picker/date_picker.php:127
1498
  msgid ""
1499
  "This format will determin the value saved to the database and returned via "
1500
  "the API"
1502
  "Detta format avgör hur värdet sparas i databasen och returneras via "
1503
  "tilläggets API"
1504
 
1505
+ #: core/fields/date_picker/date_picker.php:128
1506
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
1507
  msgstr "\"yymmdd\" är det mest flexibla formatet. Läs mer om"
1508
 
1509
+ #: core/fields/date_picker/date_picker.php:128
1510
+ #: core/fields/date_picker/date_picker.php:144
1511
  msgid "jQuery date formats"
1512
  msgstr "jQuery datumformat"
1513
 
1514
+ #: core/fields/date_picker/date_picker.php:142
1515
  msgid "Display format"
1516
  msgstr "Visningsformat"
1517
 
1518
+ #: core/fields/date_picker/date_picker.php:143
1519
  msgid "This format will be seen by the user when entering a value"
1520
  msgstr "Detta format är det som visas när användaren anger ett värde"
1521
 
1522
+ #: core/fields/date_picker/date_picker.php:144
1523
  msgid ""
1524
  "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1525
  "about"
1526
  msgstr "\"yy-mm-dd\" är set vanligaste visningsformatet. Läs mer om"
1527
 
1528
+ #: core/fields/date_picker/date_picker.php:158
1529
  msgid "Week Starts On"
1530
  msgstr "Veckor börjar på"
1531
 
1537
  msgid "Field type does not exist"
1538
  msgstr "Fälttypen finns inte"
1539
 
1540
+ #: core/views/meta_box_fields.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1541
  msgid "Field Order"
1542
  msgstr "Ordning på fält"
1543
 
1544
+ #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127
1545
  msgid "Field Label"
1546
  msgstr "Fältetikett"
1547
 
1548
+ #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143
1549
  msgid "Field Name"
1550
  msgstr "Fältnamn"
1551
 
1552
+ #: core/views/meta_box_fields.php:78
1553
  msgid "Field Key"
1554
  msgstr "Fältnyckel"
1555
 
1556
+ #: core/views/meta_box_fields.php:90
1557
  msgid ""
1558
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1559
  "first field."
1561
  "Inga fält. Klicka på knappen <strong>+ Lägg till fält</strong> för att skapa "
1562
  "ditt första fält."
1563
 
1564
+ #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
1565
  msgid "Edit this Field"
1566
  msgstr "Redigera detta fält"
1567
 
1568
+ #: core/views/meta_box_fields.php:109
1569
  msgid "Read documentation for this field"
1570
  msgstr "Läs dokumentationen för detta fält"
1571
 
1572
+ #: core/views/meta_box_fields.php:109
1573
  msgid "Docs"
1574
  msgstr "Dokumentation"
1575
 
1576
+ #: core/views/meta_box_fields.php:110
1577
  msgid "Duplicate this Field"
1578
  msgstr "Duplicera detta fält"
1579
 
1580
+ #: core/views/meta_box_fields.php:110
1581
  msgid "Duplicate"
1582
  msgstr "Duplicera"
1583
 
1584
+ #: core/views/meta_box_fields.php:111
1585
  msgid "Delete this Field"
1586
  msgstr "Radera detta fält"
1587
 
1588
+ #: core/views/meta_box_fields.php:111
1589
  msgid "Delete"
1590
  msgstr "Radera"
1591
 
1592
+ #: core/views/meta_box_fields.php:128
1593
  msgid "This is the name which will appear on the EDIT page"
1594
  msgstr "Detta namn kommer att visas i redigeringsvyn"
1595
 
1596
+ #: core/views/meta_box_fields.php:144
1597
  msgid "Single word, no spaces. Underscores and dashes allowed"
1598
  msgstr "Ett ord utan mellanslag. Understreck och bindestreck är tillåtna"
1599
 
1600
+ #: core/views/meta_box_fields.php:173
1601
  msgid "Field Instructions"
1602
  msgstr "Instruktioner för fält"
1603
 
1604
+ #: core/views/meta_box_fields.php:174
1605
  msgid "Instructions for authors. Shown when submitting data"
1606
  msgstr "Instruktioner till författare. Visas när data anges"
1607
 
1608
+ #: core/views/meta_box_fields.php:186
1609
  msgid "Required?"
1610
  msgstr "Obligatorisk?"
1611
 
1612
+ #: core/views/meta_box_fields.php:209
1613
  msgid "Conditional Logic"
1614
  msgstr "Visningsvillkor"
1615
 
1616
+ #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
1617
  msgid "is equal to"
1618
  msgstr "är lika med"
1619
 
1620
+ #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
1621
  msgid "is not equal to"
1622
  msgstr "inte är lika med"
1623
 
1624
+ #: core/views/meta_box_fields.php:279
1625
  msgid "Show this field when"
1626
  msgstr "Visa detta fält när"
1627
 
1628
+ #: core/views/meta_box_fields.php:285
1629
  msgid "all"
1630
  msgstr "alla"
1631
 
1632
+ #: core/views/meta_box_fields.php:286
1633
  msgid "any"
1634
  msgstr "någon"
1635
 
1636
+ #: core/views/meta_box_fields.php:289
1637
  msgid "these rules are met"
1638
  msgstr "av dessa villkor uppfylls"
1639
 
1640
+ #: core/views/meta_box_fields.php:303
1641
  msgid "Close Field"
1642
  msgstr "Stäng fält"
1643
 
1644
+ #: core/views/meta_box_fields.php:316
1645
  msgid "Drag and drop to reorder"
1646
  msgstr "Dra och släpp för att ändra ordning"
1647
 
1648
+ #: core/views/meta_box_fields.php:317
1649
  msgid "+ Add Field"
1650
  msgstr "+ Lägg till fält"
1651
 
1696
  msgstr "Inläggsformat"
1697
 
1698
  #: core/views/meta_box_location.php:88
1699
+ msgid "Post Status"
1700
+ msgstr "Status"
1701
+
1702
+ #: core/views/meta_box_location.php:89
1703
  msgid "Post Taxonomy"
1704
  msgstr "Inläggstaxonomi"
1705
 
 
 
 
 
1706
  #: core/views/meta_box_location.php:92
1707
+ msgid "Attachment"
1708
+ msgstr "Bilaga"
1709
 
1710
  #: core/views/meta_box_location.php:93
1711
+ msgid "Term"
1712
+ msgstr "Term"
1713
 
1714
+ #: core/views/meta_box_location.php:146
1715
  msgid "and"
1716
  msgstr "och"
1717
 
1718
+ #: core/views/meta_box_location.php:161
1719
  msgid "Add rule group"
1720
  msgstr "Lägg till regelgrupp"
1721
 
1732
  msgstr "Plats"
1733
 
1734
  #: core/views/meta_box_options.php:52
1735
+ msgid "High (after title)"
1736
+ msgstr "Hög (efter titeln)"
1737
 
1738
  #: core/views/meta_box_options.php:53
1739
+ msgid "Normal (after content)"
1740
+ msgstr "Normal (efter innehållet)"
1741
+
1742
+ #: core/views/meta_box_options.php:54
1743
  msgid "Side"
1744
  msgstr "Sidopanel"
1745
 
1746
+ #: core/views/meta_box_options.php:64
1747
  msgid "Style"
1748
  msgstr "Stil"
1749
 
1750
+ #: core/views/meta_box_options.php:74
1751
  msgid "No Metabox"
1752
  msgstr "Ingen metabox"
1753
 
1754
+ #: core/views/meta_box_options.php:75
1755
  msgid "Standard Metabox"
1756
  msgstr "Vanlig metabox"
1757
 
1758
+ #: core/views/meta_box_options.php:84
1759
  msgid "Hide on screen"
1760
  msgstr "Dölj på sida"
1761
 
1762
+ #: core/views/meta_box_options.php:85
1763
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1764
  msgstr "<b>Välj</b> objekt för att <b>dölja</b> dem från redigeringsvyn"
1765
 
1766
+ #: core/views/meta_box_options.php:86
1767
  msgid ""
1768
  "If multiple field groups appear on an edit screen, the first field group's "
1769
  "options will be used. (the one with the lowest order number)"
1771
  "Om flera fältgrupper visas i redigeringsvyn kommer första gruppens "
1772
  "inställningar att användas (den med lägst ordningsnummer)"
1773
 
1774
+ #: core/views/meta_box_options.php:96
1775
  msgid "Content Editor"
1776
  msgstr "Innehållseditor"
1777
 
1778
+ #: core/views/meta_box_options.php:97
1779
  msgid "Excerpt"
1780
  msgstr "Utdrag"
1781
 
1782
+ #: core/views/meta_box_options.php:99
1783
  msgid "Discussion"
1784
  msgstr "Diskussion"
1785
 
1786
+ #: core/views/meta_box_options.php:100
1787
  msgid "Comments"
1788
  msgstr "Kommentarer"
1789
 
1790
+ #: core/views/meta_box_options.php:101
1791
  msgid "Revisions"
1792
  msgstr "Revisioner"
1793
 
1794
+ #: core/views/meta_box_options.php:102
1795
  msgid "Slug"
1796
  msgstr "Permalänk"
1797
 
1798
+ #: core/views/meta_box_options.php:103
1799
  msgid "Author"
1800
  msgstr "Författare"
1801
 
1802
+ #: core/views/meta_box_options.php:104
1803
  msgid "Format"
1804
  msgstr "Format"
1805
 
1806
+ #: core/views/meta_box_options.php:106
1807
  msgid "Categories"
1808
  msgstr "Kategorier"
1809
 
1810
+ #: core/views/meta_box_options.php:107
1811
  msgid "Tags"
1812
  msgstr "Etiketter"
1813
 
1814
+ #: core/views/meta_box_options.php:108
1815
  msgid "Send Trackbacks"
1816
  msgstr "Skicka trackbacks"
1817
 
1818
+ #~ msgid "This row"
1819
+ #~ msgstr "Denna rad"
1820
+
1821
+ #~ msgid ""
1822
+ #~ "/**\n"
1823
+ #~ " * Install Add-ons\n"
1824
+ #~ " * \n"
1825
+ #~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
1826
+ #~ " * Please do not attempt to include a file which does not exist. This "
1827
+ #~ "will produce an error.\n"
1828
+ #~ " * \n"
1829
+ #~ " * The following code assumes you have a folder 'add-ons' inside your "
1830
+ #~ "theme.\n"
1831
+ #~ " *\n"
1832
+ #~ " * IMPORTANT\n"
1833
+ #~ " * Add-ons may be included in a premium theme/plugin as outlined in the "
1834
+ #~ "terms and conditions.\n"
1835
+ #~ " * For more information, please read:\n"
1836
+ #~ " * - http://www.advancedcustomfields.com/terms-conditions/\n"
1837
+ #~ " * - http://www.advancedcustomfields.com/resources/getting-started/"
1838
+ #~ "including-lite-mode-in-a-plugin-theme/\n"
1839
+ #~ " */"
1840
+ #~ msgstr ""
1841
+ #~ "/**\n"
1842
+ #~ " * Installera tillägg\n"
1843
+ #~ " * \n"
1844
+ #~ " * Följande kod kommer att inkludera samtliga fyra premiumtillägg i ditt "
1845
+ #~ "tema.\n"
1846
+ #~ " * Vänligen inkludera inte filer som inte existerar. Detta kommer att "
1847
+ #~ "resultera i ett felmeddelande.\n"
1848
+ #~ " * \n"
1849
+ #~ " * Koden antar att du har mappen 'add-ons' i ditt tema.\n"
1850
+ #~ " *\n"
1851
+ #~ " * VIKTIGT\n"
1852
+ #~ " * Tillägg kan inkluderas i premiumteman och plugins enligt villkoren.\n"
1853
+ #~ " * För mer information, läs följande:\n"
1854
+ #~ " * Läs följande sida för mer information: http://www."
1855
+ #~ "advancedcustomfields.com/terms-conditions/\n"
1856
+ #~ " * - http://www.advancedcustomfields.com/terms-conditions/\n"
1857
+ #~ " * - http://www.advancedcustomfields.com/resources/getting-started/"
1858
+ #~ "including-lite-mode-in-a-plugin-theme/\n"
1859
+ #~ " */"
1860
+
1861
+ #~ msgid ""
1862
+ #~ "/**\n"
1863
+ #~ " * Register Field Groups\n"
1864
+ #~ " *\n"
1865
+ #~ " * The register_field_group function accepts 1 array which holds the "
1866
+ #~ "relevant data to register a field group\n"
1867
+ #~ " * You may edit the array as you see fit. However, this may result in "
1868
+ #~ "errors if the array is not compatible with ACF\n"
1869
+ #~ " */"
1870
+ #~ msgstr ""
1871
+ #~ "/**\n"
1872
+ #~ " * Registrera fältgrupper\n"
1873
+ #~ " *\n"
1874
+ #~ " * Funktionen register_field_group tar emot en array som innehåller "
1875
+ #~ "inställningarna för samtliga fältgrupper.\n"
1876
+ #~ " * Du kan redigera denna array fritt. Detta kan dock leda till fel om "
1877
+ #~ "ändringarna inte är kompatibla med ACF.\n"
1878
+ #~ " */"
1879
+
1880
+ #~ msgid "Normal"
1881
+ #~ msgstr "Normal"
1882
+
1883
+ #~ msgid "Taxonomy Term (Add / Edit)"
1884
+ #~ msgstr "Taxonomiterm (Lägg till / Redigera)"
1885
+
1886
+ #~ msgid "User (Add / Edit)"
1887
+ #~ msgstr "Användare (Lägg till / Redigera)"
1888
+
1889
+ #~ msgid "Media Attachment (Add / Edit)"
1890
+ #~ msgstr "Mediabilaga (Lägg till / Redigera)"
1891
+
1892
+ #~ msgid "Min"
1893
+ #~ msgstr "Min"
1894
+
1895
+ #~ msgid "Specifies the minimum value allowed"
1896
+ #~ msgstr "Bestämmer det minsta tillåtna värdet"
1897
+
1898
+ #~ msgid "Max"
1899
+ #~ msgstr "Max"
1900
+
1901
+ #~ msgid "Specifies the maximim value allowed"
1902
+ #~ msgstr "Bestämmer det högsta tillåtna värdet"
1903
+
1904
+ #~ msgid "Specifies the legal number intervals"
1905
+ #~ msgstr "Bestämmer intervaller mellan tillåtna värden"
1906
+
1907
  #~ msgid "eg: #ffffff"
1908
  #~ msgstr "exempel: #ffffff"
1909
 
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-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"
@@ -12,125 +12,124 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: acf.php:342
16
  msgid "Field&nbsp;Groups"
17
  msgstr ""
18
 
19
- #: acf.php:343 core/controllers/field_groups.php:214
20
  msgid "Advanced Custom Fields"
21
  msgstr ""
22
 
23
- #: acf.php:344
24
  msgid "Add New"
25
  msgstr ""
26
 
27
- #: acf.php:345
28
  msgid "Add New Field Group"
29
  msgstr ""
30
 
31
- #: acf.php:346
32
  msgid "Edit Field Group"
33
  msgstr ""
34
 
35
- #: acf.php:347
36
  msgid "New Field Group"
37
  msgstr ""
38
 
39
- #: acf.php:348
40
  msgid "View Field Group"
41
  msgstr ""
42
 
43
- #: acf.php:349
44
  msgid "Search Field Groups"
45
  msgstr ""
46
 
47
- #: acf.php:350
48
  msgid "No Field Groups found"
49
  msgstr ""
50
 
51
- #: acf.php:351
52
  msgid "No Field Groups found in Trash"
53
  msgstr ""
54
 
55
- #: acf.php:459 core/views/meta_box_options.php:98
56
  msgid "Custom Fields"
57
  msgstr ""
58
 
59
- #: acf.php:477 acf.php:480
60
  msgid "Field group updated."
61
  msgstr ""
62
 
63
- #: acf.php:478
64
  msgid "Custom field updated."
65
  msgstr ""
66
 
67
- #: acf.php:479
68
  msgid "Custom field deleted."
69
  msgstr ""
70
 
71
  #. translators: %s: date and time of the revision
72
- #: acf.php:482
73
  msgid "Field group restored to revision from %s"
74
  msgstr ""
75
 
76
- #: acf.php:483
77
  msgid "Field group published."
78
  msgstr ""
79
 
80
- #: acf.php:484
81
  msgid "Field group saved."
82
  msgstr ""
83
 
84
- #: acf.php:485
85
  msgid "Field group submitted."
86
  msgstr ""
87
 
88
- #: acf.php:486
89
  msgid "Field group scheduled for."
90
  msgstr ""
91
 
92
- #: acf.php:487
93
  msgid "Field group draft updated."
94
  msgstr ""
95
 
96
- #: acf.php:622
97
  msgid "Thumbnail"
98
  msgstr ""
99
 
100
- #: acf.php:623
101
  msgid "Medium"
102
  msgstr ""
103
 
104
- #: acf.php:624
105
  msgid "Large"
106
  msgstr ""
107
 
108
- #: acf.php:625
109
  msgid "Full"
110
  msgstr ""
111
 
112
- #: core/actions/export.php:23 core/views/meta_box_fields.php:58
113
  msgid "Error"
114
  msgstr ""
115
 
116
- #: core/actions/export.php:30
117
  msgid "No ACF groups selected"
118
  msgstr ""
119
 
120
- #: core/api.php:1094
121
  msgid "Update"
122
  msgstr ""
123
 
124
- #: core/api.php:1095
125
  msgid "Post updated"
126
  msgstr ""
127
 
128
- #: core/controllers/addons.php:42 core/controllers/export.php:368
129
- #: core/controllers/field_groups.php:311
130
  msgid "Add-ons"
131
  msgstr ""
132
 
133
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:432
134
  msgid "Repeater Field"
135
  msgstr ""
136
 
@@ -138,7 +137,7 @@ msgstr ""
138
  msgid "Create infinite rows of repeatable data with this versatile interface!"
139
  msgstr ""
140
 
141
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:440
142
  msgid "Gallery Field"
143
  msgstr ""
144
 
@@ -146,7 +145,7 @@ msgstr ""
146
  msgid "Create image galleries in a simple and intuitive interface!"
147
  msgstr ""
148
 
149
- #: core/controllers/addons.php:144 core/controllers/field_groups.php:448
150
  msgid "Options Page"
151
  msgstr ""
152
 
@@ -218,9 +217,9 @@ msgstr ""
218
  msgid "Purchase & Install"
219
  msgstr ""
220
 
221
- #: core/controllers/addons.php:242 core/controllers/field_groups.php:425
222
- #: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
223
- #: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
224
  msgid "Download"
225
  msgstr ""
226
 
@@ -356,137 +355,140 @@ msgstr ""
356
  msgid "Back to export"
357
  msgstr ""
358
 
359
- #: core/controllers/export.php:352
360
- msgid ""
361
- "/**\n"
362
- " * Install Add-ons\n"
363
- " * \n"
364
- " * The following code will include all 4 premium Add-Ons in your theme.\n"
365
- " * Please do not attempt to include a file which does not exist. This will "
366
- "produce an error.\n"
367
- " * \n"
368
- " * The following code assumes you have a folder 'add-ons' inside your "
369
- "theme.\n"
370
- " *\n"
371
- " * IMPORTANT\n"
372
- " * Add-ons may be included in a premium theme/plugin as outlined in the "
373
- "terms and conditions.\n"
374
- " * For more information, please read:\n"
375
- " * - http://www.advancedcustomfields.com/terms-conditions/\n"
376
- " * - http://www.advancedcustomfields.com/resources/getting-started/"
377
- "including-lite-mode-in-a-plugin-theme/\n"
378
- " */"
379
- msgstr ""
380
-
381
- #: core/controllers/export.php:375
382
- msgid ""
383
- "/**\n"
384
- " * Register Field Groups\n"
385
- " *\n"
386
- " * The register_field_group function accepts 1 array which holds the "
387
- "relevant data to register a field group\n"
388
- " * You may edit the array as you see fit. However, this may result in "
389
- "errors if the array is not compatible with ACF\n"
390
- " */"
391
  msgstr ""
392
 
393
- #: core/controllers/export.php:426
394
- msgid "No field groups were selected"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
  msgstr ""
396
 
397
- #: core/controllers/field_group.php:375 core/controllers/field_group.php:437
398
- #: core/controllers/field_groups.php:148
399
  msgid "Fields"
400
  msgstr ""
401
 
402
- #: core/controllers/field_group.php:376
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Location"
404
  msgstr ""
405
 
406
- #: core/controllers/field_group.php:377
407
  msgid "Options"
408
  msgstr ""
409
 
410
- #: core/controllers/field_group.php:439
411
  msgid "Show Field Key:"
412
  msgstr ""
413
 
414
- #: core/controllers/field_group.php:440 core/fields/page_link.php:138
415
  #: core/fields/page_link.php:159 core/fields/post_object.php:328
416
  #: core/fields/post_object.php:349 core/fields/select.php:224
417
- #: core/fields/select.php:243 core/fields/taxonomy.php:341
418
- #: core/fields/user.php:285 core/fields/wysiwyg.php:229
419
- #: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232
420
  msgid "No"
421
  msgstr ""
422
 
423
- #: core/controllers/field_group.php:441 core/fields/page_link.php:137
424
  #: core/fields/page_link.php:158 core/fields/post_object.php:327
425
  #: core/fields/post_object.php:348 core/fields/select.php:223
426
- #: core/fields/select.php:242 core/fields/taxonomy.php:340
427
- #: core/fields/user.php:284 core/fields/wysiwyg.php:228
428
- #: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231
429
  msgid "Yes"
430
  msgstr ""
431
 
432
- #: core/controllers/field_group.php:618
433
  msgid "Front Page"
434
  msgstr ""
435
 
436
- #: core/controllers/field_group.php:619
437
  msgid "Posts Page"
438
  msgstr ""
439
 
440
- #: core/controllers/field_group.php:620
441
  msgid "Top Level Page (parent of 0)"
442
  msgstr ""
443
 
444
- #: core/controllers/field_group.php:621
445
  msgid "Parent Page (has children)"
446
  msgstr ""
447
 
448
- #: core/controllers/field_group.php:622
449
  msgid "Child Page (has parent)"
450
  msgstr ""
451
 
452
- #: core/controllers/field_group.php:630
453
  msgid "Default Template"
454
  msgstr ""
455
 
456
- #: core/controllers/field_group.php:707
457
  msgid "Publish"
458
  msgstr ""
459
 
460
- #: core/controllers/field_group.php:708
461
  msgid "Pending Review"
462
  msgstr ""
463
 
464
- #: core/controllers/field_group.php:709
465
  msgid "Draft"
466
  msgstr ""
467
 
468
- #: core/controllers/field_group.php:710
469
  msgid "Future"
470
  msgstr ""
471
 
472
- #: core/controllers/field_group.php:711
473
  msgid "Private"
474
  msgstr ""
475
 
476
- #: core/controllers/field_group.php:712
477
  msgid "Revision"
478
  msgstr ""
479
 
480
- #: core/controllers/field_group.php:713
481
  msgid "Trash"
482
  msgstr ""
483
 
484
- #: core/controllers/field_group.php:726
485
  msgid "Super Admin"
486
  msgstr ""
487
 
488
- #: core/controllers/field_group.php:741 core/controllers/field_group.php:762
489
- #: core/controllers/field_group.php:769 core/fields/file.php:186
490
  #: core/fields/image.php:170 core/fields/page_link.php:109
491
  #: core/fields/post_object.php:274 core/fields/post_object.php:298
492
  #: core/fields/relationship.php:595 core/fields/relationship.php:619
@@ -749,94 +751,94 @@ msgstr ""
749
  msgid "Changelog for"
750
  msgstr ""
751
 
752
- #: core/controllers/field_groups.php:396
753
  msgid "Learn more"
754
  msgstr ""
755
 
756
- #: core/controllers/field_groups.php:402
757
  msgid "Overview"
758
  msgstr ""
759
 
760
- #: core/controllers/field_groups.php:404
761
  msgid ""
762
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
763
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
764
  "need to be individually downloaded, installed and updated."
765
  msgstr ""
766
 
767
- #: core/controllers/field_groups.php:406
768
  msgid ""
769
  "This page will assist you in downloading and installing each available Add-"
770
  "on."
771
  msgstr ""
772
 
773
- #: core/controllers/field_groups.php:408
774
  msgid "Available Add-ons"
775
  msgstr ""
776
 
777
- #: core/controllers/field_groups.php:410
778
  msgid "The following Add-ons have been detected as activated on this website."
779
  msgstr ""
780
 
781
- #: core/controllers/field_groups.php:423
782
  msgid "Name"
783
  msgstr ""
784
 
785
- #: core/controllers/field_groups.php:424
786
  msgid "Activation Code"
787
  msgstr ""
788
 
789
- #: core/controllers/field_groups.php:456
790
  msgid "Flexible Content"
791
  msgstr ""
792
 
793
- #: core/controllers/field_groups.php:466
794
  msgid "Installation"
795
  msgstr ""
796
 
797
- #: core/controllers/field_groups.php:468
798
  msgid "For each Add-on available, please perform the following:"
799
  msgstr ""
800
 
801
- #: core/controllers/field_groups.php:470
802
  msgid "Download the Add-on plugin (.zip file) to your desktop"
803
  msgstr ""
804
 
805
- #: core/controllers/field_groups.php:471
806
  msgid "Navigate to"
807
  msgstr ""
808
 
809
- #: core/controllers/field_groups.php:471
810
  msgid "Plugins > Add New > Upload"
811
  msgstr ""
812
 
813
- #: core/controllers/field_groups.php:472
814
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
815
  msgstr ""
816
 
817
- #: core/controllers/field_groups.php:473
818
  msgid ""
819
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
820
  "link"
821
  msgstr ""
822
 
823
- #: core/controllers/field_groups.php:474
824
  msgid "The Add-on is now installed and activated!"
825
  msgstr ""
826
 
827
- #: core/controllers/field_groups.php:488
828
  msgid "Awesome. Let's get to work"
829
  msgstr ""
830
 
831
- #: core/controllers/input.php:519
832
  msgid "Expand Details"
833
  msgstr ""
834
 
835
- #: core/controllers/input.php:520
836
  msgid "Collapse Details"
837
  msgstr ""
838
 
839
- #: core/controllers/input.php:523
840
  msgid "Validation Failed. One or more fields below are required."
841
  msgstr ""
842
 
@@ -868,7 +870,7 @@ msgstr ""
868
  msgid "Basic"
869
  msgstr ""
870
 
871
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
872
  msgid "Checkbox"
873
  msgstr ""
874
 
@@ -877,51 +879,51 @@ msgstr ""
877
  msgid "Choice"
878
  msgstr ""
879
 
880
- #: core/fields/checkbox.php:137 core/fields/radio.php:144
881
  #: core/fields/select.php:177
882
  msgid "Choices"
883
  msgstr ""
884
 
885
- #: core/fields/checkbox.php:138 core/fields/select.php:178
886
  msgid "Enter each choice on a new line."
887
  msgstr ""
888
 
889
- #: core/fields/checkbox.php:139 core/fields/select.php:179
890
  msgid "For more control, you may specify both a value and label like this:"
891
  msgstr ""
892
 
893
- #: core/fields/checkbox.php:140 core/fields/radio.php:150
894
  #: core/fields/select.php:180
895
  msgid "red : Red"
896
  msgstr ""
897
 
898
- #: core/fields/checkbox.php:140 core/fields/radio.php:151
899
  #: core/fields/select.php:180
900
  msgid "blue : Blue"
901
  msgstr ""
902
 
903
- #: core/fields/checkbox.php:157 core/fields/color_picker.php:89
904
  #: core/fields/email.php:106 core/fields/number.php:116
905
  #: core/fields/radio.php:193 core/fields/select.php:197
906
  #: core/fields/text.php:116 core/fields/textarea.php:96
907
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
908
  msgid "Default Value"
909
  msgstr ""
910
 
911
- #: core/fields/checkbox.php:158 core/fields/select.php:198
912
  msgid "Enter each default value on a new line"
913
  msgstr ""
914
 
915
- #: core/fields/checkbox.php:174 core/fields/message.php:20
916
  #: core/fields/radio.php:209 core/fields/tab.php:20
917
  msgid "Layout"
918
  msgstr ""
919
 
920
- #: core/fields/checkbox.php:185 core/fields/radio.php:220
921
  msgid "Vertical"
922
  msgstr ""
923
 
924
- #: core/fields/checkbox.php:186 core/fields/radio.php:221
925
  msgid "Horizontal"
926
  msgstr ""
927
 
@@ -929,60 +931,61 @@ msgstr ""
929
  msgid "Color Picker"
930
  msgstr ""
931
 
932
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
 
933
  msgid "jQuery"
934
  msgstr ""
935
 
936
- #: core/fields/date_picker/date_picker.php:22
937
  msgid "Date Picker"
938
  msgstr ""
939
 
940
- #: core/fields/date_picker/date_picker.php:30
941
  msgid "Done"
942
  msgstr ""
943
 
944
- #: core/fields/date_picker/date_picker.php:31
945
  msgid "Today"
946
  msgstr ""
947
 
948
- #: core/fields/date_picker/date_picker.php:34
949
  msgid "Show a different month"
950
  msgstr ""
951
 
952
- #: core/fields/date_picker/date_picker.php:105
953
  msgid "Save format"
954
  msgstr ""
955
 
956
- #: core/fields/date_picker/date_picker.php:106
957
  msgid ""
958
  "This format will determin the value saved to the database and returned via "
959
  "the API"
960
  msgstr ""
961
 
962
- #: core/fields/date_picker/date_picker.php:107
963
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
964
  msgstr ""
965
 
966
- #: core/fields/date_picker/date_picker.php:107
967
- #: core/fields/date_picker/date_picker.php:123
968
  msgid "jQuery date formats"
969
  msgstr ""
970
 
971
- #: core/fields/date_picker/date_picker.php:121
972
  msgid "Display format"
973
  msgstr ""
974
 
975
- #: core/fields/date_picker/date_picker.php:122
976
  msgid "This format will be seen by the user when entering a value"
977
  msgstr ""
978
 
979
- #: core/fields/date_picker/date_picker.php:123
980
  msgid ""
981
  "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
982
  "about"
983
  msgstr ""
984
 
985
- #: core/fields/date_picker/date_picker.php:137
986
  msgid "Week Starts On"
987
  msgstr ""
988
 
@@ -996,7 +999,7 @@ msgstr ""
996
 
997
  #: core/fields/email.php:107 core/fields/number.php:117
998
  #: core/fields/text.php:117 core/fields/textarea.php:97
999
- #: core/fields/wysiwyg.php:172
1000
  msgid "Appears when creating a new post"
1001
  msgstr ""
1002
 
@@ -1036,7 +1039,7 @@ msgstr ""
1036
  msgid "File"
1037
  msgstr ""
1038
 
1039
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
1040
  msgid "Content"
1041
  msgstr ""
1042
 
@@ -1065,7 +1068,7 @@ msgid "Add File"
1065
  msgstr ""
1066
 
1067
  #: core/fields/file.php:153 core/fields/image.php:118
1068
- #: core/fields/taxonomy.php:365
1069
  msgid "Return Value"
1070
  msgstr ""
1071
 
@@ -1089,6 +1092,46 @@ msgstr ""
1089
  msgid "Uploaded to post"
1090
  msgstr ""
1091
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1092
  #: core/fields/image.php:19
1093
  msgid "Image"
1094
  msgstr ""
@@ -1109,7 +1152,7 @@ msgstr ""
1109
  msgid "Remove"
1110
  msgstr ""
1111
 
1112
- #: core/fields/image.php:84 core/views/meta_box_fields.php:122
1113
  msgid "Edit"
1114
  msgstr ""
1115
 
@@ -1195,7 +1238,7 @@ msgid "Post Type"
1195
  msgstr ""
1196
 
1197
  #: core/fields/page_link.php:127 core/fields/post_object.php:317
1198
- #: core/fields/select.php:214 core/fields/taxonomy.php:331
1199
  #: core/fields/user.php:275
1200
  msgid "Allow Null?"
1201
  msgstr ""
@@ -1302,7 +1345,7 @@ msgid "Maximum posts"
1302
  msgstr ""
1303
 
1304
  #: core/fields/select.php:18 core/fields/select.php:109
1305
- #: core/fields/taxonomy.php:322 core/fields/user.php:266
1306
  msgid "Select"
1307
  msgstr ""
1308
 
@@ -1326,49 +1369,49 @@ msgstr ""
1326
  msgid "Use multiple tabs to divide your fields into sections."
1327
  msgstr ""
1328
 
1329
- #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
1330
  msgid "Taxonomy"
1331
  msgstr ""
1332
 
1333
- #: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
1334
  msgid "None"
1335
  msgstr ""
1336
 
1337
- #: core/fields/taxonomy.php:306 core/fields/user.php:251
1338
- #: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173
1339
  msgid "Field Type"
1340
  msgstr ""
1341
 
1342
- #: core/fields/taxonomy.php:316 core/fields/user.php:260
1343
  msgid "Multiple Values"
1344
  msgstr ""
1345
 
1346
- #: core/fields/taxonomy.php:318 core/fields/user.php:262
1347
  msgid "Multi Select"
1348
  msgstr ""
1349
 
1350
- #: core/fields/taxonomy.php:320 core/fields/user.php:264
1351
  msgid "Single Value"
1352
  msgstr ""
1353
 
1354
- #: core/fields/taxonomy.php:321
1355
  msgid "Radio Buttons"
1356
  msgstr ""
1357
 
1358
- #: core/fields/taxonomy.php:350
1359
  msgid "Load & Save Terms to Post"
1360
  msgstr ""
1361
 
1362
- #: core/fields/taxonomy.php:358
1363
  msgid ""
1364
  "Load value based on the post's terms and update the post's terms on save"
1365
  msgstr ""
1366
 
1367
- #: core/fields/taxonomy.php:375
1368
  msgid "Term Object"
1369
  msgstr ""
1370
 
1371
- #: core/fields/taxonomy.php:376
1372
  msgid "Term ID"
1373
  msgstr ""
1374
 
@@ -1424,15 +1467,15 @@ msgstr ""
1424
  msgid "Filter by role"
1425
  msgstr ""
1426
 
1427
- #: core/fields/wysiwyg.php:19
1428
  msgid "Wysiwyg Editor"
1429
  msgstr ""
1430
 
1431
- #: core/fields/wysiwyg.php:186
1432
  msgid "Toolbar"
1433
  msgstr ""
1434
 
1435
- #: core/fields/wysiwyg.php:218
1436
  msgid "Show Media Upload Buttons?"
1437
  msgstr ""
1438
 
@@ -1444,138 +1487,113 @@ msgstr ""
1444
  msgid "Field type does not exist"
1445
  msgstr ""
1446
 
1447
- #: core/views/meta_box_fields.php:63
1448
- msgid "Move to trash. Are you sure?"
1449
- msgstr ""
1450
-
1451
- #: core/views/meta_box_fields.php:64
1452
- msgid "checked"
1453
- msgstr ""
1454
-
1455
- #: core/views/meta_box_fields.php:65
1456
- msgid "No toggle fields available"
1457
- msgstr ""
1458
-
1459
- #: core/views/meta_box_fields.php:66
1460
- msgid "Field group title is required"
1461
- msgstr ""
1462
-
1463
- #: core/views/meta_box_fields.php:67
1464
- msgid "copy"
1465
- msgstr ""
1466
-
1467
- #: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
1468
- #: core/views/meta_box_location.php:159
1469
- msgid "or"
1470
- msgstr ""
1471
-
1472
- #: core/views/meta_box_fields.php:88
1473
  msgid "Field Order"
1474
  msgstr ""
1475
 
1476
- #: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
1477
  msgid "Field Label"
1478
  msgstr ""
1479
 
1480
- #: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
1481
  msgid "Field Name"
1482
  msgstr ""
1483
 
1484
- #: core/views/meta_box_fields.php:92
1485
  msgid "Field Key"
1486
  msgstr ""
1487
 
1488
- #: core/views/meta_box_fields.php:104
1489
  msgid ""
1490
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1491
  "first field."
1492
  msgstr ""
1493
 
1494
- #: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
1495
  msgid "Edit this Field"
1496
  msgstr ""
1497
 
1498
- #: core/views/meta_box_fields.php:123
1499
  msgid "Read documentation for this field"
1500
  msgstr ""
1501
 
1502
- #: core/views/meta_box_fields.php:123
1503
  msgid "Docs"
1504
  msgstr ""
1505
 
1506
- #: core/views/meta_box_fields.php:124
1507
  msgid "Duplicate this Field"
1508
  msgstr ""
1509
 
1510
- #: core/views/meta_box_fields.php:124
1511
  msgid "Duplicate"
1512
  msgstr ""
1513
 
1514
- #: core/views/meta_box_fields.php:125
1515
  msgid "Delete this Field"
1516
  msgstr ""
1517
 
1518
- #: core/views/meta_box_fields.php:125
1519
  msgid "Delete"
1520
  msgstr ""
1521
 
1522
- #: core/views/meta_box_fields.php:142
1523
  msgid "This is the name which will appear on the EDIT page"
1524
  msgstr ""
1525
 
1526
- #: core/views/meta_box_fields.php:158
1527
  msgid "Single word, no spaces. Underscores and dashes allowed"
1528
  msgstr ""
1529
 
1530
- #: core/views/meta_box_fields.php:187
1531
  msgid "Field Instructions"
1532
  msgstr ""
1533
 
1534
- #: core/views/meta_box_fields.php:188
1535
  msgid "Instructions for authors. Shown when submitting data"
1536
  msgstr ""
1537
 
1538
- #: core/views/meta_box_fields.php:200
1539
  msgid "Required?"
1540
  msgstr ""
1541
 
1542
- #: core/views/meta_box_fields.php:223
1543
  msgid "Conditional Logic"
1544
  msgstr ""
1545
 
1546
- #: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:117
1547
  msgid "is equal to"
1548
  msgstr ""
1549
 
1550
- #: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:118
1551
  msgid "is not equal to"
1552
  msgstr ""
1553
 
1554
- #: core/views/meta_box_fields.php:293
1555
  msgid "Show this field when"
1556
  msgstr ""
1557
 
1558
- #: core/views/meta_box_fields.php:299
1559
  msgid "all"
1560
  msgstr ""
1561
 
1562
- #: core/views/meta_box_fields.php:300
1563
  msgid "any"
1564
  msgstr ""
1565
 
1566
- #: core/views/meta_box_fields.php:303
1567
  msgid "these rules are met"
1568
  msgstr ""
1569
 
1570
- #: core/views/meta_box_fields.php:317
1571
  msgid "Close Field"
1572
  msgstr ""
1573
 
1574
- #: core/views/meta_box_fields.php:330
1575
  msgid "Drag and drop to reorder"
1576
  msgstr ""
1577
 
1578
- #: core/views/meta_box_fields.php:331
1579
  msgid "+ Add Field"
1580
  msgstr ""
1581
 
@@ -1638,7 +1656,7 @@ msgid "Attachment"
1638
  msgstr ""
1639
 
1640
  #: core/views/meta_box_location.php:93
1641
- msgid "Term"
1642
  msgstr ""
1643
 
1644
  #: core/views/meta_box_location.php:146
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"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: acf.php:436
16
  msgid "Field&nbsp;Groups"
17
  msgstr ""
18
 
19
+ #: acf.php:437 core/controllers/field_groups.php:214
20
  msgid "Advanced Custom Fields"
21
  msgstr ""
22
 
23
+ #: acf.php:438
24
  msgid "Add New"
25
  msgstr ""
26
 
27
+ #: acf.php:439
28
  msgid "Add New Field Group"
29
  msgstr ""
30
 
31
+ #: acf.php:440
32
  msgid "Edit Field Group"
33
  msgstr ""
34
 
35
+ #: acf.php:441
36
  msgid "New Field Group"
37
  msgstr ""
38
 
39
+ #: acf.php:442
40
  msgid "View Field Group"
41
  msgstr ""
42
 
43
+ #: acf.php:443
44
  msgid "Search Field Groups"
45
  msgstr ""
46
 
47
+ #: acf.php:444
48
  msgid "No Field Groups found"
49
  msgstr ""
50
 
51
+ #: acf.php:445
52
  msgid "No Field Groups found in Trash"
53
  msgstr ""
54
 
55
+ #: acf.php:548 core/views/meta_box_options.php:98
56
  msgid "Custom Fields"
57
  msgstr ""
58
 
59
+ #: acf.php:566 acf.php:569
60
  msgid "Field group updated."
61
  msgstr ""
62
 
63
+ #: acf.php:567
64
  msgid "Custom field updated."
65
  msgstr ""
66
 
67
+ #: acf.php:568
68
  msgid "Custom field deleted."
69
  msgstr ""
70
 
71
  #. translators: %s: date and time of the revision
72
+ #: acf.php:571
73
  msgid "Field group restored to revision from %s"
74
  msgstr ""
75
 
76
+ #: acf.php:572
77
  msgid "Field group published."
78
  msgstr ""
79
 
80
+ #: acf.php:573
81
  msgid "Field group saved."
82
  msgstr ""
83
 
84
+ #: acf.php:574
85
  msgid "Field group submitted."
86
  msgstr ""
87
 
88
+ #: acf.php:575
89
  msgid "Field group scheduled for."
90
  msgstr ""
91
 
92
+ #: acf.php:576
93
  msgid "Field group draft updated."
94
  msgstr ""
95
 
96
+ #: acf.php:711
97
  msgid "Thumbnail"
98
  msgstr ""
99
 
100
+ #: acf.php:712
101
  msgid "Medium"
102
  msgstr ""
103
 
104
+ #: acf.php:713
105
  msgid "Large"
106
  msgstr ""
107
 
108
+ #: acf.php:714
109
  msgid "Full"
110
  msgstr ""
111
 
112
+ #: core/actions/export.php:26 core/views/meta_box_fields.php:58
113
  msgid "Error"
114
  msgstr ""
115
 
116
+ #: core/actions/export.php:33
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
 
128
+ #: core/controllers/addons.php:42 core/controllers/field_groups.php:311
 
129
  msgid "Add-ons"
130
  msgstr ""
131
 
132
+ #: core/controllers/addons.php:130 core/controllers/field_groups.php:433
133
  msgid "Repeater Field"
134
  msgstr ""
135
 
137
  msgid "Create infinite rows of repeatable data with this versatile interface!"
138
  msgstr ""
139
 
140
+ #: core/controllers/addons.php:137 core/controllers/field_groups.php:441
141
  msgid "Gallery Field"
142
  msgstr ""
143
 
145
  msgid "Create image galleries in a simple and intuitive interface!"
146
  msgstr ""
147
 
148
+ #: core/controllers/addons.php:144 core/controllers/field_groups.php:449
149
  msgid "Options Page"
150
  msgstr ""
151
 
217
  msgid "Purchase & Install"
218
  msgstr ""
219
 
220
+ #: core/controllers/addons.php:242 core/controllers/field_groups.php:426
221
+ #: core/controllers/field_groups.php:435 core/controllers/field_groups.php:443
222
+ #: core/controllers/field_groups.php:451 core/controllers/field_groups.php:459
223
  msgid "Download"
224
  msgstr ""
225
 
355
  msgid "Back to export"
356
  msgstr ""
357
 
358
+ #: core/controllers/export.php:400
359
+ msgid "No field groups were selected"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  msgstr ""
361
 
362
+ #: core/controllers/field_group.php:358
363
+ msgid "Move to trash. Are you sure?"
364
+ msgstr ""
365
+
366
+ #: core/controllers/field_group.php:359
367
+ msgid "checked"
368
+ msgstr ""
369
+
370
+ #: core/controllers/field_group.php:360
371
+ msgid "No toggle fields available"
372
+ msgstr ""
373
+
374
+ #: core/controllers/field_group.php:361
375
+ msgid "Field group title is required"
376
+ msgstr ""
377
+
378
+ #: core/controllers/field_group.php:362
379
+ msgid "copy"
380
+ msgstr ""
381
+
382
+ #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
383
+ #: core/views/meta_box_location.php:159
384
+ msgid "or"
385
  msgstr ""
386
 
387
+ #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
388
+ #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
389
  msgid "Fields"
390
  msgstr ""
391
 
392
+ #: core/controllers/field_group.php:365
393
+ msgid "Parent fields"
394
+ msgstr ""
395
+
396
+ #: core/controllers/field_group.php:366
397
+ msgid "Sibling fields"
398
+ msgstr ""
399
+
400
+ #: core/controllers/field_group.php:367
401
+ msgid "Hide / Show All"
402
+ msgstr ""
403
+
404
+ #: core/controllers/field_group.php:396
405
  msgid "Location"
406
  msgstr ""
407
 
408
+ #: core/controllers/field_group.php:397
409
  msgid "Options"
410
  msgstr ""
411
 
412
+ #: core/controllers/field_group.php:459
413
  msgid "Show Field Key:"
414
  msgstr ""
415
 
416
+ #: core/controllers/field_group.php:460 core/fields/page_link.php:138
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 ""
424
 
425
+ #: core/controllers/field_group.php:461 core/fields/page_link.php:137
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
751
  msgid "Changelog for"
752
  msgstr ""
753
 
754
+ #: core/controllers/field_groups.php:397
755
  msgid "Learn more"
756
  msgstr ""
757
 
758
+ #: core/controllers/field_groups.php:403
759
  msgid "Overview"
760
  msgstr ""
761
 
762
+ #: core/controllers/field_groups.php:405
763
  msgid ""
764
  "Previously, all Add-ons were unlocked via an activation code (purchased from "
765
  "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
766
  "need to be individually downloaded, installed and updated."
767
  msgstr ""
768
 
769
+ #: core/controllers/field_groups.php:407
770
  msgid ""
771
  "This page will assist you in downloading and installing each available Add-"
772
  "on."
773
  msgstr ""
774
 
775
+ #: core/controllers/field_groups.php:409
776
  msgid "Available Add-ons"
777
  msgstr ""
778
 
779
+ #: core/controllers/field_groups.php:411
780
  msgid "The following Add-ons have been detected as activated on this website."
781
  msgstr ""
782
 
783
+ #: core/controllers/field_groups.php:424
784
  msgid "Name"
785
  msgstr ""
786
 
787
+ #: core/controllers/field_groups.php:425
788
  msgid "Activation Code"
789
  msgstr ""
790
 
791
+ #: core/controllers/field_groups.php:457
792
  msgid "Flexible Content"
793
  msgstr ""
794
 
795
+ #: core/controllers/field_groups.php:467
796
  msgid "Installation"
797
  msgstr ""
798
 
799
+ #: core/controllers/field_groups.php:469
800
  msgid "For each Add-on available, please perform the following:"
801
  msgstr ""
802
 
803
+ #: core/controllers/field_groups.php:471
804
  msgid "Download the Add-on plugin (.zip file) to your desktop"
805
  msgstr ""
806
 
807
+ #: core/controllers/field_groups.php:472
808
  msgid "Navigate to"
809
  msgstr ""
810
 
811
+ #: core/controllers/field_groups.php:472
812
  msgid "Plugins > Add New > Upload"
813
  msgstr ""
814
 
815
+ #: core/controllers/field_groups.php:473
816
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
817
  msgstr ""
818
 
819
+ #: core/controllers/field_groups.php:474
820
  msgid ""
821
  "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
822
  "link"
823
  msgstr ""
824
 
825
+ #: core/controllers/field_groups.php:475
826
  msgid "The Add-on is now installed and activated!"
827
  msgstr ""
828
 
829
+ #: core/controllers/field_groups.php:489
830
  msgid "Awesome. Let's get to work"
831
  msgstr ""
832
 
833
+ #: core/controllers/input.php:63
834
  msgid "Expand Details"
835
  msgstr ""
836
 
837
+ #: core/controllers/input.php:64
838
  msgid "Collapse Details"
839
  msgstr ""
840
 
841
+ #: core/controllers/input.php:67
842
  msgid "Validation Failed. One or more fields below are required."
843
  msgstr ""
844
 
870
  msgid "Basic"
871
  msgstr ""
872
 
873
+ #: core/fields/checkbox.php:19 core/fields/taxonomy.php:319
874
  msgid "Checkbox"
875
  msgstr ""
876
 
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 ""
886
 
887
+ #: core/fields/checkbox.php:147 core/fields/select.php:178
888
  msgid "Enter each choice on a new line."
889
  msgstr ""
890
 
891
+ #: core/fields/checkbox.php:148 core/fields/select.php:179
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
 
913
+ #: core/fields/checkbox.php:167 core/fields/select.php:198
914
  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
 
931
  msgid "Color Picker"
932
  msgstr ""
933
 
934
+ #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
935
+ #: core/fields/google-map.php:19
936
  msgid "jQuery"
937
  msgstr ""
938
 
939
+ #: core/fields/date_picker/date_picker.php:19
940
  msgid "Date Picker"
941
  msgstr ""
942
 
943
+ #: core/fields/date_picker/date_picker.php:55
944
  msgid "Done"
945
  msgstr ""
946
 
947
+ #: core/fields/date_picker/date_picker.php:56
948
  msgid "Today"
949
  msgstr ""
950
 
951
+ #: core/fields/date_picker/date_picker.php:59
952
  msgid "Show a different month"
953
  msgstr ""
954
 
955
+ #: core/fields/date_picker/date_picker.php:126
956
  msgid "Save format"
957
  msgstr ""
958
 
959
+ #: core/fields/date_picker/date_picker.php:127
960
  msgid ""
961
  "This format will determin the value saved to the database and returned via "
962
  "the API"
963
  msgstr ""
964
 
965
+ #: core/fields/date_picker/date_picker.php:128
966
  msgid "\"yymmdd\" is the most versatile save format. Read more about"
967
  msgstr ""
968
 
969
+ #: core/fields/date_picker/date_picker.php:128
970
+ #: core/fields/date_picker/date_picker.php:144
971
  msgid "jQuery date formats"
972
  msgstr ""
973
 
974
+ #: core/fields/date_picker/date_picker.php:142
975
  msgid "Display format"
976
  msgstr ""
977
 
978
+ #: core/fields/date_picker/date_picker.php:143
979
  msgid "This format will be seen by the user when entering a value"
980
  msgstr ""
981
 
982
+ #: core/fields/date_picker/date_picker.php:144
983
  msgid ""
984
  "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
985
  "about"
986
  msgstr ""
987
 
988
+ #: core/fields/date_picker/date_picker.php:158
989
  msgid "Week Starts On"
990
  msgstr ""
991
 
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
 
1039
  msgid "File"
1040
  msgstr ""
1041
 
1042
+ #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36
1043
  msgid "Content"
1044
  msgstr ""
1045
 
1068
  msgstr ""
1069
 
1070
  #: core/fields/file.php:153 core/fields/image.php:118
1071
+ #: core/fields/taxonomy.php:367
1072
  msgid "Return Value"
1073
  msgstr ""
1074
 
1092
  msgid "Uploaded to post"
1093
  msgstr ""
1094
 
1095
+ #: core/fields/google-map.php:18
1096
+ msgid "Google Map"
1097
+ msgstr ""
1098
+
1099
+ #: core/fields/google-map.php:31
1100
+ msgid "Locating"
1101
+ msgstr ""
1102
+
1103
+ #: core/fields/google-map.php:32
1104
+ msgid "Sorry, this browser does not support geolocation"
1105
+ msgstr ""
1106
+
1107
+ #: core/fields/google-map.php:117
1108
+ msgid "Clear location"
1109
+ msgstr ""
1110
+
1111
+ #: core/fields/google-map.php:122
1112
+ msgid "Find current location"
1113
+ msgstr ""
1114
+
1115
+ #: core/fields/google-map.php:123
1116
+ msgid "Search for address..."
1117
+ msgstr ""
1118
+
1119
+ #: core/fields/google-map.php:159
1120
+ msgid "Center"
1121
+ msgstr ""
1122
+
1123
+ #: core/fields/google-map.php:160
1124
+ msgid "Center the initial map"
1125
+ msgstr ""
1126
+
1127
+ #: core/fields/google-map.php:196
1128
+ msgid "Height"
1129
+ msgstr ""
1130
+
1131
+ #: core/fields/google-map.php:197
1132
+ msgid "Customise the map height"
1133
+ msgstr ""
1134
+
1135
  #: core/fields/image.php:19
1136
  msgid "Image"
1137
  msgstr ""
1152
  msgid "Remove"
1153
  msgstr ""
1154
 
1155
+ #: core/fields/image.php:84 core/views/meta_box_fields.php:108
1156
  msgid "Edit"
1157
  msgstr ""
1158
 
1238
  msgstr ""
1239
 
1240
  #: core/fields/page_link.php:127 core/fields/post_object.php:317
1241
+ #: core/fields/select.php:214 core/fields/taxonomy.php:333
1242
  #: core/fields/user.php:275
1243
  msgid "Allow Null?"
1244
  msgstr ""
1345
  msgstr ""
1346
 
1347
  #: core/fields/select.php:18 core/fields/select.php:109
1348
+ #: core/fields/taxonomy.php:324 core/fields/user.php:266
1349
  msgid "Select"
1350
  msgstr ""
1351
 
1369
  msgid "Use multiple tabs to divide your fields into sections."
1370
  msgstr ""
1371
 
1372
+ #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278
1373
  msgid "Taxonomy"
1374
  msgstr ""
1375
 
1376
+ #: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231
1377
  msgid "None"
1378
  msgstr ""
1379
 
1380
+ #: core/fields/taxonomy.php:308 core/fields/user.php:251
1381
+ #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159
1382
  msgid "Field Type"
1383
  msgstr ""
1384
 
1385
+ #: core/fields/taxonomy.php:318 core/fields/user.php:260
1386
  msgid "Multiple Values"
1387
  msgstr ""
1388
 
1389
+ #: core/fields/taxonomy.php:320 core/fields/user.php:262
1390
  msgid "Multi Select"
1391
  msgstr ""
1392
 
1393
+ #: core/fields/taxonomy.php:322 core/fields/user.php:264
1394
  msgid "Single Value"
1395
  msgstr ""
1396
 
1397
+ #: core/fields/taxonomy.php:323
1398
  msgid "Radio Buttons"
1399
  msgstr ""
1400
 
1401
+ #: core/fields/taxonomy.php:352
1402
  msgid "Load & Save Terms to Post"
1403
  msgstr ""
1404
 
1405
+ #: core/fields/taxonomy.php:360
1406
  msgid ""
1407
  "Load value based on the post's terms and update the post's terms on save"
1408
  msgstr ""
1409
 
1410
+ #: core/fields/taxonomy.php:377
1411
  msgid "Term Object"
1412
  msgstr ""
1413
 
1414
+ #: core/fields/taxonomy.php:378
1415
  msgid "Term ID"
1416
  msgstr ""
1417
 
1467
  msgid "Filter by role"
1468
  msgstr ""
1469
 
1470
+ #: core/fields/wysiwyg.php:35
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
 
1487
  msgid "Field type does not exist"
1488
  msgstr ""
1489
 
1490
+ #: core/views/meta_box_fields.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1491
  msgid "Field Order"
1492
  msgstr ""
1493
 
1494
+ #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127
1495
  msgid "Field Label"
1496
  msgstr ""
1497
 
1498
+ #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143
1499
  msgid "Field Name"
1500
  msgstr ""
1501
 
1502
+ #: core/views/meta_box_fields.php:78
1503
  msgid "Field Key"
1504
  msgstr ""
1505
 
1506
+ #: core/views/meta_box_fields.php:90
1507
  msgid ""
1508
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1509
  "first field."
1510
  msgstr ""
1511
 
1512
+ #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
1513
  msgid "Edit this Field"
1514
  msgstr ""
1515
 
1516
+ #: core/views/meta_box_fields.php:109
1517
  msgid "Read documentation for this field"
1518
  msgstr ""
1519
 
1520
+ #: core/views/meta_box_fields.php:109
1521
  msgid "Docs"
1522
  msgstr ""
1523
 
1524
+ #: core/views/meta_box_fields.php:110
1525
  msgid "Duplicate this Field"
1526
  msgstr ""
1527
 
1528
+ #: core/views/meta_box_fields.php:110
1529
  msgid "Duplicate"
1530
  msgstr ""
1531
 
1532
+ #: core/views/meta_box_fields.php:111
1533
  msgid "Delete this Field"
1534
  msgstr ""
1535
 
1536
+ #: core/views/meta_box_fields.php:111
1537
  msgid "Delete"
1538
  msgstr ""
1539
 
1540
+ #: core/views/meta_box_fields.php:128
1541
  msgid "This is the name which will appear on the EDIT page"
1542
  msgstr ""
1543
 
1544
+ #: core/views/meta_box_fields.php:144
1545
  msgid "Single word, no spaces. Underscores and dashes allowed"
1546
  msgstr ""
1547
 
1548
+ #: core/views/meta_box_fields.php:173
1549
  msgid "Field Instructions"
1550
  msgstr ""
1551
 
1552
+ #: core/views/meta_box_fields.php:174
1553
  msgid "Instructions for authors. Shown when submitting data"
1554
  msgstr ""
1555
 
1556
+ #: core/views/meta_box_fields.php:186
1557
  msgid "Required?"
1558
  msgstr ""
1559
 
1560
+ #: core/views/meta_box_fields.php:209
1561
  msgid "Conditional Logic"
1562
  msgstr ""
1563
 
1564
+ #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
1565
  msgid "is equal to"
1566
  msgstr ""
1567
 
1568
+ #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
1569
  msgid "is not equal to"
1570
  msgstr ""
1571
 
1572
+ #: core/views/meta_box_fields.php:279
1573
  msgid "Show this field when"
1574
  msgstr ""
1575
 
1576
+ #: core/views/meta_box_fields.php:285
1577
  msgid "all"
1578
  msgstr ""
1579
 
1580
+ #: core/views/meta_box_fields.php:286
1581
  msgid "any"
1582
  msgstr ""
1583
 
1584
+ #: core/views/meta_box_fields.php:289
1585
  msgid "these rules are met"
1586
  msgstr ""
1587
 
1588
+ #: core/views/meta_box_fields.php:303
1589
  msgid "Close Field"
1590
  msgstr ""
1591
 
1592
+ #: core/views/meta_box_fields.php:316
1593
  msgid "Drag and drop to reorder"
1594
  msgstr ""
1595
 
1596
+ #: core/views/meta_box_fields.php:317
1597
  msgid "+ Add Field"
1598
  msgstr ""
1599
 
1656
  msgstr ""
1657
 
1658
  #: core/views/meta_box_location.php:93
1659
+ msgid "Taxonomy Term"
1660
  msgstr ""
1661
 
1662
  #: core/views/meta_box_location.php:146
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.5.0
5
- Tested up to: 3.6.0
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
@@ -21,7 +21,6 @@ Advanced Custom Fields is the perfect solution for any wordpress website which n
21
  * Uses the native WordPress metadata for ease of use and fast processing
22
 
23
  = Field Types =
24
- * Tab (Group fields into tabs)
25
  * Text (type text, api returns text)
26
  * Text Area (type text, api returns text with `<br />` tags)
27
  * Number (type number, api returns integer)
@@ -39,8 +38,11 @@ Advanced Custom Fields is the perfect solution for any wordpress website which n
39
  * Relationship (search, select and order post objects with a tidy interface, api returns the selected post objects)
40
  * Taxonomy (select taxonomy terms with options to load, display and save, api returns the selected term objects)
41
  * User (select 1 or more WP users, api returns the selected user objects)
 
42
  * Date Picker (jquery date picker, options for format, api returns string)
43
- * Color Picker (Farbtastic!)
 
 
44
  * Repeater (ability to create repeatable blocks of fields!)
45
  * Flexible Content (ability to create flexible blocks of fields!)
46
  * Gallery (Add, edit and order multiple images in 1 simple field)
@@ -105,6 +107,30 @@ http://support.advancedcustomfields.com/
105
 
106
  == Changelog ==
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  = 4.2.2 =
109
  * Field group: Added 'High (after title)' position for a metabox - http://support.advancedcustomfields.com/forums/topic/position-after-title-solution-inside/
110
  * Relationship field: Fixed bug with 'exclude_from_search' post types
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.5.0
5
+ Tested up to: 3.7.1
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
21
  * Uses the native WordPress metadata for ease of use and fast processing
22
 
23
  = Field Types =
 
24
  * Text (type text, api returns text)
25
  * Text Area (type text, api returns text with `<br />` tags)
26
  * Number (type number, api returns integer)
38
  * Relationship (search, select and order post objects with a tidy interface, api returns the selected post objects)
39
  * Taxonomy (select taxonomy terms with options to load, display and save, api returns the selected term objects)
40
  * User (select 1 or more WP users, api returns the selected user objects)
41
+ * Google Maps (interactive map, api returns lat,lng,address data)
42
  * Date Picker (jquery date picker, options for format, api returns string)
43
+ * Color Picker (WP color swatch picker)
44
+ * Tab (Group fields into tabs)
45
+ * Message (Render custom messages into the fields)
46
  * Repeater (ability to create repeatable blocks of fields!)
47
  * Flexible Content (ability to create flexible blocks of fields!)
48
  * Gallery (Add, edit and order multiple images in 1 simple field)
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
113
+ * Core: Added conditional logic support for sub fields - will also require an update to the repeater / flexible content field add-on to work
114
+ * Core: Added required validation support for sub fields - will also require an update to the repeater / flexible content field add-on to work
115
+ * API: Added new function have_rows()
116
+ * API: Added new function the_row()
117
+ * API: Fixed front end form upload issues when editing a user - http://support.advancedcustomfields.com/forums/topic/repeater-image-upload-failing/
118
+ * API: Fixed front end form bug where the wrong post_id is being passed to JS - http://support.advancedcustomfields.com/forums/topic/attachments-parent-id/
119
+ * Export: wrapped title and instructions in __() function - http://support.advancedcustomfields.com/forums/topic/wrap-labels-and-descriptions-with-__-in-the-php-export-file/
120
+ * Core: Filter out ACF fields from the native custom field dropdown - http://support.advancedcustomfields.com/forums/topic/meta-key-instead-of-name-on-add-new-custom-field-instead-of-name/ - http://support.advancedcustomfields.com/forums/topic/odd-sub-field-names-in-custom-fields/
121
+ * Revisions: Improved save functionality to detect post change when custom fields are edited - http://support.advancedcustomfields.com/forums/topic/wordpress-3-6-revisions-custom-fields-no-longer-tracked/
122
+ * Core: Add field group title for user edit screen - http://support.advancedcustomfields.com/forums/topic/can-you-add-a-title-or-hr-tag-when-using-acf-in-taxonomy-edit-screen/
123
+ * Field group: Add 'toggle all' option to hide from screen - http://support.advancedcustomfields.com/forums/topic/hidecheck-all-single-checkbox-when-hiding-items-from-pagepost-edit-screen/
124
+ * Taxonomy field: Add new filter for wp_list_categories args - http://support.advancedcustomfields.com/forums/topic/taxonomy-field-type-filter-to-only-show-parents/
125
+ * Taxonomy field: Fixed JS bug causing attachment field groups to disappear due to incorrect AJAX location data - http://support.advancedcustomfields.com/forums/topic/taxonomy-checkboxes/
126
+ * WYSIWYG field: Fixed JS bug where formatting is removed when drag/drop it's repeater row
127
+ * Tab field: Corrected minor JS bugs with conditional logic - http://support.advancedcustomfields.com/forums/topic/tabs-logic-hide-issue/
128
+ * Relationship field: Values now save correctly as an array of strings (for LIKE querying)
129
+ * Post object field: Values now save correctly as an array of strings (for LIKE querying)
130
+ * Image field: Added mime_type data to returned value
131
+ * Field field: Added mime_type data to returned value
132
+ * Core: Lots of minor improvements
133
+
134
  = 4.2.2 =
135
  * Field group: Added 'High (after title)' position for a metabox - http://support.advancedcustomfields.com/forums/topic/position-after-title-solution-inside/
136
  * Relationship field: Fixed bug with 'exclude_from_search' post types