Advanced Custom Fields - Version 5.9.5

Version Description

Release Date - 11 February 2021

  • Fix - Fixed regression preventing blocks from loading correctly within the editor in WordPress 5.5.
  • Fix - Fixed bug causing incorrect post_status properties when restoring a Field Group from trash in WordPress 5.6.
  • Fix - Fixed edge case bug where a taxonomy named "options" could interfere with saving and loading option values.
  • Fix - Fixed additional PHP 8.0 warnings.
  • i18n - Updated Finnish translation thanks to Mikko Kekki
Download this release

Release Info

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

Code changes from version 5.9.4 to 5.9.5

acf.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: https://www.advancedcustomfields.com
5
  Description: Customize WordPress with powerful, professional and intuitive fields.
6
- Version: 5.9.4
7
  Author: Elliot Condon
8
  Author URI: https://www.advancedcustomfields.com
9
  Text Domain: acf
@@ -17,7 +17,7 @@ if( ! class_exists('ACF') ) :
17
  class ACF {
18
 
19
  /** @var string The plugin version number. */
20
- var $version = '5.9.4';
21
 
22
  /** @var array The plugin settings array. */
23
  var $settings = array();
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: https://www.advancedcustomfields.com
5
  Description: Customize WordPress with powerful, professional and intuitive fields.
6
+ Version: 5.9.5
7
  Author: Elliot Condon
8
  Author URI: https://www.advancedcustomfields.com
9
  Text Domain: acf
17
  class ACF {
18
 
19
  /** @var string The plugin version number. */
20
+ var $version = '5.9.5';
21
 
22
  /** @var array The plugin settings array. */
23
  var $settings = array();
includes/acf-field-functions.php CHANGED
@@ -1203,6 +1203,24 @@ function acf_untrash_field( $id = 0 ) {
1203
  return true;
1204
  }
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  /**
1207
  * acf_prefix_fields
1208
  *
1203
  return true;
1204
  }
1205
 
1206
+ /**
1207
+ * Filter callback which returns the previous post_status instead of "draft" for the "acf-field" post type.
1208
+ *
1209
+ * Prior to WordPress 5.6.0, this filter was not needed as restored posts were always assigned their original status.
1210
+ *
1211
+ * @since 5.9.5
1212
+ *
1213
+ * @param string $new_status The new status of the post being restored.
1214
+ * @param int $post_id The ID of the post being restored.
1215
+ * @param string $previous_status The status of the post at the point where it was trashed.
1216
+ * @return string.
1217
+ */
1218
+ function _acf_untrash_field_post_status( $new_status, $post_id, $previous_status ) {
1219
+ return ( get_post_type( $post_id ) === 'acf-field' ) ? $previous_status : $new_status;
1220
+ }
1221
+
1222
+ add_action( 'wp_untrash_post_status', '_acf_untrash_field_post_status', 10, 3 );
1223
+
1224
  /**
1225
  * acf_prefix_fields
1226
  *
includes/acf-field-group-functions.php CHANGED
@@ -763,6 +763,24 @@ function acf_untrash_field_group( $id = 0 ) {
763
  return true;
764
  }
765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  /**
767
  * acf_is_field_group
768
  *
763
  return true;
764
  }
765
 
766
+ /**
767
+ * Filter callback which returns the previous post_status instead of "draft" for the "acf-field-group" post type.
768
+ *
769
+ * Prior to WordPress 5.6.0, this filter was not needed as restored posts were always assigned their original status.
770
+ *
771
+ * @since 5.9.5
772
+ *
773
+ * @param string $new_status The new status of the post being restored.
774
+ * @param int $post_id The ID of the post being restored.
775
+ * @param string $previous_status The status of the post at the point where it was trashed.
776
+ * @return string.
777
+ */
778
+ function _acf_untrash_field_group_post_status( $new_status, $post_id, $previous_status ) {
779
+ return ( get_post_type( $post_id ) === 'acf-field-group' ) ? $previous_status : $new_status;
780
+ }
781
+
782
+ add_action( 'wp_untrash_post_status', '_acf_untrash_field_group_post_status', 10, 3 );
783
+
784
  /**
785
  * acf_is_field_group
786
  *
includes/acf-value-functions.php CHANGED
@@ -161,7 +161,7 @@ acf_add_filter_variations( 'acf/format_value', array('type', 'name', 'key'), 2 )
161
  * @param array $field The field array.
162
  * @return bool.
163
  */
164
- function acf_update_value( $value = null, $post_id = 0, $field ) {
165
 
166
  // Allow filter to short-circuit update_value logic.
167
  $check = apply_filters( "acf/pre_update_value", null, $value, $post_id, $field );
@@ -215,7 +215,7 @@ acf_add_filter_variations( 'acf/update_value', array('type', 'name', 'key'), 2 )
215
  * @param (int|string) $post_id The post id.
216
  * @return void
217
  */
218
- function acf_update_values( $values = array(), $post_id = 0 ) {
219
 
220
  // Loop over values.
221
  foreach( $values as $key => $value ) {
161
  * @param array $field The field array.
162
  * @return bool.
163
  */
164
+ function acf_update_value( $value, $post_id, $field ) {
165
 
166
  // Allow filter to short-circuit update_value logic.
167
  $check = apply_filters( "acf/pre_update_value", null, $value, $post_id, $field );
215
  * @param (int|string) $post_id The post id.
216
  * @return void
217
  */
218
+ function acf_update_values( $values, $post_id ) {
219
 
220
  // Loop over values.
221
  foreach( $values as $key => $value ) {
includes/acf-wp-functions.php CHANGED
@@ -133,6 +133,7 @@ function acf_decode_post_id( $post_id = 0 ) {
133
  $id = substr($post_id, $i+1);
134
  } else {
135
  $type = $post_id;
 
136
  }
137
 
138
  // Handle incorrect param type.
133
  $id = substr($post_id, $i+1);
134
  } else {
135
  $type = $post_id;
136
+ $id = '';
137
  }
138
 
139
  // Handle incorrect param type.
includes/api/api-helpers.php CHANGED
@@ -3163,9 +3163,11 @@ function acf_get_attachment( $attachment ) {
3163
  case 'image':
3164
  $sizes_id = $attachment->ID;
3165
  $src = wp_get_attachment_image_src( $attachment->ID, 'full' );
3166
- $response['url'] = $src[0];
3167
- $response['width'] = $src[1];
3168
- $response['height'] = $src[2];
 
 
3169
  break;
3170
  case 'video':
3171
  $response['width'] = acf_maybe_get( $meta, 'width', 0 );
@@ -3184,14 +3186,16 @@ function acf_get_attachment( $attachment ) {
3184
  // Load array of image sizes.
3185
  if( $sizes_id ) {
3186
  $sizes = get_intermediate_image_sizes();
3187
- $data = array();
3188
  foreach( $sizes as $size ) {
3189
  $src = wp_get_attachment_image_src( $sizes_id, $size );
3190
- $data[ $size ] = $src[ 0 ];
3191
- $data[ $size . '-width' ] = $src[ 1 ];
3192
- $data[ $size . '-height' ] = $src[ 2 ];
 
 
3193
  }
3194
- $response['sizes'] = $data;
3195
  }
3196
 
3197
  /**
@@ -4822,20 +4826,17 @@ function acf_array_camel_case( $array = array() ) {
4822
  }
4823
 
4824
  /**
4825
- * acf_is_block_editor
4826
- *
4827
- * Returns true if the current screen uses the block editor.
4828
  *
4829
- * @date 13/12/18
4830
- * @since 5.8.0
4831
  *
4832
- * @param void
4833
- * @return bool
4834
  */
4835
  function acf_is_block_editor() {
4836
- if( function_exists('get_current_screen') ) {
4837
  $screen = get_current_screen();
4838
- if( method_exists($screen, 'is_block_editor') ) {
4839
  return $screen->is_block_editor();
4840
  }
4841
  }
3163
  case 'image':
3164
  $sizes_id = $attachment->ID;
3165
  $src = wp_get_attachment_image_src( $attachment->ID, 'full' );
3166
+ if ( $src ) {
3167
+ $response['url'] = $src[0];
3168
+ $response['width'] = $src[1];
3169
+ $response['height'] = $src[2];
3170
+ }
3171
  break;
3172
  case 'video':
3173
  $response['width'] = acf_maybe_get( $meta, 'width', 0 );
3186
  // Load array of image sizes.
3187
  if( $sizes_id ) {
3188
  $sizes = get_intermediate_image_sizes();
3189
+ $sizes_data = array();
3190
  foreach( $sizes as $size ) {
3191
  $src = wp_get_attachment_image_src( $sizes_id, $size );
3192
+ if ( $src ) {
3193
+ $sizes_data[ $size ] = $src[0];
3194
+ $sizes_data[ $size . '-width' ] = $src[1];
3195
+ $sizes_data[ $size . '-height' ] = $src[2];
3196
+ }
3197
  }
3198
+ $response['sizes'] = $sizes_data;
3199
  }
3200
 
3201
  /**
4826
  }
4827
 
4828
  /**
4829
+ * Returns true if the current screen is using the block editor.
 
 
4830
  *
4831
+ * @date 13/12/18
4832
+ * @since 5.8.0
4833
  *
4834
+ * @return bool
 
4835
  */
4836
  function acf_is_block_editor() {
4837
+ if ( function_exists( 'get_current_screen' ) ) {
4838
  $screen = get_current_screen();
4839
+ if( $screen && method_exists( $screen, 'is_block_editor' ) ) {
4840
  return $screen->is_block_editor();
4841
  }
4842
  }
includes/local-json.php CHANGED
@@ -213,7 +213,7 @@ class ACF_Local_JSON {
213
  if( $field_group['ID'] ) {
214
  $field_group['modified'] = get_post_modified_time( 'U', true, $field_group['ID'] );
215
  } else {
216
- $field_group['modified'] = strtotime();
217
  }
218
 
219
  // Prepare for export.
213
  if( $field_group['ID'] ) {
214
  $field_group['modified'] = get_post_modified_time( 'U', true, $field_group['ID'] );
215
  } else {
216
+ $field_group['modified'] = strtotime( 'now' );
217
  }
218
 
219
  // Prepare for export.
lang/acf-fi.mo CHANGED
Binary file
lang/acf-fi.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Custom Fields Pro\n"
4
  "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
5
- "POT-Creation-Date: 2020-03-23 15:39+1000\n"
6
- "PO-Revision-Date: 2020-04-03 11:37+0300\n"
7
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: \n"
9
  "Language: fi\n"
@@ -26,107 +26,149 @@ msgstr ""
26
  msgid "Advanced Custom Fields"
27
  msgstr "Advanced Custom Fields"
28
 
29
- #: acf.php:342 includes/admin/admin.php:52
30
  msgid "Field Groups"
31
  msgstr "Kenttäryhmät"
32
 
33
- #: acf.php:343
34
  msgid "Field Group"
35
  msgstr "Kenttäryhmä"
36
 
37
- #: acf.php:344 acf.php:376 includes/admin/admin.php:53
38
- #: pro/fields/class-acf-field-flexible-content.php:558
39
  msgid "Add New"
40
  msgstr "Lisää uusi"
41
 
42
- #: acf.php:345
43
  msgid "Add New Field Group"
44
  msgstr "Lisää uusi kenttäryhmä"
45
 
46
- #: acf.php:346
47
  msgid "Edit Field Group"
48
  msgstr "Muokkaa kenttäryhmää"
49
 
50
- #: acf.php:347
51
  msgid "New Field Group"
52
  msgstr "Lisää uusi kenttäryhmä"
53
 
54
- #: acf.php:348
55
  msgid "View Field Group"
56
  msgstr "Katso kenttäryhmää"
57
 
58
- #: acf.php:349
59
  msgid "Search Field Groups"
60
  msgstr "Etsi kenttäryhmiä"
61
 
62
- #: acf.php:350
63
  msgid "No Field Groups found"
64
  msgstr "Kenttäryhmiä ei löytynyt"
65
 
66
- #: acf.php:351
67
  msgid "No Field Groups found in Trash"
68
  msgstr "Kenttäryhmiä ei löytynyt roskakorista"
69
 
70
- #: acf.php:374 includes/admin/admin-field-group.php:220
71
- #: includes/admin/admin-field-groups.php:530
72
- #: pro/fields/class-acf-field-clone.php:811
73
  msgid "Fields"
74
  msgstr "Kentät"
75
 
76
- #: acf.php:375
77
  msgid "Field"
78
  msgstr "Kenttä"
79
 
80
- #: acf.php:377
81
  msgid "Add New Field"
82
  msgstr "Lisää uusi kenttä"
83
 
84
- #: acf.php:378
85
  msgid "Edit Field"
86
  msgstr "Muokkaa kenttää"
87
 
88
- #: acf.php:379 includes/admin/views/field-group-fields.php:41
89
  msgid "New Field"
90
  msgstr "Uusi kenttä"
91
 
92
- #: acf.php:380
93
  msgid "View Field"
94
  msgstr "Näytä kenttä"
95
 
96
- #: acf.php:381
97
  msgid "Search Fields"
98
  msgstr "Etsi kenttiä"
99
 
100
- #: acf.php:382
101
  msgid "No Fields found"
102
  msgstr "Ei löytynyt kenttiä"
103
 
104
- #: acf.php:383
105
  msgid "No Fields found in Trash"
106
  msgstr "Kenttiä ei löytynyt roskakorista"
107
 
108
- #: acf.php:418 includes/admin/admin-field-group.php:402
109
- #: includes/admin/admin-field-groups.php:587
110
- msgid "Inactive"
111
- msgstr "Ei käytössä"
112
 
113
- #: acf.php:423
114
  #, php-format
115
- msgid "Inactive <span class=\"count\">(%s)</span>"
116
- msgid_plural "Inactive <span class=\"count\">(%s)</span>"
117
- msgstr[0] "Ei käytössä <span class=\"count\">(%s)</span>"
118
- msgstr[1] "Ei käytössä <span class=\"count\">(%s)</span>"
119
 
120
  #: includes/acf-field-functions.php:831
121
  #: includes/admin/admin-field-group.php:178
122
  msgid "(no label)"
123
  msgstr "(ei nimiötä)"
124
 
125
- #: includes/acf-field-group-functions.php:819
126
  #: includes/admin/admin-field-group.php:180
127
  msgid "copy"
128
  msgstr "kopio"
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  #: includes/admin/admin-field-group.php:86
131
  #: includes/admin/admin-field-group.php:87
132
  #: includes/admin/admin-field-group.php:89
@@ -194,7 +236,7 @@ msgstr "(tämä kenttä)"
194
  #: includes/admin/views/field-group-field-conditional-logic.php:151
195
  #: includes/admin/views/field-group-locations.php:29
196
  #: includes/admin/views/html-location-group.php:3
197
- #: includes/api/api-helpers.php:3649
198
  msgid "or"
199
  msgstr "tai"
200
 
@@ -202,77 +244,111 @@ msgstr "tai"
202
  msgid "Null"
203
  msgstr "Tyhjä"
204
 
205
- #: includes/admin/admin-field-group.php:221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Location"
207
  msgstr "Sijainti"
208
 
209
- #: includes/admin/admin-field-group.php:222
210
  #: includes/admin/tools/class-acf-admin-tool-export.php:295
211
  msgid "Settings"
212
  msgstr "Asetukset"
213
 
214
- #: includes/admin/admin-field-group.php:372
215
  msgid "Field Keys"
216
  msgstr "Kenttäavaimet"
217
 
218
- #: includes/admin/admin-field-group.php:402
219
  #: includes/admin/views/field-group-options.php:9
220
  msgid "Active"
221
  msgstr "Käytössä"
222
 
223
- #: includes/admin/admin-field-group.php:763
 
 
 
 
224
  msgid "Move Complete."
225
  msgstr "Siirto valmis."
226
 
227
- #: includes/admin/admin-field-group.php:764
228
  #, php-format
229
  msgid "The %s field can now be found in the %s field group"
230
  msgstr "Kenttä %s löytyy nyt kenttäryhmästä %s"
231
 
232
- #: includes/admin/admin-field-group.php:765
233
  msgid "Close Window"
234
  msgstr "Sulje ikkuna"
235
 
236
- #: includes/admin/admin-field-group.php:806
237
  msgid "Please select the destination for this field"
238
  msgstr "Valitse kohde kentälle"
239
 
240
- #: includes/admin/admin-field-group.php:813
241
  msgid "Move Field"
242
  msgstr "Siirrä kenttä"
243
 
244
- #: includes/admin/admin-field-groups.php:89
245
  #, php-format
246
  msgid "Active <span class=\"count\">(%s)</span>"
247
  msgid_plural "Active <span class=\"count\">(%s)</span>"
248
  msgstr[0] "Käytössä <span class=\"count\">(%s)</span>"
249
  msgstr[1] "Käytössä <span class=\"count\">(%s)</span>"
250
 
251
- #: includes/admin/admin-field-groups.php:156
252
- #, php-format
253
- msgid "Field group duplicated."
254
- msgid_plural "%s field groups duplicated."
255
- msgstr[0] "Kenttäryhmä monistettu."
256
- msgstr[1] "%s kenttäryhmää monistettu."
257
-
258
- #: includes/admin/admin-field-groups.php:243
259
- #, php-format
260
- msgid "Field group synchronised."
261
- msgid_plural "%s field groups synchronised."
262
- msgstr[0] "Kenttäryhmä synkronoitu."
263
- msgstr[1] "%s kenttäryhmää synkronoitu."
264
 
265
- #: includes/admin/admin-field-groups.php:414
266
- #: includes/admin/admin-field-groups.php:577
267
- msgid "Sync available"
268
- msgstr "Synkronointi saatavissa"
269
 
270
- #: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38
271
- #: pro/fields/class-acf-field-gallery.php:353
272
- msgid "Title"
273
- msgstr "Otsikko"
274
 
275
- #: includes/admin/admin-field-groups.php:528
276
  #: includes/admin/views/field-group-options.php:96
277
  #: includes/admin/views/html-admin-page-upgrade-network.php:38
278
  #: includes/admin/views/html-admin-page-upgrade-network.php:49
@@ -280,91 +356,89 @@ msgstr "Otsikko"
280
  msgid "Description"
281
  msgstr "Kuvaus"
282
 
283
- #: includes/admin/admin-field-groups.php:529
284
- msgid "Status"
285
- msgstr "Status"
 
286
 
287
- #. Description of the plugin/theme
288
- #: includes/admin/admin-field-groups.php:626
289
- msgid "Customize WordPress with powerful, professional and intuitive fields."
290
- msgstr ""
291
- "Mukauta WordPressiä tehokkailla, ammattimaisilla ja intuitiivisilla kentillä."
292
 
293
- #: includes/admin/admin-field-groups.php:628 includes/admin/admin.php:123
294
- #: pro/admin/views/html-settings-updates.php:107
295
- msgid "Changelog"
296
- msgstr "Muutosloki"
297
 
298
- #: includes/admin/admin-field-groups.php:633
299
  #, php-format
300
- msgid "See what's new in <a href=\"%s\">version %s</a>."
301
- msgstr "Katso mitä uutta <a href=\"%s\">versiossa %s</a>."
302
 
303
- #: includes/admin/admin-field-groups.php:636
304
- msgid "Resources"
305
- msgstr "Resurssit"
 
306
 
307
- #: includes/admin/admin-field-groups.php:638
308
- msgid "Website"
309
- msgstr "Kotisivu"
 
310
 
311
- #: includes/admin/admin-field-groups.php:639
312
- msgid "Documentation"
313
- msgstr "Dokumentaatio"
 
314
 
315
- #: includes/admin/admin-field-groups.php:640
316
- msgid "Support"
317
- msgstr "Tuki"
318
 
319
- #: includes/admin/admin-field-groups.php:642
320
- #: includes/admin/views/settings-info.php:81
321
- msgid "Pro"
322
- msgstr "Pro"
323
 
324
- #: includes/admin/admin-field-groups.php:647
325
- #, php-format
326
- msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
327
- msgstr "Kiitos, että luot sisältöä <a href=\"%s\">ACF:llä</a>."
328
 
329
- #: includes/admin/admin-field-groups.php:686
 
 
 
 
 
 
 
 
330
  msgid "Duplicate this item"
331
  msgstr "Monista tämä kohde"
332
 
333
- #: includes/admin/admin-field-groups.php:686
334
- #: includes/admin/admin-field-groups.php:702
335
  #: includes/admin/views/field-group-field.php:46
336
- #: pro/fields/class-acf-field-flexible-content.php:557
337
  msgid "Duplicate"
338
  msgstr "Monista"
339
 
340
- #: includes/admin/admin-field-groups.php:719
341
- #: includes/fields/class-acf-field-google-map.php:146
342
- #: includes/fields/class-acf-field-relationship.php:593
343
- msgid "Search"
344
- msgstr "Etsi"
 
345
 
346
- #: includes/admin/admin-field-groups.php:778
 
 
 
 
 
 
 
347
  #, php-format
348
  msgid "Select %s"
349
  msgstr "Valitse %s"
350
 
351
- #: includes/admin/admin-field-groups.php:786
352
- msgid "Synchronise field group"
353
- msgstr "Synkronoi kenttäryhmä"
354
-
355
- #: includes/admin/admin-field-groups.php:786
356
- #: includes/admin/admin-field-groups.php:816
357
- msgid "Sync"
358
- msgstr "Synkronointi"
359
-
360
- #: includes/admin/admin-field-groups.php:798
361
- msgid "Apply"
362
- msgstr "Käytä"
363
-
364
- #: includes/admin/admin-field-groups.php:816
365
- msgid "Bulk Actions"
366
- msgstr "Massatoiminnot"
367
-
368
  #: includes/admin/admin-tools.php:116
369
  #: includes/admin/views/html-admin-tools.php:21
370
  msgid "Tools"
@@ -381,17 +455,110 @@ msgstr "Päivitä tietokanta"
381
  msgid "Review sites & upgrade"
382
  msgstr "Tarkastele sivuja & päivitä"
383
 
384
- #: includes/admin/admin.php:51 includes/admin/views/field-group-options.php:110
385
  msgid "Custom Fields"
386
  msgstr "Lisäkentät"
387
 
388
- #: includes/admin/admin.php:57
389
- msgid "Info"
390
- msgstr "Info"
 
 
 
 
 
 
 
 
 
 
 
391
 
392
- #: includes/admin/admin.php:122
393
- msgid "What's New"
394
- msgstr "Katso mitä uutta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
 
396
  #: includes/admin/tools/class-acf-admin-tool-export.php:33
397
  msgid "Export Field Groups"
@@ -479,7 +646,7 @@ msgid "Import File"
479
  msgstr "Tuo tiedosto"
480
 
481
  #: includes/admin/tools/class-acf-admin-tool-import.php:85
482
- #: includes/fields/class-acf-field-file.php:170
483
  msgid "No file selected"
484
  msgstr "Ei valittua tiedostoa"
485
 
@@ -510,11 +677,6 @@ msgstr "Ehdollinen logiikka"
510
  msgid "Show this field if"
511
  msgstr "Näytä tämä kenttä, jos"
512
 
513
- #: includes/admin/views/field-group-field-conditional-logic.php:138
514
- #: includes/admin/views/html-location-rule.php:86
515
- msgid "and"
516
- msgstr "ja"
517
-
518
  #: includes/admin/views/field-group-field-conditional-logic.php:153
519
  #: includes/admin/views/field-group-locations.php:31
520
  msgid "Add rule group"
@@ -532,8 +694,8 @@ msgid "Edit field"
532
  msgstr "Muokkaa kenttää"
533
 
534
  #: includes/admin/views/field-group-field.php:45
535
- #: includes/fields/class-acf-field-file.php:152
536
- #: includes/fields/class-acf-field-image.php:138
537
  #: includes/fields/class-acf-field-link.php:139
538
  #: pro/fields/class-acf-field-gallery.php:337
539
  msgid "Edit"
@@ -556,7 +718,7 @@ msgid "Delete field"
556
  msgstr "Poista kenttä"
557
 
558
  #: includes/admin/views/field-group-field.php:48
559
- #: pro/fields/class-acf-field-flexible-content.php:556
560
  msgid "Delete"
561
  msgstr "Poista"
562
 
@@ -621,20 +783,16 @@ msgstr "Järjestys"
621
  #: includes/fields/class-acf-field-checkbox.php:420
622
  #: includes/fields/class-acf-field-radio.php:311
623
  #: includes/fields/class-acf-field-select.php:433
624
- #: pro/fields/class-acf-field-flexible-content.php:582
625
  msgid "Label"
626
  msgstr "Nimiö"
627
 
628
  #: includes/admin/views/field-group-fields.php:6
629
- #: includes/fields/class-acf-field-taxonomy.php:936
630
- #: pro/fields/class-acf-field-flexible-content.php:596
631
  msgid "Name"
632
  msgstr "Nimi"
633
 
634
- #: includes/admin/views/field-group-fields.php:7
635
- msgid "Key"
636
- msgstr "Avain"
637
-
638
  #: includes/admin/views/field-group-fields.php:8
639
  msgid "Type"
640
  msgstr "Tyyppi"
@@ -745,10 +903,6 @@ msgstr "Katkelma"
745
  msgid "Discussion"
746
  msgstr "Keskustelu"
747
 
748
- #: includes/admin/views/field-group-options.php:112
749
- msgid "Comments"
750
- msgstr "Kommentit"
751
-
752
  #: includes/admin/views/field-group-options.php:113
753
  msgid "Revisions"
754
  msgstr "Tarkastettu"
@@ -770,7 +924,7 @@ msgid "Page Attributes"
770
  msgstr "Sivun attribuutit"
771
 
772
  #: includes/admin/views/field-group-options.php:118
773
- #: includes/fields/class-acf-field-relationship.php:607
774
  msgid "Featured Image"
775
  msgstr "Artikkelikuva"
776
 
@@ -905,7 +1059,7 @@ msgid "Gallery"
905
  msgstr "Galleria"
906
 
907
  #: includes/admin/views/html-notice-upgrade.php:11
908
- #: pro/locations/class-acf-location-options-page.php:26
909
  msgid "Options Page"
910
  msgstr "Asetukset-sivu"
911
 
@@ -932,479 +1086,143 @@ msgstr ""
932
  "Varmista myös, että kaikki premium-lisäosat (%s) on päivitetty uusimpaan "
933
  "versioon."
934
 
935
- #: includes/admin/views/settings-info.php:3
936
- msgid "Welcome to Advanced Custom Fields"
937
- msgstr "Tervetuloa Advanced Custom Fields -lisäosaan"
938
-
939
- #: includes/admin/views/settings-info.php:4
940
- #, php-format
941
- msgid ""
942
- "Thank you for updating! ACF %s is bigger and better than ever before. We "
943
- "hope you like it."
944
- msgstr ""
945
- "Kiitos, että päivitit! ACF %s on suurempi ja parempi kuin koskaan ennen. "
946
- "Toivomme, että pidät siitä."
947
-
948
- #: includes/admin/views/settings-info.php:15
949
- msgid "A Smoother Experience"
950
- msgstr "Sujuvampi kokemus"
951
-
952
- #: includes/admin/views/settings-info.php:18
953
- msgid "Improved Usability"
954
- msgstr "Käytettävyyttä parannettu"
955
-
956
- #: includes/admin/views/settings-info.php:19
957
- msgid ""
958
- "Including the popular Select2 library has improved both usability and speed "
959
- "across a number of field types including post object, page link, taxonomy "
960
- "and select."
961
- msgstr ""
962
- "Mukaan otettu Select2-kirjasto on parantanut sekä käytettävyyttä että "
963
- "nopeutta erilaisissa kenttätyypeissä kuten artikkelioliossa, sivun linkissä, "
964
- "taksonomiassa ja valinnassa."
965
-
966
- #: includes/admin/views/settings-info.php:22
967
- msgid "Improved Design"
968
- msgstr "Parantunut muotoilu"
969
 
970
- #: includes/admin/views/settings-info.php:23
971
- msgid ""
972
- "Many fields have undergone a visual refresh to make ACF look better than "
973
- "ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
974
- "(new) fields!"
975
- msgstr ""
976
- "Monet kentät ovat käyneet läpi visuaalisen uudistuksen ja ACF näyttää "
977
- "paremmalta kuin koskaan ennen! Huomattavat muutokset ovat nähtävissä "
978
- "kentissä galleria, suodata artikkeleita ja oEmbed (uusi)!"
979
-
980
- #: includes/admin/views/settings-info.php:26
981
- msgid "Improved Data"
982
- msgstr "Parannettu data"
983
 
984
- #: includes/admin/views/settings-info.php:27
985
- msgid ""
986
- "Redesigning the data architecture has allowed sub fields to live "
987
- "independently from their parents. This allows you to drag and drop fields in "
988
- "and out of parent fields!"
989
  msgstr ""
990
- "Data-arkkitehtuurin uudelleensuunnittelu mahdollisti alakenttien "
991
- "riippumattomuuden vanhemmistaan. Tämän muutoksen myötä voit vetää ja "
992
- "pudottaa kenttiä riippumatta kenttähierarkiasta!"
993
-
994
- #: includes/admin/views/settings-info.php:35
995
- msgid "Goodbye Add-ons. Hello PRO"
996
- msgstr "Hyvästi lisäosat. Tervetuloa PRO"
997
-
998
- #: includes/admin/views/settings-info.php:38
999
- msgid "Introducing ACF PRO"
1000
- msgstr "Esittelyssä ACF PRO"
1001
 
1002
- #: includes/admin/views/settings-info.php:39
1003
- msgid ""
1004
- "We're changing the way premium functionality is delivered in an exciting way!"
1005
- msgstr ""
1006
- "Olemme muuttamassa tapaa, jolla Premium-toiminnallisuus toimitetaan "
1007
- "jännittävällä tavalla!"
1008
-
1009
- #: includes/admin/views/settings-info.php:40
1010
  #, php-format
1011
- msgid ""
1012
- "All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
1013
- "version of ACF</a>. With both personal and developer licenses available, "
1014
- "premium functionality is more affordable and accessible than ever before!"
1015
- msgstr ""
1016
- "Kaikki neljä premium-lisäosaa on yhdistetty uuteen <a href=\"%s\">ACF PRO -"
1017
- "versioon</a>. Lisensseistä saatavilla on sekä henkilökohtaisia että "
1018
- "kehittäjien lisenssejä, joten korkealuokkaiset toiminnallisuudet ovat nyt "
1019
- "edullisimpia ja saavutettavampia kuin koskaan ennen!"
1020
 
1021
- #: includes/admin/views/settings-info.php:44
1022
- msgid "Powerful Features"
1023
- msgstr "Tehokkaat ominaisuudet"
1024
 
1025
- #: includes/admin/views/settings-info.php:45
1026
- msgid ""
1027
- "ACF PRO contains powerful features such as repeatable data, flexible content "
1028
- "layouts, a beautiful gallery field and the ability to create extra admin "
1029
- "options pages!"
1030
- msgstr ""
1031
- "ACF PRO sisältää tehokkaita ominaisuuksia, kuten toistuva data, joustavat "
1032
- "sisältö-layoutit, kaunis galleriakenttä sekä mahdollisuus luoda ylimääräisiä "
1033
- "ylläpitäjän asetussivuja!"
1034
-
1035
- #: includes/admin/views/settings-info.php:46
1036
- #, php-format
1037
- msgid "Read more about <a href=\"%s\">ACF PRO features</a>."
1038
- msgstr "Lue lisää <a href=\"%s\">ACF PRO:n ominaisuuksista</a>."
1039
-
1040
- #: includes/admin/views/settings-info.php:50
1041
- msgid "Easy Upgrading"
1042
- msgstr "Helppo päivitys"
1043
-
1044
- #: includes/admin/views/settings-info.php:51
1045
- msgid ""
1046
- "Upgrading to ACF PRO is easy. Simply purchase a license online and download "
1047
- "the plugin!"
1048
- msgstr ""
1049
- "Päivittäminen ACF PRO-versioon on helppoa. Osta lisenssi verkossa ja lataa "
1050
- "lisäosa!"
1051
-
1052
- #: includes/admin/views/settings-info.php:52
1053
- #, php-format
1054
- msgid ""
1055
- "We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
1056
- "but if you do have one, please contact our support team via the <a href=\"%s"
1057
- "\">help desk</a>."
1058
- msgstr ""
1059
- "Kirjoitimme myös <a href=\"%s\">päivitysoppaan</a> vastataksemme "
1060
- "kysymyksiin. Jos jokin asia vielä vaivaa mieltäsi, ota yhteyttä "
1061
- "asiakaspalveluumme <a href=\"%s\">neuvontapalvelun</a> kautta."
1062
-
1063
- #: includes/admin/views/settings-info.php:61
1064
- msgid "New Features"
1065
- msgstr "Uudet ominaisuudet"
1066
-
1067
- #: includes/admin/views/settings-info.php:66
1068
- msgid "Link Field"
1069
- msgstr "Linkki-kenttä"
1070
-
1071
- #: includes/admin/views/settings-info.php:67
1072
- msgid ""
1073
- "The Link field provides a simple way to select or define a link (url, title, "
1074
- "target)."
1075
- msgstr ""
1076
- "Linkki-kentässä on yksinkertainen tapa valita tai määrittää linkki (URL, "
1077
- "otsikko, kohde)."
1078
-
1079
- #: includes/admin/views/settings-info.php:71
1080
- msgid "Group Field"
1081
- msgstr "Ryhmä-kenttä"
1082
-
1083
- #: includes/admin/views/settings-info.php:72
1084
- msgid "The Group field provides a simple way to create a group of fields."
1085
- msgstr "Ryhmä-kentässä on yksinkertainen tapa luoda kenttäryhmiä."
1086
-
1087
- #: includes/admin/views/settings-info.php:76
1088
- msgid "oEmbed Field"
1089
- msgstr "oEmbed-kenttä"
1090
-
1091
- #: includes/admin/views/settings-info.php:77
1092
- msgid ""
1093
- "The oEmbed field allows an easy way to embed videos, images, tweets, audio, "
1094
- "and other content."
1095
- msgstr ""
1096
- "oEmbed-kentän avulla voit helposti upottaa videoita, kuvia, twiittejä, ääntä "
1097
- "ja muuta sisältöä."
1098
-
1099
- #: includes/admin/views/settings-info.php:81
1100
- msgid "Clone Field"
1101
- msgstr "Klooni-kenttä"
1102
-
1103
- #: includes/admin/views/settings-info.php:82
1104
- msgid "The clone field allows you to select and display existing fields."
1105
- msgstr "Klooni-kentän avulla voit valita ja näyttää aiemmin luotuja kenttiä."
1106
-
1107
- #: includes/admin/views/settings-info.php:86
1108
- msgid "More AJAX"
1109
- msgstr "Enemmän AJAXia"
1110
-
1111
- #: includes/admin/views/settings-info.php:87
1112
- msgid "More fields use AJAX powered search to speed up page loading."
1113
- msgstr ""
1114
- "Useammat kentät käyttävät AJAX-käyttöistä hakua ja näin sivujen lataus "
1115
- "nopeutuu."
1116
-
1117
- #: includes/admin/views/settings-info.php:91
1118
- msgid "Local JSON"
1119
- msgstr "Paikallinen JSON"
1120
-
1121
- #: includes/admin/views/settings-info.php:92
1122
- msgid ""
1123
- "New auto export to JSON feature improves speed and allows for syncronisation."
1124
- msgstr ""
1125
- "Uusi automaattinen vienti JSON:iin parantaa nopeutta ja mahdollistaa "
1126
- "synkronoinnin."
1127
-
1128
- #: includes/admin/views/settings-info.php:96
1129
- msgid "Easy Import / Export"
1130
- msgstr "Helppo tuonti / vienti"
1131
-
1132
- #: includes/admin/views/settings-info.php:97
1133
- msgid "Both import and export can easily be done through a new tools page."
1134
- msgstr ""
1135
- "Sekä tuonti että vienti voidaan tehdä helposti uudella työkalut-sivulla."
1136
-
1137
- #: includes/admin/views/settings-info.php:101
1138
- msgid "New Form Locations"
1139
- msgstr "Uudet valikkosijainnit"
1140
-
1141
- #: includes/admin/views/settings-info.php:102
1142
- msgid ""
1143
- "Fields can now be mapped to menus, menu items, comments, widgets and all "
1144
- "user forms!"
1145
- msgstr ""
1146
- "Kentät voidaan nyt linkittää valikkoihin, valikkokohteisiin, kommentteihin, "
1147
- "vimpaimiin ja kaikkiin käyttäjälomakkeisiin!"
1148
-
1149
- #: includes/admin/views/settings-info.php:106
1150
- msgid "More Customization"
1151
- msgstr "Lisää muokkauksia"
1152
-
1153
- #: includes/admin/views/settings-info.php:107
1154
- msgid ""
1155
- "New PHP (and JS) actions and filters have been added to allow for more "
1156
- "customization."
1157
- msgstr ""
1158
- "Uudet PHP (ja JS) -toiminnot ja -suodattimet on lisätty mahdollistamaan "
1159
- "kattavamman mukautuksen."
1160
-
1161
- #: includes/admin/views/settings-info.php:111
1162
- msgid "Fresh UI"
1163
- msgstr "Tuore UI"
1164
-
1165
- #: includes/admin/views/settings-info.php:112
1166
- msgid ""
1167
- "The entire plugin has had a design refresh including new field types, "
1168
- "settings and design!"
1169
- msgstr ""
1170
- "Koko lisäosa on saanut design-päivityksen, mukaan lukien uudet kenttätyypit, "
1171
- "asetukset ja suunnittelu!"
1172
-
1173
- #: includes/admin/views/settings-info.php:116
1174
- msgid "New Settings"
1175
- msgstr "Uudet asetukset"
1176
-
1177
- #: includes/admin/views/settings-info.php:117
1178
- msgid ""
1179
- "Field group settings have been added for Active, Label Placement, "
1180
- "Instructions Placement and Description."
1181
- msgstr ""
1182
- "Kenttäryhmän asetukset on lisätty ominaisuuksiin Aktiivinen, Nimiön "
1183
- "sijoittelu, Ohjeiden sijoittelu ja Kuvaus."
1184
-
1185
- #: includes/admin/views/settings-info.php:121
1186
- msgid "Better Front End Forms"
1187
- msgstr "Paremmat front endin lomakkeet"
1188
-
1189
- #: includes/admin/views/settings-info.php:122
1190
- msgid ""
1191
- "acf_form() can now create a new post on submission with lots of new settings."
1192
- msgstr ""
1193
- "acf_form() voi nyt luoda uuden artikkelin pyydettäessä useilla uusilla "
1194
- "asetuksilla."
1195
-
1196
- #: includes/admin/views/settings-info.php:126
1197
- msgid "Better Validation"
1198
- msgstr "Parempi validointi"
1199
-
1200
- #: includes/admin/views/settings-info.php:127
1201
- msgid "Form validation is now done via PHP + AJAX in favour of only JS."
1202
- msgstr ""
1203
- "Lomakkeen validointi tehdään nyt yhdistelmällä PHP + AJAX pelkän JS:n sijaan."
1204
-
1205
- #: includes/admin/views/settings-info.php:131
1206
- msgid "Moving Fields"
1207
- msgstr "Kenttien siirtäminen"
1208
-
1209
- #: includes/admin/views/settings-info.php:132
1210
- msgid ""
1211
- "New field group functionality allows you to move a field between groups & "
1212
- "parents."
1213
- msgstr ""
1214
- "Uusi kenttäryhmien toiminnallisuus sallii kenttien siirtämisen ryhmien ja "
1215
- "vanhempien välillä."
1216
-
1217
- #: includes/admin/views/settings-info.php:143
1218
- #, php-format
1219
- msgid "We think you'll love the changes in %s."
1220
- msgstr "Uskomme, että tulet rakastamaan muutoksia %s:ssa."
1221
 
1222
  #: includes/ajax/class-acf-ajax.php:157
1223
  msgid "Invalid nonce."
1224
  msgstr "Virheellinen nonce."
1225
 
1226
- #: includes/api/api-helpers.php:827
1227
  msgid "Thumbnail"
1228
  msgstr "Pienoiskuva"
1229
 
1230
- #: includes/api/api-helpers.php:828
1231
  msgid "Medium"
1232
  msgstr "Keskikokoinen"
1233
 
1234
- #: includes/api/api-helpers.php:829
1235
  msgid "Large"
1236
  msgstr "Iso"
1237
 
1238
- #: includes/api/api-helpers.php:878
1239
  msgid "Full Size"
1240
  msgstr "Täysikokoinen"
1241
 
1242
- #: includes/api/api-helpers.php:1599 includes/api/api-term.php:147
1243
- #: pro/fields/class-acf-field-clone.php:996
1244
  msgid "(no title)"
1245
  msgstr "(ei otsikkoa)"
1246
 
1247
- #: includes/api/api-helpers.php:3570
1248
  #, php-format
1249
  msgid "Image width must be at least %dpx."
1250
  msgstr "Kuvan leveys täytyy olla vähintään %dpx."
1251
 
1252
- #: includes/api/api-helpers.php:3575
1253
  #, php-format
1254
  msgid "Image width must not exceed %dpx."
1255
  msgstr "Kuvan leveys ei saa ylittää %dpx."
1256
 
1257
- #: includes/api/api-helpers.php:3591
1258
  #, php-format
1259
  msgid "Image height must be at least %dpx."
1260
  msgstr "Kuvan korkeus täytyy olla vähintään %dpx."
1261
 
1262
- #: includes/api/api-helpers.php:3596
1263
  #, php-format
1264
  msgid "Image height must not exceed %dpx."
1265
  msgstr "Kuvan korkeus ei saa ylittää %dpx."
1266
 
1267
- #: includes/api/api-helpers.php:3614
1268
  #, php-format
1269
  msgid "File size must be at least %s."
1270
  msgstr "Tiedoston koko täytyy olla vähintään %s."
1271
 
1272
- #: includes/api/api-helpers.php:3619
1273
  #, php-format
1274
- msgid "File size must must not exceed %s."
1275
  msgstr "Tiedoston koko ei saa ylittää %s."
1276
 
1277
- #: includes/api/api-helpers.php:3653
1278
  #, php-format
1279
  msgid "File type must be %s."
1280
  msgstr "Tiedoston koko täytyy olla %s."
1281
 
1282
- #: includes/assets.php:184
1283
- msgid "The changes you made will be lost if you navigate away from this page"
1284
- msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
1285
-
1286
- #: includes/assets.php:187 includes/fields/class-acf-field-select.php:259
1287
- msgctxt "verb"
1288
- msgid "Select"
1289
- msgstr "Valitse"
1290
-
1291
- #: includes/assets.php:188
1292
- msgctxt "verb"
1293
- msgid "Edit"
1294
- msgstr "Muokkaa"
1295
-
1296
- #: includes/assets.php:189
1297
- msgctxt "verb"
1298
- msgid "Update"
1299
- msgstr "Päivitä"
1300
-
1301
- #: includes/assets.php:190
1302
- msgid "Uploaded to this post"
1303
- msgstr "Tähän kenttäryhmään ladatut kuvat"
1304
-
1305
- #: includes/assets.php:191
1306
- msgid "Expand Details"
1307
- msgstr "Enemmän tietoja"
1308
-
1309
- #: includes/assets.php:192
1310
- msgid "Collapse Details"
1311
- msgstr "Vähemmän tietoja"
1312
-
1313
- #: includes/assets.php:193
1314
- msgid "Restricted"
1315
- msgstr "Rajoitettu"
1316
-
1317
- #: includes/assets.php:194 includes/fields/class-acf-field-image.php:66
1318
- msgid "All images"
1319
- msgstr "Kaikki kuvat"
1320
-
1321
- #: includes/assets.php:197
1322
- msgid "Validation successful"
1323
- msgstr "Kenttäryhmän validointi onnistui"
1324
-
1325
- #: includes/assets.php:198 includes/validation.php:285
1326
- #: includes/validation.php:296
1327
- msgid "Validation failed"
1328
- msgstr "Lisäkentän validointi epäonnistui"
1329
-
1330
- #: includes/assets.php:199
1331
- msgid "1 field requires attention"
1332
- msgstr "Yksi kenttä vaatii huomiota"
1333
-
1334
- #: includes/assets.php:200
1335
- #, php-format
1336
- msgid "%d fields require attention"
1337
- msgstr "%d kenttää vaativat huomiota"
1338
-
1339
- #: includes/assets.php:203
1340
  msgid "Are you sure?"
1341
  msgstr "Oletko varma?"
1342
 
1343
- #: includes/assets.php:204 includes/fields/class-acf-field-true_false.php:79
1344
  #: includes/fields/class-acf-field-true_false.php:159
1345
- #: pro/admin/views/html-settings-updates.php:89
1346
  msgid "Yes"
1347
  msgstr "Kyllä"
1348
 
1349
- #: includes/assets.php:205 includes/fields/class-acf-field-true_false.php:80
1350
  #: includes/fields/class-acf-field-true_false.php:174
1351
- #: pro/admin/views/html-settings-updates.php:99
1352
  msgid "No"
1353
  msgstr "Ei"
1354
 
1355
- #: includes/assets.php:206 includes/fields/class-acf-field-file.php:154
1356
- #: includes/fields/class-acf-field-image.php:140
1357
  #: includes/fields/class-acf-field-link.php:140
1358
  #: pro/fields/class-acf-field-gallery.php:338
1359
  #: pro/fields/class-acf-field-gallery.php:478
1360
  msgid "Remove"
1361
  msgstr "Poista"
1362
 
1363
- #: includes/assets.php:207
1364
  msgid "Cancel"
1365
  msgstr "Peruuta"
1366
 
1367
- #: includes/assets.php:210
1368
- msgid "Has any value"
1369
- msgstr "On mitään arvoa"
1370
-
1371
- #: includes/assets.php:211
1372
- msgid "Has no value"
1373
- msgstr "Ei ole arvoa"
1374
-
1375
- #: includes/assets.php:212
1376
- msgid "Value is equal to"
1377
- msgstr "Arvo on sama kuin"
1378
-
1379
- #: includes/assets.php:213
1380
- msgid "Value is not equal to"
1381
- msgstr "Arvo ei ole sama kuin"
1382
-
1383
- #: includes/assets.php:214
1384
- msgid "Value matches pattern"
1385
- msgstr "Arvo vastaa kaavaa"
1386
-
1387
- #: includes/assets.php:215
1388
- msgid "Value contains"
1389
- msgstr "Arvo sisältää"
1390
 
1391
- #: includes/assets.php:216
1392
- msgid "Value is greater than"
1393
- msgstr "Arvo on suurempi kuin"
1394
 
1395
- #: includes/assets.php:217
1396
- msgid "Value is less than"
1397
- msgstr "Arvo on pienempi kuin"
 
1398
 
1399
- #: includes/assets.php:218
1400
- msgid "Selection is greater than"
1401
- msgstr "Valinta on suurempi kuin"
1402
 
1403
- #: includes/assets.php:219
1404
- msgid "Selection is less than"
1405
- msgstr "Valinta on pienempi kuin"
 
1406
 
1407
- #: includes/assets.php:222 includes/forms/form-comment.php:166
1408
  #: pro/admin/admin-options-page.php:325
1409
  msgid "Edit field group"
1410
  msgstr "Muokkaa kenttäryhmää"
@@ -1441,10 +1259,10 @@ msgstr "jQuery"
1441
  #: includes/fields/class-acf-field-checkbox.php:389
1442
  #: includes/fields/class-acf-field-group.php:474
1443
  #: includes/fields/class-acf-field-radio.php:290
1444
- #: pro/fields/class-acf-field-clone.php:843
1445
- #: pro/fields/class-acf-field-flexible-content.php:553
1446
- #: pro/fields/class-acf-field-flexible-content.php:602
1447
- #: pro/fields/class-acf-field-repeater.php:448
1448
  msgid "Layout"
1449
  msgstr "Asettelu"
1450
 
@@ -1513,18 +1331,18 @@ msgid "red : Red"
1513
  msgstr "koira_istuu : Koira istuu"
1514
 
1515
  #: includes/fields/class-acf-field-button-group.php:158
1516
- #: includes/fields/class-acf-field-page_link.php:513
1517
  #: includes/fields/class-acf-field-post_object.php:411
1518
  #: includes/fields/class-acf-field-radio.php:244
1519
  #: includes/fields/class-acf-field-select.php:382
1520
- #: includes/fields/class-acf-field-taxonomy.php:781
1521
  #: includes/fields/class-acf-field-user.php:63
1522
  msgid "Allow Null?"
1523
  msgstr "Salli tyhjä?"
1524
 
1525
  #: includes/fields/class-acf-field-button-group.php:168
1526
  #: includes/fields/class-acf-field-checkbox.php:380
1527
- #: includes/fields/class-acf-field-color_picker.php:131
1528
  #: includes/fields/class-acf-field-email.php:118
1529
  #: includes/fields/class-acf-field-number.php:127
1530
  #: includes/fields/class-acf-field-radio.php:281
@@ -1534,7 +1352,7 @@ msgstr "Salli tyhjä?"
1534
  #: includes/fields/class-acf-field-textarea.php:102
1535
  #: includes/fields/class-acf-field-true_false.php:135
1536
  #: includes/fields/class-acf-field-url.php:100
1537
- #: includes/fields/class-acf-field-wysiwyg.php:381
1538
  msgid "Default Value"
1539
  msgstr "Oletusarvo"
1540
 
@@ -1546,7 +1364,7 @@ msgstr "Oletusarvo"
1546
  #: includes/fields/class-acf-field-text.php:96
1547
  #: includes/fields/class-acf-field-textarea.php:103
1548
  #: includes/fields/class-acf-field-url.php:101
1549
- #: includes/fields/class-acf-field-wysiwyg.php:382
1550
  msgid "Appears when creating a new post"
1551
  msgstr "Kentän oletusarvo"
1552
 
@@ -1564,16 +1382,16 @@ msgstr "Pystysuuntainen"
1564
 
1565
  #: includes/fields/class-acf-field-button-group.php:191
1566
  #: includes/fields/class-acf-field-checkbox.php:413
1567
- #: includes/fields/class-acf-field-file.php:215
1568
  #: includes/fields/class-acf-field-link.php:166
1569
  #: includes/fields/class-acf-field-radio.php:304
1570
- #: includes/fields/class-acf-field-taxonomy.php:826
1571
  msgid "Return Value"
1572
  msgstr "Palauta arvo"
1573
 
1574
  #: includes/fields/class-acf-field-button-group.php:192
1575
  #: includes/fields/class-acf-field-checkbox.php:414
1576
- #: includes/fields/class-acf-field-file.php:216
1577
  #: includes/fields/class-acf-field-link.php:167
1578
  #: includes/fields/class-acf-field-radio.php:305
1579
  msgid "Specify the returned value on front end"
@@ -1594,7 +1412,7 @@ msgid "Both (Array)"
1594
  msgstr "Molemmat (palautusmuoto on tällöin taulukko)"
1595
 
1596
  #: includes/fields/class-acf-field-checkbox.php:25
1597
- #: includes/fields/class-acf-field-taxonomy.php:768
1598
  msgid "Checkbox"
1599
  msgstr "Valintaruutu"
1600
 
@@ -1640,21 +1458,29 @@ msgstr "Näytetäänkö ”Valitse kaikki” -valintaruutu"
1640
  msgid "Color Picker"
1641
  msgstr "Värinvalitsin"
1642
 
1643
- #: includes/fields/class-acf-field-color_picker.php:68
1644
  msgid "Clear"
1645
  msgstr "Tyhjennä"
1646
 
1647
- #: includes/fields/class-acf-field-color_picker.php:69
 
 
 
 
1648
  msgid "Default"
1649
  msgstr "Oletus"
1650
 
1651
- #: includes/fields/class-acf-field-color_picker.php:70
 
 
 
 
1652
  msgid "Select Color"
1653
  msgstr "Valitse väri"
1654
 
1655
- #: includes/fields/class-acf-field-color_picker.php:71
1656
- msgid "Current Color"
1657
- msgstr "Nykyinen väri"
1658
 
1659
  #: includes/fields/class-acf-field-date_picker.php:25
1660
  msgid "Date Picker"
@@ -1716,9 +1542,9 @@ msgstr "Arvo tallennetaan tähän muotoon"
1716
 
1717
  #: includes/fields/class-acf-field-date_picker.php:208
1718
  #: includes/fields/class-acf-field-date_time_picker.php:200
1719
- #: includes/fields/class-acf-field-image.php:204
1720
  #: includes/fields/class-acf-field-post_object.php:431
1721
- #: includes/fields/class-acf-field-relationship.php:634
1722
  #: includes/fields/class-acf-field-select.php:427
1723
  #: includes/fields/class-acf-field-time_picker.php:124
1724
  #: includes/fields/class-acf-field-user.php:79
@@ -1887,88 +1713,88 @@ msgid "File name"
1887
  msgstr "Tiedoston nimi"
1888
 
1889
  #: includes/fields/class-acf-field-file.php:145
1890
- #: includes/fields/class-acf-field-file.php:248
1891
- #: includes/fields/class-acf-field-file.php:259
1892
- #: includes/fields/class-acf-field-image.php:264
1893
- #: includes/fields/class-acf-field-image.php:293
1894
  #: pro/fields/class-acf-field-gallery.php:642
1895
  #: pro/fields/class-acf-field-gallery.php:671
1896
  msgid "File size"
1897
  msgstr "Tiedoston koko"
1898
 
1899
- #: includes/fields/class-acf-field-file.php:170
1900
  msgid "Add File"
1901
  msgstr "Lisää tiedosto"
1902
 
1903
- #: includes/fields/class-acf-field-file.php:221
1904
  msgid "File Array"
1905
  msgstr "Tiedosto"
1906
 
1907
- #: includes/fields/class-acf-field-file.php:222
1908
  msgid "File URL"
1909
  msgstr "Tiedoston URL"
1910
 
1911
- #: includes/fields/class-acf-field-file.php:223
1912
  msgid "File ID"
1913
  msgstr "Tiedoston ID"
1914
 
1915
- #: includes/fields/class-acf-field-file.php:230
1916
- #: includes/fields/class-acf-field-image.php:229
1917
  #: pro/fields/class-acf-field-gallery.php:592
1918
  msgid "Library"
1919
  msgstr "Kirjasto"
1920
 
1921
- #: includes/fields/class-acf-field-file.php:231
1922
- #: includes/fields/class-acf-field-image.php:230
1923
  #: pro/fields/class-acf-field-gallery.php:593
1924
  msgid "Limit the media library choice"
1925
  msgstr "Rajoita valintaa mediakirjastosta"
1926
 
1927
- #: includes/fields/class-acf-field-file.php:236
1928
- #: includes/fields/class-acf-field-image.php:235
1929
- #: includes/locations/class-acf-location-attachment.php:101
1930
- #: includes/locations/class-acf-location-comment.php:79
1931
- #: includes/locations/class-acf-location-nav-menu.php:102
1932
- #: includes/locations/class-acf-location-taxonomy.php:79
1933
- #: includes/locations/class-acf-location-user-form.php:72
1934
- #: includes/locations/class-acf-location-user-role.php:88
1935
- #: includes/locations/class-acf-location-widget.php:83
1936
  #: pro/fields/class-acf-field-gallery.php:598
1937
- #: pro/locations/class-acf-location-block.php:79
1938
  msgid "All"
1939
  msgstr "Kaikki"
1940
 
1941
- #: includes/fields/class-acf-field-file.php:237
1942
- #: includes/fields/class-acf-field-image.php:236
1943
  #: pro/fields/class-acf-field-gallery.php:599
1944
  msgid "Uploaded to post"
1945
  msgstr "Vain tähän artikkeliin ladatut"
1946
 
1947
- #: includes/fields/class-acf-field-file.php:244
1948
- #: includes/fields/class-acf-field-image.php:243
1949
  #: pro/fields/class-acf-field-gallery.php:621
1950
  msgid "Minimum"
1951
  msgstr "Minimiarvo(t)"
1952
 
1953
- #: includes/fields/class-acf-field-file.php:245
1954
- #: includes/fields/class-acf-field-file.php:256
1955
  msgid "Restrict which files can be uploaded"
1956
  msgstr "Määritä tiedoston koko"
1957
 
1958
- #: includes/fields/class-acf-field-file.php:255
1959
- #: includes/fields/class-acf-field-image.php:272
1960
  #: pro/fields/class-acf-field-gallery.php:650
1961
  msgid "Maximum"
1962
  msgstr "Maksimiarvo(t)"
1963
 
1964
- #: includes/fields/class-acf-field-file.php:266
1965
- #: includes/fields/class-acf-field-image.php:301
1966
  #: pro/fields/class-acf-field-gallery.php:678
1967
  msgid "Allowed file types"
1968
  msgstr "Sallitut tiedostotyypit"
1969
 
1970
- #: includes/fields/class-acf-field-file.php:267
1971
- #: includes/fields/class-acf-field-image.php:302
1972
  #: pro/fields/class-acf-field-gallery.php:679
1973
  msgid "Comma separated list. Leave blank for all types"
1974
  msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit"
@@ -1981,6 +1807,11 @@ msgstr "Google-kartta"
1981
  msgid "Sorry, this browser does not support geolocation"
1982
  msgstr "Pahoittelut, tämä selain ei tue paikannusta"
1983
 
 
 
 
 
 
1984
  #: includes/fields/class-acf-field-google-map.php:147
1985
  msgid "Clear location"
1986
  msgstr "Tyhjennä paikkatieto"
@@ -2012,8 +1843,8 @@ msgid "Set the initial zoom level"
2012
  msgstr "Aseta oletuszoomaus"
2013
 
2014
  #: includes/fields/class-acf-field-google-map.php:214
2015
- #: includes/fields/class-acf-field-image.php:255
2016
- #: includes/fields/class-acf-field-image.php:284
2017
  #: includes/fields/class-acf-field-oembed.php:268
2018
  #: pro/fields/class-acf-field-gallery.php:633
2019
  #: pro/fields/class-acf-field-gallery.php:662
@@ -2029,34 +1860,34 @@ msgid "Group"
2029
  msgstr "Ryhmä"
2030
 
2031
  #: includes/fields/class-acf-field-group.php:459
2032
- #: pro/fields/class-acf-field-repeater.php:384
2033
  msgid "Sub Fields"
2034
  msgstr "Alakentät"
2035
 
2036
  #: includes/fields/class-acf-field-group.php:475
2037
- #: pro/fields/class-acf-field-clone.php:844
2038
  msgid "Specify the style used to render the selected fields"
2039
  msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
2040
 
2041
  #: includes/fields/class-acf-field-group.php:480
2042
- #: pro/fields/class-acf-field-clone.php:849
2043
- #: pro/fields/class-acf-field-flexible-content.php:613
2044
- #: pro/fields/class-acf-field-repeater.php:456
2045
- #: pro/locations/class-acf-location-block.php:27
2046
  msgid "Block"
2047
  msgstr "Lohko"
2048
 
2049
  #: includes/fields/class-acf-field-group.php:481
2050
- #: pro/fields/class-acf-field-clone.php:850
2051
- #: pro/fields/class-acf-field-flexible-content.php:612
2052
- #: pro/fields/class-acf-field-repeater.php:455
2053
  msgid "Table"
2054
  msgstr "Taulukko"
2055
 
2056
  #: includes/fields/class-acf-field-group.php:482
2057
- #: pro/fields/class-acf-field-clone.php:851
2058
- #: pro/fields/class-acf-field-flexible-content.php:614
2059
- #: pro/fields/class-acf-field-repeater.php:457
2060
  msgid "Row"
2061
  msgstr "Rivi"
2062
 
@@ -2076,43 +1907,47 @@ msgstr "Muokkaa kuvaa"
2076
  msgid "Update Image"
2077
  msgstr "Päivitä kuva"
2078
 
2079
- #: includes/fields/class-acf-field-image.php:156
 
 
 
 
2080
  msgid "No image selected"
2081
  msgstr "Ei kuvia valittu"
2082
 
2083
- #: includes/fields/class-acf-field-image.php:156
2084
  msgid "Add Image"
2085
  msgstr "Lisää kuva"
2086
 
2087
- #: includes/fields/class-acf-field-image.php:210
2088
  #: pro/fields/class-acf-field-gallery.php:563
2089
  msgid "Image Array"
2090
  msgstr "Kuva"
2091
 
2092
- #: includes/fields/class-acf-field-image.php:211
2093
  #: pro/fields/class-acf-field-gallery.php:564
2094
  msgid "Image URL"
2095
  msgstr "Kuvan URL"
2096
 
2097
- #: includes/fields/class-acf-field-image.php:212
2098
  #: pro/fields/class-acf-field-gallery.php:565
2099
  msgid "Image ID"
2100
  msgstr "Kuvan ID"
2101
 
2102
- #: includes/fields/class-acf-field-image.php:219
2103
  #: pro/fields/class-acf-field-gallery.php:571
2104
  msgid "Preview Size"
2105
  msgstr "Esikatselukuvan koko"
2106
 
2107
- #: includes/fields/class-acf-field-image.php:244
2108
- #: includes/fields/class-acf-field-image.php:273
2109
  #: pro/fields/class-acf-field-gallery.php:622
2110
  #: pro/fields/class-acf-field-gallery.php:651
2111
  msgid "Restrict which images can be uploaded"
2112
  msgstr "Määritä millaisia kuvia voidaan ladata"
2113
 
2114
- #: includes/fields/class-acf-field-image.php:247
2115
- #: includes/fields/class-acf-field-image.php:276
2116
  #: includes/fields/class-acf-field-oembed.php:257
2117
  #: pro/fields/class-acf-field-gallery.php:625
2118
  #: pro/fields/class-acf-field-gallery.php:654
@@ -2228,45 +2063,45 @@ msgstr "Upotuksen koko"
2228
  msgid "Page Link"
2229
  msgstr "Sivun URL"
2230
 
2231
- #: includes/fields/class-acf-field-page_link.php:177
2232
  msgid "Archives"
2233
  msgstr "Arkistot"
2234
 
2235
- #: includes/fields/class-acf-field-page_link.php:269
2236
  #: includes/fields/class-acf-field-post_object.php:267
2237
- #: includes/fields/class-acf-field-taxonomy.php:958
2238
  msgid "Parent"
2239
  msgstr "Vanhempi"
2240
 
2241
- #: includes/fields/class-acf-field-page_link.php:485
2242
  #: includes/fields/class-acf-field-post_object.php:383
2243
- #: includes/fields/class-acf-field-relationship.php:560
2244
  msgid "Filter by Post Type"
2245
  msgstr "Suodata tyypin mukaan"
2246
 
2247
- #: includes/fields/class-acf-field-page_link.php:493
2248
  #: includes/fields/class-acf-field-post_object.php:391
2249
- #: includes/fields/class-acf-field-relationship.php:568
2250
  msgid "All post types"
2251
  msgstr "Kaikki artikkelityypit"
2252
 
2253
- #: includes/fields/class-acf-field-page_link.php:499
2254
  #: includes/fields/class-acf-field-post_object.php:397
2255
- #: includes/fields/class-acf-field-relationship.php:574
2256
  msgid "Filter by Taxonomy"
2257
  msgstr "Suodata taksonomian mukaan"
2258
 
2259
- #: includes/fields/class-acf-field-page_link.php:507
2260
  #: includes/fields/class-acf-field-post_object.php:405
2261
- #: includes/fields/class-acf-field-relationship.php:582
2262
  msgid "All taxonomies"
2263
  msgstr "Kaikki taksonomiat"
2264
 
2265
- #: includes/fields/class-acf-field-page_link.php:523
2266
  msgid "Allow Archives URLs"
2267
  msgstr "Salli arkistojen URL-osoitteita"
2268
 
2269
- #: includes/fields/class-acf-field-page_link.php:533
2270
  #: includes/fields/class-acf-field-post_object.php:421
2271
  #: includes/fields/class-acf-field-select.php:392
2272
  #: includes/fields/class-acf-field-user.php:71
@@ -2279,12 +2114,12 @@ msgstr "Salasana"
2279
 
2280
  #: includes/fields/class-acf-field-post_object.php:25
2281
  #: includes/fields/class-acf-field-post_object.php:436
2282
- #: includes/fields/class-acf-field-relationship.php:639
2283
  msgid "Post Object"
2284
  msgstr "Artikkeliolio"
2285
 
2286
  #: includes/fields/class-acf-field-post_object.php:437
2287
- #: includes/fields/class-acf-field-relationship.php:640
2288
  msgid "Post ID"
2289
  msgstr "Artikkelin ID"
2290
 
@@ -2336,43 +2171,43 @@ msgstr "Valitse artikkelityyppi"
2336
  msgid "Select taxonomy"
2337
  msgstr "Valitse taksonomia"
2338
 
2339
- #: includes/fields/class-acf-field-relationship.php:477
2340
  msgid "Search..."
2341
  msgstr "Etsi..."
2342
 
2343
- #: includes/fields/class-acf-field-relationship.php:588
2344
  msgid "Filters"
2345
  msgstr "Suodattimet"
2346
 
2347
- #: includes/fields/class-acf-field-relationship.php:594
2348
- #: includes/locations/class-acf-location-post-type.php:27
2349
  msgid "Post Type"
2350
  msgstr "Artikkelityyppi"
2351
 
2352
- #: includes/fields/class-acf-field-relationship.php:595
2353
  #: includes/fields/class-acf-field-taxonomy.php:28
2354
- #: includes/fields/class-acf-field-taxonomy.php:751
2355
- #: includes/locations/class-acf-location-taxonomy.php:27
2356
  msgid "Taxonomy"
2357
  msgstr "Taksonomia"
2358
 
2359
- #: includes/fields/class-acf-field-relationship.php:602
2360
  msgid "Elements"
2361
  msgstr "Elementit"
2362
 
2363
- #: includes/fields/class-acf-field-relationship.php:603
2364
  msgid "Selected elements will be displayed in each result"
2365
  msgstr "Valitut elementit näytetään jokaisessa tuloksessa"
2366
 
2367
- #: includes/fields/class-acf-field-relationship.php:614
2368
  msgid "Minimum posts"
2369
  msgstr "Vähimmäismäärä artikkeleita"
2370
 
2371
- #: includes/fields/class-acf-field-relationship.php:623
2372
  msgid "Maximum posts"
2373
  msgstr "Maksimimäärä artikkeleita"
2374
 
2375
- #: includes/fields/class-acf-field-relationship.php:727
2376
  #: pro/fields/class-acf-field-gallery.php:779
2377
  #, php-format
2378
  msgid "%s requires at least %s selection"
@@ -2381,7 +2216,7 @@ msgstr[0] "%s vaatii vähintään %s valinnan"
2381
  msgstr[1] "%s vaatii vähintään %s valintaa"
2382
 
2383
  #: includes/fields/class-acf-field-select.php:25
2384
- #: includes/fields/class-acf-field-taxonomy.php:773
2385
  msgctxt "noun"
2386
  msgid "Select"
2387
  msgstr "Valintalista"
@@ -2452,6 +2287,11 @@ msgctxt "Select2 JS load_fail"
2452
  msgid "Loading failed"
2453
  msgstr "Lataus epäonnistui"
2454
 
 
 
 
 
 
2455
  #: includes/fields/class-acf-field-select.php:402
2456
  #: includes/fields/class-acf-field-true_false.php:144
2457
  msgid "Stylised UI"
@@ -2485,89 +2325,89 @@ msgstr ""
2485
  "Määritä päätepiste, johon edelliset välilehdet lopetetaan. Tämä aloittaa "
2486
  "uuden välilehtiryhmän."
2487
 
2488
- #: includes/fields/class-acf-field-taxonomy.php:711
2489
  #, php-format
2490
  msgctxt "No terms"
2491
  msgid "No %s"
2492
  msgstr "Ei %s"
2493
 
2494
- #: includes/fields/class-acf-field-taxonomy.php:752
2495
  msgid "Select the taxonomy to be displayed"
2496
  msgstr "Valitse taksonomia, joka näytetään"
2497
 
2498
- #: includes/fields/class-acf-field-taxonomy.php:761
2499
  msgid "Appearance"
2500
  msgstr "Ulkoasu"
2501
 
2502
- #: includes/fields/class-acf-field-taxonomy.php:762
2503
  msgid "Select the appearance of this field"
2504
  msgstr "Valitse ulkoasu tälle kenttälle"
2505
 
2506
- #: includes/fields/class-acf-field-taxonomy.php:767
2507
  msgid "Multiple Values"
2508
  msgstr "Useita arvoja"
2509
 
2510
- #: includes/fields/class-acf-field-taxonomy.php:769
2511
  msgid "Multi Select"
2512
  msgstr "Valitse useita"
2513
 
2514
- #: includes/fields/class-acf-field-taxonomy.php:771
2515
  msgid "Single Value"
2516
  msgstr "Yksi arvo"
2517
 
2518
- #: includes/fields/class-acf-field-taxonomy.php:772
2519
  msgid "Radio Buttons"
2520
  msgstr "Valintanappi"
2521
 
2522
- #: includes/fields/class-acf-field-taxonomy.php:796
2523
  msgid "Create Terms"
2524
  msgstr "Uusien ehtojen luominen"
2525
 
2526
- #: includes/fields/class-acf-field-taxonomy.php:797
2527
  msgid "Allow new terms to be created whilst editing"
2528
  msgstr "Salli uusien ehtojen luominen samalla kun muokataan"
2529
 
2530
- #: includes/fields/class-acf-field-taxonomy.php:806
2531
  msgid "Save Terms"
2532
  msgstr "Tallenna ehdot"
2533
 
2534
- #: includes/fields/class-acf-field-taxonomy.php:807
2535
  msgid "Connect selected terms to the post"
2536
  msgstr "Yhdistä valitut ehdot artikkeliin"
2537
 
2538
- #: includes/fields/class-acf-field-taxonomy.php:816
2539
  msgid "Load Terms"
2540
  msgstr "Lataa ehdot"
2541
 
2542
- #: includes/fields/class-acf-field-taxonomy.php:817
2543
  msgid "Load value from posts terms"
2544
  msgstr "Lataa arvo artikkelin ehdoista"
2545
 
2546
- #: includes/fields/class-acf-field-taxonomy.php:831
2547
  msgid "Term Object"
2548
  msgstr "Ehto"
2549
 
2550
- #: includes/fields/class-acf-field-taxonomy.php:832
2551
  msgid "Term ID"
2552
  msgstr "Ehdon ID"
2553
 
2554
- #: includes/fields/class-acf-field-taxonomy.php:882
2555
  #, php-format
2556
  msgid "User unable to add new %s"
2557
  msgstr "Käyttäjä ei voi lisätä uutta %s"
2558
 
2559
- #: includes/fields/class-acf-field-taxonomy.php:892
2560
  #, php-format
2561
  msgid "%s already exists"
2562
  msgstr "%s on jo olemassa"
2563
 
2564
- #: includes/fields/class-acf-field-taxonomy.php:924
2565
  #, php-format
2566
  msgid "%s added"
2567
  msgstr "%s lisättiin"
2568
 
2569
- #: includes/fields/class-acf-field-taxonomy.php:970
2570
- #: includes/locations/class-acf-location-user-form.php:73
2571
  msgid "Add"
2572
  msgstr "Lisää"
2573
 
@@ -2586,7 +2426,7 @@ msgid "Leave blank for no limit"
2586
  msgstr "Jos et halua rajoittaa, jätä tyhjäksi"
2587
 
2588
  #: includes/fields/class-acf-field-text.php:157
2589
- #: includes/fields/class-acf-field-textarea.php:215
2590
  #, php-format
2591
  msgid "Value must not exceed %d characters"
2592
  msgstr "Arvo ei saa olla suurempi kuin %d merkkiä"
@@ -2639,7 +2479,7 @@ msgstr "Url"
2639
  msgid "Value must be a valid URL"
2640
  msgstr "Arvon täytyy olla validi URL"
2641
 
2642
- #: includes/fields/class-acf-field-user.php:20 includes/locations.php:95
2643
  msgid "User"
2644
  msgstr "Käyttäjä"
2645
 
@@ -2671,51 +2511,55 @@ msgstr "Virhe ladattaessa kenttää."
2671
  msgid "Wysiwyg Editor"
2672
  msgstr "Wysiwyg-editori"
2673
 
2674
- #: includes/fields/class-acf-field-wysiwyg.php:330
2675
  msgid "Visual"
2676
  msgstr "Graafinen"
2677
 
2678
- #: includes/fields/class-acf-field-wysiwyg.php:331
2679
  msgctxt "Name for the Text editor tab (formerly HTML)"
2680
  msgid "Text"
2681
  msgstr "Teksti"
2682
 
2683
- #: includes/fields/class-acf-field-wysiwyg.php:337
2684
  msgid "Click to initialize TinyMCE"
2685
  msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin"
2686
 
2687
- #: includes/fields/class-acf-field-wysiwyg.php:390
2688
  msgid "Tabs"
2689
  msgstr "Välilehdet"
2690
 
2691
- #: includes/fields/class-acf-field-wysiwyg.php:395
2692
  msgid "Visual & Text"
2693
  msgstr "Graafinen ja teksti"
2694
 
2695
- #: includes/fields/class-acf-field-wysiwyg.php:396
2696
  msgid "Visual Only"
2697
  msgstr "Vain graafinen"
2698
 
2699
- #: includes/fields/class-acf-field-wysiwyg.php:397
2700
  msgid "Text Only"
2701
  msgstr "Vain teksti"
2702
 
2703
- #: includes/fields/class-acf-field-wysiwyg.php:404
2704
  msgid "Toolbar"
2705
  msgstr "Työkalupalkki"
2706
 
2707
- #: includes/fields/class-acf-field-wysiwyg.php:419
2708
  msgid "Show Media Upload Buttons?"
2709
  msgstr "Näytä Lisää media -painike?"
2710
 
2711
- #: includes/fields/class-acf-field-wysiwyg.php:429
2712
  msgid "Delay initialization?"
2713
  msgstr "Viivytä alustusta?"
2714
 
2715
- #: includes/fields/class-acf-field-wysiwyg.php:430
2716
  msgid "TinyMCE will not be initialized until field is clicked"
2717
  msgstr "TinyMCE:tä ei alusteta ennen kuin kenttää napsautetaan"
2718
 
 
 
 
 
2719
  #: includes/forms/form-front.php:55
2720
  msgid "Validate Email"
2721
  msgstr "Validoi sähköposti"
@@ -2738,145 +2582,151 @@ msgstr "Roskapostia havaittu"
2738
  msgid "<strong>ERROR</strong>: %s"
2739
  msgstr "<strong>Virhe</strong>: %s"
2740
 
2741
- #: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
 
 
 
 
 
 
 
 
 
 
2742
  msgid "Post"
2743
  msgstr "Artikkeli"
2744
 
2745
- #: includes/locations.php:94 includes/locations/class-acf-location-page.php:27
2746
  msgid "Page"
2747
  msgstr "Sivu"
2748
 
2749
- #: includes/locations.php:96
2750
  msgid "Forms"
2751
  msgstr "Lomakkeet"
2752
 
2753
- #: includes/locations.php:243
2754
  msgid "is equal to"
2755
  msgstr "on sama kuin"
2756
 
2757
- #: includes/locations.php:244
2758
  msgid "is not equal to"
2759
  msgstr "ei ole sama kuin"
2760
 
2761
- #: includes/locations/class-acf-location-attachment.php:27
2762
  msgid "Attachment"
2763
  msgstr "Liite"
2764
 
2765
- #: includes/locations/class-acf-location-attachment.php:109
2766
  #, php-format
2767
  msgid "All %s formats"
2768
  msgstr "Kaikki %s muodot"
2769
 
2770
- #: includes/locations/class-acf-location-comment.php:27
2771
  msgid "Comment"
2772
  msgstr "Kommentti"
2773
 
2774
- #: includes/locations/class-acf-location-current-user-role.php:27
2775
  msgid "Current User Role"
2776
  msgstr "Nykyinen käyttäjärooli"
2777
 
2778
- #: includes/locations/class-acf-location-current-user-role.php:110
2779
  msgid "Super Admin"
2780
  msgstr "Super pääkäyttäjä"
2781
 
2782
- #: includes/locations/class-acf-location-current-user.php:27
2783
  msgid "Current User"
2784
  msgstr "Nykyinen käyttäjä"
2785
 
2786
- #: includes/locations/class-acf-location-current-user.php:97
2787
  msgid "Logged in"
2788
  msgstr "Kirjautunut sisään"
2789
 
2790
- #: includes/locations/class-acf-location-current-user.php:98
2791
  msgid "Viewing front end"
2792
  msgstr "Käyttää front endiä"
2793
 
2794
- #: includes/locations/class-acf-location-current-user.php:99
2795
  msgid "Viewing back end"
2796
  msgstr "Käyttää back endiä"
2797
 
2798
- #: includes/locations/class-acf-location-nav-menu-item.php:27
2799
  msgid "Menu Item"
2800
  msgstr "Valikkokohde"
2801
 
2802
- #: includes/locations/class-acf-location-nav-menu.php:27
2803
  msgid "Menu"
2804
  msgstr "Valikko"
2805
 
2806
- #: includes/locations/class-acf-location-nav-menu.php:109
2807
  msgid "Menu Locations"
2808
  msgstr "Valikkosijainnit"
2809
 
2810
- #: includes/locations/class-acf-location-nav-menu.php:119
2811
- msgid "Menus"
2812
- msgstr "Valikot"
2813
-
2814
- #: includes/locations/class-acf-location-page-parent.php:27
2815
  msgid "Page Parent"
2816
  msgstr "Sivun vanhempi"
2817
 
2818
- #: includes/locations/class-acf-location-page-template.php:27
2819
  msgid "Page Template"
2820
  msgstr "Sivupohja"
2821
 
2822
- #: includes/locations/class-acf-location-page-template.php:87
2823
- #: includes/locations/class-acf-location-post-template.php:134
2824
  msgid "Default Template"
2825
  msgstr "Oletus sivupohja"
2826
 
2827
- #: includes/locations/class-acf-location-page-type.php:27
2828
  msgid "Page Type"
2829
  msgstr "Sivun tyyppi"
2830
 
2831
- #: includes/locations/class-acf-location-page-type.php:146
2832
  msgid "Front Page"
2833
  msgstr "Etusivu"
2834
 
2835
- #: includes/locations/class-acf-location-page-type.php:147
2836
  msgid "Posts Page"
2837
  msgstr "Artikkelit -sivu"
2838
 
2839
- #: includes/locations/class-acf-location-page-type.php:148
2840
  msgid "Top Level Page (no parent)"
2841
  msgstr "Ylätason sivu (sivu, jolla ei ole vanhempia)"
2842
 
2843
- #: includes/locations/class-acf-location-page-type.php:149
2844
  msgid "Parent Page (has children)"
2845
  msgstr "Vanhempi sivu (sivu, jolla on alasivuja)"
2846
 
2847
- #: includes/locations/class-acf-location-page-type.php:150
2848
  msgid "Child Page (has parent)"
2849
  msgstr "Lapsisivu (sivu, jolla on vanhempi)"
2850
 
2851
- #: includes/locations/class-acf-location-post-category.php:27
2852
  msgid "Post Category"
2853
  msgstr "Artikkelin kategoria"
2854
 
2855
- #: includes/locations/class-acf-location-post-format.php:27
2856
  msgid "Post Format"
2857
  msgstr "Artikkelin muoto"
2858
 
2859
- #: includes/locations/class-acf-location-post-status.php:27
2860
  msgid "Post Status"
2861
  msgstr "Artikkelin tila"
2862
 
2863
- #: includes/locations/class-acf-location-post-taxonomy.php:27
2864
  msgid "Post Taxonomy"
2865
  msgstr "Artikkelin taksonomia"
2866
 
2867
- #: includes/locations/class-acf-location-post-template.php:27
2868
  msgid "Post Template"
2869
  msgstr "Sivupohja"
2870
 
2871
- #: includes/locations/class-acf-location-user-form.php:22
2872
  msgid "User Form"
2873
  msgstr "Käyttäjälomake"
2874
 
2875
- #: includes/locations/class-acf-location-user-form.php:74
2876
  msgid "Add / Edit"
2877
  msgstr "Lisää / Muokkaa"
2878
 
2879
- #: includes/locations/class-acf-location-user-form.php:75
2880
  msgid "Register"
2881
  msgstr "Rekisteröi"
2882
 
@@ -2884,10 +2734,36 @@ msgstr "Rekisteröi"
2884
  msgid "User Role"
2885
  msgstr "Käyttäjän rooli"
2886
 
2887
- #: includes/locations/class-acf-location-widget.php:27
2888
  msgid "Widget"
2889
  msgstr "Vimpain"
2890
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2891
  #: includes/validation.php:364
2892
  #, php-format
2893
  msgid "%s value is required"
@@ -2915,7 +2791,7 @@ msgstr ""
2915
  msgid "<b>Error</b>. Could not connect to update server"
2916
  msgstr "<b>Virhe</b>. Ei voitu yhdistää päivityspalvelimeen"
2917
 
2918
- #: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13
2919
  msgid "Updates"
2920
  msgstr "Päivitykset"
2921
 
@@ -2927,19 +2803,19 @@ msgstr ""
2927
  "<b>Virhe</b>. Päivityspakettia ei voitu todentaa. Tarkista uudelleen tai "
2928
  "poista käytöstä ACF PRO -lisenssi ja aktivoi se uudelleen."
2929
 
2930
- #: pro/admin/views/html-settings-updates.php:7
2931
  msgid "Deactivate License"
2932
  msgstr "Poista lisenssi käytöstä"
2933
 
2934
- #: pro/admin/views/html-settings-updates.php:7
2935
  msgid "Activate License"
2936
  msgstr "Aktivoi lisenssi"
2937
 
2938
- #: pro/admin/views/html-settings-updates.php:17
2939
  msgid "License Information"
2940
  msgstr "Näytä lisenssitiedot"
2941
 
2942
- #: pro/admin/views/html-settings-updates.php:20
2943
  #, php-format
2944
  msgid ""
2945
  "To unlock updates, please enter your license key below. If you don't have a "
@@ -2950,60 +2826,68 @@ msgstr ""
2950
  "ole lisenssiavainta, katso <a href=\"%s\" target=\"_blank\">tarkemmat tiedot "
2951
  "ja hinnoittelu</a>."
2952
 
2953
- #: pro/admin/views/html-settings-updates.php:29
2954
  msgid "License Key"
2955
  msgstr "Lisenssiavain"
2956
 
2957
- #: pro/admin/views/html-settings-updates.php:61
2958
  msgid "Update Information"
2959
  msgstr "Päivitä tiedot"
2960
 
2961
- #: pro/admin/views/html-settings-updates.php:68
2962
  msgid "Current Version"
2963
  msgstr "Nykyinen versio"
2964
 
2965
- #: pro/admin/views/html-settings-updates.php:76
2966
  msgid "Latest Version"
2967
  msgstr "Uusin versio"
2968
 
2969
- #: pro/admin/views/html-settings-updates.php:84
2970
  msgid "Update Available"
2971
  msgstr "Päivitys saatavilla"
2972
 
2973
- #: pro/admin/views/html-settings-updates.php:92
2974
  msgid "Update Plugin"
2975
  msgstr "Päivitä lisäosa"
2976
 
2977
- #: pro/admin/views/html-settings-updates.php:94
2978
  msgid "Please enter your license key above to unlock updates"
2979
  msgstr "Syötä lisenssiavain saadaksesi päivityksiä"
2980
 
2981
- #: pro/admin/views/html-settings-updates.php:100
2982
  msgid "Check Again"
2983
  msgstr "Tarkista uudelleen"
2984
 
2985
- #: pro/admin/views/html-settings-updates.php:117
 
 
 
 
2986
  msgid "Upgrade Notice"
2987
  msgstr "Päivitys Ilmoitus"
2988
 
2989
- #: pro/blocks.php:36
2990
  msgid "Block type name is required."
2991
  msgstr "Lohkotyypin nimi on pakollinen."
2992
 
2993
- #: pro/blocks.php:43
2994
  #, php-format
2995
  msgid "Block type \"%s\" is already registered."
2996
  msgstr "Lohkotyyppi \"%s\" on jo rekisteröity."
2997
 
2998
- #: pro/blocks.php:393
2999
  msgid "Switch to Edit"
3000
  msgstr "Siirry muokkaamaan"
3001
 
3002
- #: pro/blocks.php:394
3003
  msgid "Switch to Preview"
3004
  msgstr "Siirry esikatseluun"
3005
 
3006
- #: pro/blocks.php:397
 
 
 
 
3007
  #, php-format
3008
  msgid "%s settings"
3009
  msgstr "%s asetusta"
@@ -3013,66 +2897,66 @@ msgctxt "noun"
3013
  msgid "Clone"
3014
  msgstr "Klooni"
3015
 
3016
- #: pro/fields/class-acf-field-clone.php:812
3017
  msgid "Select one or more fields you wish to clone"
3018
  msgstr "Valitse kentät, jotka haluat kopioida"
3019
 
3020
- #: pro/fields/class-acf-field-clone.php:829
3021
  msgid "Display"
3022
  msgstr "Näytä"
3023
 
3024
- #: pro/fields/class-acf-field-clone.php:830
3025
  msgid "Specify the style used to render the clone field"
3026
  msgstr "Määritä tyyli, jota käytetään kloonikentän luomisessa"
3027
 
3028
- #: pro/fields/class-acf-field-clone.php:835
3029
  msgid "Group (displays selected fields in a group within this field)"
3030
  msgstr "Ryhmä (valitut kentät näytetään ryhmänä tämän klooni-kentän sisällä)"
3031
 
3032
- #: pro/fields/class-acf-field-clone.php:836
3033
  msgid "Seamless (replaces this field with selected fields)"
3034
  msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)"
3035
 
3036
- #: pro/fields/class-acf-field-clone.php:857
3037
  #, php-format
3038
  msgid "Labels will be displayed as %s"
3039
  msgstr "Kentän nimiö näytetään seuraavassa muodossa: %s"
3040
 
3041
- #: pro/fields/class-acf-field-clone.php:860
3042
  msgid "Prefix Field Labels"
3043
  msgstr "Kentän nimiön etuliite"
3044
 
3045
- #: pro/fields/class-acf-field-clone.php:871
3046
  #, php-format
3047
  msgid "Values will be saved as %s"
3048
  msgstr "Arvot tallennetaan muodossa: %s"
3049
 
3050
- #: pro/fields/class-acf-field-clone.php:874
3051
  msgid "Prefix Field Names"
3052
  msgstr "Kentän nimen etuliite"
3053
 
3054
- #: pro/fields/class-acf-field-clone.php:992
3055
  msgid "Unknown field"
3056
  msgstr "Tuntematon kenttä"
3057
 
3058
- #: pro/fields/class-acf-field-clone.php:1031
3059
  msgid "Unknown field group"
3060
  msgstr "Tuntematon kenttäryhmä"
3061
 
3062
- #: pro/fields/class-acf-field-clone.php:1035
3063
  #, php-format
3064
  msgid "All fields from %s field group"
3065
  msgstr "Kaikki kentät kenttäryhmästä %s"
3066
 
3067
  #: pro/fields/class-acf-field-flexible-content.php:31
3068
  #: pro/fields/class-acf-field-repeater.php:193
3069
- #: pro/fields/class-acf-field-repeater.php:468
3070
  msgid "Add Row"
3071
  msgstr "Lisää rivi"
3072
 
3073
  #: pro/fields/class-acf-field-flexible-content.php:73
3074
- #: pro/fields/class-acf-field-flexible-content.php:924
3075
- #: pro/fields/class-acf-field-flexible-content.php:1006
3076
  msgid "layout"
3077
  msgid_plural "layouts"
3078
  msgstr[0] "asettelu"
@@ -3083,8 +2967,8 @@ msgid "layouts"
3083
  msgstr "asettelua"
3084
 
3085
  #: pro/fields/class-acf-field-flexible-content.php:77
3086
- #: pro/fields/class-acf-field-flexible-content.php:923
3087
- #: pro/fields/class-acf-field-flexible-content.php:1005
3088
  msgid "This field requires at least {min} {label} {identifier}"
3089
  msgstr "Tämä kenttä vaatii vähintään {min} {label} {identifier}"
3090
 
@@ -3114,52 +2998,56 @@ msgid "Add layout"
3114
  msgstr "Lisää asettelu"
3115
 
3116
  #: pro/fields/class-acf-field-flexible-content.php:414
 
 
 
 
3117
  msgid "Remove layout"
3118
  msgstr "Poista asettelu"
3119
 
3120
- #: pro/fields/class-acf-field-flexible-content.php:415
3121
  #: pro/fields/class-acf-field-repeater.php:301
3122
  msgid "Click to toggle"
3123
  msgstr "Piilota/Näytä"
3124
 
3125
- #: pro/fields/class-acf-field-flexible-content.php:555
3126
  msgid "Reorder Layout"
3127
  msgstr "Järjestä asettelu uudelleen"
3128
 
3129
- #: pro/fields/class-acf-field-flexible-content.php:555
3130
  msgid "Reorder"
3131
  msgstr "Järjestä uudelleen"
3132
 
3133
- #: pro/fields/class-acf-field-flexible-content.php:556
3134
  msgid "Delete Layout"
3135
  msgstr "Poista asettelu"
3136
 
3137
- #: pro/fields/class-acf-field-flexible-content.php:557
3138
  msgid "Duplicate Layout"
3139
  msgstr "Monista asettelu"
3140
 
3141
- #: pro/fields/class-acf-field-flexible-content.php:558
3142
  msgid "Add New Layout"
3143
  msgstr "Lisää uusi asettelu"
3144
 
3145
- #: pro/fields/class-acf-field-flexible-content.php:629
3146
  msgid "Min"
3147
  msgstr "Min"
3148
 
3149
- #: pro/fields/class-acf-field-flexible-content.php:642
3150
  msgid "Max"
3151
  msgstr "Max"
3152
 
3153
- #: pro/fields/class-acf-field-flexible-content.php:669
3154
- #: pro/fields/class-acf-field-repeater.php:464
3155
  msgid "Button Label"
3156
  msgstr "Painikkeen teksti"
3157
 
3158
- #: pro/fields/class-acf-field-flexible-content.php:678
3159
  msgid "Minimum Layouts"
3160
  msgstr "Asetteluita vähintään"
3161
 
3162
- #: pro/fields/class-acf-field-flexible-content.php:687
3163
  msgid "Maximum Layouts"
3164
  msgstr "Asetteluita enintään"
3165
 
@@ -3236,7 +3124,7 @@ msgid "Maximum Selection"
3236
  msgstr "Suurin määrä kuvia"
3237
 
3238
  #: pro/fields/class-acf-field-repeater.php:65
3239
- #: pro/fields/class-acf-field-repeater.php:661
3240
  msgid "Minimum rows reached ({min} rows)"
3241
  msgstr "Pienin määrä rivejä saavutettu ({min} riviä)"
3242
 
@@ -3249,33 +3137,37 @@ msgid "Add row"
3249
  msgstr "Lisää rivi"
3250
 
3251
  #: pro/fields/class-acf-field-repeater.php:339
 
 
 
 
3252
  msgid "Remove row"
3253
  msgstr "Poista rivi"
3254
 
3255
- #: pro/fields/class-acf-field-repeater.php:417
3256
  msgid "Collapsed"
3257
  msgstr "Piilotettu"
3258
 
3259
- #: pro/fields/class-acf-field-repeater.php:418
3260
  msgid "Select a sub field to show when row is collapsed"
3261
  msgstr "Valitse alakenttä, joka näytetään, kun rivi on piilotettu"
3262
 
3263
- #: pro/fields/class-acf-field-repeater.php:428
3264
  msgid "Minimum Rows"
3265
  msgstr "Pienin määrä rivejä"
3266
 
3267
- #: pro/fields/class-acf-field-repeater.php:438
3268
  msgid "Maximum Rows"
3269
  msgstr "Suurin määrä rivejä"
3270
 
3271
- #: pro/locations/class-acf-location-options-page.php:79
 
 
 
 
3272
  msgid "No options pages exist"
3273
  msgstr "Yhtään asetussivua ei ole olemassa"
3274
 
3275
- #: pro/options-page.php:51
3276
- msgid "Options"
3277
- msgstr "Asetukset"
3278
-
3279
  #: pro/options-page.php:82
3280
  msgid "Options Updated"
3281
  msgstr "Asetukset päivitetty"
@@ -3291,35 +3183,316 @@ msgstr ""
3291
  "\"%s\">Päivitykset</a> -sivulle. Jos sinulla ei ole lisenssiavainta, katso "
3292
  "<a href=\"%s\">tarkemmat tiedot ja hinnoittelu</a>."
3293
 
3294
- #: tests/basic/test-blocks.php:46
3295
- msgid "Normal"
3296
- msgstr "Normaali"
3297
-
3298
- #: tests/basic/test-blocks.php:47
3299
- msgid "Fancy"
3300
- msgstr "Hieno"
3301
-
3302
  #. Plugin URI of the plugin/theme
3303
  #. Author URI of the plugin/theme
3304
  msgid "https://www.advancedcustomfields.com"
3305
  msgstr "http://www.advancedcustomfields.com"
3306
 
 
 
 
 
 
3307
  #. Author of the plugin/theme
3308
  msgid "Elliot Condon"
3309
  msgstr "Elliot Condon"
3310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3311
  #~ msgid "Parent fields"
3312
  #~ msgstr "Yläkentät"
3313
 
3314
  #~ msgid "Sibling fields"
3315
  #~ msgstr "Sisaruskentät"
3316
 
3317
- #, php-format
3318
- #~ msgid "%s field group duplicated."
3319
- #~ msgid_plural "%s field groups duplicated."
3320
- #~ msgstr[0] "%s kenttäryhmä monistettu."
3321
- #~ msgstr[1] "%s kenttäryhmät monistettu."
3322
-
3323
  #, php-format
3324
  #~ msgid "%s field group synchronised."
3325
  #~ msgid_plural "%s field groups synchronised."
@@ -3426,9 +3599,6 @@ msgstr "Elliot Condon"
3426
  #~ msgid "Generate export code"
3427
  #~ msgstr "Generoi vientikoodi"
3428
 
3429
- #~ msgid "Import"
3430
- #~ msgstr "Tuo"
3431
-
3432
  #~ msgid "Locating"
3433
  #~ msgstr "Paikannus"
3434
 
@@ -3485,14 +3655,6 @@ msgstr "Elliot Condon"
3485
  #~ msgid "http://www.elliotcondon.com/"
3486
  #~ msgstr "http://www.elliotcondon.com/"
3487
 
3488
- #~ msgid "Disabled"
3489
- #~ msgstr "Poistettu käytöstä"
3490
-
3491
- #~ msgid "Disabled <span class=\"count\">(%s)</span>"
3492
- #~ msgid_plural "Disabled <span class=\"count\">(%s)</span>"
3493
- #~ msgstr[0] "Poistettu käytöstä <span class=”count”>(%s)</span>"
3494
- #~ msgstr[1] "Poistettu käytöstä <span class=”count”>(%s)</span>"
3495
-
3496
  #~ msgid "Getting Started"
3497
  #~ msgstr "Miten pääset alkuun"
3498
 
@@ -3541,9 +3703,6 @@ msgstr "Elliot Condon"
3541
  #~ msgid "See what's new in"
3542
  #~ msgstr "Katso mitä uutta löytyy"
3543
 
3544
- #~ msgid "version"
3545
- #~ msgstr "versiosta"
3546
-
3547
  #~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
3548
  #~ msgstr "<b>Onnistui!</b> Tuontityökalu lisäsi %s kenttäryhmään: %s"
3549
 
2
  msgstr ""
3
  "Project-Id-Version: Advanced Custom Fields Pro\n"
4
  "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
5
+ "POT-Creation-Date: 2020-10-29 10:30+0930\n"
6
+ "PO-Revision-Date: 2021-01-17 11:10+0200\n"
7
  "Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
8
  "Language-Team: \n"
9
  "Language: fi\n"
26
  msgid "Advanced Custom Fields"
27
  msgstr "Advanced Custom Fields"
28
 
29
+ #: acf.php:348 includes/admin/admin.php:49
30
  msgid "Field Groups"
31
  msgstr "Kenttäryhmät"
32
 
33
+ #: acf.php:349
34
  msgid "Field Group"
35
  msgstr "Kenttäryhmä"
36
 
37
+ #: acf.php:350 acf.php:382 includes/admin/admin.php:50
38
+ #: pro/fields/class-acf-field-flexible-content.php:559
39
  msgid "Add New"
40
  msgstr "Lisää uusi"
41
 
42
+ #: acf.php:351
43
  msgid "Add New Field Group"
44
  msgstr "Lisää uusi kenttäryhmä"
45
 
46
+ #: acf.php:352
47
  msgid "Edit Field Group"
48
  msgstr "Muokkaa kenttäryhmää"
49
 
50
+ #: acf.php:353
51
  msgid "New Field Group"
52
  msgstr "Lisää uusi kenttäryhmä"
53
 
54
+ #: acf.php:354
55
  msgid "View Field Group"
56
  msgstr "Katso kenttäryhmää"
57
 
58
+ #: acf.php:355
59
  msgid "Search Field Groups"
60
  msgstr "Etsi kenttäryhmiä"
61
 
62
+ #: acf.php:356
63
  msgid "No Field Groups found"
64
  msgstr "Kenttäryhmiä ei löytynyt"
65
 
66
+ #: acf.php:357
67
  msgid "No Field Groups found in Trash"
68
  msgstr "Kenttäryhmiä ei löytynyt roskakorista"
69
 
70
+ #: acf.php:380 includes/admin/admin-field-group.php:232
71
+ #: includes/admin/admin-field-groups.php:262
72
+ #: pro/fields/class-acf-field-clone.php:808
73
  msgid "Fields"
74
  msgstr "Kentät"
75
 
76
+ #: acf.php:381
77
  msgid "Field"
78
  msgstr "Kenttä"
79
 
80
+ #: acf.php:383
81
  msgid "Add New Field"
82
  msgstr "Lisää uusi kenttä"
83
 
84
+ #: acf.php:384
85
  msgid "Edit Field"
86
  msgstr "Muokkaa kenttää"
87
 
88
+ #: acf.php:385 includes/admin/views/field-group-fields.php:41
89
  msgid "New Field"
90
  msgstr "Uusi kenttä"
91
 
92
+ #: acf.php:386
93
  msgid "View Field"
94
  msgstr "Näytä kenttä"
95
 
96
+ #: acf.php:387
97
  msgid "Search Fields"
98
  msgstr "Etsi kenttiä"
99
 
100
+ #: acf.php:388
101
  msgid "No Fields found"
102
  msgstr "Ei löytynyt kenttiä"
103
 
104
+ #: acf.php:389
105
  msgid "No Fields found in Trash"
106
  msgstr "Kenttiä ei löytynyt roskakorista"
107
 
108
+ #: acf.php:424 includes/admin/admin-field-groups.php:226
109
+ msgctxt "post status"
110
+ msgid "Disabled"
111
+ msgstr "Pois käytöstä"
112
 
113
+ #: acf.php:429
114
  #, php-format
115
+ msgid "Disabled <span class=\"count\">(%s)</span>"
116
+ msgid_plural "Disabled <span class=\"count\">(%s)</span>"
117
+ msgstr[0] "Poistettu käytöstä <span class=”count”>(%s)</span>"
118
+ msgstr[1] "Poistettu käytöstä <span class=”count”>(%s)</span>"
119
 
120
  #: includes/acf-field-functions.php:831
121
  #: includes/admin/admin-field-group.php:178
122
  msgid "(no label)"
123
  msgstr "(ei nimiötä)"
124
 
125
+ #: includes/acf-field-group-functions.php:820
126
  #: includes/admin/admin-field-group.php:180
127
  msgid "copy"
128
  msgstr "kopio"
129
 
130
+ #: includes/acf-wp-functions.php:41
131
+ msgid "Posts"
132
+ msgstr "Artikkelit"
133
+
134
+ #: includes/acf-wp-functions.php:54
135
+ msgid "Taxonomies"
136
+ msgstr "Taksonomiat"
137
+
138
+ #: includes/acf-wp-functions.php:59
139
+ msgid "Attachments"
140
+ msgstr "Liitteet"
141
+
142
+ #: includes/acf-wp-functions.php:63
143
+ #: includes/admin/views/field-group-options.php:112
144
+ msgid "Comments"
145
+ msgstr "Kommentit"
146
+
147
+ #: includes/acf-wp-functions.php:67
148
+ msgid "Widgets"
149
+ msgstr "Vimpaimet"
150
+
151
+ #: includes/acf-wp-functions.php:71
152
+ #: includes/locations/class-acf-location-nav-menu.php:87
153
+ msgid "Menus"
154
+ msgstr "Valikot"
155
+
156
+ #: includes/acf-wp-functions.php:75
157
+ msgid "Menu items"
158
+ msgstr "Valikkokohteet"
159
+
160
+ #: includes/acf-wp-functions.php:79
161
+ msgid "Users"
162
+ msgstr "Käyttäjät"
163
+
164
+ #: includes/acf-wp-functions.php:83 pro/options-page.php:51
165
+ msgid "Options"
166
+ msgstr "Asetukset"
167
+
168
+ #: includes/acf-wp-functions.php:87
169
+ msgid "Blocks"
170
+ msgstr "Lohkot"
171
+
172
  #: includes/admin/admin-field-group.php:86
173
  #: includes/admin/admin-field-group.php:87
174
  #: includes/admin/admin-field-group.php:89
236
  #: includes/admin/views/field-group-field-conditional-logic.php:151
237
  #: includes/admin/views/field-group-locations.php:29
238
  #: includes/admin/views/html-location-group.php:3
239
+ #: includes/api/api-helpers.php:3646
240
  msgid "or"
241
  msgstr "tai"
242
 
244
  msgid "Null"
245
  msgstr "Tyhjä"
246
 
247
+ #: includes/admin/admin-field-group.php:185
248
+ msgid "Has any value"
249
+ msgstr "On mitään arvoa"
250
+
251
+ #: includes/admin/admin-field-group.php:186
252
+ msgid "Has no value"
253
+ msgstr "Ei ole arvoa"
254
+
255
+ #: includes/admin/admin-field-group.php:187
256
+ msgid "Value is equal to"
257
+ msgstr "Arvo on sama kuin"
258
+
259
+ #: includes/admin/admin-field-group.php:188
260
+ msgid "Value is not equal to"
261
+ msgstr "Arvo ei ole sama kuin"
262
+
263
+ #: includes/admin/admin-field-group.php:189
264
+ msgid "Value matches pattern"
265
+ msgstr "Arvo vastaa kaavaa"
266
+
267
+ #: includes/admin/admin-field-group.php:190
268
+ msgid "Value contains"
269
+ msgstr "Arvo sisältää"
270
+
271
+ #: includes/admin/admin-field-group.php:191
272
+ msgid "Value is greater than"
273
+ msgstr "Arvo on suurempi kuin"
274
+
275
+ #: includes/admin/admin-field-group.php:192
276
+ msgid "Value is less than"
277
+ msgstr "Arvo on pienempi kuin"
278
+
279
+ #: includes/admin/admin-field-group.php:193
280
+ msgid "Selection is greater than"
281
+ msgstr "Valinta on suurempi kuin"
282
+
283
+ #: includes/admin/admin-field-group.php:194
284
+ msgid "Selection is less than"
285
+ msgstr "Valinta on pienempi kuin"
286
+
287
+ #: includes/admin/admin-field-group.php:233
288
+ #: includes/admin/admin-field-groups.php:261
289
  msgid "Location"
290
  msgstr "Sijainti"
291
 
292
+ #: includes/admin/admin-field-group.php:234
293
  #: includes/admin/tools/class-acf-admin-tool-export.php:295
294
  msgid "Settings"
295
  msgstr "Asetukset"
296
 
297
+ #: includes/admin/admin-field-group.php:384
298
  msgid "Field Keys"
299
  msgstr "Kenttäavaimet"
300
 
301
+ #: includes/admin/admin-field-group.php:414
302
  #: includes/admin/views/field-group-options.php:9
303
  msgid "Active"
304
  msgstr "Käytössä"
305
 
306
+ #: includes/admin/admin-field-group.php:414
307
+ msgid "Inactive"
308
+ msgstr "Ei käytössä"
309
+
310
+ #: includes/admin/admin-field-group.php:775
311
  msgid "Move Complete."
312
  msgstr "Siirto valmis."
313
 
314
+ #: includes/admin/admin-field-group.php:776
315
  #, php-format
316
  msgid "The %s field can now be found in the %s field group"
317
  msgstr "Kenttä %s löytyy nyt kenttäryhmästä %s"
318
 
319
+ #: includes/admin/admin-field-group.php:777
320
  msgid "Close Window"
321
  msgstr "Sulje ikkuna"
322
 
323
+ #: includes/admin/admin-field-group.php:818
324
  msgid "Please select the destination for this field"
325
  msgstr "Valitse kohde kentälle"
326
 
327
+ #: includes/admin/admin-field-group.php:825
328
  msgid "Move Field"
329
  msgstr "Siirrä kenttä"
330
 
331
+ #: includes/admin/admin-field-groups.php:114
332
  #, php-format
333
  msgid "Active <span class=\"count\">(%s)</span>"
334
  msgid_plural "Active <span class=\"count\">(%s)</span>"
335
  msgstr[0] "Käytössä <span class=\"count\">(%s)</span>"
336
  msgstr[1] "Käytössä <span class=\"count\">(%s)</span>"
337
 
338
+ #: includes/admin/admin-field-groups.php:193
339
+ msgid "Review local JSON changes"
340
+ msgstr "Tarkista paikalliset JSON-muutokset"
 
 
 
 
 
 
 
 
 
 
341
 
342
+ #: includes/admin/admin-field-groups.php:194
343
+ msgid "Loading diff"
344
+ msgstr "Ladataan diff"
 
345
 
346
+ #: includes/admin/admin-field-groups.php:195
347
+ #: includes/admin/admin-field-groups.php:529
348
+ msgid "Sync changes"
349
+ msgstr "Synkronoi muutokset"
350
 
351
+ #: includes/admin/admin-field-groups.php:259
352
  #: includes/admin/views/field-group-options.php:96
353
  #: includes/admin/views/html-admin-page-upgrade-network.php:38
354
  #: includes/admin/views/html-admin-page-upgrade-network.php:49
356
  msgid "Description"
357
  msgstr "Kuvaus"
358
 
359
+ #: includes/admin/admin-field-groups.php:260
360
+ #: includes/admin/views/field-group-fields.php:7
361
+ msgid "Key"
362
+ msgstr "Avain"
363
 
364
+ #: includes/admin/admin-field-groups.php:265
365
+ msgid "Local JSON"
366
+ msgstr "Paikallinen JSON"
 
 
367
 
368
+ #: includes/admin/admin-field-groups.php:415
369
+ msgid "Various"
370
+ msgstr "Sekalaisia"
 
371
 
372
+ #: includes/admin/admin-field-groups.php:437
373
  #, php-format
374
+ msgid "Located in theme: %s"
375
+ msgstr "Teemalla: %s"
376
 
377
+ #: includes/admin/admin-field-groups.php:441
378
+ #, php-format
379
+ msgid "Located in plugin: %s"
380
+ msgstr "Lisäosalla: %s"
381
 
382
+ #: includes/admin/admin-field-groups.php:445
383
+ #, php-format
384
+ msgid "Located in: %s"
385
+ msgstr "Sijaitsee: %s"
386
 
387
+ #: includes/admin/admin-field-groups.php:465
388
+ #: includes/admin/admin-field-groups.php:683
389
+ msgid "Sync available"
390
+ msgstr "Synkronointi saatavissa"
391
 
392
+ #: includes/admin/admin-field-groups.php:468
393
+ msgid "Sync"
394
+ msgstr "Synkronointi"
395
 
396
+ #: includes/admin/admin-field-groups.php:469
397
+ msgid "Review changes"
398
+ msgstr "Tarkista muutokset"
 
399
 
400
+ #: includes/admin/admin-field-groups.php:473
401
+ msgid "Import"
402
+ msgstr "Tuo"
 
403
 
404
+ #: includes/admin/admin-field-groups.php:477
405
+ msgid "Saved"
406
+ msgstr "Tallennettu"
407
+
408
+ #: includes/admin/admin-field-groups.php:480
409
+ msgid "Awaiting save"
410
+ msgstr "Odottaa tallentamista"
411
+
412
+ #: includes/admin/admin-field-groups.php:501
413
  msgid "Duplicate this item"
414
  msgstr "Monista tämä kohde"
415
 
416
+ #: includes/admin/admin-field-groups.php:501
417
+ #: includes/admin/admin-field-groups.php:521
418
  #: includes/admin/views/field-group-field.php:46
419
+ #: pro/fields/class-acf-field-flexible-content.php:558
420
  msgid "Duplicate"
421
  msgstr "Monista"
422
 
423
+ #: includes/admin/admin-field-groups.php:551
424
+ #, php-format
425
+ msgid "Field group duplicated."
426
+ msgid_plural "%s field groups duplicated."
427
+ msgstr[0] "Kenttäryhmä monistettu."
428
+ msgstr[1] "%s kenttäryhmää monistettu."
429
 
430
+ #: includes/admin/admin-field-groups.php:608
431
+ #, php-format
432
+ msgid "Field group synchronised."
433
+ msgid_plural "%s field groups synchronised."
434
+ msgstr[0] "Kenttäryhmä synkronoitu."
435
+ msgstr[1] "%s kenttäryhmää synkronoitu."
436
+
437
+ #: includes/admin/admin-field-groups.php:794
438
  #, php-format
439
  msgid "Select %s"
440
  msgstr "Valitse %s"
441
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  #: includes/admin/admin-tools.php:116
443
  #: includes/admin/views/html-admin-tools.php:21
444
  msgid "Tools"
455
  msgid "Review sites & upgrade"
456
  msgstr "Tarkastele sivuja & päivitä"
457
 
458
+ #: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110
459
  msgid "Custom Fields"
460
  msgstr "Lisäkentät"
461
 
462
+ #: includes/admin/admin.php:128 includes/admin/admin.php:130
463
+ msgid "Overview"
464
+ msgstr "Yleiskatsaus"
465
+
466
+ #: includes/admin/admin.php:131
467
+ msgid ""
468
+ "The Advanced Custom Fields plugin provides a visual form builder to "
469
+ "customize WordPress edit screens with extra fields, and an intuitive API to "
470
+ "display custom field values in any theme template file."
471
+ msgstr ""
472
+ "Advanced Custom Fields -lisäosa tarjoaa visuaalisen lomaketyökalun "
473
+ "WordPressin muokkausnäyttöjen mukauttamiseksi ylimääräisillä kentillä ja "
474
+ "intuitiivisen API:n mukautettujen kenttäarvojen näyttämiseksi missä tahansa "
475
+ "teeman mallitiedostossa."
476
 
477
+ #: includes/admin/admin.php:133
478
+ #, php-format
479
+ msgid ""
480
+ "Before creating your first Field Group, we recommend first reading our <a "
481
+ "href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
482
+ "yourself with the plugin's philosophy and best practises."
483
+ msgstr ""
484
+ "Ennen kuin luot ensimmäisen kenttäryhmäsi, suosittelemme lukemaan <a href="
485
+ "\"%s\" target=\"_blank\">aloitusoppaamme</a>, jossa tutustutaan lisäosan "
486
+ "filosofiaan ja parhaisiin käytäntöihin."
487
+
488
+ #: includes/admin/admin.php:136
489
+ msgid ""
490
+ "Please use the Help & Support tab to get in touch should you find yourself "
491
+ "requiring assistance."
492
+ msgstr ""
493
+ "Ota yhteyttä Ohjeet & tukipalvelut -välilehdessä, jos huomaat tarvitsevasi "
494
+ "apua."
495
+
496
+ #: includes/admin/admin.php:145 includes/admin/admin.php:147
497
+ msgid "Help & Support"
498
+ msgstr "Ohjeet & tukipalvelut"
499
+
500
+ #: includes/admin/admin.php:148
501
+ msgid ""
502
+ "We are fanatical about support, and want you to get the best out of your "
503
+ "website with ACF. If you run into any difficulties, there are several places "
504
+ "you can find help:"
505
+ msgstr ""
506
+ "Olemme fanaattisia tuen suhteen ja haluamme, että saat kaiken mahdollisen "
507
+ "irti verkkosivustostasi ACF:n avulla. Jos kohtaat ongelmia, apua löytyy "
508
+ "useista paikoista:"
509
+
510
+ #: includes/admin/admin.php:151
511
+ #, php-format
512
+ msgid ""
513
+ "<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
514
+ "documentation contains references and guides for most situations you may "
515
+ "encounter."
516
+ msgstr ""
517
+ "<a href=\"%s\" target=\"_blank\">Dokumentaatio</a>. Laaja dokumentaatiomme "
518
+ "sisältää viittauksia ja oppaita useimpiin kohtaamiisi tilanteisiin."
519
+
520
+ #: includes/admin/admin.php:155
521
+ #, php-format
522
+ msgid ""
523
+ "<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
524
+ "friendly community on our Community Forums who may be able to help you "
525
+ "figure out the ‘how-tos’ of the ACF world."
526
+ msgstr ""
527
+ "<a href=\"%s\" target=\"_blank\">Keskustelut</a>. Yhteisöfoorumeillamme on "
528
+ "aktiivinen ja ystävällinen yhteisö, joka voi ehkä auttaa sinua selvittämään "
529
+ "ACF-maailman ihmeellisyyksiä."
530
+
531
+ #: includes/admin/admin.php:159
532
+ #, php-format
533
+ msgid ""
534
+ "<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
535
+ "our Help Desk will assist with your more in depth, technical challenges."
536
+ msgstr ""
537
+ "<a href=\"%s\" target=\"_blank\">Tukipalvelu</a>. Tukipalvelumme "
538
+ "ammattilaiset auttavat syvällisemmissä teknisissä haasteissasi."
539
+
540
+ #: includes/admin/admin.php:168
541
+ msgid "Information"
542
+ msgstr "Tiedot"
543
+
544
+ #: includes/admin/admin.php:169
545
+ #, php-format
546
+ msgid "Version %s"
547
+ msgstr "Versio %s"
548
+
549
+ #: includes/admin/admin.php:170
550
+ msgid "View details"
551
+ msgstr "Näytä tarkemmat tiedot"
552
+
553
+ #: includes/admin/admin.php:171
554
+ msgid "Visit website"
555
+ msgstr "Siirry verkkosivuille"
556
+
557
+ #: includes/admin/admin.php:200
558
+ #: includes/admin/views/field-group-field-conditional-logic.php:138
559
+ #: includes/admin/views/html-location-rule.php:86
560
+ msgid "and"
561
+ msgstr "ja"
562
 
563
  #: includes/admin/tools/class-acf-admin-tool-export.php:33
564
  msgid "Export Field Groups"
646
  msgstr "Tuo tiedosto"
647
 
648
  #: includes/admin/tools/class-acf-admin-tool-import.php:85
649
+ #: includes/fields/class-acf-field-file.php:169
650
  msgid "No file selected"
651
  msgstr "Ei valittua tiedostoa"
652
 
677
  msgid "Show this field if"
678
  msgstr "Näytä tämä kenttä, jos"
679
 
 
 
 
 
 
680
  #: includes/admin/views/field-group-field-conditional-logic.php:153
681
  #: includes/admin/views/field-group-locations.php:31
682
  msgid "Add rule group"
694
  msgstr "Muokkaa kenttää"
695
 
696
  #: includes/admin/views/field-group-field.php:45
697
+ #: includes/fields/class-acf-field-file.php:151
698
+ #: includes/fields/class-acf-field-image.php:131
699
  #: includes/fields/class-acf-field-link.php:139
700
  #: pro/fields/class-acf-field-gallery.php:337
701
  msgid "Edit"
718
  msgstr "Poista kenttä"
719
 
720
  #: includes/admin/views/field-group-field.php:48
721
+ #: pro/fields/class-acf-field-flexible-content.php:557
722
  msgid "Delete"
723
  msgstr "Poista"
724
 
783
  #: includes/fields/class-acf-field-checkbox.php:420
784
  #: includes/fields/class-acf-field-radio.php:311
785
  #: includes/fields/class-acf-field-select.php:433
786
+ #: pro/fields/class-acf-field-flexible-content.php:583
787
  msgid "Label"
788
  msgstr "Nimiö"
789
 
790
  #: includes/admin/views/field-group-fields.php:6
791
+ #: includes/fields/class-acf-field-taxonomy.php:926
792
+ #: pro/fields/class-acf-field-flexible-content.php:597
793
  msgid "Name"
794
  msgstr "Nimi"
795
 
 
 
 
 
796
  #: includes/admin/views/field-group-fields.php:8
797
  msgid "Type"
798
  msgstr "Tyyppi"
903
  msgid "Discussion"
904
  msgstr "Keskustelu"
905
 
 
 
 
 
906
  #: includes/admin/views/field-group-options.php:113
907
  msgid "Revisions"
908
  msgstr "Tarkastettu"
924
  msgstr "Sivun attribuutit"
925
 
926
  #: includes/admin/views/field-group-options.php:118
927
+ #: includes/fields/class-acf-field-relationship.php:601
928
  msgid "Featured Image"
929
  msgstr "Artikkelikuva"
930
 
1059
  msgstr "Galleria"
1060
 
1061
  #: includes/admin/views/html-notice-upgrade.php:11
1062
+ #: pro/locations/class-acf-location-options-page.php:20
1063
  msgid "Options Page"
1064
  msgstr "Asetukset-sivu"
1065
 
1086
  "Varmista myös, että kaikki premium-lisäosat (%s) on päivitetty uusimpaan "
1087
  "versioon."
1088
 
1089
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:34
1090
+ msgid "Invalid field group parameter(s)."
1091
+ msgstr "Virheelliset kenttäryhmän parametrit."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1092
 
1093
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:41
1094
+ msgid "Invalid field group ID."
1095
+ msgstr "Virheellinen kenttäryhmän tunnus."
 
 
 
 
 
 
 
 
 
 
1096
 
1097
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:51
1098
+ msgid "Sorry, this field group is unavailable for diff comparison."
 
 
 
1099
  msgstr ""
1100
+ "Tämä kenttäryhmä ei valitettavasti ole käytettävissä diff-vertailua varten."
 
 
 
 
 
 
 
 
 
 
1101
 
1102
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:57
 
 
 
 
 
 
 
1103
  #, php-format
1104
+ msgid "Last updated: %s"
1105
+ msgstr "Päivitetty viimeksi: %s"
 
 
 
 
 
 
 
1106
 
1107
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:62
1108
+ msgid "Original field group"
1109
+ msgstr "Alkuperäinen kenttäryhmä"
1110
 
1111
+ #: includes/ajax/class-acf-ajax-local-json-diff.php:66
1112
+ msgid "JSON field group (newer)"
1113
+ msgstr "JSON-kenttäryhmä (uusi)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1114
 
1115
  #: includes/ajax/class-acf-ajax.php:157
1116
  msgid "Invalid nonce."
1117
  msgstr "Virheellinen nonce."
1118
 
1119
+ #: includes/api/api-helpers.php:844
1120
  msgid "Thumbnail"
1121
  msgstr "Pienoiskuva"
1122
 
1123
+ #: includes/api/api-helpers.php:845
1124
  msgid "Medium"
1125
  msgstr "Keskikokoinen"
1126
 
1127
+ #: includes/api/api-helpers.php:846
1128
  msgid "Large"
1129
  msgstr "Iso"
1130
 
1131
+ #: includes/api/api-helpers.php:895
1132
  msgid "Full Size"
1133
  msgstr "Täysikokoinen"
1134
 
1135
+ #: includes/api/api-helpers.php:1632 includes/api/api-term.php:145
1136
+ #: pro/fields/class-acf-field-clone.php:993
1137
  msgid "(no title)"
1138
  msgstr "(ei otsikkoa)"
1139
 
1140
+ #: includes/api/api-helpers.php:3567
1141
  #, php-format
1142
  msgid "Image width must be at least %dpx."
1143
  msgstr "Kuvan leveys täytyy olla vähintään %dpx."
1144
 
1145
+ #: includes/api/api-helpers.php:3572
1146
  #, php-format
1147
  msgid "Image width must not exceed %dpx."
1148
  msgstr "Kuvan leveys ei saa ylittää %dpx."
1149
 
1150
+ #: includes/api/api-helpers.php:3588
1151
  #, php-format
1152
  msgid "Image height must be at least %dpx."
1153
  msgstr "Kuvan korkeus täytyy olla vähintään %dpx."
1154
 
1155
+ #: includes/api/api-helpers.php:3593
1156
  #, php-format
1157
  msgid "Image height must not exceed %dpx."
1158
  msgstr "Kuvan korkeus ei saa ylittää %dpx."
1159
 
1160
+ #: includes/api/api-helpers.php:3611
1161
  #, php-format
1162
  msgid "File size must be at least %s."
1163
  msgstr "Tiedoston koko täytyy olla vähintään %s."
1164
 
1165
+ #: includes/api/api-helpers.php:3616
1166
  #, php-format
1167
+ msgid "File size must not exceed %s."
1168
  msgstr "Tiedoston koko ei saa ylittää %s."
1169
 
1170
+ #: includes/api/api-helpers.php:3650
1171
  #, php-format
1172
  msgid "File type must be %s."
1173
  msgstr "Tiedoston koko täytyy olla %s."
1174
 
1175
+ #: includes/assets.php:343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1176
  msgid "Are you sure?"
1177
  msgstr "Oletko varma?"
1178
 
1179
+ #: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79
1180
  #: includes/fields/class-acf-field-true_false.php:159
1181
+ #: pro/admin/views/html-settings-updates.php:86
1182
  msgid "Yes"
1183
  msgstr "Kyllä"
1184
 
1185
+ #: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80
1186
  #: includes/fields/class-acf-field-true_false.php:174
1187
+ #: pro/admin/views/html-settings-updates.php:96
1188
  msgid "No"
1189
  msgstr "Ei"
1190
 
1191
+ #: includes/assets.php:346 includes/fields/class-acf-field-file.php:153
1192
+ #: includes/fields/class-acf-field-image.php:133
1193
  #: includes/fields/class-acf-field-link.php:140
1194
  #: pro/fields/class-acf-field-gallery.php:338
1195
  #: pro/fields/class-acf-field-gallery.php:478
1196
  msgid "Remove"
1197
  msgstr "Poista"
1198
 
1199
+ #: includes/assets.php:347
1200
  msgid "Cancel"
1201
  msgstr "Peruuta"
1202
 
1203
+ #: includes/assets.php:355
1204
+ msgid "The changes you made will be lost if you navigate away from this page"
1205
+ msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
 
1207
+ #: includes/assets.php:358
1208
+ msgid "Validation successful"
1209
+ msgstr "Kenttäryhmän validointi onnistui"
1210
 
1211
+ #: includes/assets.php:359 includes/validation.php:285
1212
+ #: includes/validation.php:296
1213
+ msgid "Validation failed"
1214
+ msgstr "Lisäkentän validointi epäonnistui"
1215
 
1216
+ #: includes/assets.php:360
1217
+ msgid "1 field requires attention"
1218
+ msgstr "Yksi kenttä vaatii huomiota"
1219
 
1220
+ #: includes/assets.php:361
1221
+ #, php-format
1222
+ msgid "%d fields require attention"
1223
+ msgstr "%d kenttää vaativat huomiota"
1224
 
1225
+ #: includes/assets.php:364 includes/forms/form-comment.php:166
1226
  #: pro/admin/admin-options-page.php:325
1227
  msgid "Edit field group"
1228
  msgstr "Muokkaa kenttäryhmää"
1259
  #: includes/fields/class-acf-field-checkbox.php:389
1260
  #: includes/fields/class-acf-field-group.php:474
1261
  #: includes/fields/class-acf-field-radio.php:290
1262
+ #: pro/fields/class-acf-field-clone.php:840
1263
+ #: pro/fields/class-acf-field-flexible-content.php:554
1264
+ #: pro/fields/class-acf-field-flexible-content.php:603
1265
+ #: pro/fields/class-acf-field-repeater.php:449
1266
  msgid "Layout"
1267
  msgstr "Asettelu"
1268
 
1331
  msgstr "koira_istuu : Koira istuu"
1332
 
1333
  #: includes/fields/class-acf-field-button-group.php:158
1334
+ #: includes/fields/class-acf-field-page_link.php:506
1335
  #: includes/fields/class-acf-field-post_object.php:411
1336
  #: includes/fields/class-acf-field-radio.php:244
1337
  #: includes/fields/class-acf-field-select.php:382
1338
+ #: includes/fields/class-acf-field-taxonomy.php:771
1339
  #: includes/fields/class-acf-field-user.php:63
1340
  msgid "Allow Null?"
1341
  msgstr "Salli tyhjä?"
1342
 
1343
  #: includes/fields/class-acf-field-button-group.php:168
1344
  #: includes/fields/class-acf-field-checkbox.php:380
1345
+ #: includes/fields/class-acf-field-color_picker.php:127
1346
  #: includes/fields/class-acf-field-email.php:118
1347
  #: includes/fields/class-acf-field-number.php:127
1348
  #: includes/fields/class-acf-field-radio.php:281
1352
  #: includes/fields/class-acf-field-textarea.php:102
1353
  #: includes/fields/class-acf-field-true_false.php:135
1354
  #: includes/fields/class-acf-field-url.php:100
1355
+ #: includes/fields/class-acf-field-wysiwyg.php:371
1356
  msgid "Default Value"
1357
  msgstr "Oletusarvo"
1358
 
1364
  #: includes/fields/class-acf-field-text.php:96
1365
  #: includes/fields/class-acf-field-textarea.php:103
1366
  #: includes/fields/class-acf-field-url.php:101
1367
+ #: includes/fields/class-acf-field-wysiwyg.php:372
1368
  msgid "Appears when creating a new post"
1369
  msgstr "Kentän oletusarvo"
1370
 
1382
 
1383
  #: includes/fields/class-acf-field-button-group.php:191
1384
  #: includes/fields/class-acf-field-checkbox.php:413
1385
+ #: includes/fields/class-acf-field-file.php:214
1386
  #: includes/fields/class-acf-field-link.php:166
1387
  #: includes/fields/class-acf-field-radio.php:304
1388
+ #: includes/fields/class-acf-field-taxonomy.php:816
1389
  msgid "Return Value"
1390
  msgstr "Palauta arvo"
1391
 
1392
  #: includes/fields/class-acf-field-button-group.php:192
1393
  #: includes/fields/class-acf-field-checkbox.php:414
1394
+ #: includes/fields/class-acf-field-file.php:215
1395
  #: includes/fields/class-acf-field-link.php:167
1396
  #: includes/fields/class-acf-field-radio.php:305
1397
  msgid "Specify the returned value on front end"
1412
  msgstr "Molemmat (palautusmuoto on tällöin taulukko)"
1413
 
1414
  #: includes/fields/class-acf-field-checkbox.php:25
1415
+ #: includes/fields/class-acf-field-taxonomy.php:758
1416
  msgid "Checkbox"
1417
  msgstr "Valintaruutu"
1418
 
1458
  msgid "Color Picker"
1459
  msgstr "Värinvalitsin"
1460
 
1461
+ #: includes/fields/class-acf-field-color_picker.php:64
1462
  msgid "Clear"
1463
  msgstr "Tyhjennä"
1464
 
1465
+ #: includes/fields/class-acf-field-color_picker.php:65
1466
+ msgid "Clear color"
1467
+ msgstr "Tyhjennä väri"
1468
+
1469
+ #: includes/fields/class-acf-field-color_picker.php:66
1470
  msgid "Default"
1471
  msgstr "Oletus"
1472
 
1473
+ #: includes/fields/class-acf-field-color_picker.php:67
1474
+ msgid "Select default color"
1475
+ msgstr "Valitse oletusväri"
1476
+
1477
+ #: includes/fields/class-acf-field-color_picker.php:68
1478
  msgid "Select Color"
1479
  msgstr "Valitse väri"
1480
 
1481
+ #: includes/fields/class-acf-field-color_picker.php:69
1482
+ msgid "Color value"
1483
+ msgstr "Väriarvo"
1484
 
1485
  #: includes/fields/class-acf-field-date_picker.php:25
1486
  msgid "Date Picker"
1542
 
1543
  #: includes/fields/class-acf-field-date_picker.php:208
1544
  #: includes/fields/class-acf-field-date_time_picker.php:200
1545
+ #: includes/fields/class-acf-field-image.php:194
1546
  #: includes/fields/class-acf-field-post_object.php:431
1547
+ #: includes/fields/class-acf-field-relationship.php:628
1548
  #: includes/fields/class-acf-field-select.php:427
1549
  #: includes/fields/class-acf-field-time_picker.php:124
1550
  #: includes/fields/class-acf-field-user.php:79
1713
  msgstr "Tiedoston nimi"
1714
 
1715
  #: includes/fields/class-acf-field-file.php:145
1716
+ #: includes/fields/class-acf-field-file.php:247
1717
+ #: includes/fields/class-acf-field-file.php:258
1718
+ #: includes/fields/class-acf-field-image.php:254
1719
+ #: includes/fields/class-acf-field-image.php:283
1720
  #: pro/fields/class-acf-field-gallery.php:642
1721
  #: pro/fields/class-acf-field-gallery.php:671
1722
  msgid "File size"
1723
  msgstr "Tiedoston koko"
1724
 
1725
+ #: includes/fields/class-acf-field-file.php:169
1726
  msgid "Add File"
1727
  msgstr "Lisää tiedosto"
1728
 
1729
+ #: includes/fields/class-acf-field-file.php:220
1730
  msgid "File Array"
1731
  msgstr "Tiedosto"
1732
 
1733
+ #: includes/fields/class-acf-field-file.php:221
1734
  msgid "File URL"
1735
  msgstr "Tiedoston URL"
1736
 
1737
+ #: includes/fields/class-acf-field-file.php:222
1738
  msgid "File ID"
1739
  msgstr "Tiedoston ID"
1740
 
1741
+ #: includes/fields/class-acf-field-file.php:229
1742
+ #: includes/fields/class-acf-field-image.php:219
1743
  #: pro/fields/class-acf-field-gallery.php:592
1744
  msgid "Library"
1745
  msgstr "Kirjasto"
1746
 
1747
+ #: includes/fields/class-acf-field-file.php:230
1748
+ #: includes/fields/class-acf-field-image.php:220
1749
  #: pro/fields/class-acf-field-gallery.php:593
1750
  msgid "Limit the media library choice"
1751
  msgstr "Rajoita valintaa mediakirjastosta"
1752
 
1753
+ #: includes/fields/class-acf-field-file.php:235
1754
+ #: includes/fields/class-acf-field-image.php:225
1755
+ #: includes/locations/class-acf-location-attachment.php:71
1756
+ #: includes/locations/class-acf-location-comment.php:59
1757
+ #: includes/locations/class-acf-location-nav-menu.php:72
1758
+ #: includes/locations/class-acf-location-taxonomy.php:61
1759
+ #: includes/locations/class-acf-location-user-form.php:65
1760
+ #: includes/locations/class-acf-location-user-role.php:76
1761
+ #: includes/locations/class-acf-location-widget.php:63
1762
  #: pro/fields/class-acf-field-gallery.php:598
1763
+ #: pro/locations/class-acf-location-block.php:64
1764
  msgid "All"
1765
  msgstr "Kaikki"
1766
 
1767
+ #: includes/fields/class-acf-field-file.php:236
1768
+ #: includes/fields/class-acf-field-image.php:226
1769
  #: pro/fields/class-acf-field-gallery.php:599
1770
  msgid "Uploaded to post"
1771
  msgstr "Vain tähän artikkeliin ladatut"
1772
 
1773
+ #: includes/fields/class-acf-field-file.php:243
1774
+ #: includes/fields/class-acf-field-image.php:233
1775
  #: pro/fields/class-acf-field-gallery.php:621
1776
  msgid "Minimum"
1777
  msgstr "Minimiarvo(t)"
1778
 
1779
+ #: includes/fields/class-acf-field-file.php:244
1780
+ #: includes/fields/class-acf-field-file.php:255
1781
  msgid "Restrict which files can be uploaded"
1782
  msgstr "Määritä tiedoston koko"
1783
 
1784
+ #: includes/fields/class-acf-field-file.php:254
1785
+ #: includes/fields/class-acf-field-image.php:262
1786
  #: pro/fields/class-acf-field-gallery.php:650
1787
  msgid "Maximum"
1788
  msgstr "Maksimiarvo(t)"
1789
 
1790
+ #: includes/fields/class-acf-field-file.php:265
1791
+ #: includes/fields/class-acf-field-image.php:291
1792
  #: pro/fields/class-acf-field-gallery.php:678
1793
  msgid "Allowed file types"
1794
  msgstr "Sallitut tiedostotyypit"
1795
 
1796
+ #: includes/fields/class-acf-field-file.php:266
1797
+ #: includes/fields/class-acf-field-image.php:292
1798
  #: pro/fields/class-acf-field-gallery.php:679
1799
  msgid "Comma separated list. Leave blank for all types"
1800
  msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit"
1807
  msgid "Sorry, this browser does not support geolocation"
1808
  msgstr "Pahoittelut, tämä selain ei tue paikannusta"
1809
 
1810
+ #: includes/fields/class-acf-field-google-map.php:146
1811
+ #: includes/fields/class-acf-field-relationship.php:587
1812
+ msgid "Search"
1813
+ msgstr "Etsi"
1814
+
1815
  #: includes/fields/class-acf-field-google-map.php:147
1816
  msgid "Clear location"
1817
  msgstr "Tyhjennä paikkatieto"
1843
  msgstr "Aseta oletuszoomaus"
1844
 
1845
  #: includes/fields/class-acf-field-google-map.php:214
1846
+ #: includes/fields/class-acf-field-image.php:245
1847
+ #: includes/fields/class-acf-field-image.php:274
1848
  #: includes/fields/class-acf-field-oembed.php:268
1849
  #: pro/fields/class-acf-field-gallery.php:633
1850
  #: pro/fields/class-acf-field-gallery.php:662
1860
  msgstr "Ryhmä"
1861
 
1862
  #: includes/fields/class-acf-field-group.php:459
1863
+ #: pro/fields/class-acf-field-repeater.php:385
1864
  msgid "Sub Fields"
1865
  msgstr "Alakentät"
1866
 
1867
  #: includes/fields/class-acf-field-group.php:475
1868
+ #: pro/fields/class-acf-field-clone.php:841
1869
  msgid "Specify the style used to render the selected fields"
1870
  msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
1871
 
1872
  #: includes/fields/class-acf-field-group.php:480
1873
+ #: pro/fields/class-acf-field-clone.php:846
1874
+ #: pro/fields/class-acf-field-flexible-content.php:615
1875
+ #: pro/fields/class-acf-field-repeater.php:457
1876
+ #: pro/locations/class-acf-location-block.php:20
1877
  msgid "Block"
1878
  msgstr "Lohko"
1879
 
1880
  #: includes/fields/class-acf-field-group.php:481
1881
+ #: pro/fields/class-acf-field-clone.php:847
1882
+ #: pro/fields/class-acf-field-flexible-content.php:614
1883
+ #: pro/fields/class-acf-field-repeater.php:456
1884
  msgid "Table"
1885
  msgstr "Taulukko"
1886
 
1887
  #: includes/fields/class-acf-field-group.php:482
1888
+ #: pro/fields/class-acf-field-clone.php:848
1889
+ #: pro/fields/class-acf-field-flexible-content.php:616
1890
+ #: pro/fields/class-acf-field-repeater.php:458
1891
  msgid "Row"
1892
  msgstr "Rivi"
1893
 
1907
  msgid "Update Image"
1908
  msgstr "Päivitä kuva"
1909
 
1910
+ #: includes/fields/class-acf-field-image.php:66 includes/media.php:61
1911
+ msgid "All images"
1912
+ msgstr "Kaikki kuvat"
1913
+
1914
+ #: includes/fields/class-acf-field-image.php:148
1915
  msgid "No image selected"
1916
  msgstr "Ei kuvia valittu"
1917
 
1918
+ #: includes/fields/class-acf-field-image.php:148
1919
  msgid "Add Image"
1920
  msgstr "Lisää kuva"
1921
 
1922
+ #: includes/fields/class-acf-field-image.php:200
1923
  #: pro/fields/class-acf-field-gallery.php:563
1924
  msgid "Image Array"
1925
  msgstr "Kuva"
1926
 
1927
+ #: includes/fields/class-acf-field-image.php:201
1928
  #: pro/fields/class-acf-field-gallery.php:564
1929
  msgid "Image URL"
1930
  msgstr "Kuvan URL"
1931
 
1932
+ #: includes/fields/class-acf-field-image.php:202
1933
  #: pro/fields/class-acf-field-gallery.php:565
1934
  msgid "Image ID"
1935
  msgstr "Kuvan ID"
1936
 
1937
+ #: includes/fields/class-acf-field-image.php:209
1938
  #: pro/fields/class-acf-field-gallery.php:571
1939
  msgid "Preview Size"
1940
  msgstr "Esikatselukuvan koko"
1941
 
1942
+ #: includes/fields/class-acf-field-image.php:234
1943
+ #: includes/fields/class-acf-field-image.php:263
1944
  #: pro/fields/class-acf-field-gallery.php:622
1945
  #: pro/fields/class-acf-field-gallery.php:651
1946
  msgid "Restrict which images can be uploaded"
1947
  msgstr "Määritä millaisia kuvia voidaan ladata"
1948
 
1949
+ #: includes/fields/class-acf-field-image.php:237
1950
+ #: includes/fields/class-acf-field-image.php:266
1951
  #: includes/fields/class-acf-field-oembed.php:257
1952
  #: pro/fields/class-acf-field-gallery.php:625
1953
  #: pro/fields/class-acf-field-gallery.php:654
2063
  msgid "Page Link"
2064
  msgstr "Sivun URL"
2065
 
2066
+ #: includes/fields/class-acf-field-page_link.php:170
2067
  msgid "Archives"
2068
  msgstr "Arkistot"
2069
 
2070
+ #: includes/fields/class-acf-field-page_link.php:262
2071
  #: includes/fields/class-acf-field-post_object.php:267
2072
+ #: includes/fields/class-acf-field-taxonomy.php:948
2073
  msgid "Parent"
2074
  msgstr "Vanhempi"
2075
 
2076
+ #: includes/fields/class-acf-field-page_link.php:478
2077
  #: includes/fields/class-acf-field-post_object.php:383
2078
+ #: includes/fields/class-acf-field-relationship.php:554
2079
  msgid "Filter by Post Type"
2080
  msgstr "Suodata tyypin mukaan"
2081
 
2082
+ #: includes/fields/class-acf-field-page_link.php:486
2083
  #: includes/fields/class-acf-field-post_object.php:391
2084
+ #: includes/fields/class-acf-field-relationship.php:562
2085
  msgid "All post types"
2086
  msgstr "Kaikki artikkelityypit"
2087
 
2088
+ #: includes/fields/class-acf-field-page_link.php:492
2089
  #: includes/fields/class-acf-field-post_object.php:397
2090
+ #: includes/fields/class-acf-field-relationship.php:568
2091
  msgid "Filter by Taxonomy"
2092
  msgstr "Suodata taksonomian mukaan"
2093
 
2094
+ #: includes/fields/class-acf-field-page_link.php:500
2095
  #: includes/fields/class-acf-field-post_object.php:405
2096
+ #: includes/fields/class-acf-field-relationship.php:576
2097
  msgid "All taxonomies"
2098
  msgstr "Kaikki taksonomiat"
2099
 
2100
+ #: includes/fields/class-acf-field-page_link.php:516
2101
  msgid "Allow Archives URLs"
2102
  msgstr "Salli arkistojen URL-osoitteita"
2103
 
2104
+ #: includes/fields/class-acf-field-page_link.php:526
2105
  #: includes/fields/class-acf-field-post_object.php:421
2106
  #: includes/fields/class-acf-field-select.php:392
2107
  #: includes/fields/class-acf-field-user.php:71
2114
 
2115
  #: includes/fields/class-acf-field-post_object.php:25
2116
  #: includes/fields/class-acf-field-post_object.php:436
2117
+ #: includes/fields/class-acf-field-relationship.php:633
2118
  msgid "Post Object"
2119
  msgstr "Artikkeliolio"
2120
 
2121
  #: includes/fields/class-acf-field-post_object.php:437
2122
+ #: includes/fields/class-acf-field-relationship.php:634
2123
  msgid "Post ID"
2124
  msgstr "Artikkelin ID"
2125
 
2171
  msgid "Select taxonomy"
2172
  msgstr "Valitse taksonomia"
2173
 
2174
+ #: includes/fields/class-acf-field-relationship.php:476
2175
  msgid "Search..."
2176
  msgstr "Etsi..."
2177
 
2178
+ #: includes/fields/class-acf-field-relationship.php:582
2179
  msgid "Filters"
2180
  msgstr "Suodattimet"
2181
 
2182
+ #: includes/fields/class-acf-field-relationship.php:588
2183
+ #: includes/locations/class-acf-location-post-type.php:20
2184
  msgid "Post Type"
2185
  msgstr "Artikkelityyppi"
2186
 
2187
+ #: includes/fields/class-acf-field-relationship.php:589
2188
  #: includes/fields/class-acf-field-taxonomy.php:28
2189
+ #: includes/fields/class-acf-field-taxonomy.php:741
2190
+ #: includes/locations/class-acf-location-taxonomy.php:20
2191
  msgid "Taxonomy"
2192
  msgstr "Taksonomia"
2193
 
2194
+ #: includes/fields/class-acf-field-relationship.php:596
2195
  msgid "Elements"
2196
  msgstr "Elementit"
2197
 
2198
+ #: includes/fields/class-acf-field-relationship.php:597
2199
  msgid "Selected elements will be displayed in each result"
2200
  msgstr "Valitut elementit näytetään jokaisessa tuloksessa"
2201
 
2202
+ #: includes/fields/class-acf-field-relationship.php:608
2203
  msgid "Minimum posts"
2204
  msgstr "Vähimmäismäärä artikkeleita"
2205
 
2206
+ #: includes/fields/class-acf-field-relationship.php:617
2207
  msgid "Maximum posts"
2208
  msgstr "Maksimimäärä artikkeleita"
2209
 
2210
+ #: includes/fields/class-acf-field-relationship.php:721
2211
  #: pro/fields/class-acf-field-gallery.php:779
2212
  #, php-format
2213
  msgid "%s requires at least %s selection"
2216
  msgstr[1] "%s vaatii vähintään %s valintaa"
2217
 
2218
  #: includes/fields/class-acf-field-select.php:25
2219
+ #: includes/fields/class-acf-field-taxonomy.php:763
2220
  msgctxt "noun"
2221
  msgid "Select"
2222
  msgstr "Valintalista"
2287
  msgid "Loading failed"
2288
  msgstr "Lataus epäonnistui"
2289
 
2290
+ #: includes/fields/class-acf-field-select.php:259 includes/media.php:54
2291
+ msgctxt "verb"
2292
+ msgid "Select"
2293
+ msgstr "Valitse"
2294
+
2295
  #: includes/fields/class-acf-field-select.php:402
2296
  #: includes/fields/class-acf-field-true_false.php:144
2297
  msgid "Stylised UI"
2325
  "Määritä päätepiste, johon edelliset välilehdet lopetetaan. Tämä aloittaa "
2326
  "uuden välilehtiryhmän."
2327
 
2328
+ #: includes/fields/class-acf-field-taxonomy.php:701
2329
  #, php-format
2330
  msgctxt "No terms"
2331
  msgid "No %s"
2332
  msgstr "Ei %s"
2333
 
2334
+ #: includes/fields/class-acf-field-taxonomy.php:742
2335
  msgid "Select the taxonomy to be displayed"
2336
  msgstr "Valitse taksonomia, joka näytetään"
2337
 
2338
+ #: includes/fields/class-acf-field-taxonomy.php:751
2339
  msgid "Appearance"
2340
  msgstr "Ulkoasu"
2341
 
2342
+ #: includes/fields/class-acf-field-taxonomy.php:752
2343
  msgid "Select the appearance of this field"
2344
  msgstr "Valitse ulkoasu tälle kenttälle"
2345
 
2346
+ #: includes/fields/class-acf-field-taxonomy.php:757
2347
  msgid "Multiple Values"
2348
  msgstr "Useita arvoja"
2349
 
2350
+ #: includes/fields/class-acf-field-taxonomy.php:759
2351
  msgid "Multi Select"
2352
  msgstr "Valitse useita"
2353
 
2354
+ #: includes/fields/class-acf-field-taxonomy.php:761
2355
  msgid "Single Value"
2356
  msgstr "Yksi arvo"
2357
 
2358
+ #: includes/fields/class-acf-field-taxonomy.php:762
2359
  msgid "Radio Buttons"
2360
  msgstr "Valintanappi"
2361
 
2362
+ #: includes/fields/class-acf-field-taxonomy.php:786
2363
  msgid "Create Terms"
2364
  msgstr "Uusien ehtojen luominen"
2365
 
2366
+ #: includes/fields/class-acf-field-taxonomy.php:787
2367
  msgid "Allow new terms to be created whilst editing"
2368
  msgstr "Salli uusien ehtojen luominen samalla kun muokataan"
2369
 
2370
+ #: includes/fields/class-acf-field-taxonomy.php:796
2371
  msgid "Save Terms"
2372
  msgstr "Tallenna ehdot"
2373
 
2374
+ #: includes/fields/class-acf-field-taxonomy.php:797
2375
  msgid "Connect selected terms to the post"
2376
  msgstr "Yhdistä valitut ehdot artikkeliin"
2377
 
2378
+ #: includes/fields/class-acf-field-taxonomy.php:806
2379
  msgid "Load Terms"
2380
  msgstr "Lataa ehdot"
2381
 
2382
+ #: includes/fields/class-acf-field-taxonomy.php:807
2383
  msgid "Load value from posts terms"
2384
  msgstr "Lataa arvo artikkelin ehdoista"
2385
 
2386
+ #: includes/fields/class-acf-field-taxonomy.php:821
2387
  msgid "Term Object"
2388
  msgstr "Ehto"
2389
 
2390
+ #: includes/fields/class-acf-field-taxonomy.php:822
2391
  msgid "Term ID"
2392
  msgstr "Ehdon ID"
2393
 
2394
+ #: includes/fields/class-acf-field-taxonomy.php:872
2395
  #, php-format
2396
  msgid "User unable to add new %s"
2397
  msgstr "Käyttäjä ei voi lisätä uutta %s"
2398
 
2399
+ #: includes/fields/class-acf-field-taxonomy.php:882
2400
  #, php-format
2401
  msgid "%s already exists"
2402
  msgstr "%s on jo olemassa"
2403
 
2404
+ #: includes/fields/class-acf-field-taxonomy.php:914
2405
  #, php-format
2406
  msgid "%s added"
2407
  msgstr "%s lisättiin"
2408
 
2409
+ #: includes/fields/class-acf-field-taxonomy.php:960
2410
+ #: includes/locations/class-acf-location-user-form.php:66
2411
  msgid "Add"
2412
  msgstr "Lisää"
2413
 
2426
  msgstr "Jos et halua rajoittaa, jätä tyhjäksi"
2427
 
2428
  #: includes/fields/class-acf-field-text.php:157
2429
+ #: includes/fields/class-acf-field-textarea.php:213
2430
  #, php-format
2431
  msgid "Value must not exceed %d characters"
2432
  msgstr "Arvo ei saa olla suurempi kuin %d merkkiä"
2479
  msgid "Value must be a valid URL"
2480
  msgstr "Arvon täytyy olla validi URL"
2481
 
2482
+ #: includes/fields/class-acf-field-user.php:20 includes/locations.php:99
2483
  msgid "User"
2484
  msgstr "Käyttäjä"
2485
 
2511
  msgid "Wysiwyg Editor"
2512
  msgstr "Wysiwyg-editori"
2513
 
2514
+ #: includes/fields/class-acf-field-wysiwyg.php:320
2515
  msgid "Visual"
2516
  msgstr "Graafinen"
2517
 
2518
+ #: includes/fields/class-acf-field-wysiwyg.php:321
2519
  msgctxt "Name for the Text editor tab (formerly HTML)"
2520
  msgid "Text"
2521
  msgstr "Teksti"
2522
 
2523
+ #: includes/fields/class-acf-field-wysiwyg.php:327
2524
  msgid "Click to initialize TinyMCE"
2525
  msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin"
2526
 
2527
+ #: includes/fields/class-acf-field-wysiwyg.php:380
2528
  msgid "Tabs"
2529
  msgstr "Välilehdet"
2530
 
2531
+ #: includes/fields/class-acf-field-wysiwyg.php:385
2532
  msgid "Visual & Text"
2533
  msgstr "Graafinen ja teksti"
2534
 
2535
+ #: includes/fields/class-acf-field-wysiwyg.php:386
2536
  msgid "Visual Only"
2537
  msgstr "Vain graafinen"
2538
 
2539
+ #: includes/fields/class-acf-field-wysiwyg.php:387
2540
  msgid "Text Only"
2541
  msgstr "Vain teksti"
2542
 
2543
+ #: includes/fields/class-acf-field-wysiwyg.php:394
2544
  msgid "Toolbar"
2545
  msgstr "Työkalupalkki"
2546
 
2547
+ #: includes/fields/class-acf-field-wysiwyg.php:409
2548
  msgid "Show Media Upload Buttons?"
2549
  msgstr "Näytä Lisää media -painike?"
2550
 
2551
+ #: includes/fields/class-acf-field-wysiwyg.php:419
2552
  msgid "Delay initialization?"
2553
  msgstr "Viivytä alustusta?"
2554
 
2555
+ #: includes/fields/class-acf-field-wysiwyg.php:420
2556
  msgid "TinyMCE will not be initialized until field is clicked"
2557
  msgstr "TinyMCE:tä ei alusteta ennen kuin kenttää napsautetaan"
2558
 
2559
+ #: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353
2560
+ msgid "Title"
2561
+ msgstr "Otsikko"
2562
+
2563
  #: includes/forms/form-front.php:55
2564
  msgid "Validate Email"
2565
  msgstr "Validoi sähköposti"
2582
  msgid "<strong>ERROR</strong>: %s"
2583
  msgstr "<strong>Virhe</strong>: %s"
2584
 
2585
+ #: includes/locations.php:23
2586
+ #, php-format
2587
+ msgid "Class \"%s\" does not exist."
2588
+ msgstr "Luokkaa \"%s\" ei ole."
2589
+
2590
+ #: includes/locations.php:34
2591
+ #, php-format
2592
+ msgid "Location type \"%s\" is already registered."
2593
+ msgstr "Sijaintityyppi \"%s\" on jo rekisteröity."
2594
+
2595
+ #: includes/locations.php:97 includes/locations/class-acf-location-post.php:20
2596
  msgid "Post"
2597
  msgstr "Artikkeli"
2598
 
2599
+ #: includes/locations.php:98 includes/locations/class-acf-location-page.php:20
2600
  msgid "Page"
2601
  msgstr "Sivu"
2602
 
2603
+ #: includes/locations.php:100
2604
  msgid "Forms"
2605
  msgstr "Lomakkeet"
2606
 
2607
+ #: includes/locations/abstract-acf-location.php:103
2608
  msgid "is equal to"
2609
  msgstr "on sama kuin"
2610
 
2611
+ #: includes/locations/abstract-acf-location.php:104
2612
  msgid "is not equal to"
2613
  msgstr "ei ole sama kuin"
2614
 
2615
+ #: includes/locations/class-acf-location-attachment.php:20
2616
  msgid "Attachment"
2617
  msgstr "Liite"
2618
 
2619
+ #: includes/locations/class-acf-location-attachment.php:82
2620
  #, php-format
2621
  msgid "All %s formats"
2622
  msgstr "Kaikki %s muodot"
2623
 
2624
+ #: includes/locations/class-acf-location-comment.php:20
2625
  msgid "Comment"
2626
  msgstr "Kommentti"
2627
 
2628
+ #: includes/locations/class-acf-location-current-user-role.php:20
2629
  msgid "Current User Role"
2630
  msgstr "Nykyinen käyttäjärooli"
2631
 
2632
+ #: includes/locations/class-acf-location-current-user-role.php:75
2633
  msgid "Super Admin"
2634
  msgstr "Super pääkäyttäjä"
2635
 
2636
+ #: includes/locations/class-acf-location-current-user.php:20
2637
  msgid "Current User"
2638
  msgstr "Nykyinen käyttäjä"
2639
 
2640
+ #: includes/locations/class-acf-location-current-user.php:69
2641
  msgid "Logged in"
2642
  msgstr "Kirjautunut sisään"
2643
 
2644
+ #: includes/locations/class-acf-location-current-user.php:70
2645
  msgid "Viewing front end"
2646
  msgstr "Käyttää front endiä"
2647
 
2648
+ #: includes/locations/class-acf-location-current-user.php:71
2649
  msgid "Viewing back end"
2650
  msgstr "Käyttää back endiä"
2651
 
2652
+ #: includes/locations/class-acf-location-nav-menu-item.php:20
2653
  msgid "Menu Item"
2654
  msgstr "Valikkokohde"
2655
 
2656
+ #: includes/locations/class-acf-location-nav-menu.php:20
2657
  msgid "Menu"
2658
  msgstr "Valikko"
2659
 
2660
+ #: includes/locations/class-acf-location-nav-menu.php:78
2661
  msgid "Menu Locations"
2662
  msgstr "Valikkosijainnit"
2663
 
2664
+ #: includes/locations/class-acf-location-page-parent.php:20
 
 
 
 
2665
  msgid "Page Parent"
2666
  msgstr "Sivun vanhempi"
2667
 
2668
+ #: includes/locations/class-acf-location-page-template.php:20
2669
  msgid "Page Template"
2670
  msgstr "Sivupohja"
2671
 
2672
+ #: includes/locations/class-acf-location-page-template.php:71
2673
+ #: includes/locations/class-acf-location-post-template.php:83
2674
  msgid "Default Template"
2675
  msgstr "Oletus sivupohja"
2676
 
2677
+ #: includes/locations/class-acf-location-page-type.php:20
2678
  msgid "Page Type"
2679
  msgstr "Sivun tyyppi"
2680
 
2681
+ #: includes/locations/class-acf-location-page-type.php:106
2682
  msgid "Front Page"
2683
  msgstr "Etusivu"
2684
 
2685
+ #: includes/locations/class-acf-location-page-type.php:107
2686
  msgid "Posts Page"
2687
  msgstr "Artikkelit -sivu"
2688
 
2689
+ #: includes/locations/class-acf-location-page-type.php:108
2690
  msgid "Top Level Page (no parent)"
2691
  msgstr "Ylätason sivu (sivu, jolla ei ole vanhempia)"
2692
 
2693
+ #: includes/locations/class-acf-location-page-type.php:109
2694
  msgid "Parent Page (has children)"
2695
  msgstr "Vanhempi sivu (sivu, jolla on alasivuja)"
2696
 
2697
+ #: includes/locations/class-acf-location-page-type.php:110
2698
  msgid "Child Page (has parent)"
2699
  msgstr "Lapsisivu (sivu, jolla on vanhempi)"
2700
 
2701
+ #: includes/locations/class-acf-location-post-category.php:20
2702
  msgid "Post Category"
2703
  msgstr "Artikkelin kategoria"
2704
 
2705
+ #: includes/locations/class-acf-location-post-format.php:20
2706
  msgid "Post Format"
2707
  msgstr "Artikkelin muoto"
2708
 
2709
+ #: includes/locations/class-acf-location-post-status.php:20
2710
  msgid "Post Status"
2711
  msgstr "Artikkelin tila"
2712
 
2713
+ #: includes/locations/class-acf-location-post-taxonomy.php:20
2714
  msgid "Post Taxonomy"
2715
  msgstr "Artikkelin taksonomia"
2716
 
2717
+ #: includes/locations/class-acf-location-post-template.php:20
2718
  msgid "Post Template"
2719
  msgstr "Sivupohja"
2720
 
2721
+ #: includes/locations/class-acf-location-user-form.php:20
2722
  msgid "User Form"
2723
  msgstr "Käyttäjälomake"
2724
 
2725
+ #: includes/locations/class-acf-location-user-form.php:67
2726
  msgid "Add / Edit"
2727
  msgstr "Lisää / Muokkaa"
2728
 
2729
+ #: includes/locations/class-acf-location-user-form.php:68
2730
  msgid "Register"
2731
  msgstr "Rekisteröi"
2732
 
2734
  msgid "User Role"
2735
  msgstr "Käyttäjän rooli"
2736
 
2737
+ #: includes/locations/class-acf-location-widget.php:20
2738
  msgid "Widget"
2739
  msgstr "Vimpain"
2740
 
2741
+ #: includes/media.php:55
2742
+ msgctxt "verb"
2743
+ msgid "Edit"
2744
+ msgstr "Muokkaa"
2745
+
2746
+ #: includes/media.php:56
2747
+ msgctxt "verb"
2748
+ msgid "Update"
2749
+ msgstr "Päivitä"
2750
+
2751
+ #: includes/media.php:57
2752
+ msgid "Uploaded to this post"
2753
+ msgstr "Tähän kenttäryhmään ladatut kuvat"
2754
+
2755
+ #: includes/media.php:58
2756
+ msgid "Expand Details"
2757
+ msgstr "Enemmän tietoja"
2758
+
2759
+ #: includes/media.php:59
2760
+ msgid "Collapse Details"
2761
+ msgstr "Vähemmän tietoja"
2762
+
2763
+ #: includes/media.php:60
2764
+ msgid "Restricted"
2765
+ msgstr "Rajoitettu"
2766
+
2767
  #: includes/validation.php:364
2768
  #, php-format
2769
  msgid "%s value is required"
2791
  msgid "<b>Error</b>. Could not connect to update server"
2792
  msgstr "<b>Virhe</b>. Ei voitu yhdistää päivityspalvelimeen"
2793
 
2794
+ #: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:12
2795
  msgid "Updates"
2796
  msgstr "Päivitykset"
2797
 
2803
  "<b>Virhe</b>. Päivityspakettia ei voitu todentaa. Tarkista uudelleen tai "
2804
  "poista käytöstä ACF PRO -lisenssi ja aktivoi se uudelleen."
2805
 
2806
+ #: pro/admin/views/html-settings-updates.php:6
2807
  msgid "Deactivate License"
2808
  msgstr "Poista lisenssi käytöstä"
2809
 
2810
+ #: pro/admin/views/html-settings-updates.php:6
2811
  msgid "Activate License"
2812
  msgstr "Aktivoi lisenssi"
2813
 
2814
+ #: pro/admin/views/html-settings-updates.php:16
2815
  msgid "License Information"
2816
  msgstr "Näytä lisenssitiedot"
2817
 
2818
+ #: pro/admin/views/html-settings-updates.php:19
2819
  #, php-format
2820
  msgid ""
2821
  "To unlock updates, please enter your license key below. If you don't have a "
2826
  "ole lisenssiavainta, katso <a href=\"%s\" target=\"_blank\">tarkemmat tiedot "
2827
  "ja hinnoittelu</a>."
2828
 
2829
+ #: pro/admin/views/html-settings-updates.php:26
2830
  msgid "License Key"
2831
  msgstr "Lisenssiavain"
2832
 
2833
+ #: pro/admin/views/html-settings-updates.php:58
2834
  msgid "Update Information"
2835
  msgstr "Päivitä tiedot"
2836
 
2837
+ #: pro/admin/views/html-settings-updates.php:65
2838
  msgid "Current Version"
2839
  msgstr "Nykyinen versio"
2840
 
2841
+ #: pro/admin/views/html-settings-updates.php:73
2842
  msgid "Latest Version"
2843
  msgstr "Uusin versio"
2844
 
2845
+ #: pro/admin/views/html-settings-updates.php:81
2846
  msgid "Update Available"
2847
  msgstr "Päivitys saatavilla"
2848
 
2849
+ #: pro/admin/views/html-settings-updates.php:89
2850
  msgid "Update Plugin"
2851
  msgstr "Päivitä lisäosa"
2852
 
2853
+ #: pro/admin/views/html-settings-updates.php:91
2854
  msgid "Please enter your license key above to unlock updates"
2855
  msgstr "Syötä lisenssiavain saadaksesi päivityksiä"
2856
 
2857
+ #: pro/admin/views/html-settings-updates.php:97
2858
  msgid "Check Again"
2859
  msgstr "Tarkista uudelleen"
2860
 
2861
+ #: pro/admin/views/html-settings-updates.php:104
2862
+ msgid "Changelog"
2863
+ msgstr "Muutosloki"
2864
+
2865
+ #: pro/admin/views/html-settings-updates.php:114
2866
  msgid "Upgrade Notice"
2867
  msgstr "Päivitys Ilmoitus"
2868
 
2869
+ #: pro/blocks.php:37
2870
  msgid "Block type name is required."
2871
  msgstr "Lohkotyypin nimi on pakollinen."
2872
 
2873
+ #: pro/blocks.php:44
2874
  #, php-format
2875
  msgid "Block type \"%s\" is already registered."
2876
  msgstr "Lohkotyyppi \"%s\" on jo rekisteröity."
2877
 
2878
+ #: pro/blocks.php:444
2879
  msgid "Switch to Edit"
2880
  msgstr "Siirry muokkaamaan"
2881
 
2882
+ #: pro/blocks.php:445
2883
  msgid "Switch to Preview"
2884
  msgstr "Siirry esikatseluun"
2885
 
2886
+ #: pro/blocks.php:446
2887
+ msgid "Change content alignment"
2888
+ msgstr "Sisällön tasauksen muuttaminen"
2889
+
2890
+ #: pro/blocks.php:449
2891
  #, php-format
2892
  msgid "%s settings"
2893
  msgstr "%s asetusta"
2897
  msgid "Clone"
2898
  msgstr "Klooni"
2899
 
2900
+ #: pro/fields/class-acf-field-clone.php:809
2901
  msgid "Select one or more fields you wish to clone"
2902
  msgstr "Valitse kentät, jotka haluat kopioida"
2903
 
2904
+ #: pro/fields/class-acf-field-clone.php:826
2905
  msgid "Display"
2906
  msgstr "Näytä"
2907
 
2908
+ #: pro/fields/class-acf-field-clone.php:827
2909
  msgid "Specify the style used to render the clone field"
2910
  msgstr "Määritä tyyli, jota käytetään kloonikentän luomisessa"
2911
 
2912
+ #: pro/fields/class-acf-field-clone.php:832
2913
  msgid "Group (displays selected fields in a group within this field)"
2914
  msgstr "Ryhmä (valitut kentät näytetään ryhmänä tämän klooni-kentän sisällä)"
2915
 
2916
+ #: pro/fields/class-acf-field-clone.php:833
2917
  msgid "Seamless (replaces this field with selected fields)"
2918
  msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)"
2919
 
2920
+ #: pro/fields/class-acf-field-clone.php:854
2921
  #, php-format
2922
  msgid "Labels will be displayed as %s"
2923
  msgstr "Kentän nimiö näytetään seuraavassa muodossa: %s"
2924
 
2925
+ #: pro/fields/class-acf-field-clone.php:857
2926
  msgid "Prefix Field Labels"
2927
  msgstr "Kentän nimiön etuliite"
2928
 
2929
+ #: pro/fields/class-acf-field-clone.php:868
2930
  #, php-format
2931
  msgid "Values will be saved as %s"
2932
  msgstr "Arvot tallennetaan muodossa: %s"
2933
 
2934
+ #: pro/fields/class-acf-field-clone.php:871
2935
  msgid "Prefix Field Names"
2936
  msgstr "Kentän nimen etuliite"
2937
 
2938
+ #: pro/fields/class-acf-field-clone.php:989
2939
  msgid "Unknown field"
2940
  msgstr "Tuntematon kenttä"
2941
 
2942
+ #: pro/fields/class-acf-field-clone.php:1028
2943
  msgid "Unknown field group"
2944
  msgstr "Tuntematon kenttäryhmä"
2945
 
2946
+ #: pro/fields/class-acf-field-clone.php:1032
2947
  #, php-format
2948
  msgid "All fields from %s field group"
2949
  msgstr "Kaikki kentät kenttäryhmästä %s"
2950
 
2951
  #: pro/fields/class-acf-field-flexible-content.php:31
2952
  #: pro/fields/class-acf-field-repeater.php:193
2953
+ #: pro/fields/class-acf-field-repeater.php:469
2954
  msgid "Add Row"
2955
  msgstr "Lisää rivi"
2956
 
2957
  #: pro/fields/class-acf-field-flexible-content.php:73
2958
+ #: pro/fields/class-acf-field-flexible-content.php:926
2959
+ #: pro/fields/class-acf-field-flexible-content.php:1008
2960
  msgid "layout"
2961
  msgid_plural "layouts"
2962
  msgstr[0] "asettelu"
2967
  msgstr "asettelua"
2968
 
2969
  #: pro/fields/class-acf-field-flexible-content.php:77
2970
+ #: pro/fields/class-acf-field-flexible-content.php:925
2971
+ #: pro/fields/class-acf-field-flexible-content.php:1007
2972
  msgid "This field requires at least {min} {label} {identifier}"
2973
  msgstr "Tämä kenttä vaatii vähintään {min} {label} {identifier}"
2974
 
2998
  msgstr "Lisää asettelu"
2999
 
3000
  #: pro/fields/class-acf-field-flexible-content.php:414
3001
+ msgid "Duplicate layout"
3002
+ msgstr "Monista asettelu"
3003
+
3004
+ #: pro/fields/class-acf-field-flexible-content.php:415
3005
  msgid "Remove layout"
3006
  msgstr "Poista asettelu"
3007
 
3008
+ #: pro/fields/class-acf-field-flexible-content.php:416
3009
  #: pro/fields/class-acf-field-repeater.php:301
3010
  msgid "Click to toggle"
3011
  msgstr "Piilota/Näytä"
3012
 
3013
+ #: pro/fields/class-acf-field-flexible-content.php:556
3014
  msgid "Reorder Layout"
3015
  msgstr "Järjestä asettelu uudelleen"
3016
 
3017
+ #: pro/fields/class-acf-field-flexible-content.php:556
3018
  msgid "Reorder"
3019
  msgstr "Järjestä uudelleen"
3020
 
3021
+ #: pro/fields/class-acf-field-flexible-content.php:557
3022
  msgid "Delete Layout"
3023
  msgstr "Poista asettelu"
3024
 
3025
+ #: pro/fields/class-acf-field-flexible-content.php:558
3026
  msgid "Duplicate Layout"
3027
  msgstr "Monista asettelu"
3028
 
3029
+ #: pro/fields/class-acf-field-flexible-content.php:559
3030
  msgid "Add New Layout"
3031
  msgstr "Lisää uusi asettelu"
3032
 
3033
+ #: pro/fields/class-acf-field-flexible-content.php:631
3034
  msgid "Min"
3035
  msgstr "Min"
3036
 
3037
+ #: pro/fields/class-acf-field-flexible-content.php:644
3038
  msgid "Max"
3039
  msgstr "Max"
3040
 
3041
+ #: pro/fields/class-acf-field-flexible-content.php:671
3042
+ #: pro/fields/class-acf-field-repeater.php:465
3043
  msgid "Button Label"
3044
  msgstr "Painikkeen teksti"
3045
 
3046
+ #: pro/fields/class-acf-field-flexible-content.php:680
3047
  msgid "Minimum Layouts"
3048
  msgstr "Asetteluita vähintään"
3049
 
3050
+ #: pro/fields/class-acf-field-flexible-content.php:689
3051
  msgid "Maximum Layouts"
3052
  msgstr "Asetteluita enintään"
3053
 
3124
  msgstr "Suurin määrä kuvia"
3125
 
3126
  #: pro/fields/class-acf-field-repeater.php:65
3127
+ #: pro/fields/class-acf-field-repeater.php:662
3128
  msgid "Minimum rows reached ({min} rows)"
3129
  msgstr "Pienin määrä rivejä saavutettu ({min} riviä)"
3130
 
3137
  msgstr "Lisää rivi"
3138
 
3139
  #: pro/fields/class-acf-field-repeater.php:339
3140
+ msgid "Duplicate row"
3141
+ msgstr "Monista rivi"
3142
+
3143
+ #: pro/fields/class-acf-field-repeater.php:340
3144
  msgid "Remove row"
3145
  msgstr "Poista rivi"
3146
 
3147
+ #: pro/fields/class-acf-field-repeater.php:418
3148
  msgid "Collapsed"
3149
  msgstr "Piilotettu"
3150
 
3151
+ #: pro/fields/class-acf-field-repeater.php:419
3152
  msgid "Select a sub field to show when row is collapsed"
3153
  msgstr "Valitse alakenttä, joka näytetään, kun rivi on piilotettu"
3154
 
3155
+ #: pro/fields/class-acf-field-repeater.php:429
3156
  msgid "Minimum Rows"
3157
  msgstr "Pienin määrä rivejä"
3158
 
3159
+ #: pro/fields/class-acf-field-repeater.php:439
3160
  msgid "Maximum Rows"
3161
  msgstr "Suurin määrä rivejä"
3162
 
3163
+ #: pro/locations/class-acf-location-block.php:69
3164
+ msgid "No block types exist"
3165
+ msgstr "Lohkotyyppejä ei ole"
3166
+
3167
+ #: pro/locations/class-acf-location-options-page.php:68
3168
  msgid "No options pages exist"
3169
  msgstr "Yhtään asetussivua ei ole olemassa"
3170
 
 
 
 
 
3171
  #: pro/options-page.php:82
3172
  msgid "Options Updated"
3173
  msgstr "Asetukset päivitetty"
3183
  "\"%s\">Päivitykset</a> -sivulle. Jos sinulla ei ole lisenssiavainta, katso "
3184
  "<a href=\"%s\">tarkemmat tiedot ja hinnoittelu</a>."
3185
 
 
 
 
 
 
 
 
 
3186
  #. Plugin URI of the plugin/theme
3187
  #. Author URI of the plugin/theme
3188
  msgid "https://www.advancedcustomfields.com"
3189
  msgstr "http://www.advancedcustomfields.com"
3190
 
3191
+ #. Description of the plugin/theme
3192
+ msgid "Customize WordPress with powerful, professional and intuitive fields."
3193
+ msgstr ""
3194
+ "Mukauta WordPressiä tehokkailla, ammattimaisilla ja intuitiivisilla kentillä."
3195
+
3196
  #. Author of the plugin/theme
3197
  msgid "Elliot Condon"
3198
  msgstr "Elliot Condon"
3199
 
3200
+ #, php-format
3201
+ #~ msgid "Inactive <span class=\"count\">(%s)</span>"
3202
+ #~ msgid_plural "Inactive <span class=\"count\">(%s)</span>"
3203
+ #~ msgstr[0] "Ei käytössä <span class=\"count\">(%s)</span>"
3204
+ #~ msgstr[1] "Ei käytössä <span class=\"count\">(%s)</span>"
3205
+
3206
+ #~ msgid "Status"
3207
+ #~ msgstr "Status"
3208
+
3209
+ #, php-format
3210
+ #~ msgid "See what's new in <a href=\"%s\">version %s</a>."
3211
+ #~ msgstr "Katso mitä uutta <a href=\"%s\">versiossa %s</a>."
3212
+
3213
+ #~ msgid "Resources"
3214
+ #~ msgstr "Resurssit"
3215
+
3216
+ #~ msgid "Documentation"
3217
+ #~ msgstr "Dokumentaatio"
3218
+
3219
+ #~ msgid "Pro"
3220
+ #~ msgstr "Pro"
3221
+
3222
+ #, php-format
3223
+ #~ msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
3224
+ #~ msgstr "Kiitos, että luot sisältöä <a href=\"%s\">ACF:llä</a>."
3225
+
3226
+ #~ msgid "Synchronise field group"
3227
+ #~ msgstr "Synkronoi kenttäryhmä"
3228
+
3229
+ #~ msgid "Apply"
3230
+ #~ msgstr "Käytä"
3231
+
3232
+ #~ msgid "Bulk Actions"
3233
+ #~ msgstr "Massatoiminnot"
3234
+
3235
+ #~ msgid "Info"
3236
+ #~ msgstr "Info"
3237
+
3238
+ #~ msgid "What's New"
3239
+ #~ msgstr "Katso mitä uutta"
3240
+
3241
+ #~ msgid "Welcome to Advanced Custom Fields"
3242
+ #~ msgstr "Tervetuloa Advanced Custom Fields -lisäosaan"
3243
+
3244
+ #, php-format
3245
+ #~ msgid ""
3246
+ #~ "Thank you for updating! ACF %s is bigger and better than ever before. We "
3247
+ #~ "hope you like it."
3248
+ #~ msgstr ""
3249
+ #~ "Kiitos, että päivitit! ACF %s on suurempi ja parempi kuin koskaan ennen. "
3250
+ #~ "Toivomme, että pidät siitä."
3251
+
3252
+ #~ msgid "A Smoother Experience"
3253
+ #~ msgstr "Sujuvampi kokemus"
3254
+
3255
+ #~ msgid "Improved Usability"
3256
+ #~ msgstr "Käytettävyyttä parannettu"
3257
+
3258
+ #~ msgid ""
3259
+ #~ "Including the popular Select2 library has improved both usability and "
3260
+ #~ "speed across a number of field types including post object, page link, "
3261
+ #~ "taxonomy and select."
3262
+ #~ msgstr ""
3263
+ #~ "Mukaan otettu Select2-kirjasto on parantanut sekä käytettävyyttä että "
3264
+ #~ "nopeutta erilaisissa kenttätyypeissä kuten artikkelioliossa, sivun "
3265
+ #~ "linkissä, taksonomiassa ja valinnassa."
3266
+
3267
+ #~ msgid "Improved Design"
3268
+ #~ msgstr "Parantunut muotoilu"
3269
+
3270
+ #~ msgid ""
3271
+ #~ "Many fields have undergone a visual refresh to make ACF look better than "
3272
+ #~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
3273
+ #~ "(new) fields!"
3274
+ #~ msgstr ""
3275
+ #~ "Monet kentät ovat käyneet läpi visuaalisen uudistuksen ja ACF näyttää "
3276
+ #~ "paremmalta kuin koskaan ennen! Huomattavat muutokset ovat nähtävissä "
3277
+ #~ "kentissä galleria, suodata artikkeleita ja oEmbed (uusi)!"
3278
+
3279
+ #~ msgid "Improved Data"
3280
+ #~ msgstr "Parannettu data"
3281
+
3282
+ #~ msgid ""
3283
+ #~ "Redesigning the data architecture has allowed sub fields to live "
3284
+ #~ "independently from their parents. This allows you to drag and drop fields "
3285
+ #~ "in and out of parent fields!"
3286
+ #~ msgstr ""
3287
+ #~ "Data-arkkitehtuurin uudelleensuunnittelu mahdollisti alakenttien "
3288
+ #~ "riippumattomuuden vanhemmistaan. Tämän muutoksen myötä voit vetää ja "
3289
+ #~ "pudottaa kenttiä riippumatta kenttähierarkiasta!"
3290
+
3291
+ #~ msgid "Goodbye Add-ons. Hello PRO"
3292
+ #~ msgstr "Hyvästi lisäosat. Tervetuloa PRO"
3293
+
3294
+ #~ msgid "Introducing ACF PRO"
3295
+ #~ msgstr "Esittelyssä ACF PRO"
3296
+
3297
+ #~ msgid ""
3298
+ #~ "We're changing the way premium functionality is delivered in an exciting "
3299
+ #~ "way!"
3300
+ #~ msgstr ""
3301
+ #~ "Olemme muuttamassa tapaa, jolla Premium-toiminnallisuus toimitetaan "
3302
+ #~ "jännittävällä tavalla!"
3303
+
3304
+ #, php-format
3305
+ #~ msgid ""
3306
+ #~ "All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
3307
+ #~ "version of ACF</a>. With both personal and developer licenses available, "
3308
+ #~ "premium functionality is more affordable and accessible than ever before!"
3309
+ #~ msgstr ""
3310
+ #~ "Kaikki neljä premium-lisäosaa on yhdistetty uuteen <a href=\"%s\">ACF PRO "
3311
+ #~ "-versioon</a>. Lisensseistä saatavilla on sekä henkilökohtaisia että "
3312
+ #~ "kehittäjien lisenssejä, joten korkealuokkaiset toiminnallisuudet ovat nyt "
3313
+ #~ "edullisimpia ja saavutettavampia kuin koskaan ennen!"
3314
+
3315
+ #~ msgid "Powerful Features"
3316
+ #~ msgstr "Tehokkaat ominaisuudet"
3317
+
3318
+ #~ msgid ""
3319
+ #~ "ACF PRO contains powerful features such as repeatable data, flexible "
3320
+ #~ "content layouts, a beautiful gallery field and the ability to create "
3321
+ #~ "extra admin options pages!"
3322
+ #~ msgstr ""
3323
+ #~ "ACF PRO sisältää tehokkaita ominaisuuksia, kuten toistuva data, joustavat "
3324
+ #~ "sisältö-layoutit, kaunis galleriakenttä sekä mahdollisuus luoda "
3325
+ #~ "ylimääräisiä ylläpitäjän asetussivuja!"
3326
+
3327
+ #, php-format
3328
+ #~ msgid "Read more about <a href=\"%s\">ACF PRO features</a>."
3329
+ #~ msgstr "Lue lisää <a href=\"%s\">ACF PRO:n ominaisuuksista</a>."
3330
+
3331
+ #~ msgid "Easy Upgrading"
3332
+ #~ msgstr "Helppo päivitys"
3333
+
3334
+ #~ msgid ""
3335
+ #~ "Upgrading to ACF PRO is easy. Simply purchase a license online and "
3336
+ #~ "download the plugin!"
3337
+ #~ msgstr ""
3338
+ #~ "Päivittäminen ACF PRO-versioon on helppoa. Osta lisenssi verkossa ja "
3339
+ #~ "lataa lisäosa!"
3340
+
3341
+ #, php-format
3342
+ #~ msgid ""
3343
+ #~ "We also wrote an <a href=\"%s\">upgrade guide</a> to answer any "
3344
+ #~ "questions, but if you do have one, please contact our support team via "
3345
+ #~ "the <a href=\"%s\">help desk</a>."
3346
+ #~ msgstr ""
3347
+ #~ "Kirjoitimme myös <a href=\"%s\">päivitysoppaan</a> vastataksemme "
3348
+ #~ "kysymyksiin. Jos jokin asia vielä vaivaa mieltäsi, ota yhteyttä "
3349
+ #~ "asiakaspalveluumme <a href=\"%s\">neuvontapalvelun</a> kautta."
3350
+
3351
+ #~ msgid "New Features"
3352
+ #~ msgstr "Uudet ominaisuudet"
3353
+
3354
+ #~ msgid "Link Field"
3355
+ #~ msgstr "Linkki-kenttä"
3356
+
3357
+ #~ msgid ""
3358
+ #~ "The Link field provides a simple way to select or define a link (url, "
3359
+ #~ "title, target)."
3360
+ #~ msgstr ""
3361
+ #~ "Linkki-kentässä on yksinkertainen tapa valita tai määrittää linkki (URL, "
3362
+ #~ "otsikko, kohde)."
3363
+
3364
+ #~ msgid "Group Field"
3365
+ #~ msgstr "Ryhmä-kenttä"
3366
+
3367
+ #~ msgid "The Group field provides a simple way to create a group of fields."
3368
+ #~ msgstr "Ryhmä-kentässä on yksinkertainen tapa luoda kenttäryhmiä."
3369
+
3370
+ #~ msgid "oEmbed Field"
3371
+ #~ msgstr "oEmbed-kenttä"
3372
+
3373
+ #~ msgid ""
3374
+ #~ "The oEmbed field allows an easy way to embed videos, images, tweets, "
3375
+ #~ "audio, and other content."
3376
+ #~ msgstr ""
3377
+ #~ "oEmbed-kentän avulla voit helposti upottaa videoita, kuvia, twiittejä, "
3378
+ #~ "ääntä ja muuta sisältöä."
3379
+
3380
+ #~ msgid "Clone Field"
3381
+ #~ msgstr "Klooni-kenttä"
3382
+
3383
+ #~ msgid "The clone field allows you to select and display existing fields."
3384
+ #~ msgstr ""
3385
+ #~ "Klooni-kentän avulla voit valita ja näyttää aiemmin luotuja kenttiä."
3386
+
3387
+ #~ msgid "More AJAX"
3388
+ #~ msgstr "Enemmän AJAXia"
3389
+
3390
+ #~ msgid "More fields use AJAX powered search to speed up page loading."
3391
+ #~ msgstr ""
3392
+ #~ "Useammat kentät käyttävät AJAX-käyttöistä hakua ja näin sivujen lataus "
3393
+ #~ "nopeutuu."
3394
+
3395
+ #~ msgid ""
3396
+ #~ "New auto export to JSON feature improves speed and allows for "
3397
+ #~ "syncronisation."
3398
+ #~ msgstr ""
3399
+ #~ "Uusi automaattinen vienti JSON:iin parantaa nopeutta ja mahdollistaa "
3400
+ #~ "synkronoinnin."
3401
+
3402
+ #~ msgid "Easy Import / Export"
3403
+ #~ msgstr "Helppo tuonti / vienti"
3404
+
3405
+ #~ msgid "Both import and export can easily be done through a new tools page."
3406
+ #~ msgstr ""
3407
+ #~ "Sekä tuonti että vienti voidaan tehdä helposti uudella työkalut-sivulla."
3408
+
3409
+ #~ msgid "New Form Locations"
3410
+ #~ msgstr "Uudet valikkosijainnit"
3411
+
3412
+ #~ msgid ""
3413
+ #~ "Fields can now be mapped to menus, menu items, comments, widgets and all "
3414
+ #~ "user forms!"
3415
+ #~ msgstr ""
3416
+ #~ "Kentät voidaan nyt linkittää valikkoihin, valikkokohteisiin, "
3417
+ #~ "kommentteihin, vimpaimiin ja kaikkiin käyttäjälomakkeisiin!"
3418
+
3419
+ #~ msgid "More Customization"
3420
+ #~ msgstr "Lisää muokkauksia"
3421
+
3422
+ #~ msgid ""
3423
+ #~ "New PHP (and JS) actions and filters have been added to allow for more "
3424
+ #~ "customization."
3425
+ #~ msgstr ""
3426
+ #~ "Uudet PHP (ja JS) -toiminnot ja -suodattimet on lisätty mahdollistamaan "
3427
+ #~ "kattavamman mukautuksen."
3428
+
3429
+ #~ msgid "Fresh UI"
3430
+ #~ msgstr "Tuore UI"
3431
+
3432
+ #~ msgid ""
3433
+ #~ "The entire plugin has had a design refresh including new field types, "
3434
+ #~ "settings and design!"
3435
+ #~ msgstr ""
3436
+ #~ "Koko lisäosa on saanut design-päivityksen, mukaan lukien uudet "
3437
+ #~ "kenttätyypit, asetukset ja suunnittelu!"
3438
+
3439
+ #~ msgid "New Settings"
3440
+ #~ msgstr "Uudet asetukset"
3441
+
3442
+ #~ msgid ""
3443
+ #~ "Field group settings have been added for Active, Label Placement, "
3444
+ #~ "Instructions Placement and Description."
3445
+ #~ msgstr ""
3446
+ #~ "Kenttäryhmän asetukset on lisätty ominaisuuksiin Aktiivinen, Nimiön "
3447
+ #~ "sijoittelu, Ohjeiden sijoittelu ja Kuvaus."
3448
+
3449
+ #~ msgid "Better Front End Forms"
3450
+ #~ msgstr "Paremmat front endin lomakkeet"
3451
+
3452
+ #~ msgid ""
3453
+ #~ "acf_form() can now create a new post on submission with lots of new "
3454
+ #~ "settings."
3455
+ #~ msgstr ""
3456
+ #~ "acf_form() voi nyt luoda uuden artikkelin pyydettäessä useilla uusilla "
3457
+ #~ "asetuksilla."
3458
+
3459
+ #~ msgid "Better Validation"
3460
+ #~ msgstr "Parempi validointi"
3461
+
3462
+ #~ msgid "Form validation is now done via PHP + AJAX in favour of only JS."
3463
+ #~ msgstr ""
3464
+ #~ "Lomakkeen validointi tehdään nyt yhdistelmällä PHP + AJAX pelkän JS:n "
3465
+ #~ "sijaan."
3466
+
3467
+ #~ msgid "Moving Fields"
3468
+ #~ msgstr "Kenttien siirtäminen"
3469
+
3470
+ #~ msgid ""
3471
+ #~ "New field group functionality allows you to move a field between groups & "
3472
+ #~ "parents."
3473
+ #~ msgstr ""
3474
+ #~ "Uusi kenttäryhmien toiminnallisuus sallii kenttien siirtämisen ryhmien ja "
3475
+ #~ "vanhempien välillä."
3476
+
3477
+ #, php-format
3478
+ #~ msgid "We think you'll love the changes in %s."
3479
+ #~ msgstr "Uskomme, että tulet rakastamaan muutoksia %s:ssa."
3480
+
3481
+ #~ msgid "Current Color"
3482
+ #~ msgstr "Nykyinen väri"
3483
+
3484
+ #~ msgid "Normal"
3485
+ #~ msgstr "Normaali"
3486
+
3487
+ #~ msgid "Fancy"
3488
+ #~ msgstr "Hieno"
3489
+
3490
  #~ msgid "Parent fields"
3491
  #~ msgstr "Yläkentät"
3492
 
3493
  #~ msgid "Sibling fields"
3494
  #~ msgstr "Sisaruskentät"
3495
 
 
 
 
 
 
 
3496
  #, php-format
3497
  #~ msgid "%s field group synchronised."
3498
  #~ msgid_plural "%s field groups synchronised."
3599
  #~ msgid "Generate export code"
3600
  #~ msgstr "Generoi vientikoodi"
3601
 
 
 
 
3602
  #~ msgid "Locating"
3603
  #~ msgstr "Paikannus"
3604
 
3655
  #~ msgid "http://www.elliotcondon.com/"
3656
  #~ msgstr "http://www.elliotcondon.com/"
3657
 
 
 
 
 
 
 
 
 
3658
  #~ msgid "Getting Started"
3659
  #~ msgstr "Miten pääset alkuun"
3660
 
3703
  #~ msgid "See what's new in"
3704
  #~ msgstr "Katso mitä uutta löytyy"
3705
 
 
 
 
3706
  #~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
3707
  #~ msgstr "<b>Onnistui!</b> Tuontityökalu lisäsi %s kenttäryhmään: %s"
3708
 
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Advanced Custom Fields ===
2
  Contributors: elliotcondon
3
  Tags: acf, fields, custom fields, meta, repeater
4
- Stable tag: 5.9.4
5
  Requires at least: 4.7
6
- Tested up to: 5.6
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -68,6 +68,15 @@ From your WordPress dashboard
68
 
69
  == Changelog ==
70
 
 
 
 
 
 
 
 
 
 
71
  = 5.9.4 =
72
  *Release Date - 14 January 2021*
73
 
1
  === Advanced Custom Fields ===
2
  Contributors: elliotcondon
3
  Tags: acf, fields, custom fields, meta, repeater
4
+ Stable tag: 5.9.5
5
  Requires at least: 4.7
6
+ Tested up to: 5.7
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
68
 
69
  == Changelog ==
70
 
71
+ = 5.9.5 =
72
+ *Release Date - 11 February 2021*
73
+
74
+ * Fix - Fixed regression preventing blocks from loading correctly within the editor in WordPress 5.5.
75
+ * Fix - Fixed bug causing incorrect post_status properties when restoring a Field Group from trash in WordPress 5.6.
76
+ * Fix - Fixed edge case bug where a taxonomy named "options" could interfere with saving and loading option values.
77
+ * Fix - Fixed additional PHP 8.0 warnings.
78
+ * i18n - Updated Finnish translation thanks to Mikko Kekki
79
+
80
  = 5.9.4 =
81
  *Release Date - 14 January 2021*
82