Version Description
- Core: Fix issue with cache $found variable preventing values from being loaded
- Select field: Improve choices textarea detection - http://old.support.advancedcustomfields.com/discussion/6598/select-on-repeater-field
- Language: Added Swedish translation - https://github.com/elliotcondon/acf/pull/93
- Language: Updated Russian translation - https://github.com/elliotcondon/acf/pull/94
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.1.8 |
Comparing to | |
See all releases |
Code changes from version 4.1.6 to 4.1.8
- acf.php +8 -11
- core/api.php +17 -16
- core/controllers/addons.php +12 -8
- core/controllers/everything_fields.php +39 -1
- core/controllers/export.php +1 -1
- core/controllers/field_group.php +3 -2
- core/controllers/field_groups.php +1 -1
- core/controllers/input.php +21 -7
- core/controllers/upgrade.php +240 -240
- core/fields/_base.php +7 -1
- core/fields/_functions.php +24 -9
- core/fields/number.php +10 -0
- core/fields/radio.php +102 -12
- core/fields/select.php +2 -2
- core/views/meta_box_fields.php +18 -9
- core/views/meta_box_location.php +7 -12
- core/views/meta_box_options.php +7 -5
- css/global.css +4 -4
- css/input.css +4 -2
- js/field-group.js +42 -22
- js/input.php +2 -1
- js/input/actions.js +1 -1
- js/input/ajax.js +20 -15
- js/input/file.js +28 -6
- js/input/image.js +32 -10
- js/input/radio.js +68 -0
- lang/acf-fr_FR.mo +0 -0
- lang/acf-fr_FR.po +6 -6
- lang/acf-nl_NL.po +0 -0
- lang/acf-pt_BR.mo +0 -0
- lang/acf-pt_BR.po +0 -0
- lang/acf-ru_RU.mo +0 -0
- lang/acf-ru_RU.po +1721 -0
- lang/acf-sv_SE.mo +0 -0
- lang/acf-sv_SE.po +1695 -0
- lang/acf.pot +366 -297
- readme.txt +24 -0
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
-
Version: 4.1.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -67,7 +67,7 @@ class Acf
|
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
70 |
-
'version' => '4.1.
|
71 |
'upgrade_version' => '3.4.1',
|
72 |
);
|
73 |
|
@@ -694,7 +694,7 @@ class Acf
|
|
694 |
|
695 |
function save_post( $post_id )
|
696 |
{
|
697 |
-
|
698 |
// load from post
|
699 |
if( !isset($_POST['fields']) )
|
700 |
{
|
@@ -703,19 +703,16 @@ class Acf
|
|
703 |
|
704 |
|
705 |
// loop through and save
|
706 |
-
if( $_POST['fields'] )
|
707 |
{
|
708 |
-
|
|
|
709 |
{
|
710 |
-
// parse types
|
711 |
-
// - caused issues with saving numbers (0 were removed)
|
712 |
-
//$value = apply_filters('acf/parse_types', $value);
|
713 |
-
|
714 |
// get field
|
715 |
-
$
|
716 |
|
717 |
// update field
|
718 |
-
do_action('acf/update_value', $
|
719 |
|
720 |
}
|
721 |
// foreach($fields as $key => $value)
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
+
Version: 4.1.8.1
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
70 |
+
'version' => '4.1.8.1',
|
71 |
'upgrade_version' => '3.4.1',
|
72 |
);
|
73 |
|
694 |
|
695 |
function save_post( $post_id )
|
696 |
{
|
697 |
+
|
698 |
// load from post
|
699 |
if( !isset($_POST['fields']) )
|
700 |
{
|
703 |
|
704 |
|
705 |
// loop through and save
|
706 |
+
if( !empty($_POST['fields']) )
|
707 |
{
|
708 |
+
// loop through and save $_POST data
|
709 |
+
foreach( $_POST['fields'] as $k => $v )
|
710 |
{
|
|
|
|
|
|
|
|
|
711 |
// get field
|
712 |
+
$f = apply_filters('acf/load_field', false, $k );
|
713 |
|
714 |
// update field
|
715 |
+
do_action('acf/update_value', $v, $post_id, $f );
|
716 |
|
717 |
}
|
718 |
// foreach($fields as $key => $value)
|
core/api.php
CHANGED
@@ -84,8 +84,9 @@ function acf_filter_post_id( $post_id )
|
|
84 |
function get_field_reference( $field_name, $post_id )
|
85 |
{
|
86 |
// cache
|
87 |
-
$cache = wp_cache_get( 'field_reference
|
88 |
-
|
|
|
89 |
{
|
90 |
return $cache;
|
91 |
}
|
@@ -112,7 +113,7 @@ function get_field_reference( $field_name, $post_id )
|
|
112 |
|
113 |
|
114 |
// set cache
|
115 |
-
wp_cache_set( 'field_reference
|
116 |
|
117 |
|
118 |
// return
|
@@ -338,8 +339,9 @@ function get_field_object( $field_key, $post_id = false, $options = array() )
|
|
338 |
$field = array(
|
339 |
'type' => 'text',
|
340 |
'name' => $orig_field_key,
|
341 |
-
'key' => '
|
342 |
);
|
|
|
343 |
}
|
344 |
|
345 |
|
@@ -1008,15 +1010,23 @@ function acf_form_head()
|
|
1008 |
// $post_id to save against
|
1009 |
$post_id = $_POST['post_id'];
|
1010 |
|
|
|
|
|
|
|
1011 |
|
|
|
1012 |
// allow for custom save
|
1013 |
$post_id = apply_filters('acf/pre_save_post', $post_id);
|
1014 |
|
1015 |
|
1016 |
// save the data
|
1017 |
do_action('acf/save_post', $post_id);
|
1018 |
-
|
1019 |
-
|
|
|
|
|
|
|
|
|
1020 |
// redirect
|
1021 |
if(isset($_POST['return']))
|
1022 |
{
|
@@ -1252,16 +1262,7 @@ function update_field( $field_key, $value, $post_id = false )
|
|
1252 |
);
|
1253 |
|
1254 |
$field = get_field_object( $field_key, $post_id, $options);
|
1255 |
-
|
1256 |
-
|
1257 |
-
if( !is_array($field) )
|
1258 |
-
{
|
1259 |
-
$field = array(
|
1260 |
-
'type' => 'none',
|
1261 |
-
'name' => $field_key
|
1262 |
-
);
|
1263 |
-
}
|
1264 |
-
|
1265 |
|
1266 |
// sub fields? They need formatted data
|
1267 |
if( $field['type'] == 'repeater' )
|
84 |
function get_field_reference( $field_name, $post_id )
|
85 |
{
|
86 |
// cache
|
87 |
+
$cache = wp_cache_get( 'field_reference/post_id=' . $post_id . '/name=' . $field_name, 'acf', false, $found = false );
|
88 |
+
|
89 |
+
if( $found )
|
90 |
{
|
91 |
return $cache;
|
92 |
}
|
113 |
|
114 |
|
115 |
// set cache
|
116 |
+
wp_cache_set( 'field_reference/post_id=' . $post_id . '/name=' . $field_name, $return, 'acf' );
|
117 |
|
118 |
|
119 |
// return
|
339 |
$field = array(
|
340 |
'type' => 'text',
|
341 |
'name' => $orig_field_key,
|
342 |
+
'key' => 'field_' . $orig_field_key,
|
343 |
);
|
344 |
+
$field = apply_filters('acf/load_field', $field, $field['key'] );
|
345 |
}
|
346 |
|
347 |
|
1010 |
// $post_id to save against
|
1011 |
$post_id = $_POST['post_id'];
|
1012 |
|
1013 |
+
|
1014 |
+
// set post_lock
|
1015 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
1016 |
|
1017 |
+
|
1018 |
// allow for custom save
|
1019 |
$post_id = apply_filters('acf/pre_save_post', $post_id);
|
1020 |
|
1021 |
|
1022 |
// save the data
|
1023 |
do_action('acf/save_post', $post_id);
|
1024 |
+
|
1025 |
+
|
1026 |
+
// set post_lock and allow saves
|
1027 |
+
$GLOBALS['acf_save_lock'] = false;
|
1028 |
+
|
1029 |
+
|
1030 |
// redirect
|
1031 |
if(isset($_POST['return']))
|
1032 |
{
|
1262 |
);
|
1263 |
|
1264 |
$field = get_field_object( $field_key, $post_id, $options);
|
1265 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1266 |
|
1267 |
// sub fields? They need formatted data
|
1268 |
if( $field['type'] == 'repeater' )
|
core/controllers/addons.php
CHANGED
@@ -253,20 +253,24 @@ class acf_addons
|
|
253 |
<script type="text/javascript">
|
254 |
(function($) {
|
255 |
|
256 |
-
$(
|
257 |
|
258 |
-
|
259 |
-
h = 0;
|
260 |
|
261 |
-
|
262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
|
264 |
-
|
265 |
|
266 |
});
|
267 |
|
268 |
-
$el.find('.add-on').height( h );
|
269 |
-
|
270 |
});
|
271 |
|
272 |
})(jQuery);
|
253 |
<script type="text/javascript">
|
254 |
(function($) {
|
255 |
|
256 |
+
$(window).load(function(){
|
257 |
|
258 |
+
$('#add-ons .add-on-group').each(function(){
|
|
|
259 |
|
260 |
+
var $el = $(this),
|
261 |
+
h = 0;
|
262 |
+
|
263 |
+
|
264 |
+
$el.find('.add-on').each(function(){
|
265 |
+
|
266 |
+
h = Math.max( $(this).height(), h );
|
267 |
+
|
268 |
+
});
|
269 |
|
270 |
+
$el.find('.add-on').height( h );
|
271 |
|
272 |
});
|
273 |
|
|
|
|
|
274 |
});
|
275 |
|
276 |
})(jQuery);
|
core/controllers/everything_fields.php
CHANGED
@@ -414,7 +414,18 @@ $(document).ready(function(){
|
|
414 |
// $post_id to save against
|
415 |
$post_id = $_POST['taxonomy'] . '_' . $term_id;
|
416 |
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
do_action('acf/save_post', $post_id);
|
|
|
|
|
|
|
|
|
|
|
418 |
}
|
419 |
|
420 |
|
@@ -440,7 +451,16 @@ $(document).ready(function(){
|
|
440 |
$post_id = 'user_' . $user_id;
|
441 |
|
442 |
|
443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
}
|
445 |
|
446 |
|
@@ -466,9 +486,18 @@ $(document).ready(function(){
|
|
466 |
$post_id = $post['ID'];
|
467 |
|
468 |
|
|
|
|
|
|
|
|
|
|
|
469 |
do_action('acf/save_post', $post_id);
|
470 |
|
471 |
|
|
|
|
|
|
|
|
|
472 |
return $post;
|
473 |
}
|
474 |
|
@@ -494,7 +523,16 @@ $(document).ready(function(){
|
|
494 |
$post_id = 'shopp_category_' . $category->id;
|
495 |
|
496 |
|
|
|
|
|
|
|
|
|
|
|
497 |
do_action('acf/save_post', $post_id);
|
|
|
|
|
|
|
|
|
498 |
}
|
499 |
|
500 |
|
414 |
// $post_id to save against
|
415 |
$post_id = $_POST['taxonomy'] . '_' . $term_id;
|
416 |
|
417 |
+
|
418 |
+
// set post_lock
|
419 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
420 |
+
|
421 |
+
|
422 |
+
// update the post
|
423 |
do_action('acf/save_post', $post_id);
|
424 |
+
|
425 |
+
|
426 |
+
// set post_lock and allow saves
|
427 |
+
$GLOBALS['acf_save_lock'] = false;
|
428 |
+
|
429 |
}
|
430 |
|
431 |
|
451 |
$post_id = 'user_' . $user_id;
|
452 |
|
453 |
|
454 |
+
// set post_lock
|
455 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
456 |
+
|
457 |
+
|
458 |
+
// update the post
|
459 |
+
do_action('acf/save_post', $post_id);
|
460 |
+
|
461 |
+
|
462 |
+
// set post_lock and allow saves
|
463 |
+
$GLOBALS['acf_save_lock'] = false;
|
464 |
}
|
465 |
|
466 |
|
486 |
$post_id = $post['ID'];
|
487 |
|
488 |
|
489 |
+
// set post_lock
|
490 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
491 |
+
|
492 |
+
|
493 |
+
// update the post
|
494 |
do_action('acf/save_post', $post_id);
|
495 |
|
496 |
|
497 |
+
// set post_lock and allow saves
|
498 |
+
$GLOBALS['acf_save_lock'] = false;
|
499 |
+
|
500 |
+
|
501 |
return $post;
|
502 |
}
|
503 |
|
523 |
$post_id = 'shopp_category_' . $category->id;
|
524 |
|
525 |
|
526 |
+
// set post_lock
|
527 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
528 |
+
|
529 |
+
|
530 |
+
// update the post
|
531 |
do_action('acf/save_post', $post_id);
|
532 |
+
|
533 |
+
|
534 |
+
// set post_lock and allow saves
|
535 |
+
$GLOBALS['acf_save_lock'] = false;
|
536 |
}
|
537 |
|
538 |
|
core/controllers/export.php
CHANGED
@@ -492,7 +492,7 @@ if(function_exists("register_field_group"))
|
|
492 |
foreach( $fields as $i => $field )
|
493 |
{
|
494 |
// unset unneccessary bits
|
495 |
-
unset( $field['id'], $field['class'], $field['order_no'] );
|
496 |
|
497 |
|
498 |
// instructions
|
492 |
foreach( $fields as $i => $field )
|
493 |
{
|
494 |
// unset unneccessary bits
|
495 |
+
unset( $field['id'], $field['class'], $field['order_no'], $field['field_group'] );
|
496 |
|
497 |
|
498 |
// instructions
|
core/controllers/field_group.php
CHANGED
@@ -59,8 +59,9 @@ class acf_field_group
|
|
59 |
function get_field_groups( $array )
|
60 |
{
|
61 |
// cache
|
62 |
-
$cache = wp_cache_get( 'field_groups', 'acf' );
|
63 |
-
|
|
|
64 |
{
|
65 |
return $cache;
|
66 |
}
|
59 |
function get_field_groups( $array )
|
60 |
{
|
61 |
// cache
|
62 |
+
$cache = wp_cache_get( 'field_groups', 'acf', false, $found = false );
|
63 |
+
|
64 |
+
if( $found )
|
65 |
{
|
66 |
return $cache;
|
67 |
}
|
core/controllers/field_groups.php
CHANGED
@@ -366,7 +366,7 @@ class acf_field_groups
|
|
366 |
<p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
|
367 |
|
368 |
<div class="acf-alert acf-alert-error">
|
369 |
-
<p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes,
|
370 |
</div>
|
371 |
|
372 |
<hr />
|
366 |
<p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
|
367 |
|
368 |
<div class="acf-alert acf-alert-error">
|
369 |
+
<p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest",'acf'); ?> <a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/"><?php _e("version 3",'acf'); ?></a> <?php _e("of this plugin.",'acf'); ?></p>
|
370 |
</div>
|
371 |
|
372 |
<hr />
|
core/controllers/input.php
CHANGED
@@ -10,10 +10,7 @@
|
|
10 |
|
11 |
class acf_input
|
12 |
{
|
13 |
-
|
14 |
-
var $action;
|
15 |
-
|
16 |
-
|
17 |
/*
|
18 |
* __construct
|
19 |
*
|
@@ -24,6 +21,7 @@ class acf_input
|
|
24 |
|
25 |
function __construct()
|
26 |
{
|
|
|
27 |
// actions
|
28 |
add_action('admin_enqueue_scripts', array($this,'admin_enqueue_scripts'));
|
29 |
|
@@ -451,15 +449,31 @@ class acf_input
|
|
451 |
|
452 |
|
453 |
// verify nonce
|
454 |
-
if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input') )
|
455 |
{
|
456 |
return $post_id;
|
457 |
}
|
458 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
|
460 |
// update the post (may even be a revision / autosave preview)
|
461 |
do_action('acf/save_post', $post_id);
|
462 |
-
|
|
|
|
|
|
|
463 |
|
464 |
}
|
465 |
|
10 |
|
11 |
class acf_input
|
12 |
{
|
13 |
+
|
|
|
|
|
|
|
14 |
/*
|
15 |
* __construct
|
16 |
*
|
21 |
|
22 |
function __construct()
|
23 |
{
|
24 |
+
|
25 |
// actions
|
26 |
add_action('admin_enqueue_scripts', array($this,'admin_enqueue_scripts'));
|
27 |
|
449 |
|
450 |
|
451 |
// verify nonce
|
452 |
+
if( !isset($_POST['acf_nonce'], $_POST['fields']) || !wp_verify_nonce($_POST['acf_nonce'], 'input') )
|
453 |
{
|
454 |
return $post_id;
|
455 |
}
|
456 |
+
|
457 |
+
|
458 |
+
// if save lock contains a value, the save_post action is already running for another post.
|
459 |
+
// this would imply that the user is hooking into an ACF update_value or save_post action and inserting a new post
|
460 |
+
// if this is the case, we do not want to save all the $POST data to this post.
|
461 |
+
if( isset($GLOBALS['acf_save_lock']) && $GLOBALS['acf_save_lock'] )
|
462 |
+
{
|
463 |
+
return $post_id;
|
464 |
+
}
|
465 |
+
|
466 |
+
|
467 |
+
// set post_lock
|
468 |
+
$GLOBALS['acf_save_lock'] = $post_id;
|
469 |
+
|
470 |
|
471 |
// update the post (may even be a revision / autosave preview)
|
472 |
do_action('acf/save_post', $post_id);
|
473 |
+
|
474 |
+
|
475 |
+
// set post_lock and allow saves
|
476 |
+
$GLOBALS['acf_save_lock'] = false;
|
477 |
|
478 |
}
|
479 |
|
core/controllers/upgrade.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<?php
|
2 |
|
3 |
/*
|
4 |
* Upgrade
|
@@ -8,36 +8,36 @@
|
|
8 |
* @created: 23/06/12
|
9 |
*/
|
10 |
|
11 |
-
class acf_upgrade
|
12 |
{
|
13 |
|
14 |
/*
|
15 |
* __construct
|
16 |
*
|
17 |
-
* @description:
|
18 |
* @since 3.1.8
|
19 |
* @created: 23/06/12
|
20 |
*/
|
21 |
-
|
22 |
function __construct()
|
23 |
{
|
24 |
// actions
|
25 |
add_action('admin_menu', array($this,'admin_menu'), 11);
|
26 |
-
|
27 |
-
|
28 |
// ajax
|
29 |
add_action('wp_ajax_acf_upgrade', array($this, 'upgrade_ajax'));
|
30 |
}
|
31 |
-
|
32 |
-
|
33 |
/*
|
34 |
* admin_menu
|
35 |
*
|
36 |
-
* @description:
|
37 |
* @since 3.1.8
|
38 |
* @created: 23/06/12
|
39 |
*/
|
40 |
-
|
41 |
function admin_menu()
|
42 |
{
|
43 |
// dont run on plugin activate!
|
@@ -45,17 +45,17 @@ class acf_upgrade
|
|
45 |
{
|
46 |
return;
|
47 |
}
|
48 |
-
|
49 |
-
|
50 |
// vars
|
51 |
$new_version = apply_filters('acf/get_info', 'version');
|
52 |
$old_version = get_option('acf_version', false);
|
53 |
-
|
54 |
-
|
55 |
if( $new_version != $old_version )
|
56 |
{
|
57 |
update_option('acf_version', $new_version );
|
58 |
-
|
59 |
if( !$old_version )
|
60 |
{
|
61 |
// do nothing, this is a fresh install
|
@@ -65,30 +65,30 @@ class acf_upgrade
|
|
65 |
$url = admin_url('edit.php?post_type=acf&info=whats-new');
|
66 |
wp_redirect( $url );
|
67 |
exit;
|
68 |
-
|
69 |
}
|
70 |
}
|
71 |
-
|
72 |
-
|
73 |
// update info
|
74 |
global $pagenow;
|
75 |
-
|
76 |
if( $pagenow == 'plugins.php' )
|
77 |
{
|
78 |
$hook = apply_filters('acf/get_info', 'hook');
|
79 |
-
|
80 |
wp_enqueue_style( 'acf-global' );
|
81 |
add_action( 'in_plugin_update_message-' . $hook, array($this, 'in_plugin_update_message'), 10, 2 );
|
82 |
}
|
83 |
-
|
84 |
-
|
85 |
// update admin page
|
86 |
add_submenu_page('edit.php?post_type=acf', __('Upgrade','acf'), __('Upgrade','acf'), 'manage_options','acf-upgrade', array($this,'html') );
|
87 |
}
|
88 |
-
|
89 |
|
90 |
-
|
91 |
-
|
|
|
92 |
/*
|
93 |
* in_plugin_update_message
|
94 |
*
|
@@ -101,82 +101,82 @@ class acf_upgrade
|
|
101 |
* @param {array} $plugin_data
|
102 |
* @param {object} $r
|
103 |
*/
|
104 |
-
|
105 |
function in_plugin_update_message( $plugin_data, $r )
|
106 |
{
|
107 |
// vars
|
108 |
$version = apply_filters('acf/get_info', 'version');
|
109 |
-
$readme =
|
110 |
$regexp = '/== Changelog ==(.*)= ' . $version . ' =/sm';
|
111 |
$o = '';
|
112 |
-
|
113 |
-
|
114 |
// validate
|
115 |
if( !$readme )
|
116 |
{
|
117 |
return;
|
118 |
}
|
119 |
-
|
120 |
-
|
121 |
// regexp
|
122 |
preg_match( $regexp, $readme, $matches );
|
123 |
-
|
124 |
-
|
125 |
if( ! isset($matches[1]) )
|
126 |
{
|
127 |
return;
|
128 |
}
|
129 |
|
130 |
-
|
131 |
// render changelog
|
132 |
$changelog = explode('*', $matches[1]);
|
133 |
array_shift( $changelog );
|
134 |
-
|
135 |
-
|
136 |
if( !empty($changelog) )
|
137 |
{
|
138 |
$o .= '<div class="acf-plugin-update-info">';
|
139 |
$o .= '<h3>' . __("What's new", 'acf') . '</h3>';
|
140 |
$o .= '<ul>';
|
141 |
-
|
142 |
foreach( $changelog as $item )
|
143 |
{
|
144 |
$item = explode('http', $item);
|
145 |
-
|
146 |
$o .= '<li>' . $item[0];
|
147 |
-
|
148 |
if( isset($item[1]) )
|
149 |
{
|
150 |
$o .= '<a href="http' . $item[1] . '" target="_blank">' . __("credits",'acf') . '</a>';
|
151 |
}
|
152 |
-
|
153 |
$o .= '</li>';
|
154 |
-
|
155 |
-
|
156 |
}
|
157 |
-
|
158 |
$o .= '</ul></div>';
|
159 |
}
|
160 |
-
|
161 |
echo $o;
|
162 |
-
|
163 |
-
|
164 |
}
|
165 |
-
|
166 |
-
|
167 |
/*
|
168 |
* html
|
169 |
*
|
170 |
-
* @description:
|
171 |
* @since 3.1.8
|
172 |
* @created: 23/06/12
|
173 |
*/
|
174 |
-
|
175 |
function html()
|
176 |
{
|
177 |
$version = get_option('acf_version','1.0.5');
|
178 |
$next = false;
|
179 |
-
|
180 |
// list of starting points
|
181 |
if( $version < '3.0.0' )
|
182 |
{
|
@@ -198,34 +198,34 @@ class acf_upgrade
|
|
198 |
{
|
199 |
$next = '3.4.1';
|
200 |
}
|
201 |
-
|
202 |
-
?>
|
203 |
<script type="text/javascript">
|
204 |
(function($){
|
205 |
-
|
206 |
function add_message(messaage)
|
207 |
{
|
208 |
$('#wpbody-content').append('<p>' + messaage + '</p>');
|
209 |
}
|
210 |
-
|
211 |
function run_upgrade(version)
|
212 |
{
|
213 |
$.ajax({
|
214 |
url: ajaxurl,
|
215 |
-
data: {
|
216 |
-
action : 'acf_upgrade',
|
217 |
-
version : version
|
218 |
},
|
219 |
type: 'post',
|
220 |
dataType: 'json',
|
221 |
success: function(json){
|
222 |
-
|
223 |
if(json)
|
224 |
{
|
225 |
if(json.status)
|
226 |
{
|
227 |
add_message(json.message);
|
228 |
-
|
229 |
// next update?
|
230 |
if(json.next)
|
231 |
{
|
@@ -251,9 +251,9 @@ class acf_upgrade
|
|
251 |
}
|
252 |
});
|
253 |
}
|
254 |
-
|
255 |
<?php if($next){ echo 'run_upgrade("' . $next . '");'; } ?>
|
256 |
-
|
257 |
})(jQuery);
|
258 |
</script>
|
259 |
<style type="text/css">
|
@@ -261,23 +261,23 @@ class acf_upgrade
|
|
261 |
display: none;
|
262 |
}
|
263 |
</style>
|
264 |
-
<?php
|
265 |
-
|
266 |
if(!$next)
|
267 |
{
|
268 |
echo '<p>No Upgrade Required</p>';
|
269 |
}
|
270 |
}
|
271 |
-
|
272 |
-
|
273 |
/*
|
274 |
* upgrade_ajax
|
275 |
*
|
276 |
-
* @description:
|
277 |
* @since 3.1.8
|
278 |
* @created: 23/06/12
|
279 |
*/
|
280 |
-
|
281 |
function upgrade_ajax()
|
282 |
{
|
283 |
// global
|
@@ -290,30 +290,30 @@ class acf_upgrade
|
|
290 |
$acf_rules = $wpdb->prefix.'acf_rules';
|
291 |
$wp_postmeta = $wpdb->prefix.'postmeta';
|
292 |
$wp_options = $wpdb->prefix.'options';
|
293 |
-
|
294 |
-
|
295 |
// vars
|
296 |
$return = array(
|
297 |
'status' => false,
|
298 |
'message' => "",
|
299 |
'next' => false,
|
300 |
);
|
301 |
-
|
302 |
-
|
303 |
// versions
|
304 |
switch($_POST['version'])
|
305 |
-
{
|
306 |
-
|
307 |
/*---------------------
|
308 |
*
|
309 |
* 3.0.0
|
310 |
-
*
|
311 |
*--------------------*/
|
312 |
-
|
313 |
case '3.0.0':
|
314 |
-
|
315 |
// upgrade options first as "field_group_layout" will cause get_fields to fail!
|
316 |
-
|
317 |
// get acf's
|
318 |
$acfs = get_posts(array(
|
319 |
'numberposts' => -1,
|
@@ -322,14 +322,14 @@ class acf_upgrade
|
|
322 |
'order' => 'asc',
|
323 |
'suppress_filters' => false,
|
324 |
));
|
325 |
-
|
326 |
if($acfs)
|
327 |
{
|
328 |
foreach($acfs as $acf)
|
329 |
{
|
330 |
// position
|
331 |
update_post_meta($acf->ID, 'position', 'normal');
|
332 |
-
|
333 |
//layout
|
334 |
$layout = get_post_meta($acf->ID, 'field_group_layout', true) ? get_post_meta($acf->ID, 'field_group_layout', true) : 'in_box';
|
335 |
if($layout == 'in_box')
|
@@ -342,7 +342,7 @@ class acf_upgrade
|
|
342 |
}
|
343 |
update_post_meta($acf->ID, 'layout', $layout);
|
344 |
delete_post_meta($acf->ID, 'field_group_layout');
|
345 |
-
|
346 |
// show_on_page
|
347 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
348 |
if($show_on_page)
|
@@ -350,26 +350,26 @@ class acf_upgrade
|
|
350 |
$show_on_page = unserialize($show_on_page);
|
351 |
}
|
352 |
update_post_meta($acf->ID, 'show_on_page', $show_on_page);
|
353 |
-
|
354 |
}
|
355 |
}
|
356 |
-
|
357 |
$return = array(
|
358 |
'status' => true,
|
359 |
'message' => "Migrating Options...",
|
360 |
'next' => '3.0.0 (step 2)',
|
361 |
);
|
362 |
-
|
363 |
break;
|
364 |
-
|
365 |
/*---------------------
|
366 |
*
|
367 |
* 3.0.0
|
368 |
-
*
|
369 |
*--------------------*/
|
370 |
-
|
371 |
case '3.0.0 (step 2)':
|
372 |
-
|
373 |
// get acf's
|
374 |
$acfs = get_posts(array(
|
375 |
'numberposts' => -1,
|
@@ -378,15 +378,15 @@ class acf_upgrade
|
|
378 |
'order' => 'asc',
|
379 |
'suppress_filters' => false,
|
380 |
));
|
381 |
-
|
382 |
if($acfs)
|
383 |
{
|
384 |
foreach($acfs as $acf)
|
385 |
{
|
386 |
// allorany doesn't need to change!
|
387 |
-
|
388 |
$rules = $wpdb->get_results("SELECT * FROM $acf_rules WHERE acf_id = '$acf->ID' ORDER BY order_no ASC", ARRAY_A);
|
389 |
-
|
390 |
if($rules)
|
391 |
{
|
392 |
foreach($rules as $rule)
|
@@ -396,41 +396,41 @@ class acf_upgrade
|
|
396 |
{
|
397 |
$rule['value'] = 'Options';
|
398 |
}
|
399 |
-
|
400 |
add_post_meta($acf->ID, 'rule', $rule);
|
401 |
}
|
402 |
}
|
403 |
-
|
404 |
-
}
|
405 |
}
|
406 |
-
|
407 |
$return = array(
|
408 |
'status' => true,
|
409 |
'message' => "Migrating Location Rules...",
|
410 |
'next' => '3.0.0 (step 3)',
|
411 |
);
|
412 |
-
|
413 |
break;
|
414 |
-
|
415 |
/*---------------------
|
416 |
*
|
417 |
* 3.0.0
|
418 |
-
*
|
419 |
*--------------------*/
|
420 |
-
|
421 |
case '3.0.0 (step 3)':
|
422 |
-
|
423 |
$message = "Migrating Fields?";
|
424 |
-
|
425 |
$parent_id = 0;
|
426 |
$fields = $wpdb->get_results("SELECT * FROM $acf_fields WHERE parent_id = $parent_id ORDER BY order_no, name", ARRAY_A);
|
427 |
-
|
428 |
if($fields)
|
429 |
{
|
430 |
// loop through fields
|
431 |
foreach($fields as $field)
|
432 |
{
|
433 |
-
|
434 |
// unserialize options
|
435 |
if(@unserialize($field['options']))
|
436 |
{
|
@@ -440,18 +440,18 @@ class acf_upgrade
|
|
440 |
{
|
441 |
$field['options'] = array();
|
442 |
}
|
443 |
-
|
444 |
-
|
445 |
// sub fields
|
446 |
if($field['type'] == 'repeater')
|
447 |
{
|
448 |
$field['options']['sub_fields'] = array();
|
449 |
-
|
450 |
$parent_id = $field['id'];
|
451 |
$sub_fields = $wpdb->get_results("SELECT * FROM $acf_fields WHERE parent_id = $parent_id ORDER BY order_no, name", ARRAY_A);
|
452 |
-
|
453 |
-
|
454 |
-
// if fields are empty, this must be a new or broken acf.
|
455 |
if(empty($sub_fields))
|
456 |
{
|
457 |
$field['options']['sub_fields'] = array();
|
@@ -470,59 +470,59 @@ class acf_upgrade
|
|
470 |
{
|
471 |
$sub_field['options'] = array();
|
472 |
}
|
473 |
-
|
474 |
// merge options with field
|
475 |
$sub_field = array_merge($sub_field, $sub_field['options']);
|
476 |
-
|
477 |
unset($sub_field['options']);
|
478 |
-
|
479 |
// each field has a unique id!
|
480 |
if(!isset($sub_field['key'])) $sub_field['key'] = 'field_' . $sub_field['id'];
|
481 |
-
|
482 |
$field['options']['sub_fields'][] = $sub_field;
|
483 |
}
|
484 |
}
|
485 |
-
|
486 |
}
|
487 |
// end if sub field
|
488 |
-
|
489 |
-
|
490 |
// merge options with field
|
491 |
$field = array_merge($field, $field['options']);
|
492 |
-
|
493 |
unset($field['options']);
|
494 |
-
|
495 |
// each field has a unique id!
|
496 |
if(!isset($field['key'])) $field['key'] = 'field_' . $field['id'];
|
497 |
-
|
498 |
// update field
|
499 |
$this->parent->update_field( $field['post_id'], $field);
|
500 |
-
|
501 |
// create field name (field_rand)
|
502 |
//$message .= print_r($field, true) . '<br /><br />';
|
503 |
}
|
504 |
// end foreach $fields
|
505 |
}
|
506 |
-
|
507 |
-
|
508 |
$return = array(
|
509 |
'status' => true,
|
510 |
'message' => $message,
|
511 |
'next' => '3.0.0 (step 4)',
|
512 |
);
|
513 |
-
|
514 |
break;
|
515 |
-
|
516 |
/*---------------------
|
517 |
*
|
518 |
* 3.0.0
|
519 |
-
*
|
520 |
*--------------------*/
|
521 |
-
|
522 |
case '3.0.0 (step 4)':
|
523 |
-
|
524 |
$message = "Migrating Values...";
|
525 |
-
|
526 |
// update normal values
|
527 |
$values = $wpdb->get_results("SELECT v.field_id, m.post_id, m.meta_key, m.meta_value FROM $acf_values v LEFT JOIN $wp_postmeta m ON v.value = m.meta_id WHERE v.sub_field_id = 0", ARRAY_A);
|
528 |
if($values)
|
@@ -531,106 +531,106 @@ class acf_upgrade
|
|
531 |
{
|
532 |
// options page
|
533 |
if($value['post_id'] == 0) $value['post_id'] = 999999999;
|
534 |
-
|
535 |
// unserialize value (relationship, multi select, etc)
|
536 |
if(@unserialize($value['meta_value']))
|
537 |
{
|
538 |
$value['meta_value'] = unserialize($value['meta_value']);
|
539 |
-
}
|
540 |
-
|
541 |
update_post_meta($value['post_id'], $value['meta_key'], $value['meta_value']);
|
542 |
update_post_meta($value['post_id'], '_' . $value['meta_key'], 'field_' . $value['field_id']);
|
543 |
}
|
544 |
}
|
545 |
-
|
546 |
// update repeater values
|
547 |
$values = $wpdb->get_results("SELECT v.field_id, v.sub_field_id, v.order_no, m.post_id, m.meta_key, m.meta_value FROM $acf_values v LEFT JOIN $wp_postmeta m ON v.value = m.meta_id WHERE v.sub_field_id != 0", ARRAY_A);
|
548 |
if($values)
|
549 |
{
|
550 |
$rows = array();
|
551 |
-
|
552 |
foreach($values as $value)
|
553 |
{
|
554 |
// update row count
|
555 |
$row = (int) $value['order_no'] + 1;
|
556 |
-
|
557 |
// options page
|
558 |
if($value['post_id'] == 0) $value['post_id'] = 999999999;
|
559 |
-
|
560 |
// unserialize value (relationship, multi select, etc)
|
561 |
if(@unserialize($value['meta_value']))
|
562 |
{
|
563 |
$value['meta_value'] = unserialize($value['meta_value']);
|
564 |
}
|
565 |
-
|
566 |
// current row
|
567 |
$current_row = isset($rows[$value['post_id']][$value['field_id']]) ? $rows[$value['post_id']][$value['field_id']] : 0;
|
568 |
if($row > $current_row) $rows[$value['post_id']][$value['field_id']] = (int) $row;
|
569 |
-
|
570 |
// get field name
|
571 |
$field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $value['field_id']));
|
572 |
-
|
573 |
// get sub field name
|
574 |
$sub_field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $value['sub_field_id']));
|
575 |
-
|
576 |
// save new value
|
577 |
$new_meta_key = $field_name . '_' . $value['order_no'] . '_' . $sub_field_name;
|
578 |
update_post_meta($value['post_id'], $new_meta_key , $value['meta_value']);
|
579 |
-
|
580 |
// save value hidden field id
|
581 |
update_post_meta($value['post_id'], '_' . $new_meta_key, 'field_' . $value['sub_field_id']);
|
582 |
}
|
583 |
-
|
584 |
foreach($rows as $post_id => $field_ids)
|
585 |
{
|
586 |
foreach($field_ids as $field_id => $row_count)
|
587 |
{
|
588 |
// get sub field name
|
589 |
$field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $field_id));
|
590 |
-
|
591 |
delete_post_meta($post_id, $field_name);
|
592 |
update_post_meta($post_id, $field_name, $row_count);
|
593 |
update_post_meta($post_id, '_' . $field_name, 'field_' . $field_id);
|
594 |
-
|
595 |
}
|
596 |
}
|
597 |
-
|
598 |
}
|
599 |
-
|
600 |
// update version (only upgrade 1 time)
|
601 |
update_option('acf_version','3.0.0');
|
602 |
-
|
603 |
$return = array(
|
604 |
'status' => true,
|
605 |
'message' => $message,
|
606 |
'next' => '3.1.8',
|
607 |
);
|
608 |
-
|
609 |
break;
|
610 |
-
|
611 |
-
|
612 |
/*---------------------
|
613 |
*
|
614 |
* 3.1.8
|
615 |
-
*
|
616 |
*--------------------*/
|
617 |
-
|
618 |
case '3.1.8':
|
619 |
-
|
620 |
// vars
|
621 |
$message = __("Migrating options values from the $wp_postmeta table to the $wp_options table",'acf') . '...';
|
622 |
-
|
623 |
// update normal values
|
624 |
$rows = $wpdb->get_results( $wpdb->prepare("SELECT meta_key FROM $wp_postmeta WHERE post_id = %d", 999999999) , ARRAY_A);
|
625 |
-
|
626 |
if($rows)
|
627 |
{
|
628 |
foreach($rows as $row)
|
629 |
{
|
630 |
// original name
|
631 |
$field_name = $row['meta_key'];
|
632 |
-
|
633 |
-
|
634 |
// name
|
635 |
$new_name = "";
|
636 |
if( substr($field_name, 0, 1) == "_" )
|
@@ -641,49 +641,49 @@ class acf_upgrade
|
|
641 |
{
|
642 |
$new_name = 'options_' . $field_name;
|
643 |
}
|
644 |
-
|
645 |
-
|
646 |
// value
|
647 |
$value = get_post_meta( 999999999, $field_name, true );
|
648 |
-
|
649 |
-
|
650 |
// update option
|
651 |
update_option( $new_name, $value );
|
652 |
-
|
653 |
-
|
654 |
// deleet old postmeta
|
655 |
delete_post_meta( 999999999, $field_name );
|
656 |
-
|
657 |
}
|
658 |
// foreach($values as $value)
|
659 |
}
|
660 |
// if($values)
|
661 |
-
|
662 |
-
|
663 |
// update version
|
664 |
update_option('acf_version','3.1.8');
|
665 |
-
|
666 |
$return = array(
|
667 |
'status' => true,
|
668 |
'message' => $message,
|
669 |
'next' => '3.2.5',
|
670 |
);
|
671 |
-
|
672 |
break;
|
673 |
-
|
674 |
-
|
675 |
/*---------------------
|
676 |
*
|
677 |
* 3.1.8
|
678 |
-
*
|
679 |
*--------------------*/
|
680 |
-
|
681 |
case '3.2.5':
|
682 |
-
|
683 |
// vars
|
684 |
$message = __("Modifying field group options 'show on page'",'acf') . '...';
|
685 |
-
|
686 |
-
|
687 |
// get acf's
|
688 |
$acfs = get_posts(array(
|
689 |
'numberposts' => -1,
|
@@ -692,55 +692,55 @@ class acf_upgrade
|
|
692 |
'order' => 'asc',
|
693 |
'suppress_filters' => false,
|
694 |
));
|
695 |
-
|
696 |
-
|
697 |
$show_all = array('the_content', 'discussion', 'custom_fields', 'comments', 'slug', 'author');
|
698 |
-
|
699 |
-
|
700 |
// populate acfs
|
701 |
if($acfs)
|
702 |
{
|
703 |
foreach($acfs as $acf)
|
704 |
{
|
705 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
706 |
-
|
707 |
$hide_on_screen = array_diff($show_all, $show_on_page);
|
708 |
-
|
709 |
update_post_meta($acf->ID, 'hide_on_screen', $hide_on_screen);
|
710 |
delete_post_meta($acf->ID, 'show_on_page');
|
711 |
-
|
712 |
}
|
713 |
}
|
714 |
-
|
715 |
-
|
716 |
// update version
|
717 |
update_option('acf_version','3.2.5');
|
718 |
-
|
719 |
$return = array(
|
720 |
'status' => true,
|
721 |
'message' => $message,
|
722 |
'next' => '3.3.3',
|
723 |
);
|
724 |
-
|
725 |
break;
|
726 |
-
|
727 |
-
|
728 |
/*
|
729 |
* 3.3.3
|
730 |
*
|
731 |
* @description: changed field option: taxonomies filter on relationship / post object and page link fields.
|
732 |
* @created: 20/07/12
|
733 |
*/
|
734 |
-
|
735 |
case '3.3.3':
|
736 |
-
|
737 |
// vars
|
738 |
$message = __("Modifying field option 'taxonomy'",'acf') . '...';
|
739 |
$wp_term_taxonomy = $wpdb->prefix.'term_taxonomy';
|
740 |
$term_taxonomies = array();
|
741 |
-
|
742 |
$rows = $wpdb->get_results("SELECT * FROM $wp_term_taxonomy", ARRAY_A);
|
743 |
-
|
744 |
if($rows)
|
745 |
{
|
746 |
foreach($rows as $row)
|
@@ -748,8 +748,8 @@ class acf_upgrade
|
|
748 |
$term_taxonomies[ $row['term_id'] ] = $row['taxonomy'] . ":" . $row['term_id'];
|
749 |
}
|
750 |
}
|
751 |
-
|
752 |
-
|
753 |
// get acf's
|
754 |
$acfs = get_posts(array(
|
755 |
'numberposts' => -1,
|
@@ -758,48 +758,48 @@ class acf_upgrade
|
|
758 |
'order' => 'asc',
|
759 |
'suppress_filters' => false,
|
760 |
));
|
761 |
-
|
762 |
// populate acfs
|
763 |
if($acfs)
|
764 |
{
|
765 |
foreach($acfs as $acf)
|
766 |
{
|
767 |
$fields = $this->parent->get_acf_fields($acf->ID);
|
768 |
-
|
769 |
if( $fields )
|
770 |
{
|
771 |
foreach( $fields as $field )
|
772 |
{
|
773 |
-
|
774 |
// only edit the option: taxonomy
|
775 |
if( !isset($field['taxonomy']) )
|
776 |
{
|
777 |
continue;
|
778 |
}
|
779 |
-
|
780 |
-
|
781 |
if( is_array($field['taxonomy']) )
|
782 |
{
|
783 |
foreach( $field['taxonomy'] as $k => $v )
|
784 |
{
|
785 |
-
|
786 |
// could be "all"
|
787 |
if( !is_numeric($v) )
|
788 |
{
|
789 |
continue;
|
790 |
}
|
791 |
-
|
792 |
$field['taxonomy'][ $k ] = $term_taxonomies[ $v ];
|
793 |
-
|
794 |
-
|
795 |
}
|
796 |
-
// foreach( $field['taxonomy'] as $k => $v )
|
797 |
}
|
798 |
// if( $field['taxonomy'] )
|
799 |
-
|
800 |
-
|
801 |
$this->parent->update_field( $acf->ID, $field);
|
802 |
-
|
803 |
}
|
804 |
// foreach( $fields as $field )
|
805 |
}
|
@@ -808,105 +808,105 @@ class acf_upgrade
|
|
808 |
// foreach($acfs as $acf)
|
809 |
}
|
810 |
// if($acfs)
|
811 |
-
|
812 |
-
|
813 |
// update version
|
814 |
update_option('acf_version','3.3.3');
|
815 |
-
|
816 |
$return = array(
|
817 |
'status' => true,
|
818 |
'message' => $message,
|
819 |
'next' => '3.4.1',
|
820 |
);
|
821 |
-
|
822 |
break;
|
823 |
-
|
824 |
-
|
825 |
/*
|
826 |
* 3.4.1
|
827 |
*
|
828 |
* @description: Move user custom fields from wp_options to wp_usermeta
|
829 |
* @created: 20/07/12
|
830 |
*/
|
831 |
-
|
832 |
case '3.4.1':
|
833 |
-
|
834 |
// vars
|
835 |
$message = __("Moving user custom fields from wp_options to wp_usermeta'",'acf') . '...';
|
836 |
-
|
837 |
$option_row_ids = array();
|
838 |
$option_rows = $wpdb->get_results("SELECT option_id, option_name, option_value FROM $wpdb->options WHERE option_name LIKE 'user%' OR option_name LIKE '\_user%'", ARRAY_A);
|
839 |
-
|
840 |
-
|
841 |
if( $option_rows )
|
842 |
{
|
843 |
foreach( $option_rows as $k => $row)
|
844 |
{
|
845 |
preg_match('/user_([0-9]+)_(.*)/', $row['option_name'], $matches);
|
846 |
-
|
847 |
-
|
848 |
// if no matches, this is not an acf value, ignore it
|
849 |
if( !$matches )
|
850 |
{
|
851 |
continue;
|
852 |
}
|
853 |
-
|
854 |
-
|
855 |
// add to $delete_option_rows
|
856 |
$option_row_ids[] = $row['option_id'];
|
857 |
-
|
858 |
-
|
859 |
// meta_key prefix
|
860 |
$meta_key_prefix = "";
|
861 |
if( substr($row['option_name'], 0, 1) == "_" )
|
862 |
{
|
863 |
$meta_key_prefix = '_';
|
864 |
}
|
865 |
-
|
866 |
-
|
867 |
// update user meta
|
868 |
update_user_meta( $matches[1], $meta_key_prefix . $matches[2], $row['option_value'] );
|
869 |
|
870 |
}
|
871 |
}
|
872 |
-
|
873 |
-
|
874 |
// clear up some memory ( aprox 14 kb )
|
875 |
unset( $option_rows );
|
876 |
-
|
877 |
-
|
878 |
// remove $option_row_ids
|
879 |
if( $option_row_ids )
|
880 |
{
|
881 |
$option_row_ids = implode(', ', $option_row_ids);
|
882 |
-
|
883 |
$wpdb->query("DELETE FROM $wpdb->options WHERE option_id IN ($option_row_ids)");
|
884 |
}
|
885 |
-
|
886 |
-
|
887 |
// update version
|
888 |
update_option('acf_version','3.4.1');
|
889 |
-
|
890 |
$return = array(
|
891 |
'status' => true,
|
892 |
'message' => $message,
|
893 |
'next' => false,
|
894 |
);
|
895 |
-
|
896 |
break;
|
897 |
-
|
898 |
-
|
899 |
}
|
900 |
-
|
901 |
// return json
|
902 |
echo json_encode($return);
|
903 |
die;
|
904 |
|
905 |
}
|
906 |
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
}
|
911 |
|
912 |
new acf_upgrade();
|
1 |
+
<?php
|
2 |
|
3 |
/*
|
4 |
* Upgrade
|
8 |
* @created: 23/06/12
|
9 |
*/
|
10 |
|
11 |
+
class acf_upgrade
|
12 |
{
|
13 |
|
14 |
/*
|
15 |
* __construct
|
16 |
*
|
17 |
+
* @description:
|
18 |
* @since 3.1.8
|
19 |
* @created: 23/06/12
|
20 |
*/
|
21 |
+
|
22 |
function __construct()
|
23 |
{
|
24 |
// actions
|
25 |
add_action('admin_menu', array($this,'admin_menu'), 11);
|
26 |
+
|
27 |
+
|
28 |
// ajax
|
29 |
add_action('wp_ajax_acf_upgrade', array($this, 'upgrade_ajax'));
|
30 |
}
|
31 |
+
|
32 |
+
|
33 |
/*
|
34 |
* admin_menu
|
35 |
*
|
36 |
+
* @description:
|
37 |
* @since 3.1.8
|
38 |
* @created: 23/06/12
|
39 |
*/
|
40 |
+
|
41 |
function admin_menu()
|
42 |
{
|
43 |
// dont run on plugin activate!
|
45 |
{
|
46 |
return;
|
47 |
}
|
48 |
+
|
49 |
+
|
50 |
// vars
|
51 |
$new_version = apply_filters('acf/get_info', 'version');
|
52 |
$old_version = get_option('acf_version', false);
|
53 |
+
|
54 |
+
|
55 |
if( $new_version != $old_version )
|
56 |
{
|
57 |
update_option('acf_version', $new_version );
|
58 |
+
|
59 |
if( !$old_version )
|
60 |
{
|
61 |
// do nothing, this is a fresh install
|
65 |
$url = admin_url('edit.php?post_type=acf&info=whats-new');
|
66 |
wp_redirect( $url );
|
67 |
exit;
|
68 |
+
|
69 |
}
|
70 |
}
|
71 |
+
|
72 |
+
|
73 |
// update info
|
74 |
global $pagenow;
|
75 |
+
|
76 |
if( $pagenow == 'plugins.php' )
|
77 |
{
|
78 |
$hook = apply_filters('acf/get_info', 'hook');
|
79 |
+
|
80 |
wp_enqueue_style( 'acf-global' );
|
81 |
add_action( 'in_plugin_update_message-' . $hook, array($this, 'in_plugin_update_message'), 10, 2 );
|
82 |
}
|
83 |
+
|
84 |
+
|
85 |
// update admin page
|
86 |
add_submenu_page('edit.php?post_type=acf', __('Upgrade','acf'), __('Upgrade','acf'), 'manage_options','acf-upgrade', array($this,'html') );
|
87 |
}
|
|
|
88 |
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
/*
|
93 |
* in_plugin_update_message
|
94 |
*
|
101 |
* @param {array} $plugin_data
|
102 |
* @param {object} $r
|
103 |
*/
|
104 |
+
|
105 |
function in_plugin_update_message( $plugin_data, $r )
|
106 |
{
|
107 |
// vars
|
108 |
$version = apply_filters('acf/get_info', 'version');
|
109 |
+
$readme = wp_remote_fopen( 'http://plugins.svn.wordpress.org/advanced-custom-fields/trunk/readme.txt' );
|
110 |
$regexp = '/== Changelog ==(.*)= ' . $version . ' =/sm';
|
111 |
$o = '';
|
112 |
+
|
113 |
+
|
114 |
// validate
|
115 |
if( !$readme )
|
116 |
{
|
117 |
return;
|
118 |
}
|
119 |
+
|
120 |
+
|
121 |
// regexp
|
122 |
preg_match( $regexp, $readme, $matches );
|
123 |
+
|
124 |
+
|
125 |
if( ! isset($matches[1]) )
|
126 |
{
|
127 |
return;
|
128 |
}
|
129 |
|
130 |
+
|
131 |
// render changelog
|
132 |
$changelog = explode('*', $matches[1]);
|
133 |
array_shift( $changelog );
|
134 |
+
|
135 |
+
|
136 |
if( !empty($changelog) )
|
137 |
{
|
138 |
$o .= '<div class="acf-plugin-update-info">';
|
139 |
$o .= '<h3>' . __("What's new", 'acf') . '</h3>';
|
140 |
$o .= '<ul>';
|
141 |
+
|
142 |
foreach( $changelog as $item )
|
143 |
{
|
144 |
$item = explode('http', $item);
|
145 |
+
|
146 |
$o .= '<li>' . $item[0];
|
147 |
+
|
148 |
if( isset($item[1]) )
|
149 |
{
|
150 |
$o .= '<a href="http' . $item[1] . '" target="_blank">' . __("credits",'acf') . '</a>';
|
151 |
}
|
152 |
+
|
153 |
$o .= '</li>';
|
154 |
+
|
155 |
+
|
156 |
}
|
157 |
+
|
158 |
$o .= '</ul></div>';
|
159 |
}
|
160 |
+
|
161 |
echo $o;
|
162 |
+
|
163 |
+
|
164 |
}
|
165 |
+
|
166 |
+
|
167 |
/*
|
168 |
* html
|
169 |
*
|
170 |
+
* @description:
|
171 |
* @since 3.1.8
|
172 |
* @created: 23/06/12
|
173 |
*/
|
174 |
+
|
175 |
function html()
|
176 |
{
|
177 |
$version = get_option('acf_version','1.0.5');
|
178 |
$next = false;
|
179 |
+
|
180 |
// list of starting points
|
181 |
if( $version < '3.0.0' )
|
182 |
{
|
198 |
{
|
199 |
$next = '3.4.1';
|
200 |
}
|
201 |
+
|
202 |
+
?>
|
203 |
<script type="text/javascript">
|
204 |
(function($){
|
205 |
+
|
206 |
function add_message(messaage)
|
207 |
{
|
208 |
$('#wpbody-content').append('<p>' + messaage + '</p>');
|
209 |
}
|
210 |
+
|
211 |
function run_upgrade(version)
|
212 |
{
|
213 |
$.ajax({
|
214 |
url: ajaxurl,
|
215 |
+
data: {
|
216 |
+
action : 'acf_upgrade',
|
217 |
+
version : version
|
218 |
},
|
219 |
type: 'post',
|
220 |
dataType: 'json',
|
221 |
success: function(json){
|
222 |
+
|
223 |
if(json)
|
224 |
{
|
225 |
if(json.status)
|
226 |
{
|
227 |
add_message(json.message);
|
228 |
+
|
229 |
// next update?
|
230 |
if(json.next)
|
231 |
{
|
251 |
}
|
252 |
});
|
253 |
}
|
254 |
+
|
255 |
<?php if($next){ echo 'run_upgrade("' . $next . '");'; } ?>
|
256 |
+
|
257 |
})(jQuery);
|
258 |
</script>
|
259 |
<style type="text/css">
|
261 |
display: none;
|
262 |
}
|
263 |
</style>
|
264 |
+
<?php
|
265 |
+
|
266 |
if(!$next)
|
267 |
{
|
268 |
echo '<p>No Upgrade Required</p>';
|
269 |
}
|
270 |
}
|
271 |
+
|
272 |
+
|
273 |
/*
|
274 |
* upgrade_ajax
|
275 |
*
|
276 |
+
* @description:
|
277 |
* @since 3.1.8
|
278 |
* @created: 23/06/12
|
279 |
*/
|
280 |
+
|
281 |
function upgrade_ajax()
|
282 |
{
|
283 |
// global
|
290 |
$acf_rules = $wpdb->prefix.'acf_rules';
|
291 |
$wp_postmeta = $wpdb->prefix.'postmeta';
|
292 |
$wp_options = $wpdb->prefix.'options';
|
293 |
+
|
294 |
+
|
295 |
// vars
|
296 |
$return = array(
|
297 |
'status' => false,
|
298 |
'message' => "",
|
299 |
'next' => false,
|
300 |
);
|
301 |
+
|
302 |
+
|
303 |
// versions
|
304 |
switch($_POST['version'])
|
305 |
+
{
|
306 |
+
|
307 |
/*---------------------
|
308 |
*
|
309 |
* 3.0.0
|
310 |
+
*
|
311 |
*--------------------*/
|
312 |
+
|
313 |
case '3.0.0':
|
314 |
+
|
315 |
// upgrade options first as "field_group_layout" will cause get_fields to fail!
|
316 |
+
|
317 |
// get acf's
|
318 |
$acfs = get_posts(array(
|
319 |
'numberposts' => -1,
|
322 |
'order' => 'asc',
|
323 |
'suppress_filters' => false,
|
324 |
));
|
325 |
+
|
326 |
if($acfs)
|
327 |
{
|
328 |
foreach($acfs as $acf)
|
329 |
{
|
330 |
// position
|
331 |
update_post_meta($acf->ID, 'position', 'normal');
|
332 |
+
|
333 |
//layout
|
334 |
$layout = get_post_meta($acf->ID, 'field_group_layout', true) ? get_post_meta($acf->ID, 'field_group_layout', true) : 'in_box';
|
335 |
if($layout == 'in_box')
|
342 |
}
|
343 |
update_post_meta($acf->ID, 'layout', $layout);
|
344 |
delete_post_meta($acf->ID, 'field_group_layout');
|
345 |
+
|
346 |
// show_on_page
|
347 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
348 |
if($show_on_page)
|
350 |
$show_on_page = unserialize($show_on_page);
|
351 |
}
|
352 |
update_post_meta($acf->ID, 'show_on_page', $show_on_page);
|
353 |
+
|
354 |
}
|
355 |
}
|
356 |
+
|
357 |
$return = array(
|
358 |
'status' => true,
|
359 |
'message' => "Migrating Options...",
|
360 |
'next' => '3.0.0 (step 2)',
|
361 |
);
|
362 |
+
|
363 |
break;
|
364 |
+
|
365 |
/*---------------------
|
366 |
*
|
367 |
* 3.0.0
|
368 |
+
*
|
369 |
*--------------------*/
|
370 |
+
|
371 |
case '3.0.0 (step 2)':
|
372 |
+
|
373 |
// get acf's
|
374 |
$acfs = get_posts(array(
|
375 |
'numberposts' => -1,
|
378 |
'order' => 'asc',
|
379 |
'suppress_filters' => false,
|
380 |
));
|
381 |
+
|
382 |
if($acfs)
|
383 |
{
|
384 |
foreach($acfs as $acf)
|
385 |
{
|
386 |
// allorany doesn't need to change!
|
387 |
+
|
388 |
$rules = $wpdb->get_results("SELECT * FROM $acf_rules WHERE acf_id = '$acf->ID' ORDER BY order_no ASC", ARRAY_A);
|
389 |
+
|
390 |
if($rules)
|
391 |
{
|
392 |
foreach($rules as $rule)
|
396 |
{
|
397 |
$rule['value'] = 'Options';
|
398 |
}
|
399 |
+
|
400 |
add_post_meta($acf->ID, 'rule', $rule);
|
401 |
}
|
402 |
}
|
403 |
+
|
404 |
+
}
|
405 |
}
|
406 |
+
|
407 |
$return = array(
|
408 |
'status' => true,
|
409 |
'message' => "Migrating Location Rules...",
|
410 |
'next' => '3.0.0 (step 3)',
|
411 |
);
|
412 |
+
|
413 |
break;
|
414 |
+
|
415 |
/*---------------------
|
416 |
*
|
417 |
* 3.0.0
|
418 |
+
*
|
419 |
*--------------------*/
|
420 |
+
|
421 |
case '3.0.0 (step 3)':
|
422 |
+
|
423 |
$message = "Migrating Fields?";
|
424 |
+
|
425 |
$parent_id = 0;
|
426 |
$fields = $wpdb->get_results("SELECT * FROM $acf_fields WHERE parent_id = $parent_id ORDER BY order_no, name", ARRAY_A);
|
427 |
+
|
428 |
if($fields)
|
429 |
{
|
430 |
// loop through fields
|
431 |
foreach($fields as $field)
|
432 |
{
|
433 |
+
|
434 |
// unserialize options
|
435 |
if(@unserialize($field['options']))
|
436 |
{
|
440 |
{
|
441 |
$field['options'] = array();
|
442 |
}
|
443 |
+
|
444 |
+
|
445 |
// sub fields
|
446 |
if($field['type'] == 'repeater')
|
447 |
{
|
448 |
$field['options']['sub_fields'] = array();
|
449 |
+
|
450 |
$parent_id = $field['id'];
|
451 |
$sub_fields = $wpdb->get_results("SELECT * FROM $acf_fields WHERE parent_id = $parent_id ORDER BY order_no, name", ARRAY_A);
|
452 |
+
|
453 |
+
|
454 |
+
// if fields are empty, this must be a new or broken acf.
|
455 |
if(empty($sub_fields))
|
456 |
{
|
457 |
$field['options']['sub_fields'] = array();
|
470 |
{
|
471 |
$sub_field['options'] = array();
|
472 |
}
|
473 |
+
|
474 |
// merge options with field
|
475 |
$sub_field = array_merge($sub_field, $sub_field['options']);
|
476 |
+
|
477 |
unset($sub_field['options']);
|
478 |
+
|
479 |
// each field has a unique id!
|
480 |
if(!isset($sub_field['key'])) $sub_field['key'] = 'field_' . $sub_field['id'];
|
481 |
+
|
482 |
$field['options']['sub_fields'][] = $sub_field;
|
483 |
}
|
484 |
}
|
485 |
+
|
486 |
}
|
487 |
// end if sub field
|
488 |
+
|
489 |
+
|
490 |
// merge options with field
|
491 |
$field = array_merge($field, $field['options']);
|
492 |
+
|
493 |
unset($field['options']);
|
494 |
+
|
495 |
// each field has a unique id!
|
496 |
if(!isset($field['key'])) $field['key'] = 'field_' . $field['id'];
|
497 |
+
|
498 |
// update field
|
499 |
$this->parent->update_field( $field['post_id'], $field);
|
500 |
+
|
501 |
// create field name (field_rand)
|
502 |
//$message .= print_r($field, true) . '<br /><br />';
|
503 |
}
|
504 |
// end foreach $fields
|
505 |
}
|
506 |
+
|
507 |
+
|
508 |
$return = array(
|
509 |
'status' => true,
|
510 |
'message' => $message,
|
511 |
'next' => '3.0.0 (step 4)',
|
512 |
);
|
513 |
+
|
514 |
break;
|
515 |
+
|
516 |
/*---------------------
|
517 |
*
|
518 |
* 3.0.0
|
519 |
+
*
|
520 |
*--------------------*/
|
521 |
+
|
522 |
case '3.0.0 (step 4)':
|
523 |
+
|
524 |
$message = "Migrating Values...";
|
525 |
+
|
526 |
// update normal values
|
527 |
$values = $wpdb->get_results("SELECT v.field_id, m.post_id, m.meta_key, m.meta_value FROM $acf_values v LEFT JOIN $wp_postmeta m ON v.value = m.meta_id WHERE v.sub_field_id = 0", ARRAY_A);
|
528 |
if($values)
|
531 |
{
|
532 |
// options page
|
533 |
if($value['post_id'] == 0) $value['post_id'] = 999999999;
|
534 |
+
|
535 |
// unserialize value (relationship, multi select, etc)
|
536 |
if(@unserialize($value['meta_value']))
|
537 |
{
|
538 |
$value['meta_value'] = unserialize($value['meta_value']);
|
539 |
+
}
|
540 |
+
|
541 |
update_post_meta($value['post_id'], $value['meta_key'], $value['meta_value']);
|
542 |
update_post_meta($value['post_id'], '_' . $value['meta_key'], 'field_' . $value['field_id']);
|
543 |
}
|
544 |
}
|
545 |
+
|
546 |
// update repeater values
|
547 |
$values = $wpdb->get_results("SELECT v.field_id, v.sub_field_id, v.order_no, m.post_id, m.meta_key, m.meta_value FROM $acf_values v LEFT JOIN $wp_postmeta m ON v.value = m.meta_id WHERE v.sub_field_id != 0", ARRAY_A);
|
548 |
if($values)
|
549 |
{
|
550 |
$rows = array();
|
551 |
+
|
552 |
foreach($values as $value)
|
553 |
{
|
554 |
// update row count
|
555 |
$row = (int) $value['order_no'] + 1;
|
556 |
+
|
557 |
// options page
|
558 |
if($value['post_id'] == 0) $value['post_id'] = 999999999;
|
559 |
+
|
560 |
// unserialize value (relationship, multi select, etc)
|
561 |
if(@unserialize($value['meta_value']))
|
562 |
{
|
563 |
$value['meta_value'] = unserialize($value['meta_value']);
|
564 |
}
|
565 |
+
|
566 |
// current row
|
567 |
$current_row = isset($rows[$value['post_id']][$value['field_id']]) ? $rows[$value['post_id']][$value['field_id']] : 0;
|
568 |
if($row > $current_row) $rows[$value['post_id']][$value['field_id']] = (int) $row;
|
569 |
+
|
570 |
// get field name
|
571 |
$field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $value['field_id']));
|
572 |
+
|
573 |
// get sub field name
|
574 |
$sub_field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $value['sub_field_id']));
|
575 |
+
|
576 |
// save new value
|
577 |
$new_meta_key = $field_name . '_' . $value['order_no'] . '_' . $sub_field_name;
|
578 |
update_post_meta($value['post_id'], $new_meta_key , $value['meta_value']);
|
579 |
+
|
580 |
// save value hidden field id
|
581 |
update_post_meta($value['post_id'], '_' . $new_meta_key, 'field_' . $value['sub_field_id']);
|
582 |
}
|
583 |
+
|
584 |
foreach($rows as $post_id => $field_ids)
|
585 |
{
|
586 |
foreach($field_ids as $field_id => $row_count)
|
587 |
{
|
588 |
// get sub field name
|
589 |
$field_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM $acf_fields WHERE id = %d", $field_id));
|
590 |
+
|
591 |
delete_post_meta($post_id, $field_name);
|
592 |
update_post_meta($post_id, $field_name, $row_count);
|
593 |
update_post_meta($post_id, '_' . $field_name, 'field_' . $field_id);
|
594 |
+
|
595 |
}
|
596 |
}
|
597 |
+
|
598 |
}
|
599 |
+
|
600 |
// update version (only upgrade 1 time)
|
601 |
update_option('acf_version','3.0.0');
|
602 |
+
|
603 |
$return = array(
|
604 |
'status' => true,
|
605 |
'message' => $message,
|
606 |
'next' => '3.1.8',
|
607 |
);
|
608 |
+
|
609 |
break;
|
610 |
+
|
611 |
+
|
612 |
/*---------------------
|
613 |
*
|
614 |
* 3.1.8
|
615 |
+
*
|
616 |
*--------------------*/
|
617 |
+
|
618 |
case '3.1.8':
|
619 |
+
|
620 |
// vars
|
621 |
$message = __("Migrating options values from the $wp_postmeta table to the $wp_options table",'acf') . '...';
|
622 |
+
|
623 |
// update normal values
|
624 |
$rows = $wpdb->get_results( $wpdb->prepare("SELECT meta_key FROM $wp_postmeta WHERE post_id = %d", 999999999) , ARRAY_A);
|
625 |
+
|
626 |
if($rows)
|
627 |
{
|
628 |
foreach($rows as $row)
|
629 |
{
|
630 |
// original name
|
631 |
$field_name = $row['meta_key'];
|
632 |
+
|
633 |
+
|
634 |
// name
|
635 |
$new_name = "";
|
636 |
if( substr($field_name, 0, 1) == "_" )
|
641 |
{
|
642 |
$new_name = 'options_' . $field_name;
|
643 |
}
|
644 |
+
|
645 |
+
|
646 |
// value
|
647 |
$value = get_post_meta( 999999999, $field_name, true );
|
648 |
+
|
649 |
+
|
650 |
// update option
|
651 |
update_option( $new_name, $value );
|
652 |
+
|
653 |
+
|
654 |
// deleet old postmeta
|
655 |
delete_post_meta( 999999999, $field_name );
|
656 |
+
|
657 |
}
|
658 |
// foreach($values as $value)
|
659 |
}
|
660 |
// if($values)
|
661 |
+
|
662 |
+
|
663 |
// update version
|
664 |
update_option('acf_version','3.1.8');
|
665 |
+
|
666 |
$return = array(
|
667 |
'status' => true,
|
668 |
'message' => $message,
|
669 |
'next' => '3.2.5',
|
670 |
);
|
671 |
+
|
672 |
break;
|
673 |
+
|
674 |
+
|
675 |
/*---------------------
|
676 |
*
|
677 |
* 3.1.8
|
678 |
+
*
|
679 |
*--------------------*/
|
680 |
+
|
681 |
case '3.2.5':
|
682 |
+
|
683 |
// vars
|
684 |
$message = __("Modifying field group options 'show on page'",'acf') . '...';
|
685 |
+
|
686 |
+
|
687 |
// get acf's
|
688 |
$acfs = get_posts(array(
|
689 |
'numberposts' => -1,
|
692 |
'order' => 'asc',
|
693 |
'suppress_filters' => false,
|
694 |
));
|
695 |
+
|
696 |
+
|
697 |
$show_all = array('the_content', 'discussion', 'custom_fields', 'comments', 'slug', 'author');
|
698 |
+
|
699 |
+
|
700 |
// populate acfs
|
701 |
if($acfs)
|
702 |
{
|
703 |
foreach($acfs as $acf)
|
704 |
{
|
705 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
706 |
+
|
707 |
$hide_on_screen = array_diff($show_all, $show_on_page);
|
708 |
+
|
709 |
update_post_meta($acf->ID, 'hide_on_screen', $hide_on_screen);
|
710 |
delete_post_meta($acf->ID, 'show_on_page');
|
711 |
+
|
712 |
}
|
713 |
}
|
714 |
+
|
715 |
+
|
716 |
// update version
|
717 |
update_option('acf_version','3.2.5');
|
718 |
+
|
719 |
$return = array(
|
720 |
'status' => true,
|
721 |
'message' => $message,
|
722 |
'next' => '3.3.3',
|
723 |
);
|
724 |
+
|
725 |
break;
|
726 |
+
|
727 |
+
|
728 |
/*
|
729 |
* 3.3.3
|
730 |
*
|
731 |
* @description: changed field option: taxonomies filter on relationship / post object and page link fields.
|
732 |
* @created: 20/07/12
|
733 |
*/
|
734 |
+
|
735 |
case '3.3.3':
|
736 |
+
|
737 |
// vars
|
738 |
$message = __("Modifying field option 'taxonomy'",'acf') . '...';
|
739 |
$wp_term_taxonomy = $wpdb->prefix.'term_taxonomy';
|
740 |
$term_taxonomies = array();
|
741 |
+
|
742 |
$rows = $wpdb->get_results("SELECT * FROM $wp_term_taxonomy", ARRAY_A);
|
743 |
+
|
744 |
if($rows)
|
745 |
{
|
746 |
foreach($rows as $row)
|
748 |
$term_taxonomies[ $row['term_id'] ] = $row['taxonomy'] . ":" . $row['term_id'];
|
749 |
}
|
750 |
}
|
751 |
+
|
752 |
+
|
753 |
// get acf's
|
754 |
$acfs = get_posts(array(
|
755 |
'numberposts' => -1,
|
758 |
'order' => 'asc',
|
759 |
'suppress_filters' => false,
|
760 |
));
|
761 |
+
|
762 |
// populate acfs
|
763 |
if($acfs)
|
764 |
{
|
765 |
foreach($acfs as $acf)
|
766 |
{
|
767 |
$fields = $this->parent->get_acf_fields($acf->ID);
|
768 |
+
|
769 |
if( $fields )
|
770 |
{
|
771 |
foreach( $fields as $field )
|
772 |
{
|
773 |
+
|
774 |
// only edit the option: taxonomy
|
775 |
if( !isset($field['taxonomy']) )
|
776 |
{
|
777 |
continue;
|
778 |
}
|
779 |
+
|
780 |
+
|
781 |
if( is_array($field['taxonomy']) )
|
782 |
{
|
783 |
foreach( $field['taxonomy'] as $k => $v )
|
784 |
{
|
785 |
+
|
786 |
// could be "all"
|
787 |
if( !is_numeric($v) )
|
788 |
{
|
789 |
continue;
|
790 |
}
|
791 |
+
|
792 |
$field['taxonomy'][ $k ] = $term_taxonomies[ $v ];
|
793 |
+
|
794 |
+
|
795 |
}
|
796 |
+
// foreach( $field['taxonomy'] as $k => $v )
|
797 |
}
|
798 |
// if( $field['taxonomy'] )
|
799 |
+
|
800 |
+
|
801 |
$this->parent->update_field( $acf->ID, $field);
|
802 |
+
|
803 |
}
|
804 |
// foreach( $fields as $field )
|
805 |
}
|
808 |
// foreach($acfs as $acf)
|
809 |
}
|
810 |
// if($acfs)
|
811 |
+
|
812 |
+
|
813 |
// update version
|
814 |
update_option('acf_version','3.3.3');
|
815 |
+
|
816 |
$return = array(
|
817 |
'status' => true,
|
818 |
'message' => $message,
|
819 |
'next' => '3.4.1',
|
820 |
);
|
821 |
+
|
822 |
break;
|
823 |
+
|
824 |
+
|
825 |
/*
|
826 |
* 3.4.1
|
827 |
*
|
828 |
* @description: Move user custom fields from wp_options to wp_usermeta
|
829 |
* @created: 20/07/12
|
830 |
*/
|
831 |
+
|
832 |
case '3.4.1':
|
833 |
+
|
834 |
// vars
|
835 |
$message = __("Moving user custom fields from wp_options to wp_usermeta'",'acf') . '...';
|
836 |
+
|
837 |
$option_row_ids = array();
|
838 |
$option_rows = $wpdb->get_results("SELECT option_id, option_name, option_value FROM $wpdb->options WHERE option_name LIKE 'user%' OR option_name LIKE '\_user%'", ARRAY_A);
|
839 |
+
|
840 |
+
|
841 |
if( $option_rows )
|
842 |
{
|
843 |
foreach( $option_rows as $k => $row)
|
844 |
{
|
845 |
preg_match('/user_([0-9]+)_(.*)/', $row['option_name'], $matches);
|
846 |
+
|
847 |
+
|
848 |
// if no matches, this is not an acf value, ignore it
|
849 |
if( !$matches )
|
850 |
{
|
851 |
continue;
|
852 |
}
|
853 |
+
|
854 |
+
|
855 |
// add to $delete_option_rows
|
856 |
$option_row_ids[] = $row['option_id'];
|
857 |
+
|
858 |
+
|
859 |
// meta_key prefix
|
860 |
$meta_key_prefix = "";
|
861 |
if( substr($row['option_name'], 0, 1) == "_" )
|
862 |
{
|
863 |
$meta_key_prefix = '_';
|
864 |
}
|
865 |
+
|
866 |
+
|
867 |
// update user meta
|
868 |
update_user_meta( $matches[1], $meta_key_prefix . $matches[2], $row['option_value'] );
|
869 |
|
870 |
}
|
871 |
}
|
872 |
+
|
873 |
+
|
874 |
// clear up some memory ( aprox 14 kb )
|
875 |
unset( $option_rows );
|
876 |
+
|
877 |
+
|
878 |
// remove $option_row_ids
|
879 |
if( $option_row_ids )
|
880 |
{
|
881 |
$option_row_ids = implode(', ', $option_row_ids);
|
882 |
+
|
883 |
$wpdb->query("DELETE FROM $wpdb->options WHERE option_id IN ($option_row_ids)");
|
884 |
}
|
885 |
+
|
886 |
+
|
887 |
// update version
|
888 |
update_option('acf_version','3.4.1');
|
889 |
+
|
890 |
$return = array(
|
891 |
'status' => true,
|
892 |
'message' => $message,
|
893 |
'next' => false,
|
894 |
);
|
895 |
+
|
896 |
break;
|
897 |
+
|
898 |
+
|
899 |
}
|
900 |
+
|
901 |
// return json
|
902 |
echo json_encode($return);
|
903 |
die;
|
904 |
|
905 |
}
|
906 |
|
907 |
+
|
908 |
+
|
909 |
+
|
910 |
}
|
911 |
|
912 |
new acf_upgrade();
|
core/fields/_base.php
CHANGED
@@ -150,7 +150,13 @@ class acf_field
|
|
150 |
{
|
151 |
if( !empty($this->defaults) )
|
152 |
{
|
153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
}
|
155 |
|
156 |
return $field;
|
150 |
{
|
151 |
if( !empty($this->defaults) )
|
152 |
{
|
153 |
+
foreach( $this->defaults as $k => $v )
|
154 |
+
{
|
155 |
+
if( !isset($field[ $k ]) )
|
156 |
+
{
|
157 |
+
$field[ $k ] = $v;
|
158 |
+
}
|
159 |
+
}
|
160 |
}
|
161 |
|
162 |
return $field;
|
core/fields/_functions.php
CHANGED
@@ -52,8 +52,9 @@ class acf_field_functions
|
|
52 |
|
53 |
function load_value($value, $post_id, $field)
|
54 |
{
|
55 |
-
$cache = wp_cache_get( 'load_value/post_id=' . $post_id . '/name=' . $field['name'], 'acf' );
|
56 |
-
|
|
|
57 |
{
|
58 |
return $cache;
|
59 |
}
|
@@ -90,7 +91,7 @@ class acf_field_functions
|
|
90 |
}
|
91 |
else
|
92 |
{
|
93 |
-
$v = get_option( $post_id . '_' . $field['name'],
|
94 |
|
95 |
if( !is_null($value) )
|
96 |
{
|
@@ -164,13 +165,21 @@ class acf_field_functions
|
|
164 |
/*
|
165 |
* update_value
|
166 |
*
|
167 |
-
*
|
168 |
-
*
|
169 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
*/
|
171 |
|
172 |
function update_value( $value, $post_id, $field )
|
173 |
{
|
|
|
174 |
// strip slashes
|
175 |
// - not needed? http://support.advancedcustomfields.com/discussion/3168/backslashes-stripped-in-wysiwyg-filed
|
176 |
//if( get_magic_quotes_gpc() )
|
@@ -179,13 +188,13 @@ class acf_field_functions
|
|
179 |
//}
|
180 |
|
181 |
|
182 |
-
// apply filters
|
183 |
-
foreach( array('
|
184 |
{
|
185 |
// run filters
|
186 |
$value = apply_filters('acf/update_value/' . $key . '=' . $field[ $key ], $value, $post_id, $field); // new filter
|
187 |
}
|
188 |
-
|
189 |
|
190 |
// if $post_id is a string, then it is used in the everything fields and can be found in the options table
|
191 |
if( is_numeric($post_id) )
|
@@ -214,6 +223,7 @@ class acf_field_functions
|
|
214 |
|
215 |
// update the cache
|
216 |
wp_cache_set( 'load_value/post_id=' . $post_id . '/name=' . $field['name'], $value, 'acf' );
|
|
|
217 |
}
|
218 |
|
219 |
|
@@ -321,6 +331,11 @@ class acf_field_functions
|
|
321 |
$field = maybe_unserialize( $field );
|
322 |
$field = maybe_unserialize( $field ); // run again for WPML
|
323 |
}
|
|
|
|
|
|
|
|
|
|
|
324 |
}
|
325 |
}
|
326 |
|
52 |
|
53 |
function load_value($value, $post_id, $field)
|
54 |
{
|
55 |
+
$cache = wp_cache_get( 'load_value/post_id=' . $post_id . '/name=' . $field['name'], 'acf', false, $found = false );
|
56 |
+
|
57 |
+
if( $found )
|
58 |
{
|
59 |
return $cache;
|
60 |
}
|
91 |
}
|
92 |
else
|
93 |
{
|
94 |
+
$v = get_option( $post_id . '_' . $field['name'], false );
|
95 |
|
96 |
if( !is_null($value) )
|
97 |
{
|
165 |
/*
|
166 |
* update_value
|
167 |
*
|
168 |
+
* updates a value into the db
|
169 |
+
*
|
170 |
+
* @type action
|
171 |
+
* @date 23/01/13
|
172 |
+
*
|
173 |
+
* @param {mixed} $value the value to be saved
|
174 |
+
* @param {int} $post_id the post ID to save the value to
|
175 |
+
* @param {array} $field the field array
|
176 |
+
* @param {boolean} $exact allows the update_value filter to be skipped
|
177 |
+
* @return N/A
|
178 |
*/
|
179 |
|
180 |
function update_value( $value, $post_id, $field )
|
181 |
{
|
182 |
+
|
183 |
// strip slashes
|
184 |
// - not needed? http://support.advancedcustomfields.com/discussion/3168/backslashes-stripped-in-wysiwyg-filed
|
185 |
//if( get_magic_quotes_gpc() )
|
188 |
//}
|
189 |
|
190 |
|
191 |
+
// apply filters
|
192 |
+
foreach( array('key', 'name', 'type') as $key )
|
193 |
{
|
194 |
// run filters
|
195 |
$value = apply_filters('acf/update_value/' . $key . '=' . $field[ $key ], $value, $post_id, $field); // new filter
|
196 |
}
|
197 |
+
|
198 |
|
199 |
// if $post_id is a string, then it is used in the everything fields and can be found in the options table
|
200 |
if( is_numeric($post_id) )
|
223 |
|
224 |
// update the cache
|
225 |
wp_cache_set( 'load_value/post_id=' . $post_id . '/name=' . $field['name'], $value, 'acf' );
|
226 |
+
|
227 |
}
|
228 |
|
229 |
|
331 |
$field = maybe_unserialize( $field );
|
332 |
$field = maybe_unserialize( $field ); // run again for WPML
|
333 |
}
|
334 |
+
|
335 |
+
|
336 |
+
// add field_group ID
|
337 |
+
$field['field_group'] = $row['post_id'];
|
338 |
+
|
339 |
}
|
340 |
}
|
341 |
|
core/fields/number.php
CHANGED
@@ -44,6 +44,14 @@ class acf_field_number extends acf_field
|
|
44 |
|
45 |
function create_field( $field )
|
46 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
$o = array( 'id', 'class', 'min', 'max', 'step', 'name', 'value' );
|
48 |
|
49 |
$e = '<input type="number"';
|
@@ -55,6 +63,8 @@ class acf_field_number extends acf_field
|
|
55 |
|
56 |
$e .= ' />';
|
57 |
|
|
|
|
|
58 |
echo $e;
|
59 |
|
60 |
}
|
44 |
|
45 |
function create_field( $field )
|
46 |
{
|
47 |
+
// step
|
48 |
+
if( !$field['step'] )
|
49 |
+
{
|
50 |
+
$field['step'] = 'any';
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
// vars
|
55 |
$o = array( 'id', 'class', 'min', 'max', 'step', 'name', 'value' );
|
56 |
|
57 |
$e = '<input type="number"';
|
63 |
|
64 |
$e .= ' />';
|
65 |
|
66 |
+
|
67 |
+
// return
|
68 |
echo $e;
|
69 |
|
70 |
}
|
core/fields/radio.php
CHANGED
@@ -18,9 +18,11 @@ class acf_field_radio extends acf_field
|
|
18 |
$this->label = __("Radio Button",'acf');
|
19 |
$this->category = __("Choice",'acf');
|
20 |
$this->defaults = array(
|
21 |
-
'layout'
|
22 |
-
'choices'
|
23 |
-
'default_value'
|
|
|
|
|
24 |
);
|
25 |
|
26 |
|
@@ -45,17 +47,18 @@ class acf_field_radio extends acf_field
|
|
45 |
function create_field( $field )
|
46 |
{
|
47 |
// vars
|
48 |
-
echo '<ul class="radio_list ' . $field['class'] . ' ' . $field['layout'] . '">';
|
49 |
-
|
50 |
-
|
51 |
$i = 0;
|
52 |
-
|
|
|
|
|
|
|
|
|
53 |
{
|
54 |
foreach( $field['choices'] as $key => $value )
|
55 |
{
|
56 |
// vars
|
57 |
$i++;
|
58 |
-
$
|
59 |
|
60 |
|
61 |
// if there is no value and this is the first of the choices, select this on by default
|
@@ -63,25 +66,47 @@ class acf_field_radio extends acf_field
|
|
63 |
{
|
64 |
if( $i === 1 )
|
65 |
{
|
66 |
-
$
|
67 |
}
|
68 |
}
|
69 |
else
|
70 |
{
|
71 |
if( strval($key) === strval($field['value']) )
|
72 |
{
|
73 |
-
$
|
74 |
}
|
75 |
}
|
76 |
|
77 |
|
78 |
// HTML
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
|
|
|
|
|
|
81 |
}
|
82 |
|
83 |
|
84 |
-
|
|
|
|
|
|
|
85 |
}
|
86 |
|
87 |
|
@@ -137,6 +162,30 @@ class acf_field_radio extends acf_field
|
|
137 |
));
|
138 |
|
139 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
</td>
|
141 |
</tr>
|
142 |
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
@@ -180,6 +229,47 @@ class acf_field_radio extends acf_field
|
|
180 |
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
}
|
184 |
|
185 |
new acf_field_radio();
|
18 |
$this->label = __("Radio Button",'acf');
|
19 |
$this->category = __("Choice",'acf');
|
20 |
$this->defaults = array(
|
21 |
+
'layout' => 'vertical',
|
22 |
+
'choices' => array(),
|
23 |
+
'default_value' => '',
|
24 |
+
'other_choice' => 0,
|
25 |
+
'save_other_choice' => 0,
|
26 |
);
|
27 |
|
28 |
|
47 |
function create_field( $field )
|
48 |
{
|
49 |
// vars
|
|
|
|
|
|
|
50 |
$i = 0;
|
51 |
+
$e = '<ul class="acf-radio-list ' . esc_attr($field['class']) . ' ' . esc_attr($field['layout']) . '">';
|
52 |
+
|
53 |
+
|
54 |
+
// add choices
|
55 |
+
if( is_array($field['choices']) )
|
56 |
{
|
57 |
foreach( $field['choices'] as $key => $value )
|
58 |
{
|
59 |
// vars
|
60 |
$i++;
|
61 |
+
$atts = '';
|
62 |
|
63 |
|
64 |
// if there is no value and this is the first of the choices, select this on by default
|
66 |
{
|
67 |
if( $i === 1 )
|
68 |
{
|
69 |
+
$atts = 'checked="checked" data-checked="checked"';
|
70 |
}
|
71 |
}
|
72 |
else
|
73 |
{
|
74 |
if( strval($key) === strval($field['value']) )
|
75 |
{
|
76 |
+
$atts = 'checked="checked" data-checked="checked"';
|
77 |
}
|
78 |
}
|
79 |
|
80 |
|
81 |
// HTML
|
82 |
+
$e .= '<li><label><input id="' . esc_attr($field['id']) . '-' . esc_attr($key) . '" type="radio" name="' . esc_attr($field['name']) . '" value="' . esc_attr($key) . '" ' . esc_attr( $atts ) . ' />' . $value . '</label></li>';
|
83 |
+
}
|
84 |
+
}
|
85 |
+
|
86 |
+
|
87 |
+
// other choice
|
88 |
+
if( $field['other_choice'] )
|
89 |
+
{
|
90 |
+
// vars
|
91 |
+
$atts = '';
|
92 |
+
$atts2 = 'name="" value="" style="display:none"';
|
93 |
+
|
94 |
+
|
95 |
+
if( !isset($field['choices'][ $field['value'] ]) )
|
96 |
+
{
|
97 |
+
$atts = 'checked="checked" data-checked="checked"';
|
98 |
+
$atts2 = 'name="' . esc_attr($field['name']) . '" value="' . esc_attr($field['value']) . '"' ;
|
99 |
}
|
100 |
+
|
101 |
+
|
102 |
+
$e .= '<li><label><input id="' . esc_attr($field['id']) . '-other" type="radio" name="' . esc_attr($field['name']) . '" value="other" ' . $atts . ' />' . __("Other", 'acf') . '</label> <input type="text" ' . $atts2 . ' /></li>';
|
103 |
}
|
104 |
|
105 |
|
106 |
+
$e .= '</ul>';
|
107 |
+
|
108 |
+
echo $e;
|
109 |
+
|
110 |
}
|
111 |
|
112 |
|
162 |
));
|
163 |
|
164 |
?>
|
165 |
+
<div class="radio-option-other_choice">
|
166 |
+
<?php
|
167 |
+
|
168 |
+
do_action('acf/create_field', array(
|
169 |
+
'type' => 'true_false',
|
170 |
+
'name' => 'fields['.$key.'][other_choice]',
|
171 |
+
'value' => $field['other_choice'],
|
172 |
+
'message' => __("Add 'other' choice to allow for custom values", 'acf')
|
173 |
+
));
|
174 |
+
|
175 |
+
?>
|
176 |
+
</div>
|
177 |
+
<div class="radio-option-save_other_choice" <?php if( !$field['other_choice'] ): ?>style="display:none"<?php endif; ?>>
|
178 |
+
<?php
|
179 |
+
|
180 |
+
do_action('acf/create_field', array(
|
181 |
+
'type' => 'true_false',
|
182 |
+
'name' => 'fields['.$key.'][save_other_choice]',
|
183 |
+
'value' => $field['save_other_choice'],
|
184 |
+
'message' => __("Save 'other' values to the field's choices", 'acf')
|
185 |
+
));
|
186 |
+
|
187 |
+
?>
|
188 |
+
</div>
|
189 |
</td>
|
190 |
</tr>
|
191 |
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
229 |
|
230 |
}
|
231 |
|
232 |
+
|
233 |
+
/*
|
234 |
+
* update_value()
|
235 |
+
*
|
236 |
+
* This filter is appied to the $value before it is updated in the db
|
237 |
+
*
|
238 |
+
* @type filter
|
239 |
+
* @since 3.6
|
240 |
+
* @date 23/01/13
|
241 |
+
*
|
242 |
+
* @param $value - the value which will be saved in the database
|
243 |
+
* @param $post_id - the $post_id of which the value will be saved
|
244 |
+
* @param $field - the field array holding all the field options
|
245 |
+
*
|
246 |
+
* @return $value - the modified value
|
247 |
+
*/
|
248 |
+
|
249 |
+
function update_value( $value, $post_id, $field )
|
250 |
+
{
|
251 |
+
// validate
|
252 |
+
if( $field['save_other_choice'] )
|
253 |
+
{
|
254 |
+
// value isn't in choices yet
|
255 |
+
if( !isset($field['choices'][ $value ]) )
|
256 |
+
{
|
257 |
+
// update $field
|
258 |
+
$field['choices'][ $value ] = $value;
|
259 |
+
|
260 |
+
|
261 |
+
// can save
|
262 |
+
if( isset($field['field_group']) )
|
263 |
+
{
|
264 |
+
do_action('acf/update_field', $field, $field['field_group']);
|
265 |
+
}
|
266 |
+
|
267 |
+
}
|
268 |
+
}
|
269 |
+
|
270 |
+
return $value;
|
271 |
+
}
|
272 |
+
|
273 |
}
|
274 |
|
275 |
new acf_field_radio();
|
core/fields/select.php
CHANGED
@@ -333,11 +333,11 @@ class acf_field_select extends acf_field
|
|
333 |
if(strpos($choice, ' : ') !== false)
|
334 |
{
|
335 |
$choice = explode(' : ', $choice);
|
336 |
-
$new_choices[trim($choice[0])] = trim($choice[1]);
|
337 |
}
|
338 |
else
|
339 |
{
|
340 |
-
$new_choices[trim($choice)] = trim($choice);
|
341 |
}
|
342 |
}
|
343 |
}
|
333 |
if(strpos($choice, ' : ') !== false)
|
334 |
{
|
335 |
$choice = explode(' : ', $choice);
|
336 |
+
$new_choices[ trim($choice[0]) ] = trim($choice[1]);
|
337 |
}
|
338 |
else
|
339 |
{
|
340 |
+
$new_choices[ trim($choice) ] = trim($choice);
|
341 |
}
|
342 |
}
|
343 |
}
|
core/views/meta_box_fields.php
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
*
|
5 |
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* @
|
|
|
9 |
*/
|
10 |
|
11 |
|
@@ -21,7 +22,7 @@ $fields = apply_filters('acf/field_group/get_fields', array(), $post->ID);
|
|
21 |
$fields[] = apply_filters('acf/load_field_defaults', array(
|
22 |
'key' => 'field_clone',
|
23 |
'label' => __("New Field",'acf'),
|
24 |
-
'name' =>
|
25 |
'type' => 'text',
|
26 |
));
|
27 |
|
@@ -56,15 +57,23 @@ $conditional_logic_rule = array(
|
|
56 |
|
57 |
$error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
?>
|
60 |
|
61 |
<!-- Hidden Fields -->
|
62 |
<div style="display:none;">
|
63 |
<script type="text/javascript">
|
64 |
-
acf.
|
65 |
-
acf.text.checked = "<?php _e("checked",'acf'); ?>";
|
66 |
-
acf.text.conditional_no_fields = "<?php _e('No toggle fields available','acf'); ?>";
|
67 |
-
acf.text.copy = "<?php _e('copy','acf'); ?>";
|
68 |
</script>
|
69 |
<input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'field_group' ); ?>" />
|
70 |
</div>
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Meta box - fields
|
5 |
*
|
6 |
+
* This template file is used when editing a field group and creates the interface for editing fields.
|
7 |
+
*
|
8 |
+
* @type template
|
9 |
+
* @date 26/01/13
|
10 |
*/
|
11 |
|
12 |
|
22 |
$fields[] = apply_filters('acf/load_field_defaults', array(
|
23 |
'key' => 'field_clone',
|
24 |
'label' => __("New Field",'acf'),
|
25 |
+
'name' => 'new_field',
|
26 |
'type' => 'text',
|
27 |
));
|
28 |
|
57 |
|
58 |
$error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
|
59 |
|
60 |
+
|
61 |
+
// l10n
|
62 |
+
$l10n = array(
|
63 |
+
'move_to_trash' => __("Move to trash. Are you sure?",'acf'),
|
64 |
+
'checked' => __("checked",'acf'),
|
65 |
+
'conditional_no_fields' => __("No toggle fields available",'acf'),
|
66 |
+
'title' => __("Field group title is required",'acf'),
|
67 |
+
'copy' => __("copy",'acf'),
|
68 |
+
'or' => __("or",'acf')
|
69 |
+
);
|
70 |
+
|
71 |
?>
|
72 |
|
73 |
<!-- Hidden Fields -->
|
74 |
<div style="display:none;">
|
75 |
<script type="text/javascript">
|
76 |
+
acf.l10n = <?php echo json_encode( $l10n ); ?>;
|
|
|
|
|
|
|
77 |
</script>
|
78 |
<input type="hidden" name="acf_nonce" value="<?php echo wp_create_nonce( 'field_group' ); ?>" />
|
79 |
</div>
|
core/views/meta_box_location.php
CHANGED
@@ -1,12 +1,15 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Meta
|
5 |
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
8 |
*/
|
9 |
|
|
|
10 |
// global
|
11 |
global $post;
|
12 |
|
@@ -162,12 +165,4 @@ if( empty($groups) )
|
|
162 |
</td>
|
163 |
</tr>
|
164 |
</tbody>
|
165 |
-
</table>
|
166 |
-
<script type="text/html" id="acf_location_options_deactivated">
|
167 |
-
<optgroup label="<?php _e("Options",'acf'); ?>" disabled="true">
|
168 |
-
<option value="" disabled="true"><?php _e("Unlock options add-on with an activation code",'acf'); ?></option>
|
169 |
-
</optgroup>
|
170 |
-
</script>
|
171 |
-
<script type="text/javascript">
|
172 |
-
acf.text.or = "<?php _e('or','acf'); ?>";
|
173 |
-
</script>
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Meta box - locations
|
5 |
*
|
6 |
+
* This template file is used when editing a field group and creates the interface for editing location rules.
|
7 |
+
*
|
8 |
+
* @type template
|
9 |
+
* @date 23/06/12
|
10 |
*/
|
11 |
|
12 |
+
|
13 |
// global
|
14 |
global $post;
|
15 |
|
165 |
</td>
|
166 |
</tr>
|
167 |
</tbody>
|
168 |
+
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
core/views/meta_box_options.php
CHANGED
@@ -1,19 +1,21 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Meta
|
5 |
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
8 |
*/
|
9 |
-
|
10 |
|
11 |
// global
|
12 |
global $post;
|
13 |
|
14 |
|
15 |
// vars
|
16 |
-
$options =
|
17 |
|
18 |
|
19 |
?>
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Meta box - options
|
5 |
*
|
6 |
+
* This template file is used when editing a field group and creates the interface for editing options.
|
7 |
+
*
|
8 |
+
* @type template
|
9 |
+
* @date 23/06/12
|
10 |
*/
|
11 |
+
|
12 |
|
13 |
// global
|
14 |
global $post;
|
15 |
|
16 |
|
17 |
// vars
|
18 |
+
$options = apply_filters('acf/field_group/get_options', array(), $post->ID);
|
19 |
|
20 |
|
21 |
?>
|
css/global.css
CHANGED
@@ -315,7 +315,7 @@ table.acf_input select:focus {
|
|
315 |
}
|
316 |
|
317 |
|
318 |
-
ul.
|
319 |
ul.checkbox_list {
|
320 |
background: transparent !important;
|
321 |
position: relative;
|
@@ -324,18 +324,18 @@ ul.checkbox_list {
|
|
324 |
margin: 0;
|
325 |
}
|
326 |
|
327 |
-
ul.
|
328 |
ul.checkbox_list.horizontal {
|
329 |
overflow: hidden;
|
330 |
}
|
331 |
|
332 |
-
ul.
|
333 |
ul.checkbox_list.horizontal li {
|
334 |
float: left;
|
335 |
margin-right: 20px;
|
336 |
}
|
337 |
|
338 |
-
ul.
|
339 |
ul.checkbox_list li input {
|
340 |
margin-top: -1px;
|
341 |
margin-right: 5px !important;
|
315 |
}
|
316 |
|
317 |
|
318 |
+
ul.acf-radio-list,
|
319 |
ul.checkbox_list {
|
320 |
background: transparent !important;
|
321 |
position: relative;
|
324 |
margin: 0;
|
325 |
}
|
326 |
|
327 |
+
ul.acf-radio-list.horizontal,
|
328 |
ul.checkbox_list.horizontal {
|
329 |
overflow: hidden;
|
330 |
}
|
331 |
|
332 |
+
ul.acf-radio-list.horizontal li,
|
333 |
ul.checkbox_list.horizontal li {
|
334 |
float: left;
|
335 |
margin-right: 20px;
|
336 |
}
|
337 |
|
338 |
+
ul.acf-radio-list li input,
|
339 |
ul.checkbox_list li input {
|
340 |
margin-top: -1px;
|
341 |
margin-right: 5px !important;
|
css/input.css
CHANGED
@@ -9,10 +9,11 @@
|
|
9 |
}
|
10 |
|
11 |
.acf_postbox {
|
12 |
-
display: block;
|
13 |
}
|
14 |
|
15 |
-
.acf_postbox .inside
|
|
|
16 |
margin: 0;
|
17 |
padding: 0;
|
18 |
}
|
@@ -43,6 +44,7 @@
|
|
43 |
position: relative;
|
44 |
padding: 15px 10px;
|
45 |
border-bottom: #e8e8e8 solid 1px;
|
|
|
46 |
}
|
47 |
|
48 |
.acf_postbox .field:last-child {
|
9 |
}
|
10 |
|
11 |
.acf_postbox {
|
12 |
+
display: block;
|
13 |
}
|
14 |
|
15 |
+
.acf_postbox .inside,
|
16 |
+
#poststuff .acf_postbox .inside {
|
17 |
margin: 0;
|
18 |
padding: 0;
|
19 |
}
|
44 |
position: relative;
|
45 |
padding: 15px 10px;
|
46 |
border-bottom: #e8e8e8 solid 1px;
|
47 |
+
color: #333333;
|
48 |
}
|
49 |
|
50 |
.acf_postbox .field:last-child {
|
js/field-group.js
CHANGED
@@ -1,14 +1,8 @@
|
|
1 |
var acf = {
|
2 |
post_id : 0,
|
3 |
nonce : '',
|
4 |
-
text : {
|
5 |
-
|
6 |
-
'checked' : 'checked',
|
7 |
-
'conditional_no_fields' : 'No "toggle" fields available',
|
8 |
-
'title' : 'Field group title is required',
|
9 |
-
'copy' : 'copy',
|
10 |
-
'or' : "or"
|
11 |
-
},
|
12 |
helpers : {
|
13 |
uniqid : function(){},
|
14 |
sortable : function(){},
|
@@ -116,7 +110,7 @@ var acf = {
|
|
116 |
|
117 |
return retId;
|
118 |
|
119 |
-
}
|
120 |
|
121 |
|
122 |
/*
|
@@ -134,7 +128,7 @@ var acf = {
|
|
134 |
|
135 |
if( !title.val() )
|
136 |
{
|
137 |
-
alert( acf.
|
138 |
|
139 |
title.focus();
|
140 |
|
@@ -154,7 +148,7 @@ var acf = {
|
|
154 |
|
155 |
$('#submit-delete').live('click', function(){
|
156 |
|
157 |
-
var response = confirm( acf.
|
158 |
if( !response )
|
159 |
{
|
160 |
return false;
|
@@ -291,7 +285,7 @@ var acf = {
|
|
291 |
$(this).attr('name', $(this).attr('name').replace(old_id, new_id) );
|
292 |
});
|
293 |
|
294 |
-
}
|
295 |
|
296 |
|
297 |
/*
|
@@ -446,7 +440,7 @@ var acf = {
|
|
446 |
|
447 |
|
448 |
name.val('');
|
449 |
-
label.val( label.val() + ' (' + acf.
|
450 |
label.trigger('blur').trigger('keyup');
|
451 |
|
452 |
|
@@ -799,7 +793,7 @@ var acf = {
|
|
799 |
|
800 |
|
801 |
// update h4
|
802 |
-
$group2.find('h4').text( acf.
|
803 |
|
804 |
|
805 |
// remove all tr's except the first one
|
@@ -817,7 +811,7 @@ var acf = {
|
|
817 |
$group.remove();
|
818 |
|
819 |
}
|
820 |
-
}
|
821 |
|
822 |
|
823 |
|
@@ -871,7 +865,7 @@ var acf = {
|
|
871 |
// dafaults
|
872 |
var defaults = {
|
873 |
'type' : 'text',
|
874 |
-
'
|
875 |
'name' : '',
|
876 |
'value' : ''
|
877 |
};
|
@@ -883,11 +877,11 @@ var acf = {
|
|
883 |
|
884 |
if( options.type == "text" )
|
885 |
{
|
886 |
-
html += '<input class="text ' + options.
|
887 |
}
|
888 |
else if( options.type == "select" )
|
889 |
{
|
890 |
-
html += '<select class="select ' + options.
|
891 |
if( options.choices )
|
892 |
{
|
893 |
for( i = 0; i < options.choices.length; i++ )
|
@@ -940,7 +934,7 @@ var acf = {
|
|
940 |
{
|
941 |
choices.push({
|
942 |
'value' : 'null',
|
943 |
-
'label' : acf.
|
944 |
})
|
945 |
}
|
946 |
|
@@ -948,7 +942,7 @@ var acf = {
|
|
948 |
// create select
|
949 |
select = acf.helpers.create_field({
|
950 |
'type' : 'select',
|
951 |
-
'
|
952 |
'name' : name,
|
953 |
'value' : val,
|
954 |
'choices' : choices
|
@@ -1010,7 +1004,7 @@ var acf = {
|
|
1010 |
if( type == "true_false" )
|
1011 |
{
|
1012 |
choices = [
|
1013 |
-
{ value : 1, label : acf.
|
1014 |
];
|
1015 |
|
1016 |
}
|
@@ -1045,7 +1039,7 @@ var acf = {
|
|
1045 |
// create select
|
1046 |
select = acf.helpers.create_field({
|
1047 |
'type' : 'select',
|
1048 |
-
'
|
1049 |
'name' : conditional_function.attr('name'),
|
1050 |
'value' : conditional_function.val(),
|
1051 |
'choices' : choices
|
@@ -1175,7 +1169,33 @@ var acf = {
|
|
1175 |
});
|
1176 |
|
1177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1179 |
|
1180 |
|
1181 |
|
1 |
var acf = {
|
2 |
post_id : 0,
|
3 |
nonce : '',
|
4 |
+
text : {},
|
5 |
+
l10n : {},
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
helpers : {
|
7 |
uniqid : function(){},
|
8 |
sortable : function(){},
|
110 |
|
111 |
return retId;
|
112 |
|
113 |
+
};
|
114 |
|
115 |
|
116 |
/*
|
128 |
|
129 |
if( !title.val() )
|
130 |
{
|
131 |
+
alert( acf.l10n.title );
|
132 |
|
133 |
title.focus();
|
134 |
|
148 |
|
149 |
$('#submit-delete').live('click', function(){
|
150 |
|
151 |
+
var response = confirm( acf.l10n.move_to_trash );
|
152 |
if( !response )
|
153 |
{
|
154 |
return false;
|
285 |
$(this).attr('name', $(this).attr('name').replace(old_id, new_id) );
|
286 |
});
|
287 |
|
288 |
+
};
|
289 |
|
290 |
|
291 |
/*
|
440 |
|
441 |
|
442 |
name.val('');
|
443 |
+
label.val( label.val() + ' (' + acf.l10n.copy + ')' );
|
444 |
label.trigger('blur').trigger('keyup');
|
445 |
|
446 |
|
793 |
|
794 |
|
795 |
// update h4
|
796 |
+
$group2.find('h4').text( acf.l10n.or );
|
797 |
|
798 |
|
799 |
// remove all tr's except the first one
|
811 |
$group.remove();
|
812 |
|
813 |
}
|
814 |
+
};
|
815 |
|
816 |
|
817 |
|
865 |
// dafaults
|
866 |
var defaults = {
|
867 |
'type' : 'text',
|
868 |
+
'classname' : '',
|
869 |
'name' : '',
|
870 |
'value' : ''
|
871 |
};
|
877 |
|
878 |
if( options.type == "text" )
|
879 |
{
|
880 |
+
html += '<input class="text ' + options.classname + '" type="text" id="' + options.name + '" name="' + options.name + '" value="' + options.value + '" />';
|
881 |
}
|
882 |
else if( options.type == "select" )
|
883 |
{
|
884 |
+
html += '<select class="select ' + options.classname + '" id="' + options.name + '" name="' + options.name + '">';
|
885 |
if( options.choices )
|
886 |
{
|
887 |
for( i = 0; i < options.choices.length; i++ )
|
934 |
{
|
935 |
choices.push({
|
936 |
'value' : 'null',
|
937 |
+
'label' : acf.l10n.conditional_no_fields
|
938 |
})
|
939 |
}
|
940 |
|
942 |
// create select
|
943 |
select = acf.helpers.create_field({
|
944 |
'type' : 'select',
|
945 |
+
'classname' : 'conditional-logic-field',
|
946 |
'name' : name,
|
947 |
'value' : val,
|
948 |
'choices' : choices
|
1004 |
if( type == "true_false" )
|
1005 |
{
|
1006 |
choices = [
|
1007 |
+
{ value : 1, label : acf.l10n.checked }
|
1008 |
];
|
1009 |
|
1010 |
}
|
1039 |
// create select
|
1040 |
select = acf.helpers.create_field({
|
1041 |
'type' : 'select',
|
1042 |
+
'classname' : 'conditional-logic-value',
|
1043 |
'name' : conditional_function.attr('name'),
|
1044 |
'value' : conditional_function.val(),
|
1045 |
'choices' : choices
|
1169 |
});
|
1170 |
|
1171 |
|
1172 |
+
/*
|
1173 |
+
* Field: Radio
|
1174 |
+
*
|
1175 |
+
* Simple toggle for the radio 'other_choice' option
|
1176 |
+
*
|
1177 |
+
* @type function
|
1178 |
+
* @date 1/07/13
|
1179 |
+
*/
|
1180 |
|
1181 |
+
$('.radio-option-other_choice input').live('change', function(){
|
1182 |
+
|
1183 |
+
// vars
|
1184 |
+
var $el = $(this);
|
1185 |
+
$td = $el.closest('td');
|
1186 |
+
|
1187 |
+
|
1188 |
+
if( $el.is(':checked') )
|
1189 |
+
{
|
1190 |
+
$td.find('.radio-option-save_other_choice').show();
|
1191 |
+
}
|
1192 |
+
else
|
1193 |
+
{
|
1194 |
+
$td.find('.radio-option-save_other_choice').hide();
|
1195 |
+
$td.find('.radio-option-save_other_choice input').removeAttr('checked');
|
1196 |
+
}
|
1197 |
+
|
1198 |
+
});
|
1199 |
|
1200 |
|
1201 |
|
js/input.php
CHANGED
@@ -13,7 +13,8 @@ $files = array(
|
|
13 |
'relationship.js',
|
14 |
'tab.js',
|
15 |
'validation.js',
|
16 |
-
'wysiwyg.js'
|
|
|
17 |
);
|
18 |
|
19 |
|
13 |
'relationship.js',
|
14 |
'tab.js',
|
15 |
'validation.js',
|
16 |
+
'wysiwyg.js',
|
17 |
+
'radio.js'
|
18 |
);
|
19 |
|
20 |
|
js/input/actions.js
CHANGED
@@ -326,7 +326,7 @@ var acf = {
|
|
326 |
}
|
327 |
|
328 |
return false;
|
329 |
-
}
|
330 |
|
331 |
|
332 |
/*
|
326 |
}
|
327 |
|
328 |
return false;
|
329 |
+
};
|
330 |
|
331 |
|
332 |
/*
|
js/input/ajax.js
CHANGED
@@ -20,8 +20,7 @@
|
|
20 |
post_format : 0,
|
21 |
taxonomy : 0,
|
22 |
lang : 0,
|
23 |
-
nonce : 0
|
24 |
-
return : 'json'
|
25 |
};
|
26 |
|
27 |
|
@@ -69,6 +68,7 @@
|
|
69 |
|
70 |
$(document).live('acf/update_field_groups', function(){
|
71 |
|
|
|
72 |
$.ajax({
|
73 |
url: ajaxurl,
|
74 |
data: acf.screen,
|
@@ -220,21 +220,26 @@
|
|
220 |
// taxonomy / category
|
221 |
$('.categorychecklist input[type="checkbox"]').live('change', function(){
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
-
|
225 |
-
var values = [];
|
226 |
-
|
227 |
-
|
228 |
-
$('.categorychecklist input[type="checkbox"]:checked').each(function(){
|
229 |
-
values.push( $(this).val() );
|
230 |
-
});
|
231 |
-
|
232 |
|
233 |
-
acf.screen.post_category = values;
|
234 |
-
acf.screen.taxonomy = values;
|
235 |
-
|
236 |
-
|
237 |
-
$(document).trigger('acf/update_field_groups');
|
238 |
|
239 |
});
|
240 |
|
20 |
post_format : 0,
|
21 |
taxonomy : 0,
|
22 |
lang : 0,
|
23 |
+
nonce : 0
|
|
|
24 |
};
|
25 |
|
26 |
|
68 |
|
69 |
$(document).live('acf/update_field_groups', function(){
|
70 |
|
71 |
+
|
72 |
$.ajax({
|
73 |
url: ajaxurl,
|
74 |
data: acf.screen,
|
220 |
// taxonomy / category
|
221 |
$('.categorychecklist input[type="checkbox"]').live('change', function(){
|
222 |
|
223 |
+
// set timeout to fix issue with chrome which does not register the change has yet happened
|
224 |
+
setTimeout(function(){
|
225 |
+
|
226 |
+
// vars
|
227 |
+
var values = [];
|
228 |
+
|
229 |
+
|
230 |
+
$('.categorychecklist input[type="checkbox"]:checked').each(function(){
|
231 |
+
values.push( $(this).val() );
|
232 |
+
});
|
233 |
+
|
234 |
+
|
235 |
+
acf.screen.post_category = values;
|
236 |
+
acf.screen.taxonomy = values;
|
237 |
+
|
238 |
+
|
239 |
+
$(document).trigger('acf/update_field_groups');
|
240 |
|
241 |
+
}, 1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
});
|
245 |
|
js/input/file.js
CHANGED
@@ -144,10 +144,31 @@
|
|
144 |
|
145 |
|
146 |
// customize model / view
|
147 |
-
acf.media.frame.on('
|
148 |
|
149 |
-
|
150 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
|
153 |
// no need for 'uploaded' filter
|
@@ -185,13 +206,14 @@
|
|
185 |
// select / add another file field?
|
186 |
if( i > 1 )
|
187 |
{
|
188 |
-
var
|
|
|
189 |
repeater = tr.closest('.repeater');
|
190 |
|
191 |
|
192 |
if( tr.next('.row').exists() )
|
193 |
{
|
194 |
-
_media.div = tr.next('.row').find('.acf-file-uploader');
|
195 |
}
|
196 |
else
|
197 |
{
|
@@ -199,7 +221,7 @@
|
|
199 |
repeater.find('.add-row-end').trigger('click');
|
200 |
|
201 |
// set acf_div to new row file
|
202 |
-
_media.div = repeater.find('> table > tbody > tr.row:last .acf-file-uploader');
|
203 |
}
|
204 |
}
|
205 |
|
144 |
|
145 |
|
146 |
// customize model / view
|
147 |
+
acf.media.frame.on('content:activate', function(){
|
148 |
|
149 |
+
// vars
|
150 |
+
var toolbar = null,
|
151 |
+
filters = null;
|
152 |
+
|
153 |
+
|
154 |
+
// populate above vars making sure to allow for failure
|
155 |
+
try
|
156 |
+
{
|
157 |
+
toolbar = acf.media.frame.content.get().toolbar;
|
158 |
+
filters = toolbar.get('filters');
|
159 |
+
}
|
160 |
+
catch(e)
|
161 |
+
{
|
162 |
+
// one of the objects was 'undefined'... perhaps the frame open is Upload Files
|
163 |
+
//console.log( e );
|
164 |
+
}
|
165 |
+
|
166 |
+
|
167 |
+
// validate
|
168 |
+
if( !filters )
|
169 |
+
{
|
170 |
+
return false;
|
171 |
+
}
|
172 |
|
173 |
|
174 |
// no need for 'uploaded' filter
|
206 |
// select / add another file field?
|
207 |
if( i > 1 )
|
208 |
{
|
209 |
+
var key = _media.div.closest('td').attr('data-field_key'),
|
210 |
+
tr = _media.div.closest('tr'),
|
211 |
repeater = tr.closest('.repeater');
|
212 |
|
213 |
|
214 |
if( tr.next('.row').exists() )
|
215 |
{
|
216 |
+
_media.div = tr.next('.row').find('td[data-field_key="' + key + '"] .acf-file-uploader');
|
217 |
}
|
218 |
else
|
219 |
{
|
221 |
repeater.find('.add-row-end').trigger('click');
|
222 |
|
223 |
// set acf_div to new row file
|
224 |
+
_media.div = repeater.find('> table > tbody > tr.row:last td[data-field_key="' + key + '"] .acf-file-uploader');
|
225 |
}
|
226 |
}
|
227 |
|
js/input/image.js
CHANGED
@@ -138,19 +138,40 @@
|
|
138 |
]
|
139 |
});
|
140 |
|
141 |
-
|
142 |
-
acf.media.frame.on('all', function(e){
|
143 |
|
144 |
console.log( e );
|
145 |
|
146 |
-
})
|
147 |
-
|
148 |
|
149 |
// customize model / view
|
150 |
-
acf.media.frame.on('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
-
|
153 |
-
|
|
|
|
|
|
|
|
|
154 |
|
155 |
|
156 |
// filter only images
|
@@ -221,13 +242,14 @@
|
|
221 |
// select / add another image field?
|
222 |
if( i > 1 )
|
223 |
{
|
224 |
-
var
|
|
|
225 |
repeater = tr.closest('.repeater');
|
226 |
|
227 |
|
228 |
if( tr.next('.row').exists() )
|
229 |
{
|
230 |
-
_media.div = tr.next('.row').find('.acf-image-uploader');
|
231 |
}
|
232 |
else
|
233 |
{
|
@@ -235,7 +257,7 @@
|
|
235 |
repeater.find('.add-row-end').trigger('click');
|
236 |
|
237 |
// set acf_div to new row image
|
238 |
-
_media.div = repeater.find('> table > tbody > tr.row:last .acf-image-uploader');
|
239 |
}
|
240 |
}
|
241 |
|
138 |
]
|
139 |
});
|
140 |
|
141 |
+
|
142 |
+
/*acf.media.frame.on('all', function(e){
|
143 |
|
144 |
console.log( e );
|
145 |
|
146 |
+
});*/
|
147 |
+
|
148 |
|
149 |
// customize model / view
|
150 |
+
acf.media.frame.on('content:activate', function(){
|
151 |
+
|
152 |
+
// vars
|
153 |
+
var toolbar = null,
|
154 |
+
filters = null;
|
155 |
+
|
156 |
+
|
157 |
+
// populate above vars making sure to allow for failure
|
158 |
+
try
|
159 |
+
{
|
160 |
+
toolbar = acf.media.frame.content.get().toolbar;
|
161 |
+
filters = toolbar.get('filters');
|
162 |
+
}
|
163 |
+
catch(e)
|
164 |
+
{
|
165 |
+
// one of the objects was 'undefined'... perhaps the frame open is Upload Files
|
166 |
+
//console.log( e );
|
167 |
+
}
|
168 |
|
169 |
+
|
170 |
+
// validate
|
171 |
+
if( !filters )
|
172 |
+
{
|
173 |
+
return false;
|
174 |
+
}
|
175 |
|
176 |
|
177 |
// filter only images
|
242 |
// select / add another image field?
|
243 |
if( i > 1 )
|
244 |
{
|
245 |
+
var key = _media.div.closest('td').attr('data-field_key'),
|
246 |
+
tr = _media.div.closest('tr'),
|
247 |
repeater = tr.closest('.repeater');
|
248 |
|
249 |
|
250 |
if( tr.next('.row').exists() )
|
251 |
{
|
252 |
+
_media.div = tr.next('.row').find('td[data-field_key="' + key + '"] .acf-image-uploader');
|
253 |
}
|
254 |
else
|
255 |
{
|
257 |
repeater.find('.add-row-end').trigger('click');
|
258 |
|
259 |
// set acf_div to new row image
|
260 |
+
_media.div = repeater.find('> table > tbody > tr.row:last td[data-field_key="' + key + '"] .acf-image-uploader');
|
261 |
}
|
262 |
}
|
263 |
|
js/input/radio.js
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($){
|
2 |
+
|
3 |
+
/*
|
4 |
+
* Radio
|
5 |
+
*
|
6 |
+
* static model and events for this field
|
7 |
+
*
|
8 |
+
* @type event
|
9 |
+
* @date 1/06/13
|
10 |
+
*
|
11 |
+
*/
|
12 |
+
|
13 |
+
_radio = acf.fields.radio = {
|
14 |
+
|
15 |
+
$el : null,
|
16 |
+
$input : null,
|
17 |
+
$other : null,
|
18 |
+
farbtastic : null,
|
19 |
+
|
20 |
+
set : function( o ){
|
21 |
+
|
22 |
+
// merge in new option
|
23 |
+
$.extend( this, o );
|
24 |
+
|
25 |
+
|
26 |
+
// find input
|
27 |
+
this.$input = this.$el.find('input[type="radio"]:checked');
|
28 |
+
this.$other = this.$el.find('input[type="text"]');
|
29 |
+
|
30 |
+
|
31 |
+
// return this for chaining
|
32 |
+
return this;
|
33 |
+
|
34 |
+
},
|
35 |
+
change : function(){
|
36 |
+
|
37 |
+
if( this.$input.val() == 'other' )
|
38 |
+
{
|
39 |
+
this.$other.attr('name', this.$input.attr('name'));
|
40 |
+
this.$other.show();
|
41 |
+
}
|
42 |
+
else
|
43 |
+
{
|
44 |
+
this.$other.attr('name', '');
|
45 |
+
this.$other.hide();
|
46 |
+
}
|
47 |
+
}
|
48 |
+
};
|
49 |
+
|
50 |
+
|
51 |
+
/*
|
52 |
+
* Events
|
53 |
+
*
|
54 |
+
* live events for the color picker field
|
55 |
+
*
|
56 |
+
* @type event
|
57 |
+
* @date 1/06/13
|
58 |
+
*
|
59 |
+
*/
|
60 |
+
|
61 |
+
$('.acf-radio-list input[type="radio"]').live('change', function(){
|
62 |
+
|
63 |
+
_radio.set({ $el : $(this).closest('.acf-radio-list') }).change();
|
64 |
+
|
65 |
+
});
|
66 |
+
|
67 |
+
|
68 |
+
})(jQuery);
|
lang/acf-fr_FR.mo
CHANGED
Binary file
|
lang/acf-fr_FR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
6 |
-
"PO-Revision-Date: 2013-06-
|
7 |
"Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
|
8 |
"Language-Team: RVOLA <hello@rvola.com>\n"
|
9 |
"Language: French\n"
|
@@ -710,7 +710,7 @@ msgstr "Nouveaux types de champs"
|
|
710 |
|
711 |
#: core/controllers/field_groups.php:343
|
712 |
msgid "Taxonomy Field"
|
713 |
-
msgstr "Champ
|
714 |
|
715 |
# @ acf
|
716 |
#: core/controllers/field_groups.php:344
|
@@ -982,7 +982,7 @@ msgstr "Modification du groupe de champs 'montrer sur la page'"
|
|
982 |
|
983 |
#: core/controllers/upgrade.php:670
|
984 |
msgid "Modifying field option 'taxonomy'"
|
985 |
-
msgstr "Modifier le champ '
|
986 |
|
987 |
#: core/controllers/upgrade.php:767
|
988 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
@@ -1311,7 +1311,7 @@ msgstr "Relation"
|
|
1311 |
#: core/fields/relationship.php:523 core/fields/relationship.php:602
|
1312 |
#: core/views/meta_box_location.php:72
|
1313 |
msgid "Post Type"
|
1314 |
-
msgstr "Type
|
1315 |
|
1316 |
# @ acf
|
1317 |
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
@@ -1759,7 +1759,7 @@ msgstr "Article"
|
|
1759 |
|
1760 |
#: core/views/meta_box_location.php:83
|
1761 |
msgid "Post Category"
|
1762 |
-
msgstr "
|
1763 |
|
1764 |
# @ acf
|
1765 |
#: core/views/meta_box_location.php:84
|
@@ -1777,7 +1777,7 @@ msgstr "Autres"
|
|
1777 |
|
1778 |
#: core/views/meta_box_location.php:88
|
1779 |
msgid "Taxonomy Term (Add / Edit)"
|
1780 |
-
msgstr "
|
1781 |
|
1782 |
#: core/views/meta_box_location.php:89
|
1783 |
msgid "User (Add / Edit)"
|
3 |
"Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
5 |
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
6 |
+
"PO-Revision-Date: 2013-06-17 11:09+0100\n"
|
7 |
"Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
|
8 |
"Language-Team: RVOLA <hello@rvola.com>\n"
|
9 |
"Language: French\n"
|
710 |
|
711 |
#: core/controllers/field_groups.php:343
|
712 |
msgid "Taxonomy Field"
|
713 |
+
msgstr "Champ taxonomie"
|
714 |
|
715 |
# @ acf
|
716 |
#: core/controllers/field_groups.php:344
|
982 |
|
983 |
#: core/controllers/upgrade.php:670
|
984 |
msgid "Modifying field option 'taxonomy'"
|
985 |
+
msgstr "Modifier le champ 'taxonomie'"
|
986 |
|
987 |
#: core/controllers/upgrade.php:767
|
988 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
1311 |
#: core/fields/relationship.php:523 core/fields/relationship.php:602
|
1312 |
#: core/views/meta_box_location.php:72
|
1313 |
msgid "Post Type"
|
1314 |
+
msgstr "Type de publication"
|
1315 |
|
1316 |
# @ acf
|
1317 |
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
1759 |
|
1760 |
#: core/views/meta_box_location.php:83
|
1761 |
msgid "Post Category"
|
1762 |
+
msgstr "Catégorie"
|
1763 |
|
1764 |
# @ acf
|
1765 |
#: core/views/meta_box_location.php:84
|
1777 |
|
1778 |
#: core/views/meta_box_location.php:88
|
1779 |
msgid "Taxonomy Term (Add / Edit)"
|
1780 |
+
msgstr "Taxonomie (Ajouter / Modifier)"
|
1781 |
|
1782 |
#: core/views/meta_box_location.php:89
|
1783 |
msgid "User (Add / Edit)"
|
lang/acf-nl_NL.po
CHANGED
File without changes
|
lang/acf-pt_BR.mo
CHANGED
File without changes
|
lang/acf-pt_BR.po
CHANGED
File without changes
|
lang/acf-ru_RU.mo
ADDED
Binary file
|
lang/acf-ru_RU.po
ADDED
@@ -0,0 +1,1721 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-07-08 09:41+0600\n"
|
12 |
+
"Last-Translator: casepress.org <box.case.press@gmail.com>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
|
16 |
+
#: acf.php:264
|
17 |
+
msgid "Field Groups"
|
18 |
+
msgstr "Группы полей"
|
19 |
+
|
20 |
+
#: acf.php:265 core/controllers/field_groups.php:214
|
21 |
+
msgid "Advanced Custom Fields"
|
22 |
+
msgstr "Расширенные произвольные поля"
|
23 |
+
|
24 |
+
#: acf.php:266
|
25 |
+
msgid "Add New"
|
26 |
+
msgstr "Добавить новую"
|
27 |
+
|
28 |
+
#: acf.php:267
|
29 |
+
msgid "Add New Field Group"
|
30 |
+
msgstr "Добавить новую группу полей"
|
31 |
+
|
32 |
+
#: acf.php:268
|
33 |
+
msgid "Edit Field Group"
|
34 |
+
msgstr "Редактировать группу полей"
|
35 |
+
|
36 |
+
#: acf.php:269
|
37 |
+
msgid "New Field Group"
|
38 |
+
msgstr "Новая группа полей"
|
39 |
+
|
40 |
+
#: acf.php:270
|
41 |
+
msgid "View Field Group"
|
42 |
+
msgstr "Просмотреть группу полей"
|
43 |
+
|
44 |
+
#: acf.php:271
|
45 |
+
msgid "Search Field Groups"
|
46 |
+
msgstr "Поиск групп полей"
|
47 |
+
|
48 |
+
#: acf.php:272
|
49 |
+
msgid "No Field Groups found"
|
50 |
+
msgstr "Группы полей не найдены."
|
51 |
+
|
52 |
+
#: acf.php:273
|
53 |
+
msgid "No Field Groups found in Trash"
|
54 |
+
msgstr "Группы полей не найдены в корзине."
|
55 |
+
|
56 |
+
#: acf.php:386 core/views/meta_box_options.php:94
|
57 |
+
msgid "Custom Fields"
|
58 |
+
msgstr "Произвольные поля"
|
59 |
+
|
60 |
+
#: acf.php:404 acf.php:407
|
61 |
+
msgid "Field group updated."
|
62 |
+
msgstr "Группа полей обновлена."
|
63 |
+
|
64 |
+
#: acf.php:405
|
65 |
+
msgid "Custom field updated."
|
66 |
+
msgstr "Произвольное поле обновлено."
|
67 |
+
|
68 |
+
#: acf.php:406
|
69 |
+
msgid "Custom field deleted."
|
70 |
+
msgstr "Произвольное поле удалено."
|
71 |
+
|
72 |
+
#. translators: %s: date and time of the revision
|
73 |
+
#: acf.php:409
|
74 |
+
msgid "Field group restored to revision from %s"
|
75 |
+
msgstr "Группа полей восстановлена из редакции %s"
|
76 |
+
|
77 |
+
#: acf.php:410
|
78 |
+
msgid "Field group published."
|
79 |
+
msgstr "Группа полей опубликована."
|
80 |
+
|
81 |
+
#: acf.php:411
|
82 |
+
msgid "Field group saved."
|
83 |
+
msgstr "Группа полей сохранена."
|
84 |
+
|
85 |
+
#: acf.php:412
|
86 |
+
msgid "Field group submitted."
|
87 |
+
msgstr "Группа полей отправлена."
|
88 |
+
|
89 |
+
#: acf.php:413
|
90 |
+
msgid "Field group scheduled for."
|
91 |
+
msgstr "Группа полей запланирована на"
|
92 |
+
|
93 |
+
#: acf.php:414
|
94 |
+
msgid "Field group draft updated."
|
95 |
+
msgstr "Черновик группы полей обновлен."
|
96 |
+
|
97 |
+
#: acf.php:549
|
98 |
+
msgid "Thumbnail"
|
99 |
+
msgstr "Миниатюра"
|
100 |
+
|
101 |
+
#: acf.php:550
|
102 |
+
msgid "Medium"
|
103 |
+
msgstr "Средний"
|
104 |
+
|
105 |
+
#: acf.php:551
|
106 |
+
msgid "Large"
|
107 |
+
msgstr "Большой"
|
108 |
+
|
109 |
+
#: acf.php:552
|
110 |
+
msgid "Full"
|
111 |
+
msgstr "Полный"
|
112 |
+
|
113 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:57
|
114 |
+
msgid "Error"
|
115 |
+
msgstr "Ошибка"
|
116 |
+
|
117 |
+
#: core/actions/export.php:30
|
118 |
+
msgid "No ACF groups selected"
|
119 |
+
msgstr "Группы ACF не выбраны"
|
120 |
+
|
121 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
122 |
+
msgid "Add-ons"
|
123 |
+
msgstr "Аддоны"
|
124 |
+
|
125 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:432
|
126 |
+
msgid "Repeater Field"
|
127 |
+
msgstr "Повторающееся поле"
|
128 |
+
|
129 |
+
#: core/controllers/addons.php:131
|
130 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
131 |
+
msgstr "Создавайте повторающиеся поля с этим многофунциональным аддоном!"
|
132 |
+
|
133 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:440
|
134 |
+
msgid "Gallery Field"
|
135 |
+
msgstr "Поле галереи"
|
136 |
+
|
137 |
+
#: core/controllers/addons.php:138
|
138 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
139 |
+
msgstr "Создавайте галереи с этим простым и интуитивным интерфейсом!"
|
140 |
+
|
141 |
+
#: core/controllers/addons.php:144 core/controllers/export.php:380
|
142 |
+
#: core/controllers/field_groups.php:448
|
143 |
+
msgid "Options Page"
|
144 |
+
msgstr "Страница с опциями"
|
145 |
+
|
146 |
+
#: core/controllers/addons.php:145
|
147 |
+
msgid "Create global data to use throughout your website!"
|
148 |
+
msgstr ""
|
149 |
+
"Создайте глобальные данные, которые можно будет использовать по всему сайту."
|
150 |
+
|
151 |
+
#: core/controllers/addons.php:151
|
152 |
+
msgid "Flexible Content Field"
|
153 |
+
msgstr "Гибкое содержание"
|
154 |
+
|
155 |
+
#: core/controllers/addons.php:152
|
156 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
157 |
+
msgstr "Создавайте уникальные дизайны с настраиваемым гибким макетом."
|
158 |
+
|
159 |
+
#: core/controllers/addons.php:161
|
160 |
+
msgid "Gravity Forms Field"
|
161 |
+
msgstr "Поле \"Gravity Forms\""
|
162 |
+
|
163 |
+
#: core/controllers/addons.php:162
|
164 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
165 |
+
msgstr "Создает поля использующие Gravity Forms."
|
166 |
+
|
167 |
+
#: core/controllers/addons.php:168
|
168 |
+
msgid "Date & Time Picker"
|
169 |
+
msgstr "Выбор даты и времени"
|
170 |
+
|
171 |
+
#: core/controllers/addons.php:169
|
172 |
+
msgid "jQuery date & time picker"
|
173 |
+
msgstr "jQuery плагин выбора даты и времени"
|
174 |
+
|
175 |
+
#: core/controllers/addons.php:175
|
176 |
+
msgid "Location Field"
|
177 |
+
msgstr "Поле местоположения"
|
178 |
+
|
179 |
+
#: core/controllers/addons.php:176
|
180 |
+
msgid "Find addresses and coordinates of a desired location"
|
181 |
+
msgstr "Найдите адреса и координаты выбраного места."
|
182 |
+
|
183 |
+
#: core/controllers/addons.php:182
|
184 |
+
msgid "Contact Form 7 Field"
|
185 |
+
msgstr "Поле \"Contact Form 7\""
|
186 |
+
|
187 |
+
#: core/controllers/addons.php:183
|
188 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
189 |
+
msgstr "Добавьте одно или больше форм \"Contact Form 7\" в запись."
|
190 |
+
|
191 |
+
#: core/controllers/addons.php:193
|
192 |
+
msgid "Advanced Custom Fields Add-Ons"
|
193 |
+
msgstr "Расширенные произвольные поля. Аддоны"
|
194 |
+
|
195 |
+
#: core/controllers/addons.php:196
|
196 |
+
msgid ""
|
197 |
+
"The following Add-ons are available to increase the functionality of the "
|
198 |
+
"Advanced Custom Fields plugin."
|
199 |
+
msgstr ""
|
200 |
+
"Следующие аддоны могут увеличить функционал плагина \"Advanced Custom Fields"
|
201 |
+
"\"."
|
202 |
+
|
203 |
+
#: core/controllers/addons.php:197
|
204 |
+
msgid ""
|
205 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
206 |
+
"included in your theme (does not receive updates)."
|
207 |
+
msgstr ""
|
208 |
+
"Каждый аддон может быть установлен, как отдельный плагин (который "
|
209 |
+
"обновляется), или же может быть включен в вашу тему (обновляться не будет)."
|
210 |
+
|
211 |
+
#: core/controllers/addons.php:218 core/controllers/addons.php:239
|
212 |
+
msgid "Installed"
|
213 |
+
msgstr "Установлено"
|
214 |
+
|
215 |
+
#: core/controllers/addons.php:220
|
216 |
+
msgid "Purchase & Install"
|
217 |
+
msgstr "Купить и установить"
|
218 |
+
|
219 |
+
#: core/controllers/addons.php:241 core/controllers/field_groups.php:425
|
220 |
+
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
221 |
+
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
222 |
+
msgid "Download"
|
223 |
+
msgstr "Скачать"
|
224 |
+
|
225 |
+
#: core/controllers/export.php:50 core/controllers/export.php:159
|
226 |
+
msgid "Export"
|
227 |
+
msgstr "Экспорт"
|
228 |
+
|
229 |
+
#: core/controllers/export.php:216
|
230 |
+
msgid "Export Field Groups"
|
231 |
+
msgstr "Экспорт групп полей"
|
232 |
+
|
233 |
+
#: core/controllers/export.php:221
|
234 |
+
msgid "Field Groups"
|
235 |
+
msgstr "Группы полей"
|
236 |
+
|
237 |
+
#: core/controllers/export.php:222
|
238 |
+
msgid "Select the field groups to be exported"
|
239 |
+
msgstr "Выберите группы полей, которые надо экспортировать."
|
240 |
+
|
241 |
+
#: core/controllers/export.php:239 core/controllers/export.php:252
|
242 |
+
msgid "Export to XML"
|
243 |
+
msgstr "Экспортировать в XML файл"
|
244 |
+
|
245 |
+
#: core/controllers/export.php:242 core/controllers/export.php:267
|
246 |
+
msgid "Export to PHP"
|
247 |
+
msgstr "Экспортировать в PHP файл"
|
248 |
+
|
249 |
+
#: core/controllers/export.php:253
|
250 |
+
msgid ""
|
251 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
252 |
+
"import plugin."
|
253 |
+
msgstr "ACF создат .xml файл, который совместим с WP Import плагином."
|
254 |
+
|
255 |
+
#: core/controllers/export.php:254
|
256 |
+
msgid ""
|
257 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
258 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
259 |
+
msgstr ""
|
260 |
+
"Импортированные группы полей <strong>появятся</strong> в списке "
|
261 |
+
"редактируемых групп полей. Эта функция очень полезна в случае переезда с "
|
262 |
+
"одного WP сайта на другой."
|
263 |
+
|
264 |
+
#: core/controllers/export.php:256
|
265 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
266 |
+
msgstr ""
|
267 |
+
"Выберите группу(-ы) полей из списка и нажмите на кнопку \"Экспортировать в "
|
268 |
+
"XML файл\"."
|
269 |
+
|
270 |
+
#: core/controllers/export.php:257
|
271 |
+
msgid "Save the .xml file when prompted"
|
272 |
+
msgstr "Сохраните .xml файл при запросе сохранить файл."
|
273 |
+
|
274 |
+
#: core/controllers/export.php:258
|
275 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
276 |
+
msgstr ""
|
277 |
+
"Зайдите во \"Инструменты\" » \"Импорт\", и выберите \"WordPress\"."
|
278 |
+
|
279 |
+
#: core/controllers/export.php:259
|
280 |
+
msgid "Install WP import plugin if prompted"
|
281 |
+
msgstr "Установите WP Import плагин."
|
282 |
+
|
283 |
+
#: core/controllers/export.php:260
|
284 |
+
msgid "Upload and import your exported .xml file"
|
285 |
+
msgstr "Загрузите и импортируйте ваш экспортированный .xml файл."
|
286 |
+
|
287 |
+
#: core/controllers/export.php:261
|
288 |
+
msgid "Select your user and ignore Import Attachments"
|
289 |
+
msgstr "Выберите вашего пользователя и не импортируйте вложенные файлы."
|
290 |
+
|
291 |
+
#: core/controllers/export.php:262
|
292 |
+
msgid "That's it! Happy WordPressing"
|
293 |
+
msgstr "Вот и все. Удачной работы с WordPress!"
|
294 |
+
|
295 |
+
#: core/controllers/export.php:268
|
296 |
+
msgid "ACF will create the PHP code to include in your theme."
|
297 |
+
msgstr "ACF создат код PHP, который можно будет включить в вашу тему."
|
298 |
+
|
299 |
+
#: core/controllers/export.php:269 core/controllers/export.php:310
|
300 |
+
msgid ""
|
301 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
302 |
+
"groups. This is useful for including fields in themes."
|
303 |
+
msgstr ""
|
304 |
+
"Импортированные группы полей <strong>не появятся</strong> в списке "
|
305 |
+
"редактируемых групп полей. Данный способ удобен при необходимости включить "
|
306 |
+
"поля в темы."
|
307 |
+
|
308 |
+
#: core/controllers/export.php:270 core/controllers/export.php:311
|
309 |
+
msgid ""
|
310 |
+
"Please note that if you export and register field groups within the same WP, "
|
311 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
312 |
+
"the original field group to the trash or remove the code from your functions."
|
313 |
+
"php file."
|
314 |
+
msgstr ""
|
315 |
+
"Пожалуйста, заметьте, если вы экспортируете а затем импортируете группы "
|
316 |
+
"полей в один и тот же сайт WP, вы увидите дублированные поля на экране "
|
317 |
+
"редактирования. Чтобы исправить это, перенесите оригинальную группы полей в "
|
318 |
+
"корзину или удалите код из вашего \"<em>functions.php</em>\" файла."
|
319 |
+
|
320 |
+
#: core/controllers/export.php:272
|
321 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
322 |
+
msgstr ""
|
323 |
+
"Выберите группу(-ы) полей из списка, затем нажмите на кнопку "
|
324 |
+
"\"Экспортировать в PHP файл\"."
|
325 |
+
|
326 |
+
#: core/controllers/export.php:273 core/controllers/export.php:302
|
327 |
+
msgid "Copy the PHP code generated"
|
328 |
+
msgstr "Скопируйте сгенерированный PHP код."
|
329 |
+
|
330 |
+
#: core/controllers/export.php:274 core/controllers/export.php:303
|
331 |
+
msgid "Paste into your functions.php file"
|
332 |
+
msgstr "Вставьте его в ваш \"<em>functions.php</em>\" файл."
|
333 |
+
|
334 |
+
#: core/controllers/export.php:275 core/controllers/export.php:304
|
335 |
+
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
336 |
+
msgstr ""
|
337 |
+
"Чтобы активировать аддоны, отредактируйте и вставьте код в первые несколько "
|
338 |
+
"строк."
|
339 |
+
|
340 |
+
#: core/controllers/export.php:295
|
341 |
+
msgid "Export Field Groups to PHP"
|
342 |
+
msgstr "Экспортировать группы полей в PHP"
|
343 |
+
|
344 |
+
#: core/controllers/export.php:300 core/fields/tab.php:64
|
345 |
+
msgid "Instructions"
|
346 |
+
msgstr "Инструкции"
|
347 |
+
|
348 |
+
#: core/controllers/export.php:309
|
349 |
+
msgid "Notes"
|
350 |
+
msgstr "Заметки"
|
351 |
+
|
352 |
+
#: core/controllers/export.php:316
|
353 |
+
msgid "Include in theme"
|
354 |
+
msgstr "Включить в тему"
|
355 |
+
|
356 |
+
#: core/controllers/export.php:317
|
357 |
+
msgid ""
|
358 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
359 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
360 |
+
"functions.php file:"
|
361 |
+
msgstr ""
|
362 |
+
"Плагин \"Advanced Custom Fields\" может быть включен в тему. Для этого, "
|
363 |
+
"переместите плагин ACF в папку вашей темы, и добавьте следующий код в ваш "
|
364 |
+
"\"<em>functions.php</em>\" файл:"
|
365 |
+
|
366 |
+
#: core/controllers/export.php:323
|
367 |
+
msgid ""
|
368 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
369 |
+
"to enable lite mode. Add the following code to you functions.php file "
|
370 |
+
"<b>before</b> the include_once code:"
|
371 |
+
msgstr ""
|
372 |
+
"Чтобы убрать весь визуальный интерфейс из плагина ACF, вы можете "
|
373 |
+
"использовать константу, чтобы включить \"Режим Lite\". Добавьте следующий "
|
374 |
+
"код в ваш \"<em>functions.php</em>\" файл <strong>перед</strong> "
|
375 |
+
"<em>include_once</em>:"
|
376 |
+
|
377 |
+
#: core/controllers/export.php:331
|
378 |
+
msgid "Back to export"
|
379 |
+
msgstr "Вернуться к экспорту"
|
380 |
+
|
381 |
+
#: core/controllers/export.php:352
|
382 |
+
msgid ""
|
383 |
+
"/**\n"
|
384 |
+
" * Install Add-ons\n"
|
385 |
+
" * \n"
|
386 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
387 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
388 |
+
"produce an error.\n"
|
389 |
+
" * \n"
|
390 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
391 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
392 |
+
"of this action.\n"
|
393 |
+
" * \n"
|
394 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
395 |
+
"theme.\n"
|
396 |
+
" *\n"
|
397 |
+
" * IMPORTANT\n"
|
398 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
399 |
+
"conditions.\n"
|
400 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
401 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
402 |
+
"terms-conditions/\n"
|
403 |
+
" */"
|
404 |
+
msgstr ""
|
405 |
+
"/**\n"
|
406 |
+
" * Установка аддонов\n"
|
407 |
+
" * \n"
|
408 |
+
" * Следующий код включит все 4 премиум аддона в вашу тему.\n"
|
409 |
+
" * Пожалуйста, не пытайтесь включить файл, который не существует. Это "
|
410 |
+
"вызовет ошибку.\n"
|
411 |
+
" * \n"
|
412 |
+
" * Все поля должны быть включены во время 'acf/register_fields' действия.\n"
|
413 |
+
" * Другие типы аддонов (такие, как страница с опциями) могут быть включены "
|
414 |
+
"вне этого действия.\n"
|
415 |
+
" * \n"
|
416 |
+
" * Следующий код предполагает, что у вас есть папка 'add-ons' в вашей "
|
417 |
+
"теме.\n"
|
418 |
+
" *\n"
|
419 |
+
" * ВАЖНО\n"
|
420 |
+
" * Аддоны могут быть включены в премиум темы, как указано в Правилах и "
|
421 |
+
"условиях.\n"
|
422 |
+
" * Тем не менее, они не будут включены в бесплатный или премиум плагин.\n"
|
423 |
+
" * Для большей информации, пожалуйста, прочтите http://www."
|
424 |
+
"advancedcustomfields.com/terms-conditions/\n"
|
425 |
+
" */"
|
426 |
+
|
427 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:365
|
428 |
+
#: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
|
429 |
+
msgid "Fields"
|
430 |
+
msgstr "Поля"
|
431 |
+
|
432 |
+
#: core/controllers/export.php:384
|
433 |
+
msgid ""
|
434 |
+
"/**\n"
|
435 |
+
" * Register Field Groups\n"
|
436 |
+
" *\n"
|
437 |
+
" * The register_field_group function accepts 1 array which holds the "
|
438 |
+
"relevant data to register a field group\n"
|
439 |
+
" * You may edit the array as you see fit. However, this may result in "
|
440 |
+
"errors if the array is not compatible with ACF\n"
|
441 |
+
" */"
|
442 |
+
msgstr ""
|
443 |
+
"/**\n"
|
444 |
+
" * Регистрация группы полей\n"
|
445 |
+
" *\n"
|
446 |
+
" * Функция 'register_field_group' принимает один массив, который держит "
|
447 |
+
"соответственные данные, чтобы зарегистрировать группу полей.\n"
|
448 |
+
" * Вы можете редактировать этот массив, как посчитаете нужным. Однако, это "
|
449 |
+
"может вызвать ошибки, если массив не совмествим с ACF.\n"
|
450 |
+
" */"
|
451 |
+
|
452 |
+
#: core/controllers/export.php:435
|
453 |
+
msgid "No field groups were selected"
|
454 |
+
msgstr "Группы полей не выбраны"
|
455 |
+
|
456 |
+
#: core/controllers/field_group.php:366
|
457 |
+
msgid "Location"
|
458 |
+
msgstr "Местоположение"
|
459 |
+
|
460 |
+
#: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
|
461 |
+
msgid "Options"
|
462 |
+
msgstr "Опции"
|
463 |
+
|
464 |
+
#: core/controllers/field_group.php:429
|
465 |
+
msgid "Show Field Key:"
|
466 |
+
msgstr "Отображать ключ поля:"
|
467 |
+
|
468 |
+
#: core/controllers/field_group.php:430 core/fields/page_link.php:113
|
469 |
+
#: core/fields/page_link.php:134 core/fields/post_object.php:288
|
470 |
+
#: core/fields/post_object.php:309 core/fields/select.php:230
|
471 |
+
#: core/fields/select.php:249 core/fields/taxonomy.php:352
|
472 |
+
#: core/fields/user.php:294 core/fields/wysiwyg.php:236
|
473 |
+
#: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
|
474 |
+
msgid "No"
|
475 |
+
msgstr "Нет"
|
476 |
+
|
477 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:112
|
478 |
+
#: core/fields/page_link.php:133 core/fields/post_object.php:287
|
479 |
+
#: core/fields/post_object.php:308 core/fields/select.php:229
|
480 |
+
#: core/fields/select.php:248 core/fields/taxonomy.php:351
|
481 |
+
#: core/fields/user.php:293 core/fields/wysiwyg.php:235
|
482 |
+
#: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
|
483 |
+
msgid "Yes"
|
484 |
+
msgstr "Да"
|
485 |
+
|
486 |
+
#: core/controllers/field_group.php:608
|
487 |
+
msgid "Front Page"
|
488 |
+
msgstr "Главная страница"
|
489 |
+
|
490 |
+
#: core/controllers/field_group.php:609
|
491 |
+
msgid "Posts Page"
|
492 |
+
msgstr "Страница записей"
|
493 |
+
|
494 |
+
#: core/controllers/field_group.php:610
|
495 |
+
msgid "Top Level Page (parent of 0)"
|
496 |
+
msgstr "Самая верхняя страница (родитель 0)"
|
497 |
+
|
498 |
+
#: core/controllers/field_group.php:611
|
499 |
+
msgid "Parent Page (has children)"
|
500 |
+
msgstr "Родительская страница (есть дочерние страницы)"
|
501 |
+
|
502 |
+
#: core/controllers/field_group.php:612
|
503 |
+
msgid "Child Page (has parent)"
|
504 |
+
msgstr "Дочерняя страница (есть родительские страницы)"
|
505 |
+
|
506 |
+
#: core/controllers/field_group.php:620
|
507 |
+
msgid "Default Template"
|
508 |
+
msgstr "Шаблон по умолчанию"
|
509 |
+
|
510 |
+
#: core/controllers/field_group.php:712 core/controllers/field_group.php:733
|
511 |
+
#: core/controllers/field_group.php:740 core/fields/page_link.php:84
|
512 |
+
#: core/fields/post_object.php:234 core/fields/post_object.php:258
|
513 |
+
#: core/fields/relationship.php:529 core/fields/relationship.php:553
|
514 |
+
#: core/fields/user.php:238
|
515 |
+
msgid "All"
|
516 |
+
msgstr "Все"
|
517 |
+
|
518 |
+
#: core/controllers/field_groups.php:147
|
519 |
+
msgid "Title"
|
520 |
+
msgstr "Заголовок"
|
521 |
+
|
522 |
+
#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
|
523 |
+
msgid "Changelog"
|
524 |
+
msgstr "Журнал изменений"
|
525 |
+
|
526 |
+
#: core/controllers/field_groups.php:217
|
527 |
+
msgid "See what's new in"
|
528 |
+
msgstr "Узнайте, что нового в"
|
529 |
+
|
530 |
+
#: core/controllers/field_groups.php:217
|
531 |
+
msgid "version"
|
532 |
+
msgstr "версии"
|
533 |
+
|
534 |
+
#: core/controllers/field_groups.php:219
|
535 |
+
msgid "Resources"
|
536 |
+
msgstr "Источники"
|
537 |
+
|
538 |
+
#: core/controllers/field_groups.php:221
|
539 |
+
msgid "Getting Started"
|
540 |
+
msgstr "Приступаем к работе"
|
541 |
+
|
542 |
+
#: core/controllers/field_groups.php:222
|
543 |
+
msgid "Field Types"
|
544 |
+
msgstr "Типы полей"
|
545 |
+
|
546 |
+
#: core/controllers/field_groups.php:223
|
547 |
+
msgid "Functions"
|
548 |
+
msgstr "Функции"
|
549 |
+
|
550 |
+
#: core/controllers/field_groups.php:224
|
551 |
+
msgid "Actions"
|
552 |
+
msgstr "Действия"
|
553 |
+
|
554 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:572
|
555 |
+
msgid "Filters"
|
556 |
+
msgstr "Фильтры"
|
557 |
+
|
558 |
+
#: core/controllers/field_groups.php:226
|
559 |
+
msgid "'How to' guides"
|
560 |
+
msgstr "Руководства \"Как...\""
|
561 |
+
|
562 |
+
#: core/controllers/field_groups.php:227
|
563 |
+
msgid "Tutorials"
|
564 |
+
msgstr "Уроки и туториалы"
|
565 |
+
|
566 |
+
#: core/controllers/field_groups.php:232
|
567 |
+
msgid "Created by"
|
568 |
+
msgstr "Создано"
|
569 |
+
|
570 |
+
#: core/controllers/field_groups.php:235
|
571 |
+
msgid "Vote"
|
572 |
+
msgstr "Оценить"
|
573 |
+
|
574 |
+
#: core/controllers/field_groups.php:236
|
575 |
+
msgid "Follow"
|
576 |
+
msgstr "Следить"
|
577 |
+
|
578 |
+
#: core/controllers/field_groups.php:248
|
579 |
+
msgid "Welcome to Advanced Custom Fields"
|
580 |
+
msgstr "Добро пожаловать на \"Advanced Custom Fields\""
|
581 |
+
|
582 |
+
#: core/controllers/field_groups.php:249
|
583 |
+
msgid "Thank you for updating to the latest version!"
|
584 |
+
msgstr "Благодарим за обновление до последней версии!"
|
585 |
+
|
586 |
+
#: core/controllers/field_groups.php:249
|
587 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
588 |
+
msgstr ""
|
589 |
+
"еще более улучшен и интересен, чем когда либо. Мы надеемся, что вам он "
|
590 |
+
"понравится."
|
591 |
+
|
592 |
+
#: core/controllers/field_groups.php:256
|
593 |
+
msgid "What’s New"
|
594 |
+
msgstr "Что нового"
|
595 |
+
|
596 |
+
#: core/controllers/field_groups.php:259
|
597 |
+
msgid "Download Add-ons"
|
598 |
+
msgstr "Скачать аддоны"
|
599 |
+
|
600 |
+
#: core/controllers/field_groups.php:313
|
601 |
+
msgid "Activation codes have grown into plugins!"
|
602 |
+
msgstr "Коды активации выросли до плагинов!"
|
603 |
+
|
604 |
+
#: core/controllers/field_groups.php:314
|
605 |
+
msgid ""
|
606 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
607 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
608 |
+
"each Add-on will continue to receive updates in the usual way."
|
609 |
+
msgstr ""
|
610 |
+
"Аддоны теперь активируются скачивая и устанавливая индивидуальные плагины. "
|
611 |
+
"Не смотря на то, что эти плагины не будут загружены на WordPress.org, каждый "
|
612 |
+
"аддон будет обновляться обычным способом."
|
613 |
+
|
614 |
+
#: core/controllers/field_groups.php:320
|
615 |
+
msgid "All previous Add-ons have been successfully installed"
|
616 |
+
msgstr "Все предыдущие аддоны были успешно установлены."
|
617 |
+
|
618 |
+
#: core/controllers/field_groups.php:324
|
619 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
620 |
+
msgstr "Этот сайт использует премиум аддоны, которые должны быть скачаны."
|
621 |
+
|
622 |
+
#: core/controllers/field_groups.php:324
|
623 |
+
msgid "Download your activated Add-ons"
|
624 |
+
msgstr "Скачайте свои активированные аддоны."
|
625 |
+
|
626 |
+
#: core/controllers/field_groups.php:329
|
627 |
+
msgid ""
|
628 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
629 |
+
"change."
|
630 |
+
msgstr ""
|
631 |
+
"Этот сайт не использует премиум аддоны и не будет затронут этим изменением."
|
632 |
+
|
633 |
+
#: core/controllers/field_groups.php:339
|
634 |
+
msgid "Easier Development"
|
635 |
+
msgstr "Упрощенная разработка"
|
636 |
+
|
637 |
+
#: core/controllers/field_groups.php:341
|
638 |
+
msgid "New Field Types"
|
639 |
+
msgstr "Новые типы полей"
|
640 |
+
|
641 |
+
#: core/controllers/field_groups.php:343
|
642 |
+
msgid "Taxonomy Field"
|
643 |
+
msgstr "Поле таксономии"
|
644 |
+
|
645 |
+
#: core/controllers/field_groups.php:344
|
646 |
+
msgid "User Field"
|
647 |
+
msgstr "Поле пользователя"
|
648 |
+
|
649 |
+
#: core/controllers/field_groups.php:345
|
650 |
+
msgid "Email Field"
|
651 |
+
msgstr "Поле email"
|
652 |
+
|
653 |
+
#: core/controllers/field_groups.php:346
|
654 |
+
msgid "Password Field"
|
655 |
+
msgstr "Поле пароля"
|
656 |
+
|
657 |
+
#: core/controllers/field_groups.php:348
|
658 |
+
msgid "Custom Field Types"
|
659 |
+
msgstr "Произвольные типы полей"
|
660 |
+
|
661 |
+
#: core/controllers/field_groups.php:349
|
662 |
+
msgid ""
|
663 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
664 |
+
"field types are not compatible with version 4."
|
665 |
+
msgstr ""
|
666 |
+
"Создание собственного типа полей никогда не было проще! К сожалению, типы "
|
667 |
+
"полей 3-ей версии не совместимы с версией 4."
|
668 |
+
|
669 |
+
#: core/controllers/field_groups.php:350
|
670 |
+
msgid "Migrating your field types is easy, please"
|
671 |
+
msgstr "Миграция ваших типов полей очень проста, пожалуйста,"
|
672 |
+
|
673 |
+
#: core/controllers/field_groups.php:350
|
674 |
+
msgid "follow this tutorial"
|
675 |
+
msgstr "следуйте этому уроку,"
|
676 |
+
|
677 |
+
#: core/controllers/field_groups.php:350
|
678 |
+
msgid "to learn more."
|
679 |
+
msgstr "чтобы узнать больше."
|
680 |
+
|
681 |
+
#: core/controllers/field_groups.php:352
|
682 |
+
msgid "Actions & Filters"
|
683 |
+
msgstr "Действия и фильтры"
|
684 |
+
|
685 |
+
#: core/controllers/field_groups.php:353
|
686 |
+
msgid ""
|
687 |
+
"All actions & filters have recieved a major facelift to make customizing ACF "
|
688 |
+
"even easier! Please"
|
689 |
+
msgstr ""
|
690 |
+
"Все действия и фильтры получили крупное внешне обновление, чтобы сделать "
|
691 |
+
"настраивание ACF еще более простым! Пожалуйста, "
|
692 |
+
|
693 |
+
#: core/controllers/field_groups.php:353
|
694 |
+
msgid "read this guide"
|
695 |
+
msgstr "прочитайте этот гид,"
|
696 |
+
|
697 |
+
#: core/controllers/field_groups.php:353
|
698 |
+
msgid "to find the updated naming convention."
|
699 |
+
msgstr "чтобы найти обновленное собрание названий."
|
700 |
+
|
701 |
+
#: core/controllers/field_groups.php:355
|
702 |
+
msgid "Preview draft is now working!"
|
703 |
+
msgstr "Предпросмотр черновика теперь работает!"
|
704 |
+
|
705 |
+
#: core/controllers/field_groups.php:356
|
706 |
+
msgid "This bug has been squashed along with many other little critters!"
|
707 |
+
msgstr "Эта ошибка была раздавленна наряду со многими другими мелкими тварями!"
|
708 |
+
|
709 |
+
#: core/controllers/field_groups.php:356
|
710 |
+
msgid "See the full changelog"
|
711 |
+
msgstr "Посмотреть весь журнал изменений"
|
712 |
+
|
713 |
+
#: core/controllers/field_groups.php:360
|
714 |
+
msgid "Important"
|
715 |
+
msgstr "Важно"
|
716 |
+
|
717 |
+
#: core/controllers/field_groups.php:362
|
718 |
+
msgid "Database Changes"
|
719 |
+
msgstr "Изменения в базе данных"
|
720 |
+
|
721 |
+
#: core/controllers/field_groups.php:363
|
722 |
+
msgid ""
|
723 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
724 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
725 |
+
"any issues."
|
726 |
+
msgstr ""
|
727 |
+
"Не было абсолютно <strong>никаких</strong> изменений в базе данных между 3-"
|
728 |
+
"ьей и 4-ой версиями. Это значит, вы можете откатиться до 3-ьей версии без "
|
729 |
+
"каких либо проблем."
|
730 |
+
|
731 |
+
#: core/controllers/field_groups.php:365
|
732 |
+
msgid "Potential Issues"
|
733 |
+
msgstr "Потенциальные проблемы"
|
734 |
+
|
735 |
+
#: core/controllers/field_groups.php:366
|
736 |
+
msgid ""
|
737 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
738 |
+
"filters, your website may not operate correctly. It is important that you "
|
739 |
+
"read the full"
|
740 |
+
msgstr ""
|
741 |
+
"В связи со значительными изменениями в аддонах, типах полей и действиях/"
|
742 |
+
"фильтрах, ваш сайт может не работать корректно. Очень важно, чтобы вы "
|
743 |
+
"прочитали полный гид"
|
744 |
+
|
745 |
+
#: core/controllers/field_groups.php:366
|
746 |
+
msgid "Migrating from v3 to v4"
|
747 |
+
msgstr "Переезд с версии 3 до версии 4"
|
748 |
+
|
749 |
+
#: core/controllers/field_groups.php:366
|
750 |
+
msgid "guide to view the full list of changes."
|
751 |
+
msgstr "для полного списка изменений."
|
752 |
+
|
753 |
+
#: core/controllers/field_groups.php:369
|
754 |
+
msgid "Really Important!"
|
755 |
+
msgstr "Очень важно!"
|
756 |
+
|
757 |
+
#: core/controllers/field_groups.php:369
|
758 |
+
msgid ""
|
759 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
760 |
+
"Please roll back to the latest"
|
761 |
+
msgstr ""
|
762 |
+
"Если вы обновили плагин ACF без предварительных знаний об изменениях, "
|
763 |
+
"пожалуйста, откатитесь до последней"
|
764 |
+
|
765 |
+
#: core/controllers/field_groups.php:369
|
766 |
+
msgid "version 3"
|
767 |
+
msgstr "версиай 3"
|
768 |
+
|
769 |
+
#: core/controllers/field_groups.php:369
|
770 |
+
msgid "of this plugin."
|
771 |
+
msgstr "этого плагина."
|
772 |
+
|
773 |
+
#: core/controllers/field_groups.php:374
|
774 |
+
msgid "Thank You"
|
775 |
+
msgstr "Благодарим вас"
|
776 |
+
|
777 |
+
#: core/controllers/field_groups.php:375
|
778 |
+
msgid ""
|
779 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
780 |
+
"4 beta and for all the support I have received."
|
781 |
+
msgstr ""
|
782 |
+
"<strong>БОЛЬШОЕ</strong> спасибо всем, кто помог протестировать версию 4 "
|
783 |
+
"бета и за всю поддержку, которую мне оказали."
|
784 |
+
|
785 |
+
#: core/controllers/field_groups.php:376
|
786 |
+
msgid "Without you all, this release would not have been possible!"
|
787 |
+
msgstr "Без вас всех, этот релиз был бы невозможен!"
|
788 |
+
|
789 |
+
#: core/controllers/field_groups.php:380
|
790 |
+
msgid "Changelog for"
|
791 |
+
msgstr "Журнал изменений по"
|
792 |
+
|
793 |
+
#: core/controllers/field_groups.php:396
|
794 |
+
msgid "Learn more"
|
795 |
+
msgstr "Узнать больше"
|
796 |
+
|
797 |
+
#: core/controllers/field_groups.php:402
|
798 |
+
msgid "Overview"
|
799 |
+
msgstr "Обзор"
|
800 |
+
|
801 |
+
#: core/controllers/field_groups.php:404
|
802 |
+
msgid ""
|
803 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
804 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
805 |
+
"need to be individually downloaded, installed and updated."
|
806 |
+
msgstr ""
|
807 |
+
"Раньше, все аддоны разблокировались с помощью когда активации (купленные в "
|
808 |
+
"магазине аддонов ACF). Новинка в версии 4, все аддоны работают, как "
|
809 |
+
"отдельные плагины, которые должны быть скачаны, установлены и обновлены "
|
810 |
+
"отдельно."
|
811 |
+
|
812 |
+
#: core/controllers/field_groups.php:406
|
813 |
+
msgid ""
|
814 |
+
"This page will assist you in downloading and installing each available Add-"
|
815 |
+
"on."
|
816 |
+
msgstr "Эта страница поможет вам скачать и установить каждый доступный аддон."
|
817 |
+
|
818 |
+
#: core/controllers/field_groups.php:408
|
819 |
+
msgid "Available Add-ons"
|
820 |
+
msgstr "Доступные аддоны"
|
821 |
+
|
822 |
+
#: core/controllers/field_groups.php:410
|
823 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
824 |
+
msgstr "Следующие аддоны были обнаружены активированными на этом сайте."
|
825 |
+
|
826 |
+
#: core/controllers/field_groups.php:423
|
827 |
+
msgid "Name"
|
828 |
+
msgstr "Имя"
|
829 |
+
|
830 |
+
#: core/controllers/field_groups.php:424
|
831 |
+
msgid "Activation Code"
|
832 |
+
msgstr "Код активации"
|
833 |
+
|
834 |
+
#: core/controllers/field_groups.php:456
|
835 |
+
msgid "Flexible Content"
|
836 |
+
msgstr "Гибкое содержание"
|
837 |
+
|
838 |
+
#: core/controllers/field_groups.php:466
|
839 |
+
msgid "Installation"
|
840 |
+
msgstr "Установка"
|
841 |
+
|
842 |
+
#: core/controllers/field_groups.php:468
|
843 |
+
msgid "For each Add-on available, please perform the following:"
|
844 |
+
msgstr "Для каждого доступно аддона, выполните, пожалуйста, следующее:"
|
845 |
+
|
846 |
+
#: core/controllers/field_groups.php:470
|
847 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
848 |
+
msgstr "Скачайте плагин аддона (.zip файл) на ваш компьютер."
|
849 |
+
|
850 |
+
#: core/controllers/field_groups.php:471
|
851 |
+
msgid "Navigate to"
|
852 |
+
msgstr "Перейти в"
|
853 |
+
|
854 |
+
#: core/controllers/field_groups.php:471
|
855 |
+
msgid "Plugins > Add New > Upload"
|
856 |
+
msgstr "Откройте \"Плагины\" » \"Добавить новый\" » \"Загрузить\"."
|
857 |
+
|
858 |
+
#: core/controllers/field_groups.php:472
|
859 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
860 |
+
msgstr "Найдите скачанный .zip файл, выберите его и установите."
|
861 |
+
|
862 |
+
#: core/controllers/field_groups.php:473
|
863 |
+
msgid ""
|
864 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
865 |
+
"link"
|
866 |
+
msgstr ""
|
867 |
+
"Как только плагин будет загружен и установлен, нажмите на ссылку "
|
868 |
+
"\"Активировать плагин\"."
|
869 |
+
|
870 |
+
#: core/controllers/field_groups.php:474
|
871 |
+
msgid "The Add-on is now installed and activated!"
|
872 |
+
msgstr "Аддон теперь установлен и активирован!"
|
873 |
+
|
874 |
+
#: core/controllers/field_groups.php:488
|
875 |
+
msgid "Awesome. Let's get to work"
|
876 |
+
msgstr "Превосходно! Приступим к работе."
|
877 |
+
|
878 |
+
#: core/controllers/input.php:480
|
879 |
+
msgid "Validation Failed. One or more fields below are required."
|
880 |
+
msgstr ""
|
881 |
+
"Проверка не удалась. Один или больше полей ниже обязательны к заполнению."
|
882 |
+
|
883 |
+
#: core/controllers/input.php:482
|
884 |
+
msgid "Maximum values reached ( {max} values )"
|
885 |
+
msgstr "Максимальное количество значений достигнуто ({max} значений)"
|
886 |
+
|
887 |
+
#: core/controllers/upgrade.php:72
|
888 |
+
msgid "Upgrade"
|
889 |
+
msgstr "Улучшить"
|
890 |
+
|
891 |
+
#: core/controllers/upgrade.php:616
|
892 |
+
msgid "Modifying field group options 'show on page'"
|
893 |
+
msgstr "Изменение опций \"отображать на странице\" группы полей"
|
894 |
+
|
895 |
+
#: core/controllers/upgrade.php:670
|
896 |
+
msgid "Modifying field option 'taxonomy'"
|
897 |
+
msgstr "Изменение опции \"таксономия\" поля"
|
898 |
+
|
899 |
+
#: core/controllers/upgrade.php:767
|
900 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
901 |
+
msgstr ""
|
902 |
+
"Перенос пользовательских произвольных полей из \"wp_options\" в \"wp_usermeta"
|
903 |
+
"\""
|
904 |
+
|
905 |
+
#: core/fields/_base.php:120 core/views/meta_box_location.php:71
|
906 |
+
msgid "Basic"
|
907 |
+
msgstr "Основное"
|
908 |
+
|
909 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
|
910 |
+
msgid "Checkbox"
|
911 |
+
msgstr "Чекбокс"
|
912 |
+
|
913 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:20
|
914 |
+
#: core/fields/select.php:23 core/fields/true_false.php:20
|
915 |
+
msgid "Choice"
|
916 |
+
msgstr "Выбор"
|
917 |
+
|
918 |
+
#: core/fields/checkbox.php:138 core/fields/radio.php:121
|
919 |
+
#: core/fields/select.php:183
|
920 |
+
msgid "Choices"
|
921 |
+
msgstr "Выборы"
|
922 |
+
|
923 |
+
#: core/fields/checkbox.php:139 core/fields/select.php:184
|
924 |
+
msgid "Enter each choice on a new line."
|
925 |
+
msgstr "Введите каждый вариант выбора на новую строку."
|
926 |
+
|
927 |
+
#: core/fields/checkbox.php:140 core/fields/select.php:185
|
928 |
+
msgid "For more control, you may specify both a value and label like this:"
|
929 |
+
msgstr ""
|
930 |
+
"Для большего контроля, вы можете ввести значение и ярлык по следующему "
|
931 |
+
"формату:"
|
932 |
+
|
933 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:127
|
934 |
+
#: core/fields/select.php:186
|
935 |
+
msgid "red : Red"
|
936 |
+
msgstr "red : Red"
|
937 |
+
|
938 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:128
|
939 |
+
#: core/fields/select.php:186
|
940 |
+
msgid "blue : Blue"
|
941 |
+
msgstr "blue : Blue"
|
942 |
+
|
943 |
+
#: core/fields/checkbox.php:158 core/fields/color_picker.php:73
|
944 |
+
#: core/fields/email.php:71 core/fields/number.php:71
|
945 |
+
#: core/fields/radio.php:146 core/fields/select.php:203
|
946 |
+
#: core/fields/text.php:73 core/fields/textarea.php:73
|
947 |
+
#: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
|
948 |
+
msgid "Default Value"
|
949 |
+
msgstr "Значение по умолчанию"
|
950 |
+
|
951 |
+
#: core/fields/checkbox.php:159 core/fields/select.php:204
|
952 |
+
msgid "Enter each default value on a new line"
|
953 |
+
msgstr "Введите каждое значение на новую строку."
|
954 |
+
|
955 |
+
#: core/fields/color_picker.php:19
|
956 |
+
msgid "Color Picker"
|
957 |
+
msgstr "Выбор цвета"
|
958 |
+
|
959 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
|
960 |
+
msgid "jQuery"
|
961 |
+
msgstr "jQuery"
|
962 |
+
|
963 |
+
#: core/fields/color_picker.php:74
|
964 |
+
msgid "eg: #ffffff"
|
965 |
+
msgstr "Пример: #ffffff"
|
966 |
+
|
967 |
+
#: core/fields/date_picker/date_picker.php:19
|
968 |
+
msgid "Date Picker"
|
969 |
+
msgstr "Выбор даты"
|
970 |
+
|
971 |
+
#: core/fields/date_picker/date_picker.php:52
|
972 |
+
#: core/fields/date_picker/date_picker.php:132
|
973 |
+
msgid "Done"
|
974 |
+
msgstr "Готово"
|
975 |
+
|
976 |
+
#: core/fields/date_picker/date_picker.php:53
|
977 |
+
#: core/fields/date_picker/date_picker.php:133
|
978 |
+
msgid "Today"
|
979 |
+
msgstr "Сегодня"
|
980 |
+
|
981 |
+
#: core/fields/date_picker/date_picker.php:56
|
982 |
+
#: core/fields/date_picker/date_picker.php:136
|
983 |
+
msgid "Show a different month"
|
984 |
+
msgstr "Показать другой месяц"
|
985 |
+
|
986 |
+
#: core/fields/date_picker/date_picker.php:146
|
987 |
+
msgid "Save format"
|
988 |
+
msgstr "Сохранить формат"
|
989 |
+
|
990 |
+
#: core/fields/date_picker/date_picker.php:147
|
991 |
+
msgid ""
|
992 |
+
"This format will determin the value saved to the database and returned via "
|
993 |
+
"the API"
|
994 |
+
msgstr ""
|
995 |
+
"Этот формат определит значение сохраненное в базе данных и возвращенное "
|
996 |
+
"через API."
|
997 |
+
|
998 |
+
#: core/fields/date_picker/date_picker.php:148
|
999 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1000 |
+
msgstr "\"yymmdd\" самоый практичный формат. Прочитать больше о"
|
1001 |
+
|
1002 |
+
#: core/fields/date_picker/date_picker.php:148
|
1003 |
+
#: core/fields/date_picker/date_picker.php:164
|
1004 |
+
msgid "jQuery date formats"
|
1005 |
+
msgstr "jQuery форматах дат"
|
1006 |
+
|
1007 |
+
#: core/fields/date_picker/date_picker.php:162
|
1008 |
+
msgid "Display format"
|
1009 |
+
msgstr "Отображать формат"
|
1010 |
+
|
1011 |
+
#: core/fields/date_picker/date_picker.php:163
|
1012 |
+
msgid "This format will be seen by the user when entering a value"
|
1013 |
+
msgstr "Этот формат будет виден пользователям при вводе значения."
|
1014 |
+
|
1015 |
+
#: core/fields/date_picker/date_picker.php:164
|
1016 |
+
msgid ""
|
1017 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1018 |
+
"about"
|
1019 |
+
msgstr ""
|
1020 |
+
"\"dd/mm/yy\" или \"mm/dd/yy\" самые используемые форматы отображения. "
|
1021 |
+
"Прочитать больше о"
|
1022 |
+
|
1023 |
+
#: core/fields/date_picker/date_picker.php:178
|
1024 |
+
msgid "Week Starts On"
|
1025 |
+
msgstr "Неделя начинается"
|
1026 |
+
|
1027 |
+
#: core/fields/dummy.php:19
|
1028 |
+
msgid "Dummy"
|
1029 |
+
msgstr "Макет"
|
1030 |
+
|
1031 |
+
#: core/fields/email.php:19
|
1032 |
+
msgid "Email"
|
1033 |
+
msgstr "E-mail"
|
1034 |
+
|
1035 |
+
#: core/fields/file.php:19
|
1036 |
+
msgid "File"
|
1037 |
+
msgstr "Файл"
|
1038 |
+
|
1039 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1040 |
+
msgid "Content"
|
1041 |
+
msgstr "Содержание"
|
1042 |
+
|
1043 |
+
#: core/fields/file.php:76 core/fields/image.php:76
|
1044 |
+
#: core/views/meta_box_fields.php:113
|
1045 |
+
msgid "Edit"
|
1046 |
+
msgstr "Редактировать"
|
1047 |
+
|
1048 |
+
#: core/fields/file.php:77 core/fields/image.php:75
|
1049 |
+
msgid "Remove"
|
1050 |
+
msgstr "Убрать"
|
1051 |
+
|
1052 |
+
#: core/fields/file.php:84
|
1053 |
+
msgid "No File Selected"
|
1054 |
+
msgstr "Файл не выбран"
|
1055 |
+
|
1056 |
+
#: core/fields/file.php:84
|
1057 |
+
msgid "Add File"
|
1058 |
+
msgstr "Добавить файл"
|
1059 |
+
|
1060 |
+
#: core/fields/file.php:119 core/fields/image.php:116
|
1061 |
+
#: core/fields/taxonomy.php:376
|
1062 |
+
msgid "Return Value"
|
1063 |
+
msgstr "Вернуть значение"
|
1064 |
+
|
1065 |
+
#: core/fields/file.php:130
|
1066 |
+
msgid "File Object"
|
1067 |
+
msgstr "Файловый объект"
|
1068 |
+
|
1069 |
+
#: core/fields/file.php:131
|
1070 |
+
msgid "File URL"
|
1071 |
+
msgstr "Ссылка на файл"
|
1072 |
+
|
1073 |
+
#: core/fields/file.php:132
|
1074 |
+
msgid "File ID"
|
1075 |
+
msgstr "ID файла"
|
1076 |
+
|
1077 |
+
#: core/fields/file.php:243
|
1078 |
+
msgid "File Updated."
|
1079 |
+
msgstr "Файл обновлен."
|
1080 |
+
|
1081 |
+
#: core/fields/file.php:335 core/fields/image.php:374
|
1082 |
+
msgid "Media attachment updated."
|
1083 |
+
msgstr "Вложение медиа обновлено."
|
1084 |
+
|
1085 |
+
#: core/fields/file.php:493
|
1086 |
+
msgid "No files selected"
|
1087 |
+
msgstr "Файлы не выбраны"
|
1088 |
+
|
1089 |
+
#: core/fields/file.php:634
|
1090 |
+
msgid "Add Selected Files"
|
1091 |
+
msgstr "Добавить выбранные файлы"
|
1092 |
+
|
1093 |
+
#: core/fields/file.php:667
|
1094 |
+
msgid "Select File"
|
1095 |
+
msgstr "Выбрать файл"
|
1096 |
+
|
1097 |
+
#: core/fields/file.php:670
|
1098 |
+
msgid "Update File"
|
1099 |
+
msgstr "Обновить файл"
|
1100 |
+
|
1101 |
+
#: core/fields/image.php:19
|
1102 |
+
msgid "Image"
|
1103 |
+
msgstr "Изображение"
|
1104 |
+
|
1105 |
+
#: core/fields/image.php:82
|
1106 |
+
msgid "No image selected"
|
1107 |
+
msgstr "Изображение не выбрано"
|
1108 |
+
|
1109 |
+
#: core/fields/image.php:82
|
1110 |
+
msgid "Add Image"
|
1111 |
+
msgstr "Добавить изображение"
|
1112 |
+
|
1113 |
+
#: core/fields/image.php:126
|
1114 |
+
msgid "Image Object"
|
1115 |
+
msgstr "Изображаемый объект"
|
1116 |
+
|
1117 |
+
#: core/fields/image.php:127
|
1118 |
+
msgid "Image URL"
|
1119 |
+
msgstr "Ссылка на изображение"
|
1120 |
+
|
1121 |
+
#: core/fields/image.php:128
|
1122 |
+
msgid "Image ID"
|
1123 |
+
msgstr "ID изображения"
|
1124 |
+
|
1125 |
+
#: core/fields/image.php:136
|
1126 |
+
msgid "Preview Size"
|
1127 |
+
msgstr "Размер предпросмотра"
|
1128 |
+
|
1129 |
+
#: core/fields/image.php:283
|
1130 |
+
msgid "Image Updated."
|
1131 |
+
msgstr "Изображение обновлено."
|
1132 |
+
|
1133 |
+
#: core/fields/image.php:525
|
1134 |
+
msgid "No images selected"
|
1135 |
+
msgstr "Изображение не выбраны"
|
1136 |
+
|
1137 |
+
#: core/fields/image.php:667
|
1138 |
+
msgid "Add Selected Images"
|
1139 |
+
msgstr "Добавить выбранные изображения"
|
1140 |
+
|
1141 |
+
#: core/fields/image.php:696
|
1142 |
+
msgid "Select Image"
|
1143 |
+
msgstr "Выбрать изображение"
|
1144 |
+
|
1145 |
+
#: core/fields/image.php:699
|
1146 |
+
msgid "Update Image"
|
1147 |
+
msgstr "Обновить изображение"
|
1148 |
+
|
1149 |
+
#: core/fields/message.php:19 core/fields/message.php:71
|
1150 |
+
#: core/fields/true_false.php:89
|
1151 |
+
msgid "Message"
|
1152 |
+
msgstr "Сообщение"
|
1153 |
+
|
1154 |
+
#: core/fields/message.php:20 core/fields/radio.php:162 core/fields/tab.php:20
|
1155 |
+
msgid "Layout"
|
1156 |
+
msgstr "Макет"
|
1157 |
+
|
1158 |
+
#: core/fields/message.php:72
|
1159 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1160 |
+
msgstr "Текст и HTML введенный сюда появится на одной строке с полями."
|
1161 |
+
|
1162 |
+
#: core/fields/message.php:73
|
1163 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1164 |
+
msgstr "Пожалуйста, заметьте, что весь текст пройдет через WP функцию"
|
1165 |
+
|
1166 |
+
#: core/fields/number.php:19
|
1167 |
+
msgid "Number"
|
1168 |
+
msgstr "Номер"
|
1169 |
+
|
1170 |
+
#: core/fields/page_link.php:19
|
1171 |
+
msgid "Page Link"
|
1172 |
+
msgstr "Ссылка на страницу"
|
1173 |
+
|
1174 |
+
#: core/fields/page_link.php:20 core/fields/post_object.php:20
|
1175 |
+
#: core/fields/relationship.php:23 core/fields/taxonomy.php:23
|
1176 |
+
#: core/fields/user.php:23
|
1177 |
+
msgid "Relational"
|
1178 |
+
msgstr "Отношение"
|
1179 |
+
|
1180 |
+
#: core/fields/page_link.php:78 core/fields/post_object.php:228
|
1181 |
+
#: core/fields/relationship.php:523 core/fields/relationship.php:602
|
1182 |
+
#: core/views/meta_box_location.php:72
|
1183 |
+
msgid "Post Type"
|
1184 |
+
msgstr "Тип записи"
|
1185 |
+
|
1186 |
+
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
1187 |
+
#: core/fields/select.php:220 core/fields/taxonomy.php:342
|
1188 |
+
#: core/fields/user.php:284
|
1189 |
+
msgid "Allow Null?"
|
1190 |
+
msgstr "Разрешить пусто значение?"
|
1191 |
+
|
1192 |
+
#: core/fields/page_link.php:123 core/fields/post_object.php:298
|
1193 |
+
#: core/fields/select.php:239
|
1194 |
+
msgid "Select multiple values?"
|
1195 |
+
msgstr "Выбрать несколько значений?"
|
1196 |
+
|
1197 |
+
#: core/fields/password.php:19
|
1198 |
+
msgid "Password"
|
1199 |
+
msgstr "Пароль"
|
1200 |
+
|
1201 |
+
#: core/fields/post_object.php:19
|
1202 |
+
msgid "Post Object"
|
1203 |
+
msgstr "Объект записи"
|
1204 |
+
|
1205 |
+
#: core/fields/post_object.php:252 core/fields/relationship.php:547
|
1206 |
+
msgid "Filter from Taxonomy"
|
1207 |
+
msgstr "Фильтровать по таксономии"
|
1208 |
+
|
1209 |
+
#: core/fields/radio.php:19
|
1210 |
+
msgid "Radio Button"
|
1211 |
+
msgstr "Радио-кнопка"
|
1212 |
+
|
1213 |
+
#: core/fields/radio.php:122
|
1214 |
+
msgid "Enter your choices one per line"
|
1215 |
+
msgstr "Введите каждый вариант выбора на новую строку."
|
1216 |
+
|
1217 |
+
#: core/fields/radio.php:124
|
1218 |
+
msgid "Red"
|
1219 |
+
msgstr "Red"
|
1220 |
+
|
1221 |
+
#: core/fields/radio.php:125
|
1222 |
+
msgid "Blue"
|
1223 |
+
msgstr "Blue"
|
1224 |
+
|
1225 |
+
#: core/fields/radio.php:173
|
1226 |
+
msgid "Vertical"
|
1227 |
+
msgstr "Вертикальный"
|
1228 |
+
|
1229 |
+
#: core/fields/radio.php:174
|
1230 |
+
msgid "Horizontal"
|
1231 |
+
msgstr "Горизонтальный"
|
1232 |
+
|
1233 |
+
#: core/fields/relationship.php:22
|
1234 |
+
msgid "Relationship"
|
1235 |
+
msgstr "Взаимоотношение"
|
1236 |
+
|
1237 |
+
#: core/fields/relationship.php:362 core/fields/relationship.php:581
|
1238 |
+
msgid "Search"
|
1239 |
+
msgstr "Поиск"
|
1240 |
+
|
1241 |
+
#: core/fields/relationship.php:582
|
1242 |
+
msgid "Post Type Select"
|
1243 |
+
msgstr "Выбор типа записи"
|
1244 |
+
|
1245 |
+
#: core/fields/relationship.php:590
|
1246 |
+
msgid "Elements"
|
1247 |
+
msgstr "Элементы"
|
1248 |
+
|
1249 |
+
#: core/fields/relationship.php:591
|
1250 |
+
msgid "Selected elements will be displayed in each result"
|
1251 |
+
msgstr "Выбранные элементы будут отображены в каждом результате."
|
1252 |
+
|
1253 |
+
#: core/fields/relationship.php:601
|
1254 |
+
msgid "Post Title"
|
1255 |
+
msgstr "Заголовок записи"
|
1256 |
+
|
1257 |
+
#: core/fields/relationship.php:613
|
1258 |
+
msgid "Maximum posts"
|
1259 |
+
msgstr "Максимум записей"
|
1260 |
+
|
1261 |
+
#: core/fields/select.php:22 core/fields/taxonomy.php:333
|
1262 |
+
#: core/fields/user.php:275
|
1263 |
+
msgid "Select"
|
1264 |
+
msgstr "Выбрать"
|
1265 |
+
|
1266 |
+
#: core/fields/tab.php:19
|
1267 |
+
msgid "Tab"
|
1268 |
+
msgstr "Вкладка"
|
1269 |
+
|
1270 |
+
#: core/fields/tab.php:67
|
1271 |
+
msgid ""
|
1272 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1273 |
+
"defined) will appear grouped on the edit screen."
|
1274 |
+
msgstr ""
|
1275 |
+
"Все поля, которые следуют перед этим полем будут находиться в данной вкладке "
|
1276 |
+
"(или пока другое поле-вкладка не будет создано)."
|
1277 |
+
|
1278 |
+
#: core/fields/tab.php:68
|
1279 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1280 |
+
msgstr ""
|
1281 |
+
"Вы можете использовать несколько вкладок, чтобы разделить свои поля на "
|
1282 |
+
"разделы."
|
1283 |
+
|
1284 |
+
#: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
|
1285 |
+
msgid "Taxonomy"
|
1286 |
+
msgstr "Таксономия"
|
1287 |
+
|
1288 |
+
#: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
|
1289 |
+
#: core/fields/text.php:97 core/fields/textarea.php:97
|
1290 |
+
msgid "None"
|
1291 |
+
msgstr "Ничего"
|
1292 |
+
|
1293 |
+
#: core/fields/taxonomy.php:317 core/fields/user.php:260
|
1294 |
+
#: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
|
1295 |
+
msgid "Field Type"
|
1296 |
+
msgstr "Тип полйла"
|
1297 |
+
|
1298 |
+
#: core/fields/taxonomy.php:327 core/fields/user.php:269
|
1299 |
+
msgid "Multiple Values"
|
1300 |
+
msgstr "Несколько значений"
|
1301 |
+
|
1302 |
+
#: core/fields/taxonomy.php:329 core/fields/user.php:271
|
1303 |
+
msgid "Multi Select"
|
1304 |
+
msgstr "Множественный выбор"
|
1305 |
+
|
1306 |
+
#: core/fields/taxonomy.php:331 core/fields/user.php:273
|
1307 |
+
msgid "Single Value"
|
1308 |
+
msgstr "Одно значение"
|
1309 |
+
|
1310 |
+
#: core/fields/taxonomy.php:332
|
1311 |
+
msgid "Radio Buttons"
|
1312 |
+
msgstr "Радио-кнопки"
|
1313 |
+
|
1314 |
+
#: core/fields/taxonomy.php:361
|
1315 |
+
msgid "Load & Save Terms to Post"
|
1316 |
+
msgstr "Загрузить и сохранить термины в запись"
|
1317 |
+
|
1318 |
+
#: core/fields/taxonomy.php:369
|
1319 |
+
msgid ""
|
1320 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1321 |
+
msgstr ""
|
1322 |
+
"Загрузить значение основываясь на терминах записи и обновить термины записи "
|
1323 |
+
"при сохранении."
|
1324 |
+
|
1325 |
+
#: core/fields/taxonomy.php:386
|
1326 |
+
msgid "Term Object"
|
1327 |
+
msgstr "Объект термина"
|
1328 |
+
|
1329 |
+
#: core/fields/taxonomy.php:387
|
1330 |
+
msgid "Term ID"
|
1331 |
+
msgstr "ID термина"
|
1332 |
+
|
1333 |
+
#: core/fields/text.php:19
|
1334 |
+
msgid "Text"
|
1335 |
+
msgstr "Текст"
|
1336 |
+
|
1337 |
+
#: core/fields/text.php:87 core/fields/textarea.php:87
|
1338 |
+
msgid "Formatting"
|
1339 |
+
msgstr "Форматирование"
|
1340 |
+
|
1341 |
+
#: core/fields/text.php:88
|
1342 |
+
msgid "Define how to render html tags"
|
1343 |
+
msgstr "Определите, как отображать HTML теги."
|
1344 |
+
|
1345 |
+
#: core/fields/text.php:98 core/fields/textarea.php:99
|
1346 |
+
msgid "HTML"
|
1347 |
+
msgstr "HTML"
|
1348 |
+
|
1349 |
+
#: core/fields/textarea.php:19
|
1350 |
+
msgid "Text Area"
|
1351 |
+
msgstr "Область текста"
|
1352 |
+
|
1353 |
+
#: core/fields/textarea.php:88
|
1354 |
+
msgid "Define how to render html tags / new lines"
|
1355 |
+
msgstr "Определите, как отображать HTML теги и новые строки."
|
1356 |
+
|
1357 |
+
#: core/fields/textarea.php:98
|
1358 |
+
msgid "auto <br />"
|
1359 |
+
msgstr "автоматические <br />"
|
1360 |
+
|
1361 |
+
#: core/fields/true_false.php:19
|
1362 |
+
msgid "True / False"
|
1363 |
+
msgstr "Истина / Ложь"
|
1364 |
+
|
1365 |
+
#: core/fields/true_false.php:90
|
1366 |
+
msgid "eg. Show extra content"
|
1367 |
+
msgstr "Пример: Отображать дополнительное содержание"
|
1368 |
+
|
1369 |
+
#: core/fields/user.php:22
|
1370 |
+
msgid "User"
|
1371 |
+
msgstr "Пользователь"
|
1372 |
+
|
1373 |
+
#: core/fields/user.php:233
|
1374 |
+
msgid "Filter by role"
|
1375 |
+
msgstr "Фильтровать по должности"
|
1376 |
+
|
1377 |
+
#: core/fields/wysiwyg.php:19
|
1378 |
+
msgid "Wysiwyg Editor"
|
1379 |
+
msgstr "Редактор WYSIWYG"
|
1380 |
+
|
1381 |
+
#: core/fields/wysiwyg.php:193
|
1382 |
+
msgid "Toolbar"
|
1383 |
+
msgstr "Панель инструментов"
|
1384 |
+
|
1385 |
+
#: core/fields/wysiwyg.php:225
|
1386 |
+
msgid "Show Media Upload Buttons?"
|
1387 |
+
msgstr "Отображать кнопки загрузки медиа?"
|
1388 |
+
|
1389 |
+
#: core/views/meta_box_fields.php:23
|
1390 |
+
msgid "New Field"
|
1391 |
+
msgstr "Новое поле"
|
1392 |
+
|
1393 |
+
# Must be non-translateable.
|
1394 |
+
#: core/views/meta_box_fields.php:24
|
1395 |
+
msgid "new_field"
|
1396 |
+
msgstr "new_field"
|
1397 |
+
|
1398 |
+
#: core/views/meta_box_fields.php:57
|
1399 |
+
msgid "Field type does not exist"
|
1400 |
+
msgstr "Тип поля не существует"
|
1401 |
+
|
1402 |
+
#: core/views/meta_box_fields.php:64
|
1403 |
+
msgid "Move to trash. Are you sure?"
|
1404 |
+
msgstr "Отправить в корзину. Вы уверены?"
|
1405 |
+
|
1406 |
+
# Maybe non-translateable too.
|
1407 |
+
#: core/views/meta_box_fields.php:65
|
1408 |
+
msgid "checked"
|
1409 |
+
msgstr "checked"
|
1410 |
+
|
1411 |
+
#: core/views/meta_box_fields.php:66
|
1412 |
+
msgid "No toggle fields available"
|
1413 |
+
msgstr "Нет доступных полей выбора."
|
1414 |
+
|
1415 |
+
#: core/views/meta_box_fields.php:67
|
1416 |
+
msgid "copy"
|
1417 |
+
msgstr "копировать"
|
1418 |
+
|
1419 |
+
#: core/views/meta_box_fields.php:79
|
1420 |
+
msgid "Field Order"
|
1421 |
+
msgstr "Очередность поля"
|
1422 |
+
|
1423 |
+
#: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
|
1424 |
+
msgid "Field Label"
|
1425 |
+
msgstr "Ярлык поля"
|
1426 |
+
|
1427 |
+
#: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
|
1428 |
+
msgid "Field Name"
|
1429 |
+
msgstr "Имя поля"
|
1430 |
+
|
1431 |
+
#: core/views/meta_box_fields.php:83
|
1432 |
+
msgid "Field Key"
|
1433 |
+
msgstr "Ключ поля"
|
1434 |
+
|
1435 |
+
#: core/views/meta_box_fields.php:95
|
1436 |
+
msgid ""
|
1437 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1438 |
+
"first field."
|
1439 |
+
msgstr ""
|
1440 |
+
"Нет полей. Нажмите на кнопку <strong>+ Добавить поле</strong>, чтобы создать "
|
1441 |
+
"свое первое поле."
|
1442 |
+
|
1443 |
+
#: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
|
1444 |
+
msgid "Edit this Field"
|
1445 |
+
msgstr "Редактировать это поле."
|
1446 |
+
|
1447 |
+
#: core/views/meta_box_fields.php:114
|
1448 |
+
msgid "Read documentation for this field"
|
1449 |
+
msgstr "Прочитайте документацию по этому полю."
|
1450 |
+
|
1451 |
+
#: core/views/meta_box_fields.php:114
|
1452 |
+
msgid "Docs"
|
1453 |
+
msgstr "Документация"
|
1454 |
+
|
1455 |
+
#: core/views/meta_box_fields.php:115
|
1456 |
+
msgid "Duplicate this Field"
|
1457 |
+
msgstr "Копировать это поле"
|
1458 |
+
|
1459 |
+
#: core/views/meta_box_fields.php:115
|
1460 |
+
msgid "Duplicate"
|
1461 |
+
msgstr "Копировать"
|
1462 |
+
|
1463 |
+
#: core/views/meta_box_fields.php:116
|
1464 |
+
msgid "Delete this Field"
|
1465 |
+
msgstr "Удалить это поле"
|
1466 |
+
|
1467 |
+
#: core/views/meta_box_fields.php:116
|
1468 |
+
msgid "Delete"
|
1469 |
+
msgstr "Удалить"
|
1470 |
+
|
1471 |
+
#: core/views/meta_box_fields.php:133
|
1472 |
+
msgid "This is the name which will appear on the EDIT page"
|
1473 |
+
msgstr "Это имя появится на страница редактирования."
|
1474 |
+
|
1475 |
+
#: core/views/meta_box_fields.php:149
|
1476 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1477 |
+
msgstr "Одно слово, без пробелов. Разрешены только _ и -."
|
1478 |
+
|
1479 |
+
#: core/views/meta_box_fields.php:176
|
1480 |
+
msgid "Field Instructions"
|
1481 |
+
msgstr "Инструкции по полю"
|
1482 |
+
|
1483 |
+
#: core/views/meta_box_fields.php:177
|
1484 |
+
msgid "Instructions for authors. Shown when submitting data"
|
1485 |
+
msgstr "Инструкции для авторов. Отображаются при отправке данных."
|
1486 |
+
|
1487 |
+
#: core/views/meta_box_fields.php:189
|
1488 |
+
msgid "Required?"
|
1489 |
+
msgstr "Обязательно?"
|
1490 |
+
|
1491 |
+
#: core/views/meta_box_fields.php:212
|
1492 |
+
msgid "Conditional Logic"
|
1493 |
+
msgstr "Условная логика"
|
1494 |
+
|
1495 |
+
#: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
|
1496 |
+
msgid "is equal to"
|
1497 |
+
msgstr "равно"
|
1498 |
+
|
1499 |
+
#: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
|
1500 |
+
msgid "is not equal to"
|
1501 |
+
msgstr "не равно"
|
1502 |
+
|
1503 |
+
#: core/views/meta_box_fields.php:282
|
1504 |
+
msgid "Show this field when"
|
1505 |
+
msgstr "Отображать это поле, когда"
|
1506 |
+
|
1507 |
+
#: core/views/meta_box_fields.php:288
|
1508 |
+
msgid "all"
|
1509 |
+
msgstr "все"
|
1510 |
+
|
1511 |
+
#: core/views/meta_box_fields.php:289
|
1512 |
+
msgid "any"
|
1513 |
+
msgstr "любое"
|
1514 |
+
|
1515 |
+
#: core/views/meta_box_fields.php:292
|
1516 |
+
msgid "these rules are met"
|
1517 |
+
msgstr "из этих условий придерживаются"
|
1518 |
+
|
1519 |
+
#: core/views/meta_box_fields.php:306
|
1520 |
+
msgid "Close Field"
|
1521 |
+
msgstr "Закрыть поле"
|
1522 |
+
|
1523 |
+
#: core/views/meta_box_fields.php:319
|
1524 |
+
msgid "Drag and drop to reorder"
|
1525 |
+
msgstr "Drag-and-drop для переноса"
|
1526 |
+
|
1527 |
+
#: core/views/meta_box_fields.php:320
|
1528 |
+
msgid "+ Add Field"
|
1529 |
+
msgstr "+ Добавить поле"
|
1530 |
+
|
1531 |
+
#: core/views/meta_box_location.php:45
|
1532 |
+
msgid "Rules"
|
1533 |
+
msgstr "Правила"
|
1534 |
+
|
1535 |
+
#: core/views/meta_box_location.php:46
|
1536 |
+
msgid ""
|
1537 |
+
"Create a set of rules to determine which edit screens will use these "
|
1538 |
+
"advanced custom fields"
|
1539 |
+
msgstr ""
|
1540 |
+
"Создайте группы правил и условий, чтобы определить, какие экраны "
|
1541 |
+
"редактирования будут использовать расширенные произвольные поля."
|
1542 |
+
|
1543 |
+
#: core/views/meta_box_location.php:57
|
1544 |
+
msgid "Show this field group if"
|
1545 |
+
msgstr "Отображать эту группу полей, если"
|
1546 |
+
|
1547 |
+
#: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
|
1548 |
+
#: core/views/meta_box_location.php:172
|
1549 |
+
msgid "or"
|
1550 |
+
msgstr "или"
|
1551 |
+
|
1552 |
+
#: core/views/meta_box_location.php:73
|
1553 |
+
msgid "Logged in User Type"
|
1554 |
+
msgstr "Вошедший тип пользователя"
|
1555 |
+
|
1556 |
+
#: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
|
1557 |
+
msgid "Page"
|
1558 |
+
msgstr "Страница"
|
1559 |
+
|
1560 |
+
#: core/views/meta_box_location.php:77
|
1561 |
+
msgid "Page Type"
|
1562 |
+
msgstr "Тип страницы"
|
1563 |
+
|
1564 |
+
#: core/views/meta_box_location.php:78
|
1565 |
+
msgid "Page Parent"
|
1566 |
+
msgstr "Родитель страницы"
|
1567 |
+
|
1568 |
+
#: core/views/meta_box_location.php:79
|
1569 |
+
msgid "Page Template"
|
1570 |
+
msgstr "Шаблон страницы"
|
1571 |
+
|
1572 |
+
#: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
|
1573 |
+
msgid "Post"
|
1574 |
+
msgstr "Запись"
|
1575 |
+
|
1576 |
+
#: core/views/meta_box_location.php:83
|
1577 |
+
msgid "Post Category"
|
1578 |
+
msgstr "Рубрика записи"
|
1579 |
+
|
1580 |
+
#: core/views/meta_box_location.php:84
|
1581 |
+
msgid "Post Format"
|
1582 |
+
msgstr "Формат записи"
|
1583 |
+
|
1584 |
+
#: core/views/meta_box_location.php:85
|
1585 |
+
msgid "Post Taxonomy"
|
1586 |
+
msgstr "Таксономия записи"
|
1587 |
+
|
1588 |
+
#: core/views/meta_box_location.php:87
|
1589 |
+
msgid "Other"
|
1590 |
+
msgstr "Другое"
|
1591 |
+
|
1592 |
+
#: core/views/meta_box_location.php:88
|
1593 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1594 |
+
msgstr "Термин таксономии (Добавить / Редактировать)"
|
1595 |
+
|
1596 |
+
#: core/views/meta_box_location.php:89
|
1597 |
+
msgid "User (Add / Edit)"
|
1598 |
+
msgstr "Пользователь (Добавить / Редактировать)"
|
1599 |
+
|
1600 |
+
#: core/views/meta_box_location.php:90
|
1601 |
+
msgid "Media Attachment (Edit)"
|
1602 |
+
msgstr "Вложение медиа (Редактировать)"
|
1603 |
+
|
1604 |
+
#: core/views/meta_box_location.php:142
|
1605 |
+
msgid "and"
|
1606 |
+
msgstr "и"
|
1607 |
+
|
1608 |
+
#: core/views/meta_box_location.php:157
|
1609 |
+
msgid "Add rule group"
|
1610 |
+
msgstr "Добавить группу правил"
|
1611 |
+
|
1612 |
+
#: core/views/meta_box_location.php:168
|
1613 |
+
msgid "Unlock options add-on with an activation code"
|
1614 |
+
msgstr "Разблокировать опции аддона с помощью кода активации."
|
1615 |
+
|
1616 |
+
#: core/views/meta_box_options.php:23
|
1617 |
+
msgid "Order No."
|
1618 |
+
msgstr "Порядок очередности"
|
1619 |
+
|
1620 |
+
#: core/views/meta_box_options.php:24
|
1621 |
+
msgid "Field groups are created in order <br />from lowest to highest"
|
1622 |
+
msgstr ""
|
1623 |
+
"Группы полелй создаются по очереди, начиная с самого меньшего числа по самое "
|
1624 |
+
"большое."
|
1625 |
+
|
1626 |
+
#: core/views/meta_box_options.php:40
|
1627 |
+
msgid "Position"
|
1628 |
+
msgstr "Позиция"
|
1629 |
+
|
1630 |
+
#: core/views/meta_box_options.php:50
|
1631 |
+
msgid "Normal"
|
1632 |
+
msgstr "Обычно"
|
1633 |
+
|
1634 |
+
#: core/views/meta_box_options.php:51
|
1635 |
+
msgid "Side"
|
1636 |
+
msgstr "Боковая панель"
|
1637 |
+
|
1638 |
+
#: core/views/meta_box_options.php:60
|
1639 |
+
msgid "Style"
|
1640 |
+
msgstr "Стиль"
|
1641 |
+
|
1642 |
+
#: core/views/meta_box_options.php:70
|
1643 |
+
msgid "No Metabox"
|
1644 |
+
msgstr "Без метабокса"
|
1645 |
+
|
1646 |
+
#: core/views/meta_box_options.php:71
|
1647 |
+
msgid "Standard Metabox"
|
1648 |
+
msgstr "Стандартный метабокс"
|
1649 |
+
|
1650 |
+
#: core/views/meta_box_options.php:80
|
1651 |
+
msgid "Hide on screen"
|
1652 |
+
msgstr "Скрыть на экране"
|
1653 |
+
|
1654 |
+
#: core/views/meta_box_options.php:81
|
1655 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1656 |
+
msgstr "<b>Выберите</b> пункт, который надо <b>спрятать</b> с экрана."
|
1657 |
+
|
1658 |
+
#: core/views/meta_box_options.php:82
|
1659 |
+
msgid ""
|
1660 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
1661 |
+
"options will be used. (the one with the lowest order number)"
|
1662 |
+
msgstr ""
|
1663 |
+
"Если несколько групп полей появляются на экране редактирования, будет "
|
1664 |
+
"использована первая группа полей. (Та, у которой меньшее число порядка "
|
1665 |
+
"очередности.)"
|
1666 |
+
|
1667 |
+
#: core/views/meta_box_options.php:92
|
1668 |
+
msgid "Content Editor"
|
1669 |
+
msgstr "Текстовый редактор"
|
1670 |
+
|
1671 |
+
#: core/views/meta_box_options.php:93
|
1672 |
+
msgid "Excerpt"
|
1673 |
+
msgstr "Цитата"
|
1674 |
+
|
1675 |
+
#: core/views/meta_box_options.php:95
|
1676 |
+
msgid "Discussion"
|
1677 |
+
msgstr "Обсуждение"
|
1678 |
+
|
1679 |
+
#: core/views/meta_box_options.php:96
|
1680 |
+
msgid "Comments"
|
1681 |
+
msgstr "Комментарии"
|
1682 |
+
|
1683 |
+
#: core/views/meta_box_options.php:97
|
1684 |
+
msgid "Revisions"
|
1685 |
+
msgstr "Редакции"
|
1686 |
+
|
1687 |
+
#: core/views/meta_box_options.php:98
|
1688 |
+
msgid "Slug"
|
1689 |
+
msgstr "Ярлык"
|
1690 |
+
|
1691 |
+
#: core/views/meta_box_options.php:99
|
1692 |
+
msgid "Author"
|
1693 |
+
msgstr "Автор"
|
1694 |
+
|
1695 |
+
#: core/views/meta_box_options.php:100
|
1696 |
+
msgid "Format"
|
1697 |
+
msgstr "Формат"
|
1698 |
+
|
1699 |
+
#: core/views/meta_box_options.php:101
|
1700 |
+
msgid "Featured Image"
|
1701 |
+
msgstr "Миниатюра записи"
|
1702 |
+
|
1703 |
+
#: core/views/meta_box_options.php:102
|
1704 |
+
msgid "Categories"
|
1705 |
+
msgstr "Рубрики"
|
1706 |
+
|
1707 |
+
#: core/views/meta_box_options.php:103
|
1708 |
+
msgid "Tags"
|
1709 |
+
msgstr "Метки"
|
1710 |
+
|
1711 |
+
#: core/views/meta_box_options.php:104
|
1712 |
+
msgid "Send Trackbacks"
|
1713 |
+
msgstr "Отправить обратные ссылки"
|
1714 |
+
|
1715 |
+
#: core/api.php:1093
|
1716 |
+
msgid "Update"
|
1717 |
+
msgstr "Обновить"
|
1718 |
+
|
1719 |
+
#: core/api.php:1094
|
1720 |
+
msgid "Post updated"
|
1721 |
+
msgstr "Данные обновлены"
|
lang/acf-sv_SE.mo
ADDED
Binary file
|
lang/acf-sv_SE.po
ADDED
@@ -0,0 +1,1695 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Advanced Custom Fields 4.1.7\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-07-06 18:26+0100\n"
|
9 |
+
"Last-Translator: Mikael Jorhult <mikael@jorhult.se>\n"
|
10 |
+
"Language-Team: Mikael Jorhult <mikael@jorhult.se>\n"
|
11 |
+
"Language: Swedish\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
19 |
+
|
20 |
+
#: acf.php:264
|
21 |
+
msgid "Field Groups"
|
22 |
+
msgstr "Fältgrupper"
|
23 |
+
|
24 |
+
#: acf.php:265 core/controllers/field_groups.php:214
|
25 |
+
msgid "Advanced Custom Fields"
|
26 |
+
msgstr "Advanced Custom Fields"
|
27 |
+
|
28 |
+
#: acf.php:266
|
29 |
+
msgid "Add New"
|
30 |
+
msgstr "Lägg till ny"
|
31 |
+
|
32 |
+
#: acf.php:267
|
33 |
+
msgid "Add New Field Group"
|
34 |
+
msgstr "Lägg till ny fältgrupp"
|
35 |
+
|
36 |
+
#: acf.php:268
|
37 |
+
msgid "Edit Field Group"
|
38 |
+
msgstr "Redigera fältgrupp"
|
39 |
+
|
40 |
+
#: acf.php:269
|
41 |
+
msgid "New Field Group"
|
42 |
+
msgstr "Ny fältgrupp"
|
43 |
+
|
44 |
+
#: acf.php:270
|
45 |
+
msgid "View Field Group"
|
46 |
+
msgstr "Visa fältgrupp"
|
47 |
+
|
48 |
+
#: acf.php:271
|
49 |
+
msgid "Search Field Groups"
|
50 |
+
msgstr "Sök fältgrupp"
|
51 |
+
|
52 |
+
#: acf.php:272
|
53 |
+
msgid "No Field Groups found"
|
54 |
+
msgstr "Inga fältgrupper hittades"
|
55 |
+
|
56 |
+
#: acf.php:273
|
57 |
+
msgid "No Field Groups found in Trash"
|
58 |
+
msgstr "Inga fältgrupper finns i papperskorgen"
|
59 |
+
|
60 |
+
#: acf.php:386 core/views/meta_box_options.php:94
|
61 |
+
msgid "Custom Fields"
|
62 |
+
msgstr "Egna fält"
|
63 |
+
|
64 |
+
#: acf.php:404 acf.php:407
|
65 |
+
msgid "Field group updated."
|
66 |
+
msgstr "Fältgruppen uppdaterades."
|
67 |
+
|
68 |
+
#: acf.php:405
|
69 |
+
msgid "Custom field updated."
|
70 |
+
msgstr "Eget fält uppdaterades."
|
71 |
+
|
72 |
+
#: acf.php:406
|
73 |
+
msgid "Custom field deleted."
|
74 |
+
msgstr "Eget fält raderades."
|
75 |
+
|
76 |
+
#. translators: %s: date and time of the revision
|
77 |
+
#: acf.php:409
|
78 |
+
msgid "Field group restored to revision from %s"
|
79 |
+
msgstr "Fältgruppen återställdes till revision %s"
|
80 |
+
|
81 |
+
#: acf.php:410
|
82 |
+
msgid "Field group published."
|
83 |
+
msgstr "Fältgruppen publicerades."
|
84 |
+
|
85 |
+
#: acf.php:411
|
86 |
+
msgid "Field group saved."
|
87 |
+
msgstr "Fältgruppen sparades."
|
88 |
+
|
89 |
+
#: acf.php:412
|
90 |
+
msgid "Field group submitted."
|
91 |
+
msgstr "Fältgruppen skickades."
|
92 |
+
|
93 |
+
#: acf.php:413
|
94 |
+
msgid "Field group scheduled for."
|
95 |
+
msgstr "Fältgruppen schemalades."
|
96 |
+
|
97 |
+
#: acf.php:414
|
98 |
+
msgid "Field group draft updated."
|
99 |
+
msgstr "Utkastet till fältgrupp uppdaterades."
|
100 |
+
|
101 |
+
#: acf.php:549
|
102 |
+
msgid "Thumbnail"
|
103 |
+
msgstr "Tumnagel"
|
104 |
+
|
105 |
+
#: acf.php:550
|
106 |
+
msgid "Medium"
|
107 |
+
msgstr "Medium"
|
108 |
+
|
109 |
+
#: acf.php:551
|
110 |
+
msgid "Large"
|
111 |
+
msgstr "Stor"
|
112 |
+
|
113 |
+
#: acf.php:552
|
114 |
+
msgid "Full"
|
115 |
+
msgstr "Full"
|
116 |
+
|
117 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:57
|
118 |
+
msgid "Error"
|
119 |
+
msgstr "Fel"
|
120 |
+
|
121 |
+
#: core/actions/export.php:30
|
122 |
+
msgid "No ACF groups selected"
|
123 |
+
msgstr "Inga ACF-grupper har valts"
|
124 |
+
|
125 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
126 |
+
msgid "Add-ons"
|
127 |
+
msgstr "Tillägg"
|
128 |
+
|
129 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:432
|
130 |
+
msgid "Repeater Field"
|
131 |
+
msgstr "Upprepningsfält"
|
132 |
+
|
133 |
+
#: core/controllers/addons.php:131
|
134 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
135 |
+
msgstr ""
|
136 |
+
"Skapa obegränsat antal rader av upprepningsbar data med detta mångsidiga "
|
137 |
+
"verktyg!"
|
138 |
+
|
139 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:440
|
140 |
+
msgid "Gallery Field"
|
141 |
+
msgstr "Gallerifält"
|
142 |
+
|
143 |
+
#: core/controllers/addons.php:138
|
144 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
145 |
+
msgstr "Skapa bildgallerier i ett enkelt och intuitivt gränssnitt!"
|
146 |
+
|
147 |
+
#: core/controllers/addons.php:144 core/controllers/export.php:380
|
148 |
+
#: core/controllers/field_groups.php:448
|
149 |
+
msgid "Options Page"
|
150 |
+
msgstr "Inställningssida"
|
151 |
+
|
152 |
+
#: core/controllers/addons.php:145
|
153 |
+
msgid "Create global data to use throughout your website!"
|
154 |
+
msgstr "Skapa gobala data som du kan använda över hela din webbplats!"
|
155 |
+
|
156 |
+
#: core/controllers/addons.php:151
|
157 |
+
msgid "Flexible Content Field"
|
158 |
+
msgstr "Fält för flexibelt innehåll"
|
159 |
+
|
160 |
+
#: core/controllers/addons.php:152
|
161 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
162 |
+
msgstr "Skapa unika layouter med verktyget för flexibelt innehåll!"
|
163 |
+
|
164 |
+
#: core/controllers/addons.php:161
|
165 |
+
msgid "Gravity Forms Field"
|
166 |
+
msgstr "Gravity Forms-fält"
|
167 |
+
|
168 |
+
#: core/controllers/addons.php:162
|
169 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
170 |
+
msgstr "Skapa ett listfält innehållande Gravity Forms-formulär!"
|
171 |
+
|
172 |
+
#: core/controllers/addons.php:168
|
173 |
+
msgid "Date & Time Picker"
|
174 |
+
msgstr "Datum- och tidväljare"
|
175 |
+
|
176 |
+
#: core/controllers/addons.php:169
|
177 |
+
msgid "jQuery date & time picker"
|
178 |
+
msgstr "Datum- och tidväljare med jQuery"
|
179 |
+
|
180 |
+
#: core/controllers/addons.php:175
|
181 |
+
msgid "Location Field"
|
182 |
+
msgstr "Platsfält"
|
183 |
+
|
184 |
+
#: core/controllers/addons.php:176
|
185 |
+
msgid "Find addresses and coordinates of a desired location"
|
186 |
+
msgstr "Hitta adresser och koordinater för en önskad plats"
|
187 |
+
|
188 |
+
#: core/controllers/addons.php:182
|
189 |
+
msgid "Contact Form 7 Field"
|
190 |
+
msgstr "Contact Form 7-fält"
|
191 |
+
|
192 |
+
#: core/controllers/addons.php:183
|
193 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
194 |
+
msgstr "Välj ett eller fler Contact Form 7-formulär i ett inlägg"
|
195 |
+
|
196 |
+
#: core/controllers/addons.php:193
|
197 |
+
msgid "Advanced Custom Fields Add-Ons"
|
198 |
+
msgstr "Tillägg till Advanced Custom Fields"
|
199 |
+
|
200 |
+
#: core/controllers/addons.php:196
|
201 |
+
msgid ""
|
202 |
+
"The following Add-ons are available to increase the functionality of the "
|
203 |
+
"Advanced Custom Fields plugin."
|
204 |
+
msgstr ""
|
205 |
+
"Följande tillägg finns för att öka funktionaliteten hos Advanced Custom "
|
206 |
+
"Fields."
|
207 |
+
|
208 |
+
#: core/controllers/addons.php:197
|
209 |
+
msgid ""
|
210 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
211 |
+
"included in your theme (does not receive updates)."
|
212 |
+
msgstr ""
|
213 |
+
"Varje tillägg kan installeras som en separat plugin (tar emot uppdateringar) "
|
214 |
+
"eller inkluderas i ditt tema (tar inte emot uppdateringar)."
|
215 |
+
|
216 |
+
#: core/controllers/addons.php:218 core/controllers/addons.php:239
|
217 |
+
msgid "Installed"
|
218 |
+
msgstr "Installerades"
|
219 |
+
|
220 |
+
#: core/controllers/addons.php:220
|
221 |
+
msgid "Purchase & Install"
|
222 |
+
msgstr "Köp och installera"
|
223 |
+
|
224 |
+
#: core/controllers/addons.php:241 core/controllers/field_groups.php:425
|
225 |
+
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
226 |
+
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
227 |
+
msgid "Download"
|
228 |
+
msgstr "Ladda ner"
|
229 |
+
|
230 |
+
#: core/controllers/export.php:50 core/controllers/export.php:159
|
231 |
+
msgid "Export"
|
232 |
+
msgstr "Exportera"
|
233 |
+
|
234 |
+
#: core/controllers/export.php:216
|
235 |
+
msgid "Export Field Groups"
|
236 |
+
msgstr "Exportera fältgrupper"
|
237 |
+
|
238 |
+
#: core/controllers/export.php:221
|
239 |
+
msgid "Field Groups"
|
240 |
+
msgstr "Fältgrupper"
|
241 |
+
|
242 |
+
#: core/controllers/export.php:222
|
243 |
+
msgid "Select the field groups to be exported"
|
244 |
+
msgstr "Välj fältgrupperna som ska exporteras"
|
245 |
+
|
246 |
+
#: core/controllers/export.php:239 core/controllers/export.php:252
|
247 |
+
msgid "Export to XML"
|
248 |
+
msgstr "Exportera till XML"
|
249 |
+
|
250 |
+
#: core/controllers/export.php:242 core/controllers/export.php:267
|
251 |
+
msgid "Export to PHP"
|
252 |
+
msgstr "Exportera till PHP"
|
253 |
+
|
254 |
+
#: core/controllers/export.php:253
|
255 |
+
msgid ""
|
256 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
257 |
+
"import plugin."
|
258 |
+
msgstr ""
|
259 |
+
"ACF kommer att skapa en .xml-fil som är kompatibel med WordPress egna "
|
260 |
+
"importtillägg."
|
261 |
+
|
262 |
+
#: core/controllers/export.php:254
|
263 |
+
msgid ""
|
264 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
265 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
266 |
+
msgstr ""
|
267 |
+
"Importerade fältgrupper <b>kommer</b> att visas i listan över redigerbara "
|
268 |
+
"fältgrupper. Detta är användbart då fältgrupper flyttas mellan WordPress-"
|
269 |
+
"webbplatser."
|
270 |
+
|
271 |
+
#: core/controllers/export.php:256
|
272 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
273 |
+
msgstr "Välj fältgrupp(er) från listan och klicka \"Exportera till XML\""
|
274 |
+
|
275 |
+
#: core/controllers/export.php:257
|
276 |
+
msgid "Save the .xml file when prompted"
|
277 |
+
msgstr "Spara .xml-filen på valfri plats"
|
278 |
+
|
279 |
+
#: core/controllers/export.php:258
|
280 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
281 |
+
msgstr "Gå till Verktyg » Importera och välj WordPress"
|
282 |
+
|
283 |
+
#: core/controllers/export.php:259
|
284 |
+
msgid "Install WP import plugin if prompted"
|
285 |
+
msgstr "Installera WordPress importtillägg vid behov"
|
286 |
+
|
287 |
+
#: core/controllers/export.php:260
|
288 |
+
msgid "Upload and import your exported .xml file"
|
289 |
+
msgstr "Ladda upp och importera din exporterade .xml-fil"
|
290 |
+
|
291 |
+
#: core/controllers/export.php:261
|
292 |
+
msgid "Select your user and ignore Import Attachments"
|
293 |
+
msgstr "Välj din användare och ignorera bilagor"
|
294 |
+
|
295 |
+
#: core/controllers/export.php:262
|
296 |
+
msgid "That's it! Happy WordPressing"
|
297 |
+
msgstr "Klart! Mycket nöje!"
|
298 |
+
|
299 |
+
#: core/controllers/export.php:268
|
300 |
+
msgid "ACF will create the PHP code to include in your theme."
|
301 |
+
msgstr "ACF kommer skapa PHP-koden att inkludera i ditt tema."
|
302 |
+
|
303 |
+
#: core/controllers/export.php:269 core/controllers/export.php:310
|
304 |
+
msgid ""
|
305 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
306 |
+
"groups. This is useful for including fields in themes."
|
307 |
+
msgstr ""
|
308 |
+
"Registrerade fältgrupper <b>kommer inte</b> att visas i listan över "
|
309 |
+
"redigerbara fältgrupper. Detta är användbart när man inkluderar fält i teman."
|
310 |
+
|
311 |
+
#: core/controllers/export.php:270 core/controllers/export.php:311
|
312 |
+
msgid ""
|
313 |
+
"Please note that if you export and register field groups within the same WP, "
|
314 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
315 |
+
"the original field group to the trash or remove the code from your functions."
|
316 |
+
"php file."
|
317 |
+
msgstr ""
|
318 |
+
"Notera att om du exporterar och registrerar fältgrupper inom samma WordPress-"
|
319 |
+
"installation kommer du se dubbletter av fälten i din redigeringsvy. För att "
|
320 |
+
"åtgärda det flyttar du den ursprungliga fältgruppen till papperskorgen eller "
|
321 |
+
"tar bort koden från din functions.php-fil."
|
322 |
+
|
323 |
+
#: core/controllers/export.php:272
|
324 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
325 |
+
msgstr "Välj fältgrupp(er) från listan och klicka \"Exportera till PHP\""
|
326 |
+
|
327 |
+
#: core/controllers/export.php:273 core/controllers/export.php:302
|
328 |
+
msgid "Copy the PHP code generated"
|
329 |
+
msgstr "Kopiera den genererade PHP-koden"
|
330 |
+
|
331 |
+
#: core/controllers/export.php:274 core/controllers/export.php:303
|
332 |
+
msgid "Paste into your functions.php file"
|
333 |
+
msgstr "Klistra in koden i din functions.php-fil"
|
334 |
+
|
335 |
+
#: core/controllers/export.php:275 core/controllers/export.php:304
|
336 |
+
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
337 |
+
msgstr "Redigera de första kodraderna för att aktivera eventuella tillägg. "
|
338 |
+
|
339 |
+
#: core/controllers/export.php:295
|
340 |
+
msgid "Export Field Groups to PHP"
|
341 |
+
msgstr "Exportera fältgrupper till PHP"
|
342 |
+
|
343 |
+
#: core/controllers/export.php:300 core/fields/tab.php:64
|
344 |
+
msgid "Instructions"
|
345 |
+
msgstr "Instruktioner"
|
346 |
+
|
347 |
+
#: core/controllers/export.php:309
|
348 |
+
msgid "Notes"
|
349 |
+
msgstr "Anteckningar"
|
350 |
+
|
351 |
+
#: core/controllers/export.php:316
|
352 |
+
msgid "Include in theme"
|
353 |
+
msgstr "Inkludera i tema"
|
354 |
+
|
355 |
+
#: core/controllers/export.php:317
|
356 |
+
msgid ""
|
357 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
358 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
359 |
+
"functions.php file:"
|
360 |
+
msgstr ""
|
361 |
+
"Advanced Custom Fields-tilläggen kan inkluderas i ett tema. Detta görs genom "
|
362 |
+
"att flytta ACF till din temamapp och lägg till följande kod i din functions."
|
363 |
+
"php-fil:"
|
364 |
+
|
365 |
+
#: core/controllers/export.php:323
|
366 |
+
msgid ""
|
367 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
368 |
+
"to enable lite mode. Add the following code to you functions.php file "
|
369 |
+
"<b>before</b> the include_once code:"
|
370 |
+
msgstr ""
|
371 |
+
"Med hjälp av en konstant kan du aktivera lite mode för att dölja ACFs "
|
372 |
+
"visuella användargränssnitt. Lägg till följande kod i din functions.php-fil "
|
373 |
+
"<b>innan</b> include_once-anropet:"
|
374 |
+
|
375 |
+
#: core/controllers/export.php:331
|
376 |
+
msgid "Back to export"
|
377 |
+
msgstr "Tillbaka till export"
|
378 |
+
|
379 |
+
#: core/controllers/export.php:352
|
380 |
+
msgid ""
|
381 |
+
"/**\n"
|
382 |
+
" * Install Add-ons\n"
|
383 |
+
" * \n"
|
384 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
385 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
386 |
+
"produce an error.\n"
|
387 |
+
" * \n"
|
388 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
389 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
390 |
+
"of this action.\n"
|
391 |
+
" * \n"
|
392 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
393 |
+
"theme.\n"
|
394 |
+
" *\n"
|
395 |
+
" * IMPORTANT\n"
|
396 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
397 |
+
"conditions.\n"
|
398 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
399 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
400 |
+
"terms-conditions/\n"
|
401 |
+
" */"
|
402 |
+
msgstr ""
|
403 |
+
"/**\n"
|
404 |
+
" * Installera tillägg\n"
|
405 |
+
" * \n"
|
406 |
+
" * Följande kod kommer att inkludera samtliga fyra premiumtillägg i ditt "
|
407 |
+
"tema.\n"
|
408 |
+
" * Vänligen inkludera inte filer som inte existerar. Detta kommer att "
|
409 |
+
"resultera i ett felmeddelande.\n"
|
410 |
+
" * \n"
|
411 |
+
" * Alla fält måste inkluderas under 'acf/register_fields' funktionen.\n"
|
412 |
+
" * Andra fälttyper, som inställningssidan, kan läggas till utanför denna "
|
413 |
+
"funktion.\n"
|
414 |
+
" * \n"
|
415 |
+
" * Koden antar att du har mappen 'add-ons' i ditt tema.\n"
|
416 |
+
" *\n"
|
417 |
+
" * VIKTIGT\n"
|
418 |
+
" * Tillägg kan inkluderas i premiumteman enligt villkoren.\n"
|
419 |
+
" * De får dock INTE inkluderas med andra tillägg, varken premium eller "
|
420 |
+
"gratis.\n"
|
421 |
+
" * Läs följande sida för mer information: http://www.advancedcustomfields."
|
422 |
+
"com/terms-conditions/\n"
|
423 |
+
" */"
|
424 |
+
|
425 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:365
|
426 |
+
#: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
|
427 |
+
msgid "Fields"
|
428 |
+
msgstr "Fält"
|
429 |
+
|
430 |
+
#: core/controllers/export.php:384
|
431 |
+
msgid ""
|
432 |
+
"/**\n"
|
433 |
+
" * Register Field Groups\n"
|
434 |
+
" *\n"
|
435 |
+
" * The register_field_group function accepts 1 array which holds the "
|
436 |
+
"relevant data to register a field group\n"
|
437 |
+
" * You may edit the array as you see fit. However, this may result in "
|
438 |
+
"errors if the array is not compatible with ACF\n"
|
439 |
+
" */"
|
440 |
+
msgstr ""
|
441 |
+
"/**\n"
|
442 |
+
" * Registrera fältgrupper\n"
|
443 |
+
" *\n"
|
444 |
+
" * Funktionen register_field_group tar emot en array som innehåller "
|
445 |
+
"inställningarna för samtliga fältgrupper.\n"
|
446 |
+
" * Du kan redigera denna array fritt. Detta kan dock leda till fel om "
|
447 |
+
"ändringarna inte är kompatibla med ACF.\n"
|
448 |
+
" */"
|
449 |
+
|
450 |
+
#: core/controllers/export.php:435
|
451 |
+
msgid "No field groups were selected"
|
452 |
+
msgstr "Inga fältgrupper var valda"
|
453 |
+
|
454 |
+
#: core/controllers/field_group.php:366
|
455 |
+
msgid "Location"
|
456 |
+
msgstr "Plats"
|
457 |
+
|
458 |
+
#: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
|
459 |
+
msgid "Options"
|
460 |
+
msgstr "Inställningar"
|
461 |
+
|
462 |
+
#: core/controllers/field_group.php:429
|
463 |
+
msgid "Show Field Key:"
|
464 |
+
msgstr "Visa fältnyckel:"
|
465 |
+
|
466 |
+
#: core/controllers/field_group.php:430 core/fields/page_link.php:113
|
467 |
+
#: core/fields/page_link.php:134 core/fields/post_object.php:288
|
468 |
+
#: core/fields/post_object.php:309 core/fields/select.php:230
|
469 |
+
#: core/fields/select.php:249 core/fields/taxonomy.php:352
|
470 |
+
#: core/fields/user.php:294 core/fields/wysiwyg.php:236
|
471 |
+
#: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
|
472 |
+
msgid "No"
|
473 |
+
msgstr "Nej"
|
474 |
+
|
475 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:112
|
476 |
+
#: core/fields/page_link.php:133 core/fields/post_object.php:287
|
477 |
+
#: core/fields/post_object.php:308 core/fields/select.php:229
|
478 |
+
#: core/fields/select.php:248 core/fields/taxonomy.php:351
|
479 |
+
#: core/fields/user.php:293 core/fields/wysiwyg.php:235
|
480 |
+
#: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
|
481 |
+
msgid "Yes"
|
482 |
+
msgstr "Ja"
|
483 |
+
|
484 |
+
#: core/controllers/field_group.php:608
|
485 |
+
msgid "Front Page"
|
486 |
+
msgstr "Förstasida"
|
487 |
+
|
488 |
+
#: core/controllers/field_group.php:609
|
489 |
+
msgid "Posts Page"
|
490 |
+
msgstr "Inläggssida"
|
491 |
+
|
492 |
+
#: core/controllers/field_group.php:610
|
493 |
+
msgid "Top Level Page (parent of 0)"
|
494 |
+
msgstr "Toppsida (förälder satt till 0)"
|
495 |
+
|
496 |
+
#: core/controllers/field_group.php:611
|
497 |
+
msgid "Parent Page (has children)"
|
498 |
+
msgstr "Föräldersida (har undersidor)"
|
499 |
+
|
500 |
+
#: core/controllers/field_group.php:612
|
501 |
+
msgid "Child Page (has parent)"
|
502 |
+
msgstr "Undersida (har föräldersida)"
|
503 |
+
|
504 |
+
#: core/controllers/field_group.php:620
|
505 |
+
msgid "Default Template"
|
506 |
+
msgstr "Standardmall"
|
507 |
+
|
508 |
+
#: core/controllers/field_group.php:712 core/controllers/field_group.php:733
|
509 |
+
#: core/controllers/field_group.php:740 core/fields/page_link.php:84
|
510 |
+
#: core/fields/post_object.php:234 core/fields/post_object.php:258
|
511 |
+
#: core/fields/relationship.php:529 core/fields/relationship.php:553
|
512 |
+
#: core/fields/user.php:238
|
513 |
+
msgid "All"
|
514 |
+
msgstr "Alla"
|
515 |
+
|
516 |
+
#: core/controllers/field_groups.php:147
|
517 |
+
msgid "Title"
|
518 |
+
msgstr "Titel"
|
519 |
+
|
520 |
+
#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
|
521 |
+
msgid "Changelog"
|
522 |
+
msgstr "Versionshistorik"
|
523 |
+
|
524 |
+
#: core/controllers/field_groups.php:217
|
525 |
+
msgid "See what's new in"
|
526 |
+
msgstr "Se vad som är nytt i"
|
527 |
+
|
528 |
+
#: core/controllers/field_groups.php:217
|
529 |
+
msgid "version"
|
530 |
+
msgstr "version"
|
531 |
+
|
532 |
+
#: core/controllers/field_groups.php:219
|
533 |
+
msgid "Resources"
|
534 |
+
msgstr "Resurser"
|
535 |
+
|
536 |
+
#: core/controllers/field_groups.php:221
|
537 |
+
msgid "Getting Started"
|
538 |
+
msgstr "Kom igång"
|
539 |
+
|
540 |
+
#: core/controllers/field_groups.php:222
|
541 |
+
msgid "Field Types"
|
542 |
+
msgstr "Fälttyper"
|
543 |
+
|
544 |
+
#: core/controllers/field_groups.php:223
|
545 |
+
msgid "Functions"
|
546 |
+
msgstr "Funktioner"
|
547 |
+
|
548 |
+
#: core/controllers/field_groups.php:224
|
549 |
+
msgid "Actions"
|
550 |
+
msgstr "Actions"
|
551 |
+
|
552 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:572
|
553 |
+
msgid "Filters"
|
554 |
+
msgstr "Filter"
|
555 |
+
|
556 |
+
#: core/controllers/field_groups.php:226
|
557 |
+
msgid "'How to' guides"
|
558 |
+
msgstr "Användarguider"
|
559 |
+
|
560 |
+
#: core/controllers/field_groups.php:227
|
561 |
+
msgid "Tutorials"
|
562 |
+
msgstr "Handledningar"
|
563 |
+
|
564 |
+
#: core/controllers/field_groups.php:232
|
565 |
+
msgid "Created by"
|
566 |
+
msgstr "Skapad av"
|
567 |
+
|
568 |
+
#: core/controllers/field_groups.php:235
|
569 |
+
msgid "Vote"
|
570 |
+
msgstr "Rösta"
|
571 |
+
|
572 |
+
#: core/controllers/field_groups.php:236
|
573 |
+
msgid "Follow"
|
574 |
+
msgstr "Följ"
|
575 |
+
|
576 |
+
#: core/controllers/field_groups.php:248
|
577 |
+
msgid "Welcome to Advanced Custom Fields"
|
578 |
+
msgstr "Välkommen till Advanced Custom Fields"
|
579 |
+
|
580 |
+
#: core/controllers/field_groups.php:249
|
581 |
+
msgid "Thank you for updating to the latest version!"
|
582 |
+
msgstr "Tack för att du har uppdaterat till den senaste versionen!"
|
583 |
+
|
584 |
+
#: core/controllers/field_groups.php:249
|
585 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
586 |
+
msgstr "är mer polerad och bättre än någonsin. Vi hoppas att du tycker om det."
|
587 |
+
|
588 |
+
#: core/controllers/field_groups.php:256
|
589 |
+
msgid "What’s New"
|
590 |
+
msgstr "Nyheter"
|
591 |
+
|
592 |
+
#: core/controllers/field_groups.php:259
|
593 |
+
msgid "Download Add-ons"
|
594 |
+
msgstr "Ladda ner tillägg"
|
595 |
+
|
596 |
+
#: core/controllers/field_groups.php:313
|
597 |
+
msgid "Activation codes have grown into plugins!"
|
598 |
+
msgstr "Aktiveringskoderna har flyttat in i tilläggen!"
|
599 |
+
|
600 |
+
#: core/controllers/field_groups.php:314
|
601 |
+
msgid ""
|
602 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
603 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
604 |
+
"each Add-on will continue to receive updates in the usual way."
|
605 |
+
msgstr ""
|
606 |
+
"Nu aktiveras tillägg genom att de laddas ner och installeras separat. Även "
|
607 |
+
"om dessa tillägg inte lagras på wordpress.org fortsätter de att få "
|
608 |
+
"uppdateringar som vanligt."
|
609 |
+
|
610 |
+
#: core/controllers/field_groups.php:320
|
611 |
+
msgid "All previous Add-ons have been successfully installed"
|
612 |
+
msgstr "Alla tidigare tillägg har installerats"
|
613 |
+
|
614 |
+
#: core/controllers/field_groups.php:324
|
615 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
616 |
+
msgstr "Denna webbplats använder premiumtillägg som behöver laddas ner"
|
617 |
+
|
618 |
+
#: core/controllers/field_groups.php:324
|
619 |
+
msgid "Download your activated Add-ons"
|
620 |
+
msgstr "Ladda ner dina aktiverade tillägg"
|
621 |
+
|
622 |
+
#: core/controllers/field_groups.php:329
|
623 |
+
msgid ""
|
624 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
625 |
+
"change."
|
626 |
+
msgstr ""
|
627 |
+
"Denna webbplats använder inga premiumtillägg och påverkas inte av denna "
|
628 |
+
"förändring."
|
629 |
+
|
630 |
+
#: core/controllers/field_groups.php:339
|
631 |
+
msgid "Easier Development"
|
632 |
+
msgstr "Enklare utveckling"
|
633 |
+
|
634 |
+
#: core/controllers/field_groups.php:341
|
635 |
+
msgid "New Field Types"
|
636 |
+
msgstr "Nya fälttyper"
|
637 |
+
|
638 |
+
#: core/controllers/field_groups.php:343
|
639 |
+
msgid "Taxonomy Field"
|
640 |
+
msgstr "Taxonomifält"
|
641 |
+
|
642 |
+
#: core/controllers/field_groups.php:344
|
643 |
+
msgid "User Field"
|
644 |
+
msgstr "Användarfält"
|
645 |
+
|
646 |
+
#: core/controllers/field_groups.php:345
|
647 |
+
msgid "Email Field"
|
648 |
+
msgstr "E-postfät"
|
649 |
+
|
650 |
+
#: core/controllers/field_groups.php:346
|
651 |
+
msgid "Password Field"
|
652 |
+
msgstr "Lösenordsfält"
|
653 |
+
|
654 |
+
#: core/controllers/field_groups.php:348
|
655 |
+
msgid "Custom Field Types"
|
656 |
+
msgstr "Egna fälttyper"
|
657 |
+
|
658 |
+
#: core/controllers/field_groups.php:349
|
659 |
+
msgid ""
|
660 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
661 |
+
"field types are not compatible with version 4."
|
662 |
+
msgstr ""
|
663 |
+
"Att skapa egna fälttyper har aldrig varit enklare! Tyvärr är inte fälttyper "
|
664 |
+
"från version 3 inte kompatibla med version 4."
|
665 |
+
|
666 |
+
#: core/controllers/field_groups.php:350
|
667 |
+
msgid "Migrating your field types is easy, please"
|
668 |
+
msgstr "Att migrera fälttyper är enkelt! Följ"
|
669 |
+
|
670 |
+
#: core/controllers/field_groups.php:350
|
671 |
+
msgid "follow this tutorial"
|
672 |
+
msgstr "denna guide"
|
673 |
+
|
674 |
+
#: core/controllers/field_groups.php:350
|
675 |
+
msgid "to learn more."
|
676 |
+
msgstr "för att få veta mer."
|
677 |
+
|
678 |
+
#: core/controllers/field_groups.php:352
|
679 |
+
msgid "Actions & Filters"
|
680 |
+
msgstr "Funktioner och filter"
|
681 |
+
|
682 |
+
#: core/controllers/field_groups.php:353
|
683 |
+
msgid ""
|
684 |
+
"All actions & filters have recieved a major facelift to make customizing ACF "
|
685 |
+
"even easier! Please"
|
686 |
+
msgstr ""
|
687 |
+
"Alla funktioner och filter har fått en ordentlig ansiktslyftning för att "
|
688 |
+
"göra justeringar av ACF enklare! Läs"
|
689 |
+
|
690 |
+
#: core/controllers/field_groups.php:353
|
691 |
+
msgid "read this guide"
|
692 |
+
msgstr "denna guide"
|
693 |
+
|
694 |
+
#: core/controllers/field_groups.php:353
|
695 |
+
msgid "to find the updated naming convention."
|
696 |
+
msgstr "för en uppdatering av namnkonventionerna."
|
697 |
+
|
698 |
+
#: core/controllers/field_groups.php:355
|
699 |
+
msgid "Preview draft is now working!"
|
700 |
+
msgstr "Förhandsvisning av utkast fungerar nu!"
|
701 |
+
|
702 |
+
#: core/controllers/field_groups.php:356
|
703 |
+
msgid "This bug has been squashed along with many other little critters!"
|
704 |
+
msgstr "Denna bugg har åtgärdats tillsammans med ett antal av dess kompisar."
|
705 |
+
|
706 |
+
#: core/controllers/field_groups.php:356
|
707 |
+
msgid "See the full changelog"
|
708 |
+
msgstr "Läsa hela förändringsloggen"
|
709 |
+
|
710 |
+
#: core/controllers/field_groups.php:360
|
711 |
+
msgid "Important"
|
712 |
+
msgstr "Viktigt"
|
713 |
+
|
714 |
+
#: core/controllers/field_groups.php:362
|
715 |
+
msgid "Database Changes"
|
716 |
+
msgstr "Databasförändringar"
|
717 |
+
|
718 |
+
#: core/controllers/field_groups.php:363
|
719 |
+
msgid ""
|
720 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
721 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
722 |
+
"any issues."
|
723 |
+
msgstr ""
|
724 |
+
"<b>Inga</b> förändringar har i databasen har gjorts mellan version 3 och 4. "
|
725 |
+
"Detta innebär att du kan gå tillbaka till version 3 utan problem."
|
726 |
+
|
727 |
+
#: core/controllers/field_groups.php:365
|
728 |
+
msgid "Potential Issues"
|
729 |
+
msgstr "Potentiella problem"
|
730 |
+
|
731 |
+
#: core/controllers/field_groups.php:366
|
732 |
+
msgid ""
|
733 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
734 |
+
"filters, your website may not operate correctly. It is important that you "
|
735 |
+
"read the full"
|
736 |
+
msgstr ""
|
737 |
+
"På grund av stora förändringar kring tillägg, fälttyper samt funktioner och "
|
738 |
+
"filter kanske din webbplats inte fungerar korrekt. Det är viktigt att läsa "
|
739 |
+
"guiden"
|
740 |
+
|
741 |
+
#: core/controllers/field_groups.php:366
|
742 |
+
msgid "Migrating from v3 to v4"
|
743 |
+
msgstr "Migration från version 3 till 4"
|
744 |
+
|
745 |
+
#: core/controllers/field_groups.php:366
|
746 |
+
msgid "guide to view the full list of changes."
|
747 |
+
msgstr "för listan över samtliga förändringar."
|
748 |
+
|
749 |
+
#: core/controllers/field_groups.php:369
|
750 |
+
msgid "Really Important!"
|
751 |
+
msgstr "Verkligen viktigt!"
|
752 |
+
|
753 |
+
#: core/controllers/field_groups.php:369
|
754 |
+
msgid ""
|
755 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
756 |
+
"Please roll back to the latest"
|
757 |
+
msgstr ""
|
758 |
+
"Om du uppdaterat ACF utan att veta om dessa förändringar kan du gå tillbaka "
|
759 |
+
"till den senaste upplagan av"
|
760 |
+
|
761 |
+
#: core/controllers/field_groups.php:369
|
762 |
+
msgid "version 3"
|
763 |
+
msgstr "version 3"
|
764 |
+
|
765 |
+
#: core/controllers/field_groups.php:369
|
766 |
+
msgid "of this plugin."
|
767 |
+
msgstr "av tillägget."
|
768 |
+
|
769 |
+
#: core/controllers/field_groups.php:374
|
770 |
+
msgid "Thank You"
|
771 |
+
msgstr "Tack"
|
772 |
+
|
773 |
+
#: core/controllers/field_groups.php:375
|
774 |
+
msgid ""
|
775 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
776 |
+
"4 beta and for all the support I have received."
|
777 |
+
msgstr ""
|
778 |
+
"Ett <strong>STORT</strong> tack till alla som har hjälpt till att testa "
|
779 |
+
"betaversionen av version 4 och allt stöd jag fått."
|
780 |
+
|
781 |
+
#: core/controllers/field_groups.php:376
|
782 |
+
msgid "Without you all, this release would not have been possible!"
|
783 |
+
msgstr "Utan er hade denna release aldrig varit möjlig!"
|
784 |
+
|
785 |
+
#: core/controllers/field_groups.php:380
|
786 |
+
msgid "Changelog for"
|
787 |
+
msgstr "Förändringsloggen för"
|
788 |
+
|
789 |
+
#: core/controllers/field_groups.php:396
|
790 |
+
msgid "Learn more"
|
791 |
+
msgstr "Läs mer"
|
792 |
+
|
793 |
+
#: core/controllers/field_groups.php:402
|
794 |
+
msgid "Overview"
|
795 |
+
msgstr "Översikt"
|
796 |
+
|
797 |
+
#: core/controllers/field_groups.php:404
|
798 |
+
msgid ""
|
799 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
800 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
801 |
+
"need to be individually downloaded, installed and updated."
|
802 |
+
msgstr ""
|
803 |
+
"Tidigare har alla tillägg låsts upp via en aktiveringskod (som kunnat köpas "
|
804 |
+
"via ACFs webbshop). Från och med version 4 är alla tillägg separata plugins "
|
805 |
+
"som laddas ner, installeras och uppdateras individuellt."
|
806 |
+
|
807 |
+
#: core/controllers/field_groups.php:406
|
808 |
+
msgid ""
|
809 |
+
"This page will assist you in downloading and installing each available Add-"
|
810 |
+
"on."
|
811 |
+
msgstr ""
|
812 |
+
"Denna sida kommer att hjälpa dig ladda ner och installera alla tillgängliga "
|
813 |
+
"tillägg."
|
814 |
+
|
815 |
+
#: core/controllers/field_groups.php:408
|
816 |
+
msgid "Available Add-ons"
|
817 |
+
msgstr "Tillgängliga tillägg"
|
818 |
+
|
819 |
+
#: core/controllers/field_groups.php:410
|
820 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
821 |
+
msgstr "Följande tillägg har upptäckts och aktiverats på denna webbplats."
|
822 |
+
|
823 |
+
#: core/controllers/field_groups.php:423
|
824 |
+
msgid "Name"
|
825 |
+
msgstr "Namn"
|
826 |
+
|
827 |
+
#: core/controllers/field_groups.php:424
|
828 |
+
msgid "Activation Code"
|
829 |
+
msgstr "Aktiveringskod"
|
830 |
+
|
831 |
+
#: core/controllers/field_groups.php:456
|
832 |
+
msgid "Flexible Content"
|
833 |
+
msgstr "Flexibelt innehåll"
|
834 |
+
|
835 |
+
#: core/controllers/field_groups.php:466
|
836 |
+
msgid "Installation"
|
837 |
+
msgstr "Installation"
|
838 |
+
|
839 |
+
#: core/controllers/field_groups.php:468
|
840 |
+
msgid "For each Add-on available, please perform the following:"
|
841 |
+
msgstr "Gör följande för varje tillgängligt tillägg:"
|
842 |
+
|
843 |
+
#: core/controllers/field_groups.php:470
|
844 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
845 |
+
msgstr "Ladda ner tillägget (.zip-fil) till ditt skrivbord"
|
846 |
+
|
847 |
+
#: core/controllers/field_groups.php:471
|
848 |
+
msgid "Navigate to"
|
849 |
+
msgstr "Gå till"
|
850 |
+
|
851 |
+
#: core/controllers/field_groups.php:471
|
852 |
+
msgid "Plugins > Add New > Upload"
|
853 |
+
msgstr "Tillägg > Lägg till > Ladda upp"
|
854 |
+
|
855 |
+
#: core/controllers/field_groups.php:472
|
856 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
857 |
+
msgstr "Använd uppladdaren för att välja och installera tillägget (.zip-filen)"
|
858 |
+
|
859 |
+
#: core/controllers/field_groups.php:473
|
860 |
+
msgid ""
|
861 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
862 |
+
"link"
|
863 |
+
msgstr ""
|
864 |
+
"När tillägget har laddats upp och installerats klickar du på länken "
|
865 |
+
"\"Aktivera tillägg\""
|
866 |
+
|
867 |
+
#: core/controllers/field_groups.php:474
|
868 |
+
msgid "The Add-on is now installed and activated!"
|
869 |
+
msgstr "Tillägget har nu installerats och aktiverats!"
|
870 |
+
|
871 |
+
#: core/controllers/field_groups.php:488
|
872 |
+
msgid "Awesome. Let's get to work"
|
873 |
+
msgstr "Grymt! Dags att återgå till arbetet."
|
874 |
+
|
875 |
+
#: core/controllers/input.php:480
|
876 |
+
msgid "Validation Failed. One or more fields below are required."
|
877 |
+
msgstr "Valideringen misslyckades. Ett eller flera fält nedan måste fyllas i."
|
878 |
+
|
879 |
+
#: core/controllers/input.php:482
|
880 |
+
msgid "Maximum values reached ( {max} values )"
|
881 |
+
msgstr "Maximalt antal värden nåddes ( maximalt {max} värden )"
|
882 |
+
|
883 |
+
#: core/controllers/upgrade.php:72
|
884 |
+
msgid "Upgrade"
|
885 |
+
msgstr "Uppgradera"
|
886 |
+
|
887 |
+
#: core/controllers/upgrade.php:616
|
888 |
+
msgid "Modifying field group options 'show on page'"
|
889 |
+
msgstr "Ändrar fältgruppens inställning \"visa på sida\""
|
890 |
+
|
891 |
+
#: core/controllers/upgrade.php:670
|
892 |
+
msgid "Modifying field option 'taxonomy'"
|
893 |
+
msgstr "Ändrar fältinställningen \"taxonomi\""
|
894 |
+
|
895 |
+
#: core/controllers/upgrade.php:767
|
896 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
897 |
+
msgstr "Flyttar användarfält från wp_options till wp_usermeta"
|
898 |
+
|
899 |
+
#: core/fields/_base.php:120 core/views/meta_box_location.php:71
|
900 |
+
msgid "Basic"
|
901 |
+
msgstr "Enkel"
|
902 |
+
|
903 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
|
904 |
+
msgid "Checkbox"
|
905 |
+
msgstr "Kryssruta"
|
906 |
+
|
907 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:20
|
908 |
+
#: core/fields/select.php:23 core/fields/true_false.php:20
|
909 |
+
msgid "Choice"
|
910 |
+
msgstr "Alternativ"
|
911 |
+
|
912 |
+
#: core/fields/checkbox.php:138 core/fields/radio.php:121
|
913 |
+
#: core/fields/select.php:183
|
914 |
+
msgid "Choices"
|
915 |
+
msgstr "Alternativ"
|
916 |
+
|
917 |
+
#: core/fields/checkbox.php:139 core/fields/select.php:184
|
918 |
+
msgid "Enter each choice on a new line."
|
919 |
+
msgstr "Ange ett alternativ per rad"
|
920 |
+
|
921 |
+
#: core/fields/checkbox.php:140 core/fields/select.php:185
|
922 |
+
msgid "For more control, you may specify both a value and label like this:"
|
923 |
+
msgstr "För mer kontroll kan du specificera både värde och etikett enligt:"
|
924 |
+
|
925 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:127
|
926 |
+
#: core/fields/select.php:186
|
927 |
+
msgid "red : Red"
|
928 |
+
msgstr "röd : Röd"
|
929 |
+
|
930 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:128
|
931 |
+
#: core/fields/select.php:186
|
932 |
+
msgid "blue : Blue"
|
933 |
+
msgstr "blå : Blå"
|
934 |
+
|
935 |
+
#: core/fields/checkbox.php:158 core/fields/color_picker.php:73
|
936 |
+
#: core/fields/email.php:71 core/fields/number.php:71
|
937 |
+
#: core/fields/radio.php:146 core/fields/select.php:203
|
938 |
+
#: core/fields/text.php:73 core/fields/textarea.php:73
|
939 |
+
#: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
|
940 |
+
msgid "Default Value"
|
941 |
+
msgstr "Standardvärde"
|
942 |
+
|
943 |
+
#: core/fields/checkbox.php:159 core/fields/select.php:204
|
944 |
+
msgid "Enter each default value on a new line"
|
945 |
+
msgstr "Ange varje värde på en ny rad"
|
946 |
+
|
947 |
+
#: core/fields/color_picker.php:19
|
948 |
+
msgid "Color Picker"
|
949 |
+
msgstr "Färgväljare"
|
950 |
+
|
951 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
|
952 |
+
msgid "jQuery"
|
953 |
+
msgstr "jQuery"
|
954 |
+
|
955 |
+
#: core/fields/color_picker.php:74
|
956 |
+
msgid "eg: #ffffff"
|
957 |
+
msgstr "exempel: #ffffff"
|
958 |
+
|
959 |
+
#: core/fields/date_picker/date_picker.php:19
|
960 |
+
msgid "Date Picker"
|
961 |
+
msgstr "Datumväljare"
|
962 |
+
|
963 |
+
#: core/fields/date_picker/date_picker.php:52
|
964 |
+
#: core/fields/date_picker/date_picker.php:132
|
965 |
+
msgid "Done"
|
966 |
+
msgstr "Klar"
|
967 |
+
|
968 |
+
#: core/fields/date_picker/date_picker.php:53
|
969 |
+
#: core/fields/date_picker/date_picker.php:133
|
970 |
+
msgid "Today"
|
971 |
+
msgstr "Idag"
|
972 |
+
|
973 |
+
#: core/fields/date_picker/date_picker.php:56
|
974 |
+
#: core/fields/date_picker/date_picker.php:136
|
975 |
+
msgid "Show a different month"
|
976 |
+
msgstr "Visa en annan månad"
|
977 |
+
|
978 |
+
#: core/fields/date_picker/date_picker.php:146
|
979 |
+
msgid "Save format"
|
980 |
+
msgstr "Lagringsformat"
|
981 |
+
|
982 |
+
#: core/fields/date_picker/date_picker.php:147
|
983 |
+
msgid ""
|
984 |
+
"This format will determin the value saved to the database and returned via "
|
985 |
+
"the API"
|
986 |
+
msgstr ""
|
987 |
+
"Detta format avgör hur värdet sparas i databasen och returneras via "
|
988 |
+
"tilläggets API"
|
989 |
+
|
990 |
+
#: core/fields/date_picker/date_picker.php:148
|
991 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
992 |
+
msgstr "\"yymmdd\" är det mest flexibla formatet. Läs mer om"
|
993 |
+
|
994 |
+
#: core/fields/date_picker/date_picker.php:148
|
995 |
+
#: core/fields/date_picker/date_picker.php:164
|
996 |
+
msgid "jQuery date formats"
|
997 |
+
msgstr "jQuery datumformat"
|
998 |
+
|
999 |
+
#: core/fields/date_picker/date_picker.php:162
|
1000 |
+
msgid "Display format"
|
1001 |
+
msgstr "Visningsformat"
|
1002 |
+
|
1003 |
+
#: core/fields/date_picker/date_picker.php:163
|
1004 |
+
msgid "This format will be seen by the user when entering a value"
|
1005 |
+
msgstr "Detta format är det som visas när användaren anger ett värde"
|
1006 |
+
|
1007 |
+
#: core/fields/date_picker/date_picker.php:164
|
1008 |
+
msgid ""
|
1009 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1010 |
+
"about"
|
1011 |
+
msgstr "\"yy-mm-dd\" är set vanligaste visningsformatet. Läs mer om"
|
1012 |
+
|
1013 |
+
#: core/fields/date_picker/date_picker.php:178
|
1014 |
+
msgid "Week Starts On"
|
1015 |
+
msgstr "Veckor börjar på"
|
1016 |
+
|
1017 |
+
#: core/fields/dummy.php:19
|
1018 |
+
msgid "Dummy"
|
1019 |
+
msgstr "Dummy"
|
1020 |
+
|
1021 |
+
#: core/fields/email.php:19
|
1022 |
+
msgid "Email"
|
1023 |
+
msgstr "E-post"
|
1024 |
+
|
1025 |
+
#: core/fields/file.php:19
|
1026 |
+
msgid "File"
|
1027 |
+
msgstr "Fil"
|
1028 |
+
|
1029 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1030 |
+
msgid "Content"
|
1031 |
+
msgstr "Innehåll"
|
1032 |
+
|
1033 |
+
#: core/fields/file.php:76 core/fields/image.php:76
|
1034 |
+
#: core/views/meta_box_fields.php:113
|
1035 |
+
msgid "Edit"
|
1036 |
+
msgstr "Redigera"
|
1037 |
+
|
1038 |
+
#: core/fields/file.php:77 core/fields/image.php:75
|
1039 |
+
msgid "Remove"
|
1040 |
+
msgstr "Radera"
|
1041 |
+
|
1042 |
+
#: core/fields/file.php:84
|
1043 |
+
msgid "No File Selected"
|
1044 |
+
msgstr "Ingen fil vald"
|
1045 |
+
|
1046 |
+
#: core/fields/file.php:84
|
1047 |
+
msgid "Add File"
|
1048 |
+
msgstr "Lägg till fil"
|
1049 |
+
|
1050 |
+
#: core/fields/file.php:119 core/fields/image.php:116
|
1051 |
+
#: core/fields/taxonomy.php:376
|
1052 |
+
msgid "Return Value"
|
1053 |
+
msgstr "Returvärde"
|
1054 |
+
|
1055 |
+
#: core/fields/file.php:130
|
1056 |
+
msgid "File Object"
|
1057 |
+
msgstr "Filobjekt"
|
1058 |
+
|
1059 |
+
#: core/fields/file.php:131
|
1060 |
+
msgid "File URL"
|
1061 |
+
msgstr "Filadress"
|
1062 |
+
|
1063 |
+
#: core/fields/file.php:132
|
1064 |
+
msgid "File ID"
|
1065 |
+
msgstr "Filens ID"
|
1066 |
+
|
1067 |
+
#: core/fields/file.php:243
|
1068 |
+
msgid "File Updated."
|
1069 |
+
msgstr "Filen uppdaterad."
|
1070 |
+
|
1071 |
+
#: core/fields/file.php:335 core/fields/image.php:374
|
1072 |
+
msgid "Media attachment updated."
|
1073 |
+
msgstr "Mediabilagan uppdaterades."
|
1074 |
+
|
1075 |
+
#: core/fields/file.php:493
|
1076 |
+
msgid "No files selected"
|
1077 |
+
msgstr "Inga filer valda"
|
1078 |
+
|
1079 |
+
#: core/fields/file.php:634
|
1080 |
+
msgid "Add Selected Files"
|
1081 |
+
msgstr "Lägg till valda filer"
|
1082 |
+
|
1083 |
+
#: core/fields/file.php:667
|
1084 |
+
msgid "Select File"
|
1085 |
+
msgstr "Välj fil"
|
1086 |
+
|
1087 |
+
#: core/fields/file.php:670
|
1088 |
+
msgid "Update File"
|
1089 |
+
msgstr "Uppdatera fil"
|
1090 |
+
|
1091 |
+
#: core/fields/image.php:19
|
1092 |
+
msgid "Image"
|
1093 |
+
msgstr "Bild"
|
1094 |
+
|
1095 |
+
#: core/fields/image.php:82
|
1096 |
+
msgid "No image selected"
|
1097 |
+
msgstr "Ingen bild vald"
|
1098 |
+
|
1099 |
+
#: core/fields/image.php:82
|
1100 |
+
msgid "Add Image"
|
1101 |
+
msgstr "Läge till bild"
|
1102 |
+
|
1103 |
+
#: core/fields/image.php:126
|
1104 |
+
msgid "Image Object"
|
1105 |
+
msgstr "Bildobjekt"
|
1106 |
+
|
1107 |
+
#: core/fields/image.php:127
|
1108 |
+
msgid "Image URL"
|
1109 |
+
msgstr "Bildadress"
|
1110 |
+
|
1111 |
+
#: core/fields/image.php:128
|
1112 |
+
msgid "Image ID"
|
1113 |
+
msgstr "Bildens ID"
|
1114 |
+
|
1115 |
+
#: core/fields/image.php:136
|
1116 |
+
msgid "Preview Size"
|
1117 |
+
msgstr "Förhandsvisningens storlek"
|
1118 |
+
|
1119 |
+
#: core/fields/image.php:283
|
1120 |
+
msgid "Image Updated."
|
1121 |
+
msgstr "Bild uppdaterades."
|
1122 |
+
|
1123 |
+
#: core/fields/image.php:525
|
1124 |
+
msgid "No images selected"
|
1125 |
+
msgstr "Inga bilder valda"
|
1126 |
+
|
1127 |
+
#: core/fields/image.php:667
|
1128 |
+
msgid "Add Selected Images"
|
1129 |
+
msgstr "Lägg till valda bilder"
|
1130 |
+
|
1131 |
+
#: core/fields/image.php:696
|
1132 |
+
msgid "Select Image"
|
1133 |
+
msgstr "Välj bild"
|
1134 |
+
|
1135 |
+
#: core/fields/image.php:699
|
1136 |
+
msgid "Update Image"
|
1137 |
+
msgstr "Uppdatera bild"
|
1138 |
+
|
1139 |
+
#: core/fields/message.php:19 core/fields/message.php:71
|
1140 |
+
#: core/fields/true_false.php:89
|
1141 |
+
msgid "Message"
|
1142 |
+
msgstr "Meddelande"
|
1143 |
+
|
1144 |
+
#: core/fields/message.php:20 core/fields/radio.php:162 core/fields/tab.php:20
|
1145 |
+
msgid "Layout"
|
1146 |
+
msgstr "Layout"
|
1147 |
+
|
1148 |
+
#: core/fields/message.php:72
|
1149 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1150 |
+
msgstr "Text och HTML som anges här visas tillsammans med fälten"
|
1151 |
+
|
1152 |
+
#: core/fields/message.php:73
|
1153 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1154 |
+
msgstr "Notera att all text först kommer att passera genom funktionen"
|
1155 |
+
|
1156 |
+
#: core/fields/number.php:19
|
1157 |
+
msgid "Number"
|
1158 |
+
msgstr "Nummer"
|
1159 |
+
|
1160 |
+
#: core/fields/page_link.php:19
|
1161 |
+
msgid "Page Link"
|
1162 |
+
msgstr "Sidlänk"
|
1163 |
+
|
1164 |
+
#: core/fields/page_link.php:20 core/fields/post_object.php:20
|
1165 |
+
#: core/fields/relationship.php:23 core/fields/taxonomy.php:23
|
1166 |
+
#: core/fields/user.php:23
|
1167 |
+
msgid "Relational"
|
1168 |
+
msgstr "Relation"
|
1169 |
+
|
1170 |
+
#: core/fields/page_link.php:78 core/fields/post_object.php:228
|
1171 |
+
#: core/fields/relationship.php:523 core/fields/relationship.php:602
|
1172 |
+
#: core/views/meta_box_location.php:72
|
1173 |
+
msgid "Post Type"
|
1174 |
+
msgstr "Inläggstyp"
|
1175 |
+
|
1176 |
+
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
1177 |
+
#: core/fields/select.php:220 core/fields/taxonomy.php:342
|
1178 |
+
#: core/fields/user.php:284
|
1179 |
+
msgid "Allow Null?"
|
1180 |
+
msgstr "Tillått nollvärde?"
|
1181 |
+
|
1182 |
+
#: core/fields/page_link.php:123 core/fields/post_object.php:298
|
1183 |
+
#: core/fields/select.php:239
|
1184 |
+
msgid "Select multiple values?"
|
1185 |
+
msgstr "Välj multipla värden?"
|
1186 |
+
|
1187 |
+
#: core/fields/password.php:19
|
1188 |
+
msgid "Password"
|
1189 |
+
msgstr "Lösenord"
|
1190 |
+
|
1191 |
+
#: core/fields/post_object.php:19
|
1192 |
+
msgid "Post Object"
|
1193 |
+
msgstr "Inläggsobjekt"
|
1194 |
+
|
1195 |
+
#: core/fields/post_object.php:252 core/fields/relationship.php:547
|
1196 |
+
msgid "Filter from Taxonomy"
|
1197 |
+
msgstr "Filtera från taxonomi"
|
1198 |
+
|
1199 |
+
#: core/fields/radio.php:19
|
1200 |
+
msgid "Radio Button"
|
1201 |
+
msgstr "Alternativknapp"
|
1202 |
+
|
1203 |
+
#: core/fields/radio.php:122
|
1204 |
+
msgid "Enter your choices one per line"
|
1205 |
+
msgstr "Ange ett värde per rad"
|
1206 |
+
|
1207 |
+
#: core/fields/radio.php:124
|
1208 |
+
msgid "Red"
|
1209 |
+
msgstr "Röd"
|
1210 |
+
|
1211 |
+
#: core/fields/radio.php:125
|
1212 |
+
msgid "Blue"
|
1213 |
+
msgstr "Blå"
|
1214 |
+
|
1215 |
+
#: core/fields/radio.php:173
|
1216 |
+
msgid "Vertical"
|
1217 |
+
msgstr "Vertikalt"
|
1218 |
+
|
1219 |
+
#: core/fields/radio.php:174
|
1220 |
+
msgid "Horizontal"
|
1221 |
+
msgstr "Horisontellt"
|
1222 |
+
|
1223 |
+
#: core/fields/relationship.php:22
|
1224 |
+
msgid "Relationship"
|
1225 |
+
msgstr "Relation"
|
1226 |
+
|
1227 |
+
#: core/fields/relationship.php:362 core/fields/relationship.php:581
|
1228 |
+
msgid "Search"
|
1229 |
+
msgstr "Sök"
|
1230 |
+
|
1231 |
+
#: core/fields/relationship.php:582
|
1232 |
+
msgid "Post Type Select"
|
1233 |
+
msgstr "Välj inläggstyp"
|
1234 |
+
|
1235 |
+
#: core/fields/relationship.php:590
|
1236 |
+
msgid "Elements"
|
1237 |
+
msgstr "Element"
|
1238 |
+
|
1239 |
+
#: core/fields/relationship.php:591
|
1240 |
+
msgid "Selected elements will be displayed in each result"
|
1241 |
+
msgstr "Valda element visas i varje resultat"
|
1242 |
+
|
1243 |
+
#: core/fields/relationship.php:601
|
1244 |
+
msgid "Post Title"
|
1245 |
+
msgstr "Inläggstitel"
|
1246 |
+
|
1247 |
+
#: core/fields/relationship.php:613
|
1248 |
+
msgid "Maximum posts"
|
1249 |
+
msgstr "Maximalt antal inlägg"
|
1250 |
+
|
1251 |
+
#: core/fields/select.php:22 core/fields/taxonomy.php:333
|
1252 |
+
#: core/fields/user.php:275
|
1253 |
+
msgid "Select"
|
1254 |
+
msgstr "Välj"
|
1255 |
+
|
1256 |
+
#: core/fields/tab.php:19
|
1257 |
+
msgid "Tab"
|
1258 |
+
msgstr "Flik"
|
1259 |
+
|
1260 |
+
#: core/fields/tab.php:67
|
1261 |
+
msgid ""
|
1262 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1263 |
+
"defined) will appear grouped on the edit screen."
|
1264 |
+
msgstr ""
|
1265 |
+
"Alla fält efter detta \"flikfält\" (eller fram till nästa flikfält) kommer "
|
1266 |
+
"att grupperas tillsammans i redigeringsvyn."
|
1267 |
+
|
1268 |
+
#: core/fields/tab.php:68
|
1269 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1270 |
+
msgstr ""
|
1271 |
+
"Du kan använda flera flikar för att dela upp fält i sektioner eller grupper."
|
1272 |
+
|
1273 |
+
#: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
|
1274 |
+
msgid "Taxonomy"
|
1275 |
+
msgstr "Taxonomi"
|
1276 |
+
|
1277 |
+
#: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
|
1278 |
+
#: core/fields/text.php:97 core/fields/textarea.php:97
|
1279 |
+
msgid "None"
|
1280 |
+
msgstr "Ingen"
|
1281 |
+
|
1282 |
+
#: core/fields/taxonomy.php:317 core/fields/user.php:260
|
1283 |
+
#: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
|
1284 |
+
msgid "Field Type"
|
1285 |
+
msgstr "Fälttyp"
|
1286 |
+
|
1287 |
+
#: core/fields/taxonomy.php:327 core/fields/user.php:269
|
1288 |
+
msgid "Multiple Values"
|
1289 |
+
msgstr "Multipla värden"
|
1290 |
+
|
1291 |
+
#: core/fields/taxonomy.php:329 core/fields/user.php:271
|
1292 |
+
msgid "Multi Select"
|
1293 |
+
msgstr "Flera värden"
|
1294 |
+
|
1295 |
+
#: core/fields/taxonomy.php:331 core/fields/user.php:273
|
1296 |
+
msgid "Single Value"
|
1297 |
+
msgstr "Ett värde"
|
1298 |
+
|
1299 |
+
#: core/fields/taxonomy.php:332
|
1300 |
+
msgid "Radio Buttons"
|
1301 |
+
msgstr "Alternativknappar"
|
1302 |
+
|
1303 |
+
#: core/fields/taxonomy.php:361
|
1304 |
+
msgid "Load & Save Terms to Post"
|
1305 |
+
msgstr "Ladda eller spara termer till inlägg"
|
1306 |
+
|
1307 |
+
#: core/fields/taxonomy.php:369
|
1308 |
+
msgid ""
|
1309 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1310 |
+
msgstr ""
|
1311 |
+
"Ladda värde baserat på inläggets termer och uppdatera dessa när inlägget "
|
1312 |
+
"sparas"
|
1313 |
+
|
1314 |
+
#: core/fields/taxonomy.php:386
|
1315 |
+
msgid "Term Object"
|
1316 |
+
msgstr "Termobjekt"
|
1317 |
+
|
1318 |
+
#: core/fields/taxonomy.php:387
|
1319 |
+
msgid "Term ID"
|
1320 |
+
msgstr "Term-ID"
|
1321 |
+
|
1322 |
+
#: core/fields/text.php:19
|
1323 |
+
msgid "Text"
|
1324 |
+
msgstr "Text"
|
1325 |
+
|
1326 |
+
#: core/fields/text.php:87 core/fields/textarea.php:87
|
1327 |
+
msgid "Formatting"
|
1328 |
+
msgstr "Formatering"
|
1329 |
+
|
1330 |
+
#: core/fields/text.php:88
|
1331 |
+
msgid "Define how to render html tags"
|
1332 |
+
msgstr "Välj hur HTML-taggar renderas"
|
1333 |
+
|
1334 |
+
#: core/fields/text.php:98 core/fields/textarea.php:99
|
1335 |
+
msgid "HTML"
|
1336 |
+
msgstr "HTML"
|
1337 |
+
|
1338 |
+
#: core/fields/textarea.php:19
|
1339 |
+
msgid "Text Area"
|
1340 |
+
msgstr "Textfält"
|
1341 |
+
|
1342 |
+
#: core/fields/textarea.php:88
|
1343 |
+
msgid "Define how to render html tags / new lines"
|
1344 |
+
msgstr "Välj hur HTML-taggar och radbrytningar renderas"
|
1345 |
+
|
1346 |
+
#: core/fields/textarea.php:98
|
1347 |
+
msgid "auto <br />"
|
1348 |
+
msgstr "automatiskt <br />"
|
1349 |
+
|
1350 |
+
#: core/fields/true_false.php:19
|
1351 |
+
msgid "True / False"
|
1352 |
+
msgstr "Sant / Falskt"
|
1353 |
+
|
1354 |
+
#: core/fields/true_false.php:90
|
1355 |
+
msgid "eg. Show extra content"
|
1356 |
+
msgstr "exempel: Visa extra innehåll"
|
1357 |
+
|
1358 |
+
#: core/fields/user.php:22
|
1359 |
+
msgid "User"
|
1360 |
+
msgstr "Användare"
|
1361 |
+
|
1362 |
+
#: core/fields/user.php:233
|
1363 |
+
msgid "Filter by role"
|
1364 |
+
msgstr "Filtrera efter roll"
|
1365 |
+
|
1366 |
+
#: core/fields/wysiwyg.php:19
|
1367 |
+
msgid "Wysiwyg Editor"
|
1368 |
+
msgstr "WYSIWYG-editor"
|
1369 |
+
|
1370 |
+
#: core/fields/wysiwyg.php:193
|
1371 |
+
msgid "Toolbar"
|
1372 |
+
msgstr "Verktygsfält"
|
1373 |
+
|
1374 |
+
#: core/fields/wysiwyg.php:225
|
1375 |
+
msgid "Show Media Upload Buttons?"
|
1376 |
+
msgstr "Visa knappar för mediauppladdning"
|
1377 |
+
|
1378 |
+
#: core/views/meta_box_fields.php:23
|
1379 |
+
msgid "New Field"
|
1380 |
+
msgstr "Nytt fält"
|
1381 |
+
|
1382 |
+
#: core/views/meta_box_fields.php:24
|
1383 |
+
msgid "new_field"
|
1384 |
+
msgstr "nytt_falt"
|
1385 |
+
|
1386 |
+
#: core/views/meta_box_fields.php:57
|
1387 |
+
msgid "Field type does not exist"
|
1388 |
+
msgstr "Fälttypen finns inte"
|
1389 |
+
|
1390 |
+
#: core/views/meta_box_fields.php:64
|
1391 |
+
msgid "Move to trash. Are you sure?"
|
1392 |
+
msgstr "Flytta till papperskorgen. Är du säker?"
|
1393 |
+
|
1394 |
+
#: core/views/meta_box_fields.php:65
|
1395 |
+
msgid "checked"
|
1396 |
+
msgstr "vald"
|
1397 |
+
|
1398 |
+
#: core/views/meta_box_fields.php:66
|
1399 |
+
msgid "No toggle fields available"
|
1400 |
+
msgstr "Det finns inga aktiveringsbara fält"
|
1401 |
+
|
1402 |
+
#: core/views/meta_box_fields.php:67
|
1403 |
+
msgid "copy"
|
1404 |
+
msgstr "kopiera"
|
1405 |
+
|
1406 |
+
#: core/views/meta_box_fields.php:79
|
1407 |
+
msgid "Field Order"
|
1408 |
+
msgstr "Ordning på fält"
|
1409 |
+
|
1410 |
+
#: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
|
1411 |
+
msgid "Field Label"
|
1412 |
+
msgstr "Fältetikett"
|
1413 |
+
|
1414 |
+
#: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
|
1415 |
+
msgid "Field Name"
|
1416 |
+
msgstr "Fältnamn"
|
1417 |
+
|
1418 |
+
#: core/views/meta_box_fields.php:83
|
1419 |
+
msgid "Field Key"
|
1420 |
+
msgstr "Fältnyckel"
|
1421 |
+
|
1422 |
+
#: core/views/meta_box_fields.php:95
|
1423 |
+
msgid ""
|
1424 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1425 |
+
"first field."
|
1426 |
+
msgstr ""
|
1427 |
+
"Inga fält. Klicka på knappen <strong>+ Lägg till fält</strong> för att skapa "
|
1428 |
+
"ditt första fält."
|
1429 |
+
|
1430 |
+
#: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
|
1431 |
+
msgid "Edit this Field"
|
1432 |
+
msgstr "Redigera detta fält"
|
1433 |
+
|
1434 |
+
#: core/views/meta_box_fields.php:114
|
1435 |
+
msgid "Read documentation for this field"
|
1436 |
+
msgstr "Läs dokumentationen för detta fält"
|
1437 |
+
|
1438 |
+
#: core/views/meta_box_fields.php:114
|
1439 |
+
msgid "Docs"
|
1440 |
+
msgstr "Dokumentation"
|
1441 |
+
|
1442 |
+
#: core/views/meta_box_fields.php:115
|
1443 |
+
msgid "Duplicate this Field"
|
1444 |
+
msgstr "Duplicera detta fält"
|
1445 |
+
|
1446 |
+
#: core/views/meta_box_fields.php:115
|
1447 |
+
msgid "Duplicate"
|
1448 |
+
msgstr "Duplicera"
|
1449 |
+
|
1450 |
+
#: core/views/meta_box_fields.php:116
|
1451 |
+
msgid "Delete this Field"
|
1452 |
+
msgstr "Radera detta fält"
|
1453 |
+
|
1454 |
+
#: core/views/meta_box_fields.php:116
|
1455 |
+
msgid "Delete"
|
1456 |
+
msgstr "Radera"
|
1457 |
+
|
1458 |
+
#: core/views/meta_box_fields.php:133
|
1459 |
+
msgid "This is the name which will appear on the EDIT page"
|
1460 |
+
msgstr "Detta namn kommer att visas i redigeringsvyn"
|
1461 |
+
|
1462 |
+
#: core/views/meta_box_fields.php:149
|
1463 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1464 |
+
msgstr "Ett ord utan mellanslag. Understreck och bindestreck är tillåtna"
|
1465 |
+
|
1466 |
+
#: core/views/meta_box_fields.php:176
|
1467 |
+
msgid "Field Instructions"
|
1468 |
+
msgstr "Instruktioner för fält"
|
1469 |
+
|
1470 |
+
#: core/views/meta_box_fields.php:177
|
1471 |
+
msgid "Instructions for authors. Shown when submitting data"
|
1472 |
+
msgstr "Instruktioner till författare. Visas när data anges"
|
1473 |
+
|
1474 |
+
#: core/views/meta_box_fields.php:189
|
1475 |
+
msgid "Required?"
|
1476 |
+
msgstr "Obligatorisk?"
|
1477 |
+
|
1478 |
+
#: core/views/meta_box_fields.php:212
|
1479 |
+
msgid "Conditional Logic"
|
1480 |
+
msgstr "Visningsvillkor"
|
1481 |
+
|
1482 |
+
#: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
|
1483 |
+
msgid "is equal to"
|
1484 |
+
msgstr "är lika med"
|
1485 |
+
|
1486 |
+
#: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
|
1487 |
+
msgid "is not equal to"
|
1488 |
+
msgstr "inte är lika med"
|
1489 |
+
|
1490 |
+
#: core/views/meta_box_fields.php:282
|
1491 |
+
msgid "Show this field when"
|
1492 |
+
msgstr "Visa detta fält när"
|
1493 |
+
|
1494 |
+
#: core/views/meta_box_fields.php:288
|
1495 |
+
msgid "all"
|
1496 |
+
msgstr "alla"
|
1497 |
+
|
1498 |
+
#: core/views/meta_box_fields.php:289
|
1499 |
+
msgid "any"
|
1500 |
+
msgstr "någon"
|
1501 |
+
|
1502 |
+
#: core/views/meta_box_fields.php:292
|
1503 |
+
msgid "these rules are met"
|
1504 |
+
msgstr "av dessa villkor uppfylls"
|
1505 |
+
|
1506 |
+
#: core/views/meta_box_fields.php:306
|
1507 |
+
msgid "Close Field"
|
1508 |
+
msgstr "Stäng fält"
|
1509 |
+
|
1510 |
+
#: core/views/meta_box_fields.php:319
|
1511 |
+
msgid "Drag and drop to reorder"
|
1512 |
+
msgstr "Dra och släpp för att ändra ordning"
|
1513 |
+
|
1514 |
+
#: core/views/meta_box_fields.php:320
|
1515 |
+
msgid "+ Add Field"
|
1516 |
+
msgstr "+ Lägg till fält"
|
1517 |
+
|
1518 |
+
#: core/views/meta_box_location.php:45
|
1519 |
+
msgid "Rules"
|
1520 |
+
msgstr "Regler"
|
1521 |
+
|
1522 |
+
#: core/views/meta_box_location.php:46
|
1523 |
+
msgid ""
|
1524 |
+
"Create a set of rules to determine which edit screens will use these "
|
1525 |
+
"advanced custom fields"
|
1526 |
+
msgstr "Skapa regler för när redigeringsvyn ska visa dessa fält"
|
1527 |
+
|
1528 |
+
#: core/views/meta_box_location.php:57
|
1529 |
+
msgid "Show this field group if"
|
1530 |
+
msgstr "Visa detta fält när"
|
1531 |
+
|
1532 |
+
#: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
|
1533 |
+
#: core/views/meta_box_location.php:172
|
1534 |
+
msgid "or"
|
1535 |
+
msgstr "eller"
|
1536 |
+
|
1537 |
+
#: core/views/meta_box_location.php:73
|
1538 |
+
msgid "Logged in User Type"
|
1539 |
+
msgstr "Inloggad användartyp"
|
1540 |
+
|
1541 |
+
#: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
|
1542 |
+
msgid "Page"
|
1543 |
+
msgstr "Sida"
|
1544 |
+
|
1545 |
+
#: core/views/meta_box_location.php:77
|
1546 |
+
msgid "Page Type"
|
1547 |
+
msgstr "Sidtyp"
|
1548 |
+
|
1549 |
+
#: core/views/meta_box_location.php:78
|
1550 |
+
msgid "Page Parent"
|
1551 |
+
msgstr "Sidans förälder"
|
1552 |
+
|
1553 |
+
#: core/views/meta_box_location.php:79
|
1554 |
+
msgid "Page Template"
|
1555 |
+
msgstr "Sidmall"
|
1556 |
+
|
1557 |
+
#: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
|
1558 |
+
msgid "Post"
|
1559 |
+
msgstr "Inlägg"
|
1560 |
+
|
1561 |
+
#: core/views/meta_box_location.php:83
|
1562 |
+
msgid "Post Category"
|
1563 |
+
msgstr "Inläggskategori"
|
1564 |
+
|
1565 |
+
#: core/views/meta_box_location.php:84
|
1566 |
+
msgid "Post Format"
|
1567 |
+
msgstr "Inläggsformat"
|
1568 |
+
|
1569 |
+
#: core/views/meta_box_location.php:85
|
1570 |
+
msgid "Post Taxonomy"
|
1571 |
+
msgstr "Inläggstaxonomi"
|
1572 |
+
|
1573 |
+
#: core/views/meta_box_location.php:87
|
1574 |
+
msgid "Other"
|
1575 |
+
msgstr "Annat"
|
1576 |
+
|
1577 |
+
#: core/views/meta_box_location.php:88
|
1578 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1579 |
+
msgstr "Taxonomiterm (Lägg till / Redigera)"
|
1580 |
+
|
1581 |
+
#: core/views/meta_box_location.php:89
|
1582 |
+
msgid "User (Add / Edit)"
|
1583 |
+
msgstr "Användare (Lägg till / Redigera)"
|
1584 |
+
|
1585 |
+
#: core/views/meta_box_location.php:90
|
1586 |
+
msgid "Media Attachment (Edit)"
|
1587 |
+
msgstr "Mediabilaga (Redigera)"
|
1588 |
+
|
1589 |
+
#: core/views/meta_box_location.php:142
|
1590 |
+
msgid "and"
|
1591 |
+
msgstr "och"
|
1592 |
+
|
1593 |
+
#: core/views/meta_box_location.php:157
|
1594 |
+
msgid "Add rule group"
|
1595 |
+
msgstr "Lägg till regelgrupp"
|
1596 |
+
|
1597 |
+
#: core/views/meta_box_location.php:168
|
1598 |
+
msgid "Unlock options add-on with an activation code"
|
1599 |
+
msgstr "Lås upp inställnignstillägg med en aktiveringskod"
|
1600 |
+
|
1601 |
+
#: core/views/meta_box_options.php:23
|
1602 |
+
msgid "Order No."
|
1603 |
+
msgstr "Ordernr."
|
1604 |
+
|
1605 |
+
#: core/views/meta_box_options.php:24
|
1606 |
+
msgid "Field groups are created in order <br />from lowest to highest"
|
1607 |
+
msgstr "Fältgrupper skapas i ordning, <br />från lägsta till högsta"
|
1608 |
+
|
1609 |
+
#: core/views/meta_box_options.php:40
|
1610 |
+
msgid "Position"
|
1611 |
+
msgstr "Plats"
|
1612 |
+
|
1613 |
+
#: core/views/meta_box_options.php:50
|
1614 |
+
msgid "Normal"
|
1615 |
+
msgstr "Normal"
|
1616 |
+
|
1617 |
+
#: core/views/meta_box_options.php:51
|
1618 |
+
msgid "Side"
|
1619 |
+
msgstr "Sidopanel"
|
1620 |
+
|
1621 |
+
#: core/views/meta_box_options.php:60
|
1622 |
+
msgid "Style"
|
1623 |
+
msgstr "Stil"
|
1624 |
+
|
1625 |
+
#: core/views/meta_box_options.php:70
|
1626 |
+
msgid "No Metabox"
|
1627 |
+
msgstr "Ingen metabox"
|
1628 |
+
|
1629 |
+
#: core/views/meta_box_options.php:71
|
1630 |
+
msgid "Standard Metabox"
|
1631 |
+
msgstr "Vanlig metabox"
|
1632 |
+
|
1633 |
+
#: core/views/meta_box_options.php:80
|
1634 |
+
msgid "Hide on screen"
|
1635 |
+
msgstr "Dölj på sida"
|
1636 |
+
|
1637 |
+
#: core/views/meta_box_options.php:81
|
1638 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1639 |
+
msgstr "<b>Välj</b> objekt för att <b>dölja</b> dem från redigeringsvyn"
|
1640 |
+
|
1641 |
+
#: core/views/meta_box_options.php:82
|
1642 |
+
msgid ""
|
1643 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
1644 |
+
"options will be used. (the one with the lowest order number)"
|
1645 |
+
msgstr ""
|
1646 |
+
"Om flera fältgrupper visas i redigeringsvyn kommer första gruppens "
|
1647 |
+
"inställningar att användas (den med lägst ordningsnummer)"
|
1648 |
+
|
1649 |
+
#: core/views/meta_box_options.php:92
|
1650 |
+
msgid "Content Editor"
|
1651 |
+
msgstr "Innehållseditor"
|
1652 |
+
|
1653 |
+
#: core/views/meta_box_options.php:93
|
1654 |
+
msgid "Excerpt"
|
1655 |
+
msgstr "Utdrag"
|
1656 |
+
|
1657 |
+
#: core/views/meta_box_options.php:95
|
1658 |
+
msgid "Discussion"
|
1659 |
+
msgstr "Diskussion"
|
1660 |
+
|
1661 |
+
#: core/views/meta_box_options.php:96
|
1662 |
+
msgid "Comments"
|
1663 |
+
msgstr "Kommentarer"
|
1664 |
+
|
1665 |
+
#: core/views/meta_box_options.php:97
|
1666 |
+
msgid "Revisions"
|
1667 |
+
msgstr "Revisioner"
|
1668 |
+
|
1669 |
+
#: core/views/meta_box_options.php:98
|
1670 |
+
msgid "Slug"
|
1671 |
+
msgstr "Permalänk"
|
1672 |
+
|
1673 |
+
#: core/views/meta_box_options.php:99
|
1674 |
+
msgid "Author"
|
1675 |
+
msgstr "Författare"
|
1676 |
+
|
1677 |
+
#: core/views/meta_box_options.php:100
|
1678 |
+
msgid "Format"
|
1679 |
+
msgstr "Format"
|
1680 |
+
|
1681 |
+
#: core/views/meta_box_options.php:101
|
1682 |
+
msgid "Featured Image"
|
1683 |
+
msgstr "Utvald bild"
|
1684 |
+
|
1685 |
+
#: core/views/meta_box_options.php:102
|
1686 |
+
msgid "Categories"
|
1687 |
+
msgstr "Kategorier"
|
1688 |
+
|
1689 |
+
#: core/views/meta_box_options.php:103
|
1690 |
+
msgid "Tags"
|
1691 |
+
msgstr "Etiketter"
|
1692 |
+
|
1693 |
+
#: core/views/meta_box_options.php:104
|
1694 |
+
msgid "Send Trackbacks"
|
1695 |
+
msgstr "Skicka trackbacks"
|
lang/acf.pot
CHANGED
@@ -2,115 +2,114 @@
|
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
-
"POT-Creation-Date: 2013-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2013-
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
-
"X-Generator: Poedit 1.5.5\n"
|
15 |
|
16 |
-
#: acf.php:
|
17 |
msgid "Field Groups"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: acf.php:
|
21 |
msgid "Advanced Custom Fields"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: acf.php:
|
25 |
msgid "Add New"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: acf.php:
|
29 |
msgid "Add New Field Group"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: acf.php:
|
33 |
msgid "Edit Field Group"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: acf.php:
|
37 |
msgid "New Field Group"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: acf.php:
|
41 |
msgid "View Field Group"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: acf.php:
|
45 |
msgid "Search Field Groups"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: acf.php:
|
49 |
msgid "No Field Groups found"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: acf.php:
|
53 |
msgid "No Field Groups found in Trash"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: acf.php:
|
57 |
msgid "Custom Fields"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: acf.php:
|
61 |
msgid "Field group updated."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: acf.php:
|
65 |
msgid "Custom field updated."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: acf.php:
|
69 |
msgid "Custom field deleted."
|
70 |
msgstr ""
|
71 |
|
72 |
#. translators: %s: date and time of the revision
|
73 |
-
#: acf.php:
|
74 |
msgid "Field group restored to revision from %s"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Field group published."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: acf.php:
|
82 |
msgid "Field group saved."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: acf.php:
|
86 |
msgid "Field group submitted."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: acf.php:
|
90 |
msgid "Field group scheduled for."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: acf.php:
|
94 |
msgid "Field group draft updated."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: acf.php:
|
98 |
msgid "Thumbnail"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: acf.php:
|
102 |
msgid "Medium"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: acf.php:
|
106 |
msgid "Large"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: acf.php:
|
110 |
msgid "Full"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: core/actions/export.php:23 core/views/meta_box_fields.php:
|
114 |
msgid "Error"
|
115 |
msgstr ""
|
116 |
|
@@ -118,6 +117,14 @@ msgstr ""
|
|
118 |
msgid "No ACF groups selected"
|
119 |
msgstr ""
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
122 |
msgid "Add-ons"
|
123 |
msgstr ""
|
@@ -203,15 +210,15 @@ msgid ""
|
|
203 |
"included in your theme (does not receive updates)."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: core/controllers/addons.php:
|
207 |
msgid "Installed"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: core/controllers/addons.php:
|
211 |
msgid "Purchase & Install"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: core/controllers/addons.php:
|
215 |
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
216 |
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
217 |
msgid "Download"
|
@@ -319,7 +326,7 @@ msgstr ""
|
|
319 |
msgid "Export Field Groups to PHP"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: core/controllers/export.php:300 core/fields/tab.php:
|
323 |
msgid "Instructions"
|
324 |
msgstr ""
|
325 |
|
@@ -341,7 +348,7 @@ msgstr ""
|
|
341 |
#: core/controllers/export.php:323
|
342 |
msgid ""
|
343 |
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
344 |
-
"to enable lite mode. Add the following code to
|
345 |
"<b>before</b> the include_once code:"
|
346 |
msgstr ""
|
347 |
|
@@ -374,8 +381,8 @@ msgid ""
|
|
374 |
" */"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: core/controllers/export.php:370 core/controllers/field_group.php:
|
378 |
-
#: core/controllers/field_group.php:
|
379 |
msgid "Fields"
|
380 |
msgstr ""
|
381 |
|
@@ -395,65 +402,66 @@ msgstr ""
|
|
395 |
msgid "No field groups were selected"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: core/controllers/field_group.php:
|
399 |
msgid "Location"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: core/controllers/field_group.php:
|
403 |
msgid "Options"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: core/controllers/field_group.php:
|
407 |
msgid "Show Field Key:"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: core/controllers/field_group.php:
|
411 |
-
#: core/fields/page_link.php:
|
412 |
-
#: core/fields/post_object.php:
|
413 |
-
#: core/fields/select.php:
|
414 |
-
#: core/fields/user.php:
|
415 |
-
#: core/views/meta_box_fields.php:
|
416 |
msgid "No"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: core/controllers/field_group.php:
|
420 |
-
#: core/fields/page_link.php:
|
421 |
-
#: core/fields/post_object.php:
|
422 |
-
#: core/fields/select.php:
|
423 |
-
#: core/fields/user.php:
|
424 |
-
#: core/views/meta_box_fields.php:
|
425 |
msgid "Yes"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: core/controllers/field_group.php:
|
429 |
msgid "Front Page"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: core/controllers/field_group.php:
|
433 |
msgid "Posts Page"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: core/controllers/field_group.php:
|
437 |
msgid "Top Level Page (parent of 0)"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: core/controllers/field_group.php:
|
441 |
msgid "Parent Page (has children)"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: core/controllers/field_group.php:
|
445 |
msgid "Child Page (has parent)"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: core/controllers/field_group.php:
|
449 |
msgid "Default Template"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: core/controllers/field_group.php:
|
453 |
-
#: core/controllers/field_group.php:
|
454 |
-
#: core/fields/
|
455 |
-
#: core/fields/
|
456 |
-
#: core/fields/
|
|
|
457 |
msgid "All"
|
458 |
msgstr ""
|
459 |
|
@@ -493,7 +501,7 @@ msgstr ""
|
|
493 |
msgid "Actions"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: core/controllers/field_groups.php:225 core/fields/relationship.php:
|
497 |
msgid "Filters"
|
498 |
msgstr ""
|
499 |
|
@@ -618,7 +626,7 @@ msgstr ""
|
|
618 |
|
619 |
#: core/controllers/field_groups.php:353
|
620 |
msgid ""
|
621 |
-
"All actions & filters have
|
622 |
"even easier! Please"
|
623 |
msgstr ""
|
624 |
|
@@ -683,7 +691,7 @@ msgstr ""
|
|
683 |
#: core/controllers/field_groups.php:369
|
684 |
msgid ""
|
685 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
686 |
-
"
|
687 |
msgstr ""
|
688 |
|
689 |
#: core/controllers/field_groups.php:369
|
@@ -791,83 +799,100 @@ msgstr ""
|
|
791 |
msgid "Awesome. Let's get to work"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: core/controllers/input.php:
|
795 |
msgid "Validation Failed. One or more fields below are required."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: core/controllers/
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: core/controllers/upgrade.php:
|
803 |
-
msgid "
|
|
|
|
|
|
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: core/controllers/upgrade.php:
|
807 |
msgid "Modifying field group options 'show on page'"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: core/controllers/upgrade.php:
|
811 |
msgid "Modifying field option 'taxonomy'"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: core/controllers/upgrade.php:
|
815 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: core/fields/_base.php:
|
819 |
msgid "Basic"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:
|
823 |
msgid "Checkbox"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: core/fields/checkbox.php:20 core/fields/radio.php:
|
827 |
-
#: core/fields/select.php:
|
828 |
msgid "Choice"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: core/fields/checkbox.php:
|
832 |
-
#: core/fields/select.php:
|
833 |
msgid "Choices"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: core/fields/checkbox.php:
|
837 |
msgid "Enter each choice on a new line."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: core/fields/checkbox.php:
|
841 |
msgid "For more control, you may specify both a value and label like this:"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: core/fields/checkbox.php:
|
845 |
-
#: core/fields/select.php:
|
846 |
msgid "red : Red"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: core/fields/checkbox.php:
|
850 |
-
#: core/fields/select.php:
|
851 |
msgid "blue : Blue"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: core/fields/checkbox.php:
|
855 |
-
#: core/fields/email.php:
|
856 |
-
#: core/fields/radio.php:
|
857 |
-
#: core/fields/text.php:
|
858 |
-
#: core/fields/true_false.php:
|
859 |
msgid "Default Value"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: core/fields/checkbox.php:
|
863 |
msgid "Enter each default value on a new line"
|
864 |
msgstr ""
|
865 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
866 |
#: core/fields/color_picker.php:19
|
867 |
msgid "Color Picker"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:
|
871 |
msgid "jQuery"
|
872 |
msgstr ""
|
873 |
|
@@ -875,59 +900,56 @@ msgstr ""
|
|
875 |
msgid "eg: #ffffff"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: core/fields/date_picker/date_picker.php:
|
879 |
msgid "Date Picker"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: core/fields/date_picker/date_picker.php:
|
883 |
-
#: core/fields/date_picker/date_picker.php:132
|
884 |
msgid "Done"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: core/fields/date_picker/date_picker.php:
|
888 |
-
#: core/fields/date_picker/date_picker.php:133
|
889 |
msgid "Today"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: core/fields/date_picker/date_picker.php:
|
893 |
-
#: core/fields/date_picker/date_picker.php:136
|
894 |
msgid "Show a different month"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: core/fields/date_picker/date_picker.php:
|
898 |
msgid "Save format"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: core/fields/date_picker/date_picker.php:
|
902 |
msgid ""
|
903 |
"This format will determin the value saved to the database and returned via "
|
904 |
"the API"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: core/fields/date_picker/date_picker.php:
|
908 |
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: core/fields/date_picker/date_picker.php:
|
912 |
-
#: core/fields/date_picker/date_picker.php:
|
913 |
msgid "jQuery date formats"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: core/fields/date_picker/date_picker.php:
|
917 |
msgid "Display format"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: core/fields/date_picker/date_picker.php:
|
921 |
msgid "This format will be seen by the user when entering a value"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: core/fields/date_picker/date_picker.php:
|
925 |
msgid ""
|
926 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
927 |
"about"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: core/fields/date_picker/date_picker.php:
|
931 |
msgid "Week Starts On"
|
932 |
msgstr ""
|
933 |
|
@@ -947,61 +969,68 @@ msgstr ""
|
|
947 |
msgid "Content"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: core/fields/file.php:
|
951 |
-
|
952 |
-
msgid "Edit"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: core/fields/file.php:
|
956 |
-
msgid "
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: core/fields/file.php:
|
|
|
|
|
|
|
|
|
960 |
msgid "No File Selected"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: core/fields/file.php:
|
964 |
msgid "Add File"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: core/fields/file.php:
|
968 |
-
#: core/fields/taxonomy.php:
|
969 |
msgid "Return Value"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: core/fields/file.php:
|
973 |
msgid "File Object"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: core/fields/file.php:
|
977 |
msgid "File URL"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: core/fields/file.php:
|
981 |
msgid "File ID"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: core/fields/file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
985 |
msgid "File Updated."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: core/fields/file.php:
|
989 |
msgid "Media attachment updated."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: core/fields/file.php:
|
993 |
msgid "No files selected"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: core/fields/file.php:
|
997 |
msgid "Add Selected Files"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: core/fields/file.php:
|
1001 |
-
msgid "Select File"
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#: core/fields/file.php:670
|
1005 |
msgid "Update File"
|
1006 |
msgstr ""
|
1007 |
|
@@ -1009,64 +1038,72 @@ msgstr ""
|
|
1009 |
msgid "Image"
|
1010 |
msgstr ""
|
1011 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
#: core/fields/image.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgid "No image selected"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: core/fields/image.php:
|
1017 |
msgid "Add Image"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: core/fields/image.php:
|
1021 |
msgid "Image Object"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: core/fields/image.php:
|
1025 |
msgid "Image URL"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: core/fields/image.php:
|
1029 |
msgid "Image ID"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: core/fields/image.php:
|
1033 |
msgid "Preview Size"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: core/fields/image.php:
|
1037 |
msgid "Image Updated."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: core/fields/image.php:
|
1041 |
msgid "No images selected"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: core/fields/image.php:
|
1045 |
msgid "Add Selected Images"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: core/fields/image.php:
|
1049 |
-
msgid "Select Image"
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: core/fields/image.php:699
|
1053 |
msgid "Update Image"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: core/fields/message.php:19 core/fields/message.php:
|
1057 |
-
#: core/fields/true_false.php:
|
1058 |
msgid "Message"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: core/fields/message.php:
|
1062 |
-
msgid "Layout"
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: core/fields/message.php:72
|
1066 |
msgid "Text & HTML entered here will appear inline with the fields"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: core/fields/message.php:
|
1070 |
msgid "Please note that all text will first be passed through the wp function "
|
1071 |
msgstr ""
|
1072 |
|
@@ -1074,30 +1111,54 @@ msgstr ""
|
|
1074 |
msgid "Number"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
msgid "Page Link"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: core/fields/page_link.php:
|
1082 |
-
#: core/fields/relationship.php:
|
1083 |
-
#: core/fields/user.php:
|
1084 |
msgid "Relational"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: core/fields/page_link.php:
|
1088 |
-
#: core/fields/relationship.php:
|
1089 |
-
#: core/views/meta_box_location.php:
|
1090 |
msgid "Post Type"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: core/fields/page_link.php:
|
1094 |
-
#: core/fields/select.php:
|
1095 |
-
#: core/fields/user.php:
|
1096 |
msgid "Allow Null?"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: core/fields/page_link.php:
|
1100 |
-
#: core/fields/select.php:
|
1101 |
msgid "Select multiple values?"
|
1102 |
msgstr ""
|
1103 |
|
@@ -1105,68 +1166,88 @@ msgstr ""
|
|
1105 |
msgid "Password"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: core/fields/post_object.php:
|
1109 |
msgid "Post Object"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: core/fields/post_object.php:
|
1113 |
msgid "Filter from Taxonomy"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: core/fields/radio.php:
|
1117 |
msgid "Radio Button"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: core/fields/radio.php:
|
|
|
|
|
|
|
|
|
1121 |
msgid "Enter your choices one per line"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: core/fields/radio.php:
|
1125 |
msgid "Red"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: core/fields/radio.php:
|
1129 |
msgid "Blue"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: core/fields/radio.php:
|
1133 |
-
msgid "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: core/fields/radio.php:
|
1137 |
-
msgid "
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: core/fields/relationship.php:
|
1141 |
msgid "Relationship"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: core/fields/relationship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1145 |
msgid "Search"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: core/fields/relationship.php:
|
1149 |
msgid "Post Type Select"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: core/fields/relationship.php:
|
1153 |
msgid "Elements"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: core/fields/relationship.php:
|
1157 |
msgid "Selected elements will be displayed in each result"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: core/fields/relationship.php:
|
|
|
|
|
|
|
|
|
1161 |
msgid "Post Title"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: core/fields/relationship.php:
|
1165 |
msgid "Maximum posts"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: core/fields/select.php:
|
1169 |
-
#: core/fields/user.php:
|
1170 |
msgid "Select"
|
1171 |
msgstr ""
|
1172 |
|
@@ -1174,60 +1255,60 @@ msgstr ""
|
|
1174 |
msgid "Tab"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: core/fields/tab.php:
|
1178 |
msgid ""
|
1179 |
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1180 |
"defined) will appear grouped on the edit screen."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: core/fields/tab.php:
|
1184 |
msgid "You can use multiple tabs to break up your fields into sections."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: core/fields/taxonomy.php:
|
1188 |
msgid "Taxonomy"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: core/fields/taxonomy.php:
|
1192 |
-
#: core/fields/text.php:
|
1193 |
msgid "None"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: core/fields/taxonomy.php:
|
1197 |
-
#: core/views/meta_box_fields.php:
|
1198 |
msgid "Field Type"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: core/fields/taxonomy.php:
|
1202 |
msgid "Multiple Values"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: core/fields/taxonomy.php:
|
1206 |
msgid "Multi Select"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: core/fields/taxonomy.php:
|
1210 |
msgid "Single Value"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: core/fields/taxonomy.php:
|
1214 |
msgid "Radio Buttons"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: core/fields/taxonomy.php:
|
1218 |
msgid "Load & Save Terms to Post"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: core/fields/taxonomy.php:
|
1222 |
msgid ""
|
1223 |
"Load value based on the post's terms and update the post's terms on save"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: core/fields/taxonomy.php:
|
1227 |
msgid "Term Object"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: core/fields/taxonomy.php:
|
1231 |
msgid "Term ID"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1235,15 +1316,15 @@ msgstr ""
|
|
1235 |
msgid "Text"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: core/fields/text.php:
|
1239 |
msgid "Formatting"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: core/fields/text.php:
|
1243 |
msgid "Define how to render html tags"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: core/fields/text.php:
|
1247 |
msgid "HTML"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1251,11 +1332,11 @@ msgstr ""
|
|
1251 |
msgid "Text Area"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: core/fields/textarea.php:
|
1255 |
msgid "Define how to render html tags / new lines"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: core/fields/textarea.php:
|
1259 |
msgid "auto <br />"
|
1260 |
msgstr ""
|
1261 |
|
@@ -1263,15 +1344,15 @@ msgstr ""
|
|
1263 |
msgid "True / False"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: core/fields/true_false.php:
|
1267 |
msgid "eg. Show extra content"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: core/fields/user.php:
|
1271 |
msgid "User"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: core/fields/user.php:
|
1275 |
msgid "Filter by role"
|
1276 |
msgstr ""
|
1277 |
|
@@ -1279,325 +1360,313 @@ msgstr ""
|
|
1279 |
msgid "Wysiwyg Editor"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: core/fields/wysiwyg.php:
|
1283 |
msgid "Toolbar"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: core/fields/wysiwyg.php:
|
1287 |
msgid "Show Media Upload Buttons?"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: core/views/meta_box_fields.php:
|
1291 |
msgid "New Field"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: core/views/meta_box_fields.php:
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: core/views/meta_box_fields.php:
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: core/views/meta_box_fields.php:64
|
1303 |
-
msgid "
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: core/views/meta_box_fields.php:65
|
1307 |
-
msgid "
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: core/views/meta_box_fields.php:66
|
1311 |
-
msgid "
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: core/views/meta_box_fields.php:67
|
1315 |
msgid "copy"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
1319 |
msgid "Field Order"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: core/views/meta_box_fields.php:
|
1323 |
msgid "Field Label"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: core/views/meta_box_fields.php:
|
1327 |
msgid "Field Name"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: core/views/meta_box_fields.php:
|
1331 |
msgid "Field Key"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: core/views/meta_box_fields.php:
|
1335 |
msgid ""
|
1336 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1337 |
"first field."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: core/views/meta_box_fields.php:
|
1341 |
msgid "Edit this Field"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: core/views/meta_box_fields.php:
|
1345 |
msgid "Read documentation for this field"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: core/views/meta_box_fields.php:
|
1349 |
msgid "Docs"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: core/views/meta_box_fields.php:
|
1353 |
msgid "Duplicate this Field"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: core/views/meta_box_fields.php:
|
1357 |
msgid "Duplicate"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: core/views/meta_box_fields.php:
|
1361 |
msgid "Delete this Field"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: core/views/meta_box_fields.php:
|
1365 |
msgid "Delete"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: core/views/meta_box_fields.php:
|
1369 |
msgid "This is the name which will appear on the EDIT page"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: core/views/meta_box_fields.php:
|
1373 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: core/views/meta_box_fields.php:
|
1377 |
msgid "Field Instructions"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: core/views/meta_box_fields.php:
|
1381 |
msgid "Instructions for authors. Shown when submitting data"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: core/views/meta_box_fields.php:
|
1385 |
msgid "Required?"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: core/views/meta_box_fields.php:
|
1389 |
msgid "Conditional Logic"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: core/views/meta_box_fields.php:
|
1393 |
msgid "is equal to"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: core/views/meta_box_fields.php:
|
1397 |
msgid "is not equal to"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: core/views/meta_box_fields.php:
|
1401 |
msgid "Show this field when"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: core/views/meta_box_fields.php:
|
1405 |
msgid "all"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: core/views/meta_box_fields.php:
|
1409 |
msgid "any"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: core/views/meta_box_fields.php:
|
1413 |
msgid "these rules are met"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: core/views/meta_box_fields.php:
|
1417 |
msgid "Close Field"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: core/views/meta_box_fields.php:
|
1421 |
msgid "Drag and drop to reorder"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: core/views/meta_box_fields.php:
|
1425 |
msgid "+ Add Field"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: core/views/meta_box_location.php:
|
1429 |
msgid "Rules"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: core/views/meta_box_location.php:
|
1433 |
msgid ""
|
1434 |
"Create a set of rules to determine which edit screens will use these "
|
1435 |
"advanced custom fields"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: core/views/meta_box_location.php:
|
1439 |
msgid "Show this field group if"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: core/views/meta_box_location.php:
|
1443 |
-
#: core/views/meta_box_location.php:172
|
1444 |
-
msgid "or"
|
1445 |
-
msgstr ""
|
1446 |
-
|
1447 |
-
#: core/views/meta_box_location.php:73
|
1448 |
msgid "Logged in User Type"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: core/views/meta_box_location.php:
|
1452 |
msgid "Page"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: core/views/meta_box_location.php:
|
1456 |
msgid "Page Type"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: core/views/meta_box_location.php:
|
1460 |
msgid "Page Parent"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: core/views/meta_box_location.php:
|
1464 |
msgid "Page Template"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: core/views/meta_box_location.php:
|
1468 |
msgid "Post"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: core/views/meta_box_location.php:
|
1472 |
msgid "Post Category"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: core/views/meta_box_location.php:
|
1476 |
msgid "Post Format"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: core/views/meta_box_location.php:
|
1480 |
msgid "Post Taxonomy"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: core/views/meta_box_location.php:
|
1484 |
-
msgid "Other"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: core/views/meta_box_location.php:88
|
1488 |
msgid "Taxonomy Term (Add / Edit)"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: core/views/meta_box_location.php:
|
1492 |
msgid "User (Add / Edit)"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: core/views/meta_box_location.php:
|
1496 |
msgid "Media Attachment (Edit)"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: core/views/meta_box_location.php:
|
1500 |
msgid "and"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: core/views/meta_box_location.php:
|
1504 |
msgid "Add rule group"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: core/views/
|
1508 |
-
msgid "Unlock options add-on with an activation code"
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
-
#: core/views/meta_box_options.php:23
|
1512 |
msgid "Order No."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: core/views/meta_box_options.php:
|
1516 |
msgid "Field groups are created in order <br />from lowest to highest"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: core/views/meta_box_options.php:
|
1520 |
msgid "Position"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: core/views/meta_box_options.php:
|
1524 |
msgid "Normal"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: core/views/meta_box_options.php:
|
1528 |
msgid "Side"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: core/views/meta_box_options.php:
|
1532 |
msgid "Style"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: core/views/meta_box_options.php:
|
1536 |
msgid "No Metabox"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: core/views/meta_box_options.php:
|
1540 |
msgid "Standard Metabox"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: core/views/meta_box_options.php:
|
1544 |
msgid "Hide on screen"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: core/views/meta_box_options.php:
|
1548 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: core/views/meta_box_options.php:
|
1552 |
msgid ""
|
1553 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1554 |
"options will be used. (the one with the lowest order number)"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: core/views/meta_box_options.php:
|
1558 |
msgid "Content Editor"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: core/views/meta_box_options.php:
|
1562 |
msgid "Excerpt"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: core/views/meta_box_options.php:
|
1566 |
msgid "Discussion"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: core/views/meta_box_options.php:
|
1570 |
msgid "Comments"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: core/views/meta_box_options.php:
|
1574 |
msgid "Revisions"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: core/views/meta_box_options.php:
|
1578 |
msgid "Slug"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: core/views/meta_box_options.php:
|
1582 |
msgid "Author"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: core/views/meta_box_options.php:
|
1586 |
msgid "Format"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: core/views/meta_box_options.php:
|
1590 |
-
msgid "Featured Image"
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
#: core/views/meta_box_options.php:102
|
1594 |
msgid "Categories"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: core/views/meta_box_options.php:
|
1598 |
msgid "Tags"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: core/views/meta_box_options.php:
|
1602 |
msgid "Send Trackbacks"
|
1603 |
msgstr ""
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2013-07-09 03:49:07+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
14 |
|
15 |
+
#: acf.php:325
|
16 |
msgid "Field Groups"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: acf.php:326 core/controllers/field_groups.php:214
|
20 |
msgid "Advanced Custom Fields"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: acf.php:327
|
24 |
msgid "Add New"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: acf.php:328
|
28 |
msgid "Add New Field Group"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: acf.php:329
|
32 |
msgid "Edit Field Group"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: acf.php:330
|
36 |
msgid "New Field Group"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: acf.php:331
|
40 |
msgid "View Field Group"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: acf.php:332
|
44 |
msgid "Search Field Groups"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: acf.php:333
|
48 |
msgid "No Field Groups found"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: acf.php:334
|
52 |
msgid "No Field Groups found in Trash"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: acf.php:447 core/views/meta_box_options.php:96
|
56 |
msgid "Custom Fields"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: acf.php:465 acf.php:468
|
60 |
msgid "Field group updated."
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: acf.php:466
|
64 |
msgid "Custom field updated."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: acf.php:467
|
68 |
msgid "Custom field deleted."
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: %s: date and time of the revision
|
72 |
+
#: acf.php:470
|
73 |
msgid "Field group restored to revision from %s"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: acf.php:471
|
77 |
msgid "Field group published."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: acf.php:472
|
81 |
msgid "Field group saved."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: acf.php:473
|
85 |
msgid "Field group submitted."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: acf.php:474
|
89 |
msgid "Field group scheduled for."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: acf.php:475
|
93 |
msgid "Field group draft updated."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: acf.php:610
|
97 |
msgid "Thumbnail"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: acf.php:611
|
101 |
msgid "Medium"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: acf.php:612
|
105 |
msgid "Large"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: acf.php:613
|
109 |
msgid "Full"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:58
|
113 |
msgid "Error"
|
114 |
msgstr ""
|
115 |
|
117 |
msgid "No ACF groups selected"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: core/api.php:1093
|
121 |
+
msgid "Update"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: core/api.php:1094
|
125 |
+
msgid "Post updated"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
129 |
msgid "Add-ons"
|
130 |
msgstr ""
|
210 |
"included in your theme (does not receive updates)."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: core/controllers/addons.php:219 core/controllers/addons.php:240
|
214 |
msgid "Installed"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: core/controllers/addons.php:221
|
218 |
msgid "Purchase & Install"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: core/controllers/addons.php:242 core/controllers/field_groups.php:425
|
222 |
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
223 |
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
224 |
msgid "Download"
|
326 |
msgid "Export Field Groups to PHP"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: core/controllers/export.php:300 core/fields/tab.php:65
|
330 |
msgid "Instructions"
|
331 |
msgstr ""
|
332 |
|
348 |
#: core/controllers/export.php:323
|
349 |
msgid ""
|
350 |
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
351 |
+
"to enable lite mode. Add the following code to your functions.php file "
|
352 |
"<b>before</b> the include_once code:"
|
353 |
msgstr ""
|
354 |
|
381 |
" */"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:366
|
385 |
+
#: core/controllers/field_group.php:428 core/controllers/field_groups.php:148
|
386 |
msgid "Fields"
|
387 |
msgstr ""
|
388 |
|
402 |
msgid "No field groups were selected"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: core/controllers/field_group.php:367
|
406 |
msgid "Location"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: core/controllers/field_group.php:368
|
410 |
msgid "Options"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: core/controllers/field_group.php:430
|
414 |
msgid "Show Field Key:"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:138
|
418 |
+
#: core/fields/page_link.php:159 core/fields/post_object.php:328
|
419 |
+
#: core/fields/post_object.php:349 core/fields/select.php:224
|
420 |
+
#: core/fields/select.php:243 core/fields/taxonomy.php:341
|
421 |
+
#: core/fields/user.php:285 core/fields/wysiwyg.php:228
|
422 |
+
#: core/views/meta_box_fields.php:207 core/views/meta_box_fields.php:230
|
423 |
msgid "No"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: core/controllers/field_group.php:432 core/fields/page_link.php:137
|
427 |
+
#: core/fields/page_link.php:158 core/fields/post_object.php:327
|
428 |
+
#: core/fields/post_object.php:348 core/fields/select.php:223
|
429 |
+
#: core/fields/select.php:242 core/fields/taxonomy.php:340
|
430 |
+
#: core/fields/user.php:284 core/fields/wysiwyg.php:227
|
431 |
+
#: core/views/meta_box_fields.php:206 core/views/meta_box_fields.php:229
|
432 |
msgid "Yes"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: core/controllers/field_group.php:609
|
436 |
msgid "Front Page"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: core/controllers/field_group.php:610
|
440 |
msgid "Posts Page"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: core/controllers/field_group.php:611
|
444 |
msgid "Top Level Page (parent of 0)"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: core/controllers/field_group.php:612
|
448 |
msgid "Parent Page (has children)"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: core/controllers/field_group.php:613
|
452 |
msgid "Child Page (has parent)"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: core/controllers/field_group.php:621
|
456 |
msgid "Default Template"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: core/controllers/field_group.php:713 core/controllers/field_group.php:734
|
460 |
+
#: core/controllers/field_group.php:741 core/fields/file.php:181
|
461 |
+
#: core/fields/image.php:166 core/fields/page_link.php:109
|
462 |
+
#: core/fields/post_object.php:274 core/fields/post_object.php:298
|
463 |
+
#: core/fields/relationship.php:553 core/fields/relationship.php:577
|
464 |
+
#: core/fields/user.php:229
|
465 |
msgid "All"
|
466 |
msgstr ""
|
467 |
|
501 |
msgid "Actions"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:596
|
505 |
msgid "Filters"
|
506 |
msgstr ""
|
507 |
|
626 |
|
627 |
#: core/controllers/field_groups.php:353
|
628 |
msgid ""
|
629 |
+
"All actions & filters have received a major facelift to make customizing ACF "
|
630 |
"even easier! Please"
|
631 |
msgstr ""
|
632 |
|
691 |
#: core/controllers/field_groups.php:369
|
692 |
msgid ""
|
693 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
694 |
+
"please roll back to the latest"
|
695 |
msgstr ""
|
696 |
|
697 |
#: core/controllers/field_groups.php:369
|
799 |
msgid "Awesome. Let's get to work"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: core/controllers/input.php:510
|
803 |
msgid "Validation Failed. One or more fields below are required."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: core/controllers/upgrade.php:86
|
807 |
+
msgid "Upgrade"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: core/controllers/upgrade.php:139
|
811 |
+
msgid "What's new"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: core/controllers/upgrade.php:150
|
815 |
+
msgid "credits"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: core/controllers/upgrade.php:684
|
819 |
msgid "Modifying field group options 'show on page'"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: core/controllers/upgrade.php:738
|
823 |
msgid "Modifying field option 'taxonomy'"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: core/controllers/upgrade.php:835
|
827 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: core/fields/_base.php:124 core/views/meta_box_location.php:74
|
831 |
msgid "Basic"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:317
|
835 |
msgid "Checkbox"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:19
|
839 |
+
#: core/fields/select.php:19 core/fields/true_false.php:20
|
840 |
msgid "Choice"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: core/fields/checkbox.php:137 core/fields/radio.php:144
|
844 |
+
#: core/fields/select.php:177
|
845 |
msgid "Choices"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: core/fields/checkbox.php:138 core/fields/select.php:178
|
849 |
msgid "Enter each choice on a new line."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: core/fields/checkbox.php:139 core/fields/select.php:179
|
853 |
msgid "For more control, you may specify both a value and label like this:"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: core/fields/checkbox.php:140 core/fields/radio.php:150
|
857 |
+
#: core/fields/select.php:180
|
858 |
msgid "red : Red"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: core/fields/checkbox.php:140 core/fields/radio.php:151
|
862 |
+
#: core/fields/select.php:180
|
863 |
msgid "blue : Blue"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: core/fields/checkbox.php:157 core/fields/color_picker.php:73
|
867 |
+
#: core/fields/email.php:69 core/fields/number.php:94
|
868 |
+
#: core/fields/radio.php:193 core/fields/select.php:197
|
869 |
+
#: core/fields/text.php:71 core/fields/textarea.php:71
|
870 |
+
#: core/fields/true_false.php:94 core/fields/wysiwyg.php:171
|
871 |
msgid "Default Value"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: core/fields/checkbox.php:158 core/fields/select.php:198
|
875 |
msgid "Enter each default value on a new line"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: core/fields/checkbox.php:174 core/fields/message.php:20
|
879 |
+
#: core/fields/radio.php:209 core/fields/tab.php:20
|
880 |
+
msgid "Layout"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: core/fields/checkbox.php:185 core/fields/radio.php:220
|
884 |
+
msgid "Vertical"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: core/fields/checkbox.php:186 core/fields/radio.php:221
|
888 |
+
msgid "Horizontal"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
#: core/fields/color_picker.php:19
|
892 |
msgid "Color Picker"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23
|
896 |
msgid "jQuery"
|
897 |
msgstr ""
|
898 |
|
900 |
msgid "eg: #ffffff"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: core/fields/date_picker/date_picker.php:22
|
904 |
msgid "Date Picker"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: core/fields/date_picker/date_picker.php:30
|
|
|
908 |
msgid "Done"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: core/fields/date_picker/date_picker.php:31
|
|
|
912 |
msgid "Today"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: core/fields/date_picker/date_picker.php:34
|
|
|
916 |
msgid "Show a different month"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: core/fields/date_picker/date_picker.php:105
|
920 |
msgid "Save format"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: core/fields/date_picker/date_picker.php:106
|
924 |
msgid ""
|
925 |
"This format will determin the value saved to the database and returned via "
|
926 |
"the API"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: core/fields/date_picker/date_picker.php:107
|
930 |
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: core/fields/date_picker/date_picker.php:107
|
934 |
+
#: core/fields/date_picker/date_picker.php:123
|
935 |
msgid "jQuery date formats"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: core/fields/date_picker/date_picker.php:121
|
939 |
msgid "Display format"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: core/fields/date_picker/date_picker.php:122
|
943 |
msgid "This format will be seen by the user when entering a value"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: core/fields/date_picker/date_picker.php:123
|
947 |
msgid ""
|
948 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
949 |
"about"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: core/fields/date_picker/date_picker.php:137
|
953 |
msgid "Week Starts On"
|
954 |
msgstr ""
|
955 |
|
969 |
msgid "Content"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: core/fields/file.php:26 core/fields/file.php:711
|
973 |
+
msgid "Select File"
|
|
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: core/fields/file.php:27
|
977 |
+
msgid "Edit File"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: core/fields/file.php:28 core/fields/image.php:29
|
981 |
+
msgid "uploaded to this post"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: core/fields/file.php:118
|
985 |
msgid "No File Selected"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: core/fields/file.php:118
|
989 |
msgid "Add File"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: core/fields/file.php:148 core/fields/image.php:117
|
993 |
+
#: core/fields/taxonomy.php:365
|
994 |
msgid "Return Value"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: core/fields/file.php:159
|
998 |
msgid "File Object"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: core/fields/file.php:160
|
1002 |
msgid "File URL"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: core/fields/file.php:161
|
1006 |
msgid "File ID"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: core/fields/file.php:170 core/fields/image.php:155
|
1010 |
+
msgid "Library"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: core/fields/file.php:182 core/fields/image.php:167
|
1014 |
+
msgid "Uploaded to post"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: core/fields/file.php:286
|
1018 |
msgid "File Updated."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: core/fields/file.php:379 core/fields/image.php:396
|
1022 |
msgid "Media attachment updated."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: core/fields/file.php:537
|
1026 |
msgid "No files selected"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: core/fields/file.php:678
|
1030 |
msgid "Add Selected Files"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: core/fields/file.php:714
|
|
|
|
|
|
|
|
|
1034 |
msgid "Update File"
|
1035 |
msgstr ""
|
1036 |
|
1038 |
msgid "Image"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: core/fields/image.php:27 core/fields/image.php:718
|
1042 |
+
msgid "Select Image"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: core/fields/image.php:28
|
1046 |
+
msgid "Edit Image"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
#: core/fields/image.php:82
|
1050 |
+
msgid "Remove"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: core/fields/image.php:83 core/views/meta_box_fields.php:122
|
1054 |
+
msgid "Edit"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: core/fields/image.php:89
|
1058 |
msgid "No image selected"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: core/fields/image.php:89
|
1062 |
msgid "Add Image"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: core/fields/image.php:127
|
1066 |
msgid "Image Object"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: core/fields/image.php:128
|
1070 |
msgid "Image URL"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: core/fields/image.php:129
|
1074 |
msgid "Image ID"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: core/fields/image.php:137
|
1078 |
msgid "Preview Size"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: core/fields/image.php:305
|
1082 |
msgid "Image Updated."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: core/fields/image.php:547
|
1086 |
msgid "No images selected"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: core/fields/image.php:689
|
1090 |
msgid "Add Selected Images"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: core/fields/image.php:721
|
|
|
|
|
|
|
|
|
1094 |
msgid "Update Image"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: core/fields/message.php:19 core/fields/message.php:70
|
1098 |
+
#: core/fields/true_false.php:79
|
1099 |
msgid "Message"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: core/fields/message.php:71
|
|
|
|
|
|
|
|
|
1103 |
msgid "Text & HTML entered here will appear inline with the fields"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: core/fields/message.php:72
|
1107 |
msgid "Please note that all text will first be passed through the wp function "
|
1108 |
msgstr ""
|
1109 |
|
1111 |
msgid "Number"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: core/fields/number.php:110
|
1115 |
+
msgid "Min"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: core/fields/number.php:111
|
1119 |
+
msgid "Specifies the minimum value allowed"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: core/fields/number.php:127
|
1123 |
+
msgid "Max"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: core/fields/number.php:128
|
1127 |
+
msgid "Specifies the maximim value allowed"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: core/fields/number.php:144
|
1131 |
+
msgid "Step"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: core/fields/number.php:145
|
1135 |
+
msgid "Specifies the legal number intervals"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: core/fields/page_link.php:18
|
1139 |
msgid "Page Link"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: core/fields/page_link.php:19 core/fields/post_object.php:19
|
1143 |
+
#: core/fields/relationship.php:19 core/fields/taxonomy.php:19
|
1144 |
+
#: core/fields/user.php:19
|
1145 |
msgid "Relational"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: core/fields/page_link.php:103 core/fields/post_object.php:268
|
1149 |
+
#: core/fields/relationship.php:547 core/fields/relationship.php:626
|
1150 |
+
#: core/views/meta_box_location.php:75
|
1151 |
msgid "Post Type"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: core/fields/page_link.php:127 core/fields/post_object.php:317
|
1155 |
+
#: core/fields/select.php:214 core/fields/taxonomy.php:331
|
1156 |
+
#: core/fields/user.php:275
|
1157 |
msgid "Allow Null?"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: core/fields/page_link.php:148 core/fields/post_object.php:338
|
1161 |
+
#: core/fields/select.php:233
|
1162 |
msgid "Select multiple values?"
|
1163 |
msgstr ""
|
1164 |
|
1166 |
msgid "Password"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: core/fields/post_object.php:18
|
1170 |
msgid "Post Object"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: core/fields/post_object.php:292 core/fields/relationship.php:571
|
1174 |
msgid "Filter from Taxonomy"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: core/fields/radio.php:18
|
1178 |
msgid "Radio Button"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: core/fields/radio.php:102 core/views/meta_box_location.php:90
|
1182 |
+
msgid "Other"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: core/fields/radio.php:145
|
1186 |
msgid "Enter your choices one per line"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: core/fields/radio.php:147
|
1190 |
msgid "Red"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: core/fields/radio.php:148
|
1194 |
msgid "Blue"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: core/fields/radio.php:172
|
1198 |
+
msgid "Add 'other' choice to allow for custom values"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: core/fields/radio.php:184
|
1202 |
+
msgid "Save 'other' values to the field's choices"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: core/fields/relationship.php:18
|
1206 |
msgid "Relationship"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: core/fields/relationship.php:28
|
1210 |
+
msgid "Maximum values reached ( {max} values )"
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: core/fields/relationship.php:401
|
1214 |
+
msgid "Search..."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: core/fields/relationship.php:414
|
1218 |
+
msgid "Filter by post type"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: core/fields/relationship.php:605
|
1222 |
msgid "Search"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: core/fields/relationship.php:606
|
1226 |
msgid "Post Type Select"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: core/fields/relationship.php:614
|
1230 |
msgid "Elements"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: core/fields/relationship.php:615
|
1234 |
msgid "Selected elements will be displayed in each result"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: core/fields/relationship.php:624 core/views/meta_box_options.php:103
|
1238 |
+
msgid "Featured Image"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: core/fields/relationship.php:625
|
1242 |
msgid "Post Title"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: core/fields/relationship.php:637
|
1246 |
msgid "Maximum posts"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: core/fields/select.php:18 core/fields/taxonomy.php:322
|
1250 |
+
#: core/fields/user.php:266
|
1251 |
msgid "Select"
|
1252 |
msgstr ""
|
1253 |
|
1255 |
msgid "Tab"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: core/fields/tab.php:68
|
1259 |
msgid ""
|
1260 |
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1261 |
"defined) will appear grouped on the edit screen."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: core/fields/tab.php:69
|
1265 |
msgid "You can use multiple tabs to break up your fields into sections."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276
|
1269 |
msgid "Taxonomy"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220
|
1273 |
+
#: core/fields/text.php:95 core/fields/textarea.php:95
|
1274 |
msgid "None"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: core/fields/taxonomy.php:306 core/fields/user.php:251
|
1278 |
+
#: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:172
|
1279 |
msgid "Field Type"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: core/fields/taxonomy.php:316 core/fields/user.php:260
|
1283 |
msgid "Multiple Values"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: core/fields/taxonomy.php:318 core/fields/user.php:262
|
1287 |
msgid "Multi Select"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: core/fields/taxonomy.php:320 core/fields/user.php:264
|
1291 |
msgid "Single Value"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: core/fields/taxonomy.php:321
|
1295 |
msgid "Radio Buttons"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: core/fields/taxonomy.php:350
|
1299 |
msgid "Load & Save Terms to Post"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: core/fields/taxonomy.php:358
|
1303 |
msgid ""
|
1304 |
"Load value based on the post's terms and update the post's terms on save"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: core/fields/taxonomy.php:375
|
1308 |
msgid "Term Object"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: core/fields/taxonomy.php:376
|
1312 |
msgid "Term ID"
|
1313 |
msgstr ""
|
1314 |
|
1316 |
msgid "Text"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: core/fields/text.php:85 core/fields/textarea.php:85
|
1320 |
msgid "Formatting"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: core/fields/text.php:86
|
1324 |
msgid "Define how to render html tags"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: core/fields/text.php:96 core/fields/textarea.php:97
|
1328 |
msgid "HTML"
|
1329 |
msgstr ""
|
1330 |
|
1332 |
msgid "Text Area"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: core/fields/textarea.php:86
|
1336 |
msgid "Define how to render html tags / new lines"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: core/fields/textarea.php:96
|
1340 |
msgid "auto <br />"
|
1341 |
msgstr ""
|
1342 |
|
1344 |
msgid "True / False"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: core/fields/true_false.php:80
|
1348 |
msgid "eg. Show extra content"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: core/fields/user.php:18
|
1352 |
msgid "User"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: core/fields/user.php:224
|
1356 |
msgid "Filter by role"
|
1357 |
msgstr ""
|
1358 |
|
1360 |
msgid "Wysiwyg Editor"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: core/fields/wysiwyg.php:185
|
1364 |
msgid "Toolbar"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: core/fields/wysiwyg.php:217
|
1368 |
msgid "Show Media Upload Buttons?"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: core/views/meta_box_fields.php:24
|
1372 |
msgid "New Field"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: core/views/meta_box_fields.php:58
|
1376 |
+
msgid "Field type does not exist"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: core/views/meta_box_fields.php:63
|
1380 |
+
msgid "Move to trash. Are you sure?"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
#: core/views/meta_box_fields.php:64
|
1384 |
+
msgid "checked"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: core/views/meta_box_fields.php:65
|
1388 |
+
msgid "No toggle fields available"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: core/views/meta_box_fields.php:66
|
1392 |
+
msgid "Field group title is required"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
#: core/views/meta_box_fields.php:67
|
1396 |
msgid "copy"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62
|
1400 |
+
#: core/views/meta_box_location.php:158
|
1401 |
+
msgid "or"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: core/views/meta_box_fields.php:88
|
1405 |
msgid "Field Order"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141
|
1409 |
msgid "Field Label"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157
|
1413 |
msgid "Field Name"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: core/views/meta_box_fields.php:92
|
1417 |
msgid "Field Key"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: core/views/meta_box_fields.php:104
|
1421 |
msgid ""
|
1422 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1423 |
"first field."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122
|
1427 |
msgid "Edit this Field"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: core/views/meta_box_fields.php:123
|
1431 |
msgid "Read documentation for this field"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: core/views/meta_box_fields.php:123
|
1435 |
msgid "Docs"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: core/views/meta_box_fields.php:124
|
1439 |
msgid "Duplicate this Field"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: core/views/meta_box_fields.php:124
|
1443 |
msgid "Duplicate"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: core/views/meta_box_fields.php:125
|
1447 |
msgid "Delete this Field"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: core/views/meta_box_fields.php:125
|
1451 |
msgid "Delete"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: core/views/meta_box_fields.php:142
|
1455 |
msgid "This is the name which will appear on the EDIT page"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: core/views/meta_box_fields.php:158
|
1459 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: core/views/meta_box_fields.php:185
|
1463 |
msgid "Field Instructions"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: core/views/meta_box_fields.php:186
|
1467 |
msgid "Instructions for authors. Shown when submitting data"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: core/views/meta_box_fields.php:198
|
1471 |
msgid "Required?"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: core/views/meta_box_fields.php:221
|
1475 |
msgid "Conditional Logic"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: core/views/meta_box_fields.php:272 core/views/meta_box_location.php:116
|
1479 |
msgid "is equal to"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: core/views/meta_box_fields.php:273 core/views/meta_box_location.php:117
|
1483 |
msgid "is not equal to"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: core/views/meta_box_fields.php:291
|
1487 |
msgid "Show this field when"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: core/views/meta_box_fields.php:297
|
1491 |
msgid "all"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: core/views/meta_box_fields.php:298
|
1495 |
msgid "any"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: core/views/meta_box_fields.php:301
|
1499 |
msgid "these rules are met"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: core/views/meta_box_fields.php:315
|
1503 |
msgid "Close Field"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: core/views/meta_box_fields.php:328
|
1507 |
msgid "Drag and drop to reorder"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: core/views/meta_box_fields.php:329
|
1511 |
msgid "+ Add Field"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: core/views/meta_box_location.php:48
|
1515 |
msgid "Rules"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: core/views/meta_box_location.php:49
|
1519 |
msgid ""
|
1520 |
"Create a set of rules to determine which edit screens will use these "
|
1521 |
"advanced custom fields"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: core/views/meta_box_location.php:60
|
1525 |
msgid "Show this field group if"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: core/views/meta_box_location.php:76
|
|
|
|
|
|
|
|
|
|
|
1529 |
msgid "Logged in User Type"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
|
1533 |
msgid "Page"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: core/views/meta_box_location.php:80
|
1537 |
msgid "Page Type"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: core/views/meta_box_location.php:81
|
1541 |
msgid "Page Parent"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: core/views/meta_box_location.php:82
|
1545 |
msgid "Page Template"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
|
1549 |
msgid "Post"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: core/views/meta_box_location.php:86
|
1553 |
msgid "Post Category"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: core/views/meta_box_location.php:87
|
1557 |
msgid "Post Format"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: core/views/meta_box_location.php:88
|
1561 |
msgid "Post Taxonomy"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: core/views/meta_box_location.php:91
|
|
|
|
|
|
|
|
|
1565 |
msgid "Taxonomy Term (Add / Edit)"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: core/views/meta_box_location.php:92
|
1569 |
msgid "User (Add / Edit)"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: core/views/meta_box_location.php:93
|
1573 |
msgid "Media Attachment (Edit)"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: core/views/meta_box_location.php:145
|
1577 |
msgid "and"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: core/views/meta_box_location.php:160
|
1581 |
msgid "Add rule group"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: core/views/meta_box_options.php:25
|
|
|
|
|
|
|
|
|
1585 |
msgid "Order No."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: core/views/meta_box_options.php:26
|
1589 |
msgid "Field groups are created in order <br />from lowest to highest"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: core/views/meta_box_options.php:42
|
1593 |
msgid "Position"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: core/views/meta_box_options.php:52
|
1597 |
msgid "Normal"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: core/views/meta_box_options.php:53
|
1601 |
msgid "Side"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: core/views/meta_box_options.php:62
|
1605 |
msgid "Style"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: core/views/meta_box_options.php:72
|
1609 |
msgid "No Metabox"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: core/views/meta_box_options.php:73
|
1613 |
msgid "Standard Metabox"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: core/views/meta_box_options.php:82
|
1617 |
msgid "Hide on screen"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: core/views/meta_box_options.php:83
|
1621 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: core/views/meta_box_options.php:84
|
1625 |
msgid ""
|
1626 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1627 |
"options will be used. (the one with the lowest order number)"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: core/views/meta_box_options.php:94
|
1631 |
msgid "Content Editor"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: core/views/meta_box_options.php:95
|
1635 |
msgid "Excerpt"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: core/views/meta_box_options.php:97
|
1639 |
msgid "Discussion"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: core/views/meta_box_options.php:98
|
1643 |
msgid "Comments"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: core/views/meta_box_options.php:99
|
1647 |
msgid "Revisions"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: core/views/meta_box_options.php:100
|
1651 |
msgid "Slug"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: core/views/meta_box_options.php:101
|
1655 |
msgid "Author"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: core/views/meta_box_options.php:102
|
1659 |
msgid "Format"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: core/views/meta_box_options.php:104
|
|
|
|
|
|
|
|
|
1663 |
msgid "Categories"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: core/views/meta_box_options.php:105
|
1667 |
msgid "Tags"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: core/views/meta_box_options.php:106
|
1671 |
msgid "Send Trackbacks"
|
1672 |
msgstr ""
|
readme.txt
CHANGED
@@ -101,6 +101,30 @@ http://support.advancedcustomfields.com/
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
= 4.1.6 =
|
105 |
* General: Improved load_value function to better handle false and default values
|
106 |
* Number field: Added new options for min, max and step - http://support.advancedcustomfields.com/discussion/6263/fork-on-numbers-field
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 4.1.8.1 =
|
105 |
+
* Select field: Revert choices logic - http://support.advancedcustomfields.com/forums/topic/select-field-label-cut-off-at/#post-529
|
106 |
+
* CSS: Revert metabox CSS - http://support.advancedcustomfields.com/forums/topic/standard-metabox-margins-reversed/#post-456
|
107 |
+
* Core: Fixed save_post conflict with Shopp plugin - http://support.advancedcustomfields.com/forums/topic/no-data-is-saving-with-shopp-acf-4-1-8/
|
108 |
+
|
109 |
+
= 4.1.8 =
|
110 |
+
* Core: Fix issue with cache $found variable preventing values from being loaded
|
111 |
+
* Select field: Improve choices textarea detection - http://old.support.advancedcustomfields.com/discussion/6598/select-on-repeater-field
|
112 |
+
* Language: Added Swedish translation - https://github.com/elliotcondon/acf/pull/93
|
113 |
+
* Language: Updated Russian translation - https://github.com/elliotcondon/acf/pull/94
|
114 |
+
|
115 |
+
= 4.1.7 =
|
116 |
+
* Language: Added Russian translation - Thanks to Alex Torscho
|
117 |
+
* Core: Improved the save_post function to compare post_id and only run once.
|
118 |
+
* Core: Improved cache handling
|
119 |
+
* Number field: Fixed step size decimal bug
|
120 |
+
* Radio button field: Add option for 'other' and to also update field choices
|
121 |
+
* Image / File field: Updated JS to add multiple items to the correct sub field - http://support.advancedcustomfields.com/discussion/6391/repeater-with-images-bug
|
122 |
+
* JS: Remove redundant return ajax value - http://support.advancedcustomfields.com/discussion/6375/js-syntax-error-in-ie
|
123 |
+
* Add-ons page: fix JS issue - http://support.advancedcustomfields.com/discussion/6405/add-ons-page-div-height-problem
|
124 |
+
* Options Page: Fixed issue with load_value preventing the options page using default values - http://support.advancedcustomfields.com/discussion/4612/true-false-field-allow-default-value
|
125 |
+
* AJAX: Fix chrome bug - untick category - http://support.advancedcustomfields.com/discussion/6419/disabling-a-category-still-shows-fields
|
126 |
+
* JS: Fixed multiple Internet Explorer issues
|
127 |
+
|
128 |
= 4.1.6 =
|
129 |
* General: Improved load_value function to better handle false and default values
|
130 |
* Number field: Added new options for min, max and step - http://support.advancedcustomfields.com/discussion/6263/fork-on-numbers-field
|