Advanced Custom Fields - Version 3.2.3

Version Description

  • [Fixed] Include Wysiwyg scripts / styles through the editor class
  • [Fixed] Wysiwyg in repeater not working
  • [Fixed] Remove Swedish translation until string / js bugs are fixed
  • [Fixed] Checkbox array value issue: http://wordpress.org/support/topic/plugin-advanced-custom-fields-php-warning-in-corefieldscheckboxphp?replies=6
  • [Added] Add inherit to relationship posts query - http://www.advancedcustomfields.com/support/discussion/comment/3826#Comment_3826
  • [Fixed] Relationship shows deleted posts - http://www.advancedcustomfields.com/support/discussion/2080/strange-behavior-of-relationship-field-trash-posts
  • [Fixed] Wysiwyg editor not working on taxonomy edit page
Download this release

Release Info

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

Code changes from version 3.2.2 to 3.2.3

acf.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
6
- Version: 3.2.2
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
@@ -44,7 +44,7 @@ class Acf
44
  $this->dir = plugins_url('',__FILE__);
45
  $this->siteurl = get_bloginfo('url');
46
  $this->wpadminurl = admin_url();
47
- $this->version = '3.2.2';
48
  $this->upgrade_version = '3.1.8'; // this is the latest version which requires an upgrade
49
  $this->cache = array(); // basic array cache to hold data throughout the page load
50
 
@@ -946,9 +946,9 @@ class Acf
946
  if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id;
947
 
948
  // only save once! WordPress save's twice for some strange reason.
949
- global $flag;
950
- if ($flag != 0) return $post_id;
951
- $flag = 1;
952
 
953
  // set post ID if is a revision
954
  if(wp_is_post_revision($post_id))
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
6
+ Version: 3.2.3
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
44
  $this->dir = plugins_url('',__FILE__);
45
  $this->siteurl = get_bloginfo('url');
46
  $this->wpadminurl = admin_url();
47
+ $this->version = '3.2.3';
48
  $this->upgrade_version = '3.1.8'; // this is the latest version which requires an upgrade
49
  $this->cache = array(); // basic array cache to hold data throughout the page load
50
 
946
  if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id;
947
 
948
  // only save once! WordPress save's twice for some strange reason.
949
+ global $acf_flag;
950
+ if ($acf_flag != 0) return $post_id;
951
+ $acf_flag = 1;
952
 
953
  // set post ID if is a revision
954
  if(wp_is_post_revision($post_id))
core/everything_fields.php CHANGED
@@ -205,12 +205,8 @@ class Everything_fields
205
  </script>';
206
 
207
 
208
- // run action for any extra functionality
209
- foreach($this->parent->fields as $field)
210
- {
211
- $this->parent->fields[$field->name]->admin_head();
212
- }
213
- do_action('admin_head-acf_input');
214
 
215
 
216
  ?>
@@ -222,7 +218,7 @@ class Everything_fields
222
  metabox_ids : '<?php echo implode( ',', $this->data['metabox_ids'] ); ?>',
223
  page_type : '<?php echo $this->data['page_type']; ?>',
224
  page_action : '<?php echo $this->data['page_action']; ?>',
225
- option_name : '<?php echo $this->data['option_name']; ?>',
226
  };
227
 
228
  $(document).ready(function(){
@@ -269,7 +265,7 @@ class Everything_fields
269
  }
270
  }
271
 
272
- echo "$(document).trigger('acf/setup_fields', $('#wpbody') );";
273
 
274
  ?>
275
  }
205
  </script>';
206
 
207
 
208
+ // add user js + css
209
+ do_action('acf_head-input');
 
 
 
 
210
 
211
 
212
  ?>
218
  metabox_ids : '<?php echo implode( ',', $this->data['metabox_ids'] ); ?>',
219
  page_type : '<?php echo $this->data['page_type']; ?>',
220
  page_action : '<?php echo $this->data['page_action']; ?>',
221
+ option_name : '<?php echo $this->data['option_name']; ?>'
222
  };
223
 
224
  $(document).ready(function(){
265
  }
266
  }
267
 
268
+ echo "setTimeout( function(){ $(document).trigger('acf/setup_fields', $('#wpbody') ); }, 200);";
269
 
270
  ?>
271
  }
core/fields/checkbox.php CHANGED
@@ -36,7 +36,18 @@ class acf_Checkbox extends acf_Field
36
  function create_field($field)
37
  {
38
  // defaults
39
- if(empty($field['value'])) $field['value'] = array();
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  // no choices
42
  if(empty($field['choices']))
36
  function create_field($field)
37
  {
38
  // defaults
39
+ if(empty($field['value']))
40
+ {
41
+ $field['value'] = array();
42
+ }
43
+
44
+
45
+ // single value to array conversion
46
+ if( !is_array($field['value']) )
47
+ {
48
+ $field['value'] = array( $field['value'] );
49
+ }
50
+
51
 
52
  // no choices
53
  if(empty($field['choices']))
core/fields/file.php CHANGED
@@ -378,7 +378,7 @@ class acf_File extends acf_Field
378
  if((i+1) < ids.length)
379
  {
380
  // add row
381
- self.parent.acf_div.closest('.repeater').find('.table_footer .add-row-end').trigger('click');
382
 
383
  // set acf_div to new row file
384
  self.parent.acf_div = self.parent.acf_div.closest('.repeater').find('> table > tbody > tr:last-child .acf_file_uploader');
378
  if((i+1) < ids.length)
379
  {
380
  // add row
381
+ self.parent.acf_div.closest('.repeater').find('.add-row-end').trigger('click');
382
 
383
  // set acf_div to new row file
384
  self.parent.acf_div = self.parent.acf_div.closest('.repeater').find('> table > tbody > tr:last-child .acf_file_uploader');
core/fields/flexible_content.php CHANGED
@@ -176,22 +176,20 @@ class acf_Flexible_content extends acf_Field
176
  <?php endif; ?>
177
  <?php // values here ?>
178
  </div>
179
- <div class="table_footer">
180
- <div class="order_message"></div>
181
- <div class="acf_popup">
182
- <ul>
183
- <?php foreach($field['layouts'] as $layout): $i++; ?>
184
- <li><a href="javascript:;" data-layout="<?php echo $layout['name']; ?>"><?php echo $layout['label']; ?></a></li>
185
- <?php endforeach; ?>
186
- </ul>
187
- <div class="bit"></div>
188
- </div>
189
- <ul class="hl clearfix">
190
- <li class="right">
191
- <a href="javascript:;" id="fc_add_row" class="add_row acf-button"><?php echo $button_label; ?></a>
192
- </li>
193
- </ul>
194
- </div>
195
 
196
  </div>
197
  <?php
176
  <?php endif; ?>
177
  <?php // values here ?>
178
  </div>
179
+
180
+ <ul class="hl clearfix flexible-footer">
181
+ <li class="right">
182
+ <a href="javascript:;" class="add-row-end acf-button"><?php echo $button_label; ?></a>
183
+ <div class="acf-popup">
184
+ <ul>
185
+ <?php foreach($field['layouts'] as $layout): $i++; ?>
186
+ <li><a href="javascript:;" data-layout="<?php echo $layout['name']; ?>"><?php echo $layout['label']; ?></a></li>
187
+ <?php endforeach; ?>
188
+ </ul>
189
+ <div class="bit"></div>
190
+ </div>
191
+ </li>
192
+ </ul>
 
 
193
 
194
  </div>
195
  <?php
core/fields/image.php CHANGED
@@ -442,7 +442,7 @@ class acf_Image extends acf_Field
442
  if((i+1) < total)
443
  {
444
  // add row
445
- self.parent.acf_div.closest('.repeater').find('.table_footer .add-row-end').trigger('click');
446
 
447
  // set acf_div to new row image
448
  self.parent.acf_div = self.parent.acf_div.closest('.repeater').find('> table > tbody > tr:last-child .acf_image_uploader');
442
  if((i+1) < total)
443
  {
444
  // add row
445
+ self.parent.acf_div.closest('.repeater').find('.add-row-end').trigger('click');
446
 
447
  // set acf_div to new row image
448
  self.parent.acf_div = self.parent.acf_div.closest('.repeater').find('> table > tbody > tr:last-child .acf_image_uploader');
core/fields/relationship.php CHANGED
@@ -80,7 +80,7 @@ class acf_Relationship extends acf_Field
80
  'post_type' => $field['post_type'],
81
  'orderby' => 'title',
82
  'order' => 'ASC',
83
- 'post_status' => array('publish', 'private', 'draft'),
84
  //'meta_key' => $field['meta_key'],
85
  //'meta_value' => $field['meta_value'],
86
  ));
@@ -362,7 +362,12 @@ class acf_Relationship extends acf_Field
362
  $return = array();
363
  foreach($value as $v)
364
  {
365
- $return[] = get_post($v);
 
 
 
 
 
366
  }
367
  }
368
  else
80
  'post_type' => $field['post_type'],
81
  'orderby' => 'title',
82
  'order' => 'ASC',
83
+ 'post_status' => array('publish', 'private', 'draft', 'inherit'),
84
  //'meta_key' => $field['meta_key'],
85
  //'meta_value' => $field['meta_value'],
86
  ));
362
  $return = array();
363
  foreach($value as $v)
364
  {
365
+ $p = get_post($v);
366
+
367
+ if( $p && in_array( $p->post_status, array('publish', 'private', 'draft', 'inherit')) )
368
+ {
369
+ $return[] = $p;
370
+ }
371
  }
372
  }
373
  else
core/fields/repeater.php CHANGED
@@ -45,102 +45,6 @@ class acf_Repeater extends acf_Field
45
  }
46
 
47
 
48
-
49
- /*--------------------------------------------------------------------------------------
50
- *
51
- * create_field_row
52
- *
53
- * @author Elliot Condon
54
- * @since 3.2.1
55
- *
56
- *-------------------------------------------------------------------------------------
57
-
58
- function temp_create_row( $options = array() )
59
- {
60
-
61
- // vars
62
- $defaults = array(
63
- 'i' => 999,
64
- 'row_limit' => 999,
65
- 'layout' => 'row',
66
- 'sub_fields' => false
67
- );
68
- $options = array_merge($defaults, $options);
69
-
70
-
71
- ?>
72
- <tr class="<?php echo ( $options['i'] == 999 ) ? "row_clone" : "row"; ?>">
73
-
74
- <?php
75
-
76
- // add order number, if row_limit > 1
77
-
78
- if( $options['row_limit'] > 1 ): ?>
79
- <td class="order"><?php echo $i+1; ?></td>
80
- <?php endif;
81
-
82
-
83
- // if layout is row, create a td to hold all the fields
84
-
85
- if( $options['layout'] == 'row'): ?>
86
- <td>
87
- <?php endif;
88
-
89
-
90
- // loop through sub fields
91
- if( $options['sub_fields'] ):
92
- foreach( $options['sub_fields'] as $j => $sub_field):
93
-
94
- if( $options['layout'] == 'table' ): ?>
95
- <td>
96
- <?php else: ?>
97
- <div class="row-layout-field">
98
- <p class="label">
99
- <label><?php echo $sub_field['label']; ?></label>
100
- <?php
101
-
102
- if(!isset($sub_field['instructions']))
103
- $sub_field['instructions'] = "";
104
-
105
- echo $sub_field['instructions'];
106
-
107
- ?>
108
- </p>
109
- <?php endif; ?>
110
-
111
- <?php
112
- // add value
113
- $sub_field['value'] = isset($value[$sub_field['name']]) ? $value[$sub_field['name']] : '';
114
-
115
- // add name
116
- $sub_field['name'] = $field['name'] . '[' . $i . '][' . $sub_field['key'] . ']';
117
-
118
- // create field
119
- $this->parent->create_field($sub_field);
120
- ?>
121
-
122
- <?php if($layout == 'table'): ?>
123
- </td>
124
- <?php else: ?>
125
- </div>
126
- <?php endif; ?>
127
-
128
- <?php endforeach;
129
- endif; ?>
130
-
131
- <?php if( $options['layout'] == 'row'): ?>
132
- </td>
133
- <?php endif; ?>
134
-
135
- <?php if( $options['row_limit'] > 1 ): ?>
136
- <td class="remove"><a class="remove_row" id="r_remove_row" href="javascript:;"></a></td>
137
- <?php endif; ?>
138
- </tr>
139
- <?php
140
- }
141
- */
142
-
143
-
144
  /*--------------------------------------------------------------------------------------
145
  *
146
  * create_field
@@ -254,13 +158,13 @@ class acf_Repeater extends acf_Field
254
  </tbody>
255
  </table>
256
  <?php if($row_limit > 1): ?>
257
- <div class="table_footer">
258
- <ul class="hl clearfix">
259
- <li class="right">
260
- <a href="javascript:;" class="add-row-end acf-button"><?php echo $button_label; ?></a>
261
- </li>
262
- </ul>
263
- </div>
264
  <?php endif; ?>
265
  </div>
266
  <?php
45
  }
46
 
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  /*--------------------------------------------------------------------------------------
49
  *
50
  * create_field
158
  </tbody>
159
  </table>
160
  <?php if($row_limit > 1): ?>
161
+
162
+ <ul class="hl clearfix repeater-footer">
163
+ <li class="right">
164
+ <a href="javascript:;" class="add-row-end acf-button"><?php echo $button_label; ?></a>
165
+ </li>
166
+ </ul>
167
+
168
  <?php endif; ?>
169
  </div>
170
  <?php
core/fields/wysiwyg.php CHANGED
@@ -20,109 +20,74 @@ class acf_Wysiwyg extends acf_Field
20
  $this->name = 'wysiwyg';
21
  $this->title = __("Wysiwyg Editor",'acf');
22
 
23
- add_action( 'admin_head', array($this, 'add_tiny_mce') );
24
- //add_action( 'admin_footer', array($this, 'admin_footer') );
25
  add_filter( 'wp_default_editor', array($this, 'my_default_editor') );
26
-
27
  }
28
 
29
 
30
  /*--------------------------------------------------------------------------------------
31
  *
32
- * my_default_editor
33
- * - this temporarily fixes a bug which causes the editors to break when the html tab
34
- * is activeon page load
35
  *
36
  * @author Elliot Condon
37
- * @since 3.0.6
38
- * @updated 3.0.6
39
  *
40
  *-------------------------------------------------------------------------------------*/
41
-
42
- function my_default_editor()
43
- {
44
- return 'tinymce'; // html or tinymce
45
- }
46
-
47
-
 
 
48
  /*--------------------------------------------------------------------------------------
49
  *
50
- * add_tiny_mce
 
51
  *
52
  * @author Elliot Condon
53
- * @since 3.0.3
54
- * @updated 3.0.3
55
  *
56
  *-------------------------------------------------------------------------------------*/
57
-
58
- function add_tiny_mce()
59
- {
60
- global $post;
61
-
62
- if($post && post_type_supports($post->post_type, 'editor'))
63
- {
64
- // do nothing, wysiwyg will render correctly!
65
- }
66
- else
67
- {
68
- // only add for pre 3.3
69
- //if(get_bloginfo('version') < "3.3")
70
- //{
71
- wp_tiny_mce();
72
- //}
73
-
74
- }
75
-
76
- }
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  /*--------------------------------------------------------------------------------------
80
  *
81
- * admin_print_scripts / admin_print_styles
 
 
82
  *
83
  * @author Elliot Condon
84
- * @since 3.0.0
 
85
  *
86
  *-------------------------------------------------------------------------------------*/
87
-
88
- function admin_print_scripts()
89
- {
90
- wp_enqueue_script(array(
91
-
92
- 'jquery',
93
- 'jquery-ui-core',
94
- 'jquery-ui-tabs',
95
-
96
- // wysiwyg
97
- 'editor',
98
- 'thickbox',
99
- 'media-upload',
100
- 'word-count',
101
- 'post',
102
- 'editor-functions',
103
- 'tiny_mce',
104
-
105
- ));
106
- }
107
-
108
- function admin_print_styles()
109
- {
110
- wp_enqueue_style(array(
111
- 'editor-buttons',
112
- 'thickbox',
113
- ));
114
- }
115
-
116
- function admin_footer()
117
- {
118
- /*?>
119
- <div style="display:none">
120
- <?php wp_editor('', 'acf-temp-editor'); ?>
121
- </div>
122
- <?php*/
123
- }
124
-
125
-
126
 
127
  /*--------------------------------------------------------------------------------------
128
  *
@@ -202,7 +167,6 @@ class acf_Wysiwyg extends acf_Field
202
  $id = 'wysiwyg-' . $field['name'];
203
 
204
 
205
-
206
  ?>
207
  <div id="wp-<?php echo $id; ?>-wrap" class="acf_wysiwyg wp-editor-wrap" data-toolbar="<?php echo $field['toolbar']; ?>">
208
  <?php if($field['media_upload'] == 'yes'): ?>
@@ -214,8 +178,6 @@ class acf_Wysiwyg extends acf_Field
214
  </div>
215
  <?php else: ?>
216
  <div id="wp-<?php echo $id; ?>-editor-tools" class="wp-editor-tools">
217
- <?php /*<a onclick="switchEditors.switchto(this);" class="hide-if-no-js wp-switch-editor switch-html active" id="<?php echo $id; ?>-html">HTML</a>
218
- <a onclick="switchEditors.switchto(this);" class="hide-if-no-js wp-switch-editor switch-tmce" id="<?php echo $id; ?>-tmce">Visual</a>*/ ?>
219
  <div id="wp-<?php echo $id; ?>-media-buttons" class="hide-if-no-js wp-media-buttons">
220
  <?php do_action( 'media_buttons' ); ?>
221
  </div>
@@ -223,27 +185,9 @@ class acf_Wysiwyg extends acf_Field
223
  <?php endif; ?>
224
  <?php endif; ?>
225
  <div id="wp-<?php echo $id; ?>-editor-container" class="wp-editor-container">
226
- <?php /*<div id="qt_<?php echo $id; ?>_toolbar" class="quicktags-toolbar">
227
- <input type="button" value="b" title="" class="ed_button" accesskey="b" id="qt_<?php echo $id; ?>_strong">
228
- <input type="button" value="i" title="" class="ed_button" accesskey="i" id="qt_<?php echo $id; ?>_em">
229
- <input type="button" value="link" title="" class="ed_button" accesskey="a" id="qt_<?php echo $id; ?>_link">
230
- <input type="button" value="b-quote" title="" class="ed_button" accesskey="q" id="qt_<?php echo $id; ?>_block">
231
- <input type="button" value="del" title="" class="ed_button" accesskey="d" id="qt_<?php echo $id; ?>_del">
232
- <input type="button" value="ins" title="" class="ed_button" accesskey="s" id="qt_<?php echo $id; ?>_ins">
233
- <input type="button" value="img" title="" class="ed_button" accesskey="m" id="qt_<?php echo $id; ?>_img">
234
- <input type="button" value="ul" title="" class="ed_button" accesskey="u" id="qt_<?php echo $id; ?>_ul">
235
- <input type="button" value="ol" title="" class="ed_button" accesskey="o" id="qt_<?php echo $id; ?>_ol">
236
- <input type="button" value="li" title="" class="ed_button" accesskey="l" id="qt_<?php echo $id; ?>_li">
237
- <input type="button" value="code" title="" class="ed_button" accesskey="c" id="qt_<?php echo $id; ?>_code">
238
- <input type="button" value="more" title="" class="ed_button" accesskey="t" id="qt_<?php echo $id; ?>_more">
239
- <input type="button" value="lookup" title="Dictionary lookup" class="ed_button" id="qt_<?php echo $id; ?>_spell">
240
- <input type="button" value="close tags" title="Close all open tags" class="ed_button" id="qt_<?php echo $id; ?>_close">
241
- <input type="button" value="fullscreen" title="Toggle fullscreen mode" class="ed_button" accesskey="f" id="qt_<?php echo $id; ?>_fullscreen">
242
- </div>*/ ?>
243
  <textarea id="<?php echo $id; ?>" class="wp-editor-area" name="<?php echo $field['name']; ?>" ><?php echo wp_richedit_pre($field['value']); ?></textarea>
244
  </div>
245
  </div>
246
- <?php //wp_editor('', $id); ?>
247
 
248
  <?php
249
 
20
  $this->name = 'wysiwyg';
21
  $this->title = __("Wysiwyg Editor",'acf');
22
 
23
+ add_filter( 'acf_head-input', array( $this, 'acf_head') );
 
24
  add_filter( 'wp_default_editor', array($this, 'my_default_editor') );
25
+
26
  }
27
 
28
 
29
  /*--------------------------------------------------------------------------------------
30
  *
31
+ * admin_print_scripts / admin_print_styles
 
 
32
  *
33
  * @author Elliot Condon
34
+ * @since 3.0.0
 
35
  *
36
  *-------------------------------------------------------------------------------------*/
37
+
38
+ function admin_print_styles()
39
+ {
40
+ wp_enqueue_style(array(
41
+ 'editor-buttons',
42
+ ));
43
+ }
44
+
45
+
46
  /*--------------------------------------------------------------------------------------
47
  *
48
+ * admin_head
49
+ * - Add the settings for a WYSIWYG editor (as used in wp_editor / wp_tiny_mce)
50
  *
51
  * @author Elliot Condon
52
+ * @since 3.2.3
 
53
  *
54
  *-------------------------------------------------------------------------------------*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
+ function acf_head()
57
+ {
58
+ if ( ! class_exists('_WP_Editors' ) )
59
+ require_once( ABSPATH . WPINC . '/class-wp-editor.php' );
60
+
61
+ $editor_id = 'acf_settings';
62
+ $set = array(
63
+ 'teeny' => false,
64
+ 'tinymce' => true,
65
+ 'quicktags' => true
66
+ );
67
+
68
+ $set = _WP_Editors::parse_settings($editor_id, $set);
69
+ _WP_Editors::editor_settings($editor_id, $set);
70
+
71
+ }
72
+
73
 
74
  /*--------------------------------------------------------------------------------------
75
  *
76
+ * my_default_editor
77
+ * - this temporarily fixes a bug which causes the editors to break when the html tab
78
+ * is activeon page load
79
  *
80
  * @author Elliot Condon
81
+ * @since 3.0.6
82
+ * @updated 3.0.6
83
  *
84
  *-------------------------------------------------------------------------------------*/
85
+
86
+ function my_default_editor()
87
+ {
88
+ return 'tinymce'; // html or tinymce
89
+ }
90
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
92
  /*--------------------------------------------------------------------------------------
93
  *
167
  $id = 'wysiwyg-' . $field['name'];
168
 
169
 
 
170
  ?>
171
  <div id="wp-<?php echo $id; ?>-wrap" class="acf_wysiwyg wp-editor-wrap" data-toolbar="<?php echo $field['toolbar']; ?>">
172
  <?php if($field['media_upload'] == 'yes'): ?>
178
  </div>
179
  <?php else: ?>
180
  <div id="wp-<?php echo $id; ?>-editor-tools" class="wp-editor-tools">
 
 
181
  <div id="wp-<?php echo $id; ?>-media-buttons" class="hide-if-no-js wp-media-buttons">
182
  <?php do_action( 'media_buttons' ); ?>
183
  </div>
185
  <?php endif; ?>
186
  <?php endif; ?>
187
  <div id="wp-<?php echo $id; ?>-editor-container" class="wp-editor-container">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  <textarea id="<?php echo $id; ?>" class="wp-editor-area" name="<?php echo $field['name']; ?>" ><?php echo wp_richedit_pre($field['value']); ?></textarea>
189
  </div>
190
  </div>
 
191
 
192
  <?php
193
 
css/input.css CHANGED
@@ -417,8 +417,8 @@ a.remove-row:hover {
417
  margin: 0;
418
  }
419
 
420
- .repeater .table_footer {
421
- padding: 8px 0;
422
  }
423
 
424
  #acf_input .wp_themeSkin tr.mceFirst td.mceToolbar {
@@ -729,29 +729,46 @@ ul.checkbox_list {
729
  border-radius: 3px;
730
  }
731
 
732
- .acf_popup {
733
  position: absolute;
734
  bottom: 25px;
735
  right: 0;
736
  background: #464646;
737
  border-radius: 5px;
738
  box-shadow: rgba(0,0,0,0.4) 0 0 13px;
739
- margin-bottom: 45px;
740
  margin-right: -5px;
741
- display: none;
742
  min-width: 135px;
743
  z-index: 99;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  }
745
 
746
- .has-right-sidebar .acf_popup {
747
  margin-right: -17px;
748
  }
749
 
750
- .has-right-sidebar .acf_popup .bit {
751
  right: 37px;
752
  }
753
 
754
- .acf_popup .bit {
755
  position: absolute;
756
  width: 56px;
757
  height: 25px;
@@ -760,24 +777,25 @@ ul.checkbox_list {
760
  background: url(../images/sprite.png) 0 -50px no-repeat;
761
  }
762
 
763
- .acf_popup ul {
764
  display: block;
765
  margin: 0;
766
  padding: 0;
767
  }
768
 
769
- .acf_popup ul li {
770
  display: block;
771
  position: relative;
772
  margin: -1px 0 0;
773
  padding: 0;
 
774
  }
775
 
776
- .acf_popup ul li:first-child {
777
  margin: 0;
778
  }
779
 
780
- .acf_popup ul li a {
781
  color: #cccccc;
782
  font-size: 12px;
783
  line-height: 14px;
@@ -790,19 +808,19 @@ ul.checkbox_list {
790
  text-shadow: 0 1px 0 #222222;
791
  }
792
 
793
- .acf_popup ul li:first-child a {
794
  border-radius: 5px 5px 0 0;
795
  }
796
 
797
- .acf_popup ul li:last-child a {
798
  border-radius: 0 0 5px 5px;
799
  }
800
 
801
- .acf_popup ul li:only-child a {
802
  border-radius: 5px 5px 5px 5px;
803
  }
804
 
805
- .acf_popup ul li a:hover {
806
  background: #2b8ab8;
807
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3da0d1', endColorstr='#1f81b2'); /* for IE */
808
  background: -webkit-gradient(linear, left top, left bottom, from(#3da0d1), to(#1f81b2)); /* for webkit browsers */
@@ -830,8 +848,8 @@ ul.checkbox_list {
830
  border-radius: 4px;
831
  }
832
 
833
- .acf_flexible_content .table_footer {
834
- margin: 20px 0;
835
  }
836
 
837
  /*---------------------------------------------------------------------------------------------
417
  margin: 0;
418
  }
419
 
420
+ .repeater .repeater-footer {
421
+ margin: 8px 0;
422
  }
423
 
424
  #acf_input .wp_themeSkin tr.mceFirst td.mceToolbar {
729
  border-radius: 3px;
730
  }
731
 
732
+ .acf-popup {
733
  position: absolute;
734
  bottom: 25px;
735
  right: 0;
736
  background: #464646;
737
  border-radius: 5px;
738
  box-shadow: rgba(0,0,0,0.4) 0 0 13px;
 
739
  margin-right: -5px;
 
740
  min-width: 135px;
741
  z-index: 99;
742
+
743
+ -webkit-transition: bottom 0.25s 0s, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
744
+ -moz-transition: bottom 0.25s 0s, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
745
+ -o-transition: bottom 0.25s 0s, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
746
+ transition: bottom 0.25s 0s, opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;
747
+
748
+ visibility: hidden;
749
+ opacity: 0;
750
+ }
751
+
752
+ .acf-popup.active {
753
+ visibility: visible;
754
+ opacity: 1;
755
+ bottom: 35px;
756
+
757
+ -webkit-transition-delay:0s;
758
+ -moz-transition-delay:0s;
759
+ -o-transition-delay:0s;
760
+ transition-delay:0s;
761
  }
762
 
763
+ .has-right-sidebar .acf-popup {
764
  margin-right: -17px;
765
  }
766
 
767
+ .has-right-sidebar .acf-popup .bit {
768
  right: 37px;
769
  }
770
 
771
+ .acf-popup .bit {
772
  position: absolute;
773
  width: 56px;
774
  height: 25px;
777
  background: url(../images/sprite.png) 0 -50px no-repeat;
778
  }
779
 
780
+ .acf-popup ul {
781
  display: block;
782
  margin: 0;
783
  padding: 0;
784
  }
785
 
786
+ .acf-popup ul li {
787
  display: block;
788
  position: relative;
789
  margin: -1px 0 0;
790
  padding: 0;
791
+ float: none;
792
  }
793
 
794
+ .acf-popup ul li:first-child {
795
  margin: 0;
796
  }
797
 
798
+ .acf-popup ul li a {
799
  color: #cccccc;
800
  font-size: 12px;
801
  line-height: 14px;
808
  text-shadow: 0 1px 0 #222222;
809
  }
810
 
811
+ .acf-popup ul li:first-child a {
812
  border-radius: 5px 5px 0 0;
813
  }
814
 
815
+ .acf-popup ul li:last-child a {
816
  border-radius: 0 0 5px 5px;
817
  }
818
 
819
+ .acf-popup ul li:only-child a {
820
  border-radius: 5px 5px 5px 5px;
821
  }
822
 
823
+ .acf-popup ul li a:hover {
824
  background: #2b8ab8;
825
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3da0d1', endColorstr='#1f81b2'); /* for IE */
826
  background: -webkit-gradient(linear, left top, left bottom, from(#3da0d1), to(#1f81b2)); /* for webkit browsers */
848
  border-radius: 4px;
849
  }
850
 
851
+ .acf_flexible_content .flexible-footer {
852
+ margin: 8px 0;
853
  }
854
 
855
  /*---------------------------------------------------------------------------------------------
js/input-actions.js CHANGED
@@ -31,7 +31,7 @@ var acf = {
31
  /*
32
  * Document Ready
33
  *
34
- * @description: adds ajax data
35
  * @created: 1/03/2011
36
  */
37
 
@@ -484,17 +484,17 @@ var acf = {
484
  // store wysiwyg buttons
485
  var acf_wysiwyg_buttons = {};
486
 
 
487
  // destroy wysiwyg
488
  $.fn.acf_deactivate_wysiwyg = function(){
489
-
490
  $(this).find('.acf_wysiwyg textarea').each(function(){
491
-
492
  tinyMCE.execCommand("mceRemoveControl", false, $(this).attr('id'));
493
-
494
  });
495
 
496
  };
497
 
 
498
  // create wysiwyg
499
  $.fn.acf_activate_wysiwyg = function(){
500
 
@@ -502,8 +502,10 @@ var acf = {
502
  // add tinymce to all wysiwyg fields
503
  $(this).find('.acf_wysiwyg textarea').each(function(){
504
 
 
505
  if(tinyMCE != undefined && tinyMCE.settings != undefined)
506
  {
 
507
  // reset buttons
508
  tinyMCE.settings.theme_advanced_buttons1 = acf_wysiwyg_buttons.theme_advanced_buttons1;
509
  tinyMCE.settings.theme_advanced_buttons2 = acf_wysiwyg_buttons.theme_advanced_buttons2;
@@ -520,6 +522,8 @@ var acf = {
520
  // add images + code buttons
521
  tinyMCE.settings.theme_advanced_buttons2 += ",code";
522
  }
 
 
523
  }
524
 
525
  //tinyMCE.init(tinyMCEPreInit.mceInit);
@@ -663,6 +667,9 @@ var acf = {
663
 
664
  // move row-clone to be the first element (to avoid double border css bug)
665
  var row_clone = repeater.find('> table > tbody > tr.row-clone');
 
 
 
666
  if( row_clone.index() != 0 )
667
  {
668
  row_clone.closest('tbody').prepend( row_clone );
@@ -725,6 +732,7 @@ var acf = {
725
  return false;
726
  }
727
 
 
728
  // create and add the new field
729
  var new_field = repeater.find('> table > tbody > tr.row-clone').clone(false);
730
  new_field.attr('class', 'row');
@@ -841,18 +849,22 @@ var acf = {
841
 
842
 
843
 
 
 
 
 
 
844
 
845
 
846
  /*
847
- * Field: Flexible Content
848
  *
849
  * @description:
850
- * @created: 3/03/2011
851
  */
852
 
853
-
854
- // make sortable
855
- function make_fc_sortable(div){
856
 
857
  // only apply once
858
  if( div.children('.values').hasClass('ui-sortable') )
@@ -864,48 +876,55 @@ var acf = {
864
  // add sortable
865
  div.children('.values').sortable({
866
  items : '> .layout',
867
- handle: '> .actions .order',
868
- //axis: "y" // limit the dragging to up/down only
869
  });
870
- }
 
871
 
872
 
873
- // add row
874
- $('.acf_flexible_content #fc_add_row').live('click', function(){
875
- $(this).trigger('focus');
876
- });
877
-
878
- $('.acf_flexible_content #fc_add_row').live('focus', function(){
879
-
880
- $(this).addClass('active');
881
- $(this).closest('.table_footer').find('.acf_popup').css({display : 'block', opacity : 0, bottom : '15px'}).animate({ opacity : 1, bottom : '25px' }, 250);
882
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
883
  });
884
 
885
 
886
- // add row
887
- $('.acf_flexible_content #fc_add_row').live('blur', function(){
888
-
889
- $(this).removeClass('active');
890
- $(this).closest('.table_footer').find('.acf_popup').animate({ opacity : 0, bottom : '35px' }, 250, function(){
891
- $(this).css({ display : 'none' });
892
- });
893
-
894
- });
895
-
896
 
897
- // remove row
898
- $('.acf_flexible_content .actions .delete').live('click', function(){
899
-
900
-
901
- // elements
902
- var layout = $(this).closest('.layout');
903
  var div = layout.closest('.acf_flexible_content');
904
  var temp = $('<div style="height:' + layout.height() + 'px"></div>');
905
 
906
 
907
- // animate away layout
908
- layout.animate({'left' : '50px', 'opacity' : 0}, 250, function(){
 
 
909
  layout.before(temp).remove();
910
 
911
  temp.animate({'height' : 0 }, 250, function(){
@@ -917,22 +936,25 @@ var acf = {
917
  div.children('.no_value_message').show();
918
  }
919
 
920
- });
921
 
 
 
 
 
 
 
922
  return false;
923
-
924
  });
925
 
926
 
927
  // add layout
928
- $('.acf_flexible_content .table_footer .acf_popup ul li a').live('click', function(){
929
-
930
  // vars
931
  var layout = $(this).attr('data-layout');
932
  var div = $(this).closest('.acf_flexible_content');
933
 
934
- // deactivate any wysiwygs
935
- div.children('.clones').acf_deactivate_wysiwyg();
936
 
937
  // create new field
938
  var new_field = div.children('.clones').children('.layout[data-layout="' + layout + '"]').clone(false);
@@ -967,9 +989,14 @@ var acf = {
967
  $(document).live('acf/setup_fields', function(e, postbox){
968
 
969
  $(postbox).find('.acf_flexible_content').each(function(){
970
-
 
 
 
 
 
971
  // sortable
972
- make_fc_sortable($(this));
973
  });
974
 
975
  });
31
  /*
32
  * Document Ready
33
  *
34
+ * @description: adds ajax data
35
  * @created: 1/03/2011
36
  */
37
 
484
  // store wysiwyg buttons
485
  var acf_wysiwyg_buttons = {};
486
 
487
+
488
  // destroy wysiwyg
489
  $.fn.acf_deactivate_wysiwyg = function(){
490
+
491
  $(this).find('.acf_wysiwyg textarea').each(function(){
 
492
  tinyMCE.execCommand("mceRemoveControl", false, $(this).attr('id'));
 
493
  });
494
 
495
  };
496
 
497
+
498
  // create wysiwyg
499
  $.fn.acf_activate_wysiwyg = function(){
500
 
502
  // add tinymce to all wysiwyg fields
503
  $(this).find('.acf_wysiwyg textarea').each(function(){
504
 
505
+
506
  if(tinyMCE != undefined && tinyMCE.settings != undefined)
507
  {
508
+
509
  // reset buttons
510
  tinyMCE.settings.theme_advanced_buttons1 = acf_wysiwyg_buttons.theme_advanced_buttons1;
511
  tinyMCE.settings.theme_advanced_buttons2 = acf_wysiwyg_buttons.theme_advanced_buttons2;
522
  // add images + code buttons
523
  tinyMCE.settings.theme_advanced_buttons2 += ",code";
524
  }
525
+
526
+
527
  }
528
 
529
  //tinyMCE.init(tinyMCEPreInit.mceInit);
667
 
668
  // move row-clone to be the first element (to avoid double border css bug)
669
  var row_clone = repeater.find('> table > tbody > tr.row-clone');
670
+
671
+ // also, deactivate any wysiwyg in the row clone
672
+ row_clone.acf_deactivate_wysiwyg();
673
  if( row_clone.index() != 0 )
674
  {
675
  row_clone.closest('tbody').prepend( row_clone );
732
  return false;
733
  }
734
 
735
+
736
  // create and add the new field
737
  var new_field = repeater.find('> table > tbody > tr.row-clone').clone(false);
738
  new_field.attr('class', 'row');
849
 
850
 
851
 
852
+ /*-----------------------------------------------------------------------------
853
+ *
854
+ * Flexible Content
855
+ *
856
+ *----------------------------------------------------------------------------*/
857
 
858
 
859
  /*
860
+ * flexible_content_add_sortable
861
  *
862
  * @description:
863
+ * @created: 25/05/12
864
  */
865
 
866
+ function flexible_content_add_sortable( div )
867
+ {
 
868
 
869
  // only apply once
870
  if( div.children('.values').hasClass('ui-sortable') )
876
  // add sortable
877
  div.children('.values').sortable({
878
  items : '> .layout',
879
+ handle: '> .actions .order'
 
880
  });
881
+
882
+ };
883
 
884
 
885
+ /*
886
+ * Show Popup
887
+ *
888
+ * @description:
889
+ * @created: 25/05/12
890
+ */
 
 
 
891
 
892
+ $('.acf_flexible_content .add-row-end').live('click', function()
893
+ {
894
+ $(this).trigger('focus');
895
+
896
+ }).live('focus', function()
897
+ {
898
+ $(this).siblings('.acf-popup').addClass('active');
899
+
900
+ }).live('blur', function()
901
+ {
902
+ var button = $(this);
903
+ setTimeout(function(){
904
+ button.siblings('.acf-popup').removeClass('active');
905
+ }, 250);
906
+
907
  });
908
 
909
 
910
+ /*
911
+ * flexible_content_remove_row
912
+ *
913
+ * @description:
914
+ * @created: 25/05/12
915
+ */
 
 
 
 
916
 
917
+ function flexible_content_remove_layout( layout )
918
+ {
919
+ // vars
 
 
 
920
  var div = layout.closest('.acf_flexible_content');
921
  var temp = $('<div style="height:' + layout.height() + 'px"></div>');
922
 
923
 
924
+ // animate out tr
925
+ layout.addClass('acf-remove-item');
926
+ setTimeout(function(){
927
+
928
  layout.before(temp).remove();
929
 
930
  temp.animate({'height' : 0 }, 250, function(){
936
  div.children('.no_value_message').show();
937
  }
938
 
939
+ }, 400);
940
 
941
+ }
942
+
943
+
944
+ $('.acf_flexible_content .actions .delete').live('click', function(){
945
+ var layout = $(this).closest('.layout');
946
+ flexible_content_remove_layout( layout );
947
  return false;
 
948
  });
949
 
950
 
951
  // add layout
952
+ $('.acf_flexible_content .acf-popup ul li a').live('click', function(){
953
+
954
  // vars
955
  var layout = $(this).attr('data-layout');
956
  var div = $(this).closest('.acf_flexible_content');
957
 
 
 
958
 
959
  // create new field
960
  var new_field = div.children('.clones').children('.layout[data-layout="' + layout + '"]').clone(false);
989
  $(document).live('acf/setup_fields', function(e, postbox){
990
 
991
  $(postbox).find('.acf_flexible_content').each(function(){
992
+
993
+ var div = $(this);
994
+
995
+ // deactivate any wysiwygs
996
+ div.children('.clones').acf_deactivate_wysiwyg();
997
+
998
  // sortable
999
+ flexible_content_add_sortable( div );
1000
  });
1001
 
1002
  });
lang/acf-sv_SE.mo DELETED
Binary file
lang/acf-sv_SE.po DELETED
@@ -1,1412 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \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: 2012-MO-DA HO:MI+ZONE\n"
7
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: \n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: acf.php:289
23
- #: core/admin/meta_box_options.php:83
24
- #@ acf
25
- msgid "Custom Fields"
26
- msgstr "Anpassade Fält"
27
-
28
- #: acf.php:290
29
- #@ acf
30
- msgid "Settings"
31
- msgstr "Inställningar"
32
-
33
- #: acf.php:291
34
- #@ acf
35
- msgid "Upgrade"
36
- msgstr "Uppgradera"
37
-
38
- #: acf.php:503
39
- #@ acf
40
- msgid "Fields"
41
- msgstr "Fält"
42
-
43
- #: acf.php:504
44
- #@ acf
45
- msgid "Location"
46
- msgstr "Målplats"
47
-
48
- #: acf.php:504
49
- #@ acf
50
- msgid "Add Fields to Edit Screens"
51
- msgstr "Lägg till Fält till Redigeringssidor"
52
-
53
- #: acf.php:505
54
- #: core/admin/meta_box_location.php:133
55
- #: core/options_page.php:62
56
- #: core/options_page.php:74
57
- #@ acf
58
- msgid "Options"
59
- msgstr "Alternativ"
60
-
61
- #: acf.php:505
62
- #@ acf
63
- msgid "Customise the edit page"
64
- msgstr "Anpassa redigeringssidan"
65
-
66
- #: acf.php:533
67
- #: core/api.php:503
68
- #: core/everything_fields.php:202
69
- #: core/options_page.php:182
70
- #@ acf
71
- msgid "Validation Failed. One or more fields below are required."
72
- msgstr "Validering Misslyckades. Ett eller flera fält nedan är obligatoriska."
73
-
74
- #: acf.php:859
75
- #@ acf
76
- msgid "Error: Field Type does not exist!"
77
- msgstr "Fel: Fälttyp finns inte!"
78
-
79
- #: acf.php:2086
80
- #@ acf
81
- msgid "required"
82
- msgstr "obligatorisk"
83
-
84
- #: acf.php:2184
85
- #@ acf
86
- msgid "Parent Page"
87
- msgstr "Överordnad Sida"
88
-
89
- #: acf.php:2185
90
- #@ acf
91
- msgid "Child Page"
92
- msgstr "Underordnad Sida"
93
-
94
- #: acf.php:2193
95
- #@ acf
96
- msgid "Default Template"
97
- msgstr "Standardmall"
98
-
99
- #: core/actions/export.php:19
100
- #@ acf
101
- msgid "No ACF groups selected"
102
- msgstr "Inga ACF-grupper valda"
103
-
104
- #: core/actions/init.php:21
105
- #: core/actions/init.php:116
106
- #: core/admin/page_acf.php:14
107
- #@ acf
108
- msgid "Advanced Custom Fields"
109
- msgstr "Advanced Custom Fields"
110
-
111
- #: core/actions/init.php:21
112
- #@ acf
113
- msgid "requires a database upgrade"
114
- msgstr "kräver en databasuppgradering"
115
-
116
- #: core/actions/init.php:21
117
- #@ acf
118
- msgid "why?"
119
- msgstr "varför?"
120
-
121
- #: core/actions/init.php:21
122
- #@ acf
123
- msgid "Please"
124
- msgstr "Vänligen"
125
-
126
- #: core/actions/init.php:21
127
- #@ acf
128
- msgid "backup your database"
129
- msgstr "säkerhetskopiera din databas"
130
-
131
- #: core/actions/init.php:21
132
- #@ acf
133
- msgid "then click"
134
- msgstr "klicka sedan"
135
-
136
- #: core/actions/init.php:21
137
- #@ acf
138
- msgid "Upgrade Database"
139
- msgstr "Uppgradera Databas"
140
-
141
- #: core/actions/init.php:47
142
- #@ acf
143
- msgid "Repeater field deactivated"
144
- msgstr "Upprepningsfält avaktiverat"
145
-
146
- #: core/actions/init.php:51
147
- #@ acf
148
- msgid "Options page deactivated"
149
- msgstr "Alternativsida avaktiverad"
150
-
151
- #: core/actions/init.php:55
152
- #@ acf
153
- msgid "Flexible Content field deactivated"
154
- msgstr "Flexibelt Innehållsfält avaktiverat"
155
-
156
- #: core/actions/init.php:59
157
- #@ acf
158
- msgid "Everything Fields deactivated"
159
- msgstr "Allt-fält avaktiverat"
160
-
161
- #: core/actions/init.php:87
162
- #@ acf
163
- msgid "Repeater field activated"
164
- msgstr "Upprepningsfält aktiverat"
165
-
166
- #: core/actions/init.php:91
167
- #@ acf
168
- msgid "Options page activated"
169
- msgstr "Alternativsida aktiverad"
170
-
171
- #: core/actions/init.php:95
172
- #@ acf
173
- msgid "Flexible Content field activated"
174
- msgstr "Flexibelt Innehållsfält aktiverat"
175
-
176
- #: core/actions/init.php:99
177
- #@ acf
178
- msgid "Everything Fields activated"
179
- msgstr "Allt-fält aktiverat"
180
-
181
- #: core/actions/init.php:104
182
- #@ acf
183
- msgid "License key unrecognised"
184
- msgstr "Licensnyckel ogiltig"
185
-
186
- #: core/actions/init.php:115
187
- #@ acf
188
- msgid "Field&nbsp;Groups"
189
- msgstr "Fältgrupper"
190
-
191
- #: core/actions/init.php:117
192
- #: core/fields/flexible_content.php:257
193
- #@ acf
194
- msgid "Add New"
195
- msgstr "Lägg Till"
196
-
197
- #: core/actions/init.php:118
198
- #@ acf
199
- msgid "Add New Field Group"
200
- msgstr "Lägg Till Fältgrupp"
201
-
202
- #: core/actions/init.php:119
203
- #@ acf
204
- msgid "Edit Field Group"
205
- msgstr "Redigera Fältgrupp"
206
-
207
- #: core/actions/init.php:120
208
- #@ acf
209
- msgid "New Field Group"
210
- msgstr "Ny Fältgrupp"
211
-
212
- #: core/actions/init.php:121
213
- #@ acf
214
- msgid "View Field Group"
215
- msgstr "Visa Fältgrupp"
216
-
217
- #: core/actions/init.php:122
218
- #@ acf
219
- msgid "Search Field Groups"
220
- msgstr "Sök Fältgrupper"
221
-
222
- #: core/actions/init.php:123
223
- #@ acf
224
- msgid "No Field Groups found"
225
- msgstr "Inga Fältgrupper funna"
226
-
227
- #: core/actions/init.php:124
228
- #@ acf
229
- msgid "No Field Groups found in Trash"
230
- msgstr "Inga Fältgrupper funna i papperskorgen"
231
-
232
- #: core/actions/init.php:153
233
- #: core/actions/init.php:156
234
- #@ default
235
- msgid "Field group updated."
236
- msgstr "Fältgrupp uppdaterad."
237
-
238
- #: core/actions/init.php:154
239
- #@ default
240
- msgid "Custom field updated."
241
- msgstr "Anpassat fält uppdaterat."
242
-
243
- #: core/actions/init.php:155
244
- #@ default
245
- msgid "Custom field deleted."
246
- msgstr "Anpassat fält borttaget."
247
-
248
- #. translators: %s: date and time of the revision
249
- #: core/actions/init.php:158
250
- #, php-format
251
- #@ default
252
- msgid "Field group restored to revision from %s"
253
- msgstr "Fältgrupp återställd till version från %s"
254
-
255
- #: core/actions/init.php:159
256
- #@ default
257
- msgid "Field group published."
258
- msgstr "Fältgrupp publicerad."
259
-
260
- #: core/actions/init.php:160
261
- #@ default
262
- msgid "Field group saved."
263
- msgstr "Fältgrupp sparad."
264
-
265
- #: core/actions/init.php:161
266
- #@ default
267
- msgid "Field group submitted."
268
- msgstr "Fältgrupp skickad."
269
-
270
- #: core/actions/init.php:162
271
- #@ default
272
- msgid "Field group scheduled for."
273
- msgstr "Fältgrupp planerad till."
274
-
275
- #: core/actions/init.php:163
276
- #@ default
277
- msgid "Field group draft updated."
278
- msgstr "Fältgruppens utkast uppdaterad."
279
-
280
- #: core/actions/init.php:181
281
- #@ default
282
- msgid "Title"
283
- msgstr "Titel"
284
-
285
- #: core/admin/meta_box_fields.php:17
286
- #: core/fields/flexible_content.php:245
287
- #: core/fields/repeater.php:218
288
- #@ acf
289
- msgid "New Field"
290
- msgstr "Nytt Fält"
291
-
292
- #: core/admin/meta_box_fields.php:38
293
- #@ acf
294
- msgid "Move to trash. Are you sure?"
295
- msgstr "Flytta till papperskorgen. Är du säker?"
296
-
297
- #: core/admin/meta_box_fields.php:50
298
- #: core/fields/flexible_content.php:309
299
- #: core/fields/repeater.php:244
300
- #@ acf
301
- msgid "Field Order"
302
- msgstr "Fältordning"
303
-
304
- #: core/admin/meta_box_fields.php:51
305
- #: core/admin/meta_box_fields.php:92
306
- #: core/fields/flexible_content.php:310
307
- #: core/fields/flexible_content.php:357
308
- #: core/fields/repeater.php:245
309
- #: core/fields/repeater.php:292
310
- #@ acf
311
- msgid "Field Label"
312
- msgstr "Fältetikett"
313
-
314
- #: core/admin/meta_box_fields.php:52
315
- #: core/admin/meta_box_fields.php:108
316
- #: core/fields/flexible_content.php:311
317
- #: core/fields/flexible_content.php:373
318
- #: core/fields/repeater.php:246
319
- #: core/fields/repeater.php:308
320
- #@ acf
321
- msgid "Field Name"
322
- msgstr "Fältnamn"
323
-
324
- #: core/admin/meta_box_fields.php:53
325
- #: core/admin/meta_box_fields.php:123
326
- #: core/admin/page_settings.php:44
327
- #: core/fields/flexible_content.php:312
328
- #: core/fields/flexible_content.php:388
329
- #: core/fields/repeater.php:247
330
- #: core/fields/repeater.php:323
331
- #@ acf
332
- msgid "Field Type"
333
- msgstr "Fälttyp"
334
-
335
- #: core/admin/meta_box_fields.php:60
336
- #@ acf
337
- msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
338
- msgstr "Inga fält. Klicka på <strong>+ Lägg Till Fält</ strong> för att skapa ditt första fält."
339
-
340
- #: core/admin/meta_box_fields.php:71
341
- #: core/admin/meta_box_fields.php:74
342
- #: core/fields/flexible_content.php:336
343
- #: core/fields/flexible_content.php:339
344
- #: core/fields/repeater.php:270
345
- #: core/fields/repeater.php:273
346
- #@ acf
347
- msgid "Edit this Field"
348
- msgstr "Redigera detta Fält"
349
-
350
- #: core/admin/meta_box_fields.php:74
351
- #: core/fields/flexible_content.php:339
352
- #: core/fields/repeater.php:273
353
- #@ acf
354
- msgid "Edit"
355
- msgstr "Redigera"
356
-
357
- #: core/admin/meta_box_fields.php:75
358
- #: core/fields/flexible_content.php:340
359
- #: core/fields/repeater.php:274
360
- #@ acf
361
- msgid "Read documentation for this field"
362
- msgstr "Läs dokumentation för detta fält"
363
-
364
- #: core/admin/meta_box_fields.php:75
365
- #: core/fields/flexible_content.php:340
366
- #: core/fields/repeater.php:274
367
- #@ acf
368
- msgid "Docs"
369
- msgstr "Dokumentation"
370
-
371
- #: core/admin/meta_box_fields.php:76
372
- #: core/fields/flexible_content.php:341
373
- #: core/fields/repeater.php:275
374
- #@ acf
375
- msgid "Duplicate this Field"
376
- msgstr "Duplicera detta Fält"
377
-
378
- #: core/admin/meta_box_fields.php:76
379
- #: core/fields/flexible_content.php:341
380
- #: core/fields/repeater.php:275
381
- #@ acf
382
- msgid "Duplicate"
383
- msgstr "Duplicera"
384
-
385
- #: core/admin/meta_box_fields.php:77
386
- #: core/fields/flexible_content.php:342
387
- #: core/fields/repeater.php:276
388
- #@ acf
389
- msgid "Delete this Field"
390
- msgstr "Ta bort detta Fält"
391
-
392
- #: core/admin/meta_box_fields.php:77
393
- #: core/fields/flexible_content.php:258
394
- #: core/fields/flexible_content.php:342
395
- #: core/fields/repeater.php:276
396
- #@ acf
397
- msgid "Delete"
398
- msgstr "Ta bort"
399
-
400
- #: core/admin/meta_box_fields.php:93
401
- #: core/fields/flexible_content.php:358
402
- #: core/fields/repeater.php:293
403
- #@ acf
404
- msgid "This is the name which will appear on the EDIT page"
405
- msgstr "Detta är det namn som visas på sidan redigeringssidan"
406
-
407
- #: core/admin/meta_box_fields.php:109
408
- #: core/fields/flexible_content.php:374
409
- #: core/fields/repeater.php:309
410
- #@ acf
411
- msgid "Single word, no spaces. Underscores and dashes allowed"
412
- msgstr "Ett ord, inga mellanslag. Understreck och bindestreck tillåtet"
413
-
414
- #: core/admin/meta_box_fields.php:136
415
- #@ acf
416
- msgid "Field Instructions"
417
- msgstr "Fältinstruktioner"
418
-
419
- #: core/admin/meta_box_fields.php:137
420
- #@ acf
421
- msgid "Instructions for authors. Shown when submitting data"
422
- msgstr "Instruktioner för författare. Visas när data skickas"
423
-
424
- #: core/admin/meta_box_fields.php:149
425
- #@ acf
426
- msgid "Required?"
427
- msgstr "Obligatorisk?"
428
-
429
- #: core/admin/meta_box_fields.php:172
430
- #: core/fields/flexible_content.php:408
431
- #: core/fields/repeater.php:343
432
- #@ acf
433
- msgid "Save Field"
434
- msgstr "Spara Fält"
435
-
436
- #: core/admin/meta_box_fields.php:177
437
- #: core/fields/flexible_content.php:413
438
- #: core/fields/repeater.php:348
439
- #@ acf
440
- msgid "Close Field"
441
- msgstr "Stäng Fält"
442
-
443
- #: core/admin/meta_box_fields.php:190
444
- #: core/fields/flexible_content.php:427
445
- #: core/fields/repeater.php:363
446
- #@ acf
447
- msgid "Drag and drop to reorder"
448
- msgstr "Dra &amp; släpp för att ändra ordning"
449
-
450
- #: core/admin/meta_box_fields.php:191
451
- #@ acf
452
- msgid "+ Add Field"
453
- msgstr "+ Lägg Till Fält"
454
-
455
- #: core/admin/meta_box_location.php:25
456
- #@ acf
457
- msgid "Rules"
458
- msgstr "Regler"
459
-
460
- #: core/admin/meta_box_location.php:26
461
- #@ acf
462
- msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
463
- msgstr "Skapa en uppsättning regler för att bestämma vilka redigeringssidor som ska använda dessa avancerade anpassade fält"
464
-
465
- #: core/admin/meta_box_location.php:37
466
- #: core/fields/wysiwyg.php:142
467
- #@ acf
468
- msgid "Basic"
469
- msgstr "Enkel"
470
-
471
- #: core/admin/meta_box_location.php:38
472
- #: core/fields/page_link.php:194
473
- #: core/fields/post_object.php:209
474
- #: core/fields/relationship.php:246
475
- #@ acf
476
- msgid "Post Type"
477
- msgstr "Inläggstyp"
478
-
479
- #: core/admin/meta_box_location.php:39
480
- #@ acf
481
- msgid "Logged in User Type"
482
- msgstr "Inloggad Användarroll"
483
-
484
- #: core/admin/meta_box_location.php:41
485
- #@ acf
486
- msgid "Page Specific"
487
- msgstr "Sidspecifik"
488
-
489
- #: core/admin/meta_box_location.php:42
490
- #@ acf
491
- msgid "Page"
492
- msgstr "Sida"
493
-
494
- #: core/admin/meta_box_location.php:43
495
- #@ acf
496
- msgid "Page Type"
497
- msgstr "Sidtyp"
498
-
499
- #: core/admin/meta_box_location.php:44
500
- #@ acf
501
- msgid "Page Parent"
502
- msgstr "Sidförälder"
503
-
504
- #: core/admin/meta_box_location.php:45
505
- #@ acf
506
- msgid "Page Template"
507
- msgstr "Sidmall"
508
-
509
- #: core/admin/meta_box_location.php:47
510
- #@ acf
511
- msgid "Post Specific"
512
- msgstr "Inläggsspecifik"
513
-
514
- #: core/admin/meta_box_location.php:48
515
- #@ acf
516
- msgid "Post"
517
- msgstr "Inlägg"
518
-
519
- #: core/admin/meta_box_location.php:49
520
- #@ acf
521
- msgid "Post Category"
522
- msgstr "Inläggskategori"
523
-
524
- #: core/admin/meta_box_location.php:50
525
- #@ acf
526
- msgid "Post Format"
527
- msgstr "Inläggsformat"
528
-
529
- #: core/admin/meta_box_location.php:51
530
- #@ acf
531
- msgid "Post Taxonomy"
532
- msgstr "Inläggstaxonomi"
533
-
534
- #: core/admin/meta_box_location.php:53
535
- #@ acf
536
- msgid "Other"
537
- msgstr "Annat"
538
-
539
- #: core/admin/meta_box_location.php:54
540
- #@ acf
541
- msgid "Taxonomy (Add / Edit)"
542
- msgstr "Taxonomi (Lägg till / Redigera)"
543
-
544
- #: core/admin/meta_box_location.php:55
545
- #@ acf
546
- msgid "User (Add / Edit)"
547
- msgstr "Användare (Lägg till / Redigera)"
548
-
549
- #: core/admin/meta_box_location.php:56
550
- #@ acf
551
- msgid "Media (Edit)"
552
- msgstr "Media (Redigera)"
553
-
554
- #: core/admin/meta_box_location.php:64
555
- #: core/admin/page_settings.php:92
556
- #@ acf
557
- msgid "Options Page"
558
- msgstr "Alternativsida"
559
-
560
- #: core/admin/meta_box_location.php:86
561
- #@ acf
562
- msgid "is equal to"
563
- msgstr "är lika med"
564
-
565
- #: core/admin/meta_box_location.php:87
566
- #@ acf
567
- msgid "is not equal to"
568
- msgstr "är inte lika med"
569
-
570
- #: core/admin/meta_box_location.php:111
571
- #@ acf
572
- msgid "match"
573
- msgstr "matchar"
574
-
575
- #: core/admin/meta_box_location.php:117
576
- #@ acf
577
- msgid "all"
578
- msgstr "alla"
579
-
580
- #: core/admin/meta_box_location.php:118
581
- #@ acf
582
- msgid "any"
583
- msgstr "någon"
584
-
585
- #: core/admin/meta_box_location.php:121
586
- #@ acf
587
- msgid "of the above"
588
- msgstr "av ovanstående"
589
-
590
- #: core/admin/meta_box_location.php:134
591
- #@ acf
592
- msgid "Unlock options add-on with an activation code"
593
- msgstr "Lås upp alternativtillägget med en aktiveringskod"
594
-
595
- #: core/admin/meta_box_options.php:13
596
- #@ acf
597
- msgid "Order No."
598
- msgstr "Sorteringsnummer."
599
-
600
- #: core/admin/meta_box_options.php:14
601
- #@ acf
602
- msgid "Field groups are created in order <br />from lowest to highest."
603
- msgstr "Fältgrupper skapas i ordning <br /> från lägsta till högsta."
604
-
605
- #: core/admin/meta_box_options.php:30
606
- #@ acf
607
- msgid "Position"
608
- msgstr "Position"
609
-
610
- #: core/admin/meta_box_options.php:40
611
- #@ acf
612
- msgid "Normal"
613
- msgstr "Normal"
614
-
615
- #: core/admin/meta_box_options.php:41
616
- #@ acf
617
- msgid "Side"
618
- msgstr "Sidan"
619
-
620
- #: core/admin/meta_box_options.php:50
621
- #@ acf
622
- msgid "Style"
623
- msgstr "Stil"
624
-
625
- #: core/admin/meta_box_options.php:60
626
- #@ acf
627
- msgid "Standard Metabox"
628
- msgstr "Standard Metabox"
629
-
630
- #: core/admin/meta_box_options.php:61
631
- #@ acf
632
- msgid "No Metabox"
633
- msgstr "Ingen Metabox"
634
-
635
- #: core/admin/meta_box_options.php:70
636
- #@ acf
637
- msgid "Show on page"
638
- msgstr "Visa på sidan"
639
-
640
- #: core/admin/meta_box_options.php:71
641
- #@ acf
642
- msgid "Deselect items to hide them on the edit page"
643
- msgstr "Avmarkera objekt för att dölja dem på redigeringssidan"
644
-
645
- #: core/admin/meta_box_options.php:72
646
- #@ acf
647
- msgid "If multiple ACF groups appear on an edit page, the first ACF group's options will be used. The first ACF group is the one with the lowest order number."
648
- msgstr "Om flera ACF-grupper visas på en redigeringssidan kommer den första ACF-gruppens alternativ användas. Den första ACF-gruppen är den med lägst sorteringsnummer."
649
-
650
- #: core/admin/meta_box_options.php:82
651
- #@ acf
652
- msgid "Content Editor"
653
- msgstr "Innehållsredigerare"
654
-
655
- #: core/admin/meta_box_options.php:84
656
- #@ acf
657
- msgid "Discussion"
658
- msgstr "Diskussion"
659
-
660
- #: core/admin/meta_box_options.php:85
661
- #@ acf
662
- msgid "Comments"
663
- msgstr "Kommentarer"
664
-
665
- #: core/admin/meta_box_options.php:86
666
- #@ acf
667
- msgid "Slug"
668
- msgstr "URL"
669
-
670
- #: core/admin/meta_box_options.php:87
671
- #@ acf
672
- msgid "Author"
673
- msgstr "Författare"
674
-
675
- #: core/admin/page_acf.php:16
676
- #@ acf
677
- msgid "Changelog"
678
- msgstr "Versionslogg"
679
-
680
- #: core/admin/page_acf.php:17
681
- #@ acf
682
- msgid "See what's new in"
683
- msgstr "Se vad som är nytt i"
684
-
685
- #: core/admin/page_acf.php:19
686
- #@ acf
687
- msgid "Resources"
688
- msgstr "Resurser"
689
-
690
- #: core/admin/page_acf.php:20
691
- #@ acf
692
- msgid "Read documentation, learn the functions and find some tips &amp; tricks for your next web project."
693
- msgstr "Läs dokumentationen, lär dig funktionerna och hitta tips &amp; tricks för ditt nästa webbprojekt."
694
-
695
- #: core/admin/page_acf.php:21
696
- #@ acf
697
- msgid "View the ACF website"
698
- msgstr "Visa ACF:s webbplats"
699
-
700
- #: core/admin/page_acf.php:26
701
- #@ acf
702
- msgid "Created by"
703
- msgstr "Skapad av"
704
-
705
- #: core/admin/page_acf.php:29
706
- #@ acf
707
- msgid "Vote"
708
- msgstr "Rösta"
709
-
710
- #: core/admin/page_acf.php:30
711
- #@ acf
712
- msgid "Follow"
713
- msgstr "Följ"
714
-
715
- #: core/admin/page_settings.php:23
716
- #@ acf
717
- msgid "Advanced Custom Fields Settings"
718
- msgstr "Advanced Custom Fields Inställningar"
719
-
720
- #: core/admin/page_settings.php:40
721
- #@ acf
722
- msgid "Activate Add-ons."
723
- msgstr "Aktivera tillägg."
724
-
725
- #: core/admin/page_settings.php:45
726
- #@ acf
727
- msgid "Status"
728
- msgstr "Status"
729
-
730
- #: core/admin/page_settings.php:46
731
- #@ acf
732
- msgid "Activation Code"
733
- msgstr "Aktiveringskod"
734
-
735
- #: core/admin/page_settings.php:52
736
- #@ acf
737
- msgid "Repeater Field"
738
- msgstr "Upprepningsfält"
739
-
740
- #: core/admin/page_settings.php:53
741
- #: core/admin/page_settings.php:73
742
- #: core/admin/page_settings.php:93
743
- #@ acf
744
- msgid "Active"
745
- msgstr "Aktiv"
746
-
747
- #: core/admin/page_settings.php:53
748
- #: core/admin/page_settings.php:73
749
- #: core/admin/page_settings.php:93
750
- #@ acf
751
- msgid "Inactive"
752
- msgstr "Inaktiv"
753
-
754
- #: core/admin/page_settings.php:72
755
- #@ acf
756
- msgid "Flexible Content Field"
757
- msgstr "Flexibelt Innehållsfält"
758
-
759
- #: core/admin/page_settings.php:115
760
- #@ acf
761
- msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
762
- msgstr "Tillägg kan låsas upp genom att köpa en licensnyckel. Varje nyckel kan användas på flera webbplatser."
763
-
764
- #: core/admin/page_settings.php:115
765
- #@ acf
766
- msgid "Find Add-ons"
767
- msgstr "Hitta Tillägg"
768
-
769
- #: core/admin/page_settings.php:133
770
- #@ acf
771
- msgid "Export Field Groups to XML"
772
- msgstr "Exportera Fältgrupper till XML"
773
-
774
- #: core/admin/page_settings.php:166
775
- #@ acf
776
- msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
777
- msgstr "ACF kommer att skapa en .xml exportfil som är kompatibel med det inbyggda WP-importverktyget."
778
-
779
- #: core/admin/page_settings.php:169
780
- #@ acf
781
- msgid "Export XML"
782
- msgstr "Exportera XML"
783
-
784
- #: core/admin/page_settings.php:175
785
- #@ acf
786
- msgid "Import Field Groups"
787
- msgstr "Importera Fältgrupper"
788
-
789
- #: core/admin/page_settings.php:177
790
- #@ acf
791
- msgid "Navigate to the"
792
- msgstr "Navigera till"
793
-
794
- #: core/admin/page_settings.php:177
795
- #@ acf
796
- msgid "Import Tool"
797
- msgstr "Import Verktyg"
798
-
799
- #: core/admin/page_settings.php:177
800
- #@ acf
801
- msgid "and select WordPress"
802
- msgstr "och välj Wordpress"
803
-
804
- #: core/admin/page_settings.php:178
805
- #@ acf
806
- msgid "Install WP import plugin if prompted"
807
- msgstr "Installera verktyget WP-import om du uppmanas"
808
-
809
- #: core/admin/page_settings.php:179
810
- #@ acf
811
- msgid "Upload and import your exported .xml file"
812
- msgstr "Ladda upp och importera den exporterade .xml-filen"
813
-
814
- #: core/admin/page_settings.php:180
815
- #@ acf
816
- msgid "Select your user and ignore Import Attachments"
817
- msgstr "Välj användare och ignorera Importera Bilagor"
818
-
819
- #: core/admin/page_settings.php:181
820
- #@ acf
821
- msgid "That's it! Happy WordPressing"
822
- msgstr "Det var allt! Happy WordPressing"
823
-
824
- #: core/admin/page_settings.php:200
825
- #@ acf
826
- msgid "Export Field Groups to PHP"
827
- msgstr "Exportera Fältgrupper till PHP"
828
-
829
- #: core/admin/page_settings.php:233
830
- #@ acf
831
- msgid "ACF will create the PHP code to include in your theme"
832
- msgstr "ACF kommer att skapa den PHP-kod du ska lägga in i ditt tema"
833
-
834
- #: core/admin/page_settings.php:236
835
- #@ acf
836
- msgid "Create PHP"
837
- msgstr "Skapa PHP"
838
-
839
- #: core/admin/page_settings.php:242
840
- #: core/admin/page_settings.php:270
841
- #@ acf
842
- msgid "Register Field Groups with PHP"
843
- msgstr "Registrera Fältgrupper med PHP"
844
-
845
- #: core/admin/page_settings.php:244
846
- #: core/admin/page_settings.php:272
847
- #@ acf
848
- msgid "Copy the PHP code generated"
849
- msgstr "Kopiera den genererade PHP-koden"
850
-
851
- #: core/admin/page_settings.php:245
852
- #: core/admin/page_settings.php:273
853
- #@ acf
854
- msgid "Paste into your functions.php file"
855
- msgstr "Klistra in i din functions.php-fil"
856
-
857
- #: core/admin/page_settings.php:246
858
- #: core/admin/page_settings.php:274
859
- #@ acf
860
- msgid "To activate any Add-ons, edit and use the code in the first few lines."
861
- msgstr "För att aktivera Tillägg, redigera och använda koden i de första raderna."
862
-
863
- #: core/admin/page_settings.php:267
864
- #@ acf
865
- msgid "Back to settings"
866
- msgstr "Tillbaka till inställningar"
867
-
868
- #: core/admin/page_settings.php:295
869
- #@ acf
870
- msgid ""
871
- "/**\n"
872
- " * Activate Add-ons\n"
873
- " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
874
- " * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
875
- " * Use the commented out code to update the database with your activation code. \n"
876
- " * You may place this code inside an IF statement that only runs on theme activation.\n"
877
- " */"
878
- msgstr ""
879
- "/**\n"
880
- " * Aktivera tillägg\n"
881
- " * Här kan du ange dina aktiveringskoder för att låsa upp tillägg att använda i ditt tema. \n"
882
- " * Eftersom alla aktiveringskoder är multi-site-licenser, är det tillåtet att använda din nyckel i premium-teman. \n"
883
- " * Använd den bortkommenterad koden för att uppdatera databasen med din aktiveringskod. \n"
884
- " * Du kan placera den här koden inuti en IF-sats som bara körs vid tema-aktivering.\n"
885
- " */"
886
-
887
- #: core/admin/page_settings.php:308
888
- #@ acf
889
- msgid ""
890
- "/**\n"
891
- " * Register field groups\n"
892
- " * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
893
- " * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
894
- " * This code must run every time the functions.php file is read\n"
895
- " */"
896
- msgstr ""
897
- "/**\n"
898
- " * Registrera fältgrupper \n"
899
- " * register_field_group-funktionen accepterar 1 lista som innehåller relevanta data för att registrera en fältgrupp\n"
900
- " * Du kan redigera listan som du vill. Detta kan dock resultera i fel om listan inte är kompatibel med ACF\n"
901
- " * Denna kod måste köra varje gång functions.php-filen läses\n"
902
- " */"
903
-
904
- #: core/admin/page_settings.php:336
905
- #@ acf
906
- msgid "No field groups were selected"
907
- msgstr "Inga fältgrupper valdes"
908
-
909
- #: core/fields/checkbox.php:21
910
- #@ acf
911
- msgid "Checkbox"
912
- msgstr "Kryssryta"
913
-
914
- #: core/fields/checkbox.php:44
915
- #: core/fields/radio.php:45
916
- #: core/fields/select.php:50
917
- #@ acf
918
- msgid "No choices to choose from"
919
- msgstr "Inga val att välja mellan"
920
-
921
- #: core/fields/checkbox.php:102
922
- #: core/fields/radio.php:114
923
- #: core/fields/select.php:164
924
- #@ acf
925
- msgid "Choices"
926
- msgstr "Val"
927
-
928
- #: core/fields/checkbox.php:103
929
- #: core/fields/radio.php:115
930
- #: core/fields/select.php:165
931
- #@ acf
932
- msgid "Enter your choices one per line"
933
- msgstr "Ange dina val, ett per rad"
934
-
935
- #: core/fields/checkbox.php:105
936
- #: core/fields/radio.php:117
937
- #: core/fields/select.php:167
938
- #@ acf
939
- msgid "Red"
940
- msgstr "Röd"
941
-
942
- #: core/fields/checkbox.php:106
943
- #: core/fields/radio.php:118
944
- #: core/fields/select.php:168
945
- #@ acf
946
- msgid "Blue"
947
- msgstr "Blå"
948
-
949
- #: core/fields/checkbox.php:108
950
- #: core/fields/radio.php:120
951
- #: core/fields/select.php:170
952
- #@ acf
953
- msgid "red : Red"
954
- msgstr "röd : Röd"
955
-
956
- #: core/fields/checkbox.php:109
957
- #: core/fields/radio.php:121
958
- #: core/fields/select.php:171
959
- #@ acf
960
- msgid "blue : Blue"
961
- msgstr "blå : Blå"
962
-
963
- #: core/fields/color_picker.php:21
964
- #@ acf
965
- msgid "Color Picker"
966
- msgstr "Färgväljare"
967
-
968
- #: core/fields/date_picker/date_picker.php:21
969
- #@ acf
970
- msgid "Date Picker"
971
- msgstr "Datumväljare"
972
-
973
- #: core/fields/date_picker/date_picker.php:82
974
- #@ acf
975
- msgid "Date format"
976
- msgstr "Datumformat"
977
-
978
- #: core/fields/date_picker/date_picker.php:83
979
- #@ acf
980
- msgid "eg. dd/mm/yy. read more about"
981
- msgstr "t.ex. dd/mm/yy. läs mer om"
982
-
983
- #: core/fields/file.php:20
984
- #@ acf
985
- msgid "File"
986
- msgstr "Fil"
987
-
988
- #: core/fields/file.php:60
989
- #@ acf
990
- msgid "Remove File"
991
- msgstr "Ta Bort Fil"
992
-
993
- #: core/fields/file.php:165
994
- #@ acf
995
- msgid "No File Selected"
996
- msgstr "Ingen Fil Vald"
997
-
998
- #: core/fields/file.php:165
999
- #@ acf
1000
- msgid "Add File"
1001
- msgstr "Lägg Till Fil"
1002
-
1003
- #: core/fields/file.php:194
1004
- #: core/fields/image.php:177
1005
- #@ acf
1006
- msgid "Return Value"
1007
- msgstr "Returnera Värde"
1008
-
1009
- #: core/fields/file.php:342
1010
- #@ acf
1011
- msgid "No files selected"
1012
- msgstr "Inga filer valda"
1013
-
1014
- #: core/fields/file.php:419
1015
- #@ acf
1016
- msgid "Add Selected Files"
1017
- msgstr "Lägg till Valda Filer"
1018
-
1019
- #: core/fields/file.php:445
1020
- #@ acf
1021
- msgid "Select File"
1022
- msgstr "Välj Fil"
1023
-
1024
- #: core/fields/flexible_content.php:21
1025
- #@ acf
1026
- msgid "Flexible Content"
1027
- msgstr "Flexibelt Innehåll"
1028
-
1029
- #: core/fields/flexible_content.php:38
1030
- #: core/fields/flexible_content.php:218
1031
- #: core/fields/repeater.php:65
1032
- #: core/fields/repeater.php:213
1033
- #@ acf
1034
- msgid "+ Add Row"
1035
- msgstr "+ Lägg Till Rad"
1036
-
1037
- #: core/fields/flexible_content.php:254
1038
- #: core/fields/radio.php:144
1039
- #: core/fields/repeater.php:386
1040
- #@ acf
1041
- msgid "Layout"
1042
- msgstr "Layout"
1043
-
1044
- #: core/fields/flexible_content.php:256
1045
- #@ acf
1046
- msgid "Reorder Layout"
1047
- msgstr "Ändra Ordning på Layout"
1048
-
1049
- #: core/fields/flexible_content.php:256
1050
- #@ acf
1051
- msgid "Reorder"
1052
- msgstr "Ändra ordning"
1053
-
1054
- #: core/fields/flexible_content.php:257
1055
- #@ acf
1056
- msgid "Add New Layout"
1057
- msgstr "Lägg till Ny Layout"
1058
-
1059
- #: core/fields/flexible_content.php:258
1060
- #@ acf
1061
- msgid "Delete Layout"
1062
- msgstr "Ta bort Layout"
1063
-
1064
- #: core/fields/flexible_content.php:268
1065
- #@ acf
1066
- msgid "Label"
1067
- msgstr "Etikett"
1068
-
1069
- #: core/fields/flexible_content.php:278
1070
- #@ acf
1071
- msgid "Name"
1072
- msgstr "Namn"
1073
-
1074
- #: core/fields/flexible_content.php:288
1075
- #@ acf
1076
- msgid "Display"
1077
- msgstr "Visa som"
1078
-
1079
- #: core/fields/flexible_content.php:295
1080
- #@ acf
1081
- msgid "Table"
1082
- msgstr "Tabell"
1083
-
1084
- #: core/fields/flexible_content.php:296
1085
- #: core/fields/repeater.php:397
1086
- #@ acf
1087
- msgid "Row"
1088
- msgstr "Rad"
1089
-
1090
- #: core/fields/flexible_content.php:320
1091
- #: core/fields/repeater.php:255
1092
- #@ acf
1093
- msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
1094
- msgstr "Inga fält. Klicka på \"+ Lägg till Subfält-knappen\" för att skapa ditt första fält."
1095
-
1096
- #: core/fields/flexible_content.php:413
1097
- #: core/fields/repeater.php:348
1098
- #@ acf
1099
- msgid "Close Sub Field"
1100
- msgstr "Stäng Subfält"
1101
-
1102
- #: core/fields/flexible_content.php:428
1103
- #: core/fields/repeater.php:364
1104
- #@ acf
1105
- msgid "+ Add Sub Field"
1106
- msgstr "+ Lägg till Subfält"
1107
-
1108
- #: core/fields/flexible_content.php:435
1109
- #: core/fields/repeater.php:405
1110
- #@ acf
1111
- msgid "Button Label"
1112
- msgstr "Knappetikett"
1113
-
1114
- #: core/fields/image.php:21
1115
- #@ acf
1116
- msgid "Image"
1117
- msgstr "Bild"
1118
-
1119
- #: core/fields/image.php:153
1120
- #@ acf
1121
- msgid "No image selected"
1122
- msgstr "Ingen bild vald"
1123
-
1124
- #: core/fields/image.php:153
1125
- #@ acf
1126
- msgid "Add Image"
1127
- msgstr "Lägg till Bild"
1128
-
1129
- #: core/fields/image.php:187
1130
- #@ acf
1131
- msgid "Image URL"
1132
- msgstr "Bild URL"
1133
-
1134
- #: core/fields/image.php:188
1135
- #@ acf
1136
- msgid "Attachment ID"
1137
- msgstr "Bilagans ID"
1138
-
1139
- #: core/fields/image.php:196
1140
- #@ acf
1141
- msgid "Preview Size"
1142
- msgstr "Förhandsgranskningens storlek"
1143
-
1144
- #: core/fields/image.php:206
1145
- #@ acf
1146
- msgid "Thumbnail"
1147
- msgstr "Miniatyr"
1148
-
1149
- #: core/fields/image.php:207
1150
- #@ acf
1151
- msgid "Medium"
1152
- msgstr "Medium"
1153
-
1154
- #: core/fields/image.php:208
1155
- #@ acf
1156
- msgid "Large"
1157
- msgstr "Stor"
1158
-
1159
- #: core/fields/image.php:209
1160
- #: core/fields/wysiwyg.php:141
1161
- #@ acf
1162
- msgid "Full"
1163
- msgstr "Original"
1164
-
1165
- #: core/fields/image.php:392
1166
- #@ acf
1167
- msgid "No images selected"
1168
- msgstr "Inga bilder valda"
1169
-
1170
- #: core/fields/image.php:469
1171
- #@ acf
1172
- msgid "Add selected Images"
1173
- msgstr "Lägg till valda Bilder"
1174
-
1175
- #: core/fields/image.php:495
1176
- #@ acf
1177
- msgid "Select Image"
1178
- msgstr "Välj bild"
1179
-
1180
- #: core/fields/page_link.php:21
1181
- #@ acf
1182
- msgid "Page Link"
1183
- msgstr "Sidlänk"
1184
-
1185
- #: core/fields/page_link.php:71
1186
- #: core/fields/post_object.php:64
1187
- #: core/fields/select.php:21
1188
- #@ acf
1189
- msgid "Select"
1190
- msgstr "Välj"
1191
-
1192
- #: core/fields/page_link.php:195
1193
- #@ acf
1194
- msgid ""
1195
- "Filter posts by selecting a post type<br />\n"
1196
- "\t\t\t\tTip: deselect all post types to show all post type's posts"
1197
- msgstr ""
1198
- "Filtrera inlägg genom att välja en inläggstyp<br />\n"
1199
- "\t\t\t\tTip: avmarkera alla inläggstyper för att visa alla inläggstypers inlägg"
1200
-
1201
- #: core/fields/page_link.php:200
1202
- #: core/fields/post_object.php:213
1203
- #: core/fields/post_object.php:237
1204
- #: core/fields/relationship.php:250
1205
- #: core/fields/relationship.php:301
1206
- #@ acf
1207
- msgid "All"
1208
- msgstr "Alla"
1209
-
1210
- #: core/fields/page_link.php:223
1211
- #: core/fields/post_object.php:281
1212
- #: core/fields/select.php:194
1213
- #@ acf
1214
- msgid "Allow Null?"
1215
- msgstr "Tillåt oredigerade fält?"
1216
-
1217
- #: core/fields/page_link.php:232
1218
- #: core/fields/page_link.php:251
1219
- #: core/fields/post_object.php:290
1220
- #: core/fields/post_object.php:309
1221
- #: core/fields/select.php:203
1222
- #: core/fields/select.php:222
1223
- #: core/fields/wysiwyg.php:160
1224
- #@ acf
1225
- msgid "Yes"
1226
- msgstr "Ja"
1227
-
1228
- #: core/fields/page_link.php:233
1229
- #: core/fields/page_link.php:252
1230
- #: core/fields/post_object.php:291
1231
- #: core/fields/post_object.php:310
1232
- #: core/fields/select.php:204
1233
- #: core/fields/select.php:223
1234
- #: core/fields/wysiwyg.php:161
1235
- #@ acf
1236
- msgid "No"
1237
- msgstr "Nej"
1238
-
1239
- #: core/fields/page_link.php:242
1240
- #: core/fields/post_object.php:300
1241
- #: core/fields/select.php:213
1242
- #@ acf
1243
- msgid "Select multiple values?"
1244
- msgstr "Markera flera värden?"
1245
-
1246
- #: core/fields/post_object.php:21
1247
- #@ acf
1248
- msgid "Post Object"
1249
- msgstr "Inläggsobjekt"
1250
-
1251
- #: core/fields/post_object.php:231
1252
- #: core/fields/relationship.php:295
1253
- #@ acf
1254
- msgid "Filter from Taxonomy"
1255
- msgstr "Filtrera från Taxonomi"
1256
-
1257
- #: core/fields/radio.php:21
1258
- #@ acf
1259
- msgid "Radio Button"
1260
- msgstr "Envalsknapp"
1261
-
1262
- #: core/fields/radio.php:130
1263
- #: core/fields/select.php:180
1264
- #: core/fields/text.php:61
1265
- #: core/fields/textarea.php:62
1266
- #@ acf
1267
- msgid "Default Value"
1268
- msgstr "Standardvärde"
1269
-
1270
- #: core/fields/radio.php:154
1271
- #@ acf
1272
- msgid "Vertical"
1273
- msgstr "Vertikal"
1274
-
1275
- #: core/fields/radio.php:155
1276
- #@ acf
1277
- msgid "Horizontal"
1278
- msgstr "Horisontell"
1279
-
1280
- #: core/fields/relationship.php:21
1281
- #@ acf
1282
- msgid "Relationship"
1283
- msgstr "Förhållande"
1284
-
1285
- #: core/fields/relationship.php:134
1286
- #@ acf
1287
- msgid "Search"
1288
- msgstr "Sök"
1289
-
1290
- #: core/fields/relationship.php:318
1291
- #@ acf
1292
- msgid "Maximum posts"
1293
- msgstr "Maximalt antal inlägg"
1294
-
1295
- #: core/fields/relationship.php:319
1296
- #@ acf
1297
- msgid "Set to -1 for infinite"
1298
- msgstr "Ställ in -1 för oändligt"
1299
-
1300
- #: core/fields/repeater.php:21
1301
- #@ acf
1302
- msgid "Repeater"
1303
- msgstr "Upprepning"
1304
-
1305
- #: core/fields/repeater.php:236
1306
- #@ acf
1307
- msgid "Repeater Fields"
1308
- msgstr "Upprepningsfält"
1309
-
1310
- #: core/fields/repeater.php:372
1311
- #@ acf
1312
- msgid "Row Limit"
1313
- msgstr "Rad Begränsning"
1314
-
1315
- #: core/fields/repeater.php:396
1316
- #@ acf
1317
- msgid "Table (default)"
1318
- msgstr "Tabell (standard)"
1319
-
1320
- #: core/fields/text.php:21
1321
- #@ acf
1322
- msgid "Text"
1323
- msgstr "Text"
1324
-
1325
- #: core/fields/text.php:75
1326
- #: core/fields/textarea.php:76
1327
- #@ acf
1328
- msgid "Formatting"
1329
- msgstr "Formatering"
1330
-
1331
- #: core/fields/text.php:76
1332
- #@ acf
1333
- msgid "Define how to render html tags"
1334
- msgstr "Ange hur html-taggar ska renderas"
1335
-
1336
- #: core/fields/text.php:85
1337
- #: core/fields/textarea.php:86
1338
- #@ acf
1339
- msgid "None"
1340
- msgstr "Ingen"
1341
-
1342
- #: core/fields/text.php:86
1343
- #: core/fields/textarea.php:88
1344
- #@ acf
1345
- msgid "HTML"
1346
- msgstr "HTML"
1347
-
1348
- #: core/fields/textarea.php:21
1349
- #@ acf
1350
- msgid "Text Area"
1351
- msgstr "Textfält"
1352
-
1353
- #: core/fields/textarea.php:77
1354
- #@ acf
1355
- msgid "Define how to render html tags / new lines"
1356
- msgstr "Ange hur html-taggar / nya rader ska renderas"
1357
-
1358
- #: core/fields/textarea.php:87
1359
- #@ acf
1360
- msgid "auto &lt;br /&gt;"
1361
- msgstr "auto &lt;br /&gt;"
1362
-
1363
- #: core/fields/true_false.php:21
1364
- #@ acf
1365
- msgid "True / False"
1366
- msgstr "Sant / Falskt"
1367
-
1368
- #: core/fields/true_false.php:68
1369
- #@ acf
1370
- msgid "Message"
1371
- msgstr "Meddelande"
1372
-
1373
- #: core/fields/true_false.php:69
1374
- #@ acf
1375
- msgid "eg. Show extra content"
1376
- msgstr "t.ex. Visa extra innehåll"
1377
-
1378
- #: core/fields/wysiwyg.php:21
1379
- #@ acf
1380
- msgid "Wysiwyg Editor"
1381
- msgstr "Wysiwyg-redigerare"
1382
-
1383
- #: core/fields/wysiwyg.php:131
1384
- #@ acf
1385
- msgid "Toolbar"
1386
- msgstr "Verktygsfält"
1387
-
1388
- #: core/fields/wysiwyg.php:150
1389
- #@ acf
1390
- msgid "Show Media Upload Buttons?"
1391
- msgstr "Visa knappar för Mediauppladdning?"
1392
-
1393
- #: core/options_page.php:161
1394
- #@ acf
1395
- msgid "Options Updated"
1396
- msgstr "Alternativ Uppdaterade"
1397
-
1398
- #: core/options_page.php:275
1399
- #@ acf
1400
- msgid "No Custom Field Group found for the options page"
1401
- msgstr "Inga Anpassade Fältgrupper funna för alternativsidan"
1402
-
1403
- #: core/options_page.php:275
1404
- #@ acf
1405
- msgid "Create a Custom Field Group"
1406
- msgstr "Skapa en anpassad fältgrupp"
1407
-
1408
- #: core/options_page.php:286
1409
- #@ acf
1410
- msgid "Publish"
1411
- msgstr "Publicera"
1412
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -85,6 +85,15 @@ http://www.advancedcustomfields.com/support/
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
 
 
 
 
88
  = 3.2.2 =
89
  * [Fixed] Fix layout bug: Nested repeaters of different layouts
90
  * [Fixed] Fix strip slashes bug
85
 
86
  == Changelog ==
87
 
88
+ = 3.2.3 =
89
+ * [Fixed] Include Wysiwyg scripts / styles through the editor class
90
+ * [Fixed] Wysiwyg in repeater not working
91
+ * [Fixed] Remove Swedish translation until string / js bugs are fixed
92
+ * [Fixed] Checkbox array value issue: http://wordpress.org/support/topic/plugin-advanced-custom-fields-php-warning-in-corefieldscheckboxphp?replies=6
93
+ * [Added] Add inherit to relationship posts query - http://www.advancedcustomfields.com/support/discussion/comment/3826#Comment_3826
94
+ * [Fixed] Relationship shows deleted posts - http://www.advancedcustomfields.com/support/discussion/2080/strange-behavior-of-relationship-field-trash-posts
95
+ * [Fixed] Wysiwyg editor not working on taxonomy edit page
96
+
97
  = 3.2.2 =
98
  * [Fixed] Fix layout bug: Nested repeaters of different layouts
99
  * [Fixed] Fix strip slashes bug
screenshot-3.png CHANGED
Binary file