Version Description
- [Added] Add basic support for WPML - duplicate field groups, pages and posts for each language without corrupting ACF data!
- [Fixed] Fix date picker save null - http://support.advancedcustomfields.com/discussion/2844/bug-with-the-date-picker
- [Fixed] Fix color picker save null - http://support.advancedcustomfields.com/discussion/2683/allow-null-on-colour-pickers#Item_1
- [Fixed] Fix image object null result - http://support.advancedcustomfields.com/discussion/2852/3.3.8-image-field-image-object-always-returns-true-
- [Updated] Update Japanese translation - http://support.advancedcustomfields.com/discussion/comment/7384#Comment_7384
- [Added] WYSIWYG field option - disable "the_content" filter to allow for compatibility issues with plugins / themes - http://support.advancedcustomfields.com/discussion/comment/7020#Comment_7020
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 3.3.9 |
Comparing to | |
See all releases |
Code changes from version 3.3.8 to 3.3.9
- acf.php +94 -14
- core/api.php +9 -2
- core/controllers/field_groups.php +1 -50
- core/controllers/input.php +1 -0
- core/controllers/settings.php +11 -11
- core/controllers/upgrade.php +27 -23
- core/fields/acf_field.php +4 -0
- core/fields/color_picker.php +1 -1
- core/fields/date_picker/date_picker.php +12 -1
- core/fields/image.php +7 -1
- core/fields/post_object.php +6 -1
- core/fields/relationship.php +45 -9
- core/fields/wysiwyg.php +48 -5
- css/input.css +17 -0
- js/input-actions.js +108 -25
- js/input-ajax.js +15 -3
- lang/acf-ja.mo +0 -0
- lang/acf-ja.po +918 -604
- readme.txt +8 -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: 3.3.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -47,7 +47,7 @@ class Acf
|
|
47 |
// vars
|
48 |
$this->path = plugin_dir_path(__FILE__);
|
49 |
$this->dir = plugins_url('',__FILE__);
|
50 |
-
$this->version = '3.3.
|
51 |
$this->upgrade_version = '3.3.3'; // this is the latest version which requires an upgrade
|
52 |
$this->cache = array(); // basic array cache to hold data throughout the page load
|
53 |
|
@@ -411,7 +411,7 @@ class Acf
|
|
411 |
*
|
412 |
* get_field_groups
|
413 |
*
|
414 |
-
* This function returns an array of post objects found in the
|
415 |
* register_field_group calls.
|
416 |
*
|
417 |
* @author Elliot Condon
|
@@ -432,12 +432,14 @@ class Acf
|
|
432 |
$acfs = array();
|
433 |
|
434 |
// get acf's
|
435 |
-
$result =
|
436 |
-
'numberposts' =>
|
437 |
-
'post_type'
|
438 |
-
'
|
439 |
-
'order'
|
|
|
440 |
));
|
|
|
441 |
|
442 |
// populate acfs
|
443 |
if($result)
|
@@ -466,6 +468,8 @@ class Acf
|
|
466 |
{
|
467 |
return false;
|
468 |
}
|
|
|
|
|
469 |
return $acfs;
|
470 |
}
|
471 |
|
@@ -526,6 +530,10 @@ class Acf
|
|
526 |
if(get_post_status($post_id) != "trash")
|
527 |
{
|
528 |
$field = get_post_meta($post_id, $field_name, true);
|
|
|
|
|
|
|
|
|
529 |
}
|
530 |
|
531 |
// field could be registered via php, and not in db at all!
|
@@ -618,25 +626,43 @@ class Acf
|
|
618 |
|
619 |
function get_acf_location($post_id)
|
620 |
{
|
621 |
-
//
|
622 |
$return = array(
|
623 |
'rules' => array(),
|
624 |
-
'allorany' =>
|
625 |
);
|
626 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
// get all fields
|
628 |
$rules = get_post_meta($post_id, 'rule', false);
|
629 |
|
|
|
630 |
if($rules)
|
631 |
{
|
|
|
632 |
foreach($rules as $rule)
|
633 |
{
|
|
|
|
|
|
|
|
|
634 |
$return['rules'][$rule['order_no']] = $rule;
|
635 |
}
|
636 |
}
|
637 |
|
|
|
|
|
638 |
ksort($return['rules']);
|
639 |
|
|
|
640 |
// return fields
|
641 |
return $return;
|
642 |
|
@@ -657,11 +683,32 @@ class Acf
|
|
657 |
|
658 |
// defaults
|
659 |
$options = array(
|
660 |
-
'position' =>
|
661 |
-
'layout' =>
|
662 |
-
'hide_on_screen' =>
|
663 |
);
|
664 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
|
666 |
// return
|
667 |
return $options;
|
@@ -870,14 +917,25 @@ class Acf
|
|
870 |
if(isset($_POST['post_category']) && $_POST['post_category'] != 'false') $overrides['post_category'] = $_POST['post_category'];
|
871 |
if(isset($_POST['post_format']) && $_POST['post_format'] != 'false') $overrides['post_format'] = $_POST['post_format'];
|
872 |
if(isset($_POST['taxonomy']) && $_POST['taxonomy'] != 'false') $overrides['taxonomy'] = $_POST['taxonomy'];
|
|
|
873 |
}
|
874 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
875 |
// create post object to match against
|
876 |
$post = isset($overrides['post_id']) ? get_post($_POST['post_id']) : false;
|
877 |
|
878 |
// find all acf objects
|
879 |
$acfs = $this->get_field_groups();
|
880 |
|
|
|
881 |
// blank array to hold acfs
|
882 |
$return = array();
|
883 |
|
@@ -1620,6 +1678,28 @@ class Acf
|
|
1620 |
}
|
1621 |
|
1622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1624 |
}
|
1625 |
?>
|
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: 3.3.9
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
47 |
// vars
|
48 |
$this->path = plugin_dir_path(__FILE__);
|
49 |
$this->dir = plugins_url('',__FILE__);
|
50 |
+
$this->version = '3.3.9';
|
51 |
$this->upgrade_version = '3.3.3'; // this is the latest version which requires an upgrade
|
52 |
$this->cache = array(); // basic array cache to hold data throughout the page load
|
53 |
|
411 |
*
|
412 |
* get_field_groups
|
413 |
*
|
414 |
+
* This function returns an array of post objects found in the get_posts and the
|
415 |
* register_field_group calls.
|
416 |
*
|
417 |
* @author Elliot Condon
|
432 |
$acfs = array();
|
433 |
|
434 |
// get acf's
|
435 |
+
$result = get_posts(array(
|
436 |
+
'numberposts' => -1,
|
437 |
+
'post_type' => 'acf',
|
438 |
+
'orderby' => 'menu_order title',
|
439 |
+
'order' => 'asc',
|
440 |
+
'suppress_filters' => false,
|
441 |
));
|
442 |
+
|
443 |
|
444 |
// populate acfs
|
445 |
if($result)
|
468 |
{
|
469 |
return false;
|
470 |
}
|
471 |
+
|
472 |
+
|
473 |
return $acfs;
|
474 |
}
|
475 |
|
530 |
if(get_post_status($post_id) != "trash")
|
531 |
{
|
532 |
$field = get_post_meta($post_id, $field_name, true);
|
533 |
+
|
534 |
+
|
535 |
+
// if field group was duplicated, it may now be a serialized string!
|
536 |
+
$field = maybe_unserialize($field);
|
537 |
}
|
538 |
|
539 |
// field could be registered via php, and not in db at all!
|
626 |
|
627 |
function get_acf_location($post_id)
|
628 |
{
|
629 |
+
// defaults
|
630 |
$return = array(
|
631 |
'rules' => array(),
|
632 |
+
'allorany' => 'all',
|
633 |
);
|
634 |
|
635 |
+
|
636 |
+
// vars
|
637 |
+
$allorany = get_post_meta($post_id, 'allorany', true);
|
638 |
+
if( $allorany )
|
639 |
+
{
|
640 |
+
$return['allorany'] = $allorany;
|
641 |
+
}
|
642 |
+
|
643 |
+
|
644 |
// get all fields
|
645 |
$rules = get_post_meta($post_id, 'rule', false);
|
646 |
|
647 |
+
|
648 |
if($rules)
|
649 |
{
|
650 |
+
|
651 |
foreach($rules as $rule)
|
652 |
{
|
653 |
+
// if field group was duplicated, it may now be a serialized string!
|
654 |
+
$rule = maybe_unserialize($rule);
|
655 |
+
|
656 |
+
|
657 |
$return['rules'][$rule['order_no']] = $rule;
|
658 |
}
|
659 |
}
|
660 |
|
661 |
+
|
662 |
+
// sort
|
663 |
ksort($return['rules']);
|
664 |
|
665 |
+
|
666 |
// return fields
|
667 |
return $return;
|
668 |
|
683 |
|
684 |
// defaults
|
685 |
$options = array(
|
686 |
+
'position' => 'normal',
|
687 |
+
'layout' => 'default',
|
688 |
+
'hide_on_screen' => array(),
|
689 |
);
|
690 |
+
|
691 |
+
|
692 |
+
// vars
|
693 |
+
$position = get_post_meta($post_id, 'position', true);
|
694 |
+
if( $position )
|
695 |
+
{
|
696 |
+
$options['position'] = $position;
|
697 |
+
}
|
698 |
+
|
699 |
+
$layout = get_post_meta($post_id, 'layout', true);
|
700 |
+
if( $layout )
|
701 |
+
{
|
702 |
+
$options['layout'] = $layout;
|
703 |
+
}
|
704 |
+
|
705 |
+
$hide_on_screen = get_post_meta($post_id, 'hide_on_screen', true);
|
706 |
+
if( $hide_on_screen )
|
707 |
+
{
|
708 |
+
$hide_on_screen = maybe_unserialize($hide_on_screen);
|
709 |
+
$options['hide_on_screen'] = $hide_on_screen;
|
710 |
+
}
|
711 |
+
|
712 |
|
713 |
// return
|
714 |
return $options;
|
917 |
if(isset($_POST['post_category']) && $_POST['post_category'] != 'false') $overrides['post_category'] = $_POST['post_category'];
|
918 |
if(isset($_POST['post_format']) && $_POST['post_format'] != 'false') $overrides['post_format'] = $_POST['post_format'];
|
919 |
if(isset($_POST['taxonomy']) && $_POST['taxonomy'] != 'false') $overrides['taxonomy'] = $_POST['taxonomy'];
|
920 |
+
if(isset($_POST['lang']) && $_POST['lang'] != 'false') $overrides['lang'] = $_POST['lang'];
|
921 |
}
|
922 |
|
923 |
+
|
924 |
+
// WPML
|
925 |
+
if( isset($overrides['lang']) )
|
926 |
+
{
|
927 |
+
global $sitepress;
|
928 |
+
$sitepress->switch_lang( $overrides['lang'] );
|
929 |
+
}
|
930 |
+
|
931 |
+
|
932 |
// create post object to match against
|
933 |
$post = isset($overrides['post_id']) ? get_post($_POST['post_id']) : false;
|
934 |
|
935 |
// find all acf objects
|
936 |
$acfs = $this->get_field_groups();
|
937 |
|
938 |
+
|
939 |
// blank array to hold acfs
|
940 |
$return = array();
|
941 |
|
1678 |
}
|
1679 |
|
1680 |
|
1681 |
+
/*
|
1682 |
+
* get_post_language
|
1683 |
+
*
|
1684 |
+
* @description: finds the translation code for a post
|
1685 |
+
* @since 3.3.9
|
1686 |
+
* @created: 17/08/12
|
1687 |
+
*/
|
1688 |
|
1689 |
+
/*function get_post_language( $post )
|
1690 |
+
{
|
1691 |
+
// global
|
1692 |
+
global $wpdb;
|
1693 |
+
|
1694 |
+
|
1695 |
+
// vars
|
1696 |
+
$table = $wpdb->prefix.'icl_translations';
|
1697 |
+
$element_type = 'post_' . $post->post_type;
|
1698 |
+
$element_id = $post->ID;
|
1699 |
+
|
1700 |
+
$lang = $wpdb->get_var("SELECT language_code FROM $table WHERE element_type = '$element_type' AND element_id = '$element_id'");
|
1701 |
+
|
1702 |
+
return ' (' . $lang . ')';
|
1703 |
+
}*/
|
1704 |
}
|
1705 |
?>
|
core/api.php
CHANGED
@@ -357,17 +357,24 @@ function acf_register_field_group($array)
|
|
357 |
{
|
358 |
$array = array_merge($array, $GLOBALS['acf_register_field_group']);
|
359 |
|
360 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
// Obtain a list of columns
|
362 |
foreach ($array as $key => $row) {
|
363 |
$menu_order[$key] = $row['menu_order'];
|
|
|
364 |
}
|
365 |
|
366 |
// Sort the array with menu_order ascending
|
367 |
// Add $array as the last parameter, to sort by the common key
|
368 |
if(isset($menu_order))
|
369 |
{
|
370 |
-
array_multisort($menu_order, SORT_ASC, $array);
|
371 |
}
|
372 |
|
373 |
|
357 |
{
|
358 |
$array = array_merge($array, $GLOBALS['acf_register_field_group']);
|
359 |
|
360 |
+
if( empty($GLOBALS['acf_register_field_group']) )
|
361 |
+
{
|
362 |
+
return $array;
|
363 |
+
}
|
364 |
+
|
365 |
+
|
366 |
+
// order field groups based on menu_order, title
|
367 |
// Obtain a list of columns
|
368 |
foreach ($array as $key => $row) {
|
369 |
$menu_order[$key] = $row['menu_order'];
|
370 |
+
$title[$key] = $row['title'];
|
371 |
}
|
372 |
|
373 |
// Sort the array with menu_order ascending
|
374 |
// Add $array as the last parameter, to sort by the common key
|
375 |
if(isset($menu_order))
|
376 |
{
|
377 |
+
array_multisort($menu_order, SORT_ASC, $title, SORT_ASC, $array);
|
378 |
}
|
379 |
|
380 |
|
core/controllers/field_groups.php
CHANGED
@@ -51,10 +51,6 @@ class acf_field_groups
|
|
51 |
// validate page
|
52 |
if( ! $this->validate_page() ) return;
|
53 |
|
54 |
-
|
55 |
-
// actions
|
56 |
-
//add_filter('pre_get_posts', array($this, 'pre_get_posts'), 1);
|
57 |
-
|
58 |
add_action('admin_print_scripts', array($this,'admin_print_scripts'));
|
59 |
add_action('admin_print_styles', array($this,'admin_print_styles'));
|
60 |
add_action('admin_footer', array($this,'admin_footer'));
|
@@ -94,7 +90,7 @@ class acf_field_groups
|
|
94 |
}
|
95 |
|
96 |
|
97 |
-
if( isset($_GET['page'])
|
98 |
{
|
99 |
$return = false;
|
100 |
}
|
@@ -117,9 +113,6 @@ class acf_field_groups
|
|
117 |
|
118 |
function admin_print_scripts()
|
119 |
{
|
120 |
-
// validate page
|
121 |
-
if( ! $this->validate_page() ) return;
|
122 |
-
|
123 |
wp_enqueue_script( 'jquery' );
|
124 |
wp_enqueue_script( 'thickbox' );
|
125 |
}
|
@@ -135,40 +128,10 @@ class acf_field_groups
|
|
135 |
|
136 |
function admin_print_styles()
|
137 |
{
|
138 |
-
// validate page
|
139 |
-
if( ! $this->validate_page() ) return;
|
140 |
-
|
141 |
wp_enqueue_style( 'thickbox' );
|
142 |
}
|
143 |
|
144 |
|
145 |
-
/*
|
146 |
-
* pre_get_posts
|
147 |
-
*
|
148 |
-
* @description:
|
149 |
-
* @since 3.0.6
|
150 |
-
* @created: 23/06/12
|
151 |
-
*/
|
152 |
-
|
153 |
-
function pre_get_posts($query)
|
154 |
-
{
|
155 |
-
|
156 |
-
switch ( $query->query_vars['post_type'] )
|
157 |
-
{
|
158 |
-
case 'acf':
|
159 |
-
|
160 |
-
//$query->set('posts_per_page', 1);
|
161 |
-
//$query->set('paged', 1);
|
162 |
-
break;
|
163 |
-
|
164 |
-
default:
|
165 |
-
break;
|
166 |
-
}
|
167 |
-
|
168 |
-
return $query;
|
169 |
-
}
|
170 |
-
|
171 |
-
|
172 |
/*
|
173 |
* acf_edit_columns
|
174 |
*
|
@@ -178,15 +141,6 @@ class acf_field_groups
|
|
178 |
|
179 |
function acf_edit_columns( $columns )
|
180 |
{
|
181 |
-
/*
|
182 |
-
$columns = array(
|
183 |
-
'title' => __("Title", 'acf'),
|
184 |
-
'fields' => __("Fields", 'acf'),
|
185 |
-
//'order' => __("Order", 'acf'),
|
186 |
-
'position' => __("Position", 'acf'),
|
187 |
-
'style' => __("Style", 'acf'),
|
188 |
-
);*/
|
189 |
-
|
190 |
$columns['fields'] = __("Fields", 'acf');
|
191 |
|
192 |
return $columns;
|
@@ -270,9 +224,6 @@ class acf_field_groups
|
|
270 |
|
271 |
function admin_footer()
|
272 |
{
|
273 |
-
// validate page
|
274 |
-
if( ! $this->validate_page() ) return;
|
275 |
-
|
276 |
?>
|
277 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->parent->dir; ?>/css/global.css" />
|
278 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->parent->dir; ?>/css/acf.css" />
|
51 |
// validate page
|
52 |
if( ! $this->validate_page() ) return;
|
53 |
|
|
|
|
|
|
|
|
|
54 |
add_action('admin_print_scripts', array($this,'admin_print_scripts'));
|
55 |
add_action('admin_print_styles', array($this,'admin_print_styles'));
|
56 |
add_action('admin_footer', array($this,'admin_footer'));
|
90 |
}
|
91 |
|
92 |
|
93 |
+
if( isset($_GET['page']) )
|
94 |
{
|
95 |
$return = false;
|
96 |
}
|
113 |
|
114 |
function admin_print_scripts()
|
115 |
{
|
|
|
|
|
|
|
116 |
wp_enqueue_script( 'jquery' );
|
117 |
wp_enqueue_script( 'thickbox' );
|
118 |
}
|
128 |
|
129 |
function admin_print_styles()
|
130 |
{
|
|
|
|
|
|
|
131 |
wp_enqueue_style( 'thickbox' );
|
132 |
}
|
133 |
|
134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
/*
|
136 |
* acf_edit_columns
|
137 |
*
|
141 |
|
142 |
function acf_edit_columns( $columns )
|
143 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
$columns['fields'] = __("Fields", 'acf');
|
145 |
|
146 |
return $columns;
|
224 |
|
225 |
function admin_footer()
|
226 |
{
|
|
|
|
|
|
|
227 |
?>
|
228 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->parent->dir; ?>/css/global.css" />
|
229 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->parent->dir; ?>/css/acf.css" />
|
core/controllers/input.php
CHANGED
@@ -180,6 +180,7 @@ class acf_input
|
|
180 |
|
181 |
// get acf's
|
182 |
$acfs = $this->parent->get_field_groups();
|
|
|
183 |
if($acfs)
|
184 |
{
|
185 |
foreach($acfs as $acf)
|
180 |
|
181 |
// get acf's
|
182 |
$acfs = $this->parent->get_field_groups();
|
183 |
+
|
184 |
if($acfs)
|
185 |
{
|
186 |
foreach($acfs as $acf)
|
core/controllers/settings.php
CHANGED
@@ -187,11 +187,11 @@ class acf_settings
|
|
187 |
function html_index()
|
188 |
{
|
189 |
// vars
|
190 |
-
$acfs =
|
191 |
-
'numberposts' =>
|
192 |
-
'post_type'
|
193 |
-
'
|
194 |
-
'order' => '
|
195 |
));
|
196 |
|
197 |
// blank array to hold acfs
|
@@ -489,12 +489,12 @@ class acf_settings
|
|
489 |
|
490 |
if(isset($_POST['acf_posts']))
|
491 |
{
|
492 |
-
$acfs =
|
493 |
-
'numberposts' =>
|
494 |
-
'post_type'
|
495 |
-
'
|
496 |
-
'order'
|
497 |
-
'include'
|
498 |
));
|
499 |
}
|
500 |
if($acfs)
|
187 |
function html_index()
|
188 |
{
|
189 |
// vars
|
190 |
+
$acfs = get_posts(array(
|
191 |
+
'numberposts' => -1,
|
192 |
+
'post_type' => 'acf',
|
193 |
+
'orderby' => 'menu_order title',
|
194 |
+
'order' => 'asc',
|
195 |
));
|
196 |
|
197 |
// blank array to hold acfs
|
489 |
|
490 |
if(isset($_POST['acf_posts']))
|
491 |
{
|
492 |
+
$acfs = get_posts(array(
|
493 |
+
'numberposts' => -1,
|
494 |
+
'post_type' => 'acf',
|
495 |
+
'orderby' => 'menu_order title',
|
496 |
+
'order' => 'asc',
|
497 |
+
'include' => $_POST['acf_posts'],
|
498 |
));
|
499 |
}
|
500 |
if($acfs)
|
core/controllers/upgrade.php
CHANGED
@@ -229,11 +229,12 @@ class acf_upgrade
|
|
229 |
// upgrade options first as "field_group_layout" will cause get_fields to fail!
|
230 |
|
231 |
// get acf's
|
232 |
-
$acfs =
|
233 |
-
'numberposts' =>
|
234 |
-
'post_type'
|
235 |
-
'
|
236 |
-
'order'
|
|
|
237 |
));
|
238 |
|
239 |
if($acfs)
|
@@ -284,11 +285,12 @@ class acf_upgrade
|
|
284 |
case '3.0.0 (step 2)':
|
285 |
|
286 |
// get acf's
|
287 |
-
$acfs =
|
288 |
-
'numberposts' =>
|
289 |
-
'post_type'
|
290 |
-
'
|
291 |
-
'order'
|
|
|
292 |
));
|
293 |
|
294 |
if($acfs)
|
@@ -599,11 +601,12 @@ class acf_upgrade
|
|
599 |
|
600 |
|
601 |
// get acf's
|
602 |
-
$
|
603 |
-
'numberposts' =>
|
604 |
-
'post_type'
|
605 |
-
'
|
606 |
-
'order'
|
|
|
607 |
));
|
608 |
|
609 |
|
@@ -611,9 +614,9 @@ class acf_upgrade
|
|
611 |
|
612 |
|
613 |
// populate acfs
|
614 |
-
if($
|
615 |
{
|
616 |
-
foreach($
|
617 |
{
|
618 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
619 |
|
@@ -664,11 +667,12 @@ class acf_upgrade
|
|
664 |
|
665 |
|
666 |
// get acf's
|
667 |
-
$acfs =
|
668 |
-
'numberposts' =>
|
669 |
-
'post_type'
|
670 |
-
'
|
671 |
-
'order' =>
|
|
|
672 |
));
|
673 |
|
674 |
// populate acfs
|
@@ -690,7 +694,7 @@ class acf_upgrade
|
|
690 |
}
|
691 |
|
692 |
|
693 |
-
if( $field['taxonomy'] )
|
694 |
{
|
695 |
foreach( $field['taxonomy'] as $k => $v )
|
696 |
{
|
229 |
// upgrade options first as "field_group_layout" will cause get_fields to fail!
|
230 |
|
231 |
// get acf's
|
232 |
+
$acfs = get_posts(array(
|
233 |
+
'numberposts' => -1,
|
234 |
+
'post_type' => 'acf',
|
235 |
+
'orderby' => 'menu_order title',
|
236 |
+
'order' => 'asc',
|
237 |
+
'suppress_filters' => false,
|
238 |
));
|
239 |
|
240 |
if($acfs)
|
285 |
case '3.0.0 (step 2)':
|
286 |
|
287 |
// get acf's
|
288 |
+
$acfs = get_posts(array(
|
289 |
+
'numberposts' => -1,
|
290 |
+
'post_type' => 'acf',
|
291 |
+
'orderby' => 'menu_order title',
|
292 |
+
'order' => 'asc',
|
293 |
+
'suppress_filters' => false,
|
294 |
));
|
295 |
|
296 |
if($acfs)
|
601 |
|
602 |
|
603 |
// get acf's
|
604 |
+
$acfs = get_posts(array(
|
605 |
+
'numberposts' => -1,
|
606 |
+
'post_type' => 'acf',
|
607 |
+
'orderby' => 'menu_order title',
|
608 |
+
'order' => 'asc',
|
609 |
+
'suppress_filters' => false,
|
610 |
));
|
611 |
|
612 |
|
614 |
|
615 |
|
616 |
// populate acfs
|
617 |
+
if($acfs)
|
618 |
{
|
619 |
+
foreach($acfs as $acf)
|
620 |
{
|
621 |
$show_on_page = get_post_meta($acf->ID, 'show_on_page', true) ? get_post_meta($acf->ID, 'show_on_page', true) : array();
|
622 |
|
667 |
|
668 |
|
669 |
// get acf's
|
670 |
+
$acfs = get_posts(array(
|
671 |
+
'numberposts' => -1,
|
672 |
+
'post_type' => 'acf',
|
673 |
+
'orderby' => 'menu_order title',
|
674 |
+
'order' => 'asc',
|
675 |
+
'suppress_filters' => false,
|
676 |
));
|
677 |
|
678 |
// populate acfs
|
694 |
}
|
695 |
|
696 |
|
697 |
+
if( is_array($field['taxonomy']) )
|
698 |
{
|
699 |
foreach( $field['taxonomy'] as $k => $v )
|
700 |
{
|
core/fields/acf_field.php
CHANGED
@@ -202,6 +202,10 @@ class acf_Field
|
|
202 |
}
|
203 |
|
204 |
}
|
|
|
|
|
|
|
|
|
205 |
|
206 |
|
207 |
return $value;
|
202 |
}
|
203 |
|
204 |
}
|
205 |
+
|
206 |
+
|
207 |
+
// if value was duplicated, it may now be a serialized string!
|
208 |
+
$value = maybe_unserialize($value);
|
209 |
|
210 |
|
211 |
return $value;
|
core/fields/color_picker.php
CHANGED
@@ -61,7 +61,7 @@ class acf_Color_picker extends acf_Field
|
|
61 |
function create_field($field)
|
62 |
{
|
63 |
// defaults
|
64 |
-
if($field['value'] == "") $field['value'] = '#ffffff';
|
65 |
|
66 |
// html
|
67 |
echo '<input type="text" value="' . $field['value'] . '" class="acf_color_picker" name="' . $field['name'] . '" id="' . $field['name'] . '" />';
|
61 |
function create_field($field)
|
62 |
{
|
63 |
// defaults
|
64 |
+
//if($field['value'] == "") $field['value'] = '#ffffff';
|
65 |
|
66 |
// html
|
67 |
echo '<input type="text" value="' . $field['value'] . '" class="acf_color_picker" name="' . $field['name'] . '" id="' . $field['name'] . '" />';
|
core/fields/date_picker/date_picker.php
CHANGED
@@ -59,7 +59,18 @@ class acf_Date_picker extends acf_Field
|
|
59 |
);
|
60 |
|
61 |
$field = array_merge($defaults, $field);
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
// html
|
65 |
echo '<input type="hidden" value="' . $field['value'] . '" name="' . $field['name'] . '" class="acf-hidden-datepicker" />';
|
59 |
);
|
60 |
|
61 |
$field = array_merge($defaults, $field);
|
62 |
+
|
63 |
+
|
64 |
+
// make sure it's not blank
|
65 |
+
if( !$field['date_format'] )
|
66 |
+
{
|
67 |
+
$field['date_format'] = 'yymmdd';
|
68 |
+
}
|
69 |
+
if( !$field['display_format'] )
|
70 |
+
{
|
71 |
+
$field['display_format'] = 'dd/mm/yy';
|
72 |
+
}
|
73 |
+
|
74 |
|
75 |
// html
|
76 |
echo '<input type="hidden" value="' . $field['value'] . '" name="' . $field['name'] . '" class="acf-hidden-datepicker" />';
|
core/fields/image.php
CHANGED
@@ -612,10 +612,16 @@ class acf_Image extends acf_Field
|
|
612 |
{
|
613 |
// vars
|
614 |
$format = isset($field['save_format']) ? $field['save_format'] : 'url';
|
615 |
-
|
616 |
$value = parent::get_value($post_id, $field);
|
617 |
|
618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
// format
|
620 |
if($format == 'url')
|
621 |
{
|
612 |
{
|
613 |
// vars
|
614 |
$format = isset($field['save_format']) ? $field['save_format'] : 'url';
|
|
|
615 |
$value = parent::get_value($post_id, $field);
|
616 |
|
617 |
|
618 |
+
// validate
|
619 |
+
if( !$value )
|
620 |
+
{
|
621 |
+
return false;
|
622 |
+
}
|
623 |
+
|
624 |
+
|
625 |
// format
|
626 |
if($format == 'url')
|
627 |
{
|
core/fields/post_object.php
CHANGED
@@ -155,7 +155,12 @@ class acf_Post_object extends acf_Field
|
|
155 |
{
|
156 |
$title .= " ($post->post_status)";
|
157 |
}
|
158 |
-
|
|
|
|
|
|
|
|
|
|
|
159 |
|
160 |
// add to choices
|
161 |
if( count($field['post_type']) == 1 )
|
155 |
{
|
156 |
$title .= " ($post->post_status)";
|
157 |
}
|
158 |
+
|
159 |
+
// WPML
|
160 |
+
if( defined('ICL_LANGUAGE_CODE') )
|
161 |
+
{
|
162 |
+
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
163 |
+
}
|
164 |
|
165 |
// add to choices
|
166 |
if( count($field['post_type']) == 1 )
|
core/fields/relationship.php
CHANGED
@@ -36,7 +36,6 @@ class acf_Relationship extends acf_Field
|
|
36 |
|
37 |
function acf_get_relationship_results()
|
38 |
{
|
39 |
-
|
40 |
// vars
|
41 |
$options = array(
|
42 |
'post_type' => '',
|
@@ -47,10 +46,11 @@ class acf_Relationship extends acf_Field
|
|
47 |
'order' => 'ASC',
|
48 |
'post_status' => array('publish', 'private', 'draft', 'inherit', 'future'),
|
49 |
'suppress_filters' => false,
|
50 |
-
's' => ''
|
|
|
51 |
);
|
52 |
$ajax = isset( $_POST['action'] ) ? true : false;
|
53 |
-
|
54 |
|
55 |
// override options with posted values
|
56 |
if( $ajax )
|
@@ -59,6 +59,15 @@ class acf_Relationship extends acf_Field
|
|
59 |
}
|
60 |
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
// convert types
|
63 |
$options['post_type'] = explode(',', $options['post_type']);
|
64 |
$options['taxonomy'] = explode(',', $options['taxonomy']);
|
@@ -127,8 +136,21 @@ class acf_Relationship extends acf_Field
|
|
127 |
{
|
128 |
foreach( $posts as $post )
|
129 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
// find title. Could use get_the_title, but that uses get_post(), so I think this uses less Memory
|
131 |
-
$title
|
132 |
|
133 |
// status
|
134 |
if($post->post_status != "publish")
|
@@ -136,7 +158,7 @@ class acf_Relationship extends acf_Field
|
|
136 |
$title .= " ($post->post_status)";
|
137 |
}
|
138 |
|
139 |
-
echo '<li><a href="javascript:;" data-post_id="' . $post->ID . '">' . $title .
|
140 |
}
|
141 |
}
|
142 |
|
@@ -213,7 +235,7 @@ class acf_Relationship extends acf_Field
|
|
213 |
|
214 |
|
215 |
?>
|
216 |
-
<div class="acf_relationship" data-max="<?php echo $field['max']; ?>" data-s="" data-paged="1" data-post_type="<?php echo implode(',', $field['post_type']); ?>" data-taxonomy="<?php echo implode(',', $field['taxonomy']); ?>">
|
217 |
|
218 |
<!-- Hidden Blank default value -->
|
219 |
<input type="hidden" name="<?php echo $field['name']; ?>" value="" />
|
@@ -257,13 +279,25 @@ class acf_Relationship extends acf_Field
|
|
257 |
{
|
258 |
foreach( $field['value'] as $post )
|
259 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
|
261 |
// find title. Could use get_the_title, but that uses get_post(), so I think this uses less Memory
|
262 |
-
$title
|
263 |
-
|
264 |
|
265 |
// status
|
266 |
-
if($post->post_status
|
267 |
{
|
268 |
$title .= " ($post->post_status)";
|
269 |
}
|
@@ -272,6 +306,8 @@ class acf_Relationship extends acf_Field
|
|
272 |
<a href="javascript:;" class="" data-post_id="' . $post->ID . '">' . $title . '<span class="remove"></span></a>
|
273 |
<input type="hidden" name="' . $field['name'] . '[]" value="' . $post->ID . '" />
|
274 |
</li>';
|
|
|
|
|
275 |
}
|
276 |
}
|
277 |
|
36 |
|
37 |
function acf_get_relationship_results()
|
38 |
{
|
|
|
39 |
// vars
|
40 |
$options = array(
|
41 |
'post_type' => '',
|
46 |
'order' => 'ASC',
|
47 |
'post_status' => array('publish', 'private', 'draft', 'inherit', 'future'),
|
48 |
'suppress_filters' => false,
|
49 |
+
's' => '',
|
50 |
+
'lang' => false,
|
51 |
);
|
52 |
$ajax = isset( $_POST['action'] ) ? true : false;
|
53 |
+
|
54 |
|
55 |
// override options with posted values
|
56 |
if( $ajax )
|
59 |
}
|
60 |
|
61 |
|
62 |
+
// WPML
|
63 |
+
if( $options['lang'] )
|
64 |
+
{
|
65 |
+
global $sitepress;
|
66 |
+
|
67 |
+
$sitepress->switch_lang( $options['lang'] );
|
68 |
+
}
|
69 |
+
|
70 |
+
|
71 |
// convert types
|
72 |
$options['post_type'] = explode(',', $options['post_type']);
|
73 |
$options['taxonomy'] = explode(',', $options['taxonomy']);
|
136 |
{
|
137 |
foreach( $posts as $post )
|
138 |
{
|
139 |
+
// right aligned info
|
140 |
+
$title = '<span class="info">';
|
141 |
+
|
142 |
+
$title .= $post->post_type;
|
143 |
+
|
144 |
+
// WPML
|
145 |
+
if( $options['lang'] )
|
146 |
+
{
|
147 |
+
$title .= ' (' . $options['lang'] . ')';
|
148 |
+
}
|
149 |
+
|
150 |
+
$title .= '</span>';
|
151 |
+
|
152 |
// find title. Could use get_the_title, but that uses get_post(), so I think this uses less Memory
|
153 |
+
$title .= apply_filters( 'the_title', $post->post_title, $post->ID );
|
154 |
|
155 |
// status
|
156 |
if($post->post_status != "publish")
|
158 |
$title .= " ($post->post_status)";
|
159 |
}
|
160 |
|
161 |
+
echo '<li><a href="javascript:;" data-post_id="' . $post->ID . '">' . $title . '<span class="add"></span></a></li>';
|
162 |
}
|
163 |
}
|
164 |
|
235 |
|
236 |
|
237 |
?>
|
238 |
+
<div class="acf_relationship" data-max="<?php echo $field['max']; ?>" data-s="" data-paged="1" data-post_type="<?php echo implode(',', $field['post_type']); ?>" data-taxonomy="<?php echo implode(',', $field['taxonomy']); ?>" <?php if( defined('ICL_LANGUAGE_CODE') ){ echo 'data-lang="' . ICL_LANGUAGE_CODE . '"';} ?>">
|
239 |
|
240 |
<!-- Hidden Blank default value -->
|
241 |
<input type="hidden" name="<?php echo $field['name']; ?>" value="" />
|
279 |
{
|
280 |
foreach( $field['value'] as $post )
|
281 |
{
|
282 |
+
|
283 |
+
// right aligned info
|
284 |
+
$title = '<span class="info">';
|
285 |
+
|
286 |
+
$title .= $post->post_type;
|
287 |
+
|
288 |
+
// WPML
|
289 |
+
if( defined('ICL_LANGUAGE_CODE') )
|
290 |
+
{
|
291 |
+
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
292 |
+
}
|
293 |
+
|
294 |
+
$title .= '</span>';
|
295 |
|
296 |
// find title. Could use get_the_title, but that uses get_post(), so I think this uses less Memory
|
297 |
+
$title .= apply_filters( 'the_title', $post->post_title, $post->ID );
|
|
|
298 |
|
299 |
// status
|
300 |
+
if($post->post_status != "publish")
|
301 |
{
|
302 |
$title .= " ($post->post_status)";
|
303 |
}
|
306 |
<a href="javascript:;" class="" data-post_id="' . $post->ID . '">' . $title . '<span class="remove"></span></a>
|
307 |
<input type="hidden" name="' . $field['name'] . '[]" value="' . $post->ID . '" />
|
308 |
</li>';
|
309 |
+
|
310 |
+
|
311 |
}
|
312 |
}
|
313 |
|
core/fields/wysiwyg.php
CHANGED
@@ -66,8 +66,13 @@ class acf_Wysiwyg extends acf_Field
|
|
66 |
function create_options($key, $field)
|
67 |
{
|
68 |
// vars
|
69 |
-
$
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
?>
|
73 |
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
@@ -108,6 +113,27 @@ class acf_Wysiwyg extends acf_Field
|
|
108 |
?>
|
109 |
</td>
|
110 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
<?php
|
112 |
}
|
113 |
|
@@ -125,8 +151,11 @@ class acf_Wysiwyg extends acf_Field
|
|
125 |
function create_field($field)
|
126 |
{
|
127 |
// vars
|
128 |
-
$
|
129 |
-
|
|
|
|
|
|
|
130 |
|
131 |
$id = 'wysiwyg-' . $field['name'];
|
132 |
|
@@ -170,9 +199,23 @@ class acf_Wysiwyg extends acf_Field
|
|
170 |
function get_value_for_api($post_id, $field)
|
171 |
{
|
172 |
// vars
|
|
|
|
|
|
|
|
|
173 |
$value = parent::get_value($post_id, $field);
|
174 |
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
|
177 |
return $value;
|
178 |
}
|
66 |
function create_options($key, $field)
|
67 |
{
|
68 |
// vars
|
69 |
+
$defaults = array(
|
70 |
+
'toolbar' => 'full',
|
71 |
+
'media_upload' => 'yes',
|
72 |
+
'the_content' => 'yes',
|
73 |
+
);
|
74 |
+
|
75 |
+
$field = array_merge($defaults, $field);
|
76 |
|
77 |
?>
|
78 |
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
113 |
?>
|
114 |
</td>
|
115 |
</tr>
|
116 |
+
<tr class="field_option field_option_<?php echo $this->name; ?>">
|
117 |
+
<td class="label">
|
118 |
+
<label><?php _e("Run filter \"the_content\"?",'acf'); ?></label>
|
119 |
+
<p class="description"><?php _e("Enable this filter to use shortcodes within the WYSIWYG field",'acf'); ?></p>
|
120 |
+
<p class="description"><?php _e("Disable this filter if you encounter recursive template problems with plugins / themes",'acf'); ?></p>
|
121 |
+
</td>
|
122 |
+
<td>
|
123 |
+
<?php
|
124 |
+
$this->parent->create_field(array(
|
125 |
+
'type' => 'radio',
|
126 |
+
'name' => 'fields['.$key.'][the_content]',
|
127 |
+
'value' => $field['the_content'],
|
128 |
+
'layout' => 'horizontal',
|
129 |
+
'choices' => array(
|
130 |
+
'yes' => __("Yes",'acf'),
|
131 |
+
'no' => __("No",'acf'),
|
132 |
+
)
|
133 |
+
));
|
134 |
+
?>
|
135 |
+
</td>
|
136 |
+
</tr>
|
137 |
<?php
|
138 |
}
|
139 |
|
151 |
function create_field($field)
|
152 |
{
|
153 |
// vars
|
154 |
+
$defaults = array(
|
155 |
+
'toolbar' => 'full',
|
156 |
+
'media_upload' => 'yes',
|
157 |
+
);
|
158 |
+
$field = array_merge($defaults, $field);
|
159 |
|
160 |
$id = 'wysiwyg-' . $field['name'];
|
161 |
|
199 |
function get_value_for_api($post_id, $field)
|
200 |
{
|
201 |
// vars
|
202 |
+
$defaults = array(
|
203 |
+
'the_content' => 'yes',
|
204 |
+
);
|
205 |
+
$field = array_merge($defaults, $field);
|
206 |
$value = parent::get_value($post_id, $field);
|
207 |
|
208 |
+
|
209 |
+
// filter
|
210 |
+
if( $field['the_content'] == 'yes' )
|
211 |
+
{
|
212 |
+
$value = apply_filters('the_content',$value);
|
213 |
+
}
|
214 |
+
else
|
215 |
+
{
|
216 |
+
$value = wpautop( $value );
|
217 |
+
}
|
218 |
+
|
219 |
|
220 |
return $value;
|
221 |
}
|
css/input.css
CHANGED
@@ -628,6 +628,23 @@ ul.checkbox_list {
|
|
628 |
text-decoration: none;
|
629 |
}
|
630 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
.acf_relationship .relationship_list li a:hover,
|
632 |
.acf_relationship .relationship_list li a:focus {
|
633 |
background: #eaf2fa;
|
628 |
text-decoration: none;
|
629 |
}
|
630 |
|
631 |
+
.acf_relationship .relationship_list li a .info {
|
632 |
+
color: #CCC;
|
633 |
+
text-transform: uppercase;
|
634 |
+
float: right;
|
635 |
+
font-size: 11px;
|
636 |
+
}
|
637 |
+
|
638 |
+
.acf_relationship .relationship_list li:hover a .info {
|
639 |
+
padding-right: 24px;
|
640 |
+
color: #999;
|
641 |
+
}
|
642 |
+
|
643 |
+
.acf_relationship .relationship_list li.hide:hover a .info {
|
644 |
+
padding-right: 0;
|
645 |
+
color: #CCC;
|
646 |
+
}
|
647 |
+
|
648 |
.acf_relationship .relationship_list li a:hover,
|
649 |
.acf_relationship .relationship_list li a:focus {
|
650 |
background: #eaf2fa;
|
js/input-actions.js
CHANGED
@@ -250,8 +250,6 @@ var acf = {
|
|
250 |
* @description:
|
251 |
* @created: 1/03/2011
|
252 |
*/
|
253 |
-
|
254 |
-
var farbtastic;
|
255 |
|
256 |
$(document).ready(function(){
|
257 |
|
@@ -263,7 +261,7 @@ var acf = {
|
|
263 |
|
264 |
$('body').append('<div id="acf_color_picker" />');
|
265 |
|
266 |
-
farbtastic = $.farbtastic('#acf_color_picker');
|
267 |
|
268 |
});
|
269 |
|
@@ -271,20 +269,36 @@ var acf = {
|
|
271 |
// update colors
|
272 |
$(document).live('acf/setup_fields', function(e, postbox){
|
273 |
|
274 |
-
$(postbox).find('input.acf_color_picker').each(function(
|
|
|
|
|
|
|
|
|
275 |
|
276 |
// validate
|
277 |
-
if( ! $.farbtastic)
|
278 |
{
|
279 |
return;
|
280 |
}
|
281 |
|
282 |
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
});
|
290 |
|
@@ -295,16 +309,35 @@ var acf = {
|
|
295 |
|
296 |
var input = $(this);
|
297 |
|
|
|
|
|
|
|
|
|
|
|
298 |
$('#acf_color_picker').css({
|
299 |
left: input.offset().left,
|
300 |
top: input.offset().top - $('#acf_color_picker').height(),
|
301 |
display: 'block'
|
302 |
});
|
303 |
|
304 |
-
farbtastic.linkTo(this);
|
305 |
|
306 |
}).live('blur', function(){
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
$('#acf_color_picker').css({
|
309 |
display: 'none'
|
310 |
});
|
@@ -439,7 +472,15 @@ var acf = {
|
|
439 |
|
440 |
$(postbox).find('.acf_relationship').each(function(){
|
441 |
|
442 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
axis: "y", // limit the dragging to up/down only
|
444 |
items: '> li',
|
445 |
forceHelperSize: true,
|
@@ -449,7 +490,7 @@ var acf = {
|
|
449 |
|
450 |
|
451 |
// load more
|
452 |
-
$(this).find('.relationship_left .relationship_list').scrollTop(0).
|
453 |
|
454 |
// vars
|
455 |
var div = $(this).closest('.acf_relationship');
|
@@ -488,7 +529,7 @@ var acf = {
|
|
488 |
|
489 |
// vars
|
490 |
var id = $(this).attr('data-post_id'),
|
491 |
-
title = $(this).
|
492 |
div = $(this).closest('.acf_relationship'),
|
493 |
max = parseInt(div.attr('data-max')),
|
494 |
right = div.find('.relationship_right .relationship_list');
|
@@ -626,6 +667,7 @@ var acf = {
|
|
626 |
paged = parseInt( div.attr('data-paged') ),
|
627 |
taxonomy = div.attr('data-taxonomy'),
|
628 |
post_type = div.attr('data-post_type'),
|
|
|
629 |
left = div.find('.relationship_left .relationship_list'),
|
630 |
right = div.find('.relationship_right .relationship_list');
|
631 |
|
@@ -640,7 +682,8 @@ var acf = {
|
|
640 |
's' : s,
|
641 |
'paged' : paged,
|
642 |
'taxonomy' : taxonomy,
|
643 |
-
'post_type' : post_type
|
|
|
644 |
},
|
645 |
success: function( html ){
|
646 |
|
@@ -710,9 +753,10 @@ var acf = {
|
|
710 |
// add tinymce to all wysiwyg fields
|
711 |
$(this).find('.acf_wysiwyg textarea').each(function(){
|
712 |
|
713 |
-
//
|
714 |
-
if( $(this)
|
715 |
{
|
|
|
716 |
return;
|
717 |
}
|
718 |
|
@@ -878,8 +922,6 @@ var acf = {
|
|
878 |
// move row-clone to be the first element (to avoid double border css bug)
|
879 |
var row_clone = repeater.find('> table > tbody > tr.row-clone');
|
880 |
|
881 |
-
// also, deactivate any wysiwyg in the row clone
|
882 |
-
row_clone.acf_deactivate_wysiwyg();
|
883 |
if( row_clone.index() != 0 )
|
884 |
{
|
885 |
row_clone.closest('tbody').prepend( row_clone );
|
@@ -1204,10 +1246,7 @@ var acf = {
|
|
1204 |
$(postbox).find('.acf_flexible_content').each(function(){
|
1205 |
|
1206 |
var div = $(this);
|
1207 |
-
|
1208 |
-
// deactivate any wysiwygs
|
1209 |
-
div.children('.clones').acf_deactivate_wysiwyg();
|
1210 |
-
|
1211 |
// sortable
|
1212 |
flexible_content_add_sortable( div );
|
1213 |
});
|
@@ -1215,6 +1254,24 @@ var acf = {
|
|
1215 |
});
|
1216 |
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
/*
|
1219 |
* Field: Datepicker
|
1220 |
*
|
@@ -1233,6 +1290,13 @@ var acf = {
|
|
1233 |
display_format = input.attr('data-display_format');
|
1234 |
|
1235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1236 |
// get and set value from alt field
|
1237 |
input.val( alt_field.val() );
|
1238 |
|
@@ -1258,6 +1322,17 @@ var acf = {
|
|
1258 |
$('#ui-datepicker-div').wrap('<div class="ui-acf" />');
|
1259 |
}
|
1260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1261 |
});
|
1262 |
|
1263 |
});
|
@@ -1420,6 +1495,14 @@ var acf = {
|
|
1420 |
|
1421 |
$(postbox).find('.acf-gallery').each(function(i){
|
1422 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1423 |
// vars
|
1424 |
var div = $(this),
|
1425 |
thumbnails = div.find('.thumbnails');
|
@@ -1430,7 +1513,7 @@ var acf = {
|
|
1430 |
|
1431 |
|
1432 |
// sortable
|
1433 |
-
thumbnails.find('> .inner').
|
1434 |
items : '> .thumbnail',
|
1435 |
/* handle: '> td.order', */
|
1436 |
forceHelperSize: true,
|
250 |
* @description:
|
251 |
* @created: 1/03/2011
|
252 |
*/
|
|
|
|
|
253 |
|
254 |
$(document).ready(function(){
|
255 |
|
261 |
|
262 |
$('body').append('<div id="acf_color_picker" />');
|
263 |
|
264 |
+
acf.farbtastic = $.farbtastic('#acf_color_picker');
|
265 |
|
266 |
});
|
267 |
|
269 |
// update colors
|
270 |
$(document).live('acf/setup_fields', function(e, postbox){
|
271 |
|
272 |
+
$(postbox).find('input.acf_color_picker').each(function(){
|
273 |
+
|
274 |
+
// vars
|
275 |
+
var input = $(this);
|
276 |
+
|
277 |
|
278 |
// validate
|
279 |
+
if( ! $.farbtastic )
|
280 |
{
|
281 |
return;
|
282 |
}
|
283 |
|
284 |
|
285 |
+
// is clone field?
|
286 |
+
if( acf.is_clone_field(input) )
|
287 |
+
{
|
288 |
+
//console.log('Clone Field: Color Picker');
|
289 |
+
return;
|
290 |
+
}
|
291 |
+
|
292 |
+
|
293 |
+
if( input.val() )
|
294 |
+
{
|
295 |
+
$.farbtastic( input ).setColor( input.val() ).hsl[2] > 0.5 ? color = '#000' : color = '#fff';
|
296 |
+
|
297 |
+
input.css({
|
298 |
+
backgroundColor : input.val(),
|
299 |
+
color : color
|
300 |
+
});
|
301 |
+
}
|
302 |
|
303 |
});
|
304 |
|
309 |
|
310 |
var input = $(this);
|
311 |
|
312 |
+
if( ! input.val() )
|
313 |
+
{
|
314 |
+
input.val( '#FFFFFF' );
|
315 |
+
}
|
316 |
+
|
317 |
$('#acf_color_picker').css({
|
318 |
left: input.offset().left,
|
319 |
top: input.offset().top - $('#acf_color_picker').height(),
|
320 |
display: 'block'
|
321 |
});
|
322 |
|
323 |
+
acf.farbtastic.linkTo(this);
|
324 |
|
325 |
}).live('blur', function(){
|
326 |
+
|
327 |
+
var input = $(this);
|
328 |
+
|
329 |
+
|
330 |
+
// reset the css
|
331 |
+
if( ! input.val() )
|
332 |
+
{
|
333 |
+
input.css({
|
334 |
+
backgroundColor : '#fff',
|
335 |
+
color : '#000'
|
336 |
+
});
|
337 |
+
|
338 |
+
}
|
339 |
+
|
340 |
+
|
341 |
$('#acf_color_picker').css({
|
342 |
display: 'none'
|
343 |
});
|
472 |
|
473 |
$(postbox).find('.acf_relationship').each(function(){
|
474 |
|
475 |
+
// is clone field?
|
476 |
+
if( acf.is_clone_field($(this).children('input[type="hidden"]')) )
|
477 |
+
{
|
478 |
+
//console.log('Clone Field: Relationship');
|
479 |
+
return;
|
480 |
+
}
|
481 |
+
|
482 |
+
|
483 |
+
$(this).find('.relationship_right .relationship_list').sortable({
|
484 |
axis: "y", // limit the dragging to up/down only
|
485 |
items: '> li',
|
486 |
forceHelperSize: true,
|
490 |
|
491 |
|
492 |
// load more
|
493 |
+
$(this).find('.relationship_left .relationship_list').scrollTop(0).scroll( function(){
|
494 |
|
495 |
// vars
|
496 |
var div = $(this).closest('.acf_relationship');
|
529 |
|
530 |
// vars
|
531 |
var id = $(this).attr('data-post_id'),
|
532 |
+
title = $(this).html(),
|
533 |
div = $(this).closest('.acf_relationship'),
|
534 |
max = parseInt(div.attr('data-max')),
|
535 |
right = div.find('.relationship_right .relationship_list');
|
667 |
paged = parseInt( div.attr('data-paged') ),
|
668 |
taxonomy = div.attr('data-taxonomy'),
|
669 |
post_type = div.attr('data-post_type'),
|
670 |
+
lang = div.attr('data-lang'),
|
671 |
left = div.find('.relationship_left .relationship_list'),
|
672 |
right = div.find('.relationship_right .relationship_list');
|
673 |
|
682 |
's' : s,
|
683 |
'paged' : paged,
|
684 |
'taxonomy' : taxonomy,
|
685 |
+
'post_type' : post_type,
|
686 |
+
'lang' : lang
|
687 |
},
|
688 |
success: function( html ){
|
689 |
|
753 |
// add tinymce to all wysiwyg fields
|
754 |
$(this).find('.acf_wysiwyg textarea').each(function(){
|
755 |
|
756 |
+
// is clone field?
|
757 |
+
if( acf.is_clone_field($(this)) )
|
758 |
{
|
759 |
+
//console.log('Clone Field: WYSIWYG');
|
760 |
return;
|
761 |
}
|
762 |
|
922 |
// move row-clone to be the first element (to avoid double border css bug)
|
923 |
var row_clone = repeater.find('> table > tbody > tr.row-clone');
|
924 |
|
|
|
|
|
925 |
if( row_clone.index() != 0 )
|
926 |
{
|
927 |
row_clone.closest('tbody').prepend( row_clone );
|
1246 |
$(postbox).find('.acf_flexible_content').each(function(){
|
1247 |
|
1248 |
var div = $(this);
|
1249 |
+
|
|
|
|
|
|
|
1250 |
// sortable
|
1251 |
flexible_content_add_sortable( div );
|
1252 |
});
|
1254 |
});
|
1255 |
|
1256 |
|
1257 |
+
/*
|
1258 |
+
* is_clone_field
|
1259 |
+
*
|
1260 |
+
* @description: returns true|false for an input element
|
1261 |
+
* @created: 19/08/12
|
1262 |
+
*/
|
1263 |
+
|
1264 |
+
acf.is_clone_field = function( input )
|
1265 |
+
{
|
1266 |
+
if( input.attr('name').indexOf('[999]') != -1 )
|
1267 |
+
{
|
1268 |
+
return true;
|
1269 |
+
}
|
1270 |
+
|
1271 |
+
return false;
|
1272 |
+
}
|
1273 |
+
|
1274 |
+
|
1275 |
/*
|
1276 |
* Field: Datepicker
|
1277 |
*
|
1290 |
display_format = input.attr('data-display_format');
|
1291 |
|
1292 |
|
1293 |
+
// is clone field?
|
1294 |
+
if( acf.is_clone_field(alt_field) )
|
1295 |
+
{
|
1296 |
+
return;
|
1297 |
+
}
|
1298 |
+
|
1299 |
+
|
1300 |
// get and set value from alt field
|
1301 |
input.val( alt_field.val() );
|
1302 |
|
1322 |
$('#ui-datepicker-div').wrap('<div class="ui-acf" />');
|
1323 |
}
|
1324 |
|
1325 |
+
|
1326 |
+
// allow null
|
1327 |
+
input.blur(function(){
|
1328 |
+
|
1329 |
+
if( !input.val() )
|
1330 |
+
{
|
1331 |
+
alt_field.val('');
|
1332 |
+
}
|
1333 |
+
|
1334 |
+
});
|
1335 |
+
|
1336 |
});
|
1337 |
|
1338 |
});
|
1495 |
|
1496 |
$(postbox).find('.acf-gallery').each(function(i){
|
1497 |
|
1498 |
+
// is clone field?
|
1499 |
+
if( acf.is_clone_field($(this).children('input[type="hidden"]')) )
|
1500 |
+
{
|
1501 |
+
//console.log('Clone Field: Gallery');
|
1502 |
+
return;
|
1503 |
+
}
|
1504 |
+
|
1505 |
+
|
1506 |
// vars
|
1507 |
var div = $(this),
|
1508 |
thumbnails = div.find('.thumbnails');
|
1513 |
|
1514 |
|
1515 |
// sortable
|
1516 |
+
thumbnails.find('> .inner').sortable({
|
1517 |
items : '> .thumbnail',
|
1518 |
/* handle: '> td.order', */
|
1519 |
forceHelperSize: true,
|
js/input-ajax.js
CHANGED
@@ -44,7 +44,20 @@
|
|
44 |
post_format : false,
|
45 |
taxonomy : false
|
46 |
};
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
});
|
49 |
|
50 |
|
@@ -57,8 +70,7 @@
|
|
57 |
|
58 |
function update_fields()
|
59 |
{
|
60 |
-
|
61 |
-
//console.log('update_fields');
|
62 |
$.ajax({
|
63 |
url: ajaxurl,
|
64 |
data: acf.data,
|
44 |
post_format : false,
|
45 |
taxonomy : false
|
46 |
};
|
47 |
+
|
48 |
+
|
49 |
+
// MPML
|
50 |
+
if( $('#icl-als-first').exists() )
|
51 |
+
{
|
52 |
+
var href = $('#icl-als-first').children('a').attr('href'),
|
53 |
+
regex = new RegExp( "lang=([^&#]*)" ),
|
54 |
+
results = regex.exec( href );
|
55 |
+
|
56 |
+
// lang
|
57 |
+
acf.data.lang = results[1];
|
58 |
+
|
59 |
+
}
|
60 |
+
|
61 |
});
|
62 |
|
63 |
|
70 |
|
71 |
function update_fields()
|
72 |
{
|
73 |
+
|
|
|
74 |
$.ajax({
|
75 |
url: ajaxurl,
|
76 |
data: acf.data,
|
lang/acf-ja.mo
CHANGED
Binary file
|
lang/acf-ja.po
CHANGED
@@ -2,728 +2,625 @@
|
|
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: 2012-
|
|
|
|
|
|
|
|
|
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: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
-
"Last-Translator: Fumito MIZUNO <mizuno@php-web.net>\n"
|
13 |
-
"Language-Team: JAPANESE <mizuno@php-web.net>\n"
|
14 |
|
15 |
-
#: acf.php:
|
|
|
16 |
msgid "Custom Fields"
|
17 |
msgstr "カスタムフィールド"
|
18 |
|
19 |
-
#: acf.php:
|
20 |
-
msgid "
|
21 |
-
msgstr "
|
22 |
-
|
23 |
-
#: acf.php:291
|
24 |
-
msgid "Upgrade"
|
25 |
-
msgstr "更新"
|
26 |
-
|
27 |
-
#: acf.php:503
|
28 |
-
msgid "Fields"
|
29 |
-
msgstr "フィールド"
|
30 |
-
|
31 |
-
#: acf.php:504
|
32 |
-
msgid "Location"
|
33 |
-
msgstr "位置"
|
34 |
-
|
35 |
-
#: acf.php:504
|
36 |
-
msgid "Add Fields to Edit Screens"
|
37 |
-
msgstr "編集画面にフィールドを追加する"
|
38 |
-
|
39 |
-
#: acf.php:505 core/admin/meta_box_location.php:133 core/options_page.php:62
|
40 |
-
#: core/options_page.php:74
|
41 |
-
msgid "Options"
|
42 |
-
msgstr "オプション"
|
43 |
-
|
44 |
-
#: acf.php:505
|
45 |
-
msgid "Customise the edit page"
|
46 |
-
msgstr "編集ページをカスタマイズする"
|
47 |
-
|
48 |
-
#: acf.php:533 core/api.php:503 core/everything_fields.php:202
|
49 |
-
#: core/options_page.php:182
|
50 |
-
msgid "Validation Failed. One or more fields below are required."
|
51 |
-
msgstr "検証に失敗しました。下記のフィールドの少なくとも一つが必須です。"
|
52 |
-
|
53 |
-
#: acf.php:859
|
54 |
-
msgid "Error: Field Type does not exist!"
|
55 |
-
msgstr "エラー: フィールドタイプが存在しません"
|
56 |
-
|
57 |
-
#: acf.php:2086
|
58 |
-
msgid "required"
|
59 |
-
msgstr "必須"
|
60 |
-
|
61 |
-
#: acf.php:2184
|
62 |
-
msgid "Parent Page"
|
63 |
-
msgstr "親ページ"
|
64 |
-
|
65 |
-
#: acf.php:2185
|
66 |
-
msgid "Child Page"
|
67 |
-
msgstr "子ページ"
|
68 |
-
|
69 |
-
#: acf.php:2193
|
70 |
-
msgid "Default Template"
|
71 |
-
msgstr "デフォルトテンプレート"
|
72 |
-
|
73 |
-
#: core/actions/export.php:19
|
74 |
-
msgid "No ACF groups selected"
|
75 |
-
msgstr "ACF グループが選択されていません"
|
76 |
|
77 |
-
#:
|
78 |
-
#: core/
|
|
|
79 |
msgid "Advanced Custom Fields"
|
80 |
msgstr "Advanced Custom Fields"
|
81 |
|
82 |
-
#:
|
83 |
-
|
84 |
-
msgstr "データベースの更新が必要です"
|
85 |
-
|
86 |
-
#: core/actions/init.php:21
|
87 |
-
msgid "why?"
|
88 |
-
msgstr "理由"
|
89 |
-
|
90 |
-
#: core/actions/init.php:21
|
91 |
-
msgid "Please"
|
92 |
-
msgstr "してください"
|
93 |
-
|
94 |
-
#: core/actions/init.php:21
|
95 |
-
msgid "backup your database"
|
96 |
-
msgstr "データベースのバックアップ"
|
97 |
-
|
98 |
-
#: core/actions/init.php:21
|
99 |
-
msgid "then click"
|
100 |
-
msgstr "そしてクリックしてください"
|
101 |
-
|
102 |
-
#: core/actions/init.php:21
|
103 |
-
msgid "Upgrade Database"
|
104 |
-
msgstr "データベースの更新"
|
105 |
-
|
106 |
-
#: core/actions/init.php:47
|
107 |
-
msgid "Repeater field deactivated"
|
108 |
-
msgstr "繰り返しフィールドを無効化しました"
|
109 |
-
|
110 |
-
#: core/actions/init.php:51
|
111 |
-
msgid "Options page deactivated"
|
112 |
-
msgstr "オプションページを無効化しました"
|
113 |
-
|
114 |
-
#: core/actions/init.php:55
|
115 |
-
msgid "Flexible Content field deactivated"
|
116 |
-
msgstr "柔軟コンテンツフィールドを無効化しました"
|
117 |
-
|
118 |
-
#: core/actions/init.php:59
|
119 |
-
msgid "Everything Fields deactivated"
|
120 |
-
msgstr "全フィールドを無効化しました"
|
121 |
-
|
122 |
-
#: core/actions/init.php:87
|
123 |
-
msgid "Repeater field activated"
|
124 |
-
msgstr "繰り返しフィールドを有効化しました"
|
125 |
-
|
126 |
-
#: core/actions/init.php:91
|
127 |
-
msgid "Options page activated"
|
128 |
-
msgstr "オプションページを有効化しました"
|
129 |
-
|
130 |
-
#: core/actions/init.php:95
|
131 |
-
msgid "Flexible Content field activated"
|
132 |
-
msgstr "柔軟コンテンツフィールドを有効化しました"
|
133 |
-
|
134 |
-
#: core/actions/init.php:99
|
135 |
-
msgid "Everything Fields activated"
|
136 |
-
msgstr "全フィールドを有効化しました"
|
137 |
-
|
138 |
-
#: core/actions/init.php:104
|
139 |
-
msgid "License key unrecognised"
|
140 |
-
msgstr "ライセンスキーが認識できません"
|
141 |
-
|
142 |
-
#: core/actions/init.php:115
|
143 |
-
msgid "Field Groups"
|
144 |
-
msgstr "フィールドグループ"
|
145 |
-
|
146 |
-
#: core/actions/init.php:117 core/fields/flexible_content.php:257
|
147 |
msgid "Add New"
|
148 |
msgstr "新規追加"
|
149 |
|
150 |
-
#:
|
151 |
msgid "Add New Field Group"
|
152 |
msgstr "フィールドグループを新規追加"
|
153 |
|
154 |
-
#:
|
155 |
msgid "Edit Field Group"
|
156 |
msgstr "フィールドグループを編集"
|
157 |
|
158 |
-
#:
|
159 |
msgid "New Field Group"
|
160 |
msgstr "新規フィールドグループ"
|
161 |
|
162 |
-
#:
|
163 |
msgid "View Field Group"
|
164 |
msgstr "フィールドグループを表示"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Search Field Groups"
|
168 |
msgstr "フィールドグループを検索"
|
169 |
|
170 |
-
#:
|
171 |
msgid "No Field Groups found"
|
172 |
msgstr "フィールドグループが見つかりません"
|
173 |
|
174 |
-
#:
|
175 |
msgid "No Field Groups found in Trash"
|
176 |
msgstr "ゴミ箱にフィールドグループが見つかりません"
|
177 |
|
178 |
-
#:
|
|
|
179 |
msgid "Field group updated."
|
180 |
msgstr "フィールドグループを更新しました"
|
181 |
|
182 |
-
#:
|
183 |
msgid "Custom field updated."
|
184 |
msgstr "カスタムフィールドを更新しました"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Custom field deleted."
|
188 |
msgstr "カスタムフィールドが削除されました"
|
189 |
|
190 |
#. translators: %s: date and time of the revision
|
191 |
-
#:
|
192 |
msgid "Field group restored to revision from %s"
|
193 |
msgstr "リビジョン %s からフィールドグループを復元しました"
|
194 |
|
195 |
-
#:
|
196 |
msgid "Field group published."
|
197 |
msgstr "フィールドグループを公開しました"
|
198 |
|
199 |
-
#:
|
200 |
msgid "Field group saved."
|
201 |
msgstr "フィールドグループを保存しました"
|
202 |
|
203 |
-
#:
|
204 |
msgid "Field group submitted."
|
205 |
msgstr "フィールドグループを送信しました"
|
206 |
|
207 |
-
#:
|
208 |
msgid "Field group scheduled for."
|
209 |
msgstr "フィールドグループを予約しました"
|
210 |
|
211 |
-
#:
|
212 |
msgid "Field group draft updated."
|
213 |
msgstr "フィールドグループ下書きを更新しました"
|
214 |
|
215 |
-
#:
|
|
|
|
|
216 |
msgid "Title"
|
217 |
msgstr "タイトル"
|
218 |
|
219 |
-
#:
|
220 |
-
|
221 |
-
|
222 |
-
msgstr "新規フィールド"
|
223 |
-
|
224 |
-
#: core/admin/meta_box_fields.php:38
|
225 |
-
msgid "Move to trash. Are you sure?"
|
226 |
-
msgstr "ゴミ箱に移動させようとしています。よろしいですか?"
|
227 |
-
|
228 |
-
#: core/admin/meta_box_fields.php:50 core/fields/flexible_content.php:309
|
229 |
-
#: core/fields/repeater.php:244
|
230 |
-
msgid "Field Order"
|
231 |
-
msgstr "フィールド順序"
|
232 |
-
|
233 |
-
#: core/admin/meta_box_fields.php:51 core/admin/meta_box_fields.php:92
|
234 |
-
#: core/fields/flexible_content.php:310 core/fields/flexible_content.php:357
|
235 |
-
#: core/fields/repeater.php:245 core/fields/repeater.php:292
|
236 |
-
msgid "Field Label"
|
237 |
-
msgstr "フィールドラベル"
|
238 |
-
|
239 |
-
#: core/admin/meta_box_fields.php:52 core/admin/meta_box_fields.php:108
|
240 |
-
#: core/fields/flexible_content.php:311 core/fields/flexible_content.php:373
|
241 |
-
#: core/fields/repeater.php:246 core/fields/repeater.php:308
|
242 |
-
msgid "Field Name"
|
243 |
-
msgstr "フィールド名"
|
244 |
-
|
245 |
-
#: core/admin/meta_box_fields.php:53 core/admin/meta_box_fields.php:123
|
246 |
-
#: core/admin/page_settings.php:44 core/fields/flexible_content.php:312
|
247 |
-
#: core/fields/flexible_content.php:388 core/fields/repeater.php:247
|
248 |
-
#: core/fields/repeater.php:323
|
249 |
-
msgid "Field Type"
|
250 |
-
msgstr "フィールドタイプ"
|
251 |
-
|
252 |
-
#: core/admin/meta_box_fields.php:60
|
253 |
-
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
254 |
-
msgstr "フィールドはありません。<strong>+ 新規追加</strong>ボタンをクリックして最初のフィールドを作成してください"
|
255 |
-
|
256 |
-
#: core/admin/meta_box_fields.php:71 core/admin/meta_box_fields.php:74
|
257 |
-
#: core/fields/flexible_content.php:336 core/fields/flexible_content.php:339
|
258 |
-
#: core/fields/repeater.php:270 core/fields/repeater.php:273
|
259 |
-
msgid "Edit this Field"
|
260 |
-
msgstr "このフィールドを編集する"
|
261 |
-
|
262 |
-
#: core/admin/meta_box_fields.php:74 core/fields/flexible_content.php:339
|
263 |
-
#: core/fields/repeater.php:273
|
264 |
-
msgid "Edit"
|
265 |
-
msgstr "編集"
|
266 |
-
|
267 |
-
#: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
|
268 |
-
#: core/fields/repeater.php:274
|
269 |
-
msgid "Read documentation for this field"
|
270 |
-
msgstr "このフィールドのドキュメントを読む"
|
271 |
-
|
272 |
-
#: core/admin/meta_box_fields.php:75 core/fields/flexible_content.php:340
|
273 |
-
#: core/fields/repeater.php:274
|
274 |
-
msgid "Docs"
|
275 |
-
msgstr "ドキュメント"
|
276 |
-
|
277 |
-
#: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
|
278 |
-
#: core/fields/repeater.php:275
|
279 |
-
msgid "Duplicate this Field"
|
280 |
-
msgstr "このフィールドを複製する"
|
281 |
-
|
282 |
-
#: core/admin/meta_box_fields.php:76 core/fields/flexible_content.php:341
|
283 |
-
#: core/fields/repeater.php:275
|
284 |
-
msgid "Duplicate"
|
285 |
-
msgstr "複製"
|
286 |
-
|
287 |
-
#: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:342
|
288 |
-
#: core/fields/repeater.php:276
|
289 |
-
msgid "Delete this Field"
|
290 |
-
msgstr "このフィールドを削除する"
|
291 |
-
|
292 |
-
#: core/admin/meta_box_fields.php:77 core/fields/flexible_content.php:258
|
293 |
-
#: core/fields/flexible_content.php:342 core/fields/repeater.php:276
|
294 |
-
msgid "Delete"
|
295 |
-
msgstr "削除"
|
296 |
-
|
297 |
-
#: core/admin/meta_box_fields.php:93 core/fields/flexible_content.php:358
|
298 |
-
#: core/fields/repeater.php:293
|
299 |
-
msgid "This is the name which will appear on the EDIT page"
|
300 |
-
msgstr "編集ページで表示される名前です"
|
301 |
-
|
302 |
-
#: core/admin/meta_box_fields.php:109 core/fields/flexible_content.php:374
|
303 |
-
#: core/fields/repeater.php:309
|
304 |
-
msgid "Single word, no spaces. Underscores and dashes allowed"
|
305 |
-
msgstr "単一語。スペース無し。アンダースコアとダッシュは使用可能。"
|
306 |
-
|
307 |
-
#: core/admin/meta_box_fields.php:136
|
308 |
-
msgid "Field Instructions"
|
309 |
-
msgstr "フィールドの説明"
|
310 |
-
|
311 |
-
#: core/admin/meta_box_fields.php:137
|
312 |
-
msgid "Instructions for authors. Shown when submitting data"
|
313 |
-
msgstr "作成者向けの説明。データ送信時に表示されます"
|
314 |
-
|
315 |
-
#: core/admin/meta_box_fields.php:149
|
316 |
-
msgid "Required?"
|
317 |
-
msgstr "必須か?"
|
318 |
-
|
319 |
-
#: core/admin/meta_box_fields.php:172 core/fields/flexible_content.php:408
|
320 |
-
#: core/fields/repeater.php:343
|
321 |
-
msgid "Save Field"
|
322 |
-
msgstr "フィールドを保存する"
|
323 |
-
|
324 |
-
#: core/admin/meta_box_fields.php:177 core/fields/flexible_content.php:413
|
325 |
-
#: core/fields/repeater.php:348
|
326 |
-
msgid "Close Field"
|
327 |
-
msgstr "フィールドを閉じる"
|
328 |
|
329 |
-
#:
|
330 |
-
|
331 |
-
|
332 |
-
msgstr "ドラッグアンドドロップで順序変更する"
|
333 |
|
334 |
-
#:
|
335 |
-
msgid "
|
336 |
-
msgstr "
|
337 |
|
338 |
-
#:
|
339 |
-
msgid "
|
340 |
-
msgstr "
|
341 |
|
342 |
-
#:
|
343 |
-
|
344 |
-
|
|
|
345 |
|
346 |
-
#: core/
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#: core/
|
351 |
-
#: core/
|
352 |
-
msgid "
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: core/
|
356 |
-
msgid "
|
357 |
-
msgstr "
|
358 |
|
359 |
-
#: core/
|
360 |
-
msgid "
|
361 |
-
msgstr "
|
362 |
|
363 |
-
#: core/
|
364 |
-
|
365 |
-
|
|
|
|
|
|
|
|
|
366 |
|
367 |
-
#: core/
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
|
371 |
-
#: core/
|
372 |
-
msgid "Page
|
373 |
msgstr "親ページ"
|
374 |
|
375 |
-
#: core/
|
376 |
-
msgid "Page
|
377 |
-
msgstr "
|
378 |
-
|
379 |
-
#: core/admin/meta_box_location.php:47
|
380 |
-
msgid "Post Specific"
|
381 |
-
msgstr "特定の投稿"
|
382 |
-
|
383 |
-
#: core/admin/meta_box_location.php:48
|
384 |
-
msgid "Post"
|
385 |
-
msgstr "投稿"
|
386 |
-
|
387 |
-
#: core/admin/meta_box_location.php:49
|
388 |
-
msgid "Post Category"
|
389 |
-
msgstr "投稿カテゴリー"
|
390 |
-
|
391 |
-
#: core/admin/meta_box_location.php:50
|
392 |
-
msgid "Post Format"
|
393 |
-
msgstr "投稿フォーマット"
|
394 |
-
|
395 |
-
#: core/admin/meta_box_location.php:51
|
396 |
-
msgid "Post Taxonomy"
|
397 |
-
msgstr "投稿分類"
|
398 |
-
|
399 |
-
#: core/admin/meta_box_location.php:53
|
400 |
-
msgid "Other"
|
401 |
-
msgstr "その他"
|
402 |
-
|
403 |
-
#: core/admin/meta_box_location.php:54
|
404 |
-
msgid "Taxonomy (Add / Edit)"
|
405 |
-
msgstr "分類(追加/編集)"
|
406 |
-
|
407 |
-
#: core/admin/meta_box_location.php:55
|
408 |
-
msgid "User (Add / Edit)"
|
409 |
-
msgstr "ユーザー(追加/編集)"
|
410 |
-
|
411 |
-
#: core/admin/meta_box_location.php:56
|
412 |
-
msgid "Media (Edit)"
|
413 |
-
msgstr "メディア(編集)"
|
414 |
-
|
415 |
-
#: core/admin/meta_box_location.php:64 core/admin/page_settings.php:92
|
416 |
-
msgid "Options Page"
|
417 |
-
msgstr "オプションページ"
|
418 |
-
|
419 |
-
#: core/admin/meta_box_location.php:86
|
420 |
-
msgid "is equal to"
|
421 |
-
msgstr "等しい"
|
422 |
-
|
423 |
-
#: core/admin/meta_box_location.php:87
|
424 |
-
msgid "is not equal to"
|
425 |
-
msgstr "等しくない"
|
426 |
|
427 |
-
#: core/
|
428 |
-
msgid "
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: core/
|
432 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
msgstr "全て"
|
434 |
|
435 |
-
#: core/
|
436 |
-
|
437 |
-
msgstr "任意"
|
438 |
-
|
439 |
-
#: core/admin/meta_box_location.php:121
|
440 |
-
msgid "of the above"
|
441 |
-
msgstr "上述の"
|
442 |
-
|
443 |
-
#: core/admin/meta_box_location.php:134
|
444 |
-
msgid "Unlock options add-on with an activation code"
|
445 |
-
msgstr "アクティベーションコードでオプションアドオンをロック解除する"
|
446 |
-
|
447 |
-
#: core/admin/meta_box_options.php:13
|
448 |
-
msgid "Order No."
|
449 |
-
msgstr "順序番号"
|
450 |
-
|
451 |
-
#: core/admin/meta_box_options.php:14
|
452 |
-
msgid "Field groups are created in order <br />from lowest to highest."
|
453 |
-
msgstr "フィールドグループは、<br />低いほうから高いほうへ作成されます"
|
454 |
-
|
455 |
-
#: core/admin/meta_box_options.php:30
|
456 |
-
msgid "Position"
|
457 |
-
msgstr "位置"
|
458 |
-
|
459 |
-
#: core/admin/meta_box_options.php:40
|
460 |
msgid "Normal"
|
461 |
msgstr "Normal"
|
462 |
|
463 |
-
#: core/
|
|
|
464 |
msgid "Side"
|
465 |
msgstr "Side"
|
466 |
|
467 |
-
#: core/
|
468 |
-
|
469 |
-
msgstr "Style"
|
470 |
-
|
471 |
-
#: core/admin/meta_box_options.php:60
|
472 |
msgid "Standard Metabox"
|
473 |
msgstr "標準メタボックス"
|
474 |
|
475 |
-
#: core/
|
|
|
476 |
msgid "No Metabox"
|
477 |
msgstr "メタボックス無"
|
478 |
|
479 |
-
#: core/
|
480 |
-
msgid "Show on page"
|
481 |
-
msgstr "ページで表示する"
|
482 |
-
|
483 |
-
#: core/admin/meta_box_options.php:71
|
484 |
-
msgid "Deselect items to hide them on the edit page"
|
485 |
-
msgstr "選択を外したアイテムは、編集画面で表示されません"
|
486 |
-
|
487 |
-
#: core/admin/meta_box_options.php:72
|
488 |
-
msgid "If multiple ACF groups appear on an edit page, the first ACF group's options will be used. The first ACF group is the one with the lowest order number."
|
489 |
-
msgstr "編集画面に複数の ACF グループが表示される場合、最初の ACF グループのオプションが使用されます。最初の ACF グループは、順序番号の最も低いものです。"
|
490 |
-
|
491 |
-
#: core/admin/meta_box_options.php:82
|
492 |
-
msgid "Content Editor"
|
493 |
-
msgstr "コンテンツエディタ"
|
494 |
-
|
495 |
-
#: core/admin/meta_box_options.php:84
|
496 |
-
msgid "Discussion"
|
497 |
-
msgstr "ディスカッション"
|
498 |
-
|
499 |
-
#: core/admin/meta_box_options.php:85
|
500 |
-
msgid "Comments"
|
501 |
-
msgstr "コメント"
|
502 |
-
|
503 |
-
#: core/admin/meta_box_options.php:86
|
504 |
-
msgid "Slug"
|
505 |
-
msgstr "スラッグ"
|
506 |
-
|
507 |
-
#: core/admin/meta_box_options.php:87
|
508 |
-
msgid "Author"
|
509 |
-
msgstr "作成者"
|
510 |
-
|
511 |
-
#: core/admin/page_acf.php:16
|
512 |
msgid "Changelog"
|
513 |
msgstr "更新履歴"
|
514 |
|
515 |
-
#: core/
|
516 |
msgid "See what's new in"
|
517 |
msgstr "新着情報で見る"
|
518 |
|
519 |
-
#: core/
|
520 |
msgid "Resources"
|
521 |
msgstr "リソース"
|
522 |
|
523 |
-
#: core/
|
524 |
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
525 |
msgstr "次のプロジェクトのため、ドキュメントを読み、関数を学び、便利な使い方を探しましょう。"
|
526 |
|
527 |
-
#: core/
|
528 |
-
msgid "
|
529 |
msgstr "ACF ウェブサイトを見る"
|
530 |
|
531 |
-
#: core/
|
532 |
msgid "Created by"
|
533 |
msgstr "作成"
|
534 |
|
535 |
-
#: core/
|
536 |
msgid "Vote"
|
537 |
msgstr "投票"
|
538 |
|
539 |
-
#: core/
|
540 |
msgid "Follow"
|
541 |
msgstr "フォロー"
|
542 |
|
543 |
-
#: core/
|
544 |
-
msgid "
|
545 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
|
547 |
-
#: core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
msgid "Activate Add-ons."
|
549 |
msgstr "アドオンを有効化する"
|
550 |
|
551 |
-
#: core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
msgid "Status"
|
553 |
msgstr "ステータス"
|
554 |
|
555 |
-
#: core/
|
556 |
msgid "Activation Code"
|
557 |
msgstr "アクティベーションコード"
|
558 |
|
559 |
-
#: core/
|
560 |
msgid "Repeater Field"
|
561 |
msgstr "繰り返しフィールド"
|
562 |
|
563 |
-
#: core/
|
564 |
-
#: core/
|
|
|
|
|
565 |
msgid "Active"
|
566 |
msgstr "有効"
|
567 |
|
568 |
-
#: core/
|
569 |
-
#: core/
|
|
|
|
|
570 |
msgid "Inactive"
|
571 |
msgstr "無効"
|
572 |
|
573 |
-
#: core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
msgid "Flexible Content Field"
|
575 |
msgstr "柔軟コンテンツフィールド"
|
576 |
|
577 |
-
#: core/
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
|
581 |
-
#: core/
|
582 |
-
|
583 |
-
|
|
|
584 |
|
585 |
-
#: core/
|
586 |
msgid "Export Field Groups to XML"
|
587 |
msgstr "フィールドグループを XML 形式でエクスポート"
|
588 |
|
589 |
-
#: core/
|
590 |
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
591 |
msgstr "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグインと互換性があります。"
|
592 |
|
593 |
-
#: core/
|
594 |
-
|
595 |
-
|
|
|
596 |
|
597 |
-
#: core/
|
598 |
msgid "Import Field Groups"
|
599 |
msgstr "フィールドグループをインポートする"
|
600 |
|
601 |
-
#: core/
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
|
|
|
|
|
|
|
|
604 |
|
605 |
-
#: core/
|
606 |
-
msgid "
|
607 |
-
msgstr "
|
608 |
|
609 |
-
#: core/
|
610 |
-
msgid "and select WordPress"
|
611 |
-
msgstr "WordPress
|
612 |
|
613 |
-
#: core/
|
614 |
msgid "Install WP import plugin if prompted"
|
615 |
msgstr "(インストールを促された場合は) WP インポートプラグインをインストールしてください"
|
616 |
|
617 |
-
#: core/
|
618 |
msgid "Upload and import your exported .xml file"
|
619 |
msgstr "エクスポートした .xml ファイルをアップロードし、インポートする"
|
620 |
|
621 |
-
#: core/
|
622 |
msgid "Select your user and ignore Import Attachments"
|
623 |
msgstr "ユーザーを選択し、Import Attachments を無視する"
|
624 |
|
625 |
-
#: core/
|
626 |
msgid "That's it! Happy WordPressing"
|
627 |
msgstr "これで OK です。WordPress をお楽しみください"
|
628 |
|
629 |
-
#: core/
|
|
|
|
|
|
|
|
|
630 |
msgid "Export Field Groups to PHP"
|
631 |
msgstr "フィールドグループを PHP 形式でエクスポートする"
|
632 |
|
633 |
-
#: core/
|
634 |
-
msgid "ACF will create the PHP code to include in your theme"
|
635 |
msgstr "ACF は、テーマに含める PHP コードを作成します"
|
636 |
|
637 |
-
#: core/
|
638 |
-
|
639 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
|
641 |
-
#: core/
|
642 |
-
msgid "
|
643 |
-
msgstr "PHP
|
644 |
|
645 |
-
#: core/
|
|
|
646 |
msgid "Copy the PHP code generated"
|
647 |
msgstr "生成された PHP コードをコピーし、"
|
648 |
|
649 |
-
#: core/
|
|
|
650 |
msgid "Paste into your functions.php file"
|
651 |
msgstr "functions.php に貼り付けてください"
|
652 |
|
653 |
-
#: core/
|
|
|
654 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
655 |
msgstr "アドオンを有効化するには、最初の何行かのコードを編集して使用してください"
|
656 |
|
657 |
-
#: core/
|
|
|
|
|
|
|
|
|
658 |
msgid "Back to settings"
|
659 |
msgstr "設定に戻る"
|
660 |
|
661 |
-
#: core/
|
662 |
msgid ""
|
663 |
"/**\n"
|
664 |
" * Activate Add-ons\n"
|
665 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your "
|
666 |
-
"
|
667 |
-
" *
|
668 |
-
"
|
669 |
-
" * Use the commented out code to update the database with your activation "
|
670 |
-
"code. \n"
|
671 |
-
" * You may place this code inside an IF statement that only runs on theme "
|
672 |
-
"activation.\n"
|
673 |
" */"
|
674 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
|
676 |
-
#: core/
|
677 |
msgid ""
|
678 |
"/**\n"
|
679 |
" * Register field groups\n"
|
680 |
-
" * The register_field_group function accepts 1 array which holds the "
|
681 |
-
"
|
682 |
-
" * You may edit the array as you see fit. However, this may result in errors "
|
683 |
-
"if the array is not compatible with ACF\n"
|
684 |
" * This code must run every time the functions.php file is read\n"
|
685 |
" */"
|
686 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
|
688 |
-
#: core/
|
689 |
msgid "No field groups were selected"
|
690 |
msgstr "フィールドグループが選択されていません"
|
691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
692 |
#: core/fields/checkbox.php:21
|
693 |
msgid "Checkbox"
|
694 |
msgstr "チェックボックス"
|
695 |
|
696 |
-
#: core/fields/checkbox.php:
|
|
|
697 |
#: core/fields/select.php:50
|
698 |
msgid "No choices to choose from"
|
699 |
msgstr "選択肢がありません"
|
700 |
|
701 |
-
#: core/fields/checkbox.php:
|
|
|
702 |
#: core/fields/select.php:164
|
703 |
msgid "Choices"
|
704 |
msgstr "選択肢"
|
705 |
|
706 |
-
#: core/fields/checkbox.php:
|
|
|
707 |
#: core/fields/select.php:165
|
708 |
msgid "Enter your choices one per line"
|
709 |
msgstr "選択肢を一行ずつ入力してください"
|
710 |
|
711 |
-
#: core/fields/checkbox.php:
|
|
|
712 |
#: core/fields/select.php:167
|
713 |
msgid "Red"
|
714 |
msgstr "赤"
|
715 |
|
716 |
-
#: core/fields/checkbox.php:
|
|
|
717 |
#: core/fields/select.php:168
|
718 |
msgid "Blue"
|
719 |
msgstr "青"
|
720 |
|
721 |
-
#: core/fields/checkbox.php:
|
|
|
722 |
#: core/fields/select.php:170
|
723 |
msgid "red : Red"
|
724 |
msgstr "red : 赤"
|
725 |
|
726 |
-
#: core/fields/checkbox.php:
|
|
|
727 |
#: core/fields/select.php:171
|
728 |
msgid "blue : Blue"
|
729 |
msgstr "blue : 青"
|
@@ -748,149 +645,347 @@ msgstr "例: dd/mm/yy 詳細は"
|
|
748 |
msgid "File"
|
749 |
msgstr "ファイル"
|
750 |
|
751 |
-
#: core/fields/file.php:
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: core/fields/file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
756 |
msgid "No File Selected"
|
757 |
msgstr "ファイルが選択されていません"
|
758 |
|
759 |
-
#: core/fields/file.php:
|
760 |
msgid "Add File"
|
761 |
msgstr "ファイルを追加する"
|
762 |
|
763 |
-
#: core/fields/file.php:
|
|
|
764 |
msgid "Return Value"
|
765 |
msgstr "返り値"
|
766 |
|
767 |
-
#: core/fields/file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
msgid "No files selected"
|
769 |
msgstr "ファイルが選択されていません"
|
770 |
|
771 |
-
#: core/fields/file.php:
|
772 |
msgid "Add Selected Files"
|
773 |
msgstr "選択されたファイルを追加する"
|
774 |
|
775 |
-
#: core/fields/file.php:
|
776 |
msgid "Select File"
|
777 |
msgstr "ファイルを選択する"
|
778 |
|
|
|
|
|
|
|
|
|
779 |
#: core/fields/flexible_content.php:21
|
780 |
msgid "Flexible Content"
|
781 |
msgstr "柔軟コンテンツ"
|
782 |
|
783 |
-
#: core/fields/flexible_content.php:38
|
784 |
-
#: core/fields/
|
785 |
msgid "+ Add Row"
|
786 |
msgstr "+ 行を追加する"
|
787 |
|
788 |
-
#: core/fields/flexible_content.php:
|
789 |
-
#: core/fields/repeater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
msgid "Layout"
|
791 |
msgstr "レイアウト"
|
792 |
|
793 |
-
#: core/fields/flexible_content.php:
|
794 |
msgid "Reorder Layout"
|
795 |
msgstr "レイアウトの並べ替え"
|
796 |
|
797 |
-
#: core/fields/flexible_content.php:
|
798 |
msgid "Reorder"
|
799 |
msgstr "並べ替え"
|
800 |
|
801 |
-
#: core/fields/flexible_content.php:
|
802 |
msgid "Add New Layout"
|
803 |
msgstr "レイアウトを追加する"
|
804 |
|
805 |
-
#: core/fields/flexible_content.php:
|
806 |
msgid "Delete Layout"
|
807 |
msgstr "レイアウトを削除する"
|
808 |
|
809 |
-
#: core/fields/flexible_content.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
810 |
msgid "Label"
|
811 |
msgstr "ラベル"
|
812 |
|
813 |
-
#: core/fields/flexible_content.php:
|
814 |
msgid "Name"
|
815 |
msgstr "名前"
|
816 |
|
817 |
-
#: core/fields/flexible_content.php:
|
818 |
msgid "Display"
|
819 |
msgstr "表示"
|
820 |
|
821 |
-
#: core/fields/flexible_content.php:
|
822 |
msgid "Table"
|
823 |
msgstr "テーブル"
|
824 |
|
825 |
-
#: core/fields/flexible_content.php:
|
|
|
826 |
msgid "Row"
|
827 |
msgstr "行"
|
828 |
|
829 |
-
#: core/fields/flexible_content.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
831 |
msgstr "フィールドがありません。\"+ サブフィールドを追加するボタン\" をクリックして最初のフィールドを作成してください"
|
832 |
|
833 |
-
#: core/fields/flexible_content.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
834 |
msgid "Close Sub Field"
|
835 |
msgstr "サブフィールドを閉じる"
|
836 |
|
837 |
-
#: core/fields/flexible_content.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
838 |
msgid "+ Add Sub Field"
|
839 |
msgstr "+ サブフィールドを追加する"
|
840 |
|
841 |
-
#: core/fields/flexible_content.php:
|
|
|
842 |
msgid "Button Label"
|
843 |
msgstr "ボタンラベル"
|
844 |
|
845 |
-
#: core/fields/
|
846 |
-
msgid "
|
847 |
-
msgstr "
|
848 |
-
|
849 |
-
#: core/fields/image.php:153
|
850 |
-
msgid "No image selected"
|
851 |
-
msgstr "画像が選択されていません"
|
852 |
|
853 |
-
#: core/fields/
|
854 |
-
|
855 |
-
|
|
|
856 |
|
857 |
-
#: core/fields/
|
858 |
-
|
859 |
-
|
|
|
860 |
|
861 |
-
#: core/fields/
|
862 |
-
|
863 |
-
|
|
|
864 |
|
865 |
-
#: core/fields/
|
|
|
866 |
msgid "Preview Size"
|
867 |
msgstr "プレビューサイズ"
|
868 |
|
869 |
-
#: core/fields/
|
870 |
-
msgid "Thumbnail"
|
871 |
-
msgstr "
|
872 |
|
873 |
-
#: core/fields/
|
874 |
-
msgid "
|
875 |
-
msgstr "
|
876 |
|
877 |
-
#: core/fields/
|
878 |
-
|
879 |
-
|
|
|
|
|
880 |
|
881 |
-
#: core/fields/
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
|
885 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
886 |
msgid "No images selected"
|
887 |
msgstr "画像が選択されていません"
|
888 |
|
889 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
msgid "Add selected Images"
|
891 |
msgstr "選択した画像を追加する"
|
892 |
|
893 |
-
#: core/fields/image.php:
|
894 |
msgid "Select Image"
|
895 |
msgstr "画像を選択する"
|
896 |
|
@@ -898,41 +993,43 @@ msgstr "画像を選択する"
|
|
898 |
msgid "Page Link"
|
899 |
msgstr "ページリンク"
|
900 |
|
901 |
-
#: core/fields/page_link.php:
|
902 |
-
#: core/fields/
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
msgid "Filter posts by selecting a post type<br />\n\t\t\t\tTip: deselect all post types to show all post type's posts"
|
908 |
-
msgstr "投稿タイプを選択して、投稿をフィルタする<br />\n\t\t\t\tヒント: 全ての投稿タイプの選択を外すと、全ての投稿タイプの投稿を表示します"
|
909 |
-
|
910 |
-
#: core/fields/page_link.php:200 core/fields/post_object.php:213
|
911 |
-
#: core/fields/post_object.php:237 core/fields/relationship.php:250
|
912 |
-
#: core/fields/relationship.php:301
|
913 |
-
msgid "All"
|
914 |
-
msgstr "全て"
|
915 |
|
916 |
-
#: core/fields/page_link.php:
|
|
|
917 |
#: core/fields/select.php:194
|
918 |
msgid "Allow Null?"
|
919 |
msgstr "無を許可するか?"
|
920 |
|
921 |
-
#: core/fields/page_link.php:
|
922 |
-
#: core/fields/
|
923 |
-
#: core/fields/
|
924 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
925 |
msgid "Yes"
|
926 |
msgstr "はい"
|
927 |
|
928 |
-
#: core/fields/page_link.php:
|
929 |
-
#: core/fields/
|
930 |
-
#: core/fields/
|
931 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
932 |
msgid "No"
|
933 |
msgstr "いいえ"
|
934 |
|
935 |
-
#: core/fields/page_link.php:
|
|
|
936 |
#: core/fields/select.php:213
|
937 |
msgid "Select multiple values?"
|
938 |
msgstr "複数の値を選択できるか?"
|
@@ -941,7 +1038,8 @@ msgstr "複数の値を選択できるか?"
|
|
941 |
msgid "Post Object"
|
942 |
msgstr "投稿オブジェクト"
|
943 |
|
944 |
-
#: core/fields/post_object.php:
|
|
|
945 |
msgid "Filter from Taxonomy"
|
946 |
msgstr "分類でフィルタする"
|
947 |
|
@@ -949,8 +1047,10 @@ msgstr "分類でフィルタする"
|
|
949 |
msgid "Radio Button"
|
950 |
msgstr "ラジオボタン"
|
951 |
|
952 |
-
#: core/fields/radio.php:130
|
953 |
-
#: core/fields/
|
|
|
|
|
954 |
msgid "Default Value"
|
955 |
msgstr "デフォルト値"
|
956 |
|
@@ -966,39 +1066,49 @@ msgstr "水平"
|
|
966 |
msgid "Relationship"
|
967 |
msgstr "関連"
|
968 |
|
969 |
-
#: core/fields/relationship.php:
|
970 |
msgid "Search"
|
971 |
msgstr "検索"
|
972 |
|
973 |
-
#: core/fields/relationship.php:
|
974 |
msgid "Maximum posts"
|
975 |
msgstr "最大投稿数"
|
976 |
|
977 |
-
#: core/fields/relationship.php:319
|
978 |
-
msgid "Set to -1 for infinite"
|
979 |
-
msgstr "-1 にすると無制限"
|
980 |
-
|
981 |
#: core/fields/repeater.php:21
|
982 |
msgid "Repeater"
|
983 |
msgstr "繰り返し"
|
984 |
|
985 |
-
#: core/fields/repeater.php:
|
|
|
|
|
|
|
|
|
|
|
986 |
msgid "Repeater Fields"
|
987 |
msgstr "繰り返しフィールド"
|
988 |
|
989 |
-
#: core/fields/repeater.php:
|
990 |
-
msgid "
|
991 |
-
msgstr "
|
|
|
|
|
|
|
|
|
992 |
|
993 |
-
#: core/fields/repeater.php:
|
994 |
msgid "Table (default)"
|
995 |
msgstr "テーブル (デフォルト)"
|
996 |
|
|
|
|
|
|
|
|
|
997 |
#: core/fields/text.php:21
|
998 |
msgid "Text"
|
999 |
msgstr "テキスト"
|
1000 |
|
1001 |
-
#: core/fields/text.php:75
|
|
|
1002 |
msgid "Formatting"
|
1003 |
msgstr "フォーマット"
|
1004 |
|
@@ -1006,11 +1116,13 @@ msgstr "フォーマット"
|
|
1006 |
msgid "Define how to render html tags"
|
1007 |
msgstr "html タグの表示を決定する"
|
1008 |
|
1009 |
-
#: core/fields/text.php:85
|
|
|
1010 |
msgid "None"
|
1011 |
msgstr "無"
|
1012 |
|
1013 |
-
#: core/fields/text.php:86
|
|
|
1014 |
msgid "HTML"
|
1015 |
msgstr "HTML"
|
1016 |
|
@@ -1042,26 +1154,228 @@ msgstr "例: 追加コンテンツを表示する"
|
|
1042 |
msgid "Wysiwyg Editor"
|
1043 |
msgstr "Wysiwyg エディタ"
|
1044 |
|
1045 |
-
#: core/fields/wysiwyg.php:
|
1046 |
msgid "Toolbar"
|
1047 |
msgstr "ツールバー"
|
1048 |
|
1049 |
-
#: core/fields/wysiwyg.php:
|
|
|
|
|
|
|
|
|
|
|
1050 |
msgid "Show Media Upload Buttons?"
|
1051 |
msgstr "メディアアップロードボタンを表示するか?"
|
1052 |
|
1053 |
-
#: core/
|
1054 |
-
msgid "
|
1055 |
-
msgstr "
|
1056 |
|
1057 |
-
#: core/
|
1058 |
-
msgid "
|
1059 |
-
msgstr "
|
1060 |
|
1061 |
-
#: core/
|
1062 |
-
msgid "
|
1063 |
-
msgstr "
|
1064 |
|
1065 |
-
#: core/
|
1066 |
-
msgid "
|
1067 |
-
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: 2012-08-11 08:33:20+00:00\n"
|
8 |
+
"PO-Revision-Date: 2012-08-17 11:10+0900\n"
|
9 |
+
"Last-Translator: Fumito MIZUNO <ounziw@gmail.com>\n"
|
10 |
+
"Language-Team: JAPANESE <mizuno@php-web.net>\n"
|
11 |
+
"Language: \n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
15 |
|
16 |
+
#: acf.php:281
|
17 |
+
#: core/views/meta_box_options.php:94
|
18 |
msgid "Custom Fields"
|
19 |
msgstr "カスタムフィールド"
|
20 |
|
21 |
+
#: acf.php:302
|
22 |
+
msgid "Field Groups"
|
23 |
+
msgstr "フィールドグループ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
#: acf.php:303
|
26 |
+
#: core/controllers/field_groups.php:283
|
27 |
+
#: core/controllers/upgrade.php:70
|
28 |
msgid "Advanced Custom Fields"
|
29 |
msgstr "Advanced Custom Fields"
|
30 |
|
31 |
+
#: acf.php:304
|
32 |
+
#: core/fields/flexible_content.php:325
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Add New"
|
34 |
msgstr "新規追加"
|
35 |
|
36 |
+
#: acf.php:305
|
37 |
msgid "Add New Field Group"
|
38 |
msgstr "フィールドグループを新規追加"
|
39 |
|
40 |
+
#: acf.php:306
|
41 |
msgid "Edit Field Group"
|
42 |
msgstr "フィールドグループを編集"
|
43 |
|
44 |
+
#: acf.php:307
|
45 |
msgid "New Field Group"
|
46 |
msgstr "新規フィールドグループ"
|
47 |
|
48 |
+
#: acf.php:308
|
49 |
msgid "View Field Group"
|
50 |
msgstr "フィールドグループを表示"
|
51 |
|
52 |
+
#: acf.php:309
|
53 |
msgid "Search Field Groups"
|
54 |
msgstr "フィールドグループを検索"
|
55 |
|
56 |
+
#: acf.php:310
|
57 |
msgid "No Field Groups found"
|
58 |
msgstr "フィールドグループが見つかりません"
|
59 |
|
60 |
+
#: acf.php:311
|
61 |
msgid "No Field Groups found in Trash"
|
62 |
msgstr "ゴミ箱にフィールドグループが見つかりません"
|
63 |
|
64 |
+
#: acf.php:346
|
65 |
+
#: acf.php:349
|
66 |
msgid "Field group updated."
|
67 |
msgstr "フィールドグループを更新しました"
|
68 |
|
69 |
+
#: acf.php:347
|
70 |
msgid "Custom field updated."
|
71 |
msgstr "カスタムフィールドを更新しました"
|
72 |
|
73 |
+
#: acf.php:348
|
74 |
msgid "Custom field deleted."
|
75 |
msgstr "カスタムフィールドが削除されました"
|
76 |
|
77 |
#. translators: %s: date and time of the revision
|
78 |
+
#: acf.php:351
|
79 |
msgid "Field group restored to revision from %s"
|
80 |
msgstr "リビジョン %s からフィールドグループを復元しました"
|
81 |
|
82 |
+
#: acf.php:352
|
83 |
msgid "Field group published."
|
84 |
msgstr "フィールドグループを公開しました"
|
85 |
|
86 |
+
#: acf.php:353
|
87 |
msgid "Field group saved."
|
88 |
msgstr "フィールドグループを保存しました"
|
89 |
|
90 |
+
#: acf.php:354
|
91 |
msgid "Field group submitted."
|
92 |
msgstr "フィールドグループを送信しました"
|
93 |
|
94 |
+
#: acf.php:355
|
95 |
msgid "Field group scheduled for."
|
96 |
msgstr "フィールドグループを予約しました"
|
97 |
|
98 |
+
#: acf.php:356
|
99 |
msgid "Field group draft updated."
|
100 |
msgstr "フィールドグループ下書きを更新しました"
|
101 |
|
102 |
+
#: acf.php:375
|
103 |
+
#: core/fields/gallery.php:66
|
104 |
+
#: core/fields/gallery.php:229
|
105 |
msgid "Title"
|
106 |
msgstr "タイトル"
|
107 |
|
108 |
+
#: acf.php:597
|
109 |
+
msgid "Error: Field Type does not exist!"
|
110 |
+
msgstr "エラー: フィールドタイプが存在しません"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
+
#: acf.php:1599
|
113 |
+
msgid "Thumbnail"
|
114 |
+
msgstr "サムネイル"
|
|
|
115 |
|
116 |
+
#: acf.php:1600
|
117 |
+
msgid "Medium"
|
118 |
+
msgstr "中"
|
119 |
|
120 |
+
#: acf.php:1601
|
121 |
+
msgid "Large"
|
122 |
+
msgstr "大"
|
123 |
|
124 |
+
#: acf.php:1602
|
125 |
+
#: core/fields/wysiwyg.php:85
|
126 |
+
msgid "Full"
|
127 |
+
msgstr "フルサイズ"
|
128 |
|
129 |
+
#: core/actions/export.php:19
|
130 |
+
msgid "No ACF groups selected"
|
131 |
+
msgstr "ACF グループが選択されていません"
|
132 |
|
133 |
+
#: core/controllers/field_group.php:148
|
134 |
+
#: core/controllers/field_groups.php:190
|
135 |
+
msgid "Fields"
|
136 |
+
msgstr "フィールド"
|
137 |
|
138 |
+
#: core/controllers/field_group.php:149
|
139 |
+
msgid "Location"
|
140 |
+
msgstr "位置"
|
141 |
|
142 |
+
#: core/controllers/field_group.php:149
|
143 |
+
msgid "Add Fields to Edit Screens"
|
144 |
+
msgstr "編集画面にフィールドを追加する"
|
145 |
|
146 |
+
#: core/controllers/field_group.php:150
|
147 |
+
#: core/controllers/field_group.php:400
|
148 |
+
#: core/controllers/options_page.php:62
|
149 |
+
#: core/controllers/options_page.php:74
|
150 |
+
#: core/views/meta_box_location.php:143
|
151 |
+
msgid "Options"
|
152 |
+
msgstr "オプション"
|
153 |
|
154 |
+
#: core/controllers/field_group.php:150
|
155 |
+
msgid "Customise the edit page"
|
156 |
+
msgstr "編集ページをカスタマイズする"
|
157 |
|
158 |
+
#: core/controllers/field_group.php:328
|
159 |
+
msgid "Parent Page"
|
160 |
msgstr "親ページ"
|
161 |
|
162 |
+
#: core/controllers/field_group.php:329
|
163 |
+
msgid "Child Page"
|
164 |
+
msgstr "子ページ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
|
166 |
+
#: core/controllers/field_group.php:337
|
167 |
+
msgid "Default Template"
|
168 |
+
msgstr "デフォルトテンプレート"
|
169 |
|
170 |
+
#: core/controllers/field_group.php:424
|
171 |
+
#: core/controllers/field_group.php:445
|
172 |
+
#: core/controllers/field_group.php:452
|
173 |
+
#: core/fields/page_link.php:76
|
174 |
+
#: core/fields/post_object.php:222
|
175 |
+
#: core/fields/post_object.php:250
|
176 |
+
#: core/fields/relationship.php:320
|
177 |
+
#: core/fields/relationship.php:349
|
178 |
+
msgid "All"
|
179 |
msgstr "全て"
|
180 |
|
181 |
+
#: core/controllers/field_groups.php:243
|
182 |
+
#: core/views/meta_box_options.php:50
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
msgid "Normal"
|
184 |
msgstr "Normal"
|
185 |
|
186 |
+
#: core/controllers/field_groups.php:244
|
187 |
+
#: core/views/meta_box_options.php:51
|
188 |
msgid "Side"
|
189 |
msgstr "Side"
|
190 |
|
191 |
+
#: core/controllers/field_groups.php:254
|
192 |
+
#: core/views/meta_box_options.php:70
|
|
|
|
|
|
|
193 |
msgid "Standard Metabox"
|
194 |
msgstr "標準メタボックス"
|
195 |
|
196 |
+
#: core/controllers/field_groups.php:255
|
197 |
+
#: core/views/meta_box_options.php:71
|
198 |
msgid "No Metabox"
|
199 |
msgstr "メタボックス無"
|
200 |
|
201 |
+
#: core/controllers/field_groups.php:285
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid "Changelog"
|
203 |
msgstr "更新履歴"
|
204 |
|
205 |
+
#: core/controllers/field_groups.php:286
|
206 |
msgid "See what's new in"
|
207 |
msgstr "新着情報で見る"
|
208 |
|
209 |
+
#: core/controllers/field_groups.php:288
|
210 |
msgid "Resources"
|
211 |
msgstr "リソース"
|
212 |
|
213 |
+
#: core/controllers/field_groups.php:289
|
214 |
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
215 |
msgstr "次のプロジェクトのため、ドキュメントを読み、関数を学び、便利な使い方を探しましょう。"
|
216 |
|
217 |
+
#: core/controllers/field_groups.php:290
|
218 |
+
msgid "Visit the ACF website"
|
219 |
msgstr "ACF ウェブサイトを見る"
|
220 |
|
221 |
+
#: core/controllers/field_groups.php:295
|
222 |
msgid "Created by"
|
223 |
msgstr "作成"
|
224 |
|
225 |
+
#: core/controllers/field_groups.php:298
|
226 |
msgid "Vote"
|
227 |
msgstr "投票"
|
228 |
|
229 |
+
#: core/controllers/field_groups.php:299
|
230 |
msgid "Follow"
|
231 |
msgstr "フォロー"
|
232 |
|
233 |
+
#: core/controllers/input.php:449
|
234 |
+
msgid "Validation Failed. One or more fields below are required."
|
235 |
+
msgstr "検証に失敗しました。下記のフィールドの少なくとも一つが必須です。"
|
236 |
+
|
237 |
+
#: core/controllers/input.php:450
|
238 |
+
msgid "Add File to Field"
|
239 |
+
msgstr "ファイルをフィールドに追加する"
|
240 |
+
|
241 |
+
#: core/controllers/input.php:451
|
242 |
+
msgid "Edit File"
|
243 |
+
msgstr "ファイルを追加する"
|
244 |
+
|
245 |
+
#: core/controllers/input.php:452
|
246 |
+
msgid "Add Image to Field"
|
247 |
+
msgstr "画像をフィールドに追加する"
|
248 |
+
|
249 |
+
#: core/controllers/input.php:453
|
250 |
+
#: core/controllers/input.php:456
|
251 |
+
msgid "Edit Image"
|
252 |
+
msgstr "画像を編集する"
|
253 |
+
|
254 |
+
#: core/controllers/input.php:454
|
255 |
+
msgid "Maximum values reached ( {max} values )"
|
256 |
+
msgstr "最大値( {max} ) に達しました"
|
257 |
+
|
258 |
+
#: core/controllers/input.php:455
|
259 |
+
msgid "Add Image to Gallery"
|
260 |
+
msgstr "画像をギャラリーに追加する"
|
261 |
|
262 |
+
#: core/controllers/input.php:546
|
263 |
+
msgid "Attachment updated"
|
264 |
+
msgstr "アタッチメントを更新しました"
|
265 |
+
|
266 |
+
#: core/controllers/options_page.php:140
|
267 |
+
msgid "Options Updated"
|
268 |
+
msgstr "オプションを更新しました"
|
269 |
+
|
270 |
+
#: core/controllers/options_page.php:249
|
271 |
+
msgid "No Custom Field Group found for the options page"
|
272 |
+
msgstr "オプションページにカスタムフィールドグループが見つかりませんでした"
|
273 |
+
|
274 |
+
#: core/controllers/options_page.php:249
|
275 |
+
msgid "Create a Custom Field Group"
|
276 |
+
msgstr "カスタムフィールドグループを作成する"
|
277 |
+
|
278 |
+
#: core/controllers/options_page.php:260
|
279 |
+
msgid "Publish"
|
280 |
+
msgstr "公開する"
|
281 |
+
|
282 |
+
#: core/controllers/options_page.php:263
|
283 |
+
msgid "Save Options"
|
284 |
+
msgstr "オプションを保存する"
|
285 |
+
|
286 |
+
#: core/controllers/settings.php:49
|
287 |
+
msgid "Settings"
|
288 |
+
msgstr "設定"
|
289 |
+
|
290 |
+
#: core/controllers/settings.php:111
|
291 |
+
msgid "Repeater field deactivated"
|
292 |
+
msgstr "繰り返しフィールドを無効化しました"
|
293 |
+
|
294 |
+
#: core/controllers/settings.php:115
|
295 |
+
msgid "Options page deactivated"
|
296 |
+
msgstr "オプションページを無効化しました"
|
297 |
+
|
298 |
+
#: core/controllers/settings.php:119
|
299 |
+
msgid "Flexible Content field deactivated"
|
300 |
+
msgstr "柔軟コンテンツフィールドを無効化しました"
|
301 |
+
|
302 |
+
#: core/controllers/settings.php:123
|
303 |
+
msgid "Gallery field deactivated"
|
304 |
+
msgstr "ギャラリーフィールドを無効化しました"
|
305 |
+
|
306 |
+
#: core/controllers/settings.php:147
|
307 |
+
msgid "Repeater field activated"
|
308 |
+
msgstr "繰り返しフィールドを有効化しました"
|
309 |
+
|
310 |
+
#: core/controllers/settings.php:151
|
311 |
+
msgid "Options page activated"
|
312 |
+
msgstr "オプションページを有効化しました"
|
313 |
+
|
314 |
+
#: core/controllers/settings.php:155
|
315 |
+
msgid "Flexible Content field activated"
|
316 |
+
msgstr "柔軟コンテンツフィールドを有効化しました"
|
317 |
+
|
318 |
+
#: core/controllers/settings.php:159
|
319 |
+
msgid "Gallery field activated"
|
320 |
+
msgstr "ギャラリーフィールドを有効化しました"
|
321 |
+
|
322 |
+
#: core/controllers/settings.php:164
|
323 |
+
msgid "License key unrecognised"
|
324 |
+
msgstr "ライセンスキーが認識できません"
|
325 |
+
|
326 |
+
#: core/controllers/settings.php:216
|
327 |
msgid "Activate Add-ons."
|
328 |
msgstr "アドオンを有効化する"
|
329 |
|
330 |
+
#: core/controllers/settings.php:217
|
331 |
+
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
332 |
+
msgstr "アドオンは、ライセンスキーを購入することでロック解除できます。キーは、複数のサイトで使用できます。"
|
333 |
+
|
334 |
+
#: core/controllers/settings.php:218
|
335 |
+
msgid "Find Add-ons"
|
336 |
+
msgstr "アドオンを探す"
|
337 |
+
|
338 |
+
#: core/controllers/settings.php:225
|
339 |
+
#: core/fields/flexible_content.php:380
|
340 |
+
#: core/fields/flexible_content.php:456
|
341 |
+
#: core/fields/repeater.php:288
|
342 |
+
#: core/fields/repeater.php:364
|
343 |
+
#: core/views/meta_box_fields.php:63
|
344 |
+
#: core/views/meta_box_fields.php:136
|
345 |
+
msgid "Field Type"
|
346 |
+
msgstr "フィールドタイプ"
|
347 |
+
|
348 |
+
#: core/controllers/settings.php:226
|
349 |
msgid "Status"
|
350 |
msgstr "ステータス"
|
351 |
|
352 |
+
#: core/controllers/settings.php:227
|
353 |
msgid "Activation Code"
|
354 |
msgstr "アクティベーションコード"
|
355 |
|
356 |
+
#: core/controllers/settings.php:232
|
357 |
msgid "Repeater Field"
|
358 |
msgstr "繰り返しフィールド"
|
359 |
|
360 |
+
#: core/controllers/settings.php:233
|
361 |
+
#: core/controllers/settings.php:252
|
362 |
+
#: core/controllers/settings.php:271
|
363 |
+
#: core/controllers/settings.php:290
|
364 |
msgid "Active"
|
365 |
msgstr "有効"
|
366 |
|
367 |
+
#: core/controllers/settings.php:233
|
368 |
+
#: core/controllers/settings.php:252
|
369 |
+
#: core/controllers/settings.php:271
|
370 |
+
#: core/controllers/settings.php:290
|
371 |
msgid "Inactive"
|
372 |
msgstr "無効"
|
373 |
|
374 |
+
#: core/controllers/settings.php:239
|
375 |
+
#: core/controllers/settings.php:258
|
376 |
+
#: core/controllers/settings.php:277
|
377 |
+
#: core/controllers/settings.php:296
|
378 |
+
msgid "Deactivate"
|
379 |
+
msgstr "無効化"
|
380 |
+
|
381 |
+
#: core/controllers/settings.php:245
|
382 |
+
#: core/controllers/settings.php:264
|
383 |
+
#: core/controllers/settings.php:283
|
384 |
+
#: core/controllers/settings.php:302
|
385 |
+
msgid "Activate"
|
386 |
+
msgstr "有効化"
|
387 |
+
|
388 |
+
#: core/controllers/settings.php:251
|
389 |
msgid "Flexible Content Field"
|
390 |
msgstr "柔軟コンテンツフィールド"
|
391 |
|
392 |
+
#: core/controllers/settings.php:270
|
393 |
+
msgid "Gallery Field"
|
394 |
+
msgstr "ギャラリーフィールド"
|
395 |
|
396 |
+
#: core/controllers/settings.php:289
|
397 |
+
#: core/views/meta_box_location.php:74
|
398 |
+
msgid "Options Page"
|
399 |
+
msgstr "オプションページ"
|
400 |
|
401 |
+
#: core/controllers/settings.php:314
|
402 |
msgid "Export Field Groups to XML"
|
403 |
msgstr "フィールドグループを XML 形式でエクスポート"
|
404 |
|
405 |
+
#: core/controllers/settings.php:315
|
406 |
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
407 |
msgstr "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグインと互換性があります。"
|
408 |
|
409 |
+
#: core/controllers/settings.php:316
|
410 |
+
#: core/controllers/settings.php:354
|
411 |
+
msgid "Instructions"
|
412 |
+
msgstr "説明"
|
413 |
|
414 |
+
#: core/controllers/settings.php:318
|
415 |
msgid "Import Field Groups"
|
416 |
msgstr "フィールドグループをインポートする"
|
417 |
|
418 |
+
#: core/controllers/settings.php:319
|
419 |
+
msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
|
420 |
+
msgstr "インポートしたフィールドグループは、編集可能なフィールドグループの一覧に表示されます。WP ウェブサイト間でフィールドグループを移行するのに役立ちます。"
|
421 |
+
|
422 |
+
#: core/controllers/settings.php:321
|
423 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
424 |
+
msgstr "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリックしてください"
|
425 |
|
426 |
+
#: core/controllers/settings.php:322
|
427 |
+
msgid "Save the .xml file when prompted"
|
428 |
+
msgstr "指示に従って .xml ファイルを保存してください"
|
429 |
|
430 |
+
#: core/controllers/settings.php:323
|
431 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
432 |
+
msgstr "ツール » インポートと進み、WordPress を選択してください"
|
433 |
|
434 |
+
#: core/controllers/settings.php:324
|
435 |
msgid "Install WP import plugin if prompted"
|
436 |
msgstr "(インストールを促された場合は) WP インポートプラグインをインストールしてください"
|
437 |
|
438 |
+
#: core/controllers/settings.php:325
|
439 |
msgid "Upload and import your exported .xml file"
|
440 |
msgstr "エクスポートした .xml ファイルをアップロードし、インポートする"
|
441 |
|
442 |
+
#: core/controllers/settings.php:326
|
443 |
msgid "Select your user and ignore Import Attachments"
|
444 |
msgstr "ユーザーを選択し、Import Attachments を無視する"
|
445 |
|
446 |
+
#: core/controllers/settings.php:327
|
447 |
msgid "That's it! Happy WordPressing"
|
448 |
msgstr "これで OK です。WordPress をお楽しみください"
|
449 |
|
450 |
+
#: core/controllers/settings.php:345
|
451 |
+
msgid "Export XML"
|
452 |
+
msgstr "XML をエクスポートする"
|
453 |
+
|
454 |
+
#: core/controllers/settings.php:352
|
455 |
msgid "Export Field Groups to PHP"
|
456 |
msgstr "フィールドグループを PHP 形式でエクスポートする"
|
457 |
|
458 |
+
#: core/controllers/settings.php:353
|
459 |
+
msgid "ACF will create the PHP code to include in your theme."
|
460 |
msgstr "ACF は、テーマに含める PHP コードを作成します"
|
461 |
|
462 |
+
#: core/controllers/settings.php:356
|
463 |
+
#: core/controllers/settings.php:473
|
464 |
+
msgid "Register Field Groups"
|
465 |
+
msgstr "フィールドグループを登録する"
|
466 |
+
|
467 |
+
#: core/controllers/settings.php:357
|
468 |
+
#: core/controllers/settings.php:474
|
469 |
+
msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
|
470 |
+
msgstr "登録したフィールドグループは、編集可能なフィールドグループの一覧に<b>表示されません</b>。テーマにフィールドを含めるときに役立ちます。"
|
471 |
+
|
472 |
+
#: core/controllers/settings.php:358
|
473 |
+
#: core/controllers/settings.php:475
|
474 |
+
msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the origional field group to the trash or remove the code from your functions.php file."
|
475 |
+
msgstr "同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で重複フィールドになることに注意してください。これを修正するには、元のフィールドグループをゴミ箱へ移動するか、functions.php ファイルからこのコードを除去してください。"
|
476 |
|
477 |
+
#: core/controllers/settings.php:360
|
478 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
479 |
+
msgstr "一覧からフィールドグループを選択し、\"PHP を作成する\" をクリックしてください。"
|
480 |
|
481 |
+
#: core/controllers/settings.php:361
|
482 |
+
#: core/controllers/settings.php:477
|
483 |
msgid "Copy the PHP code generated"
|
484 |
msgstr "生成された PHP コードをコピーし、"
|
485 |
|
486 |
+
#: core/controllers/settings.php:362
|
487 |
+
#: core/controllers/settings.php:478
|
488 |
msgid "Paste into your functions.php file"
|
489 |
msgstr "functions.php に貼り付けてください"
|
490 |
|
491 |
+
#: core/controllers/settings.php:363
|
492 |
+
#: core/controllers/settings.php:479
|
493 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
494 |
msgstr "アドオンを有効化するには、最初の何行かのコードを編集して使用してください"
|
495 |
|
496 |
+
#: core/controllers/settings.php:382
|
497 |
+
msgid "Create PHP"
|
498 |
+
msgstr "PHP を作成する"
|
499 |
+
|
500 |
+
#: core/controllers/settings.php:468
|
501 |
msgid "Back to settings"
|
502 |
msgstr "設定に戻る"
|
503 |
|
504 |
+
#: core/controllers/settings.php:503
|
505 |
msgid ""
|
506 |
"/**\n"
|
507 |
" * Activate Add-ons\n"
|
508 |
+
" * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
|
509 |
+
" * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
|
510 |
+
" * Use the commented out code to update the database with your activation code. \n"
|
511 |
+
" * You may place this code inside an IF statement that only runs on theme activation.\n"
|
|
|
|
|
|
|
|
|
512 |
" */"
|
513 |
msgstr ""
|
514 |
+
"/**\n"
|
515 |
+
" * アドオンを有効化する\n"
|
516 |
+
" * アクティベーションコードを入力すると、アドオンをアンロックし、テーマで使用できます。\n"
|
517 |
+
" * すべてのアクティベーションコードはマルチサイトライセンスのため、プレミアムテーマにキーを含めることができます。\n"
|
518 |
+
" * コメントアウトされているコードを使用して、アクティベーションコードでデータベースを更新してください。\n"
|
519 |
+
" * IF 文の中にコードを置くことで、テーマ有効化時にのみコードを実行するようにできます。\n"
|
520 |
+
" */"
|
521 |
|
522 |
+
#: core/controllers/settings.php:518
|
523 |
msgid ""
|
524 |
"/**\n"
|
525 |
" * Register field groups\n"
|
526 |
+
" * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
|
527 |
+
" * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
|
|
|
|
|
528 |
" * This code must run every time the functions.php file is read\n"
|
529 |
" */"
|
530 |
msgstr ""
|
531 |
+
"/**\n"
|
532 |
+
" * フィールドグループを登録する\n"
|
533 |
+
" * register_field_group 関数は、フィールドグループを登録するのに関係するデータを持っている一つの配列を受け付けます。\n"
|
534 |
+
" * 配列を好きなように編集することができます。しかし、配列が ACF と互換性の無い場合、エラーになってしまいます。\n"
|
535 |
+
" * このコードは、functions.php ファイルを読み込む度に実行する必要があります。\n"
|
536 |
+
" */"
|
537 |
|
538 |
+
#: core/controllers/settings.php:557
|
539 |
msgid "No field groups were selected"
|
540 |
msgstr "フィールドグループが選択されていません"
|
541 |
|
542 |
+
#: core/controllers/settings.php:589
|
543 |
+
msgid "Advanced Custom Fields Settings"
|
544 |
+
msgstr "Advanced Custom Fields 設定"
|
545 |
+
|
546 |
+
#: core/controllers/upgrade.php:51
|
547 |
+
msgid "Upgrade"
|
548 |
+
msgstr "更新"
|
549 |
+
|
550 |
+
#: core/controllers/upgrade.php:70
|
551 |
+
msgid "requires a database upgrade"
|
552 |
+
msgstr "データベースの更新が必要です"
|
553 |
+
|
554 |
+
#: core/controllers/upgrade.php:70
|
555 |
+
msgid "why?"
|
556 |
+
msgstr "理由"
|
557 |
+
|
558 |
+
#: core/controllers/upgrade.php:70
|
559 |
+
msgid "Please"
|
560 |
+
msgstr "してください"
|
561 |
+
|
562 |
+
#: core/controllers/upgrade.php:70
|
563 |
+
msgid "backup your database"
|
564 |
+
msgstr "データベースのバックアップ"
|
565 |
+
|
566 |
+
#: core/controllers/upgrade.php:70
|
567 |
+
msgid "then click"
|
568 |
+
msgstr "そしてクリックしてください"
|
569 |
+
|
570 |
+
#: core/controllers/upgrade.php:70
|
571 |
+
msgid "Upgrade Database"
|
572 |
+
msgstr "データベースの更新"
|
573 |
+
|
574 |
+
#: core/controllers/upgrade.php:598
|
575 |
+
msgid "Modifying field group options 'show on page'"
|
576 |
+
msgstr "フィールドグループオプション「ページで表示する」を変更"
|
577 |
+
|
578 |
+
#: core/controllers/upgrade.php:651
|
579 |
+
msgid "Modifying field option 'taxonomy'"
|
580 |
+
msgstr "フィールドオプション「タクソノミー」を変更"
|
581 |
+
|
582 |
#: core/fields/checkbox.php:21
|
583 |
msgid "Checkbox"
|
584 |
msgstr "チェックボックス"
|
585 |
|
586 |
+
#: core/fields/checkbox.php:55
|
587 |
+
#: core/fields/radio.php:45
|
588 |
#: core/fields/select.php:50
|
589 |
msgid "No choices to choose from"
|
590 |
msgstr "選択肢がありません"
|
591 |
|
592 |
+
#: core/fields/checkbox.php:113
|
593 |
+
#: core/fields/radio.php:114
|
594 |
#: core/fields/select.php:164
|
595 |
msgid "Choices"
|
596 |
msgstr "選択肢"
|
597 |
|
598 |
+
#: core/fields/checkbox.php:114
|
599 |
+
#: core/fields/radio.php:115
|
600 |
#: core/fields/select.php:165
|
601 |
msgid "Enter your choices one per line"
|
602 |
msgstr "選択肢を一行ずつ入力してください"
|
603 |
|
604 |
+
#: core/fields/checkbox.php:116
|
605 |
+
#: core/fields/radio.php:117
|
606 |
#: core/fields/select.php:167
|
607 |
msgid "Red"
|
608 |
msgstr "赤"
|
609 |
|
610 |
+
#: core/fields/checkbox.php:117
|
611 |
+
#: core/fields/radio.php:118
|
612 |
#: core/fields/select.php:168
|
613 |
msgid "Blue"
|
614 |
msgstr "青"
|
615 |
|
616 |
+
#: core/fields/checkbox.php:119
|
617 |
+
#: core/fields/radio.php:120
|
618 |
#: core/fields/select.php:170
|
619 |
msgid "red : Red"
|
620 |
msgstr "red : 赤"
|
621 |
|
622 |
+
#: core/fields/checkbox.php:120
|
623 |
+
#: core/fields/radio.php:121
|
624 |
#: core/fields/select.php:171
|
625 |
msgid "blue : Blue"
|
626 |
msgstr "blue : 青"
|
645 |
msgid "File"
|
646 |
msgstr "ファイル"
|
647 |
|
648 |
+
#: core/fields/file.php:48
|
649 |
+
msgid "File Updated."
|
650 |
+
msgstr "ファイルを更新しました"
|
651 |
|
652 |
+
#: core/fields/file.php:89
|
653 |
+
#: core/fields/flexible_content.php:407
|
654 |
+
#: core/fields/gallery.php:251
|
655 |
+
#: core/fields/gallery.php:281
|
656 |
+
#: core/fields/image.php:187
|
657 |
+
#: core/fields/repeater.php:314
|
658 |
+
#: core/views/meta_box_fields.php:87
|
659 |
+
msgid "Edit"
|
660 |
+
msgstr "編集"
|
661 |
+
|
662 |
+
#: core/fields/file.php:90
|
663 |
+
#: core/fields/gallery.php:250
|
664 |
+
#: core/fields/gallery.php:280
|
665 |
+
#: core/fields/image.php:186
|
666 |
+
msgid "Remove"
|
667 |
+
msgstr "取り除く"
|
668 |
+
|
669 |
+
#: core/fields/file.php:195
|
670 |
msgid "No File Selected"
|
671 |
msgstr "ファイルが選択されていません"
|
672 |
|
673 |
+
#: core/fields/file.php:195
|
674 |
msgid "Add File"
|
675 |
msgstr "ファイルを追加する"
|
676 |
|
677 |
+
#: core/fields/file.php:224
|
678 |
+
#: core/fields/image.php:223
|
679 |
msgid "Return Value"
|
680 |
msgstr "返り値"
|
681 |
|
682 |
+
#: core/fields/file.php:234
|
683 |
+
msgid "File URL"
|
684 |
+
msgstr "ファイル URL"
|
685 |
+
|
686 |
+
#: core/fields/file.php:235
|
687 |
+
msgid "Attachment ID"
|
688 |
+
msgstr "Attachment ID"
|
689 |
+
|
690 |
+
#: core/fields/file.php:268
|
691 |
+
#: core/fields/image.php:291
|
692 |
+
msgid "Media attachment updated."
|
693 |
+
msgstr "メディアアタッチメントを更新しました"
|
694 |
+
|
695 |
+
#: core/fields/file.php:393
|
696 |
msgid "No files selected"
|
697 |
msgstr "ファイルが選択されていません"
|
698 |
|
699 |
+
#: core/fields/file.php:488
|
700 |
msgid "Add Selected Files"
|
701 |
msgstr "選択されたファイルを追加する"
|
702 |
|
703 |
+
#: core/fields/file.php:518
|
704 |
msgid "Select File"
|
705 |
msgstr "ファイルを選択する"
|
706 |
|
707 |
+
#: core/fields/file.php:521
|
708 |
+
msgid "Update File"
|
709 |
+
msgstr "ファイルを更新する"
|
710 |
+
|
711 |
#: core/fields/flexible_content.php:21
|
712 |
msgid "Flexible Content"
|
713 |
msgstr "柔軟コンテンツ"
|
714 |
|
715 |
+
#: core/fields/flexible_content.php:38
|
716 |
+
#: core/fields/flexible_content.php:286
|
717 |
msgid "+ Add Row"
|
718 |
msgstr "+ 行を追加する"
|
719 |
|
720 |
+
#: core/fields/flexible_content.php:313
|
721 |
+
#: core/fields/repeater.php:261
|
722 |
+
#: core/views/meta_box_fields.php:25
|
723 |
+
msgid "New Field"
|
724 |
+
msgstr "新規フィールド"
|
725 |
+
|
726 |
+
#: core/fields/flexible_content.php:322
|
727 |
+
#: core/fields/radio.php:144
|
728 |
+
#: core/fields/repeater.php:440
|
729 |
msgid "Layout"
|
730 |
msgstr "レイアウト"
|
731 |
|
732 |
+
#: core/fields/flexible_content.php:324
|
733 |
msgid "Reorder Layout"
|
734 |
msgstr "レイアウトの並べ替え"
|
735 |
|
736 |
+
#: core/fields/flexible_content.php:324
|
737 |
msgid "Reorder"
|
738 |
msgstr "並べ替え"
|
739 |
|
740 |
+
#: core/fields/flexible_content.php:325
|
741 |
msgid "Add New Layout"
|
742 |
msgstr "レイアウトを追加する"
|
743 |
|
744 |
+
#: core/fields/flexible_content.php:326
|
745 |
msgid "Delete Layout"
|
746 |
msgstr "レイアウトを削除する"
|
747 |
|
748 |
+
#: core/fields/flexible_content.php:326
|
749 |
+
#: core/fields/flexible_content.php:410
|
750 |
+
#: core/fields/repeater.php:317
|
751 |
+
#: core/views/meta_box_fields.php:90
|
752 |
+
msgid "Delete"
|
753 |
+
msgstr "削除"
|
754 |
+
|
755 |
+
#: core/fields/flexible_content.php:336
|
756 |
msgid "Label"
|
757 |
msgstr "ラベル"
|
758 |
|
759 |
+
#: core/fields/flexible_content.php:346
|
760 |
msgid "Name"
|
761 |
msgstr "名前"
|
762 |
|
763 |
+
#: core/fields/flexible_content.php:356
|
764 |
msgid "Display"
|
765 |
msgstr "表示"
|
766 |
|
767 |
+
#: core/fields/flexible_content.php:363
|
768 |
msgid "Table"
|
769 |
msgstr "テーブル"
|
770 |
|
771 |
+
#: core/fields/flexible_content.php:364
|
772 |
+
#: core/fields/repeater.php:451
|
773 |
msgid "Row"
|
774 |
msgstr "行"
|
775 |
|
776 |
+
#: core/fields/flexible_content.php:377
|
777 |
+
#: core/fields/repeater.php:285
|
778 |
+
#: core/views/meta_box_fields.php:60
|
779 |
+
msgid "Field Order"
|
780 |
+
msgstr "フィールド順序"
|
781 |
+
|
782 |
+
#: core/fields/flexible_content.php:378
|
783 |
+
#: core/fields/flexible_content.php:425
|
784 |
+
#: core/fields/repeater.php:286
|
785 |
+
#: core/fields/repeater.php:333
|
786 |
+
#: core/views/meta_box_fields.php:61
|
787 |
+
#: core/views/meta_box_fields.php:105
|
788 |
+
msgid "Field Label"
|
789 |
+
msgstr "フィールドラベル"
|
790 |
+
|
791 |
+
#: core/fields/flexible_content.php:379
|
792 |
+
#: core/fields/flexible_content.php:441
|
793 |
+
#: core/fields/repeater.php:287
|
794 |
+
#: core/fields/repeater.php:349
|
795 |
+
#: core/views/meta_box_fields.php:62
|
796 |
+
#: core/views/meta_box_fields.php:121
|
797 |
+
msgid "Field Name"
|
798 |
+
msgstr "フィールド名"
|
799 |
+
|
800 |
+
#: core/fields/flexible_content.php:388
|
801 |
+
#: core/fields/repeater.php:296
|
802 |
msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
803 |
msgstr "フィールドがありません。\"+ サブフィールドを追加するボタン\" をクリックして最初のフィールドを作成してください"
|
804 |
|
805 |
+
#: core/fields/flexible_content.php:404
|
806 |
+
#: core/fields/flexible_content.php:407
|
807 |
+
#: core/fields/repeater.php:311
|
808 |
+
#: core/fields/repeater.php:314
|
809 |
+
#: core/views/meta_box_fields.php:84
|
810 |
+
#: core/views/meta_box_fields.php:87
|
811 |
+
msgid "Edit this Field"
|
812 |
+
msgstr "このフィールドを編集する"
|
813 |
+
|
814 |
+
#: core/fields/flexible_content.php:408
|
815 |
+
#: core/fields/repeater.php:315
|
816 |
+
#: core/views/meta_box_fields.php:88
|
817 |
+
msgid "Read documentation for this field"
|
818 |
+
msgstr "このフィールドのドキュメントを読む"
|
819 |
+
|
820 |
+
#: core/fields/flexible_content.php:408
|
821 |
+
#: core/fields/repeater.php:315
|
822 |
+
#: core/views/meta_box_fields.php:88
|
823 |
+
msgid "Docs"
|
824 |
+
msgstr "ドキュメント"
|
825 |
+
|
826 |
+
#: core/fields/flexible_content.php:409
|
827 |
+
#: core/fields/repeater.php:316
|
828 |
+
#: core/views/meta_box_fields.php:89
|
829 |
+
msgid "Duplicate this Field"
|
830 |
+
msgstr "このフィールドを複製する"
|
831 |
+
|
832 |
+
#: core/fields/flexible_content.php:409
|
833 |
+
#: core/fields/repeater.php:316
|
834 |
+
#: core/views/meta_box_fields.php:89
|
835 |
+
msgid "Duplicate"
|
836 |
+
msgstr "複製"
|
837 |
+
|
838 |
+
#: core/fields/flexible_content.php:410
|
839 |
+
#: core/fields/repeater.php:317
|
840 |
+
#: core/views/meta_box_fields.php:90
|
841 |
+
msgid "Delete this Field"
|
842 |
+
msgstr "このフィールドを削除する"
|
843 |
+
|
844 |
+
#: core/fields/flexible_content.php:426
|
845 |
+
#: core/fields/repeater.php:334
|
846 |
+
#: core/views/meta_box_fields.php:106
|
847 |
+
msgid "This is the name which will appear on the EDIT page"
|
848 |
+
msgstr "編集ページで表示される名前です"
|
849 |
+
|
850 |
+
#: core/fields/flexible_content.php:442
|
851 |
+
#: core/fields/repeater.php:350
|
852 |
+
#: core/views/meta_box_fields.php:122
|
853 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
854 |
+
msgstr "単一語。スペース無し。アンダースコアとダッシュは使用可能。"
|
855 |
+
|
856 |
+
#: core/fields/flexible_content.php:476
|
857 |
+
#: core/fields/repeater.php:384
|
858 |
+
msgid "Save Field"
|
859 |
+
msgstr "フィールドを保存する"
|
860 |
+
|
861 |
+
#: core/fields/flexible_content.php:481
|
862 |
+
#: core/fields/repeater.php:389
|
863 |
+
#: core/views/meta_box_fields.php:188
|
864 |
+
msgid "Close Field"
|
865 |
+
msgstr "フィールドを閉じる"
|
866 |
+
|
867 |
+
#: core/fields/flexible_content.php:481
|
868 |
+
#: core/fields/repeater.php:389
|
869 |
msgid "Close Sub Field"
|
870 |
msgstr "サブフィールドを閉じる"
|
871 |
|
872 |
+
#: core/fields/flexible_content.php:495
|
873 |
+
#: core/fields/repeater.php:404
|
874 |
+
#: core/views/meta_box_fields.php:201
|
875 |
+
msgid "Drag and drop to reorder"
|
876 |
+
msgstr "ドラッグアンドドロップで順序変更する"
|
877 |
+
|
878 |
+
#: core/fields/flexible_content.php:496
|
879 |
+
#: core/fields/repeater.php:405
|
880 |
msgid "+ Add Sub Field"
|
881 |
msgstr "+ サブフィールドを追加する"
|
882 |
|
883 |
+
#: core/fields/flexible_content.php:503
|
884 |
+
#: core/fields/repeater.php:459
|
885 |
msgid "Button Label"
|
886 |
msgstr "ボタンラベル"
|
887 |
|
888 |
+
#: core/fields/gallery.php:25
|
889 |
+
msgid "Gallery"
|
890 |
+
msgstr "ギャラリー"
|
|
|
|
|
|
|
|
|
891 |
|
892 |
+
#: core/fields/gallery.php:70
|
893 |
+
#: core/fields/gallery.php:233
|
894 |
+
msgid "Alternate Text"
|
895 |
+
msgstr "代替テキスト"
|
896 |
|
897 |
+
#: core/fields/gallery.php:74
|
898 |
+
#: core/fields/gallery.php:237
|
899 |
+
msgid "Caption"
|
900 |
+
msgstr "キャプション"
|
901 |
|
902 |
+
#: core/fields/gallery.php:78
|
903 |
+
#: core/fields/gallery.php:241
|
904 |
+
msgid "Description"
|
905 |
+
msgstr "説明"
|
906 |
|
907 |
+
#: core/fields/gallery.php:117
|
908 |
+
#: core/fields/image.php:243
|
909 |
msgid "Preview Size"
|
910 |
msgstr "プレビューサイズ"
|
911 |
|
912 |
+
#: core/fields/gallery.php:118
|
913 |
+
msgid "Thumbnail is advised"
|
914 |
+
msgstr "サムネイル推奨"
|
915 |
|
916 |
+
#: core/fields/gallery.php:179
|
917 |
+
msgid "Image Updated"
|
918 |
+
msgstr "画像を更新しました"
|
919 |
|
920 |
+
#: core/fields/gallery.php:262
|
921 |
+
#: core/fields/gallery.php:642
|
922 |
+
#: core/fields/image.php:193
|
923 |
+
msgid "Add Image"
|
924 |
+
msgstr "画像を追加する"
|
925 |
|
926 |
+
#: core/fields/gallery.php:263
|
927 |
+
msgid "Grid"
|
928 |
+
msgstr "グリッド"
|
929 |
|
930 |
+
#: core/fields/gallery.php:264
|
931 |
+
msgid "List"
|
932 |
+
msgstr "一覧"
|
933 |
+
|
934 |
+
#: core/fields/gallery.php:266
|
935 |
+
#: core/fields/image.php:428
|
936 |
msgid "No images selected"
|
937 |
msgstr "画像が選択されていません"
|
938 |
|
939 |
+
#: core/fields/gallery.php:266
|
940 |
+
msgid "1 image selected"
|
941 |
+
msgstr "画像が 1 枚選択されています"
|
942 |
+
|
943 |
+
#: core/fields/gallery.php:266
|
944 |
+
msgid "{count} images selected"
|
945 |
+
msgstr "画像が {count} 枚選択されています"
|
946 |
+
|
947 |
+
#: core/fields/gallery.php:585
|
948 |
+
msgid "Image already exists in gallery"
|
949 |
+
msgstr "ギャラリーに画像が存在しています"
|
950 |
+
|
951 |
+
#: core/fields/gallery.php:591
|
952 |
+
msgid "Image Added"
|
953 |
+
msgstr "画像を追加しました"
|
954 |
+
|
955 |
+
#: core/fields/gallery.php:645
|
956 |
+
#: core/fields/image.php:556
|
957 |
+
msgid "Update Image"
|
958 |
+
msgstr "画像を更新する"
|
959 |
+
|
960 |
+
#: core/fields/image.php:21
|
961 |
+
msgid "Image"
|
962 |
+
msgstr "画像"
|
963 |
+
|
964 |
+
#: core/fields/image.php:49
|
965 |
+
msgid "Image Updated."
|
966 |
+
msgstr "画像を更新しました"
|
967 |
+
|
968 |
+
#: core/fields/image.php:193
|
969 |
+
msgid "No image selected"
|
970 |
+
msgstr "画像が選択されていません"
|
971 |
+
|
972 |
+
#: core/fields/image.php:233
|
973 |
+
msgid "Image Object"
|
974 |
+
msgstr "画像オブジェクト"
|
975 |
+
|
976 |
+
#: core/fields/image.php:234
|
977 |
+
msgid "Image URL"
|
978 |
+
msgstr "画像 URL"
|
979 |
+
|
980 |
+
#: core/fields/image.php:235
|
981 |
+
msgid "Image ID"
|
982 |
+
msgstr "画像 ID"
|
983 |
+
|
984 |
+
#: core/fields/image.php:524
|
985 |
msgid "Add selected Images"
|
986 |
msgstr "選択した画像を追加する"
|
987 |
|
988 |
+
#: core/fields/image.php:553
|
989 |
msgid "Select Image"
|
990 |
msgstr "画像を選択する"
|
991 |
|
993 |
msgid "Page Link"
|
994 |
msgstr "ページリンク"
|
995 |
|
996 |
+
#: core/fields/page_link.php:70
|
997 |
+
#: core/fields/post_object.php:216
|
998 |
+
#: core/fields/relationship.php:314
|
999 |
+
#: core/views/meta_box_location.php:48
|
1000 |
+
msgid "Post Type"
|
1001 |
+
msgstr "投稿タイプ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
|
1003 |
+
#: core/fields/page_link.php:98
|
1004 |
+
#: core/fields/post_object.php:267
|
1005 |
#: core/fields/select.php:194
|
1006 |
msgid "Allow Null?"
|
1007 |
msgstr "無を許可するか?"
|
1008 |
|
1009 |
+
#: core/fields/page_link.php:107
|
1010 |
+
#: core/fields/page_link.php:126
|
1011 |
+
#: core/fields/post_object.php:276
|
1012 |
+
#: core/fields/post_object.php:295
|
1013 |
+
#: core/fields/select.php:203
|
1014 |
+
#: core/fields/select.php:222
|
1015 |
+
#: core/fields/wysiwyg.php:104
|
1016 |
+
#: core/views/meta_box_fields.php:170
|
1017 |
msgid "Yes"
|
1018 |
msgstr "はい"
|
1019 |
|
1020 |
+
#: core/fields/page_link.php:108
|
1021 |
+
#: core/fields/page_link.php:127
|
1022 |
+
#: core/fields/post_object.php:277
|
1023 |
+
#: core/fields/post_object.php:296
|
1024 |
+
#: core/fields/select.php:204
|
1025 |
+
#: core/fields/select.php:223
|
1026 |
+
#: core/fields/wysiwyg.php:105
|
1027 |
+
#: core/views/meta_box_fields.php:171
|
1028 |
msgid "No"
|
1029 |
msgstr "いいえ"
|
1030 |
|
1031 |
+
#: core/fields/page_link.php:117
|
1032 |
+
#: core/fields/post_object.php:286
|
1033 |
#: core/fields/select.php:213
|
1034 |
msgid "Select multiple values?"
|
1035 |
msgstr "複数の値を選択できるか?"
|
1038 |
msgid "Post Object"
|
1039 |
msgstr "投稿オブジェクト"
|
1040 |
|
1041 |
+
#: core/fields/post_object.php:244
|
1042 |
+
#: core/fields/relationship.php:343
|
1043 |
msgid "Filter from Taxonomy"
|
1044 |
msgstr "分類でフィルタする"
|
1045 |
|
1047 |
msgid "Radio Button"
|
1048 |
msgstr "ラジオボタン"
|
1049 |
|
1050 |
+
#: core/fields/radio.php:130
|
1051 |
+
#: core/fields/select.php:180
|
1052 |
+
#: core/fields/text.php:61
|
1053 |
+
#: core/fields/textarea.php:62
|
1054 |
msgid "Default Value"
|
1055 |
msgstr "デフォルト値"
|
1056 |
|
1066 |
msgid "Relationship"
|
1067 |
msgstr "関連"
|
1068 |
|
1069 |
+
#: core/fields/relationship.php:236
|
1070 |
msgid "Search"
|
1071 |
msgstr "検索"
|
1072 |
|
1073 |
+
#: core/fields/relationship.php:366
|
1074 |
msgid "Maximum posts"
|
1075 |
msgstr "最大投稿数"
|
1076 |
|
|
|
|
|
|
|
|
|
1077 |
#: core/fields/repeater.php:21
|
1078 |
msgid "Repeater"
|
1079 |
msgstr "繰り返し"
|
1080 |
|
1081 |
+
#: core/fields/repeater.php:66
|
1082 |
+
#: core/fields/repeater.php:248
|
1083 |
+
msgid "Add Row"
|
1084 |
+
msgstr "行を追加する"
|
1085 |
+
|
1086 |
+
#: core/fields/repeater.php:277
|
1087 |
msgid "Repeater Fields"
|
1088 |
msgstr "繰り返しフィールド"
|
1089 |
|
1090 |
+
#: core/fields/repeater.php:412
|
1091 |
+
msgid "Minimum Rows"
|
1092 |
+
msgstr "最小行数"
|
1093 |
+
|
1094 |
+
#: core/fields/repeater.php:426
|
1095 |
+
msgid "Maximum Rows"
|
1096 |
+
msgstr "最大行数"
|
1097 |
|
1098 |
+
#: core/fields/repeater.php:450
|
1099 |
msgid "Table (default)"
|
1100 |
msgstr "テーブル (デフォルト)"
|
1101 |
|
1102 |
+
#: core/fields/select.php:21
|
1103 |
+
msgid "Select"
|
1104 |
+
msgstr "セレクトボックス"
|
1105 |
+
|
1106 |
#: core/fields/text.php:21
|
1107 |
msgid "Text"
|
1108 |
msgstr "テキスト"
|
1109 |
|
1110 |
+
#: core/fields/text.php:75
|
1111 |
+
#: core/fields/textarea.php:76
|
1112 |
msgid "Formatting"
|
1113 |
msgstr "フォーマット"
|
1114 |
|
1116 |
msgid "Define how to render html tags"
|
1117 |
msgstr "html タグの表示を決定する"
|
1118 |
|
1119 |
+
#: core/fields/text.php:85
|
1120 |
+
#: core/fields/textarea.php:86
|
1121 |
msgid "None"
|
1122 |
msgstr "無"
|
1123 |
|
1124 |
+
#: core/fields/text.php:86
|
1125 |
+
#: core/fields/textarea.php:88
|
1126 |
msgid "HTML"
|
1127 |
msgstr "HTML"
|
1128 |
|
1154 |
msgid "Wysiwyg Editor"
|
1155 |
msgstr "Wysiwyg エディタ"
|
1156 |
|
1157 |
+
#: core/fields/wysiwyg.php:75
|
1158 |
msgid "Toolbar"
|
1159 |
msgstr "ツールバー"
|
1160 |
|
1161 |
+
#: core/fields/wysiwyg.php:86
|
1162 |
+
#: core/views/meta_box_location.php:47
|
1163 |
+
msgid "Basic"
|
1164 |
+
msgstr "基本"
|
1165 |
+
|
1166 |
+
#: core/fields/wysiwyg.php:94
|
1167 |
msgid "Show Media Upload Buttons?"
|
1168 |
msgstr "メディアアップロードボタンを表示するか?"
|
1169 |
|
1170 |
+
#: core/views/meta_box_fields.php:26
|
1171 |
+
msgid "new_field"
|
1172 |
+
msgstr "新規フィールド"
|
1173 |
|
1174 |
+
#: core/views/meta_box_fields.php:47
|
1175 |
+
msgid "Move to trash. Are you sure?"
|
1176 |
+
msgstr "ゴミ箱に移動させようとしています。よろしいですか?"
|
1177 |
|
1178 |
+
#: core/views/meta_box_fields.php:73
|
1179 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
1180 |
+
msgstr "フィールドはありません。<strong>+ 新規追加</strong>ボタンをクリックして最初のフィールドを作成してください"
|
1181 |
|
1182 |
+
#: core/views/meta_box_fields.php:149
|
1183 |
+
msgid "Field Instructions"
|
1184 |
+
msgstr "フィールドの説明"
|
1185 |
+
|
1186 |
+
#: core/views/meta_box_fields.php:150
|
1187 |
+
msgid "Instructions for authors. Shown when submitting data"
|
1188 |
+
msgstr "作成者向けの説明。データ送信時に表示されます"
|
1189 |
+
|
1190 |
+
#: core/views/meta_box_fields.php:162
|
1191 |
+
msgid "Required?"
|
1192 |
+
msgstr "必須か?"
|
1193 |
+
|
1194 |
+
#: core/views/meta_box_fields.php:202
|
1195 |
+
msgid "+ Add Field"
|
1196 |
+
msgstr "+ 新規追加"
|
1197 |
+
|
1198 |
+
#: core/views/meta_box_location.php:35
|
1199 |
+
msgid "Rules"
|
1200 |
+
msgstr "ルール"
|
1201 |
+
|
1202 |
+
#: core/views/meta_box_location.php:36
|
1203 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
1204 |
+
msgstr "どの編集画面でこれらの advanced custom fields を使用するかを決定するルールを作成する"
|
1205 |
+
|
1206 |
+
#: core/views/meta_box_location.php:49
|
1207 |
+
msgid "Logged in User Type"
|
1208 |
+
msgstr "ログインしているユーザーのタイプ"
|
1209 |
+
|
1210 |
+
#: core/views/meta_box_location.php:51
|
1211 |
+
msgid "Page Specific"
|
1212 |
+
msgstr "特定のページ"
|
1213 |
+
|
1214 |
+
#: core/views/meta_box_location.php:52
|
1215 |
+
msgid "Page"
|
1216 |
+
msgstr "ページ"
|
1217 |
+
|
1218 |
+
#: core/views/meta_box_location.php:53
|
1219 |
+
msgid "Page Type"
|
1220 |
+
msgstr "ページタイプ"
|
1221 |
+
|
1222 |
+
#: core/views/meta_box_location.php:54
|
1223 |
+
msgid "Page Parent"
|
1224 |
+
msgstr "親ページ"
|
1225 |
+
|
1226 |
+
#: core/views/meta_box_location.php:55
|
1227 |
+
msgid "Page Template"
|
1228 |
+
msgstr "ページテンプレート"
|
1229 |
+
|
1230 |
+
#: core/views/meta_box_location.php:57
|
1231 |
+
msgid "Post Specific"
|
1232 |
+
msgstr "特定の投稿"
|
1233 |
+
|
1234 |
+
#: core/views/meta_box_location.php:58
|
1235 |
+
msgid "Post"
|
1236 |
+
msgstr "投稿"
|
1237 |
+
|
1238 |
+
#: core/views/meta_box_location.php:59
|
1239 |
+
msgid "Post Category"
|
1240 |
+
msgstr "投稿カテゴリー"
|
1241 |
+
|
1242 |
+
#: core/views/meta_box_location.php:60
|
1243 |
+
msgid "Post Format"
|
1244 |
+
msgstr "投稿フォーマット"
|
1245 |
+
|
1246 |
+
#: core/views/meta_box_location.php:61
|
1247 |
+
msgid "Post Taxonomy"
|
1248 |
+
msgstr "投稿分類"
|
1249 |
+
|
1250 |
+
#: core/views/meta_box_location.php:63
|
1251 |
+
msgid "Other"
|
1252 |
+
msgstr "その他"
|
1253 |
+
|
1254 |
+
#: core/views/meta_box_location.php:64
|
1255 |
+
msgid "Taxonomy (Add / Edit)"
|
1256 |
+
msgstr "分類(追加/編集)"
|
1257 |
+
|
1258 |
+
#: core/views/meta_box_location.php:65
|
1259 |
+
msgid "User (Add / Edit)"
|
1260 |
+
msgstr "ユーザー(追加/編集)"
|
1261 |
+
|
1262 |
+
#: core/views/meta_box_location.php:66
|
1263 |
+
msgid "Media (Edit)"
|
1264 |
+
msgstr "メディア(編集)"
|
1265 |
+
|
1266 |
+
#: core/views/meta_box_location.php:96
|
1267 |
+
msgid "is equal to"
|
1268 |
+
msgstr "等しい"
|
1269 |
+
|
1270 |
+
#: core/views/meta_box_location.php:97
|
1271 |
+
msgid "is not equal to"
|
1272 |
+
msgstr "等しくない"
|
1273 |
+
|
1274 |
+
#: core/views/meta_box_location.php:121
|
1275 |
+
msgid "match"
|
1276 |
+
msgstr "一致する"
|
1277 |
+
|
1278 |
+
#: core/views/meta_box_location.php:127
|
1279 |
+
msgid "all"
|
1280 |
+
msgstr "全て"
|
1281 |
+
|
1282 |
+
#: core/views/meta_box_location.php:128
|
1283 |
+
msgid "any"
|
1284 |
+
msgstr "任意"
|
1285 |
+
|
1286 |
+
#: core/views/meta_box_location.php:131
|
1287 |
+
msgid "of the above"
|
1288 |
+
msgstr "上述の"
|
1289 |
+
|
1290 |
+
#: core/views/meta_box_location.php:144
|
1291 |
+
msgid "Unlock options add-on with an activation code"
|
1292 |
+
msgstr "アクティベーションコードでオプションアドオンをロック解除する"
|
1293 |
+
|
1294 |
+
#: core/views/meta_box_options.php:23
|
1295 |
+
msgid "Order No."
|
1296 |
+
msgstr "順序番号"
|
1297 |
+
|
1298 |
+
#: core/views/meta_box_options.php:24
|
1299 |
+
msgid "Field groups are created in order <br />from lowest to highest."
|
1300 |
+
msgstr "フィールドグループは、<br />低いほうから高いほうへ作成されます"
|
1301 |
+
|
1302 |
+
#: core/views/meta_box_options.php:40
|
1303 |
+
msgid "Position"
|
1304 |
+
msgstr "位置"
|
1305 |
+
|
1306 |
+
#: core/views/meta_box_options.php:60
|
1307 |
+
msgid "Style"
|
1308 |
+
msgstr "Style"
|
1309 |
+
|
1310 |
+
#: core/views/meta_box_options.php:80
|
1311 |
+
msgid "Hide on screen"
|
1312 |
+
msgstr "画面に表示しない"
|
1313 |
+
|
1314 |
+
#: core/views/meta_box_options.php:81
|
1315 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1316 |
+
msgstr "編集画面で<b>表示しない</b>アイテムを<b>選択する</b>"
|
1317 |
+
|
1318 |
+
#: core/views/meta_box_options.php:82
|
1319 |
+
msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
|
1320 |
+
msgstr "編集画面に複数のフィールドグループが表示される場合、最初の(=順序番号の最も低い)フィールドグループのオプションが使用されます。"
|
1321 |
+
|
1322 |
+
#: core/views/meta_box_options.php:92
|
1323 |
+
msgid "Content Editor"
|
1324 |
+
msgstr "コンテンツエディタ"
|
1325 |
+
|
1326 |
+
#: core/views/meta_box_options.php:93
|
1327 |
+
msgid "Excerpt"
|
1328 |
+
msgstr "抜粋"
|
1329 |
+
|
1330 |
+
#: core/views/meta_box_options.php:95
|
1331 |
+
msgid "Discussion"
|
1332 |
+
msgstr "ディスカッション"
|
1333 |
+
|
1334 |
+
#: core/views/meta_box_options.php:96
|
1335 |
+
msgid "Comments"
|
1336 |
+
msgstr "コメント"
|
1337 |
+
|
1338 |
+
#: core/views/meta_box_options.php:97
|
1339 |
+
msgid "Slug"
|
1340 |
+
msgstr "スラッグ"
|
1341 |
+
|
1342 |
+
#: core/views/meta_box_options.php:98
|
1343 |
+
msgid "Author"
|
1344 |
+
msgstr "作成者"
|
1345 |
+
|
1346 |
+
#: core/views/meta_box_options.php:99
|
1347 |
+
msgid "Format"
|
1348 |
+
msgstr "フォーマット"
|
1349 |
+
|
1350 |
+
#: core/views/meta_box_options.php:100
|
1351 |
+
msgid "Featured Image"
|
1352 |
+
msgstr "アイキャッチ画像"
|
1353 |
+
|
1354 |
+
#~ msgid "Everything Fields deactivated"
|
1355 |
+
#~ msgstr "全フィールドを無効化しました"
|
1356 |
+
|
1357 |
+
#~ msgid "Everything Fields activated"
|
1358 |
+
#~ msgstr "全フィールドを有効化しました"
|
1359 |
+
|
1360 |
+
#~ msgid "Navigate to the"
|
1361 |
+
#~ msgstr "に進む"
|
1362 |
+
|
1363 |
+
#~ msgid "Import Tool"
|
1364 |
+
#~ msgstr "インポートツール"
|
1365 |
+
|
1366 |
+
#~ msgid "and select WordPress"
|
1367 |
+
#~ msgstr "WordPress を選択する"
|
1368 |
+
|
1369 |
+
#~ msgid ""
|
1370 |
+
#~ "Filter posts by selecting a post type<br />\n"
|
1371 |
+
#~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
|
1372 |
+
#~ msgstr ""
|
1373 |
+
#~ "投稿タイプを選択して、投稿をフィルタする<br />\n"
|
1374 |
+
#~ "\t\t\t\tヒント: 全ての投稿タイプの選択を外すと、全ての投稿タイプの投稿を表"
|
1375 |
+
#~ "示します"
|
1376 |
+
|
1377 |
+
#~ msgid "Set to -1 for infinite"
|
1378 |
+
#~ msgstr "-1 にすると無制限"
|
1379 |
+
|
1380 |
+
#~ msgid "Row Limit"
|
1381 |
+
#~ msgstr "行制限"
|
readme.txt
CHANGED
@@ -85,6 +85,14 @@ http://support.advancedcustomfields.com/
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 3.3.8 =
|
89 |
* [Added] Gallery field { auto add image on upload, new style to show already added images
|
90 |
* [Fixed] Fix saving value issue with WP e-commerce http://support.advancedcustomfields.com/discussion/comment/7026#Comment_7026
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 3.3.9 =
|
89 |
+
* [Added] Add basic support for WPML - duplicate field groups, pages and posts for each language without corrupting ACF data!
|
90 |
+
* [Fixed] Fix date picker save null - http://support.advancedcustomfields.com/discussion/2844/bug-with-the-date-picker
|
91 |
+
* [Fixed] Fix color picker save null - http://support.advancedcustomfields.com/discussion/2683/allow-null-on-colour-pickers#Item_1
|
92 |
+
* [Fixed] Fix image object null result - http://support.advancedcustomfields.com/discussion/2852/3.3.8-image-field-image-object-always-returns-true-
|
93 |
+
* [Updated] Update Japanese translation - http://support.advancedcustomfields.com/discussion/comment/7384#Comment_7384
|
94 |
+
* [Added] WYSIWYG field option - disable "the_content" filter to allow for compatibility issues with plugins / themes - http://support.advancedcustomfields.com/discussion/comment/7020#Comment_7020
|
95 |
+
|
96 |
= 3.3.8 =
|
97 |
* [Added] Gallery field { auto add image on upload, new style to show already added images
|
98 |
* [Fixed] Fix saving value issue with WP e-commerce http://support.advancedcustomfields.com/discussion/comment/7026#Comment_7026
|