Version Description
[ Add function ] Widget Active Controll
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 9.12.0.0 |
Comparing to | |
See all releases |
Code changes from version 9.11.5.0 to 9.12.0.0
- admin/admin-active-setting-page.php +7 -1
- admin/vk-admin/package/class-vk-admin.php +39 -38
- admin/vk-admin/package/images/job_banner-336_280-en.jpg +0 -0
- admin/vk-admin/package/images/job_banner-336_280-ja.jpg +0 -0
- assets/_scss/vkExUnit_admin.scss +66 -30
- assets/css/vkExUnit_admin.css +1 -1
- inc/other-widget/class-veu-other-widget-admin-control.php +26 -0
- inc/other-widget/class-veu-widget-control.php +39 -0
- inc/other-widget/common.php +88 -0
- inc/other-widget/other-widget.php +51 -83
- inc/other-widget/template/admin_setting.php +40 -0
- inc/other-widget/widget-3pr-area.php +10 -9
- inc/other-widget/widget-archives.php +23 -23
- inc/other-widget/widget-banner.php +10 -17
- inc/other-widget/widget-button.php +9 -9
- inc/other-widget/widget-child-page-list.php +0 -73
- inc/other-widget/widget-new-posts.php +10 -10
- inc/other-widget/widget-page.php +9 -9
- inc/other-widget/widget-pr-blocks.php +10 -9
- inc/other-widget/widget-profile.php +10 -10
- inc/other-widget/widget-side-child-page-list.php +10 -11
- inc/other-widget/widget-taxonomies.php +9 -12
- inc/sns/function_og.php +2 -0
- inc/template-tags/package/template-tags-veu.php +1 -0
- languages/vk-all-in-one-expansion-unit-ja.mo +0 -0
- languages/vk-all-in-one-expansion-unit-ja.po +0 -3004
- languages/vk-all-in-one-expansion-unit.pot +0 -1844
- readme.txt +4 -0
- uninstaller.php +1 -0
- veu-packages.php +6 -1
- vkExUnit.php +2 -2
admin/admin-active-setting-page.php
CHANGED
@@ -4,6 +4,7 @@
|
|
4 |
</h2>
|
5 |
|
6 |
<div class="adminMain">
|
|
|
7 |
<form method="post" action="options.php">
|
8 |
<?php
|
9 |
settings_fields( 'vkExUnit_common_options_fields' );
|
@@ -42,7 +43,7 @@ foreach ( $vkExUnit_packages as $package ) :
|
|
42 |
/>
|
43 |
</th>
|
44 |
<td class='plugin-title'>
|
45 |
-
<strong><?php echo $package['title']; ?></strong>
|
46 |
|
47 |
<?php
|
48 |
$count = '';
|
@@ -92,6 +93,11 @@ foreach ( $vkExUnit_packages as $package ) :
|
|
92 |
|
93 |
</table>
|
94 |
<br />
|
|
|
|
|
|
|
|
|
|
|
95 |
<button onclick="javascript:jQuery('#vkEx_extention').toggle(); return false;" class="button"><?php _e( 'Extension Setting', 'vk-all-in-one-expansion-unit' ); ?></button>
|
96 |
<table class="form-table" id="vkEx_extention" style="display:none;">
|
97 |
<?php /* 誤作動が多いので再調整 */ ?>
|
4 |
</h2>
|
5 |
|
6 |
<div class="adminMain">
|
7 |
+
|
8 |
<form method="post" action="options.php">
|
9 |
<?php
|
10 |
settings_fields( 'vkExUnit_common_options_fields' );
|
43 |
/>
|
44 |
</th>
|
45 |
<td class='plugin-title'>
|
46 |
+
<label for='checkbox_active_<?php echo $package['name']; ?>'><strong><?php echo $package['title']; ?></strong></label>
|
47 |
|
48 |
<?php
|
49 |
$count = '';
|
93 |
|
94 |
</table>
|
95 |
<br />
|
96 |
+
|
97 |
+
<?php
|
98 |
+
do_action( 'vew_admin_setting_block', $options);
|
99 |
+
?>
|
100 |
+
|
101 |
<button onclick="javascript:jQuery('#vkEx_extention').toggle(); return false;" class="button"><?php _e( 'Extension Setting', 'vk-all-in-one-expansion-unit' ); ?></button>
|
102 |
<table class="form-table" id="vkEx_extention" style="display:none;">
|
103 |
<?php /* 誤作動が多いので再調整 */ ?>
|
admin/vk-admin/package/class-vk-admin.php
CHANGED
@@ -45,26 +45,16 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
45 |
}
|
46 |
|
47 |
/*
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
get_news_from_rss
|
55 |
-
/*--------------------------------------------------*/
|
56 |
-
/*
|
57 |
-
admin _ Dashboard Widget
|
58 |
-
/*--------------------------------------------------*/
|
59 |
-
/*
|
60 |
-
admin _ sub
|
61 |
-
/*--------------------------------------------------*/
|
62 |
-
/*
|
63 |
-
admin _ page_frame
|
64 |
/*--------------------------------------------------*/
|
65 |
|
66 |
/*
|
67 |
-
|
68 |
/*--------------------------------------------------*/
|
69 |
public static function get_admin_banner() {
|
70 |
$banner = '';
|
@@ -103,6 +93,17 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
103 |
Display" /></a>';
|
104 |
}
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
// テーマがLightningじゃない場合にLighntingのバナーを表示
|
107 |
if ( ! function_exists( 'lightning_get_theme_name' ) ) {
|
108 |
if ( $lang == 'ja' ) {
|
@@ -155,20 +156,20 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
155 |
}
|
156 |
|
157 |
/*
|
158 |
-
|
159 |
/*--------------------------------------------------*/
|
160 |
public static function get_news_body() {
|
161 |
if ( 'ja' == get_locale() ) {
|
162 |
-
return
|
163 |
}
|
164 |
// English
|
165 |
if ( 'ja' != get_locale() ) {
|
166 |
-
return
|
167 |
}
|
168 |
}
|
169 |
|
170 |
/*
|
171 |
-
|
172 |
/*--------------------------------------------------*/
|
173 |
|
174 |
public static function get_news_from_rest_api() {
|
@@ -202,7 +203,7 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
202 |
|
203 |
public static function load_rest_api_js() {
|
204 |
|
205 |
-
|
206 |
<script>
|
207 |
/*-------------------------------------------*/
|
208 |
/* REST API でお知らせを取得
|
@@ -249,18 +250,18 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
249 |
});
|
250 |
})(jQuery);
|
251 |
</script>
|
252 |
-
|
253 |
}
|
254 |
|
255 |
/*
|
256 |
-
|
257 |
/* RSS方針で現在は日本語以外でのみ使用
|
258 |
/*--------------------------------------------------*/
|
259 |
public static function get_news_from_rss() {
|
260 |
global $vk_admin_textdomain;
|
261 |
$output = '';
|
262 |
|
263 |
-
include_once
|
264 |
|
265 |
if ( 'ja' == get_locale() ) {
|
266 |
$exUnit_feed_url = apply_filters( 'vkAdmin_news_RSS_URL_ja', 'https://ex-unit.nagoya/ja/feed' );
|
@@ -334,11 +335,11 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
334 |
return apply_filters( 'vk-admin-is-dashboard-active', $flag );
|
335 |
}
|
336 |
/*
|
337 |
-
|
338 |
/*--------------------------------------------------*/
|
339 |
public static function dashboard_widget() {
|
340 |
global $vk_admin_textdomain;
|
341 |
-
if (
|
342 |
wp_add_dashboard_widget(
|
343 |
'vk_dashboard_widget',
|
344 |
__( 'Vektor WordPress Information', $vk_admin_textdomain ),
|
@@ -349,13 +350,13 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
349 |
|
350 |
public static function dashboard_widget_body() {
|
351 |
if ( 'ja' == get_locale() ) {
|
352 |
-
echo
|
353 |
}
|
354 |
-
echo
|
355 |
}
|
356 |
|
357 |
/*
|
358 |
-
|
359 |
/*--------------------------------------------------*/
|
360 |
// 2016.08.07 ExUnitの有効化ページでは直接 admin_subを呼び出しているので注意
|
361 |
public static function admin_sub() {
|
@@ -365,19 +366,19 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
365 |
}
|
366 |
$adminSub = '<div class="adminSub scrTracking">' . "\n";
|
367 |
if ( 'ja' == get_locale() ) {
|
368 |
-
$adminSub .= '<div class="infoBox">' .
|
369 |
}
|
370 |
-
$adminSub .= '<div class="vk-admin-banner">' .
|
371 |
|
372 |
$adminSub .= '</div><!-- [ /.adminSub ] -->' . "\n";
|
373 |
return $adminSub;
|
374 |
}
|
375 |
|
376 |
/*
|
377 |
-
|
378 |
/*--------------------------------------------------*/
|
379 |
public static function admin_page_frame( $get_page_title, $the_body_callback, $get_logo_html = '', $get_menu_html = '', $get_layout = 'column_3' ) {
|
380 |
-
|
381 |
<div class="wrap vk_admin_page">
|
382 |
|
383 |
<div class="adminMain <?php echo $get_layout; ?>">
|
@@ -385,7 +386,7 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
385 |
<?php if ( $get_layout == 'column_3' ) : ?>
|
386 |
<div id="adminContent_sub" class="scrTracking">
|
387 |
<div class="pageLogo"><?php echo $get_logo_html; ?></div>
|
388 |
-
|
389 |
<h2 class="page_title"><?php echo $get_page_title; ?></h2>
|
390 |
<?php endif; ?>
|
391 |
<div class="vk_option_nav">
|
@@ -398,7 +399,7 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
398 |
|
399 |
<?php if ( $get_layout == 'column_2' ) : ?>
|
400 |
<div class="pageLogo"><?php echo $get_logo_html; ?></div>
|
401 |
-
|
402 |
<h1 class="page_title"><?php echo $get_page_title; ?></h1>
|
403 |
<?php endif; ?>
|
404 |
<?php endif; ?>
|
@@ -409,10 +410,10 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
|
|
409 |
|
410 |
</div><!-- [ /.adminMain ] -->
|
411 |
|
412 |
-
<?php echo
|
413 |
|
414 |
</div><!-- [ /.vkExUnit_admin_page ] -->
|
415 |
-
|
416 |
}
|
417 |
|
418 |
public function __construct() {
|
45 |
}
|
46 |
|
47 |
/*
|
48 |
+
get_admin_banner
|
49 |
+
get_news_body_api
|
50 |
+
get_news_from_rss
|
51 |
+
admin _ Dashboard Widget
|
52 |
+
admin _ sub
|
53 |
+
admin _ page_frame
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/*--------------------------------------------------*/
|
55 |
|
56 |
/*
|
57 |
+
get_admin_banner
|
58 |
/*--------------------------------------------------*/
|
59 |
public static function get_admin_banner() {
|
60 |
$banner = '';
|
93 |
Display" /></a>';
|
94 |
}
|
95 |
|
96 |
+
// プラグイン VK Job Posting Manager を有効化していない人にバナーを表示
|
97 |
+
if ( ! is_plugin_active( 'vk-google-job-posting-manager/vk-google-job-posting-manager.php' ) ) {
|
98 |
+
if ( $lang == 'ja' ) {
|
99 |
+
$bnr_file_name = 'job_banner-336_280-ja.jpg';
|
100 |
+
} else {
|
101 |
+
$bnr_file_name = 'job_banner-336_280-en.jpg';
|
102 |
+
}
|
103 |
+
$banner .= '<a href="//wordpress.org/plugins/vk-google-job-posting-manager/" target="_blank" class="admin_banner"><img src="' . $dir_url . 'images/' . $bnr_file_name . '" alt="VK Post Author
|
104 |
+
Display" /></a>';
|
105 |
+
}
|
106 |
+
|
107 |
// テーマがLightningじゃない場合にLighntingのバナーを表示
|
108 |
if ( ! function_exists( 'lightning_get_theme_name' ) ) {
|
109 |
if ( $lang == 'ja' ) {
|
156 |
}
|
157 |
|
158 |
/*
|
159 |
+
get_news_body
|
160 |
/*--------------------------------------------------*/
|
161 |
public static function get_news_body() {
|
162 |
if ( 'ja' == get_locale() ) {
|
163 |
+
return self::get_news_from_rest_api();
|
164 |
}
|
165 |
// English
|
166 |
if ( 'ja' != get_locale() ) {
|
167 |
+
return self::get_news_from_rss();
|
168 |
}
|
169 |
}
|
170 |
|
171 |
/*
|
172 |
+
get_news_body_api
|
173 |
/*--------------------------------------------------*/
|
174 |
|
175 |
public static function get_news_from_rest_api() {
|
203 |
|
204 |
public static function load_rest_api_js() {
|
205 |
|
206 |
+
?>
|
207 |
<script>
|
208 |
/*-------------------------------------------*/
|
209 |
/* REST API でお知らせを取得
|
250 |
});
|
251 |
})(jQuery);
|
252 |
</script>
|
253 |
+
<?php
|
254 |
}
|
255 |
|
256 |
/*
|
257 |
+
get_news_from_rss
|
258 |
/* RSS方針で現在は日本語以外でのみ使用
|
259 |
/*--------------------------------------------------*/
|
260 |
public static function get_news_from_rss() {
|
261 |
global $vk_admin_textdomain;
|
262 |
$output = '';
|
263 |
|
264 |
+
include_once ABSPATH . WPINC . '/feed.php';
|
265 |
|
266 |
if ( 'ja' == get_locale() ) {
|
267 |
$exUnit_feed_url = apply_filters( 'vkAdmin_news_RSS_URL_ja', 'https://ex-unit.nagoya/ja/feed' );
|
335 |
return apply_filters( 'vk-admin-is-dashboard-active', $flag );
|
336 |
}
|
337 |
/*
|
338 |
+
admin _ Dashboard Widget
|
339 |
/*--------------------------------------------------*/
|
340 |
public static function dashboard_widget() {
|
341 |
global $vk_admin_textdomain;
|
342 |
+
if ( self::is_dashboard_active() ) {
|
343 |
wp_add_dashboard_widget(
|
344 |
'vk_dashboard_widget',
|
345 |
__( 'Vektor WordPress Information', $vk_admin_textdomain ),
|
350 |
|
351 |
public static function dashboard_widget_body() {
|
352 |
if ( 'ja' == get_locale() ) {
|
353 |
+
echo self::get_news_body();
|
354 |
}
|
355 |
+
echo self::get_admin_banner();
|
356 |
}
|
357 |
|
358 |
/*
|
359 |
+
admin _ sub
|
360 |
/*--------------------------------------------------*/
|
361 |
// 2016.08.07 ExUnitの有効化ページでは直接 admin_subを呼び出しているので注意
|
362 |
public static function admin_sub() {
|
366 |
}
|
367 |
$adminSub = '<div class="adminSub scrTracking">' . "\n";
|
368 |
if ( 'ja' == get_locale() ) {
|
369 |
+
$adminSub .= '<div class="infoBox">' . self::get_news_body() . '</div>' . "\n";
|
370 |
}
|
371 |
+
$adminSub .= '<div class="vk-admin-banner">' . self::get_admin_banner() . '</div>' . "\n";
|
372 |
|
373 |
$adminSub .= '</div><!-- [ /.adminSub ] -->' . "\n";
|
374 |
return $adminSub;
|
375 |
}
|
376 |
|
377 |
/*
|
378 |
+
admin _ page_frame
|
379 |
/*--------------------------------------------------*/
|
380 |
public static function admin_page_frame( $get_page_title, $the_body_callback, $get_logo_html = '', $get_menu_html = '', $get_layout = 'column_3' ) {
|
381 |
+
?>
|
382 |
<div class="wrap vk_admin_page">
|
383 |
|
384 |
<div class="adminMain <?php echo $get_layout; ?>">
|
386 |
<?php if ( $get_layout == 'column_3' ) : ?>
|
387 |
<div id="adminContent_sub" class="scrTracking">
|
388 |
<div class="pageLogo"><?php echo $get_logo_html; ?></div>
|
389 |
+
<?php if ( $get_page_title ) : ?>
|
390 |
<h2 class="page_title"><?php echo $get_page_title; ?></h2>
|
391 |
<?php endif; ?>
|
392 |
<div class="vk_option_nav">
|
399 |
|
400 |
<?php if ( $get_layout == 'column_2' ) : ?>
|
401 |
<div class="pageLogo"><?php echo $get_logo_html; ?></div>
|
402 |
+
<?php if ( $get_page_title ) : ?>
|
403 |
<h1 class="page_title"><?php echo $get_page_title; ?></h1>
|
404 |
<?php endif; ?>
|
405 |
<?php endif; ?>
|
410 |
|
411 |
</div><!-- [ /.adminMain ] -->
|
412 |
|
413 |
+
<?php echo self::admin_sub(); ?>
|
414 |
|
415 |
</div><!-- [ /.vkExUnit_admin_page ] -->
|
416 |
+
<?php
|
417 |
}
|
418 |
|
419 |
public function __construct() {
|
admin/vk-admin/package/images/job_banner-336_280-en.jpg
ADDED
Binary file
|
admin/vk-admin/package/images/job_banner-336_280-ja.jpg
ADDED
Binary file
|
assets/_scss/vkExUnit_admin.scss
CHANGED
@@ -1,68 +1,85 @@
|
|
1 |
@charset "utf-8";
|
2 |
// @import "compass";
|
3 |
|
4 |
-
.wrap.debug_mode{
|
5 |
-
tr.dev_object{
|
|
|
|
|
6 |
}
|
7 |
.veu_metabox_nav {
|
8 |
position: relative;
|
9 |
-
display:block;
|
|
|
10 |
.veu_metabox_all_section_toggle {
|
11 |
position: relative;
|
12 |
-
right:0;
|
13 |
-
top:0;
|
14 |
// 以下スキンなどによって負けないように指定しているので消さないように
|
15 |
opacity: 1;
|
16 |
-
float:none;
|
17 |
}
|
18 |
}
|
19 |
.veu_metabox_footer {
|
20 |
-
padding-top:5px;
|
21 |
.logo_exUnit {
|
22 |
text-align: right;
|
23 |
border: none;
|
24 |
-
img {
|
|
|
|
|
25 |
}
|
26 |
}
|
27 |
|
28 |
.veu_metabox_all_section_toggle.close {
|
29 |
-
.veu_metabox_all_section_toggle_btn_open {
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
}
|
32 |
.veu_metabox_all_section_toggle.open {
|
33 |
-
.veu_metabox_all_section_toggle_btn_open {
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
}
|
36 |
|
37 |
-
|
38 |
.veu_metabox_section {
|
39 |
label {
|
40 |
font-weight: normal;
|
41 |
}
|
42 |
-
input[type=checkbox] {
|
43 |
-
margin-top:0;
|
44 |
-
margin-right:4px;
|
45 |
}
|
46 |
input,
|
47 |
select,
|
48 |
textarea {
|
49 |
-
margin-bottom:5px;
|
50 |
}
|
51 |
&_title {
|
52 |
position: relative;
|
53 |
-
border:1px solid #e5e5e5;
|
54 |
padding: 7px 1rem;
|
55 |
background-color: #f5f5f5;
|
56 |
-
margin:0 0 2px;
|
57 |
font-size: 14px;
|
58 |
cursor: pointer;
|
59 |
&_status_btn {
|
60 |
-
display:block;
|
|
|
61 |
position: absolute;
|
62 |
-
right:10px;
|
63 |
-
top:5px;
|
64 |
-
&.close{
|
65 |
-
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
}
|
68 |
&_body {
|
@@ -71,18 +88,21 @@
|
|
71 |
}
|
72 |
}
|
73 |
.veu_metabox_section.open {
|
74 |
-
.veu_metabox_section_title_status_btn{
|
75 |
-
&.close{
|
76 |
-
|
77 |
-
|
|
|
|
|
|
|
78 |
}
|
79 |
-
.veu_metabox_section_body{
|
80 |
display: block;
|
81 |
}
|
82 |
}
|
83 |
|
84 |
.body-open {
|
85 |
-
border:1px solid #ff0000;
|
86 |
}
|
87 |
|
88 |
.veu_sns_title {
|
@@ -90,3 +110,19 @@
|
|
90 |
width: 100%;
|
91 |
}
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
@charset "utf-8";
|
2 |
// @import "compass";
|
3 |
|
4 |
+
.wrap.debug_mode {
|
5 |
+
tr.dev_object {
|
6 |
+
display: table-row;
|
7 |
+
}
|
8 |
}
|
9 |
.veu_metabox_nav {
|
10 |
position: relative;
|
11 |
+
display: block;
|
12 |
+
overflow: hidden;
|
13 |
.veu_metabox_all_section_toggle {
|
14 |
position: relative;
|
15 |
+
right: 0;
|
16 |
+
top: 0;
|
17 |
// 以下スキンなどによって負けないように指定しているので消さないように
|
18 |
opacity: 1;
|
19 |
+
float: none;
|
20 |
}
|
21 |
}
|
22 |
.veu_metabox_footer {
|
23 |
+
padding-top: 5px;
|
24 |
.logo_exUnit {
|
25 |
text-align: right;
|
26 |
border: none;
|
27 |
+
img {
|
28 |
+
width: 100px;
|
29 |
+
}
|
30 |
}
|
31 |
}
|
32 |
|
33 |
.veu_metabox_all_section_toggle.close {
|
34 |
+
.veu_metabox_all_section_toggle_btn_open {
|
35 |
+
display: block;
|
36 |
+
}
|
37 |
+
.veu_metabox_all_section_toggle_btn_close {
|
38 |
+
display: none;
|
39 |
+
}
|
40 |
}
|
41 |
.veu_metabox_all_section_toggle.open {
|
42 |
+
.veu_metabox_all_section_toggle_btn_open {
|
43 |
+
display: none;
|
44 |
+
}
|
45 |
+
.veu_metabox_all_section_toggle_btn_close {
|
46 |
+
display: block;
|
47 |
+
}
|
48 |
}
|
49 |
|
|
|
50 |
.veu_metabox_section {
|
51 |
label {
|
52 |
font-weight: normal;
|
53 |
}
|
54 |
+
input[type="checkbox"] {
|
55 |
+
margin-top: 0;
|
56 |
+
margin-right: 4px;
|
57 |
}
|
58 |
input,
|
59 |
select,
|
60 |
textarea {
|
61 |
+
margin-bottom: 5px;
|
62 |
}
|
63 |
&_title {
|
64 |
position: relative;
|
65 |
+
border: 1px solid #e5e5e5;
|
66 |
padding: 7px 1rem;
|
67 |
background-color: #f5f5f5;
|
68 |
+
margin: 0 0 2px;
|
69 |
font-size: 14px;
|
70 |
cursor: pointer;
|
71 |
&_status_btn {
|
72 |
+
display: block;
|
73 |
+
overflow: hidden;
|
74 |
position: absolute;
|
75 |
+
right: 10px;
|
76 |
+
top: 5px;
|
77 |
+
&.close {
|
78 |
+
display: block;
|
79 |
+
}
|
80 |
+
&.open {
|
81 |
+
display: none;
|
82 |
+
}
|
83 |
}
|
84 |
}
|
85 |
&_body {
|
88 |
}
|
89 |
}
|
90 |
.veu_metabox_section.open {
|
91 |
+
.veu_metabox_section_title_status_btn {
|
92 |
+
&.close {
|
93 |
+
display: none;
|
94 |
+
}
|
95 |
+
&.open {
|
96 |
+
display: block;
|
97 |
+
}
|
98 |
}
|
99 |
+
.veu_metabox_section_body {
|
100 |
display: block;
|
101 |
}
|
102 |
}
|
103 |
|
104 |
.body-open {
|
105 |
+
border: 1px solid #ff0000;
|
106 |
}
|
107 |
|
108 |
.veu_sns_title {
|
110 |
width: 100%;
|
111 |
}
|
112 |
}
|
113 |
+
|
114 |
+
.table-widget-enablation {
|
115 |
+
width: 100%;
|
116 |
+
tbody {
|
117 |
+
td,
|
118 |
+
th {
|
119 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
120 |
+
}
|
121 |
+
.active {
|
122 |
+
th,
|
123 |
+
td {
|
124 |
+
background-color: #f7fcfe;
|
125 |
+
}
|
126 |
+
}
|
127 |
+
}
|
128 |
+
}
|
assets/css/vkExUnit_admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wrap.debug_mode tr.dev_object{display:table-row}.veu_metabox_nav{position:relative;display:block;overflow:hidden}.veu_metabox_nav .veu_metabox_all_section_toggle{position:relative;right:0;top:0;opacity:1;float:none}.veu_metabox_footer{padding-top:5px}.veu_metabox_footer .logo_exUnit{text-align:right;border:none}.veu_metabox_footer .logo_exUnit img{width:100px}.veu_metabox_all_section_toggle.close .veu_metabox_all_section_toggle_btn_open{display:block}.veu_metabox_all_section_toggle.close .veu_metabox_all_section_toggle_btn_close{display:none}.veu_metabox_all_section_toggle.open .veu_metabox_all_section_toggle_btn_open{display:none}.veu_metabox_all_section_toggle.open .veu_metabox_all_section_toggle_btn_close{display:block}.veu_metabox_section label{font-weight:400}.veu_metabox_section input[type=checkbox]{margin-top:0;margin-right:4px}.veu_metabox_section input,.veu_metabox_section select,.veu_metabox_section textarea{margin-bottom:5px}.veu_metabox_section_title{position:relative;border:1px solid #e5e5e5;padding:7px 1rem;background-color:#f5f5f5;margin:0 0 2px;font-size:14px;cursor:pointer}.veu_metabox_section_title_status_btn{display:block;overflow:hidden;position:absolute;right:10px;top:5px}.veu_metabox_section_title_status_btn.close{display:block}.veu_metabox_section_title_status_btn.open{display:none}.veu_metabox_section_body{display:none;padding:1rem 1rem 2rem}.veu_metabox_section.open .veu_metabox_section_title_status_btn.close{display:none}.veu_metabox_section.open .veu_metabox_section_title_status_btn.open{display:block}.veu_metabox_section.open .veu_metabox_section_body{display:block}.body-open{border:1px solid red}.veu_sns_title input[type=text]{width:100%}
|
1 |
+
.wrap.debug_mode tr.dev_object{display:table-row}.veu_metabox_nav{position:relative;display:block;overflow:hidden}.veu_metabox_nav .veu_metabox_all_section_toggle{position:relative;right:0;top:0;opacity:1;float:none}.veu_metabox_footer{padding-top:5px}.veu_metabox_footer .logo_exUnit{text-align:right;border:none}.veu_metabox_footer .logo_exUnit img{width:100px}.veu_metabox_all_section_toggle.close .veu_metabox_all_section_toggle_btn_open{display:block}.veu_metabox_all_section_toggle.close .veu_metabox_all_section_toggle_btn_close{display:none}.veu_metabox_all_section_toggle.open .veu_metabox_all_section_toggle_btn_open{display:none}.veu_metabox_all_section_toggle.open .veu_metabox_all_section_toggle_btn_close{display:block}.veu_metabox_section label{font-weight:400}.veu_metabox_section input[type=checkbox]{margin-top:0;margin-right:4px}.veu_metabox_section input,.veu_metabox_section select,.veu_metabox_section textarea{margin-bottom:5px}.veu_metabox_section_title{position:relative;border:1px solid #e5e5e5;padding:7px 1rem;background-color:#f5f5f5;margin:0 0 2px;font-size:14px;cursor:pointer}.veu_metabox_section_title_status_btn{display:block;overflow:hidden;position:absolute;right:10px;top:5px}.veu_metabox_section_title_status_btn.close{display:block}.veu_metabox_section_title_status_btn.open{display:none}.veu_metabox_section_body{display:none;padding:1rem 1rem 2rem}.veu_metabox_section.open .veu_metabox_section_title_status_btn.close{display:none}.veu_metabox_section.open .veu_metabox_section_title_status_btn.open{display:block}.veu_metabox_section.open .veu_metabox_section_body{display:block}.body-open{border:1px solid red}.veu_sns_title input[type=text]{width:100%}.table-widget-enablation{width:100%}.table-widget-enablation tbody td,.table-widget-enablation tbody th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.table-widget-enablation tbody .active td,.table-widget-enablation tbody .active th{background-color:#f7fcfe}
|
inc/other-widget/class-veu-other-widget-admin-control.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class VEU_Other_Widget_Admin_Control {
|
4 |
+
function __construct() {
|
5 |
+
add_action('admin_init', array($this, 'add_hooks'));
|
6 |
+
}
|
7 |
+
|
8 |
+
function add_hooks() {
|
9 |
+
add_action( 'vew_admin_setting_block', array($this, 'admin_setting'), 10, 1);
|
10 |
+
add_filter('vkExUnit_common_options_validate', array($this, 'admin_config_validate'), 10, 3);
|
11 |
+
}
|
12 |
+
|
13 |
+
public function admin_config_validate($output, $input, $defaults) {
|
14 |
+
$_v = array();
|
15 |
+
foreach($input['enable_widgets'] as $v ) {
|
16 |
+
array_push($_v, (int) $v);
|
17 |
+
}
|
18 |
+
|
19 |
+
VEU_Widget_Control::update_options($_v);
|
20 |
+
return $output;
|
21 |
+
}
|
22 |
+
|
23 |
+
public function admin_setting($options) {
|
24 |
+
include veu_get_directory() . '/inc/other-widget/template/admin_setting.php';
|
25 |
+
}
|
26 |
+
}
|
inc/other-widget/class-veu-widget-control.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class VEU_Widget_Control {
|
4 |
+
public static function update_options($options) {
|
5 |
+
update_option('vkExUnit_enable_widgets', $options, true);
|
6 |
+
}
|
7 |
+
|
8 |
+
public static function default_options() {
|
9 |
+
$_buf = array();
|
10 |
+
foreach(veu_widget_packages() as $v) {
|
11 |
+
array_push($_buf, $v['id']);
|
12 |
+
}
|
13 |
+
return $_buf;
|
14 |
+
}
|
15 |
+
|
16 |
+
public static function enable_widget_ids() {
|
17 |
+
return get_option('vkExUnit_enable_widgets', self::default_options());
|
18 |
+
$mother = veu_get_common_options();
|
19 |
+
return $mother['enable_widgets'];
|
20 |
+
}
|
21 |
+
|
22 |
+
public static function load_widgets() {
|
23 |
+
$enable_packages = self::enable_widget_ids();
|
24 |
+
foreach(veu_widget_packages() as $package) {
|
25 |
+
if( in_array($package['id'], $enable_packages) ) {
|
26 |
+
require_once veu_get_directory() . '/inc/other-widget/' . $package['include'];
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
public static function widgets_init() {
|
32 |
+
$enable_packages = self::enable_widget_ids();
|
33 |
+
foreach(veu_widget_packages() as $package) {
|
34 |
+
if( in_array($package['id'], $enable_packages) ) {
|
35 |
+
register_widget($package['class']);
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|
39 |
+
}
|
inc/other-widget/common.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* color picker
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
// color picker js
|
7 |
+
add_action( 'admin_enqueue_scripts', 'vkExUnit_admin_scripts_color_picker' );
|
8 |
+
function vkExUnit_admin_scripts_color_picker() {
|
9 |
+
wp_enqueue_style( 'wp-color-picker' );
|
10 |
+
wp_enqueue_script( 'wp-color-picker' );
|
11 |
+
// カラーピッカー対象class指定 ( 外観 > ウィジェット 画面で効かないので一旦コメントアウト )
|
12 |
+
// wp_enqueue_script( 'colorpicker_script', plugins_url( 'js/admin-widget.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
|
13 |
+
}
|
14 |
+
// 外観 > ウィジェット 画面で動作させるために必要
|
15 |
+
add_action( 'admin_footer-widgets.php', 'print_scripts_pr_color' );
|
16 |
+
function print_scripts_pr_color() {
|
17 |
+
?>
|
18 |
+
<script type="text/javascript">
|
19 |
+
(function($){
|
20 |
+
function initColorPicker(widget) {
|
21 |
+
widget.find( '.color_picker' ).wpColorPicker( {
|
22 |
+
change: _.throttle( function() {
|
23 |
+
$(this).trigger('change');
|
24 |
+
}, 3000 )
|
25 |
+
});
|
26 |
+
}
|
27 |
+
|
28 |
+
function onFormUpdate(event, widget) {
|
29 |
+
initColorPicker(widget);
|
30 |
+
}
|
31 |
+
$(document).on('widget-added widget-updated', onFormUpdate );
|
32 |
+
$(document).ready( function() {
|
33 |
+
$('#widgets-right .widget:has(.color_picker)').each( function () {
|
34 |
+
initColorPicker( $(this) );
|
35 |
+
});
|
36 |
+
});
|
37 |
+
}(jQuery));
|
38 |
+
</script>
|
39 |
+
<?php
|
40 |
+
}
|
41 |
+
|
42 |
+
/*-------------------------------------------*/
|
43 |
+
/* archives_where
|
44 |
+
/*-------------------------------------------*/
|
45 |
+
add_filter( 'getarchives_where', 'vkExUnit_info_getarchives_where', 10, 2 );
|
46 |
+
function vkExUnit_info_getarchives_where( $where, $r ) {
|
47 |
+
global $my_archives_post_type;
|
48 |
+
if ( isset( $r['post_type'] ) ) {
|
49 |
+
$my_archives_post_type = $r['post_type'];
|
50 |
+
$where = str_replace( '\'post\'', '\'' . $r['post_type'] . '\'', $where );
|
51 |
+
} else {
|
52 |
+
$my_archives_post_type = '';
|
53 |
+
}
|
54 |
+
return $where;
|
55 |
+
}
|
56 |
+
|
57 |
+
add_filter( 'get_archives_link', 'vkExUnit_rewrite_archives_link' );
|
58 |
+
function vkExUnit_rewrite_archives_link( $link_html ) {
|
59 |
+
global $my_archives_post_type;
|
60 |
+
if ( $my_archives_post_type && $my_archives_post_type != 'post' ) {
|
61 |
+
|
62 |
+
$link_url_before = preg_replace( "/^.+<a.+href=\'(.+)\'.+$/is", '$1', $link_html );
|
63 |
+
if ( $link_html == $link_url_before ) {
|
64 |
+
return $link_html;
|
65 |
+
}
|
66 |
+
|
67 |
+
$olink = parse_url( $link_url_before );
|
68 |
+
if ( preg_match( '/\/' . $my_archives_post_type . '\/?/', $olink['path'] ) ) {
|
69 |
+
return $link_html;
|
70 |
+
}
|
71 |
+
|
72 |
+
if ( ! isset( $olink['query'] ) ) {
|
73 |
+
$olink['query'] = '';
|
74 |
+
}
|
75 |
+
parse_str( $olink['query'], $query );
|
76 |
+
if ( isset( $query['post_type'] ) && $query['post_type'] ) {
|
77 |
+
return $link_html;
|
78 |
+
}
|
79 |
+
|
80 |
+
$query['post_type'] = $my_archives_post_type;
|
81 |
+
$new_query = '?' . http_build_query( $query );
|
82 |
+
$new_url = $olink['scheme'] . '://' . $olink['host'] . $olink['path'] . $new_query;
|
83 |
+
|
84 |
+
$link_html = preg_replace( "/href=\'(.+)\'/", "href='" . $new_url . "'", $link_html );
|
85 |
+
return $link_html;
|
86 |
+
}
|
87 |
+
return $link_html;
|
88 |
+
}
|
inc/other-widget/other-widget.php
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
2 |
require dirname( __FILE__ ) . '/widget-new-posts.php';
|
3 |
require dirname( __FILE__ ) . '/widget-profile.php';
|
4 |
require dirname( __FILE__ ) . '/widget-3pr-area.php';
|
@@ -9,91 +12,56 @@ require dirname( __FILE__ ) . '/widget-pr-blocks.php';
|
|
9 |
require dirname( __FILE__ ) . '/widget-side-child-page-list.php';
|
10 |
require dirname( __FILE__ ) . '/widget-button.php';
|
11 |
require dirname( __FILE__ ) . '/widget-banner.php';
|
12 |
-
// require veu_get_directory() . '/inc/other_widget/widget-child-page-list.php';
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
// color picker js
|
18 |
-
add_action( 'admin_enqueue_scripts', 'vkExUnit_admin_scripts_color_picker' );
|
19 |
-
function vkExUnit_admin_scripts_color_picker() {
|
20 |
-
wp_enqueue_style( 'wp-color-picker' );
|
21 |
-
wp_enqueue_script( 'wp-color-picker' );
|
22 |
-
// カラーピッカー対象class指定 ( 外観 > ウィジェット 画面で効かないので一旦コメントアウト )
|
23 |
-
// wp_enqueue_script( 'colorpicker_script', plugins_url( 'js/admin-widget.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
|
24 |
}
|
25 |
-
// 外観 > ウィジェット 画面で動作させるために必要
|
26 |
-
add_action( 'admin_footer-widgets.php', 'print_scripts_pr_color' );
|
27 |
-
function print_scripts_pr_color() {
|
28 |
-
?>
|
29 |
-
<script type="text/javascript">
|
30 |
-
(function($){
|
31 |
-
function initColorPicker(widget) {
|
32 |
-
widget.find( '.color_picker' ).wpColorPicker( {
|
33 |
-
change: _.throttle( function() {
|
34 |
-
$(this).trigger('change');
|
35 |
-
}, 3000 )
|
36 |
-
});
|
37 |
-
}
|
38 |
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
-
|
54 |
-
/* archives_where
|
55 |
-
/*-------------------------------------------*/
|
56 |
-
add_filter( 'getarchives_where', 'vkExUnit_info_getarchives_where', 10, 2 );
|
57 |
-
function vkExUnit_info_getarchives_where( $where, $r ) {
|
58 |
-
global $my_archives_post_type;
|
59 |
-
if ( isset( $r['post_type'] ) ) {
|
60 |
-
$my_archives_post_type = $r['post_type'];
|
61 |
-
$where = str_replace( '\'post\'', '\'' . $r['post_type'] . '\'', $where );
|
62 |
-
} else {
|
63 |
-
$my_archives_post_type = '';
|
64 |
-
}
|
65 |
-
return $where;
|
66 |
-
}
|
67 |
-
|
68 |
-
add_filter( 'get_archives_link', 'vkExUnit_rewrite_archives_link' );
|
69 |
-
function vkExUnit_rewrite_archives_link( $link_html ) {
|
70 |
-
global $my_archives_post_type;
|
71 |
-
if ( $my_archives_post_type && $my_archives_post_type != 'post' ) {
|
72 |
-
|
73 |
-
$link_url_before = preg_replace( "/^.+<a.+href=\'(.+)\'.+$/is", '$1', $link_html );
|
74 |
-
if ( $link_html == $link_url_before ) {
|
75 |
-
return $link_html;
|
76 |
-
}
|
77 |
-
|
78 |
-
$olink = parse_url( $link_url_before );
|
79 |
-
if ( preg_match( '/\/' . $my_archives_post_type . '\/?/', $olink['path'] ) ) {
|
80 |
-
return $link_html;
|
81 |
-
}
|
82 |
-
|
83 |
-
if ( ! isset( $olink['query'] ) ) {
|
84 |
-
$olink['query'] = '';
|
85 |
-
}
|
86 |
-
parse_str( $olink['query'], $query );
|
87 |
-
if ( isset( $query['post_type'] ) && $query['post_type'] ) {
|
88 |
-
return $link_html;
|
89 |
-
}
|
90 |
-
|
91 |
-
$query['post_type'] = $my_archives_post_type;
|
92 |
-
$new_query = '?' . http_build_query( $query );
|
93 |
-
$new_url = $olink['scheme'] . '://' . $olink['host'] . $olink['path'] . $new_query;
|
94 |
-
|
95 |
-
$link_html = preg_replace( "/href=\'(.+)\'/", "href='" . $new_url . "'", $link_html );
|
96 |
-
return $link_html;
|
97 |
-
}
|
98 |
-
return $link_html;
|
99 |
-
}
|
1 |
<?php
|
2 |
+
require_once veu_get_directory() . '/inc/other-widget/class-veu-widget-control.php';
|
3 |
+
require_once veu_get_directory() . '/inc/other-widget/common.php';
|
4 |
+
|
5 |
require dirname( __FILE__ ) . '/widget-new-posts.php';
|
6 |
require dirname( __FILE__ ) . '/widget-profile.php';
|
7 |
require dirname( __FILE__ ) . '/widget-3pr-area.php';
|
12 |
require dirname( __FILE__ ) . '/widget-side-child-page-list.php';
|
13 |
require dirname( __FILE__ ) . '/widget-button.php';
|
14 |
require dirname( __FILE__ ) . '/widget-banner.php';
|
|
|
15 |
|
16 |
+
if (is_admin()) {
|
17 |
+
require_once veu_get_directory() . '/inc/other-widget/class-veu-other-widget-admin-control.php';
|
18 |
+
new VEU_Other_Widget_Admin_Control();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
function veu_widget_packages() {
|
22 |
+
return array(
|
23 |
+
array(
|
24 |
+
'id' => 'post_list',
|
25 |
+
'class' => 'WP_Widget_vkExUnit_post_list',
|
26 |
+
),
|
27 |
+
array(
|
28 |
+
'id' => 'profile',
|
29 |
+
'class' => 'WP_Widget_vkExUnit_profile',
|
30 |
+
),
|
31 |
+
array(
|
32 |
+
'id' => '3pr_area',
|
33 |
+
'class' => 'WP_Widget_vkExUnit_3PR_area',
|
34 |
+
),
|
35 |
+
array(
|
36 |
+
'id' => 'widget_page',
|
37 |
+
'class' => 'WP_Widget_vkExUnit_widget_page',
|
38 |
+
),
|
39 |
+
array(
|
40 |
+
'id' => 'taxonomy_list',
|
41 |
+
'class' => 'WP_Widget_VK_taxonomy_list',
|
42 |
+
),
|
43 |
+
array(
|
44 |
+
'id' => 'archive_list',
|
45 |
+
'class' => 'WP_Widget_VK_archive_list',
|
46 |
+
),
|
47 |
+
array(
|
48 |
+
'id' => 'pr_blocks',
|
49 |
+
'class' => 'WP_Widget_vkExUnit_PR_Blocks',
|
50 |
+
),
|
51 |
+
array(
|
52 |
+
'id' => 'child_page_list',
|
53 |
+
'class' => 'WP_Widget_vkExUnit_ChildPageList',
|
54 |
+
),
|
55 |
+
array(
|
56 |
+
'id' => 'button',
|
57 |
+
'class' => 'WP_Widget_Button',
|
58 |
+
),
|
59 |
+
array(
|
60 |
+
'id' => 'banner',
|
61 |
+
'class' => 'WidgetBanner',
|
62 |
+
)
|
63 |
+
);
|
64 |
+
// next id is 11.
|
65 |
}
|
66 |
|
67 |
+
add_action('widgets_init', array('VEU_Widget_Control', 'widgets_init'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/other-widget/template/admin_setting.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_enable_ids = VEU_Widget_Control::enable_widget_ids();
|
3 |
+
?>
|
4 |
+
|
5 |
+
<h2><?php echo __( 'Widget Enablation', 'vk-all-in-one-expansion-unit' ); ?></h2>
|
6 |
+
<table id="widget_enablation" class="wp-list-table widefat plugins table-widget-enablation">
|
7 |
+
<thead>
|
8 |
+
<tr>
|
9 |
+
<th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e( 'Select all', 'vk-all-in-one-expansion-unit' ); ?></label><input id="cb-select-all-w" onclick="veuwcb()" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e( 'Function', 'vk-all-in-one-expansion-unit' ); ?></th><th scope='col' id='description' class='manage-column column-description'><?php _e( 'Description', 'vk-all-in-one-expansion-unit' ); ?></th>
|
10 |
+
</tr>
|
11 |
+
</thead>
|
12 |
+
|
13 |
+
<tbody id="the-list">
|
14 |
+
<?php foreach ( veu_widget_packages() as $package ) : ?>
|
15 |
+
<?php
|
16 |
+
$class = '';
|
17 |
+
if ( in_array( $package['id'], $_enable_ids ) ) {
|
18 |
+
$class = ' class="active"';
|
19 |
+
}
|
20 |
+
?>
|
21 |
+
<tr<?php echo $class; ?>>
|
22 |
+
<td><input type="checkbox" name="vkExUnit_common_options[enable_widgets][]" value="<?php echo $package['id']; ?>" class="vew_enable_widget_checkbox" id="vew_widget_enable_input_<?php echo $package['id']; ?>"
|
23 |
+
<?php
|
24 |
+
if ( in_array( $package['id'], $_enable_ids ) ) {
|
25 |
+
echo 'checked'; }
|
26 |
+
?>
|
27 |
+
onclick="veuwd()" /></td>
|
28 |
+
<td><label for="vew_widget_enable_input_<?php echo $package['id']; ?>" ><?php echo $package['class']::veu_widget_name(); ?></label></td>
|
29 |
+
<td><?php echo $package['class']::veu_widget_description(); ?></td>
|
30 |
+
</tr>
|
31 |
+
<?php endforeach; ?>
|
32 |
+
</tbody>
|
33 |
+
|
34 |
+
</table>
|
35 |
+
|
36 |
+
<script type="text/javascript">
|
37 |
+
let veuwcb=()=>{let a='';if(document.getElementById('cb-select-all-w').checked)a='checked';Array.prototype.forEach.call(document.getElementsByClassName('vew_enable_widget_checkbox'),(i)=>{i.checked=a});};
|
38 |
+
let veuwd=()=>{let a=true;Array.prototype.forEach.call(document.getElementsByClassName('vew_enable_widget_checkbox'),(i)=>{a=a&&i.checked});if(a)b='checked';document.getElementById('cb-select-all-w').checked=a}
|
39 |
+
</script>
|
40 |
+
<br/>
|
inc/other-widget/widget-3pr-area.php
CHANGED
@@ -4,17 +4,22 @@
|
|
4 |
/* PR area widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
7 |
-
|
8 |
function __construct() {
|
9 |
-
$widget_name = veu_get_prefix() . __( '3PR area', 'vk-all-in-one-expansion-unit' );
|
10 |
-
|
11 |
parent::__construct(
|
12 |
'WP_Widget_vkExUnit_3PR_area',
|
13 |
-
|
14 |
-
array( 'description' =>
|
15 |
);
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
public static function default_options( $args = array() ) {
|
19 |
$defaults = array(
|
20 |
'label_1' => __( '3PR area1 title', 'vk-all-in-one-expansion-unit' ),
|
@@ -218,7 +223,3 @@ function admin_scripts_3pr_media() {
|
|
218 |
wp_enqueue_script( 'vk-admin-widget' );
|
219 |
}
|
220 |
|
221 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_3pr' );
|
222 |
-
function vkExUnit_widget_register_3pr() {
|
223 |
-
return register_widget( 'WP_Widget_vkExUnit_3PR_area' );
|
224 |
-
}
|
4 |
/* PR area widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
|
7 |
function __construct() {
|
|
|
|
|
8 |
parent::__construct(
|
9 |
'WP_Widget_vkExUnit_3PR_area',
|
10 |
+
self::veu_widget_name(),
|
11 |
+
array( 'description' => self::veu_widget_description() )
|
12 |
);
|
13 |
}
|
14 |
|
15 |
+
public static function veu_widget_name() {
|
16 |
+
return veu_get_prefix() . __( '3PR area', 'vk-all-in-one-expansion-unit' );
|
17 |
+
}
|
18 |
+
|
19 |
+
public static function veu_widget_description() {
|
20 |
+
return __( 'Displays a 3PR area', 'vk-all-in-one-expansion-unit' );
|
21 |
+
}
|
22 |
+
|
23 |
public static function default_options( $args = array() ) {
|
24 |
$defaults = array(
|
25 |
'label_1' => __( '3PR area1 title', 'vk-all-in-one-expansion-unit' ),
|
223 |
wp_enqueue_script( 'vk-admin-widget' );
|
224 |
}
|
225 |
|
|
|
|
|
|
|
|
inc/other-widget/widget-archives.php
CHANGED
@@ -1,20 +1,24 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_VK_archive_list extends WP_Widget {
|
7 |
-
|
8 |
function __construct() {
|
9 |
-
$widget_name = veu_get_prefix() . __( 'archive list', 'vk-all-in-one-expansion-unit' );
|
10 |
-
|
11 |
parent::__construct(
|
12 |
'WP_Widget_VK_archive_list',
|
13 |
-
|
14 |
-
array( 'description' =>
|
15 |
);
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
function widget( $args, $instance ) {
|
20 |
$arg = array(
|
@@ -31,18 +35,18 @@ class WP_Widget_VK_archive_list extends WP_Widget {
|
|
31 |
$arg['type'] = 'monthly';
|
32 |
$arg['post_type'] = ( isset( $instance['post_type'] ) ) ? $instance['post_type'] : 'post';
|
33 |
}
|
34 |
-
|
35 |
-
|
36 |
<div class="sideWidget widget_archive">
|
37 |
-
|
38 |
-
|
39 |
<?php } ?>
|
40 |
<ul class="localNavi">
|
41 |
-
|
42 |
</ul>
|
43 |
</div>
|
44 |
-
|
45 |
-
|
46 |
}
|
47 |
|
48 |
|
@@ -59,7 +63,8 @@ class WP_Widget_VK_archive_list extends WP_Widget {
|
|
59 |
array(
|
60 |
'public' => true,
|
61 |
'_builtin' => false,
|
62 |
-
),
|
|
|
63 |
);
|
64 |
$pages[] = 'post';
|
65 |
?>
|
@@ -76,7 +81,7 @@ class WP_Widget_VK_archive_list extends WP_Widget {
|
|
76 |
<?php
|
77 |
if ( $instance['post_type'] == $page ) {
|
78 |
echo 'selected="selected"'; }
|
79 |
-
?>
|
80 |
><?php echo $page; ?></option>
|
81 |
<?php } ?>
|
82 |
</select>
|
@@ -87,14 +92,14 @@ class WP_Widget_VK_archive_list extends WP_Widget {
|
|
87 |
<?php
|
88 |
if ( $instance['display_type'] != 'y' ) {
|
89 |
echo 'selected="selected"'; }
|
90 |
-
?>
|
91 |
>
|
92 |
<?php _e( 'Monthly', 'vk-all-in-one-expansion-unit' ); ?></option>
|
93 |
<option value="y"
|
94 |
<?php
|
95 |
if ( $instance['display_type'] == 'y' ) {
|
96 |
echo 'selected="selected"'; }
|
97 |
-
?>
|
98 |
>
|
99 |
<?php _e( 'Yearly', 'vk-all-in-one-expansion-unit' ); ?></option>
|
100 |
</select>
|
@@ -133,8 +138,3 @@ class WP_Widget_VK_archive_list extends WP_Widget {
|
|
133 |
return $instance;
|
134 |
}
|
135 |
}
|
136 |
-
|
137 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_archive_list' );
|
138 |
-
function vkExUnit_widget_register_archive_list() {
|
139 |
-
return register_widget( 'WP_Widget_VK_archive_list' );
|
140 |
-
}
|
1 |
<?php
|
2 |
|
3 |
+
/*
|
4 |
+
Archive list widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_VK_archive_list extends WP_Widget {
|
|
|
7 |
function __construct() {
|
|
|
|
|
8 |
parent::__construct(
|
9 |
'WP_Widget_VK_archive_list',
|
10 |
+
self::veu_widget_name(),
|
11 |
+
array( 'description' => self::veu_widget_description() )
|
12 |
);
|
13 |
}
|
14 |
|
15 |
+
public static function veu_widget_name() {
|
16 |
+
return veu_get_prefix() . __( 'archive list', 'vk-all-in-one-expansion-unit' );
|
17 |
+
}
|
18 |
+
|
19 |
+
public static function veu_widget_description() {
|
20 |
+
return __( 'Displays a list of archives. You can choose the post type and also to display archives by month or by year.', 'vk-all-in-one-expansion-unit' );
|
21 |
+
}
|
22 |
|
23 |
function widget( $args, $instance ) {
|
24 |
$arg = array(
|
35 |
$arg['type'] = 'monthly';
|
36 |
$arg['post_type'] = ( isset( $instance['post_type'] ) ) ? $instance['post_type'] : 'post';
|
37 |
}
|
38 |
+
?>
|
39 |
+
<?php echo $args['before_widget']; ?>
|
40 |
<div class="sideWidget widget_archive">
|
41 |
+
<?php if ( ( isset( $instance['label'] ) ) && $instance['label'] ) { ?>
|
42 |
+
<?php echo $args['before_title'] . $instance['label'] . $args['after_title']; ?>
|
43 |
<?php } ?>
|
44 |
<ul class="localNavi">
|
45 |
+
<?php wp_get_archives( $arg ); ?>
|
46 |
</ul>
|
47 |
</div>
|
48 |
+
<?php echo $args['after_widget']; ?>
|
49 |
+
<?php
|
50 |
}
|
51 |
|
52 |
|
63 |
array(
|
64 |
'public' => true,
|
65 |
'_builtin' => false,
|
66 |
+
),
|
67 |
+
'names'
|
68 |
);
|
69 |
$pages[] = 'post';
|
70 |
?>
|
81 |
<?php
|
82 |
if ( $instance['post_type'] == $page ) {
|
83 |
echo 'selected="selected"'; }
|
84 |
+
?>
|
85 |
><?php echo $page; ?></option>
|
86 |
<?php } ?>
|
87 |
</select>
|
92 |
<?php
|
93 |
if ( $instance['display_type'] != 'y' ) {
|
94 |
echo 'selected="selected"'; }
|
95 |
+
?>
|
96 |
>
|
97 |
<?php _e( 'Monthly', 'vk-all-in-one-expansion-unit' ); ?></option>
|
98 |
<option value="y"
|
99 |
<?php
|
100 |
if ( $instance['display_type'] == 'y' ) {
|
101 |
echo 'selected="selected"'; }
|
102 |
+
?>
|
103 |
>
|
104 |
<?php _e( 'Yearly', 'vk-all-in-one-expansion-unit' ); ?></option>
|
105 |
</select>
|
138 |
return $instance;
|
139 |
}
|
140 |
}
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-banner.php
CHANGED
@@ -1,28 +1,21 @@
|
|
1 |
<?php
|
2 |
-
namespace Vektor\ExUnit\Package\Widgets;
|
3 |
-
|
4 |
-
|
5 |
-
add_action( 'widgets_init', 'Vektor\ExUnit\Package\Widgets\register_banner' );
|
6 |
-
function register_banner() {
|
7 |
-
return register_widget( 'Vektor\ExUnit\Package\Widgets\WidgetBanner' );
|
8 |
-
}
|
9 |
-
|
10 |
-
|
11 |
-
class WidgetBanner extends \WP_Widget {
|
12 |
-
|
13 |
|
|
|
14 |
function __construct() {
|
15 |
-
$widget_name = veu_get_prefix() . __( 'Banner', 'vk-all-in-one-expansion-unit' );
|
16 |
-
|
17 |
parent::__construct(
|
18 |
'vkExUnit_banner',
|
19 |
-
|
20 |
-
array(
|
21 |
-
'description' => sprintf( __( 'You can easily set up a banner simply by registering images and link destinations.', 'vk-all-in-one-expansion-unit' ), vkExUnit_get_little_short_name() ),
|
22 |
-
)
|
23 |
);
|
24 |
}
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
public function widget( $args, $instance ) {
|
28 |
$instance = self::get_bnr_option( $instance );
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
+
class WidgetBanner extends WP_Widget {
|
4 |
function __construct() {
|
|
|
|
|
5 |
parent::__construct(
|
6 |
'vkExUnit_banner',
|
7 |
+
self::veu_widget_name(),
|
8 |
+
array( 'description' => self::veu_widget_description() )
|
|
|
|
|
9 |
);
|
10 |
}
|
11 |
|
12 |
+
public static function veu_widget_name() {
|
13 |
+
return veu_get_prefix() . __( 'Banner', 'vk-all-in-one-expansion-unit' );
|
14 |
+
}
|
15 |
+
|
16 |
+
public static function veu_widget_description() {
|
17 |
+
return sprintf( __( 'You can easily set up a banner simply by registering images and link destinations.', 'vk-all-in-one-expansion-unit' ), vkExUnit_get_little_short_name());
|
18 |
+
}
|
19 |
|
20 |
public function widget( $args, $instance ) {
|
21 |
$instance = self::get_bnr_option( $instance );
|
inc/other-widget/widget-button.php
CHANGED
@@ -29,15 +29,20 @@ class WP_Widget_Button extends WP_Widget {
|
|
29 |
}
|
30 |
|
31 |
function __construct() {
|
32 |
-
$widget_name = veu_get_prefix() . __( 'Button', 'vk-all-in-one-expansion-unit' );
|
33 |
-
|
34 |
parent::__construct(
|
35 |
'vkExUnit_button',
|
36 |
-
|
37 |
-
array( 'description' =>
|
38 |
);
|
39 |
}
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
function widget( $args, $instance ) {
|
43 |
$options = self::get_btn_options( $instance );
|
@@ -216,8 +221,3 @@ class WP_Widget_Button extends WP_Widget {
|
|
216 |
__( 'Red(.danger)', 'vk-all-in-one-expansion-unit' );
|
217 |
}
|
218 |
} // class WP_Widget_Button extends WP_Widget {
|
219 |
-
|
220 |
-
add_action( 'widgets_init', 'vkExUnit_widget_button' );
|
221 |
-
function vkExUnit_widget_button() {
|
222 |
-
return register_widget( 'WP_Widget_Button' );
|
223 |
-
}
|
29 |
}
|
30 |
|
31 |
function __construct() {
|
|
|
|
|
32 |
parent::__construct(
|
33 |
'vkExUnit_button',
|
34 |
+
self::veu_widget_name(),
|
35 |
+
array( 'description' => self::veu_widget_description() )
|
36 |
);
|
37 |
}
|
38 |
|
39 |
+
public static function veu_widget_name() {
|
40 |
+
return veu_get_prefix() . __( 'Button', 'vk-all-in-one-expansion-unit' );
|
41 |
+
}
|
42 |
+
|
43 |
+
public static function veu_widget_description() {
|
44 |
+
return __( 'You can set buttons for arbitrary text.', 'vk-all-in-one-expansion-unit' );
|
45 |
+
}
|
46 |
|
47 |
function widget( $args, $instance ) {
|
48 |
$options = self::get_btn_options( $instance );
|
221 |
__( 'Red(.danger)', 'vk-all-in-one-expansion-unit' );
|
222 |
}
|
223 |
} // class WP_Widget_Button extends WP_Widget {
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-child-page-list.php
DELETED
@@ -1,73 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*-------------------------------------------*/
|
4 |
-
/* child page list widget
|
5 |
-
/*-------------------------------------------*/
|
6 |
-
|
7 |
-
class WP_Widget_vkExUnit_child_page extends WP_Widget {
|
8 |
-
|
9 |
-
function __construct() {
|
10 |
-
$widget_name = veu_get_prefix() . __( 'Child Page List', 'vk-all-in-one-expansion-unit' );
|
11 |
-
|
12 |
-
parent::__construct(
|
13 |
-
'vkExUnit_child_pages',
|
14 |
-
$widget_name,
|
15 |
-
array( 'description' => __( 'Display the child pages list from ancestor page.', 'vk-all-in-one-expansion-unit' ) )
|
16 |
-
);
|
17 |
-
}
|
18 |
-
|
19 |
-
|
20 |
-
function widget( $args, $instance ) {
|
21 |
-
if ( ! is_page() ) {
|
22 |
-
return; }
|
23 |
-
$post_id = get_the_id();
|
24 |
-
if ( ! $post_id ) {
|
25 |
-
return; }
|
26 |
-
$parent_id = 0;
|
27 |
-
|
28 |
-
$post_three = array();
|
29 |
-
$post_three[] = $post_id;
|
30 |
-
|
31 |
-
while ( end( $post_three ) ) {
|
32 |
-
$the_query = new WP_Query(
|
33 |
-
array(
|
34 |
-
'p' => end( $post_three ),
|
35 |
-
'post_type' => 'page',
|
36 |
-
'posts_per_page' => 1,
|
37 |
-
)
|
38 |
-
);
|
39 |
-
$post_three[] = $the_query->posts[0]->post_parent;
|
40 |
-
unset( $the_query );
|
41 |
-
}
|
42 |
-
$parent_id = $post_three[ count( $post_three ) - 2 ];
|
43 |
-
$children = wp_list_pages( 'title_li=&child_of=' . $parent_id . '&echo=0' );
|
44 |
-
if ( ! $children ) {
|
45 |
-
return; }
|
46 |
-
// var_dump($args);
|
47 |
-
echo $args['before_widget'];
|
48 |
-
echo '<div class="sideWidget widget_childPageList widget_nav_menu">';
|
49 |
-
echo $args['before_title'] . '<a href="' . get_permalink( $post_id ) . '">' . get_the_title( $parent_id ) . '</a></h1>' . $args['after_title'];
|
50 |
-
echo '<ul>' . $children . '</ul>';
|
51 |
-
echo '</div>';
|
52 |
-
echo $args['after_widget'];
|
53 |
-
}
|
54 |
-
|
55 |
-
|
56 |
-
function form( $instance ) {
|
57 |
-
?>
|
58 |
-
<div style="padding:0.6em 0;">
|
59 |
-
<?php _e( 'Display the child pages list from ancestor page.', 'vk-all-in-one-expansion-unit' ); ?>
|
60 |
-
</div>
|
61 |
-
<?php
|
62 |
-
}
|
63 |
-
|
64 |
-
|
65 |
-
function update( $instance, $old_instance ) {
|
66 |
-
return $instance;
|
67 |
-
}
|
68 |
-
}
|
69 |
-
add_action(
|
70 |
-
'widgets_init', function() {
|
71 |
-
return register_widget( 'WP_Widget_vkExUnit_child_page' );
|
72 |
-
}
|
73 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-new-posts.php
CHANGED
@@ -4,17 +4,22 @@
|
|
4 |
/*-------------------------------------------*/
|
5 |
|
6 |
class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
7 |
-
|
8 |
function __construct() {
|
9 |
-
$widget_name = veu_get_prefix() . __( 'Recent Posts', 'vk-all-in-one-expansion-unit' );
|
10 |
-
|
11 |
parent::__construct(
|
12 |
'vkExUnit_post_list',
|
13 |
-
|
14 |
-
array( 'description' =>
|
15 |
);
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
/*
|
19 |
一覧へのリンクhtmlを出力する関数
|
20 |
/*-------------------------------------------*/
|
@@ -398,8 +403,3 @@ if ( ! empty( $instance[ $args['media_url'] ] ) ) :
|
|
398 |
return $instance;
|
399 |
}
|
400 |
}
|
401 |
-
|
402 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_post_list' );
|
403 |
-
function vkExUnit_widget_register_post_list() {
|
404 |
-
return register_widget( 'WP_Widget_vkExUnit_post_list' );
|
405 |
-
}
|
4 |
/*-------------------------------------------*/
|
5 |
|
6 |
class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
|
|
7 |
function __construct() {
|
|
|
|
|
8 |
parent::__construct(
|
9 |
'vkExUnit_post_list',
|
10 |
+
self::veu_widget_name(),
|
11 |
+
array( 'description' => self::veu_widget_description() )
|
12 |
);
|
13 |
}
|
14 |
|
15 |
+
public static function veu_widget_name() {
|
16 |
+
return veu_get_prefix() . __( 'Recent Posts', 'vk-all-in-one-expansion-unit' );
|
17 |
+
}
|
18 |
+
|
19 |
+
public static function veu_widget_description() {
|
20 |
+
return __( 'Displays a list of your most recent posts', 'vk-all-in-one-expansion-unit' );
|
21 |
+
}
|
22 |
+
|
23 |
/*
|
24 |
一覧へのリンクhtmlを出力する関数
|
25 |
/*-------------------------------------------*/
|
403 |
return $instance;
|
404 |
}
|
405 |
}
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-page.php
CHANGED
@@ -6,15 +6,20 @@
|
|
6 |
class WP_Widget_vkExUnit_widget_page extends WP_Widget {
|
7 |
|
8 |
function __construct() {
|
9 |
-
$widget_name = veu_get_prefix() . __( 'page content to widget', 'vk-all-in-one-expansion-unit' );
|
10 |
-
|
11 |
parent::__construct(
|
12 |
'pudge',
|
13 |
-
|
14 |
-
array( 'description' =>
|
15 |
);
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
/*-------------------------------------------*/
|
20 |
/* template-tags
|
@@ -248,8 +253,3 @@ class WP_Widget_vkExUnit_widget_page extends WP_Widget {
|
|
248 |
echo $args['after_widget'];
|
249 |
}
|
250 |
}
|
251 |
-
|
252 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_page' );
|
253 |
-
function vkExUnit_widget_register_page() {
|
254 |
-
return register_widget( 'WP_Widget_vkExUnit_widget_page' );
|
255 |
-
}
|
6 |
class WP_Widget_vkExUnit_widget_page extends WP_Widget {
|
7 |
|
8 |
function __construct() {
|
|
|
|
|
9 |
parent::__construct(
|
10 |
'pudge',
|
11 |
+
self::veu_widget_name(),
|
12 |
+
array( 'description' => self::veu_widget_description() )
|
13 |
);
|
14 |
}
|
15 |
|
16 |
+
public static function veu_widget_name() {
|
17 |
+
return veu_get_prefix() . __( 'page content to widget', 'vk-all-in-one-expansion-unit' );
|
18 |
+
}
|
19 |
+
|
20 |
+
public static function veu_widget_description() {
|
21 |
+
return __( 'Displays a page contents to widget.', 'vk-all-in-one-expansion-unit' );
|
22 |
+
}
|
23 |
|
24 |
/*-------------------------------------------*/
|
25 |
/* template-tags
|
253 |
echo $args['after_widget'];
|
254 |
}
|
255 |
}
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-pr-blocks.php
CHANGED
@@ -14,15 +14,21 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
14 |
/*-------------------------------------------*/
|
15 |
|
16 |
function __construct() {
|
17 |
-
$widget_name = veu_get_prefix() . __( 'PR Blocks', 'vk-all-in-one-expansion-unit' );
|
18 |
-
|
19 |
parent::__construct(
|
20 |
'WP_Widget_vkExUnit_PR_Blocks',
|
21 |
-
|
22 |
-
array( 'description' =>
|
23 |
);
|
24 |
}
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
public static function default_options( $args = array() ) {
|
27 |
$defaults = array(
|
28 |
'block_count' => 3,
|
@@ -309,8 +315,3 @@ function admin_scripts_pr_media() {
|
|
309 |
wp_register_script( 'vk-admin-widget', plugin_dir_url( __FILE__ ) . 'js/admin-widget.js', array( 'jquery' ), false, true );
|
310 |
wp_enqueue_script( 'vk-admin-widget' );
|
311 |
}
|
312 |
-
|
313 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_prblocks' );
|
314 |
-
function vkExUnit_widget_register_prblocks() {
|
315 |
-
return register_widget( 'WP_Widget_vkExUnit_PR_Blocks' );
|
316 |
-
}
|
14 |
/*-------------------------------------------*/
|
15 |
|
16 |
function __construct() {
|
|
|
|
|
17 |
parent::__construct(
|
18 |
'WP_Widget_vkExUnit_PR_Blocks',
|
19 |
+
self::veu_widget_name(),
|
20 |
+
array( 'description' => self::veu_widget_description() )
|
21 |
);
|
22 |
}
|
23 |
|
24 |
+
public static function veu_widget_name() {
|
25 |
+
return veu_get_prefix() . __( 'PR Blocks', 'vk-all-in-one-expansion-unit' );
|
26 |
+
}
|
27 |
+
|
28 |
+
public static function veu_widget_description() {
|
29 |
+
return __( 'Displays a circle image or icon font for pr blocks', 'vk-all-in-one-expansion-unit' );
|
30 |
+
}
|
31 |
+
|
32 |
public static function default_options( $args = array() ) {
|
33 |
$defaults = array(
|
34 |
'block_count' => 3,
|
315 |
wp_register_script( 'vk-admin-widget', plugin_dir_url( __FILE__ ) . 'js/admin-widget.js', array( 'jquery' ), false, true );
|
316 |
wp_enqueue_script( 'vk-admin-widget' );
|
317 |
}
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-profile.php
CHANGED
@@ -4,17 +4,22 @@
|
|
4 |
/* Side Profile widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_vkExUnit_profile extends WP_Widget {
|
7 |
-
|
8 |
function __construct() {
|
9 |
-
$widget_name = veu_get_prefix() . __( 'Profile', 'vk-all-in-one-expansion-unit' );
|
10 |
-
|
11 |
parent::__construct(
|
12 |
'WP_Widget_vkExUnit_profile',
|
13 |
-
|
14 |
-
array( 'description' =>
|
15 |
);
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
/*-------------------------------------------*/
|
19 |
/* form
|
20 |
/*-------------------------------------------*/
|
@@ -437,8 +442,3 @@ function vkExUnit_profile_admin_scripts() {
|
|
437 |
wp_enqueue_script( 'vk-admin-widget' );
|
438 |
}
|
439 |
add_action( 'admin_print_scripts', 'vkExUnit_profile_admin_scripts' );
|
440 |
-
|
441 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_profile' );
|
442 |
-
function vkExUnit_widget_register_profile() {
|
443 |
-
return register_widget( 'WP_Widget_vkExUnit_profile' );
|
444 |
-
}
|
4 |
/* Side Profile widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
|
7 |
function __construct() {
|
|
|
|
|
8 |
parent::__construct(
|
9 |
'WP_Widget_vkExUnit_profile',
|
10 |
+
self::veu_widget_name(),
|
11 |
+
array( 'description' => self::veu_widget_description() )
|
12 |
);
|
13 |
}
|
14 |
|
15 |
+
public static function veu_widget_name() {
|
16 |
+
return veu_get_prefix() . __( 'Profile', 'vk-all-in-one-expansion-unit' );
|
17 |
+
}
|
18 |
+
|
19 |
+
public static function veu_widget_description() {
|
20 |
+
return __( 'Displays a your profile', 'vk-all-in-one-expansion-unit');
|
21 |
+
}
|
22 |
+
|
23 |
/*-------------------------------------------*/
|
24 |
/* form
|
25 |
/*-------------------------------------------*/
|
442 |
wp_enqueue_script( 'vk-admin-widget' );
|
443 |
}
|
444 |
add_action( 'admin_print_scripts', 'vkExUnit_profile_admin_scripts' );
|
|
|
|
|
|
|
|
|
|
inc/other-widget/widget-side-child-page-list.php
CHANGED
@@ -1,23 +1,22 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_childpages' );
|
4 |
-
function vkExUnit_widget_register_childpages() {
|
5 |
-
return register_widget( 'WP_Widget_vkExUnit_ChildPageList' );
|
6 |
-
}
|
7 |
-
|
8 |
-
|
9 |
class WP_Widget_vkExUnit_ChildPageList extends WP_Widget {
|
10 |
-
|
11 |
function __construct() {
|
12 |
-
$widget_name = veu_get_prefix() . __( 'child pages list', 'vk-all-in-one-expansion-unit' );
|
13 |
-
|
14 |
parent::__construct(
|
15 |
'vkExUnit_childPageList',
|
16 |
-
|
17 |
-
array( 'description' =>
|
18 |
);
|
19 |
}
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
function widget( $args, $instance ) {
|
22 |
|
23 |
global $post;
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class WP_Widget_vkExUnit_ChildPageList extends WP_Widget {
|
|
|
4 |
function __construct() {
|
|
|
|
|
5 |
parent::__construct(
|
6 |
'vkExUnit_childPageList',
|
7 |
+
self::veu_widget_name(),
|
8 |
+
array( 'description' => self::veu_widget_description() )
|
9 |
);
|
10 |
}
|
11 |
|
12 |
+
public static function veu_widget_name() {
|
13 |
+
return veu_get_prefix() . __( 'child pages list', 'vk-all-in-one-expansion-unit' );
|
14 |
+
}
|
15 |
+
|
16 |
+
public static function veu_widget_description() {
|
17 |
+
return __( 'Displays list of child page for the current page on such as sidebar of page.', 'vk-all-in-one-expansion-unit' );
|
18 |
+
}
|
19 |
+
|
20 |
function widget( $args, $instance ) {
|
21 |
|
22 |
global $post;
|
inc/other-widget/widget-taxonomies.php
CHANGED
@@ -4,18 +4,21 @@
|
|
4 |
/* Taxonomy list widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_VK_taxonomy_list extends WP_Widget {
|
7 |
-
|
8 |
-
// ウィジェット定義
|
9 |
function __construct() {
|
10 |
-
$widget_name = veu_get_prefix() . __( 'Categories/Custom taxonomies list', 'vk-all-in-one-expansion-unit' );
|
11 |
-
|
12 |
parent::__construct(
|
13 |
'WP_Widget_VK_taxonomy_list',
|
14 |
-
|
15 |
-
array( 'description' =>
|
16 |
);
|
17 |
}
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
function widget( $args, $instance ) {
|
21 |
$instance = static::get_defaults( $instance );
|
@@ -130,10 +133,4 @@ class WP_Widget_VK_taxonomy_list extends WP_Widget {
|
|
130 |
|
131 |
return $instance;
|
132 |
}
|
133 |
-
} // class WP_Widget_top_list_info
|
134 |
-
|
135 |
-
|
136 |
-
add_action( 'widgets_init', 'vkExUnit_widget_register_taxonomy_list' );
|
137 |
-
function vkExUnit_widget_register_taxonomy_list() {
|
138 |
-
return register_widget( 'WP_Widget_VK_taxonomy_list' );
|
139 |
}
|
4 |
/* Taxonomy list widget
|
5 |
/*-------------------------------------------*/
|
6 |
class WP_Widget_VK_taxonomy_list extends WP_Widget {
|
|
|
|
|
7 |
function __construct() {
|
|
|
|
|
8 |
parent::__construct(
|
9 |
'WP_Widget_VK_taxonomy_list',
|
10 |
+
self::veu_widget_name(),
|
11 |
+
array( 'description' => self::veu_widget_description() )
|
12 |
);
|
13 |
}
|
14 |
|
15 |
+
public static function veu_widget_name() {
|
16 |
+
return veu_get_prefix() . __( 'Categories/Custom taxonomies list', 'vk-all-in-one-expansion-unit' );
|
17 |
+
}
|
18 |
+
|
19 |
+
public static function veu_widget_description() {
|
20 |
+
return __( 'Displays a categories and custom taxonomies list.', 'vk-all-in-one-expansion-unit' );
|
21 |
+
}
|
22 |
|
23 |
function widget( $args, $instance ) {
|
24 |
$instance = static::get_defaults( $instance );
|
133 |
|
134 |
return $instance;
|
135 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
}
|
inc/sns/function_og.php
CHANGED
@@ -17,6 +17,8 @@ function vkExUnit_print_og() {
|
|
17 |
$linkUrl = home_url( '/' );
|
18 |
} elseif ( is_single() || is_page() ) {
|
19 |
$linkUrl = get_permalink();
|
|
|
|
|
20 |
} else {
|
21 |
$linkUrl = get_permalink();
|
22 |
}
|
17 |
$linkUrl = home_url( '/' );
|
18 |
} elseif ( is_single() || is_page() ) {
|
19 |
$linkUrl = get_permalink();
|
20 |
+
} elseif (is_post_type_archive()){
|
21 |
+
$linkUrl = get_post_type_archive_link(get_query_var('post_type'));
|
22 |
} else {
|
23 |
$linkUrl = get_permalink();
|
24 |
}
|
inc/template-tags/package/template-tags-veu.php
CHANGED
@@ -42,6 +42,7 @@ function veu_common_options_validate( $input ) {
|
|
42 |
ここでは機能の有効化有無に関する項目が殆どで、手動で項目を記載すると機能の増減の際に項目の編集漏れが出るため、
|
43 |
veu_get_common_options_default() の中で package に登録してある項目・デフォルト値を読み込み、それをループ処理する
|
44 |
*/
|
|
|
45 |
$defaults = veu_get_common_options_default();
|
46 |
foreach ( $defaults as $key => $default_value ) {
|
47 |
// 'content_filter_state' 以外は true か false しか返ってこない
|
42 |
ここでは機能の有効化有無に関する項目が殆どで、手動で項目を記載すると機能の増減の際に項目の編集漏れが出るため、
|
43 |
veu_get_common_options_default() の中で package に登録してある項目・デフォルト値を読み込み、それをループ処理する
|
44 |
*/
|
45 |
+
$output = array();
|
46 |
$defaults = veu_get_common_options_default();
|
47 |
foreach ( $defaults as $key => $default_value ) {
|
48 |
// 'content_filter_state' 以外は true か false しか返ってこない
|
languages/vk-all-in-one-expansion-unit-ja.mo
DELETED
Binary file
|
languages/vk-all-in-one-expansion-unit-ja.po
DELETED
@@ -1,3004 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2020-02-07 15:59+0900\n"
|
5 |
-
"PO-Revision-Date: \n"
|
6 |
-
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
-
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
8 |
-
"Language: ja\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.3\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_x;_ex;_ex:1,2c;_x:1,2c;_n:1,2;esc_attr__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
-
"X-Poedit-SearchPathExcluded-0: node_modules\n"
|
18 |
-
|
19 |
-
#: admin/admin-active-setting-page.php:3
|
20 |
-
#: dist/admin/admin-active-setting-page.php:3
|
21 |
-
msgid "Enable setting"
|
22 |
-
msgstr "有効化設定"
|
23 |
-
|
24 |
-
#: admin/admin-active-setting-page.php:16
|
25 |
-
#: admin/admin-active-setting-page.php:89
|
26 |
-
#: dist/admin/admin-active-setting-page.php:16
|
27 |
-
#: dist/admin/admin-active-setting-page.php:89
|
28 |
-
msgid "Select all"
|
29 |
-
msgstr "全てを選択"
|
30 |
-
|
31 |
-
#: admin/admin-active-setting-page.php:16
|
32 |
-
#: admin/admin-active-setting-page.php:89
|
33 |
-
#: dist/admin/admin-active-setting-page.php:16
|
34 |
-
#: dist/admin/admin-active-setting-page.php:89
|
35 |
-
msgid "Function"
|
36 |
-
msgstr "有効化"
|
37 |
-
|
38 |
-
#: admin/admin-active-setting-page.php:16
|
39 |
-
#: admin/admin-active-setting-page.php:89
|
40 |
-
#: dist/admin/admin-active-setting-page.php:16
|
41 |
-
#: dist/admin/admin-active-setting-page.php:89
|
42 |
-
msgid "Description"
|
43 |
-
msgstr "説明"
|
44 |
-
|
45 |
-
#: admin/admin-active-setting-page.php:35
|
46 |
-
#: dist/admin/admin-active-setting-page.php:35 dist/veu-packages.php:412
|
47 |
-
#: veu-packages.php:412
|
48 |
-
msgid "Automatic Eye Catch insert"
|
49 |
-
msgstr "アイキャッチ画像自動挿入"
|
50 |
-
|
51 |
-
#: admin/admin-active-setting-page.php:95
|
52 |
-
#: dist/admin/admin-active-setting-page.php:95
|
53 |
-
msgid "Extension Setting"
|
54 |
-
msgstr "拡張設定"
|
55 |
-
|
56 |
-
#: admin/admin-active-setting-page.php:100
|
57 |
-
#: dist/admin/admin-active-setting-page.php:100
|
58 |
-
msgid "Extention contents"
|
59 |
-
msgstr "拡張コンテンツ"
|
60 |
-
|
61 |
-
#: admin/admin-active-setting-page.php:106
|
62 |
-
#: dist/admin/admin-active-setting-page.php:106
|
63 |
-
msgid "set extension contents to loop_end hook"
|
64 |
-
msgstr "ループ終了時にコンテンツを追加する"
|
65 |
-
|
66 |
-
#: admin/admin-active-setting-page.php:112
|
67 |
-
#: dist/admin/admin-active-setting-page.php:112
|
68 |
-
msgid "Post edit page metabox settings"
|
69 |
-
msgstr "投稿編集画面metabox設定"
|
70 |
-
|
71 |
-
#: admin/admin-active-setting-page.php:114
|
72 |
-
#: dist/admin/admin-active-setting-page.php:114
|
73 |
-
msgid "Do not combine ExUnit's meta box"
|
74 |
-
msgstr "ExUnitのmetaboxを統合しない"
|
75 |
-
|
76 |
-
#: admin/admin-active-setting-page.php:117
|
77 |
-
#: dist/admin/admin-active-setting-page.php:117
|
78 |
-
msgid "Plugin setting options"
|
79 |
-
msgstr "プラグイン設定オプション"
|
80 |
-
|
81 |
-
#: admin/admin-active-setting-page.php:119
|
82 |
-
#: dist/admin/admin-active-setting-page.php:119
|
83 |
-
msgid "Delete myOptions when deactivate me."
|
84 |
-
msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
|
85 |
-
|
86 |
-
#: admin/admin-main-setting-page.php:16 admin/admin-main-setting-page.php:17
|
87 |
-
#: dist/admin/admin-main-setting-page.php:16
|
88 |
-
#: dist/admin/admin-main-setting-page.php:17
|
89 |
-
#: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:30
|
90 |
-
#: inc/meta-keyword/class-veu-metabox-meta-keyword.php:30
|
91 |
-
msgid "Main setting"
|
92 |
-
msgstr "メイン設定"
|
93 |
-
|
94 |
-
#: admin/admin-main-setting-page.php:94
|
95 |
-
#: dist/admin/admin-main-setting-page.php:94
|
96 |
-
msgid "Activated Packages is noting. please activate some package."
|
97 |
-
msgstr ""
|
98 |
-
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
99 |
-
|
100 |
-
#: admin/admin-post-metabox.php:57 dist/admin/admin-post-metabox.php:57
|
101 |
-
msgid "Open all"
|
102 |
-
msgstr "すべて開く"
|
103 |
-
|
104 |
-
#: admin/admin-post-metabox.php:58 dist/admin/admin-post-metabox.php:58
|
105 |
-
msgid "Close all"
|
106 |
-
msgstr "全て閉じる"
|
107 |
-
|
108 |
-
#: admin/admin_bar.php:33 dist/admin/admin_bar.php:33
|
109 |
-
msgid "Active Setting"
|
110 |
-
msgstr "有効化設定"
|
111 |
-
|
112 |
-
#: admin/admin_bar.php:44 dist/admin/admin_bar.php:44
|
113 |
-
msgid "Main Setting"
|
114 |
-
msgstr "メイン設定"
|
115 |
-
|
116 |
-
#: admin/class-veu-metabox-insert-items.php:12
|
117 |
-
#: dist/admin/class-veu-metabox-insert-items.php:12
|
118 |
-
msgid "Setting of insert items"
|
119 |
-
msgstr "挿入アイテムの設定"
|
120 |
-
|
121 |
-
#: admin/class-veu-metabox.php:147 dist/admin/class-veu-metabox.php:147
|
122 |
-
#: dist/inc/sitemap-page/class-veu-metabox-sitemap.php:37
|
123 |
-
#: inc/sitemap-page/class-veu-metabox-sitemap.php:37
|
124 |
-
msgid "Hide this page to HTML Sitemap."
|
125 |
-
msgstr "このページをHTMLサイトマップに表示しない。"
|
126 |
-
|
127 |
-
#: admin/customizer.php:38 dist/admin/customizer.php:38
|
128 |
-
#: dist/inc/bootstrap.php:9 inc/bootstrap.php:9
|
129 |
-
msgid "Settings"
|
130 |
-
msgstr "設定"
|
131 |
-
|
132 |
-
#: admin/customizer.php:105
|
133 |
-
msgid "Page Speedind Setting"
|
134 |
-
msgstr "高速化設定"
|
135 |
-
|
136 |
-
#: admin/customizer.php:121
|
137 |
-
msgid "Enable speeding up"
|
138 |
-
msgstr "高速化を有効にする"
|
139 |
-
|
140 |
-
#: admin/customizer.php:125
|
141 |
-
msgid ""
|
142 |
-
"If you enable this setting that ExUnit's css file and css customize will be "
|
143 |
-
"loaded from footer."
|
144 |
-
msgstr ""
|
145 |
-
"この項目を有効にするとExUnitのCSSファイル及びCSSカスタマイズがヘッダーではな"
|
146 |
-
"くフッターから読み込まれます。"
|
147 |
-
|
148 |
-
#: admin/disable-guide.php:17 dist/admin/disable-guide.php:17
|
149 |
-
msgid "Edit Guide"
|
150 |
-
msgstr "編集ガイド"
|
151 |
-
|
152 |
-
#: admin/vk-admin/package/class-vk-admin.php:290
|
153 |
-
#: dist/admin/vk-admin/package/class-vk-admin.php:290
|
154 |
-
msgid "Sorry, there is no post"
|
155 |
-
msgstr "お知らせはありません。"
|
156 |
-
|
157 |
-
#: admin/vk-admin/package/class-vk-admin.php:344
|
158 |
-
#: dist/admin/vk-admin/package/class-vk-admin.php:344
|
159 |
-
msgid "Vektor WordPress Information"
|
160 |
-
msgstr "Vektor WordPress Information"
|
161 |
-
|
162 |
-
#: dist/inc/auto-eyecatch/class-veu-metabox-eyecatch.php:10
|
163 |
-
#: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:10
|
164 |
-
msgid "Automatic EyeCatch"
|
165 |
-
msgstr "アイキャッチ自動挿入"
|
166 |
-
|
167 |
-
#: dist/inc/auto-eyecatch/class-veu-metabox-eyecatch.php:33
|
168 |
-
#: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:33
|
169 |
-
msgid "Do not set eyecatch image automatic."
|
170 |
-
msgstr "アイキャッチ画像を自動挿入しない"
|
171 |
-
|
172 |
-
#: dist/inc/bootstrap.php:36 inc/bootstrap.php:36
|
173 |
-
msgid "Key color"
|
174 |
-
msgstr "キーカラー"
|
175 |
-
|
176 |
-
#: dist/inc/bootstrap.php:47 inc/bootstrap.php:47
|
177 |
-
msgid "Key color(dark)"
|
178 |
-
msgstr "キーカラー(暗)"
|
179 |
-
|
180 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:14
|
181 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:14
|
182 |
-
msgid "Call to Action setting"
|
183 |
-
msgstr "CTA設定"
|
184 |
-
|
185 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:39
|
186 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:603
|
187 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:74
|
188 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:39
|
189 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:603
|
190 |
-
#: inc/call-to-action/package/widget-call-to-action.php:74
|
191 |
-
msgid "Random"
|
192 |
-
msgstr "ランダム表示"
|
193 |
-
|
194 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:45
|
195 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:610
|
196 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:45
|
197 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:610
|
198 |
-
msgid "Disable display"
|
199 |
-
msgstr "表示しない"
|
200 |
-
|
201 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:51
|
202 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:51
|
203 |
-
msgid "Follow common setting"
|
204 |
-
msgstr "共通設定を使用"
|
205 |
-
|
206 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:62
|
207 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:62
|
208 |
-
msgid "CTA common setting"
|
209 |
-
msgstr "CTA共通設定"
|
210 |
-
|
211 |
-
#: dist/inc/call-to-action/package/class-veu-metabox-cta.php:63
|
212 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:31
|
213 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:88
|
214 |
-
#: inc/call-to-action/package/class-veu-metabox-cta.php:63
|
215 |
-
#: inc/call-to-action/package/view-adminsetting.php:31
|
216 |
-
#: inc/call-to-action/package/widget-call-to-action.php:88
|
217 |
-
msgid "Show CTA index page"
|
218 |
-
msgstr "CTAの一覧を表示"
|
219 |
-
|
220 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:63
|
221 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:394
|
222 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:63
|
223 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:394
|
224 |
-
msgid "Edit CTA"
|
225 |
-
msgstr "CTAの編集"
|
226 |
-
|
227 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:64
|
228 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:64
|
229 |
-
msgid "Add new CTA"
|
230 |
-
msgstr "CTAの新規作成"
|
231 |
-
|
232 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:65
|
233 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:65
|
234 |
-
msgid "New CTA"
|
235 |
-
msgstr "CTA 新規作成"
|
236 |
-
|
237 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:92
|
238 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:92
|
239 |
-
msgid "CTA Contents"
|
240 |
-
msgstr "CTA Contents"
|
241 |
-
|
242 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:268
|
243 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:268
|
244 |
-
msgid ""
|
245 |
-
"You can create it with a free layout in the content field using, such as "
|
246 |
-
"Outer block and PR Content block in VK Blocks."
|
247 |
-
msgstr ""
|
248 |
-
"VK Blocks の アウターブロックやPR Content ブロックを使って本文欄に自由なレイ"
|
249 |
-
"アウトで作成する事もできます。"
|
250 |
-
|
251 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:269
|
252 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:269
|
253 |
-
msgid ""
|
254 |
-
"If the contents field is entered, the contents of the body will be displayed "
|
255 |
-
"with priority, so the following contents will be ignored."
|
256 |
-
msgstr ""
|
257 |
-
"本文欄が入力されている場合は本文の内容が優先して表示されるので以下の内容は無"
|
258 |
-
"視されます。"
|
259 |
-
|
260 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:270
|
261 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:270
|
262 |
-
msgid ""
|
263 |
-
"The entered contents are displayed directly. You can not use Dynamic blocks, "
|
264 |
-
"reuse blocks, etc."
|
265 |
-
msgstr ""
|
266 |
-
"入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用でき"
|
267 |
-
"ません。"
|
268 |
-
|
269 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:274
|
270 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:274
|
271 |
-
msgid "CTA image"
|
272 |
-
msgstr "CTA画像"
|
273 |
-
|
274 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:280
|
275 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:280
|
276 |
-
msgid "Add image"
|
277 |
-
msgstr "画像を追加"
|
278 |
-
|
279 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:281
|
280 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:281
|
281 |
-
msgid "Change image"
|
282 |
-
msgstr "画像を変更"
|
283 |
-
|
284 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:282
|
285 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:282
|
286 |
-
msgid "Remove image"
|
287 |
-
msgstr "画像を削除"
|
288 |
-
|
289 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:287
|
290 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:287
|
291 |
-
msgid "CTA image position"
|
292 |
-
msgstr "CTA画像の位置"
|
293 |
-
|
294 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:290
|
295 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:290
|
296 |
-
msgid "right"
|
297 |
-
msgstr "右寄せ"
|
298 |
-
|
299 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:291
|
300 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:291
|
301 |
-
msgid "center"
|
302 |
-
msgstr "中央"
|
303 |
-
|
304 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:292
|
305 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:292
|
306 |
-
msgid "left"
|
307 |
-
msgstr "左寄せ"
|
308 |
-
|
309 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:296
|
310 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:296
|
311 |
-
msgid "Button text"
|
312 |
-
msgstr "ボタンの表記文言"
|
313 |
-
|
314 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:300
|
315 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:300
|
316 |
-
msgid "Button icon"
|
317 |
-
msgstr "ボタンアイコン"
|
318 |
-
|
319 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:301
|
320 |
-
#: dist/inc/other-widget/widget-button.php:122
|
321 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:301
|
322 |
-
#: inc/other-widget/widget-button.php:122
|
323 |
-
msgid "To choose your favorite icon, and enter the class."
|
324 |
-
msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
|
325 |
-
|
326 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:302
|
327 |
-
#: dist/inc/other-widget/widget-button.php:123
|
328 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:302
|
329 |
-
#: inc/other-widget/widget-button.php:123
|
330 |
-
msgid "Before :"
|
331 |
-
msgstr "文字の前 :"
|
332 |
-
|
333 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:304
|
334 |
-
#: dist/inc/other-widget/widget-button.php:125
|
335 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:304
|
336 |
-
#: inc/other-widget/widget-button.php:125
|
337 |
-
msgid "After :"
|
338 |
-
msgstr "文字の後 :"
|
339 |
-
|
340 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:316
|
341 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:316
|
342 |
-
msgid "Button link url"
|
343 |
-
msgstr "ボタンのリンク先URL"
|
344 |
-
|
345 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:329
|
346 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:329
|
347 |
-
msgid "Target window"
|
348 |
-
msgstr "リンク先ターゲット"
|
349 |
-
|
350 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:331
|
351 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:331
|
352 |
-
msgid "Open in a self window"
|
353 |
-
msgstr "同じウィンドウで開く"
|
354 |
-
|
355 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:333
|
356 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:333
|
357 |
-
msgid "Text message"
|
358 |
-
msgstr "テキストメッセージ"
|
359 |
-
|
360 |
-
#: dist/inc/call-to-action/package/class-vk-call-to-action.php:339
|
361 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:91
|
362 |
-
#: inc/call-to-action/package/class-vk-call-to-action.php:339
|
363 |
-
#: inc/call-to-action/package/widget-call-to-action.php:91
|
364 |
-
msgid "CTA setting"
|
365 |
-
msgstr "CTA設定"
|
366 |
-
|
367 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:15
|
368 |
-
#: dist/veu-packages.php:259
|
369 |
-
#: inc/call-to-action/package/view-adminsetting.php:15 veu-packages.php:259
|
370 |
-
msgid "Call To Action"
|
371 |
-
msgstr "Call To Action"
|
372 |
-
|
373 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:19
|
374 |
-
#: dist/veu-packages.php:251
|
375 |
-
#: inc/call-to-action/package/view-adminsetting.php:19 veu-packages.php:251
|
376 |
-
msgid "Display the CTA at the end of the post content."
|
377 |
-
msgstr "投稿内容の最後にCTAを表示します。"
|
378 |
-
|
379 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:20
|
380 |
-
#: dist/veu-packages.php:253
|
381 |
-
#: inc/call-to-action/package/view-adminsetting.php:20 veu-packages.php:253
|
382 |
-
msgid ""
|
383 |
-
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
384 |
-
"user behavior."
|
385 |
-
msgstr ""
|
386 |
-
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
387 |
-
"情報を表示します。"
|
388 |
-
|
389 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:21
|
390 |
-
#: dist/veu-packages.php:255
|
391 |
-
#: inc/call-to-action/package/view-adminsetting.php:21 veu-packages.php:255
|
392 |
-
msgid ""
|
393 |
-
"As an example, text message and a link button for induction to the free "
|
394 |
-
"sample download page."
|
395 |
-
msgstr ""
|
396 |
-
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
397 |
-
"ンなどです。"
|
398 |
-
|
399 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:23
|
400 |
-
#: inc/call-to-action/package/view-adminsetting.php:23
|
401 |
-
msgid "How to use"
|
402 |
-
msgstr "使い方"
|
403 |
-
|
404 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:26
|
405 |
-
#: inc/call-to-action/package/view-adminsetting.php:26
|
406 |
-
msgid ""
|
407 |
-
"You register the contents on \"CTA\" that you want to display to bottom of "
|
408 |
-
"the content."
|
409 |
-
msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
|
410 |
-
|
411 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:27
|
412 |
-
#: inc/call-to-action/package/view-adminsetting.php:27
|
413 |
-
msgid "Choose the CTA to be displayed from the following."
|
414 |
-
msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
|
415 |
-
|
416 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:28
|
417 |
-
#: inc/call-to-action/package/view-adminsetting.php:28
|
418 |
-
msgid ""
|
419 |
-
"If you want to switch the CTA to be displayed on each post, please set in "
|
420 |
-
"the details page of such posting."
|
421 |
-
msgstr ""
|
422 |
-
"投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してくださ"
|
423 |
-
"い。"
|
424 |
-
|
425 |
-
#: dist/inc/call-to-action/package/view-adminsetting.php:41
|
426 |
-
#: inc/call-to-action/package/view-adminsetting.php:41
|
427 |
-
msgid "Show index page"
|
428 |
-
msgstr "一覧ページを表示する"
|
429 |
-
|
430 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:20
|
431 |
-
#: inc/call-to-action/package/widget-call-to-action.php:20
|
432 |
-
msgid "CTA"
|
433 |
-
msgstr "CTA"
|
434 |
-
|
435 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:26
|
436 |
-
#: inc/call-to-action/package/widget-call-to-action.php:26
|
437 |
-
msgid "Select CTA and display it."
|
438 |
-
msgstr "CTAを選択して表示します。"
|
439 |
-
|
440 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:66
|
441 |
-
#: inc/call-to-action/package/widget-call-to-action.php:66
|
442 |
-
msgid "Please select CTA to display."
|
443 |
-
msgstr "表示するCTAを選択してください。"
|
444 |
-
|
445 |
-
#: dist/inc/call-to-action/package/widget-call-to-action.php:80
|
446 |
-
#: inc/call-to-action/package/widget-call-to-action.php:80
|
447 |
-
msgid "Please select"
|
448 |
-
msgstr "選択してください"
|
449 |
-
|
450 |
-
#: dist/inc/child-page-index.php:79
|
451 |
-
#: dist/inc/other-widget/widget-3pr-area.php:198 inc/child-page-index.php:79
|
452 |
-
#: inc/other-widget/widget-3pr-area.php:198
|
453 |
-
msgid "Read more"
|
454 |
-
msgstr "詳しくはこちら"
|
455 |
-
|
456 |
-
#: dist/inc/child-page-index.php:142 dist/inc/other-widget/widget-page.php:166
|
457 |
-
#: inc/child-page-index.php:142 inc/other-widget/widget-page.php:166
|
458 |
-
msgid "Display a child page index"
|
459 |
-
msgstr "子ページ一覧の表示"
|
460 |
-
|
461 |
-
#: dist/inc/contact-section/contact-section.php:106
|
462 |
-
#: dist/inc/contact-section/contact-section.php:137
|
463 |
-
#: inc/contact-section/contact-section.php:106
|
464 |
-
#: inc/contact-section/contact-section.php:137
|
465 |
-
msgid "Contact Information"
|
466 |
-
msgstr "お問い合わせ情報"
|
467 |
-
|
468 |
-
#: dist/inc/contact-section/contact-section.php:116
|
469 |
-
#: dist/inc/contact-section/contact-section.php:148
|
470 |
-
#: dist/inc/contact-section/customizer.php:53
|
471 |
-
#: dist/inc/contact-section/customizer.php:67
|
472 |
-
#: inc/contact-section/contact-section.php:116
|
473 |
-
#: inc/contact-section/contact-section.php:148
|
474 |
-
#: inc/contact-section/customizer.php:53 inc/contact-section/customizer.php:67
|
475 |
-
msgid "Please feel free to inquire."
|
476 |
-
msgstr "お気軽にお問い合わせください。"
|
477 |
-
|
478 |
-
#: dist/inc/contact-section/contact-section.php:119
|
479 |
-
#: dist/inc/contact-section/customizer.php:116
|
480 |
-
#: inc/contact-section/contact-section.php:119
|
481 |
-
#: inc/contact-section/customizer.php:116
|
482 |
-
msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
|
483 |
-
msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
|
484 |
-
|
485 |
-
#: dist/inc/contact-section/contact-section.php:121
|
486 |
-
#: dist/inc/contact-section/contact-section.php:123
|
487 |
-
#: dist/inc/contact-section/customizer.php:158
|
488 |
-
#: dist/inc/contact-section/customizer.php:200
|
489 |
-
#: inc/contact-section/contact-section.php:121
|
490 |
-
#: inc/contact-section/contact-section.php:123
|
491 |
-
#: inc/contact-section/customizer.php:158
|
492 |
-
#: inc/contact-section/customizer.php:200
|
493 |
-
msgid "Contact us"
|
494 |
-
msgstr "お問い合わせ"
|
495 |
-
|
496 |
-
#: dist/inc/contact-section/contact-section.php:139
|
497 |
-
#: dist/inc/contact-section/customizer.php:33
|
498 |
-
#: inc/contact-section/contact-section.php:139
|
499 |
-
#: inc/contact-section/customizer.php:33
|
500 |
-
msgid ""
|
501 |
-
"The contents entered here will be reflected in the bottom of each fixed "
|
502 |
-
"page, the \"Contact Section\" widget, the \"Contact Button\" widget, etc."
|
503 |
-
msgstr ""
|
504 |
-
"ここに入力された内容が各固定ページ下部や『お問い合わせ情報』ウィジェット、"
|
505 |
-
"『お問い合わせボタン』ウィジェットなどに反映されます。"
|
506 |
-
|
507 |
-
#: dist/inc/contact-section/contact-section.php:141
|
508 |
-
#: dist/inc/contact-section/customizer.php:35
|
509 |
-
#: inc/contact-section/contact-section.php:141
|
510 |
-
#: inc/contact-section/customizer.php:35
|
511 |
-
msgid ""
|
512 |
-
"When I display it on the page, it is necessary to classify a check into "
|
513 |
-
"\"Display Contact Section\" checkbox with the edit page of each page."
|
514 |
-
msgstr ""
|
515 |
-
"固定ページに表示する場合は、各固定ページの編集画面で\"お問い合わせ情報の表示"
|
516 |
-
"\"にチェックを入れる必要があります。"
|
517 |
-
|
518 |
-
#: dist/inc/contact-section/contact-section.php:145
|
519 |
-
#: dist/inc/contact-section/customizer.php:62
|
520 |
-
#: inc/contact-section/contact-section.php:145
|
521 |
-
#: inc/contact-section/customizer.php:62
|
522 |
-
msgid "Message"
|
523 |
-
msgstr "メッセージ"
|
524 |
-
|
525 |
-
#: dist/inc/contact-section/contact-section.php:148
|
526 |
-
#: dist/inc/contact-section/contact-section.php:155
|
527 |
-
#: dist/inc/contact-section/contact-section.php:162
|
528 |
-
#: dist/inc/contact-section/contact-section.php:169
|
529 |
-
#: dist/inc/contact-section/contact-section.php:177
|
530 |
-
#: dist/inc/contact-section/contact-section.php:185
|
531 |
-
#: dist/inc/contact-section/contact-section.php:193
|
532 |
-
#: dist/inc/contact-section/customizer.php:67
|
533 |
-
#: dist/inc/contact-section/customizer.php:88
|
534 |
-
#: dist/inc/contact-section/customizer.php:109
|
535 |
-
#: dist/inc/contact-section/customizer.php:130
|
536 |
-
#: dist/inc/contact-section/customizer.php:151
|
537 |
-
#: dist/inc/contact-section/customizer.php:172
|
538 |
-
#: dist/inc/contact-section/customizer.php:193
|
539 |
-
#: dist/inc/google_analytics/ga_admin.php:16 dist/inc/sns/sns_admin.php:38
|
540 |
-
#: inc/contact-section/contact-section.php:148
|
541 |
-
#: inc/contact-section/contact-section.php:155
|
542 |
-
#: inc/contact-section/contact-section.php:162
|
543 |
-
#: inc/contact-section/contact-section.php:169
|
544 |
-
#: inc/contact-section/contact-section.php:177
|
545 |
-
#: inc/contact-section/contact-section.php:185
|
546 |
-
#: inc/contact-section/contact-section.php:193
|
547 |
-
#: inc/contact-section/customizer.php:67 inc/contact-section/customizer.php:88
|
548 |
-
#: inc/contact-section/customizer.php:109
|
549 |
-
#: inc/contact-section/customizer.php:130
|
550 |
-
#: inc/contact-section/customizer.php:151
|
551 |
-
#: inc/contact-section/customizer.php:172
|
552 |
-
#: inc/contact-section/customizer.php:193 inc/google_analytics/ga_admin.php:16
|
553 |
-
#: inc/sns/sns_admin.php:38
|
554 |
-
msgid "ex) "
|
555 |
-
msgstr "例) "
|
556 |
-
|
557 |
-
#: dist/inc/contact-section/contact-section.php:152
|
558 |
-
#: dist/inc/contact-section/customizer.php:83
|
559 |
-
#: inc/contact-section/contact-section.php:152
|
560 |
-
#: inc/contact-section/customizer.php:83
|
561 |
-
msgid "Phone number"
|
562 |
-
msgstr "電話番号"
|
563 |
-
|
564 |
-
#: dist/inc/contact-section/contact-section.php:159
|
565 |
-
#: dist/inc/contact-section/customizer.php:104
|
566 |
-
#: inc/contact-section/contact-section.php:159
|
567 |
-
#: inc/contact-section/customizer.php:104
|
568 |
-
msgid "Phone icon"
|
569 |
-
msgstr "電話アイコン"
|
570 |
-
|
571 |
-
#: dist/inc/contact-section/contact-section.php:166
|
572 |
-
#: dist/inc/contact-section/contact-section.php:169
|
573 |
-
#: dist/inc/contact-section/customizer.php:125
|
574 |
-
#: dist/inc/contact-section/customizer.php:130
|
575 |
-
#: inc/contact-section/contact-section.php:166
|
576 |
-
#: inc/contact-section/contact-section.php:169
|
577 |
-
#: inc/contact-section/customizer.php:125
|
578 |
-
#: inc/contact-section/customizer.php:130
|
579 |
-
msgid "Office hours"
|
580 |
-
msgstr "営業時間"
|
581 |
-
|
582 |
-
#: dist/inc/contact-section/contact-section.php:169
|
583 |
-
#: dist/inc/contact-section/customizer.php:130
|
584 |
-
#: inc/contact-section/contact-section.php:169
|
585 |
-
#: inc/contact-section/customizer.php:130
|
586 |
-
msgid "Weekdays except holidays"
|
587 |
-
msgstr "土日・祝日除く"
|
588 |
-
|
589 |
-
#: dist/inc/contact-section/contact-section.php:174
|
590 |
-
#: dist/inc/contact-section/customizer.php:146
|
591 |
-
#: inc/contact-section/contact-section.php:174
|
592 |
-
#: inc/contact-section/customizer.php:146
|
593 |
-
msgid "The contact page URL"
|
594 |
-
msgstr "お問い合わせ先URL"
|
595 |
-
|
596 |
-
#: dist/inc/contact-section/contact-section.php:177
|
597 |
-
#: dist/inc/contact-section/customizer.php:151
|
598 |
-
#: inc/contact-section/contact-section.php:177
|
599 |
-
#: inc/contact-section/customizer.php:151
|
600 |
-
msgid "or"
|
601 |
-
msgstr "もしくは"
|
602 |
-
|
603 |
-
#: dist/inc/contact-section/contact-section.php:178
|
604 |
-
#: dist/inc/contact-section/customizer.php:151
|
605 |
-
#: inc/contact-section/contact-section.php:178
|
606 |
-
#: inc/contact-section/customizer.php:151
|
607 |
-
msgid "* If you fill in the blank, widget's contact button does not appear."
|
608 |
-
msgstr "※ 未入力の場合、お問い合わせウィジェットには何も表示されません。"
|
609 |
-
|
610 |
-
#: dist/inc/contact-section/contact-section.php:182
|
611 |
-
#: dist/inc/contact-section/customizer.php:167
|
612 |
-
#: inc/contact-section/contact-section.php:182
|
613 |
-
#: inc/contact-section/customizer.php:167
|
614 |
-
msgid "Contact button Text"
|
615 |
-
msgstr "お問い合わせボタンに表示するテキスト"
|
616 |
-
|
617 |
-
#: dist/inc/contact-section/contact-section.php:185
|
618 |
-
#: dist/inc/contact-section/customizer.php:172
|
619 |
-
#: inc/contact-section/contact-section.php:185
|
620 |
-
#: inc/contact-section/customizer.php:172
|
621 |
-
msgid "Contact Us from email."
|
622 |
-
msgstr "メールでのお問い合わせはこちら"
|
623 |
-
|
624 |
-
#: dist/inc/contact-section/contact-section.php:190
|
625 |
-
#: dist/inc/contact-section/customizer.php:188
|
626 |
-
#: inc/contact-section/contact-section.php:190
|
627 |
-
#: inc/contact-section/customizer.php:188
|
628 |
-
msgid "Contact button text( sub )"
|
629 |
-
msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
|
630 |
-
|
631 |
-
#: dist/inc/contact-section/contact-section.php:194
|
632 |
-
#: dist/inc/contact-section/customizer.php:193
|
633 |
-
#: inc/contact-section/contact-section.php:194
|
634 |
-
#: inc/contact-section/customizer.php:193
|
635 |
-
msgid "Email contact form"
|
636 |
-
msgstr "お気軽にお問い合わせください。"
|
637 |
-
|
638 |
-
#: dist/inc/contact-section/contact-section.php:199
|
639 |
-
#: dist/inc/contact-section/customizer.php:209
|
640 |
-
#: inc/contact-section/contact-section.php:199
|
641 |
-
#: inc/contact-section/customizer.php:209
|
642 |
-
msgid "Contact button short text for side widget"
|
643 |
-
msgstr "お問い合わせボタンウィジェットに表示するテキスト"
|
644 |
-
|
645 |
-
#: dist/inc/contact-section/contact-section.php:203
|
646 |
-
#: dist/inc/contact-section/customizer.php:214
|
647 |
-
#: inc/contact-section/contact-section.php:203
|
648 |
-
#: inc/contact-section/customizer.php:214
|
649 |
-
msgid "This will used to \"Contact Button\" widget."
|
650 |
-
msgstr ""
|
651 |
-
"このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの利"
|
652 |
-
"用を想定していますので少ない文字数で設定してください。"
|
653 |
-
|
654 |
-
#: dist/inc/contact-section/contact-section.php:207
|
655 |
-
#: inc/contact-section/contact-section.php:207
|
656 |
-
msgid "Advanced Setting"
|
657 |
-
msgstr "高度な設定"
|
658 |
-
|
659 |
-
#: dist/inc/contact-section/contact-section.php:216
|
660 |
-
#: dist/inc/contact-section/customizer.php:238
|
661 |
-
#: inc/contact-section/contact-section.php:216
|
662 |
-
#: inc/contact-section/customizer.php:238
|
663 |
-
msgid "Inquiry Banner image"
|
664 |
-
msgstr "お問い合わせバナー画像"
|
665 |
-
|
666 |
-
#: dist/inc/contact-section/contact-section.php:218
|
667 |
-
#: inc/contact-section/contact-section.php:218
|
668 |
-
msgid "Select Image"
|
669 |
-
msgstr "画像を選択"
|
670 |
-
|
671 |
-
#: dist/inc/contact-section/contact-section.php:219
|
672 |
-
#: dist/inc/contact-section/customizer.php:228
|
673 |
-
#: inc/contact-section/contact-section.php:219
|
674 |
-
#: inc/contact-section/customizer.php:228
|
675 |
-
msgid "Display the image instead of the above inquiry information"
|
676 |
-
msgstr ""
|
677 |
-
"画像が登録されている場合は標準のお問い合わせ情報ではなく画像が表示されます。"
|
678 |
-
|
679 |
-
#: dist/inc/contact-section/contact-section.php:223
|
680 |
-
#: dist/inc/contact-section/customizer.php:264
|
681 |
-
#: inc/contact-section/contact-section.php:223
|
682 |
-
#: inc/contact-section/customizer.php:264
|
683 |
-
msgid "Display HTML message instead of the standard"
|
684 |
-
msgstr "お問い合わせ情報として表示するHTML"
|
685 |
-
|
686 |
-
#: dist/inc/contact-section/contact-section.php:225
|
687 |
-
#: dist/inc/contact-section/customizer.php:257
|
688 |
-
#: inc/contact-section/contact-section.php:225
|
689 |
-
#: inc/contact-section/customizer.php:257
|
690 |
-
msgid "HTML takes precedence over image"
|
691 |
-
msgstr "HTMLが登録されている場合は画像より優先されます。"
|
692 |
-
|
693 |
-
#: dist/inc/contact-section/contact-section.php:247
|
694 |
-
#: inc/contact-section/contact-section.php:247
|
695 |
-
msgid "Display Contact Section"
|
696 |
-
msgstr "お問い合わせ情報の表示"
|
697 |
-
|
698 |
-
#: dist/inc/contact-section/contact-section.php:395
|
699 |
-
#: dist/inc/contact-section/contact-section.php:448
|
700 |
-
#: inc/contact-section/contact-section.php:395
|
701 |
-
#: inc/contact-section/contact-section.php:448
|
702 |
-
msgid "Edit contact information"
|
703 |
-
msgstr "Contact情報を編集"
|
704 |
-
|
705 |
-
#: dist/inc/contact-section/contact-section.php:464
|
706 |
-
#: inc/contact-section/contact-section.php:464
|
707 |
-
msgid "Contact Button"
|
708 |
-
msgstr "お問い合わせボタン"
|
709 |
-
|
710 |
-
#: dist/inc/contact-section/contact-section.php:465
|
711 |
-
#: inc/contact-section/contact-section.php:465
|
712 |
-
msgid "Display contact button."
|
713 |
-
msgstr "お問い合わせボタンを表示します。"
|
714 |
-
|
715 |
-
#: dist/inc/contact-section/contact-section.php:466
|
716 |
-
#: dist/inc/contact-section/contact-section.php:494
|
717 |
-
#: dist/inc/contact-section/contact-section.php:516
|
718 |
-
#: inc/contact-section/contact-section.php:466
|
719 |
-
#: inc/contact-section/contact-section.php:494
|
720 |
-
#: inc/contact-section/contact-section.php:516
|
721 |
-
#, php-format
|
722 |
-
msgid ""
|
723 |
-
"It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
724 |
-
"\"Main setting\" page."
|
725 |
-
msgstr ""
|
726 |
-
"「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要があります。"
|
727 |
-
|
728 |
-
#: dist/inc/contact-section/contact-section.php:493
|
729 |
-
#: inc/contact-section/contact-section.php:493
|
730 |
-
msgid "Display contact button"
|
731 |
-
msgstr "お問い合わせボタンを表示します。"
|
732 |
-
|
733 |
-
#: dist/inc/contact-section/contact-section.php:514 dist/veu-packages.php:224
|
734 |
-
#: inc/contact-section/contact-section.php:514 veu-packages.php:224
|
735 |
-
msgid "Contact Section"
|
736 |
-
msgstr "お問い合わせ情報"
|
737 |
-
|
738 |
-
#: dist/inc/contact-section/contact-section.php:515
|
739 |
-
#: inc/contact-section/contact-section.php:515
|
740 |
-
msgid "Display Phone number and contact button etc."
|
741 |
-
msgstr "電話番号とお問い合わせボタンなどを表示します。"
|
742 |
-
|
743 |
-
#: dist/inc/contact-section/contact-section.php:544
|
744 |
-
#: inc/contact-section/contact-section.php:544
|
745 |
-
#, php-format
|
746 |
-
msgid ""
|
747 |
-
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
748 |
-
"\"Main setting\" page."
|
749 |
-
msgstr ""
|
750 |
-
"* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
|
751 |
-
"す。"
|
752 |
-
|
753 |
-
#: dist/inc/contact-section/customizer.php:23
|
754 |
-
#: inc/contact-section/customizer.php:23
|
755 |
-
msgid "Contact Settings"
|
756 |
-
msgstr "お問い合わせ情報"
|
757 |
-
|
758 |
-
#: dist/inc/contact-section/customizer.php:231
|
759 |
-
#: dist/inc/contact-section/customizer.php:260
|
760 |
-
#: inc/contact-section/customizer.php:231
|
761 |
-
#: inc/contact-section/customizer.php:260
|
762 |
-
msgid "It is not reflected in the header."
|
763 |
-
msgstr "ヘッダーには反映されません。"
|
764 |
-
|
765 |
-
#: dist/inc/css-customize/class-veu-metabox-css-customize.php:14
|
766 |
-
#: inc/css-customize/class-veu-metabox-css-customize.php:14
|
767 |
-
msgid "Custom CSS"
|
768 |
-
msgstr "カスタムCSS"
|
769 |
-
|
770 |
-
#: dist/inc/css-customize/css-customize-edit.php:2
|
771 |
-
#: dist/inc/css-customize/css-customize.php:43
|
772 |
-
#: dist/inc/css-customize/css-customize.php:57
|
773 |
-
#: dist/inc/css-customize/css-customize.php:58
|
774 |
-
#: inc/css-customize/css-customize-edit.php:2
|
775 |
-
#: inc/css-customize/css-customize.php:54
|
776 |
-
#: inc/css-customize/css-customize.php:68
|
777 |
-
#: inc/css-customize/css-customize.php:69
|
778 |
-
msgid "CSS Customize"
|
779 |
-
msgstr "CSSカスタマイズ"
|
780 |
-
|
781 |
-
#: dist/inc/css-customize/css-customize-edit.php:5
|
782 |
-
#: inc/css-customize/css-customize-edit.php:5
|
783 |
-
msgid "You can add custom CSS here."
|
784 |
-
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
785 |
-
|
786 |
-
#: dist/inc/css-customize/css-customize-edit.php:13
|
787 |
-
#: inc/css-customize/css-customize-edit.php:13
|
788 |
-
msgid "Save CSS"
|
789 |
-
msgstr "CSSを保存する"
|
790 |
-
|
791 |
-
#: dist/inc/css-customize/css-customize.php:113
|
792 |
-
#: inc/css-customize/css-customize.php:124
|
793 |
-
msgid "Your custom CSS was saved."
|
794 |
-
msgstr "CSSが保存されました"
|
795 |
-
|
796 |
-
#: dist/inc/css-customize/css-customize.php:116
|
797 |
-
#: inc/css-customize/css-customize.php:127
|
798 |
-
msgid "Error occured. Please try again."
|
799 |
-
msgstr "何らかのエラー!! また試してみてください"
|
800 |
-
|
801 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:27
|
802 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:42
|
803 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:39
|
804 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:54
|
805 |
-
msgid "Not recommended"
|
806 |
-
msgstr "非推奨"
|
807 |
-
|
808 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:74
|
809 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:76
|
810 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:86
|
811 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:88
|
812 |
-
msgid "Ex ) "
|
813 |
-
msgstr "例 ) "
|
814 |
-
|
815 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:174
|
816 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:190
|
817 |
-
msgid "Font Awesome"
|
818 |
-
msgstr "Font Awesome"
|
819 |
-
|
820 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:195
|
821 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:213
|
822 |
-
msgid "Font Awesome Version"
|
823 |
-
msgstr "Font Awesome Version"
|
824 |
-
|
825 |
-
#: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:198
|
826 |
-
#: inc/font-awesome/package/class-vk-font-awesome-versions.php:216
|
827 |
-
msgid "4.7 will be abolished in the near future."
|
828 |
-
msgstr "4.7は将来的に廃止します。"
|
829 |
-
|
830 |
-
#: dist/inc/footer-copyright-change.php:6 inc/footer-copyright-change.php:6
|
831 |
-
msgid ""
|
832 |
-
"<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
|
833 |
-
"\"https://lightning.nagoya\" target=\"_blank\" title=\"Free WordPress Theme "
|
834 |
-
"Lightning\"> Lightning Theme</a> & <a href=\"https://ex-unit.nagoya\" "
|
835 |
-
"target=\"_blank\">VK All in One Expansion Unit</a> by <a href=\"//www.vektor-"
|
836 |
-
"inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
|
837 |
-
msgstr ""
|
838 |
-
"<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
|
839 |
-
"\"https://lightning.nagoya/ja/\" target=\"_blank\" title=\"Free WordPress "
|
840 |
-
"Theme Lightning\"> Lightning Theme</a> & <a href=\"https://ex-unit."
|
841 |
-
"nagoya/ja/\" target=\"_blank\">VK All in One Expansion Unit</a> by <a href="
|
842 |
-
"\"//www.vektor-inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
|
843 |
-
|
844 |
-
#: dist/inc/google_analytics/ga_admin.php:9
|
845 |
-
#: dist/inc/google_analytics/ga_admin.php:13
|
846 |
-
#: dist/inc/google_analytics/google_analytics.php:23
|
847 |
-
#: inc/google_analytics/ga_admin.php:9 inc/google_analytics/ga_admin.php:13
|
848 |
-
#: inc/google_analytics/google_analytics.php:23
|
849 |
-
msgid "Google Analytics Settings"
|
850 |
-
msgstr "Google Analytics設定"
|
851 |
-
|
852 |
-
#: dist/inc/google_analytics/ga_admin.php:14
|
853 |
-
#: inc/google_analytics/ga_admin.php:14
|
854 |
-
msgid ""
|
855 |
-
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
856 |
-
"the site."
|
857 |
-
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
858 |
-
|
859 |
-
#: dist/inc/google_analytics/ga_admin.php:19
|
860 |
-
#: inc/google_analytics/ga_admin.php:19
|
861 |
-
msgid ""
|
862 |
-
"Please select the type of Analytics code . (If you are unsure you can skip "
|
863 |
-
"this.)"
|
864 |
-
msgstr ""
|
865 |
-
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
866 |
-
"す )"
|
867 |
-
|
868 |
-
#: dist/inc/google_analytics/ga_admin.php:23
|
869 |
-
#: dist/inc/google_analytics/ga_customizer.php:74
|
870 |
-
#: inc/google_analytics/ga_admin.php:23
|
871 |
-
#: inc/google_analytics/ga_customizer.php:74
|
872 |
-
msgid "Recommendation ( gtag )"
|
873 |
-
msgstr "推奨 ( gtag )"
|
874 |
-
|
875 |
-
#: dist/inc/google_analytics/ga_admin.php:24
|
876 |
-
#: dist/inc/google_analytics/ga_customizer.php:75
|
877 |
-
#: inc/google_analytics/ga_admin.php:24
|
878 |
-
#: inc/google_analytics/ga_customizer.php:75
|
879 |
-
msgid "Universal Analytics code ( analytics.js )"
|
880 |
-
msgstr "ユニバーサル アナリティクスのコード ( analytics.js )"
|
881 |
-
|
882 |
-
#: dist/inc/google_analytics/ga_admin.php:25
|
883 |
-
#: dist/inc/google_analytics/ga_customizer.php:76
|
884 |
-
#: inc/google_analytics/ga_admin.php:25
|
885 |
-
#: inc/google_analytics/ga_customizer.php:76
|
886 |
-
msgid "Normal code ( analytics.js )"
|
887 |
-
msgstr "ノーマルのコード ( analytics.js )"
|
888 |
-
|
889 |
-
#: dist/inc/google_analytics/ga_customizer.php:24
|
890 |
-
#: inc/google_analytics/ga_customizer.php:24
|
891 |
-
msgid "Google Analtics Settings"
|
892 |
-
msgstr "Google Analytics設定"
|
893 |
-
|
894 |
-
#: dist/inc/google_analytics/ga_customizer.php:45
|
895 |
-
#: inc/google_analytics/ga_customizer.php:45
|
896 |
-
msgid "Google Analytics ID"
|
897 |
-
msgstr "Google Analyticsの ID"
|
898 |
-
|
899 |
-
#: dist/inc/google_analytics/ga_customizer.php:49
|
900 |
-
#: inc/google_analytics/ga_customizer.php:49
|
901 |
-
msgid ""
|
902 |
-
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
903 |
-
"the site.<br>ex) XXXXXXXX-X"
|
904 |
-
msgstr ""
|
905 |
-
"このサイトで使用する Google アナリティクスの ID を入力して下さい。<br>例) "
|
906 |
-
"XXXXXXXX-X"
|
907 |
-
|
908 |
-
#: dist/inc/google_analytics/ga_customizer.php:68
|
909 |
-
#: inc/google_analytics/ga_customizer.php:68
|
910 |
-
msgid "Select the type of Analytics code"
|
911 |
-
msgstr "アナリティクスコードの種類を選択"
|
912 |
-
|
913 |
-
#: dist/inc/google_analytics/ga_customizer.php:78
|
914 |
-
#: inc/google_analytics/ga_customizer.php:78
|
915 |
-
msgid ""
|
916 |
-
"Print the select the type of Analytics code.<br>(If you are unsure you can "
|
917 |
-
"skip this.)"
|
918 |
-
msgstr ""
|
919 |
-
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
920 |
-
"す。)"
|
921 |
-
|
922 |
-
#: dist/inc/icons.php:38 dist/inc/icons.php:68 inc/icons.php:38
|
923 |
-
#: inc/icons.php:68
|
924 |
-
msgid "icon setting"
|
925 |
-
msgstr "アイコン設定"
|
926 |
-
|
927 |
-
#: dist/inc/icons.php:74 inc/icons.php:74
|
928 |
-
#, php-format
|
929 |
-
msgid ""
|
930 |
-
"This feature will be discontinued shortly.<br>You can set the site icon from "
|
931 |
-
"\"Site Identity\" panel of [ <a href=%s>Themes > Customize</a> ] After "
|
932 |
-
"updating the setting."
|
933 |
-
msgstr ""
|
934 |
-
"この機能は間もなく廃止されます。<br>\n"
|
935 |
-
"サイトアイコンは「<a href=%s>外観 > カスタマイズ</a>」の「サイト基本情報」パ"
|
936 |
-
"ネルから設定できます。"
|
937 |
-
|
938 |
-
#: dist/inc/icons.php:81 inc/icons.php:81
|
939 |
-
msgid "Favicon Setting"
|
940 |
-
msgstr "ファビコン設定"
|
941 |
-
|
942 |
-
#: dist/inc/icons.php:83 inc/icons.php:83
|
943 |
-
msgid "Choose icon"
|
944 |
-
msgstr "アイコンを選択"
|
945 |
-
|
946 |
-
#: dist/inc/icons.php:84 inc/icons.php:84
|
947 |
-
msgid "Please upload your \".ico\" file"
|
948 |
-
msgstr "作成したicoファイルをアップロードしてください"
|
949 |
-
|
950 |
-
#: dist/inc/insert-ads.php:38 dist/inc/insert-ads.php:218
|
951 |
-
#: dist/veu-packages.php:282 inc/insert-ads.php:38 inc/insert-ads.php:218
|
952 |
-
#: veu-packages.php:282
|
953 |
-
msgid "Insert ads"
|
954 |
-
msgstr "広告の挿入"
|
955 |
-
|
956 |
-
#: dist/inc/insert-ads.php:228 inc/insert-ads.php:228
|
957 |
-
msgid "Google Auto ads"
|
958 |
-
msgstr "Google自動広告"
|
959 |
-
|
960 |
-
#: dist/inc/insert-ads.php:233 inc/insert-ads.php:233
|
961 |
-
msgid "About Google Auto ads"
|
962 |
-
msgstr "Google自動広告について"
|
963 |
-
|
964 |
-
#: dist/inc/insert-ads.php:236 inc/insert-ads.php:236
|
965 |
-
msgid ""
|
966 |
-
"If you would like to set to Google Auto ads,Please fill in Publisher ID."
|
967 |
-
msgstr ""
|
968 |
-
"Google自動広告を設定する場合はチェックを入れて、サイト運営者IDを入力してくだ"
|
969 |
-
"さい。"
|
970 |
-
|
971 |
-
#: dist/inc/insert-ads.php:238 inc/insert-ads.php:238
|
972 |
-
msgid "Enable Google Auto ads"
|
973 |
-
msgstr "Google自動広告を有効にする"
|
974 |
-
|
975 |
-
#: dist/inc/insert-ads.php:240 inc/insert-ads.php:240
|
976 |
-
msgid "Publisher ID"
|
977 |
-
msgstr "サイト運営者ID"
|
978 |
-
|
979 |
-
#: dist/inc/insert-ads.php:244 inc/insert-ads.php:244
|
980 |
-
msgid "Google AdSense dashboard"
|
981 |
-
msgstr "Google AdSense 管理画面"
|
982 |
-
|
983 |
-
#: dist/inc/insert-ads.php:246 inc/insert-ads.php:246
|
984 |
-
#, php-format
|
985 |
-
msgid ""
|
986 |
-
"Publisher ID is you can investigate from the %s > Account information page."
|
987 |
-
msgstr "サイト運営者IDは %s > アカウント情報 から確認できます。"
|
988 |
-
|
989 |
-
#: dist/inc/insert-ads.php:249 inc/insert-ads.php:249
|
990 |
-
msgid "Designate anchor ads at the bottom."
|
991 |
-
msgstr "アンカー広告を下部に指定する"
|
992 |
-
|
993 |
-
#: dist/inc/insert-ads.php:251 inc/insert-ads.php:251
|
994 |
-
msgid ""
|
995 |
-
"The layout may collapse by inserting Google Auto ads, but the correspondence "
|
996 |
-
"varies depending on the kind, specification, theme etc. of advertisement, so "
|
997 |
-
"please write CSS according to your needs about the display collapse and "
|
998 |
-
"correct it."
|
999 |
-
msgstr ""
|
1000 |
-
"自動広告の挿入によりレイアウトが崩れる事がありますが、広告の種類・仕様・利用"
|
1001 |
-
"中のテーマなどにより対応は様々ですので、表示崩れについては各自必要に応じてCSS"
|
1002 |
-
"を書いて修正してください。"
|
1003 |
-
|
1004 |
-
#: dist/inc/insert-ads.php:259 inc/insert-ads.php:259
|
1005 |
-
msgid "Insert ads to post."
|
1006 |
-
msgstr "投稿に広告を挿入"
|
1007 |
-
|
1008 |
-
#: dist/inc/insert-ads.php:261 inc/insert-ads.php:261
|
1009 |
-
msgid "Insert ads to before content and more tag and after content."
|
1010 |
-
msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
|
1011 |
-
|
1012 |
-
#: dist/inc/insert-ads.php:261 inc/insert-ads.php:261
|
1013 |
-
msgid "If you want to separate ads area, you fill two fields."
|
1014 |
-
msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
|
1015 |
-
|
1016 |
-
#: dist/inc/insert-ads.php:263 inc/insert-ads.php:263
|
1017 |
-
msgid "insert the ad [ before content ]"
|
1018 |
-
msgstr "広告を挿入 [ 記事の最初 ]"
|
1019 |
-
|
1020 |
-
#: dist/inc/insert-ads.php:271 inc/insert-ads.php:271
|
1021 |
-
msgid "insert the ad [ more tag ]"
|
1022 |
-
msgstr "広告を挿入 [ moreタグ ]"
|
1023 |
-
|
1024 |
-
#: dist/inc/insert-ads.php:279 inc/insert-ads.php:279
|
1025 |
-
msgid "insert the ad [ after content ]"
|
1026 |
-
msgstr "広告を挿入 [ 記事の最後 ]"
|
1027 |
-
|
1028 |
-
#: dist/inc/meta-description.php:20 dist/inc/meta-description.php:31
|
1029 |
-
#: dist/inc/meta-description.php:34 inc/meta-description.php:20
|
1030 |
-
#: inc/meta-description.php:31 inc/meta-description.php:34
|
1031 |
-
msgid "Meta Description"
|
1032 |
-
msgstr "メタディスクリプション"
|
1033 |
-
|
1034 |
-
#: dist/inc/meta-description.php:37 inc/meta-description.php:37
|
1035 |
-
msgid ""
|
1036 |
-
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
1037 |
-
"page will be reflected in the description of the meta tag."
|
1038 |
-
msgstr ""
|
1039 |
-
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
1040 |
-
"反映されます"
|
1041 |
-
|
1042 |
-
#: dist/inc/meta-description.php:38 inc/meta-description.php:38
|
1043 |
-
msgid ""
|
1044 |
-
"Description of meta tags in the search results screen of search sites such "
|
1045 |
-
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
1046 |
-
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
1047 |
-
"has become a specification that is applied as a description."
|
1048 |
-
msgstr ""
|
1049 |
-
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
1050 |
-
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
1051 |
-
"内容が反映されます。"
|
1052 |
-
|
1053 |
-
#: dist/inc/meta-description.php:39 inc/meta-description.php:39
|
1054 |
-
msgid ""
|
1055 |
-
"The meta description of the top page is subject to the catchphrase of the "
|
1056 |
-
"site. However, its contents will be reflected if the excerpt is entered in "
|
1057 |
-
"fixed page that was set on the top page."
|
1058 |
-
msgstr ""
|
1059 |
-
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
1060 |
-
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
1061 |
-
"内容が反映されます。"
|
1062 |
-
|
1063 |
-
#: dist/inc/meta-description.php:40 inc/meta-description.php:40
|
1064 |
-
msgid ""
|
1065 |
-
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
1066 |
-
"each article edit page, and check the expert column display."
|
1067 |
-
msgstr ""
|
1068 |
-
"抜粋欄が表示されていない場合は、編集画面の右上に「表示」というタブがあります"
|
1069 |
-
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
1070 |
-
"で、チェックして下さい。"
|
1071 |
-
|
1072 |
-
#: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:14
|
1073 |
-
#: dist/inc/meta-keyword/meta-keyword.php:51
|
1074 |
-
#: inc/meta-keyword/class-veu-metabox-meta-keyword.php:14
|
1075 |
-
#: inc/meta-keyword/meta-keyword.php:51
|
1076 |
-
msgid "Meta Keywords"
|
1077 |
-
msgstr "メタキーワード"
|
1078 |
-
|
1079 |
-
#: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:34
|
1080 |
-
#: inc/meta-keyword/class-veu-metabox-meta-keyword.php:34
|
1081 |
-
msgid ""
|
1082 |
-
"To distinguish between individual keywords, please enter a , delimiter "
|
1083 |
-
"(optional)."
|
1084 |
-
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
1085 |
-
|
1086 |
-
#: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:35
|
1087 |
-
#: inc/meta-keyword/class-veu-metabox-meta-keyword.php:35
|
1088 |
-
#, php-format
|
1089 |
-
msgid "* keywords common to the entire site can be set from %s."
|
1090 |
-
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
1091 |
-
|
1092 |
-
#: dist/inc/meta-keyword/meta-keyword.php:79
|
1093 |
-
#: inc/meta-keyword/meta-keyword.php:79
|
1094 |
-
msgid "Meta Keyword"
|
1095 |
-
msgstr "メタキーワード"
|
1096 |
-
|
1097 |
-
#: dist/inc/meta-keyword/meta-keyword.php:82
|
1098 |
-
#: inc/meta-keyword/meta-keyword.php:82
|
1099 |
-
msgid "Common Keywords"
|
1100 |
-
msgstr "共通キーワード設定"
|
1101 |
-
|
1102 |
-
#: dist/inc/meta-keyword/meta-keyword.php:83
|
1103 |
-
#: inc/meta-keyword/meta-keyword.php:83
|
1104 |
-
msgid ""
|
1105 |
-
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
1106 |
-
"if you want multiple keywords, enter with separator of \",\"."
|
1107 |
-
msgstr ""
|
1108 |
-
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
1109 |
-
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
1110 |
-
|
1111 |
-
#: dist/inc/meta-keyword/meta-keyword.php:86
|
1112 |
-
#: inc/meta-keyword/meta-keyword.php:86
|
1113 |
-
msgid "This is not seriously, Because the SearchEngine does not care this."
|
1114 |
-
msgstr ""
|
1115 |
-
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
1116 |
-
"クターとはなりません。"
|
1117 |
-
|
1118 |
-
#: dist/inc/meta-keyword/meta-keyword.php:87
|
1119 |
-
#: inc/meta-keyword/meta-keyword.php:87
|
1120 |
-
msgid ""
|
1121 |
-
"For each page individual keyword is enter at the edit screen of each "
|
1122 |
-
"article. 10 keywords maximum, together with a each article keywords is "
|
1123 |
-
"desirable."
|
1124 |
-
msgstr ""
|
1125 |
-
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
1126 |
-
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
1127 |
-
|
1128 |
-
#: dist/inc/meta-keyword/meta-keyword.php:88
|
1129 |
-
#: inc/meta-keyword/meta-keyword.php:88
|
1130 |
-
msgid "\",\" separator at end of the last keyword is do not need."
|
1131 |
-
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
1132 |
-
|
1133 |
-
#: dist/inc/meta-keyword/meta-keyword.php:89
|
1134 |
-
#: inc/meta-keyword/meta-keyword.php:89
|
1135 |
-
msgid "Example: WordPress,template,theme,free,GPL"
|
1136 |
-
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
1137 |
-
|
1138 |
-
#: dist/inc/noindex/class-veu-metabox-noindex.php:10
|
1139 |
-
#: inc/noindex/class-veu-metabox-noindex.php:10
|
1140 |
-
msgid "Noindex setting"
|
1141 |
-
msgstr "noindex設定"
|
1142 |
-
|
1143 |
-
#: dist/inc/noindex/class-veu-metabox-noindex.php:34
|
1144 |
-
#: inc/noindex/class-veu-metabox-noindex.php:34
|
1145 |
-
msgid "Print noindex tag that to be do not display on search result."
|
1146 |
-
msgstr "検索結果に表示されないようにnoindexタグを出力する。"
|
1147 |
-
|
1148 |
-
#: dist/inc/other-widget/widget-3pr-area.php:9
|
1149 |
-
#: dist/inc/other-widget/widget-3pr-area.php:161
|
1150 |
-
#: inc/other-widget/widget-3pr-area.php:9
|
1151 |
-
#: inc/other-widget/widget-3pr-area.php:161
|
1152 |
-
msgid "3PR area"
|
1153 |
-
msgstr "3PR エリア"
|
1154 |
-
|
1155 |
-
#: dist/inc/other-widget/widget-3pr-area.php:14
|
1156 |
-
#: inc/other-widget/widget-3pr-area.php:14
|
1157 |
-
msgid "Displays a 3PR area"
|
1158 |
-
msgstr "3PR エリアを表示します。"
|
1159 |
-
|
1160 |
-
#: dist/inc/other-widget/widget-3pr-area.php:20
|
1161 |
-
#: inc/other-widget/widget-3pr-area.php:20
|
1162 |
-
msgid "3PR area1 title"
|
1163 |
-
msgstr "3PR エリア1 タイトル"
|
1164 |
-
|
1165 |
-
#: dist/inc/other-widget/widget-3pr-area.php:28
|
1166 |
-
#: inc/other-widget/widget-3pr-area.php:28
|
1167 |
-
msgid "3PR area2 title"
|
1168 |
-
msgstr "3PR エリア2 タイトル"
|
1169 |
-
|
1170 |
-
#: dist/inc/other-widget/widget-3pr-area.php:36
|
1171 |
-
#: inc/other-widget/widget-3pr-area.php:36
|
1172 |
-
msgid "3PR area3 title"
|
1173 |
-
msgstr "3PR エリア3 タイトル"
|
1174 |
-
|
1175 |
-
#: dist/inc/other-widget/widget-3pr-area.php:54
|
1176 |
-
#: inc/other-widget/widget-3pr-area.php:54
|
1177 |
-
msgid "3PR area setting"
|
1178 |
-
msgstr "3PR エリア設定"
|
1179 |
-
|
1180 |
-
#: dist/inc/other-widget/widget-3pr-area.php:56
|
1181 |
-
#: dist/inc/other-widget/widget-new-posts.php:279
|
1182 |
-
#: dist/inc/other-widget/widget-page.php:126
|
1183 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:114
|
1184 |
-
#: dist/inc/other-widget/widget-profile.php:55
|
1185 |
-
#: dist/inc/related_posts/related_posts.php:262
|
1186 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:79 dist/inc/sns/widget-twitter.php:84
|
1187 |
-
#: inc/other-widget/widget-3pr-area.php:56
|
1188 |
-
#: inc/other-widget/widget-new-posts.php:279
|
1189 |
-
#: inc/other-widget/widget-page.php:126
|
1190 |
-
#: inc/other-widget/widget-pr-blocks.php:114
|
1191 |
-
#: inc/other-widget/widget-profile.php:55
|
1192 |
-
#: inc/related_posts/related_posts.php:262 inc/sns/widget-fb-page-plugin.php:79
|
1193 |
-
#: inc/sns/widget-twitter.php:84
|
1194 |
-
msgid "Title:"
|
1195 |
-
msgstr "タイトル"
|
1196 |
-
|
1197 |
-
#: dist/inc/other-widget/widget-3pr-area.php:62
|
1198 |
-
#: inc/other-widget/widget-3pr-area.php:62
|
1199 |
-
msgid "Select image for PC:"
|
1200 |
-
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
1201 |
-
|
1202 |
-
#: dist/inc/other-widget/widget-3pr-area.php:72
|
1203 |
-
#: dist/inc/other-widget/widget-3pr-area.php:90
|
1204 |
-
#: dist/inc/other-widget/widget-new-posts.php:326
|
1205 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:177
|
1206 |
-
#: dist/inc/other-widget/widget-profile.php:70
|
1207 |
-
#: inc/other-widget/widget-3pr-area.php:72
|
1208 |
-
#: inc/other-widget/widget-3pr-area.php:90
|
1209 |
-
#: inc/other-widget/widget-new-posts.php:326
|
1210 |
-
#: inc/other-widget/widget-pr-blocks.php:177
|
1211 |
-
#: inc/other-widget/widget-profile.php:70
|
1212 |
-
msgid "Select image"
|
1213 |
-
msgstr "画像を選択"
|
1214 |
-
|
1215 |
-
#: dist/inc/other-widget/widget-3pr-area.php:73
|
1216 |
-
#: dist/inc/other-widget/widget-3pr-area.php:91
|
1217 |
-
#: dist/inc/other-widget/widget-new-posts.php:327
|
1218 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:178
|
1219 |
-
#: dist/inc/other-widget/widget-profile.php:71
|
1220 |
-
#: inc/other-widget/widget-3pr-area.php:73
|
1221 |
-
#: inc/other-widget/widget-3pr-area.php:91
|
1222 |
-
#: inc/other-widget/widget-new-posts.php:327
|
1223 |
-
#: inc/other-widget/widget-pr-blocks.php:178
|
1224 |
-
#: inc/other-widget/widget-profile.php:71
|
1225 |
-
msgid "Clear image"
|
1226 |
-
msgstr "画像クリア"
|
1227 |
-
|
1228 |
-
#: dist/inc/other-widget/widget-3pr-area.php:80
|
1229 |
-
#: inc/other-widget/widget-3pr-area.php:80
|
1230 |
-
msgid "Select image for Mobile:"
|
1231 |
-
msgstr ""
|
1232 |
-
"スマホ用(ウィンドウサイズが 768px 以下の場合)に表示される画像を選択(橫 "
|
1233 |
-
"690px 以上推奨。空欄も可)"
|
1234 |
-
|
1235 |
-
#: dist/inc/other-widget/widget-3pr-area.php:102
|
1236 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:118
|
1237 |
-
#: inc/other-widget/widget-3pr-area.php:102
|
1238 |
-
#: inc/other-widget/widget-pr-blocks.php:118
|
1239 |
-
msgid "Summary Text:"
|
1240 |
-
msgstr "概要となるテキスト"
|
1241 |
-
|
1242 |
-
#: dist/inc/other-widget/widget-3pr-area.php:108
|
1243 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:123
|
1244 |
-
#: inc/other-widget/widget-3pr-area.php:108
|
1245 |
-
#: inc/other-widget/widget-pr-blocks.php:123
|
1246 |
-
msgid "Link URL:"
|
1247 |
-
msgstr "リンク先ページのURL"
|
1248 |
-
|
1249 |
-
#: dist/inc/other-widget/widget-3pr-area.php:116
|
1250 |
-
#: dist/inc/other-widget/widget-banner.php:106
|
1251 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:127
|
1252 |
-
#: inc/other-widget/widget-3pr-area.php:116
|
1253 |
-
#: inc/other-widget/widget-banner.php:106
|
1254 |
-
#: inc/other-widget/widget-pr-blocks.php:127
|
1255 |
-
msgid "Open link new tab."
|
1256 |
-
msgstr "リンクを別ウィンドウで開く"
|
1257 |
-
|
1258 |
-
#: dist/inc/other-widget/widget-archives.php:9 dist/veu-packages.php:160
|
1259 |
-
#: inc/other-widget/widget-archives.php:9 veu-packages.php:160
|
1260 |
-
msgid "archive list"
|
1261 |
-
msgstr "アーカイブリスト"
|
1262 |
-
|
1263 |
-
#: dist/inc/other-widget/widget-archives.php:14 dist/veu-packages.php:160
|
1264 |
-
#: inc/other-widget/widget-archives.php:14 veu-packages.php:160
|
1265 |
-
msgid ""
|
1266 |
-
"Displays a list of archives. You can choose the post type and also to "
|
1267 |
-
"display archives by month or by year."
|
1268 |
-
msgstr ""
|
1269 |
-
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
1270 |
-
"プを選択できます。"
|
1271 |
-
|
1272 |
-
#: dist/inc/other-widget/widget-archives.php:53
|
1273 |
-
#: dist/inc/other-widget/widget-archives.php:54
|
1274 |
-
#: inc/other-widget/widget-archives.php:53
|
1275 |
-
#: inc/other-widget/widget-archives.php:54
|
1276 |
-
msgid "Monthly archives"
|
1277 |
-
msgstr "月別アーカイブ"
|
1278 |
-
|
1279 |
-
#: dist/inc/other-widget/widget-archives.php:68
|
1280 |
-
#: dist/inc/other-widget/widget-new-posts.php:297
|
1281 |
-
#: dist/inc/other-widget/widget-new-posts.php:304
|
1282 |
-
#: inc/other-widget/widget-archives.php:68
|
1283 |
-
#: inc/other-widget/widget-new-posts.php:297
|
1284 |
-
#: inc/other-widget/widget-new-posts.php:304
|
1285 |
-
msgid "Title"
|
1286 |
-
msgstr "タイトル"
|
1287 |
-
|
1288 |
-
#: dist/inc/other-widget/widget-archives.php:72
|
1289 |
-
#: inc/other-widget/widget-archives.php:72
|
1290 |
-
msgid "Post type"
|
1291 |
-
msgstr "ポストタイプ"
|
1292 |
-
|
1293 |
-
#: dist/inc/other-widget/widget-archives.php:92
|
1294 |
-
#: inc/other-widget/widget-archives.php:92
|
1295 |
-
msgid "Monthly"
|
1296 |
-
msgstr "月別"
|
1297 |
-
|
1298 |
-
#: dist/inc/other-widget/widget-archives.php:99
|
1299 |
-
#: inc/other-widget/widget-archives.php:99
|
1300 |
-
msgid "Yearly"
|
1301 |
-
msgstr "年別"
|
1302 |
-
|
1303 |
-
#: dist/inc/other-widget/widget-archives.php:117
|
1304 |
-
#: inc/other-widget/widget-archives.php:117
|
1305 |
-
msgid "archive"
|
1306 |
-
msgstr "アーカイブ"
|
1307 |
-
|
1308 |
-
#: dist/inc/other-widget/widget-banner.php:15
|
1309 |
-
#: inc/other-widget/widget-banner.php:15
|
1310 |
-
msgid "Banner"
|
1311 |
-
msgstr "バナー"
|
1312 |
-
|
1313 |
-
#: dist/inc/other-widget/widget-banner.php:21
|
1314 |
-
#: inc/other-widget/widget-banner.php:21
|
1315 |
-
msgid ""
|
1316 |
-
"You can easily set up a banner simply by registering images and link "
|
1317 |
-
"destinations."
|
1318 |
-
msgstr "画像とリンク先を登録するだけで簡単にバナーを設定できます。"
|
1319 |
-
|
1320 |
-
#: dist/inc/other-widget/widget-banner.php:97
|
1321 |
-
#: inc/other-widget/widget-banner.php:97
|
1322 |
-
msgid "Set image"
|
1323 |
-
msgstr "画像を選択"
|
1324 |
-
|
1325 |
-
#: dist/inc/other-widget/widget-banner.php:107
|
1326 |
-
#: inc/other-widget/widget-banner.php:107
|
1327 |
-
msgid "Alternative text"
|
1328 |
-
msgstr "代替テキスト(alt)"
|
1329 |
-
|
1330 |
-
#: dist/inc/other-widget/widget-button.php:32
|
1331 |
-
#: inc/other-widget/widget-button.php:32
|
1332 |
-
msgid "Button"
|
1333 |
-
msgstr "ボタン"
|
1334 |
-
|
1335 |
-
#: dist/inc/other-widget/widget-button.php:37
|
1336 |
-
#: inc/other-widget/widget-button.php:37
|
1337 |
-
msgid "You can set buttons for arbitrary text."
|
1338 |
-
msgstr "任意のテキストのボタンを設定できます。"
|
1339 |
-
|
1340 |
-
#: dist/inc/other-widget/widget-button.php:116
|
1341 |
-
#: inc/other-widget/widget-button.php:116
|
1342 |
-
msgid "Main text(Required):"
|
1343 |
-
msgstr "ボタンテキスト(必須):"
|
1344 |
-
|
1345 |
-
#: dist/inc/other-widget/widget-button.php:121
|
1346 |
-
#: inc/other-widget/widget-button.php:121
|
1347 |
-
msgid "Class name of the icon font"
|
1348 |
-
msgstr "使用したいアイコンフォント"
|
1349 |
-
|
1350 |
-
#: dist/inc/other-widget/widget-button.php:134
|
1351 |
-
#: inc/other-widget/widget-button.php:134
|
1352 |
-
msgid "Sub text:"
|
1353 |
-
msgstr "サブテキスト:"
|
1354 |
-
|
1355 |
-
#: dist/inc/other-widget/widget-button.php:138
|
1356 |
-
#: inc/other-widget/widget-button.php:138
|
1357 |
-
msgid "Link URL(Required):"
|
1358 |
-
msgstr "リンク先ページのURL(必須):"
|
1359 |
-
|
1360 |
-
#: dist/inc/other-widget/widget-button.php:148
|
1361 |
-
#: inc/other-widget/widget-button.php:148
|
1362 |
-
msgid "Open with new tab"
|
1363 |
-
msgstr "リンクを別ウィンドウで開く"
|
1364 |
-
|
1365 |
-
#: dist/inc/other-widget/widget-button.php:151
|
1366 |
-
#: inc/other-widget/widget-button.php:151
|
1367 |
-
msgid "Size"
|
1368 |
-
msgstr "サイズ"
|
1369 |
-
|
1370 |
-
#: dist/inc/other-widget/widget-button.php:158
|
1371 |
-
#: inc/other-widget/widget-button.php:158
|
1372 |
-
msgid "Small"
|
1373 |
-
msgstr "小"
|
1374 |
-
|
1375 |
-
#: dist/inc/other-widget/widget-button.php:164
|
1376 |
-
#: inc/other-widget/widget-button.php:164
|
1377 |
-
msgid "Medium"
|
1378 |
-
msgstr "中"
|
1379 |
-
|
1380 |
-
#: dist/inc/other-widget/widget-button.php:170
|
1381 |
-
#: inc/other-widget/widget-button.php:170
|
1382 |
-
msgid "Large"
|
1383 |
-
msgstr "大"
|
1384 |
-
|
1385 |
-
#: dist/inc/other-widget/widget-button.php:174
|
1386 |
-
#: inc/other-widget/widget-button.php:174
|
1387 |
-
msgid "Button color:"
|
1388 |
-
msgstr "ボタンの色:"
|
1389 |
-
|
1390 |
-
#: dist/inc/other-widget/widget-button.php:211
|
1391 |
-
#: inc/other-widget/widget-button.php:211
|
1392 |
-
msgid "Key Color(.primary)"
|
1393 |
-
msgstr "キーカラー(.primary)"
|
1394 |
-
|
1395 |
-
#: dist/inc/other-widget/widget-button.php:212
|
1396 |
-
#: inc/other-widget/widget-button.php:212
|
1397 |
-
msgid "No paint(.default)"
|
1398 |
-
msgstr "塗りなし(.default)"
|
1399 |
-
|
1400 |
-
#: dist/inc/other-widget/widget-button.php:213
|
1401 |
-
#: inc/other-widget/widget-button.php:213
|
1402 |
-
msgid "Light green(.success)"
|
1403 |
-
msgstr "明るい緑(.success)"
|
1404 |
-
|
1405 |
-
#: dist/inc/other-widget/widget-button.php:214
|
1406 |
-
#: inc/other-widget/widget-button.php:214
|
1407 |
-
msgid "Light blue(.info)"
|
1408 |
-
msgstr "空色(.info)"
|
1409 |
-
|
1410 |
-
#: dist/inc/other-widget/widget-button.php:215
|
1411 |
-
#: inc/other-widget/widget-button.php:215
|
1412 |
-
msgid "Orange(.warning)"
|
1413 |
-
msgstr "オレンジ(.warning)"
|
1414 |
-
|
1415 |
-
#: dist/inc/other-widget/widget-button.php:216
|
1416 |
-
#: inc/other-widget/widget-button.php:216
|
1417 |
-
msgid "Red(.danger)"
|
1418 |
-
msgstr "赤(.danger)"
|
1419 |
-
|
1420 |
-
#: dist/inc/other-widget/widget-child-page-list.php:10
|
1421 |
-
#: inc/other-widget/widget-child-page-list.php:10
|
1422 |
-
msgid "Child Page List"
|
1423 |
-
msgstr "子ページのリスト"
|
1424 |
-
|
1425 |
-
#: dist/inc/other-widget/widget-child-page-list.php:15
|
1426 |
-
#: dist/inc/other-widget/widget-child-page-list.php:59
|
1427 |
-
#: inc/other-widget/widget-child-page-list.php:15
|
1428 |
-
#: inc/other-widget/widget-child-page-list.php:59
|
1429 |
-
msgid "Display the child pages list from ancestor page."
|
1430 |
-
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1431 |
-
|
1432 |
-
#: dist/inc/other-widget/widget-new-posts.php:9
|
1433 |
-
#: dist/inc/other-widget/widget-new-posts.php:253
|
1434 |
-
#: inc/other-widget/widget-new-posts.php:9
|
1435 |
-
#: inc/other-widget/widget-new-posts.php:253
|
1436 |
-
msgid "Recent Posts"
|
1437 |
-
msgstr "最新記事"
|
1438 |
-
|
1439 |
-
#: dist/inc/other-widget/widget-new-posts.php:14
|
1440 |
-
#: inc/other-widget/widget-new-posts.php:14
|
1441 |
-
msgid "Displays a list of your most recent posts"
|
1442 |
-
msgstr "最新の投稿記事リストを表示します。"
|
1443 |
-
|
1444 |
-
#: dist/inc/other-widget/widget-new-posts.php:290
|
1445 |
-
#: inc/other-widget/widget-new-posts.php:290
|
1446 |
-
msgid "Display Format"
|
1447 |
-
msgstr "表示形式"
|
1448 |
-
|
1449 |
-
#: dist/inc/other-widget/widget-new-posts.php:297
|
1450 |
-
#: inc/other-widget/widget-new-posts.php:297
|
1451 |
-
msgid "Thumbnail"
|
1452 |
-
msgstr "サムネイル画像"
|
1453 |
-
|
1454 |
-
#: dist/inc/other-widget/widget-new-posts.php:297
|
1455 |
-
#: dist/inc/other-widget/widget-new-posts.php:304
|
1456 |
-
#: inc/other-widget/widget-new-posts.php:297
|
1457 |
-
#: inc/other-widget/widget-new-posts.php:304
|
1458 |
-
msgid "Date"
|
1459 |
-
msgstr "日付"
|
1460 |
-
|
1461 |
-
#: dist/inc/other-widget/widget-new-posts.php:304
|
1462 |
-
#: dist/inc/other-widget/widget-taxonomies.php:26
|
1463 |
-
#: dist/inc/other-widget/widget-taxonomies.php:56
|
1464 |
-
#: dist/inc/other-widget/widget-taxonomies.php:57
|
1465 |
-
#: inc/other-widget/widget-new-posts.php:304
|
1466 |
-
#: inc/other-widget/widget-taxonomies.php:26
|
1467 |
-
#: inc/other-widget/widget-taxonomies.php:56
|
1468 |
-
#: inc/other-widget/widget-taxonomies.php:57
|
1469 |
-
msgid "Category"
|
1470 |
-
msgstr "カテゴリー"
|
1471 |
-
|
1472 |
-
#: dist/inc/other-widget/widget-new-posts.php:317
|
1473 |
-
#: inc/other-widget/widget-new-posts.php:317
|
1474 |
-
msgid "Default thumbnail image:"
|
1475 |
-
msgstr "デフォルトのサムネイル画像:"
|
1476 |
-
|
1477 |
-
#: dist/inc/other-widget/widget-new-posts.php:338
|
1478 |
-
#: inc/other-widget/widget-new-posts.php:338
|
1479 |
-
msgid "Order by"
|
1480 |
-
msgstr "表示順"
|
1481 |
-
|
1482 |
-
#: dist/inc/other-widget/widget-new-posts.php:345
|
1483 |
-
#: inc/other-widget/widget-new-posts.php:345
|
1484 |
-
msgid "Publish date"
|
1485 |
-
msgstr "公開日"
|
1486 |
-
|
1487 |
-
#: dist/inc/other-widget/widget-new-posts.php:351
|
1488 |
-
#: inc/other-widget/widget-new-posts.php:351
|
1489 |
-
msgid "Modified date"
|
1490 |
-
msgstr "最終更新日"
|
1491 |
-
|
1492 |
-
#: dist/inc/other-widget/widget-new-posts.php:355
|
1493 |
-
#: dist/inc/related_posts/related_posts.php:282
|
1494 |
-
#: inc/other-widget/widget-new-posts.php:355
|
1495 |
-
#: inc/related_posts/related_posts.php:282
|
1496 |
-
msgid "Display count"
|
1497 |
-
msgstr "表示する記事数"
|
1498 |
-
|
1499 |
-
#: dist/inc/other-widget/widget-new-posts.php:360
|
1500 |
-
#: inc/other-widget/widget-new-posts.php:360
|
1501 |
-
msgid "Slug for the custom type you want to display"
|
1502 |
-
msgstr "表示したい記事タイプ"
|
1503 |
-
|
1504 |
-
#: dist/inc/other-widget/widget-new-posts.php:365
|
1505 |
-
#: inc/other-widget/widget-new-posts.php:365
|
1506 |
-
msgid "taxonomy ID"
|
1507 |
-
msgstr "カテゴリー(タクソノミー)ID"
|
1508 |
-
|
1509 |
-
#: dist/inc/other-widget/widget-new-posts.php:368
|
1510 |
-
#: inc/other-widget/widget-new-posts.php:368
|
1511 |
-
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1512 |
-
msgstr ""
|
1513 |
-
"特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
|
1514 |
-
"します。"
|
1515 |
-
|
1516 |
-
#: dist/inc/other-widget/widget-new-posts.php:370 dist/inc/sns/sns_admin.php:92
|
1517 |
-
#: inc/other-widget/widget-new-posts.php:370 inc/sns/sns_admin.php:92
|
1518 |
-
msgid "if empty this area, I will do not filtering."
|
1519 |
-
msgstr "空欄の場合はフィルタリングは行いません。"
|
1520 |
-
|
1521 |
-
#: dist/inc/other-widget/widget-new-posts.php:375
|
1522 |
-
#: inc/other-widget/widget-new-posts.php:375
|
1523 |
-
msgid "Destination URL:"
|
1524 |
-
msgstr "リンク先URL:"
|
1525 |
-
|
1526 |
-
#: dist/inc/other-widget/widget-new-posts.php:378
|
1527 |
-
#: inc/other-widget/widget-new-posts.php:378
|
1528 |
-
msgid "Notation text:"
|
1529 |
-
msgstr "表記テキスト:"
|
1530 |
-
|
1531 |
-
#: dist/inc/other-widget/widget-page.php:9 inc/other-widget/widget-page.php:9
|
1532 |
-
msgid "page content to widget"
|
1533 |
-
msgstr "固定ページ本文"
|
1534 |
-
|
1535 |
-
#: dist/inc/other-widget/widget-page.php:14 inc/other-widget/widget-page.php:14
|
1536 |
-
msgid "Displays a page contents to widget."
|
1537 |
-
msgstr "選択したページの内容を表示します。"
|
1538 |
-
|
1539 |
-
#: dist/inc/other-widget/widget-page.php:135
|
1540 |
-
#: inc/other-widget/widget-page.php:135
|
1541 |
-
msgid "Display the entered title"
|
1542 |
-
msgstr "入力したタイトルを表示する"
|
1543 |
-
|
1544 |
-
#: dist/inc/other-widget/widget-page.php:139
|
1545 |
-
#: inc/other-widget/widget-page.php:139
|
1546 |
-
msgid "Display the title of page"
|
1547 |
-
msgstr "固定ページのタイトルを表示する"
|
1548 |
-
|
1549 |
-
#: dist/inc/other-widget/widget-page.php:143
|
1550 |
-
#: inc/other-widget/widget-page.php:143
|
1551 |
-
msgid "Do not display titles"
|
1552 |
-
msgstr "タイトルを表示しない"
|
1553 |
-
|
1554 |
-
#: dist/inc/other-widget/widget-page.php:175 dist/inc/page-list-ancestor.php:94
|
1555 |
-
#: inc/other-widget/widget-page.php:175 inc/page-list-ancestor.php:94
|
1556 |
-
msgid "Display a page list from ancestor"
|
1557 |
-
msgstr "現在のページの先祖階層からの子ページリストを表示"
|
1558 |
-
|
1559 |
-
#: dist/inc/other-widget/widget-page.php:243
|
1560 |
-
#: inc/other-widget/widget-page.php:243
|
1561 |
-
msgid "Edit"
|
1562 |
-
msgstr "編集"
|
1563 |
-
|
1564 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:17
|
1565 |
-
#: inc/other-widget/widget-pr-blocks.php:17
|
1566 |
-
msgid "PR Blocks"
|
1567 |
-
msgstr "PR Blocks"
|
1568 |
-
|
1569 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:22
|
1570 |
-
#: inc/other-widget/widget-pr-blocks.php:22
|
1571 |
-
msgid "Displays a circle image or icon font for pr blocks"
|
1572 |
-
msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
|
1573 |
-
|
1574 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:30
|
1575 |
-
#: inc/other-widget/widget-pr-blocks.php:30
|
1576 |
-
msgid "Service"
|
1577 |
-
msgstr "サービス紹介"
|
1578 |
-
|
1579 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:40
|
1580 |
-
#: inc/other-widget/widget-pr-blocks.php:40
|
1581 |
-
msgid "Company"
|
1582 |
-
msgstr "会社案内"
|
1583 |
-
|
1584 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:50
|
1585 |
-
#: inc/other-widget/widget-pr-blocks.php:50
|
1586 |
-
msgid "Recruit"
|
1587 |
-
msgstr "採用情報"
|
1588 |
-
|
1589 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:60
|
1590 |
-
#: inc/other-widget/widget-pr-blocks.php:60
|
1591 |
-
msgid "Contact"
|
1592 |
-
msgstr "Contact"
|
1593 |
-
|
1594 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:82
|
1595 |
-
#: inc/other-widget/widget-pr-blocks.php:82
|
1596 |
-
msgid ""
|
1597 |
-
"If you want to change the number of columns, please change from Appearance -"
|
1598 |
-
"> Widgets screen."
|
1599 |
-
msgstr ""
|
1600 |
-
"カラム数を変更したい場合は「外観 > ウィジェット」画面より設定してください。"
|
1601 |
-
|
1602 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:85
|
1603 |
-
#: inc/other-widget/widget-pr-blocks.php:85
|
1604 |
-
msgid "The choice of the number of columns:"
|
1605 |
-
msgstr "列の数"
|
1606 |
-
|
1607 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:92
|
1608 |
-
#: inc/other-widget/widget-pr-blocks.php:92
|
1609 |
-
msgid "3column"
|
1610 |
-
msgstr "3列"
|
1611 |
-
|
1612 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:97
|
1613 |
-
#: inc/other-widget/widget-pr-blocks.php:97
|
1614 |
-
msgid "4column"
|
1615 |
-
msgstr "4列"
|
1616 |
-
|
1617 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:100
|
1618 |
-
#: inc/other-widget/widget-pr-blocks.php:100
|
1619 |
-
msgid ""
|
1620 |
-
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1621 |
-
"edit page. When restart the edit page, the column input form is increased or "
|
1622 |
-
"decreased."
|
1623 |
-
msgstr ""
|
1624 |
-
"列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
|
1625 |
-
"す。それから編集画面を再度開くと列の入力フォームが増減します。"
|
1626 |
-
|
1627 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:110
|
1628 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:282
|
1629 |
-
#: inc/other-widget/widget-pr-blocks.php:110
|
1630 |
-
#: inc/other-widget/widget-pr-blocks.php:282
|
1631 |
-
msgid "PR Block"
|
1632 |
-
msgstr "PRブロック"
|
1633 |
-
|
1634 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:132
|
1635 |
-
#: inc/other-widget/widget-pr-blocks.php:132
|
1636 |
-
msgid "Icon"
|
1637 |
-
msgstr "アイコン"
|
1638 |
-
|
1639 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:135
|
1640 |
-
#: inc/other-widget/widget-pr-blocks.php:135
|
1641 |
-
msgid "Class name of the icon font you want to use:"
|
1642 |
-
msgstr "使用したいアイコンフォントのクラス名:"
|
1643 |
-
|
1644 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:146
|
1645 |
-
#: dist/inc/other-widget/widget-profile.php:157
|
1646 |
-
#: inc/other-widget/widget-pr-blocks.php:146
|
1647 |
-
#: inc/other-widget/widget-profile.php:157
|
1648 |
-
msgid "Icon color:"
|
1649 |
-
msgstr "アイコンの色:"
|
1650 |
-
|
1651 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:150
|
1652 |
-
#: dist/inc/other-widget/widget-profile.php:142
|
1653 |
-
#: inc/other-widget/widget-pr-blocks.php:150
|
1654 |
-
#: inc/other-widget/widget-profile.php:142
|
1655 |
-
msgid "Icon Background:"
|
1656 |
-
msgstr "アイコン背景:"
|
1657 |
-
|
1658 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:154
|
1659 |
-
#: dist/inc/other-widget/widget-profile.php:148
|
1660 |
-
#: inc/other-widget/widget-pr-blocks.php:154
|
1661 |
-
#: inc/other-widget/widget-profile.php:148
|
1662 |
-
msgid "Solid color"
|
1663 |
-
msgstr "塗りつぶし"
|
1664 |
-
|
1665 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:158
|
1666 |
-
#: dist/inc/other-widget/widget-profile.php:151
|
1667 |
-
#: dist/inc/sns/sns_customizer.php:318
|
1668 |
-
#: inc/other-widget/widget-pr-blocks.php:158
|
1669 |
-
#: inc/other-widget/widget-profile.php:151 inc/sns/sns_customizer.php:318
|
1670 |
-
msgid "No background"
|
1671 |
-
msgstr "背景なし"
|
1672 |
-
|
1673 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:164
|
1674 |
-
#: inc/other-widget/widget-pr-blocks.php:164
|
1675 |
-
msgid "PR Image"
|
1676 |
-
msgstr "画像"
|
1677 |
-
|
1678 |
-
#: dist/inc/other-widget/widget-pr-blocks.php:165
|
1679 |
-
#: inc/other-widget/widget-pr-blocks.php:165
|
1680 |
-
msgid "When you have an image. Image is displayed with priority"
|
1681 |
-
msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
|
1682 |
-
|
1683 |
-
#: dist/inc/other-widget/widget-profile.php:9
|
1684 |
-
#: dist/inc/other-widget/widget-profile.php:32
|
1685 |
-
#: inc/other-widget/widget-profile.php:9 inc/other-widget/widget-profile.php:32
|
1686 |
-
msgid "Profile"
|
1687 |
-
msgstr "プロフィール"
|
1688 |
-
|
1689 |
-
#: dist/inc/other-widget/widget-profile.php:14
|
1690 |
-
#: inc/other-widget/widget-profile.php:14
|
1691 |
-
msgid "Displays a your profile"
|
1692 |
-
msgstr ""
|
1693 |
-
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
1694 |
-
|
1695 |
-
#: dist/inc/other-widget/widget-profile.php:40
|
1696 |
-
#: inc/other-widget/widget-profile.php:40
|
1697 |
-
msgid "Profile Text"
|
1698 |
-
msgstr "プロフィールテキスト"
|
1699 |
-
|
1700 |
-
#: dist/inc/other-widget/widget-profile.php:60
|
1701 |
-
#: inc/other-widget/widget-profile.php:60
|
1702 |
-
msgid "Select Profile image:"
|
1703 |
-
msgstr "プロフィール用画像を選択"
|
1704 |
-
|
1705 |
-
#: dist/inc/other-widget/widget-profile.php:79
|
1706 |
-
#: inc/other-widget/widget-profile.php:79
|
1707 |
-
msgid "Cut out round the image."
|
1708 |
-
msgstr "画像を丸く切り抜いて表示する"
|
1709 |
-
|
1710 |
-
#: dist/inc/other-widget/widget-profile.php:83
|
1711 |
-
#: inc/other-widget/widget-profile.php:83
|
1712 |
-
msgid "Media size (Optional)"
|
1713 |
-
msgstr "画像の大きさ( 任意 )"
|
1714 |
-
|
1715 |
-
#: dist/inc/other-widget/widget-profile.php:93
|
1716 |
-
#: inc/other-widget/widget-profile.php:93
|
1717 |
-
msgid "Align left"
|
1718 |
-
msgstr "画像左揃え"
|
1719 |
-
|
1720 |
-
#: dist/inc/other-widget/widget-profile.php:96
|
1721 |
-
#: inc/other-widget/widget-profile.php:96
|
1722 |
-
msgid "Align center"
|
1723 |
-
msgstr "画像中央揃え"
|
1724 |
-
|
1725 |
-
#: dist/inc/other-widget/widget-profile.php:100
|
1726 |
-
#: inc/other-widget/widget-profile.php:100
|
1727 |
-
msgid "Text float to image."
|
1728 |
-
msgstr "テキストを画像に回りこませる"
|
1729 |
-
|
1730 |
-
#: dist/inc/other-widget/widget-profile.php:104
|
1731 |
-
#: inc/other-widget/widget-profile.php:104
|
1732 |
-
msgid "Profile Text:"
|
1733 |
-
msgstr "プロフィールテキスト"
|
1734 |
-
|
1735 |
-
#: dist/inc/other-widget/widget-profile.php:108
|
1736 |
-
#: inc/other-widget/widget-profile.php:108
|
1737 |
-
msgid "Facebook URL:"
|
1738 |
-
msgstr "Facebook リンク先ページのURL"
|
1739 |
-
|
1740 |
-
#: dist/inc/other-widget/widget-profile.php:113
|
1741 |
-
#: inc/other-widget/widget-profile.php:113
|
1742 |
-
msgid "Twitter URL:"
|
1743 |
-
msgstr "twitterリンク先ページのURL"
|
1744 |
-
|
1745 |
-
#: dist/inc/other-widget/widget-profile.php:118
|
1746 |
-
#: inc/other-widget/widget-profile.php:118
|
1747 |
-
msgid "Email Address:"
|
1748 |
-
msgstr "Email リンク先ページのURL"
|
1749 |
-
|
1750 |
-
#: dist/inc/other-widget/widget-profile.php:123
|
1751 |
-
#: inc/other-widget/widget-profile.php:123
|
1752 |
-
msgid "Youtube URL:"
|
1753 |
-
msgstr "Youtube リンク先ページのURL"
|
1754 |
-
|
1755 |
-
#: dist/inc/other-widget/widget-profile.php:128
|
1756 |
-
#: inc/other-widget/widget-profile.php:128
|
1757 |
-
msgid "RSS URL:"
|
1758 |
-
msgstr "RSS リンク先ページのURL"
|
1759 |
-
|
1760 |
-
#: dist/inc/other-widget/widget-profile.php:133
|
1761 |
-
#: inc/other-widget/widget-profile.php:133
|
1762 |
-
msgid "instagram URL:"
|
1763 |
-
msgstr "instagram リンク先ページのURL"
|
1764 |
-
|
1765 |
-
#: dist/inc/other-widget/widget-profile.php:137
|
1766 |
-
#: inc/other-widget/widget-profile.php:137
|
1767 |
-
msgid "linkedin URL:"
|
1768 |
-
msgstr "linkedin リンク先ページのURL"
|
1769 |
-
|
1770 |
-
#: dist/inc/other-widget/widget-profile.php:153
|
1771 |
-
#: inc/other-widget/widget-profile.php:153
|
1772 |
-
msgid ""
|
1773 |
-
"* When \"Icon Background: Fill\" is selected and \"Icon color\" is not "
|
1774 |
-
"specified, each brand color will be painted."
|
1775 |
-
msgstr ""
|
1776 |
-
"※ 「アイコン背景 : 塗りつぶし」を選択した場合で「アイコンの色」の指定がないと"
|
1777 |
-
"きは各ブランドカラーで塗りつぶしされます。"
|
1778 |
-
|
1779 |
-
#: dist/inc/other-widget/widget-side-child-page-list.php:12
|
1780 |
-
#: inc/other-widget/widget-side-child-page-list.php:12
|
1781 |
-
msgid "child pages list"
|
1782 |
-
msgstr "子ページのリスト"
|
1783 |
-
|
1784 |
-
#: dist/inc/other-widget/widget-side-child-page-list.php:17
|
1785 |
-
#: inc/other-widget/widget-side-child-page-list.php:17
|
1786 |
-
msgid "Displays list of child page for the current page."
|
1787 |
-
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1788 |
-
|
1789 |
-
#: dist/inc/other-widget/widget-taxonomies.php:10
|
1790 |
-
#: inc/other-widget/widget-taxonomies.php:10
|
1791 |
-
msgid "Categories/Custom taxonomies list"
|
1792 |
-
msgstr "カテゴリー/カスタム分類リスト"
|
1793 |
-
|
1794 |
-
#: dist/inc/other-widget/widget-taxonomies.php:15
|
1795 |
-
#: inc/other-widget/widget-taxonomies.php:15
|
1796 |
-
msgid "Displays a categories and custom taxonomies list."
|
1797 |
-
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
1798 |
-
|
1799 |
-
#: dist/inc/other-widget/widget-taxonomies.php:71
|
1800 |
-
#: inc/other-widget/widget-taxonomies.php:71
|
1801 |
-
msgid "Label to display"
|
1802 |
-
msgstr "表示するラベル"
|
1803 |
-
|
1804 |
-
#: dist/inc/other-widget/widget-taxonomies.php:75
|
1805 |
-
#: inc/other-widget/widget-taxonomies.php:75
|
1806 |
-
msgid "Display page"
|
1807 |
-
msgstr "ページを表示"
|
1808 |
-
|
1809 |
-
#: dist/inc/other-widget/widget-taxonomies.php:94
|
1810 |
-
#: inc/other-widget/widget-taxonomies.php:94
|
1811 |
-
msgid "Do not display terms without posts"
|
1812 |
-
msgstr "投稿のない分類項目を表示しない"
|
1813 |
-
|
1814 |
-
#: dist/inc/other-widget/widget-taxonomies.php:106
|
1815 |
-
#: inc/other-widget/widget-taxonomies.php:106
|
1816 |
-
msgid "Blog"
|
1817 |
-
msgstr "ブログ"
|
1818 |
-
|
1819 |
-
#: dist/inc/other-widget/widget-taxonomies.php:111
|
1820 |
-
#: dist/inc/template-tags/package/template-tags.php:188
|
1821 |
-
#: inc/other-widget/widget-taxonomies.php:111
|
1822 |
-
#: inc/template-tags/package/template-tags.php:188
|
1823 |
-
msgid "Archives"
|
1824 |
-
msgstr "アーカイブ"
|
1825 |
-
|
1826 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:22
|
1827 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:23
|
1828 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:65
|
1829 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:22
|
1830 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:23
|
1831 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:65
|
1832 |
-
msgid "Custom Post Type Setting"
|
1833 |
-
msgstr "カスタム投稿タイプ設定"
|
1834 |
-
|
1835 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:88
|
1836 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:88
|
1837 |
-
msgid "Post Type ID(Required)"
|
1838 |
-
msgstr "投稿タイプID(必須)"
|
1839 |
-
|
1840 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:89
|
1841 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:89
|
1842 |
-
msgid "20 characters or less in alphanumeric"
|
1843 |
-
msgstr "半角英数字20文字以内で入力ください"
|
1844 |
-
|
1845 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:94
|
1846 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:94
|
1847 |
-
msgid "title"
|
1848 |
-
msgstr "タイトル"
|
1849 |
-
|
1850 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:95
|
1851 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:95
|
1852 |
-
msgid "editor"
|
1853 |
-
msgstr "本文"
|
1854 |
-
|
1855 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:96
|
1856 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:96
|
1857 |
-
msgid "author"
|
1858 |
-
msgstr "投稿者"
|
1859 |
-
|
1860 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:97
|
1861 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:97
|
1862 |
-
msgid "thumbnail"
|
1863 |
-
msgstr "アイキャッチ画像"
|
1864 |
-
|
1865 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:98
|
1866 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:98
|
1867 |
-
msgid "excerpt"
|
1868 |
-
msgstr "抜粋"
|
1869 |
-
|
1870 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:99
|
1871 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:99
|
1872 |
-
msgid "comments"
|
1873 |
-
msgstr "コメント"
|
1874 |
-
|
1875 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:100
|
1876 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:100
|
1877 |
-
msgid "revisions"
|
1878 |
-
msgstr "リビジョン"
|
1879 |
-
|
1880 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:105
|
1881 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:105
|
1882 |
-
msgid "Supports(Required)"
|
1883 |
-
msgstr "有効にする項目(必須)"
|
1884 |
-
|
1885 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:118
|
1886 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:118
|
1887 |
-
msgid "Menu position(optional)"
|
1888 |
-
msgstr "メニューの位置( 任意 )"
|
1889 |
-
|
1890 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:119
|
1891 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:119
|
1892 |
-
msgid "Please enter a number."
|
1893 |
-
msgstr "数字を入力してください。数字が小さいほど上に表示されます。"
|
1894 |
-
|
1895 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:126
|
1896 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:126
|
1897 |
-
msgid "Export to REST API(optional)"
|
1898 |
-
msgstr "REST API に出力する( 任意 )"
|
1899 |
-
|
1900 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:138
|
1901 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:138
|
1902 |
-
msgid "Export to REST API"
|
1903 |
-
msgstr "REST API に出力する"
|
1904 |
-
|
1905 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:139
|
1906 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:139
|
1907 |
-
msgid "If you want to use the block editor that, you have to use the REST API."
|
1908 |
-
msgstr "ブロックエディターを使用する場合は、REST APIを使用する必要があります。"
|
1909 |
-
|
1910 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:144
|
1911 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:144
|
1912 |
-
msgid "Custom taxonomies(optional)"
|
1913 |
-
msgstr "カスタム分類(任意)"
|
1914 |
-
|
1915 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:147
|
1916 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:147
|
1917 |
-
msgid "Custom taxonomy is like a category in post."
|
1918 |
-
msgstr "カスタム分類とは投稿で言うカテゴリーです。"
|
1919 |
-
|
1920 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:148
|
1921 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:148
|
1922 |
-
msgid ""
|
1923 |
-
"However, it refers to the \"category\" itself, not to the “item” of the "
|
1924 |
-
"category."
|
1925 |
-
msgstr "しかし、カテゴリーの”項目”ではなく、”カテゴリー”そのものを指します。"
|
1926 |
-
|
1927 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:149
|
1928 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:149
|
1929 |
-
msgid ""
|
1930 |
-
"For example, if you create a post type \"construction result\", Custom "
|
1931 |
-
"taxonomy will be \"construction type\", \"construction area\", etc."
|
1932 |
-
msgstr ""
|
1933 |
-
"例えば「施工実績」という投稿タイプを作成した場合、カスタム分類は「施工タイ"
|
1934 |
-
"プ」「施工地域」等になります。"
|
1935 |
-
|
1936 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:173
|
1937 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:173
|
1938 |
-
msgid "Custon taxonomy name(slug)"
|
1939 |
-
msgstr "カスタム分類名(スラッグ)"
|
1940 |
-
|
1941 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:177
|
1942 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:177
|
1943 |
-
msgid "* Please be sure to enter it with one-byte alphanumeric characters"
|
1944 |
-
msgstr "※ 必ず半角英数字にて入力してください"
|
1945 |
-
|
1946 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:183
|
1947 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:183
|
1948 |
-
msgid "Custon taxonomy label"
|
1949 |
-
msgstr "カスタム分類名(表示名)"
|
1950 |
-
|
1951 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:190
|
1952 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:190
|
1953 |
-
msgid "Hierarchy"
|
1954 |
-
msgstr "階層"
|
1955 |
-
|
1956 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:191
|
1957 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:191
|
1958 |
-
msgid "Make it a tag (do not hierarchize)"
|
1959 |
-
msgstr "タグにする(階層化しない)"
|
1960 |
-
|
1961 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:200
|
1962 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:200
|
1963 |
-
msgid "REST API(optional)"
|
1964 |
-
msgstr "REST API ( 任意 )"
|
1965 |
-
|
1966 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:201
|
1967 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:201
|
1968 |
-
msgid "Use for REST API"
|
1969 |
-
msgstr "REST API に利用する"
|
1970 |
-
|
1971 |
-
#: dist/inc/post-type-manager/package/class.post-type-manager.php:263
|
1972 |
-
#: inc/post-type-manager/package/class.post-type-manager.php:263
|
1973 |
-
#, php-format
|
1974 |
-
msgid ""
|
1975 |
-
"Please save a <a href=\"%s\">permanent link configuration</a> After updating "
|
1976 |
-
"the setting."
|
1977 |
-
msgstr ""
|
1978 |
-
"設定を更新したら<a href=\"%s\">パーマリンク設定</a>を保存してください。"
|
1979 |
-
|
1980 |
-
#: dist/inc/related_posts/related_posts.php:210 dist/veu-packages.php:299
|
1981 |
-
#: inc/related_posts/related_posts.php:210 veu-packages.php:299
|
1982 |
-
msgid "Related posts"
|
1983 |
-
msgstr "関連記事を表示"
|
1984 |
-
|
1985 |
-
#: dist/inc/related_posts/related_posts.php:245
|
1986 |
-
#: inc/related_posts/related_posts.php:245
|
1987 |
-
msgid "Related Settings"
|
1988 |
-
msgstr "関連記事設定"
|
1989 |
-
|
1990 |
-
#: dist/inc/sitemap-page/class-veu-metabox-sitemap.php:14
|
1991 |
-
#: inc/sitemap-page/class-veu-metabox-sitemap.php:14
|
1992 |
-
msgid "Hide setting of HTML sitemap"
|
1993 |
-
msgstr "HTMLサイトマップの非表示設定"
|
1994 |
-
|
1995 |
-
#: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:8
|
1996 |
-
#: inc/sitemap-page/sitemap-page-admin-main-setting.php:8
|
1997 |
-
msgid "HTML Sitemap"
|
1998 |
-
msgstr "HTMLサイトマップ"
|
1999 |
-
|
2000 |
-
#: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:47
|
2001 |
-
#: inc/sitemap-page/sitemap-page-admin-main-setting.php:47
|
2002 |
-
msgid "HTML Sitemap Settings"
|
2003 |
-
msgstr "HTMLサイトマップ設定"
|
2004 |
-
|
2005 |
-
#: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:51
|
2006 |
-
#: inc/sitemap-page/sitemap-page-admin-main-setting.php:51
|
2007 |
-
msgid "Exclude post type from the sitemap"
|
2008 |
-
msgstr "サイトマップから除外する投稿タイプ"
|
2009 |
-
|
2010 |
-
#: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:65
|
2011 |
-
#: inc/sitemap-page/sitemap-page-admin-main-setting.php:65
|
2012 |
-
msgid ""
|
2013 |
-
"If you want to do not display specific page that, you can set on that page "
|
2014 |
-
"edit screen."
|
2015 |
-
msgstr ""
|
2016 |
-
"特定の固定ページをサイトマップに表示したくない場合は、該当の固定ページの編集"
|
2017 |
-
"画面から除外設定をしてください。"
|
2018 |
-
|
2019 |
-
#: dist/inc/sitemap-page/sitemap-page.php:228
|
2020 |
-
#: inc/sitemap-page/sitemap-page.php:228
|
2021 |
-
msgid "Display a HTML sitemap"
|
2022 |
-
msgstr "HTMLサイトマップの表示"
|
2023 |
-
|
2024 |
-
#: dist/inc/sns/class-veu-metabox-sns-button.php:14
|
2025 |
-
#: inc/sns/class-veu-metabox-sns-button.php:14
|
2026 |
-
msgid "Hide setting of share button"
|
2027 |
-
msgstr "シェアボタンの非表示設定"
|
2028 |
-
|
2029 |
-
#: dist/inc/sns/class-veu-metabox-sns-button.php:38
|
2030 |
-
#: inc/sns/class-veu-metabox-sns-button.php:38
|
2031 |
-
msgid "This post type is not set to display the share button."
|
2032 |
-
msgstr "この投稿タイプはシェアボタンを表示するように設定されていません。"
|
2033 |
-
|
2034 |
-
#: dist/inc/sns/class-veu-metabox-sns-button.php:39
|
2035 |
-
#: inc/sns/class-veu-metabox-sns-button.php:39
|
2036 |
-
msgid "Display setting of share button"
|
2037 |
-
msgstr "ソーシャルボタンの表示設定"
|
2038 |
-
|
2039 |
-
#: dist/inc/sns/class-veu-metabox-sns-button.php:49
|
2040 |
-
#: inc/sns/class-veu-metabox-sns-button.php:49
|
2041 |
-
msgid "Don't display share bottons."
|
2042 |
-
msgstr "ソーシャルボタンを表示しない"
|
2043 |
-
|
2044 |
-
#: dist/inc/sns/class-veu-metabox-sns-title.php:14
|
2045 |
-
#: inc/sns/class-veu-metabox-sns-title.php:14
|
2046 |
-
msgid "SNS Title"
|
2047 |
-
msgstr "OGPタイトル"
|
2048 |
-
|
2049 |
-
#: dist/inc/sns/class-veu-metabox-sns-title.php:32
|
2050 |
-
#: inc/sns/class-veu-metabox-sns-title.php:32
|
2051 |
-
msgid "if filled this area then override title of OGP and Twitter Card"
|
2052 |
-
msgstr ""
|
2053 |
-
"このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
|
2054 |
-
"るタイトルを上書きすることができます"
|
2055 |
-
|
2056 |
-
#: dist/inc/sns/function_follow.php:25 inc/sns/function_follow.php:25
|
2057 |
-
msgid "Follow me"
|
2058 |
-
msgstr "このサイトをフォローする"
|
2059 |
-
|
2060 |
-
#: dist/inc/sns/function_follow.php:73 inc/sns/function_follow.php:73
|
2061 |
-
msgid "Edit follow button"
|
2062 |
-
msgstr "Follow me box の編集"
|
2063 |
-
|
2064 |
-
#: dist/inc/sns/sns.php:19 inc/sns/sns.php:19
|
2065 |
-
msgid "SNS"
|
2066 |
-
msgstr "SNS"
|
2067 |
-
|
2068 |
-
#: dist/inc/sns/sns.php:163 inc/sns/sns.php:163
|
2069 |
-
msgctxt "facebook language code"
|
2070 |
-
msgid "en_US"
|
2071 |
-
msgstr "ja_JP"
|
2072 |
-
|
2073 |
-
#: dist/inc/sns/sns_admin.php:1 dist/inc/sns/sns_customizer.php:22
|
2074 |
-
#: inc/sns/sns_admin.php:1 inc/sns/sns_customizer.php:22
|
2075 |
-
msgid "SNS Settings"
|
2076 |
-
msgstr "SNS設定"
|
2077 |
-
|
2078 |
-
#: dist/inc/sns/sns_admin.php:14 dist/inc/sns/sns_customizer.php:36
|
2079 |
-
#: inc/sns/sns_admin.php:14 inc/sns/sns_customizer.php:36
|
2080 |
-
msgid "Post title custom for SNS"
|
2081 |
-
msgstr "OGPなどの投稿タイトルの変更"
|
2082 |
-
|
2083 |
-
#: dist/inc/sns/sns_admin.php:16 dist/inc/sns/sns_customizer.php:58
|
2084 |
-
#: inc/sns/sns_admin.php:16 inc/sns/sns_customizer.php:58
|
2085 |
-
msgid "For SNS title be composed by post title only."
|
2086 |
-
msgstr "投稿タイトルだけにする(サイトタイトルなど含めない)。"
|
2087 |
-
|
2088 |
-
#: dist/inc/sns/sns_admin.php:20 inc/sns/sns_admin.php:20
|
2089 |
-
msgid "facebook application ID"
|
2090 |
-
msgstr "facebookアプリケーションID"
|
2091 |
-
|
2092 |
-
#: dist/inc/sns/sns_admin.php:22 inc/sns/sns_admin.php:22
|
2093 |
-
msgid "I will check and get the application ID"
|
2094 |
-
msgstr "アプリケーションIDを確認・取得する "
|
2095 |
-
|
2096 |
-
#: dist/inc/sns/sns_admin.php:23 inc/sns/sns_admin.php:23
|
2097 |
-
msgid ""
|
2098 |
-
"* If an application ID is not specified, neither a Like button nor the "
|
2099 |
-
"comment field displays and operates correctly."
|
2100 |
-
msgstr ""
|
2101 |
-
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
2102 |
-
"ん。"
|
2103 |
-
|
2104 |
-
#: dist/inc/sns/sns_admin.php:24 inc/sns/sns_admin.php:24
|
2105 |
-
msgid ""
|
2106 |
-
"Please search for terms as [get Facebook application ID] If you do not know "
|
2107 |
-
"much about how to get application ID for Facebook."
|
2108 |
-
msgstr ""
|
2109 |
-
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
2110 |
-
"アプリケーションID 取得」などで検索して下さい。"
|
2111 |
-
|
2112 |
-
#: dist/inc/sns/sns_admin.php:28 inc/sns/sns_admin.php:28
|
2113 |
-
msgid "facebook page URL"
|
2114 |
-
msgstr "FacebookページURL"
|
2115 |
-
|
2116 |
-
#: dist/inc/sns/sns_admin.php:33 dist/inc/sns/sns_customizer.php:141
|
2117 |
-
#: inc/sns/sns_admin.php:33 inc/sns/sns_customizer.php:141
|
2118 |
-
msgid "OG default image"
|
2119 |
-
msgstr "デフォルトのOGPイメージ"
|
2120 |
-
|
2121 |
-
#: dist/inc/sns/sns_admin.php:34 inc/sns/sns_admin.php:34
|
2122 |
-
msgid ""
|
2123 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
2124 |
-
"image that appears on the Facebook timeline."
|
2125 |
-
msgstr ""
|
2126 |
-
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
2127 |
-
"ムラインに表示されます。"
|
2128 |
-
|
2129 |
-
#: dist/inc/sns/sns_admin.php:35 inc/sns/sns_admin.php:35
|
2130 |
-
msgid "If a featured image is specified for the page, it takes precedence."
|
2131 |
-
msgstr ""
|
2132 |
-
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
2133 |
-
"す。"
|
2134 |
-
|
2135 |
-
#: dist/inc/sns/sns_admin.php:37 inc/sns/sns_admin.php:37
|
2136 |
-
msgid "Select an image"
|
2137 |
-
msgstr "画像を選択"
|
2138 |
-
|
2139 |
-
#: dist/inc/sns/sns_admin.php:39 inc/sns/sns_admin.php:39
|
2140 |
-
msgid ""
|
2141 |
-
"* Picture sizes are 1280x720 pixels or more and picture ratio 16:9 is "
|
2142 |
-
"recommended."
|
2143 |
-
msgstr "画像サイズ 橫 1280px 縦 720px 以上、画像比率 16:9 を推奨します。"
|
2144 |
-
|
2145 |
-
#: dist/inc/sns/sns_admin.php:43 inc/sns/sns_admin.php:43
|
2146 |
-
msgid "twitter ID"
|
2147 |
-
msgstr "twitterアカウント"
|
2148 |
-
|
2149 |
-
#: dist/inc/sns/sns_admin.php:48 inc/sns/sns_admin.php:48
|
2150 |
-
msgid "OG tags"
|
2151 |
-
msgstr "OGタグ"
|
2152 |
-
|
2153 |
-
#: dist/inc/sns/sns_admin.php:50 dist/inc/sns/sns_customizer.php:180
|
2154 |
-
#: inc/sns/sns_admin.php:50 inc/sns/sns_customizer.php:180
|
2155 |
-
msgid "Print the OG tags"
|
2156 |
-
msgstr "OGタグを出力する"
|
2157 |
-
|
2158 |
-
#: dist/inc/sns/sns_admin.php:51 dist/inc/sns/sns_customizer.php:184
|
2159 |
-
#: inc/sns/sns_admin.php:51 inc/sns/sns_customizer.php:184
|
2160 |
-
msgid ""
|
2161 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
2162 |
-
"plugin."
|
2163 |
-
msgstr ""
|
2164 |
-
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
2165 |
-
"る場合は、このプラグインでの出力は必要ありません。"
|
2166 |
-
|
2167 |
-
#: dist/inc/sns/sns_admin.php:56 dist/inc/sns/sns_customizer.php:243
|
2168 |
-
#: inc/sns/sns_admin.php:56 inc/sns/sns_customizer.php:243
|
2169 |
-
msgid "Twitter Card tags"
|
2170 |
-
msgstr "Twitterカードタグ"
|
2171 |
-
|
2172 |
-
#: dist/inc/sns/sns_admin.php:58 dist/inc/sns/sns_customizer.php:247
|
2173 |
-
#: inc/sns/sns_admin.php:58 inc/sns/sns_customizer.php:247
|
2174 |
-
msgid "Print the Twitter Card tags"
|
2175 |
-
msgstr "Twitter カードタグを html head 内へ出力します。"
|
2176 |
-
|
2177 |
-
#: dist/inc/sns/sns_admin.php:63 dist/inc/sns/sns_customizer.php:260
|
2178 |
-
#: inc/sns/sns_admin.php:63 inc/sns/sns_customizer.php:260
|
2179 |
-
msgid "Social bookmark buttons"
|
2180 |
-
msgstr "ソーシャルボタン"
|
2181 |
-
|
2182 |
-
#: dist/inc/sns/sns_admin.php:64 dist/inc/sns/sns_customizer.php:283
|
2183 |
-
#: inc/sns/sns_admin.php:64 inc/sns/sns_customizer.php:283
|
2184 |
-
msgid "Print the social bookmark buttons"
|
2185 |
-
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
2186 |
-
|
2187 |
-
#: dist/inc/sns/sns_admin.php:67 dist/inc/sns/sns_customizer.php:409
|
2188 |
-
#: inc/sns/sns_admin.php:67 inc/sns/sns_customizer.php:409
|
2189 |
-
msgid "Exclude Post Types"
|
2190 |
-
msgstr "シェアボタンを表示しない投稿タイプ"
|
2191 |
-
|
2192 |
-
#: dist/inc/sns/sns_admin.php:80 inc/sns/sns_admin.php:80
|
2193 |
-
msgid "Exclude Post ID"
|
2194 |
-
msgstr "シェアボタンを表示しない投稿のID"
|
2195 |
-
|
2196 |
-
#: dist/inc/sns/sns_admin.php:90 inc/sns/sns_admin.php:90
|
2197 |
-
msgid ""
|
2198 |
-
"if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
|
2199 |
-
msgstr ""
|
2200 |
-
"特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを入"
|
2201 |
-
"力します。"
|
2202 |
-
|
2203 |
-
#: dist/inc/sns/sns_admin.php:94 inc/sns/sns_admin.php:94
|
2204 |
-
msgid "example"
|
2205 |
-
msgstr "例"
|
2206 |
-
|
2207 |
-
#: dist/inc/sns/sns_admin.php:103 dist/inc/sns/sns_customizer.php:452
|
2208 |
-
#: inc/sns/sns_admin.php:103 inc/sns/sns_customizer.php:452
|
2209 |
-
msgid "Share button for display"
|
2210 |
-
msgstr "表示するボタン"
|
2211 |
-
|
2212 |
-
#: dist/inc/sns/sns_admin.php:111 inc/sns/sns_admin.php:111
|
2213 |
-
msgid "Facebook"
|
2214 |
-
msgstr "Facebook"
|
2215 |
-
|
2216 |
-
#: dist/inc/sns/sns_admin.php:117 dist/inc/sns/sns_customizer.php:493
|
2217 |
-
#: dist/inc/sns/widget-twitter.php:9 inc/sns/sns_admin.php:117
|
2218 |
-
#: inc/sns/sns_customizer.php:493 inc/sns/widget-twitter.php:9
|
2219 |
-
msgid "Twitter"
|
2220 |
-
msgstr "Twitter"
|
2221 |
-
|
2222 |
-
#: dist/inc/sns/sns_admin.php:123 dist/inc/sns/sns_customizer.php:514
|
2223 |
-
#: inc/sns/sns_admin.php:123 inc/sns/sns_customizer.php:514
|
2224 |
-
msgid "Hatena"
|
2225 |
-
msgstr "はてな"
|
2226 |
-
|
2227 |
-
#: dist/inc/sns/sns_admin.php:129 dist/inc/sns/sns_customizer.php:535
|
2228 |
-
#: inc/sns/sns_admin.php:129 inc/sns/sns_customizer.php:535
|
2229 |
-
msgid "Pocket"
|
2230 |
-
msgstr "Pocket"
|
2231 |
-
|
2232 |
-
#: dist/inc/sns/sns_admin.php:135 dist/inc/sns/sns_customizer.php:556
|
2233 |
-
#: inc/sns/sns_admin.php:135 inc/sns/sns_customizer.php:556
|
2234 |
-
msgid "LINE (mobile only)"
|
2235 |
-
msgstr "LINE (mobile only)"
|
2236 |
-
|
2237 |
-
#: dist/inc/sns/sns_admin.php:141 dist/inc/sns/sns_customizer.php:355
|
2238 |
-
#: inc/sns/sns_admin.php:141 inc/sns/sns_customizer.php:355
|
2239 |
-
msgid "Share button display Position"
|
2240 |
-
msgstr "シェアボタンの表示位置"
|
2241 |
-
|
2242 |
-
#: dist/inc/sns/sns_admin.php:149 dist/inc/sns/sns_customizer.php:374
|
2243 |
-
#: inc/sns/sns_admin.php:149 inc/sns/sns_customizer.php:374
|
2244 |
-
msgid "Before content"
|
2245 |
-
msgstr "本文の前"
|
2246 |
-
|
2247 |
-
#: dist/inc/sns/sns_admin.php:155 dist/inc/sns/sns_customizer.php:394
|
2248 |
-
#: inc/sns/sns_admin.php:155 inc/sns/sns_customizer.php:394
|
2249 |
-
msgid "After content"
|
2250 |
-
msgstr "本文の後"
|
2251 |
-
|
2252 |
-
#: dist/inc/sns/sns_admin.php:161 dist/inc/sns/sns_customizer.php:571
|
2253 |
-
#: inc/sns/sns_admin.php:161 inc/sns/sns_customizer.php:571
|
2254 |
-
msgid "Follow me box"
|
2255 |
-
msgstr "Follow me box"
|
2256 |
-
|
2257 |
-
#: dist/inc/sns/sns_admin.php:162 dist/inc/sns/sns_customizer.php:593
|
2258 |
-
#: inc/sns/sns_admin.php:162 inc/sns/sns_customizer.php:593
|
2259 |
-
msgid "Print the Follow me box"
|
2260 |
-
msgstr "Follow me ユニットを本文の下に表示する"
|
2261 |
-
|
2262 |
-
#: dist/inc/sns/sns_admin.php:164 dist/inc/sns/sns_customizer.php:613
|
2263 |
-
#: inc/sns/sns_admin.php:164 inc/sns/sns_customizer.php:613
|
2264 |
-
msgid "Follow me box title"
|
2265 |
-
msgstr "Follow me box の見出しテキスト"
|
2266 |
-
|
2267 |
-
#: dist/inc/sns/sns_customizer.php:74 inc/sns/sns_customizer.php:74
|
2268 |
-
msgid "Facebook Settings"
|
2269 |
-
msgstr "Facebook 設定"
|
2270 |
-
|
2271 |
-
#: dist/inc/sns/sns_customizer.php:97 inc/sns/sns_customizer.php:97
|
2272 |
-
msgid "Facebook application ID"
|
2273 |
-
msgstr "facebookアプリケーションID"
|
2274 |
-
|
2275 |
-
#: dist/inc/sns/sns_customizer.php:118 inc/sns/sns_customizer.php:118
|
2276 |
-
msgid "Facebook Page URL"
|
2277 |
-
msgstr "FacebookページURL"
|
2278 |
-
|
2279 |
-
#: dist/inc/sns/sns_customizer.php:144 inc/sns/sns_customizer.php:144
|
2280 |
-
msgid ""
|
2281 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
2282 |
-
"image that appears on the Facebook timeline.<br>If a featured image is "
|
2283 |
-
"specified for the page, it takes precedence.<br>* Picture sizes are 1280x720 "
|
2284 |
-
"pixels or more and picture ratio 16:9 is recommended."
|
2285 |
-
msgstr ""
|
2286 |
-
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
2287 |
-
"ムラインに表示されます。<br>ページにアイキャッチ画像が指定されている場合は、"
|
2288 |
-
"アイキャッチ画像が優先されます。<br>画像サイズ 橫 1280px 縦 720px 以上、画像"
|
2289 |
-
"比率 16:9 程度を推奨します。"
|
2290 |
-
|
2291 |
-
#: dist/inc/sns/sns_customizer.php:157 inc/sns/sns_customizer.php:157
|
2292 |
-
msgid "OG Settings"
|
2293 |
-
msgstr "OG 設定"
|
2294 |
-
|
2295 |
-
#: dist/inc/sns/sns_customizer.php:196 inc/sns/sns_customizer.php:196
|
2296 |
-
msgid "Twitter Settings"
|
2297 |
-
msgstr "Twitter 設定"
|
2298 |
-
|
2299 |
-
#: dist/inc/sns/sns_customizer.php:219 inc/sns/sns_customizer.php:219
|
2300 |
-
#, fuzzy
|
2301 |
-
#| msgid "twitter ID"
|
2302 |
-
msgid "Twitter ID"
|
2303 |
-
msgstr "twitterアカウント"
|
2304 |
-
|
2305 |
-
#: dist/inc/sns/sns_customizer.php:298 inc/sns/sns_customizer.php:298
|
2306 |
-
msgid "Social button style setting"
|
2307 |
-
msgstr "ソーシャルボタンのスタイル設定"
|
2308 |
-
|
2309 |
-
#: dist/inc/sns/sns_customizer.php:340 inc/sns/sns_customizer.php:340
|
2310 |
-
msgid "Btn color"
|
2311 |
-
msgstr "ボタンの色:"
|
2312 |
-
|
2313 |
-
#: dist/inc/sns/sns_customizer.php:472 inc/sns/sns_customizer.php:472
|
2314 |
-
#, fuzzy
|
2315 |
-
#| msgid "Facebook URL:"
|
2316 |
-
msgid "Facebook "
|
2317 |
-
msgstr "Facebook リンク先ページのURL"
|
2318 |
-
|
2319 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:13
|
2320 |
-
#: inc/sns/widget-fb-page-plugin.php:13
|
2321 |
-
msgid "Displays a Facebook Page Plugin"
|
2322 |
-
msgstr "Facebook ページプラグインを表示します。"
|
2323 |
-
|
2324 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:89
|
2325 |
-
#: inc/sns/widget-fb-page-plugin.php:89
|
2326 |
-
msgid "Height"
|
2327 |
-
msgstr "高さ"
|
2328 |
-
|
2329 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:94
|
2330 |
-
#: inc/sns/widget-fb-page-plugin.php:94
|
2331 |
-
msgid "Show Friend's Faces"
|
2332 |
-
msgstr "アイコンを表示する"
|
2333 |
-
|
2334 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:99
|
2335 |
-
#: inc/sns/widget-fb-page-plugin.php:99
|
2336 |
-
msgid "Hide Cover Photo"
|
2337 |
-
msgstr "カバー画像を表示しない"
|
2338 |
-
|
2339 |
-
#: dist/inc/sns/widget-fb-page-plugin.php:104
|
2340 |
-
#: inc/sns/widget-fb-page-plugin.php:104
|
2341 |
-
msgid "Show Page Posts"
|
2342 |
-
msgstr "タイムラインを表示"
|
2343 |
-
|
2344 |
-
#: dist/inc/sns/widget-twitter.php:13 inc/sns/widget-twitter.php:13
|
2345 |
-
msgid "Display Twitter timeline."
|
2346 |
-
msgstr "Twitter のタイムラインを表示します。"
|
2347 |
-
|
2348 |
-
#: dist/inc/sns/widget-twitter.php:89 inc/sns/widget-twitter.php:89
|
2349 |
-
msgid "Account:<br>Please enter your Twitter account."
|
2350 |
-
msgstr "アカウント:<br>Twitter アカウントを入力してください。"
|
2351 |
-
|
2352 |
-
#: dist/inc/sns/widget-twitter.php:90 inc/sns/widget-twitter.php:90
|
2353 |
-
msgid "@"
|
2354 |
-
msgstr "@"
|
2355 |
-
|
2356 |
-
#: dist/inc/sns/widget-twitter.php:94 inc/sns/widget-twitter.php:94
|
2357 |
-
msgid "Height:<br>Please enter an arbitrary number.(Example: 300)"
|
2358 |
-
msgstr "高さ:<br>任意の数値を入力してください(例:300)"
|
2359 |
-
|
2360 |
-
#: dist/inc/sns/widget-twitter.php:99 inc/sns/widget-twitter.php:99
|
2361 |
-
msgid "Background color:"
|
2362 |
-
msgstr "背景の色:"
|
2363 |
-
|
2364 |
-
#: dist/inc/sns/widget-twitter.php:122 inc/sns/widget-twitter.php:122
|
2365 |
-
msgid "Link color:"
|
2366 |
-
msgstr "リンクの色:"
|
2367 |
-
|
2368 |
-
#: dist/inc/template-tags/package/template-tags.php:147
|
2369 |
-
#: inc/template-tags/package/template-tags.php:147
|
2370 |
-
#, php-format
|
2371 |
-
msgid "Author: %s"
|
2372 |
-
msgstr "著者: %s"
|
2373 |
-
|
2374 |
-
#: dist/inc/template-tags/package/template-tags.php:149
|
2375 |
-
#: dist/inc/template-tags/package/template-tags.php:231
|
2376 |
-
#: inc/template-tags/package/template-tags.php:149
|
2377 |
-
#: inc/template-tags/package/template-tags.php:231
|
2378 |
-
msgctxt "yearly archives date format"
|
2379 |
-
msgid "Y"
|
2380 |
-
msgstr "Y年"
|
2381 |
-
|
2382 |
-
#: dist/inc/template-tags/package/template-tags.php:151
|
2383 |
-
#: dist/inc/template-tags/package/template-tags.php:235
|
2384 |
-
#: inc/template-tags/package/template-tags.php:151
|
2385 |
-
#: inc/template-tags/package/template-tags.php:235
|
2386 |
-
msgctxt "monthly archives date format"
|
2387 |
-
msgid "F Y"
|
2388 |
-
msgstr "Y年F"
|
2389 |
-
|
2390 |
-
#: dist/inc/template-tags/package/template-tags.php:153
|
2391 |
-
#: inc/template-tags/package/template-tags.php:153
|
2392 |
-
msgctxt "daily archives date format"
|
2393 |
-
msgid "F j, Y"
|
2394 |
-
msgstr "Y年Fj日"
|
2395 |
-
|
2396 |
-
#: dist/inc/template-tags/package/template-tags.php:156
|
2397 |
-
#: inc/template-tags/package/template-tags.php:156
|
2398 |
-
msgctxt "post format archive title"
|
2399 |
-
msgid "Asides"
|
2400 |
-
msgstr "サイド"
|
2401 |
-
|
2402 |
-
#: dist/inc/template-tags/package/template-tags.php:158
|
2403 |
-
#: inc/template-tags/package/template-tags.php:158
|
2404 |
-
msgctxt "post format archive title"
|
2405 |
-
msgid "Galleries"
|
2406 |
-
msgstr "ギャラリー"
|
2407 |
-
|
2408 |
-
#: dist/inc/template-tags/package/template-tags.php:160
|
2409 |
-
#: inc/template-tags/package/template-tags.php:160
|
2410 |
-
msgctxt "post format archive title"
|
2411 |
-
msgid "Images"
|
2412 |
-
msgstr "画像"
|
2413 |
-
|
2414 |
-
#: dist/inc/template-tags/package/template-tags.php:162
|
2415 |
-
#: inc/template-tags/package/template-tags.php:162
|
2416 |
-
msgctxt "post format archive title"
|
2417 |
-
msgid "Videos"
|
2418 |
-
msgstr "ビデオ"
|
2419 |
-
|
2420 |
-
#: dist/inc/template-tags/package/template-tags.php:164
|
2421 |
-
#: inc/template-tags/package/template-tags.php:164
|
2422 |
-
msgctxt "post format archive title"
|
2423 |
-
msgid "Quotes"
|
2424 |
-
msgstr "引用"
|
2425 |
-
|
2426 |
-
#: dist/inc/template-tags/package/template-tags.php:166
|
2427 |
-
#: inc/template-tags/package/template-tags.php:166
|
2428 |
-
msgctxt "post format archive title"
|
2429 |
-
msgid "Links"
|
2430 |
-
msgstr "リンク"
|
2431 |
-
|
2432 |
-
#: dist/inc/template-tags/package/template-tags.php:168
|
2433 |
-
#: inc/template-tags/package/template-tags.php:168
|
2434 |
-
msgctxt "post format archive title"
|
2435 |
-
msgid "Statuses"
|
2436 |
-
msgstr "ステータス"
|
2437 |
-
|
2438 |
-
#: dist/inc/template-tags/package/template-tags.php:170
|
2439 |
-
#: inc/template-tags/package/template-tags.php:170
|
2440 |
-
msgctxt "post format archive title"
|
2441 |
-
msgid "Audio"
|
2442 |
-
msgstr "オーディオ"
|
2443 |
-
|
2444 |
-
#: dist/inc/template-tags/package/template-tags.php:172
|
2445 |
-
#: inc/template-tags/package/template-tags.php:172
|
2446 |
-
msgctxt "post format archive title"
|
2447 |
-
msgid "Chats"
|
2448 |
-
msgstr "チャット"
|
2449 |
-
|
2450 |
-
#: dist/inc/template-tags/package/template-tags.php:219
|
2451 |
-
#: dist/inc/template-tags/package/template-tags.php:227
|
2452 |
-
#: inc/template-tags/package/template-tags.php:219
|
2453 |
-
#: inc/template-tags/package/template-tags.php:227
|
2454 |
-
#, php-format
|
2455 |
-
msgid "About %s"
|
2456 |
-
msgstr "%s について"
|
2457 |
-
|
2458 |
-
#: dist/inc/template-tags/package/template-tags.php:232
|
2459 |
-
#: inc/template-tags/package/template-tags.php:232
|
2460 |
-
#, php-format
|
2461 |
-
msgctxt "Yearly archive description"
|
2462 |
-
msgid "Article of %s."
|
2463 |
-
msgstr "%s の記事"
|
2464 |
-
|
2465 |
-
#: dist/inc/template-tags/package/template-tags.php:236
|
2466 |
-
#: dist/inc/template-tags/package/template-tags.php:240
|
2467 |
-
#: dist/inc/template-tags/package/template-tags.php:245
|
2468 |
-
#: inc/template-tags/package/template-tags.php:236
|
2469 |
-
#: inc/template-tags/package/template-tags.php:240
|
2470 |
-
#: inc/template-tags/package/template-tags.php:245
|
2471 |
-
#, php-format
|
2472 |
-
msgctxt "Archive description"
|
2473 |
-
msgid "Article of %s."
|
2474 |
-
msgstr "%s の記事"
|
2475 |
-
|
2476 |
-
#: dist/inc/template-tags/package/template-tags.php:262
|
2477 |
-
#: dist/inc/wp-title.php:73 inc/template-tags/package/template-tags.php:262
|
2478 |
-
#: inc/wp-title.php:73
|
2479 |
-
#, php-format
|
2480 |
-
msgid "Page of %s"
|
2481 |
-
msgstr "%sページ目"
|
2482 |
-
|
2483 |
-
#: dist/inc/vk-blocks/package/load-bootstrap.php:49
|
2484 |
-
#: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:67
|
2485 |
-
#: inc/vk-blocks/package/load-bootstrap.php:49
|
2486 |
-
#: inc/vk-blocks/package/vk-blocks-bootstrap.php:67
|
2487 |
-
msgid "VK Blocks Bootstrap Setting"
|
2488 |
-
msgstr "VK Blocks Bootstrap Setting"
|
2489 |
-
|
2490 |
-
#: dist/inc/vk-blocks/package/load-bootstrap.php:66
|
2491 |
-
#: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:84
|
2492 |
-
#: inc/vk-blocks/package/load-bootstrap.php:66
|
2493 |
-
#: inc/vk-blocks/package/vk-blocks-bootstrap.php:84
|
2494 |
-
msgid "Loading Bootstrap4"
|
2495 |
-
msgstr ""
|
2496 |
-
|
2497 |
-
#: dist/inc/vk-blocks/package/load-bootstrap.php:67
|
2498 |
-
#: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:85
|
2499 |
-
#: inc/vk-blocks/package/load-bootstrap.php:67
|
2500 |
-
#: inc/vk-blocks/package/vk-blocks-bootstrap.php:85
|
2501 |
-
msgid ""
|
2502 |
-
"Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, "
|
2503 |
-
"uncheck here."
|
2504 |
-
msgstr ""
|
2505 |
-
|
2506 |
-
#: dist/inc/vk-blocks/package/load-bootstrap.php:83
|
2507 |
-
#: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:101
|
2508 |
-
#: dist/veu-packages.php:81 dist/veu-packages.php:121 dist/veu-packages.php:139
|
2509 |
-
#: dist/veu-packages.php:169 dist/veu-packages.php:187
|
2510 |
-
#: dist/veu-packages.php:228 dist/veu-packages.php:263
|
2511 |
-
#: dist/veu-packages.php:286 dist/veu-packages.php:354
|
2512 |
-
#: dist/veu-packages.php:449 inc/vk-blocks/package/load-bootstrap.php:83
|
2513 |
-
#: inc/vk-blocks/package/vk-blocks-bootstrap.php:101 veu-packages.php:81
|
2514 |
-
#: veu-packages.php:121 veu-packages.php:139 veu-packages.php:169
|
2515 |
-
#: veu-packages.php:187 veu-packages.php:228 veu-packages.php:263
|
2516 |
-
#: veu-packages.php:286 veu-packages.php:354 veu-packages.php:449
|
2517 |
-
msgid "Setting"
|
2518 |
-
msgstr "設定"
|
2519 |
-
|
2520 |
-
#: dist/inc/vk-blocks/package/view/latest-posts.php:17
|
2521 |
-
#: dist/inc/vk-blocks/package/view/post-list.php:132
|
2522 |
-
#: inc/vk-blocks/package/view/latest-posts.php:17
|
2523 |
-
#: inc/vk-blocks/package/view/post-list.php:137
|
2524 |
-
msgid "No Post is selected"
|
2525 |
-
msgstr ""
|
2526 |
-
|
2527 |
-
#: dist/inc/vk-blocks/package/vk-blocks-functions.php:301
|
2528 |
-
#: inc/vk-blocks/package/vk-blocks-functions.php:322
|
2529 |
-
#, fuzzy
|
2530 |
-
#| msgid "PR Blocks"
|
2531 |
-
msgid "Blocks"
|
2532 |
-
msgstr "PR Blocks"
|
2533 |
-
|
2534 |
-
#: dist/inc/vk-blocks/package/vk-blocks-functions.php:306
|
2535 |
-
#: inc/vk-blocks/package/vk-blocks-functions.php:327
|
2536 |
-
msgid "Blocks Layout"
|
2537 |
-
msgstr ""
|
2538 |
-
|
2539 |
-
#: dist/inc/wp-title.php:12 dist/inc/wp-title.php:85 dist/inc/wp-title.php:89
|
2540 |
-
#: inc/wp-title.php:12 inc/wp-title.php:85 inc/wp-title.php:89
|
2541 |
-
msgid "<title> tag of homepage"
|
2542 |
-
msgstr "トップページの<title>タグ"
|
2543 |
-
|
2544 |
-
#: dist/inc/wp-title.php:61 inc/wp-title.php:61
|
2545 |
-
#, php-format
|
2546 |
-
msgid "Search Results for : %s"
|
2547 |
-
msgstr "検索結果 : %s"
|
2548 |
-
|
2549 |
-
#: dist/inc/wp-title.php:64 inc/wp-title.php:64
|
2550 |
-
msgid "Not found"
|
2551 |
-
msgstr "見つかりません"
|
2552 |
-
|
2553 |
-
#: dist/inc/wp-title.php:93 inc/wp-title.php:93
|
2554 |
-
msgid "title of the site"
|
2555 |
-
msgstr "サイトのタイトル"
|
2556 |
-
|
2557 |
-
#: dist/inc/wp-title.php:94 inc/wp-title.php:94
|
2558 |
-
#, php-format
|
2559 |
-
msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
|
2560 |
-
msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
|
2561 |
-
|
2562 |
-
#: dist/inc/wp-title.php:97 inc/wp-title.php:97
|
2563 |
-
#, php-format
|
2564 |
-
msgid ""
|
2565 |
-
"For example, it appears in the form of <br /><title>page title | "
|
2566 |
-
"%1$s</title><br /> if using a static page."
|
2567 |
-
msgstr ""
|
2568 |
-
"例えば固定ページであれば<br><title>固定ページ名 | %1$s</title>"
|
2569 |
-
"<br>というような形式で出力されます。"
|
2570 |
-
|
2571 |
-
#: dist/inc/wp-title.php:99 inc/wp-title.php:99
|
2572 |
-
#, php-format
|
2573 |
-
msgid ""
|
2574 |
-
"However, it might have negative impact on search engine rankings if the <"
|
2575 |
-
"title> is too long, <strong>therefore please include the most popular "
|
2576 |
-
"keywords in a summarized manner, keeping the %s as short as possible.</"
|
2577 |
-
"strong>"
|
2578 |
-
msgstr ""
|
2579 |
-
"しかし、<title>の文字数が長くなりすぎると検索エンジンからの評価が逆に悪"
|
2580 |
-
"くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短くまとめる"
|
2581 |
-
"事が望ましいです。"
|
2582 |
-
|
2583 |
-
#: dist/inc/wp-title.php:103 inc/wp-title.php:103
|
2584 |
-
msgid "Tagline"
|
2585 |
-
msgstr "キャッチフレーズ"
|
2586 |
-
|
2587 |
-
#: dist/inc/wp-title.php:104 inc/wp-title.php:104
|
2588 |
-
#, php-format
|
2589 |
-
msgid ""
|
2590 |
-
"In the top page will be output usually in the form of <br /><title>"
|
2591 |
-
"%1$s | %2$s</title>"
|
2592 |
-
msgstr ""
|
2593 |
-
"トップページでは<br><title>%1$s | %2$s</title><br>というような形"
|
2594 |
-
"式で出力されます。"
|
2595 |
-
|
2596 |
-
#: dist/inc/wp-title.php:107 inc/wp-title.php:107
|
2597 |
-
msgid ""
|
2598 |
-
"However, it may be too long in the above format. If the input to the input "
|
2599 |
-
"field of the following, its contents will be reflected."
|
2600 |
-
msgstr ""
|
2601 |
-
"しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に入"
|
2602 |
-
"力すれば、その内容が反映されます。"
|
2603 |
-
|
2604 |
-
#: dist/veu-packages.php:55 veu-packages.php:55
|
2605 |
-
msgid "Print link fontawesome"
|
2606 |
-
msgstr "fontawesome link タグを出力"
|
2607 |
-
|
2608 |
-
#: dist/veu-packages.php:56 veu-packages.php:56
|
2609 |
-
msgid "Print fontawesome link tag to html head."
|
2610 |
-
msgstr ""
|
2611 |
-
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
2612 |
-
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
2613 |
-
"さい。"
|
2614 |
-
|
2615 |
-
#: dist/veu-packages.php:66 veu-packages.php:66
|
2616 |
-
#, fuzzy
|
2617 |
-
#| msgid "PR Blocks"
|
2618 |
-
msgid "VK Blocks"
|
2619 |
-
msgstr "PR Blocks"
|
2620 |
-
|
2621 |
-
#: dist/veu-packages.php:67 veu-packages.php:67
|
2622 |
-
msgid "Extends Gutenberg's blocks."
|
2623 |
-
msgstr "Gutenbergのブロックを拡張します。"
|
2624 |
-
|
2625 |
-
#: dist/veu-packages.php:77 veu-packages.php:77
|
2626 |
-
msgid "Rewrite the title tag"
|
2627 |
-
msgstr "タイトルタグの書き換え"
|
2628 |
-
|
2629 |
-
#: dist/veu-packages.php:78 veu-packages.php:78
|
2630 |
-
msgid "Print is rewritten by its own rules to html head."
|
2631 |
-
msgstr ""
|
2632 |
-
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
2633 |
-
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
2634 |
-
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
2635 |
-
|
2636 |
-
#: dist/veu-packages.php:95 veu-packages.php:95
|
2637 |
-
msgid "Print meta description"
|
2638 |
-
msgstr "メタディスクリプションタグを出力"
|
2639 |
-
|
2640 |
-
#: dist/veu-packages.php:96 veu-packages.php:96
|
2641 |
-
msgid "Print meta description to html head."
|
2642 |
-
msgstr ""
|
2643 |
-
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
2644 |
-
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
2645 |
-
"している場合はチェックを外して下さい。"
|
2646 |
-
|
2647 |
-
#: dist/veu-packages.php:105 veu-packages.php:105
|
2648 |
-
msgid "Main setting page"
|
2649 |
-
msgstr "メイン設定画面"
|
2650 |
-
|
2651 |
-
#: dist/veu-packages.php:107 veu-packages.php:107
|
2652 |
-
msgid "Print og tags to html head."
|
2653 |
-
msgstr "OG タグを html head 内へ出力します。"
|
2654 |
-
|
2655 |
-
#: dist/veu-packages.php:108 veu-packages.php:108
|
2656 |
-
msgid "Print twitter card tags to html head."
|
2657 |
-
msgstr "Twitter カードタグを html head 内へ出力します。"
|
2658 |
-
|
2659 |
-
#: dist/veu-packages.php:109 veu-packages.php:109
|
2660 |
-
msgid "Print social bookmark buttons."
|
2661 |
-
msgstr "ソーシャルブックマークボタンを表示します。"
|
2662 |
-
|
2663 |
-
#: dist/veu-packages.php:110 veu-packages.php:110
|
2664 |
-
msgid "Facebook Page Plugin widget."
|
2665 |
-
msgstr "Facebookページプラグインウィジェット"
|
2666 |
-
|
2667 |
-
#: dist/veu-packages.php:111 veu-packages.php:111
|
2668 |
-
msgid "Print Follow me box to content bottom."
|
2669 |
-
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
2670 |
-
|
2671 |
-
#: dist/veu-packages.php:113 veu-packages.php:113
|
2672 |
-
#, php-format
|
2673 |
-
msgid "* You can stop the function separately from the %s."
|
2674 |
-
msgstr "%s から個別に機能を停止する事ができます。"
|
2675 |
-
|
2676 |
-
#: dist/veu-packages.php:117 veu-packages.php:117
|
2677 |
-
msgid "Social media cooperation"
|
2678 |
-
msgstr "ソーシャルメディア連携"
|
2679 |
-
|
2680 |
-
#: dist/veu-packages.php:136 veu-packages.php:136
|
2681 |
-
msgid "Print Google Analytics tracking code."
|
2682 |
-
msgstr ""
|
2683 |
-
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
2684 |
-
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
2685 |
-
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
2686 |
-
"合はチェックを外して下さい。"
|
2687 |
-
|
2688 |
-
#: dist/veu-packages.php:152 veu-packages.php:152
|
2689 |
-
msgid "You can use various widgets."
|
2690 |
-
msgstr ""
|
2691 |
-
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
|
2692 |
-
"→「ウィジェット」の設定画面より行って下さい。"
|
2693 |
-
|
2694 |
-
#: dist/veu-packages.php:154 veu-packages.php:154
|
2695 |
-
msgid ""
|
2696 |
-
"VK_Recent Posts - display the link text and the date of the latest article "
|
2697 |
-
"title."
|
2698 |
-
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
2699 |
-
|
2700 |
-
#: dist/veu-packages.php:155 veu-packages.php:155
|
2701 |
-
msgid ""
|
2702 |
-
"VK_Page content to widget - display the contents of the page to the widgets."
|
2703 |
-
msgstr ""
|
2704 |
-
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
2705 |
-
|
2706 |
-
#: dist/veu-packages.php:156 veu-packages.php:156
|
2707 |
-
msgid "VK_Profile - display the profile entered in the widget."
|
2708 |
-
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
2709 |
-
|
2710 |
-
#: dist/veu-packages.php:157 veu-packages.php:157
|
2711 |
-
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
2712 |
-
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
2713 |
-
|
2714 |
-
#: dist/veu-packages.php:158 veu-packages.php:158
|
2715 |
-
msgid "VK_3PR area - display the 3PR area."
|
2716 |
-
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
2717 |
-
|
2718 |
-
#: dist/veu-packages.php:159 veu-packages.php:159
|
2719 |
-
msgid "categories/tags list"
|
2720 |
-
msgstr "カテゴリー/タグ リスト"
|
2721 |
-
|
2722 |
-
#: dist/veu-packages.php:159 veu-packages.php:159
|
2723 |
-
msgid "Displays a categories, tags or format list."
|
2724 |
-
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
2725 |
-
|
2726 |
-
#: dist/veu-packages.php:165 veu-packages.php:165
|
2727 |
-
msgid "Widgets"
|
2728 |
-
msgstr "ウィジェット"
|
2729 |
-
|
2730 |
-
#: dist/veu-packages.php:183 veu-packages.php:183
|
2731 |
-
msgid "CSS customize"
|
2732 |
-
msgstr "CSSカスタマイズ"
|
2733 |
-
|
2734 |
-
#: dist/veu-packages.php:184 veu-packages.php:184
|
2735 |
-
msgid "You can set Customize CSS."
|
2736 |
-
msgstr ""
|
2737 |
-
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
2738 |
-
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
2739 |
-
"さい。"
|
2740 |
-
|
2741 |
-
#: dist/veu-packages.php:202 veu-packages.php:202
|
2742 |
-
msgid "Child page index"
|
2743 |
-
msgstr "子ページの一覧表示"
|
2744 |
-
|
2745 |
-
#: dist/veu-packages.php:203 veu-packages.php:203
|
2746 |
-
msgid ""
|
2747 |
-
"At the bottom of the specified page, it will display a list of the child "
|
2748 |
-
"page."
|
2749 |
-
msgstr ""
|
2750 |
-
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
2751 |
-
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
2752 |
-
|
2753 |
-
#: dist/veu-packages.php:213 veu-packages.php:213
|
2754 |
-
msgid "Page list from ancestor"
|
2755 |
-
msgstr "先祖階層からの子ページリスト表示"
|
2756 |
-
|
2757 |
-
#: dist/veu-packages.php:214 veu-packages.php:214
|
2758 |
-
msgid "Display Page list from ancestor at after content."
|
2759 |
-
msgstr ""
|
2760 |
-
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
2761 |
-
|
2762 |
-
#: dist/veu-packages.php:225 veu-packages.php:225
|
2763 |
-
msgid "Display Contact Section at after content."
|
2764 |
-
msgstr "お問い合わせ情報を本文の下に表示する"
|
2765 |
-
|
2766 |
-
#: dist/veu-packages.php:242 veu-packages.php:242
|
2767 |
-
msgid "Display HTML Site Map"
|
2768 |
-
msgstr "HTMLサイトマップの表示"
|
2769 |
-
|
2770 |
-
#: dist/veu-packages.php:243 veu-packages.php:243
|
2771 |
-
msgid "It displays a HTML Site Map to the specified page."
|
2772 |
-
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
2773 |
-
|
2774 |
-
#: dist/veu-packages.php:268 veu-packages.php:268
|
2775 |
-
msgid "Contents setting"
|
2776 |
-
msgstr "CTA表示内容設定"
|
2777 |
-
|
2778 |
-
#: dist/veu-packages.php:283 veu-packages.php:283
|
2779 |
-
msgid "Insert ads to content."
|
2780 |
-
msgstr "記事に広告を挿入します"
|
2781 |
-
|
2782 |
-
#: dist/veu-packages.php:300 veu-packages.php:300
|
2783 |
-
msgid "Print Related posts lists to post content bottom."
|
2784 |
-
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
2785 |
-
|
2786 |
-
#: dist/veu-packages.php:310 veu-packages.php:310
|
2787 |
-
msgid "Noindex additional function"
|
2788 |
-
msgstr "noindex 追加機能"
|
2789 |
-
|
2790 |
-
#: dist/veu-packages.php:311 veu-packages.php:311
|
2791 |
-
msgid "Print noindex tag to html head."
|
2792 |
-
msgstr "noindex タグを html head 内へ出力します。"
|
2793 |
-
|
2794 |
-
#: dist/veu-packages.php:321 veu-packages.php:321
|
2795 |
-
msgid "Disable ping back"
|
2796 |
-
msgstr "ping backを停止"
|
2797 |
-
|
2798 |
-
#: dist/veu-packages.php:322 veu-packages.php:322
|
2799 |
-
msgid "Disable xmlrpc ping back."
|
2800 |
-
msgstr "xmlrpcを停止"
|
2801 |
-
|
2802 |
-
#: dist/veu-packages.php:330 dist/veu-packages.php:331 veu-packages.php:330
|
2803 |
-
#: veu-packages.php:331
|
2804 |
-
msgid "Disable dashbord"
|
2805 |
-
msgstr "ダッシュボードに最新情報を表示しない"
|
2806 |
-
|
2807 |
-
#: dist/veu-packages.php:339 veu-packages.php:339
|
2808 |
-
msgid "Admin bar manu"
|
2809 |
-
msgstr "管理バーメニュー"
|
2810 |
-
|
2811 |
-
#: dist/veu-packages.php:340 veu-packages.php:340
|
2812 |
-
msgid "Add ExUnit menu to admin bar."
|
2813 |
-
msgstr "ExUnitのメニューを管理バーに表示する"
|
2814 |
-
|
2815 |
-
#: dist/veu-packages.php:350 veu-packages.php:350
|
2816 |
-
msgid "Post Type Manager"
|
2817 |
-
msgstr "カスタム投稿タイプマネージャー"
|
2818 |
-
|
2819 |
-
#: dist/veu-packages.php:351 veu-packages.php:351
|
2820 |
-
msgid "Add custom post types and custom taxonomies."
|
2821 |
-
msgstr "カスタム投稿タイプやカスタム分類を追加します。"
|
2822 |
-
|
2823 |
-
#: dist/veu-packages.php:368 veu-packages.php:368
|
2824 |
-
msgid "Page Top Button"
|
2825 |
-
msgstr "ページトップへ戻るボタン"
|
2826 |
-
|
2827 |
-
#: dist/veu-packages.php:369 veu-packages.php:369
|
2828 |
-
msgid ""
|
2829 |
-
"The page top button is displayed in the lower right corner of the screen."
|
2830 |
-
msgstr "ページトップへ戻るボタンは、画面の右下隅に表示されます。"
|
2831 |
-
|
2832 |
-
#: dist/veu-packages.php:379 veu-packages.php:379
|
2833 |
-
msgid "Smooth scroll"
|
2834 |
-
msgstr "スムーススクロール"
|
2835 |
-
|
2836 |
-
#: dist/veu-packages.php:380 veu-packages.php:380
|
2837 |
-
msgid "Add smooth scroll at anchor link in same page."
|
2838 |
-
msgstr ""
|
2839 |
-
"ページ内のアンカーリンククリックした際にスムーズにスクロースします。<br>※他の"
|
2840 |
-
"jsと干渉する事があります。独自にjsで制御している箇所をクリックしても正しく動"
|
2841 |
-
"作しない場合はこの機能を停止してみてください。"
|
2842 |
-
|
2843 |
-
#: dist/veu-packages.php:390 veu-packages.php:390
|
2844 |
-
msgid "Add body class"
|
2845 |
-
msgstr "Body class の追加"
|
2846 |
-
|
2847 |
-
#: dist/veu-packages.php:391 veu-packages.php:391
|
2848 |
-
msgid "Add \"Post type\", \"Page slug\" etc class name to the body class."
|
2849 |
-
msgstr "投稿タイプ名や固定ページのスラッグ名をbodyタグのクラスに追加します。"
|
2850 |
-
|
2851 |
-
#: dist/veu-packages.php:401 veu-packages.php:401
|
2852 |
-
msgid "Navi menu class custom"
|
2853 |
-
msgstr "ナビメニューclassの改変"
|
2854 |
-
|
2855 |
-
#: dist/veu-packages.php:402 veu-packages.php:402
|
2856 |
-
msgid "Current class tuning of navi menu."
|
2857 |
-
msgstr ""
|
2858 |
-
"メニューに投稿トップやカスタム投稿タイプアーカイブページが設定された時に、詳"
|
2859 |
-
"細ページや関連するカスタム分類ページを表示している時でも適切にcurrentクラスが"
|
2860 |
-
"追加されるように調整します。"
|
2861 |
-
|
2862 |
-
#: dist/veu-packages.php:413 veu-packages.php:413
|
2863 |
-
msgid "Display Eye Catch image at before content."
|
2864 |
-
msgstr ""
|
2865 |
-
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
2866 |
-
"す。"
|
2867 |
-
|
2868 |
-
#: dist/veu-packages.php:423 veu-packages.php:423
|
2869 |
-
msgid "TinyMCE Style Tags"
|
2870 |
-
msgstr "TinyMCE スタイルタグ"
|
2871 |
-
|
2872 |
-
#: dist/veu-packages.php:424 veu-packages.php:424
|
2873 |
-
msgid "Add TinyMCE Editor to style tags."
|
2874 |
-
msgstr "スタイルタグにTinyMCEエディタを追加する"
|
2875 |
-
|
2876 |
-
#: dist/veu-packages.php:434 veu-packages.php:434
|
2877 |
-
msgid "Print Bootstrap css ( grid / button / table )"
|
2878 |
-
msgstr "Bootstrap の CSS(grid/button/tableのみ)を出力"
|
2879 |
-
|
2880 |
-
#: dist/veu-packages.php:435 veu-packages.php:435
|
2881 |
-
msgid ""
|
2882 |
-
"If your using theme has already including Bootstrap, you deactivate this "
|
2883 |
-
"item."
|
2884 |
-
msgstr ""
|
2885 |
-
"BootstrapのCSSを読み込むためのタグを html head 内へ出力します。使用中のテーマ"
|
2886 |
-
"(Lightningなど)やプラグインで Bootstrap を既に読み込んでいる場合はチェック"
|
2887 |
-
"を外して下さい。"
|
2888 |
-
|
2889 |
-
#: dist/veu-packages.php:445 veu-packages.php:445
|
2890 |
-
msgid "Print meta Keyword"
|
2891 |
-
msgstr "メタキーワードを出力"
|
2892 |
-
|
2893 |
-
#: dist/veu-packages.php:446 veu-packages.php:446
|
2894 |
-
msgid "Print meta Keyword to html head."
|
2895 |
-
msgstr "ヘッダーにメタキーワードを出力します。"
|
2896 |
-
|
2897 |
-
#: dist/veu-packages.php:446 veu-packages.php:446
|
2898 |
-
msgid "This feature will be discontinued shortly."
|
2899 |
-
msgstr "この機能は間もなく廃止されます。"
|
2900 |
-
|
2901 |
-
#: dist/veu-packages.php:463 veu-packages.php:463
|
2902 |
-
msgid "Favicon setting"
|
2903 |
-
msgstr "ファビコン設定"
|
2904 |
-
|
2905 |
-
#: dist/veu-packages.php:464 veu-packages.php:464
|
2906 |
-
msgid "About favicon."
|
2907 |
-
msgstr ""
|
2908 |
-
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
2909 |
-
"(ファビコン)を設定します。"
|
2910 |
-
|
2911 |
-
#: dist/veu-packages.php:464 veu-packages.php:464
|
2912 |
-
msgid ""
|
2913 |
-
"This feature will be discontinued shortly.<br>You can set the site icon from "
|
2914 |
-
"\"Site Identity\" panel of \"Themes > Customize\"."
|
2915 |
-
msgstr ""
|
2916 |
-
"この機能は間もなく廃止されます。<br>\n"
|
2917 |
-
"サイトアイコンは「外観 > カスタマイズ」の「サイト基本情報」パネルから設定でき"
|
2918 |
-
"ます。"
|
2919 |
-
|
2920 |
-
#: dist/vkExUnit.php:83 vkExUnit.php:83
|
2921 |
-
#, php-format
|
2922 |
-
msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
|
2923 |
-
msgstr "使用中のPHPのバージョン(%s) が古すぎるので VK ExUnit は動作しません。"
|
2924 |
-
|
2925 |
-
#: dist/vkExUnit.php:87 vkExUnit.php:87
|
2926 |
-
msgid "VK ExUnit supports PHP5.6 or later."
|
2927 |
-
msgstr "VKExUnit がサポートしているPHPのバージョンは5.6以降です"
|
2928 |
-
|
2929 |
-
#: dist/vkExUnit.php:103 vkExUnit.php:103
|
2930 |
-
#, php-format
|
2931 |
-
msgid "Current PHP Version(%s) is old."
|
2932 |
-
msgstr "使用中のPHPのバージョン(%s) が古いです。"
|
2933 |
-
|
2934 |
-
#: dist/vkExUnit.php:104 vkExUnit.php:104
|
2935 |
-
#, php-format
|
2936 |
-
msgid "%s supports PHP5.6 or later."
|
2937 |
-
msgstr "%s はPHP5.6以降をサポートしています。"
|
2938 |
-
|
2939 |
-
#~ msgid "VK Blocks ( Beta )"
|
2940 |
-
#~ msgstr "VK Blocks ( Beta )"
|
2941 |
-
|
2942 |
-
#~ msgid "Exclude page Settings"
|
2943 |
-
#~ msgstr "除外ページ設定"
|
2944 |
-
|
2945 |
-
#~ msgid "Input you want to exclude page id."
|
2946 |
-
#~ msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
|
2947 |
-
|
2948 |
-
#~ msgid ""
|
2949 |
-
#~ "* Please enter separated by \",\"(commas) if there is more than one page "
|
2950 |
-
#~ "ID that you want to exclude."
|
2951 |
-
#~ msgstr ""
|
2952 |
-
#~ "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
|
2953 |
-
|
2954 |
-
#~ msgid "Test version update"
|
2955 |
-
#~ msgstr "テストバージョンのアップデート"
|
2956 |
-
|
2957 |
-
#~ msgid "Active test version update"
|
2958 |
-
#~ msgstr "テストバージョンのアップデートを有効にする"
|
2959 |
-
|
2960 |
-
#, fuzzy
|
2961 |
-
#~| msgid ""
|
2962 |
-
#~| "The entered contents are displayed directly. You can not use Dynamic "
|
2963 |
-
#~| "blocks, reuse blocks, etc."
|
2964 |
-
#~ msgid ""
|
2965 |
-
#~ "The entered contents are displayed directly. You can not use short codes, "
|
2966 |
-
#~ "reuse blocks, etc."
|
2967 |
-
#~ msgstr ""
|
2968 |
-
#~ "入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用"
|
2969 |
-
#~ "できません。"
|
2970 |
-
|
2971 |
-
#~ msgid "Site Map Hide"
|
2972 |
-
#~ msgstr "サイトマップ非表示設定"
|
2973 |
-
|
2974 |
-
#~ msgid "Don't display on Sitemap."
|
2975 |
-
#~ msgstr "サイトマップに表示しない"
|
2976 |
-
|
2977 |
-
#, fuzzy
|
2978 |
-
#~| msgid "SNS Title"
|
2979 |
-
#~ msgid "Sns Title"
|
2980 |
-
#~ msgstr "OGPタイトル"
|
2981 |
-
|
2982 |
-
#~ msgid "Share bottons"
|
2983 |
-
#~ msgstr "ソーシャルボタン"
|
2984 |
-
|
2985 |
-
#, fuzzy
|
2986 |
-
#~| msgid "CTA common setting"
|
2987 |
-
#~ msgid "Common setting"
|
2988 |
-
#~ msgstr "CTA共通設定"
|
2989 |
-
|
2990 |
-
#, fuzzy
|
2991 |
-
#~| msgid "CTA common setting"
|
2992 |
-
#~ msgid "Common Settings"
|
2993 |
-
#~ msgstr "CTA共通設定"
|
2994 |
-
|
2995 |
-
#~ msgid "Print noindex tag."
|
2996 |
-
#~ msgstr "noindexタグを出力する。"
|
2997 |
-
|
2998 |
-
#, fuzzy
|
2999 |
-
#~| msgid "Display count"
|
3000 |
-
#~ msgid "Display count:"
|
3001 |
-
#~ msgstr "表示する記事数"
|
3002 |
-
|
3003 |
-
#~ msgid "ExUnit Settings"
|
3004 |
-
#~ msgstr "ExUnit 設定"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/vk-all-in-one-expansion-unit.pot
DELETED
@@ -1,1844 +0,0 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Project-Id-Version: \n"
|
5 |
-
"POT-Creation-Date: 2017-10-23 22:42+0900\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
-
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.0.4\n"
|
13 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2;_x:1,2c;_ex:1,2c\n"
|
15 |
-
"X-Poedit-Basepath: ..\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
-
|
18 |
-
#: admin_wrapper.php:7 admin_wrapper.php:8 plugins/meta_keyword.php:103
|
19 |
-
msgid "Main setting"
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#: admin_wrapper.php:39
|
23 |
-
msgid "Activated Packages is noting. please activate some package."
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: packages.php:70
|
27 |
-
msgid "Print Bootstrap css ( grid / button / table )"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: packages.php:71
|
31 |
-
msgid ""
|
32 |
-
"If your using theme has already including Bootstrap, you deactivate this "
|
33 |
-
"item."
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: packages.php:81
|
37 |
-
msgid "Print link fontawesome"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: packages.php:82
|
41 |
-
msgid "Print fontawesome link tag to html head."
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: packages.php:91
|
45 |
-
msgid "Favicon setting"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: packages.php:92
|
49 |
-
msgid "About favicon."
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: packages.php:92
|
53 |
-
msgid ""
|
54 |
-
"This feature will be discontinued shortly.<br>You can set the site icon from "
|
55 |
-
"\"Site Identity\" panel of \"Themes > Customize\"."
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: packages.php:102
|
59 |
-
msgid "Rewrite the title tag"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: packages.php:103
|
63 |
-
msgid "Print is rewritten by its own rules to html head."
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: packages.php:106 packages.php:124 packages.php:163 packages.php:181
|
67 |
-
#: packages.php:211 packages.php:229 packages.php:271 packages.php:307
|
68 |
-
#: packages.php:330 packages.php:411
|
69 |
-
msgid "Setting"
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: packages.php:120
|
73 |
-
msgid "Print meta Keyword"
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: packages.php:121
|
77 |
-
msgid "Print meta Keyword to html head."
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: packages.php:137
|
81 |
-
msgid "Print meta description"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: packages.php:138
|
85 |
-
msgid "Print meta description to html head."
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: packages.php:147
|
89 |
-
msgid "Main setting page"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: packages.php:149
|
93 |
-
msgid "Print og tags to html head."
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: packages.php:150
|
97 |
-
msgid "Print twitter card tags to html head."
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: packages.php:151
|
101 |
-
msgid "Print social bookmark buttons."
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: packages.php:152
|
105 |
-
msgid "Facebook Page Plugin widget."
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: packages.php:153
|
109 |
-
msgid "Print Follow me box to content bottom."
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: packages.php:155
|
113 |
-
#, php-format
|
114 |
-
msgid "* You can stop the function separately from the %s."
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: packages.php:159
|
118 |
-
msgid "Social media cooperation"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: packages.php:178
|
122 |
-
msgid "Print Google Analytics tracking code."
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: packages.php:194
|
126 |
-
msgid "You can use various widgets."
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: packages.php:196
|
130 |
-
msgid ""
|
131 |
-
"VK_Recent Posts - display the link text and the date of the latest article "
|
132 |
-
"title."
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: packages.php:197
|
136 |
-
msgid ""
|
137 |
-
"VK_Page content to widget - display the contents of the page to the widgets."
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: packages.php:198
|
141 |
-
msgid "VK_Profile - display the profile entered in the widget."
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: packages.php:199
|
145 |
-
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: packages.php:200
|
149 |
-
msgid "VK_3PR area - display the 3PR area."
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: packages.php:201
|
153 |
-
msgid "categories/tags list"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: packages.php:201
|
157 |
-
msgid "Displays a categories, tags or format list."
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: packages.php:202 plugins/other_widget/widget-archives.php:9
|
161 |
-
msgid "archive list"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: packages.php:202 plugins/other_widget/widget-archives.php:14
|
165 |
-
msgid ""
|
166 |
-
"Displays a list of archives. You can choose the post type and also to "
|
167 |
-
"display archives by month or by year."
|
168 |
-
msgstr ""
|
169 |
-
|
170 |
-
#: packages.php:207
|
171 |
-
msgid "Widgets"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: packages.php:225
|
175 |
-
msgid "CSS customize"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: packages.php:226
|
179 |
-
msgid "You can set Customize CSS."
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: packages.php:244
|
183 |
-
msgid "Child page index"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: packages.php:245
|
187 |
-
msgid ""
|
188 |
-
"At the bottom of the specified page, it will display a list of the child "
|
189 |
-
"page."
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: packages.php:256
|
193 |
-
msgid "Page list from ancestor"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: packages.php:257
|
197 |
-
msgid "Display Page list from ancestor at after content."
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: packages.php:267
|
201 |
-
msgid "Contact Section"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: packages.php:268
|
205 |
-
msgid "Display Contact Section at after content."
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: packages.php:285
|
209 |
-
msgid "Display HTML Site Map"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: packages.php:286
|
213 |
-
msgid "It displays a HTML Site Map to the specified page."
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: packages.php:295 plugins/call-to-action/view-adminsetting.php:19
|
217 |
-
msgid "Display the CTA at the end of the post content."
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: packages.php:297 plugins/call-to-action/view-adminsetting.php:20
|
221 |
-
msgid ""
|
222 |
-
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
223 |
-
"user behavior."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: packages.php:299 plugins/call-to-action/view-adminsetting.php:21
|
227 |
-
msgid ""
|
228 |
-
"As an example, text message and a link button for induction to the free "
|
229 |
-
"sample download page."
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: packages.php:303 plugins/call-to-action/view-adminsetting.php:15
|
233 |
-
msgid "Call To Action"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: packages.php:312
|
237 |
-
msgid "Contents setting"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: packages.php:326 plugins/insert_ads.php:37 plugins/insert_ads.php:137
|
241 |
-
msgid "Insert ads"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: packages.php:327
|
245 |
-
msgid "Insert ads to content."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: packages.php:343 plugins/related_posts/related_posts.php:96
|
249 |
-
msgid "Related posts"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: packages.php:344
|
253 |
-
msgid "Print Related posts lists to post content bottom."
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: packages.php:354 vkExUnit_admin.php:28
|
257 |
-
msgid "Automatic Eye Catch insert"
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: packages.php:355
|
261 |
-
msgid "Display Eye Catch image at before content."
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: packages.php:365
|
265 |
-
msgid "Disable ping back"
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#: packages.php:366
|
269 |
-
msgid "Disable xmlrpc ping back."
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: packages.php:375 packages.php:376
|
273 |
-
msgid "Disable dashbord"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: packages.php:387
|
277 |
-
msgid "TinyMCE Style Tags"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: packages.php:388
|
281 |
-
msgid "Add TinyMCE Editor to style tags."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: packages.php:396
|
285 |
-
msgid "Admin bar manu"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: packages.php:397
|
289 |
-
msgid "Add ExUnit menu to admin bar."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: packages.php:407
|
293 |
-
msgid "Post Type Manager"
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: packages.php:408
|
297 |
-
msgid "Add custom post types and custom taxonomies."
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: plugins/auto_eyecatch.php:40
|
301 |
-
msgid "Automatic EyeCatch"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: plugins/auto_eyecatch.php:50
|
305 |
-
msgid "Do not set eyecatch image automatic."
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: plugins/bootstrap.php:9
|
309 |
-
msgid "Settings"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: plugins/bootstrap.php:29
|
313 |
-
msgid "Key color"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: plugins/bootstrap.php:36
|
317 |
-
msgid "Key color(dark)"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:61
|
321 |
-
#: plugins/call-to-action/view-actionbox.php:64
|
322 |
-
msgid "Edit CTA"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:62
|
326 |
-
msgid "Add new CTA"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:63
|
330 |
-
msgid "New CTA"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:91
|
334 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:93
|
335 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:94
|
336 |
-
msgid "Call to Action setting"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:96
|
340 |
-
msgid "CTA Contents"
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:121
|
344 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:549
|
345 |
-
#: plugins/call-to-action/widget-call-to-action.php:74
|
346 |
-
msgid "Random"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:122
|
350 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:551
|
351 |
-
msgid "Disable display"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:123
|
355 |
-
msgid "Follow common setting"
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:134
|
359 |
-
msgid "CTA common setting"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:135
|
363 |
-
#: plugins/call-to-action/view-adminsetting.php:31
|
364 |
-
#: plugins/call-to-action/widget-call-to-action.php:86
|
365 |
-
msgid "Show CTA index page"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:203
|
369 |
-
msgid "CTA image"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:209
|
373 |
-
msgid "Add image"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:210
|
377 |
-
msgid "Change image"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:211
|
381 |
-
msgid "Remove image"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:216
|
385 |
-
msgid "CTA image position"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:219
|
389 |
-
msgid "right"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:220
|
393 |
-
msgid "center"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:221
|
397 |
-
msgid "left"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:225
|
401 |
-
msgid "Button text"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:229
|
405 |
-
msgid "Button icon"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:230
|
409 |
-
#: plugins/other_widget/widget-button.php:104
|
410 |
-
#: plugins/other_widget/widget-pr-blocks.php:113
|
411 |
-
msgid "To choose your favorite icon, and enter the class."
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:231
|
415 |
-
#: plugins/other_widget/widget-button.php:105
|
416 |
-
msgid "Before :"
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:233
|
420 |
-
#: plugins/other_widget/widget-button.php:107
|
421 |
-
msgid "After :"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:235
|
425 |
-
#: plugins/other_widget/widget-button.php:109
|
426 |
-
msgid " ex:fa-arrow-circle-o-right"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:240
|
430 |
-
msgid "Button link url"
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:253
|
434 |
-
msgid "Target window"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:255
|
438 |
-
msgid "Open in a self window"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:257
|
442 |
-
msgid "Text message"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: plugins/call-to-action/class-vk-call-to-action.php:263
|
446 |
-
#: plugins/call-to-action/widget-call-to-action.php:89
|
447 |
-
msgid "CTA setting"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: plugins/call-to-action/view-adminsetting.php:23
|
451 |
-
msgid "How to use"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: plugins/call-to-action/view-adminsetting.php:26
|
455 |
-
msgid ""
|
456 |
-
"You register the contents on \"CTA\" that you want to display to bottom of "
|
457 |
-
"the content."
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: plugins/call-to-action/view-adminsetting.php:27
|
461 |
-
msgid "Choose the CTA to be displayed from the following."
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: plugins/call-to-action/view-adminsetting.php:28
|
465 |
-
msgid ""
|
466 |
-
"If you want to switch the CTA to be displayed on each post, please set in "
|
467 |
-
"the details page of such posting."
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: plugins/call-to-action/view-adminsetting.php:41
|
471 |
-
msgid "Show index page"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: plugins/call-to-action/widget-call-to-action.php:21
|
475 |
-
msgid "CTA"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: plugins/call-to-action/widget-call-to-action.php:27
|
479 |
-
msgid "Select CTA and display it."
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: plugins/call-to-action/widget-call-to-action.php:69
|
483 |
-
msgid "Please select CTA to display."
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: plugins/call-to-action/widget-call-to-action.php:78
|
487 |
-
msgid "Please select"
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: plugins/child_page_index.php:53 plugins/other_widget/widget-3pr-area.php:193
|
491 |
-
msgid "Read more"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: plugins/child_page_index.php:106 plugins/other_widget/widget-page.php:87
|
495 |
-
msgid "Display a child page index"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: plugins/contact_section.php:59 plugins/contact_section.php:89
|
499 |
-
msgid "Contact Information"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: plugins/contact_section.php:70 plugins/contact_section.php:100
|
503 |
-
msgid "Please feel free to inquire."
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: plugins/contact_section.php:72
|
507 |
-
msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
|
508 |
-
msgstr ""
|
509 |
-
|
510 |
-
#: plugins/contact_section.php:76
|
511 |
-
msgid "Contact us"
|
512 |
-
msgstr ""
|
513 |
-
|
514 |
-
#: plugins/contact_section.php:91
|
515 |
-
msgid ""
|
516 |
-
"Contents input here are displayed on an \"Contact Button\" widget and each "
|
517 |
-
"fixed page."
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: plugins/contact_section.php:93
|
521 |
-
msgid ""
|
522 |
-
"When I display it on the page, it is necessary to classify a check into "
|
523 |
-
"\"Display Contact Section\" checkbox with the edit page of each page."
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: plugins/contact_section.php:97
|
527 |
-
msgid "Message"
|
528 |
-
msgstr ""
|
529 |
-
|
530 |
-
#: plugins/contact_section.php:100 plugins/contact_section.php:107
|
531 |
-
#: plugins/contact_section.php:114 plugins/contact_section.php:122
|
532 |
-
#: plugins/contact_section.php:130 plugins/contact_section.php:138
|
533 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:31
|
534 |
-
msgid "ex) "
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: plugins/contact_section.php:104
|
538 |
-
msgid "Phone number"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: plugins/contact_section.php:111 plugins/contact_section.php:114
|
542 |
-
msgid "Office hours"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: plugins/contact_section.php:114
|
546 |
-
msgid "Weekdays except holidays"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: plugins/contact_section.php:119
|
550 |
-
msgid "The contact page URL"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: plugins/contact_section.php:122
|
554 |
-
msgid "or"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: plugins/contact_section.php:123
|
558 |
-
msgid "* If you fill in the blank, widget's contact button does not appear."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: plugins/contact_section.php:127
|
562 |
-
msgid "Contact button Text"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: plugins/contact_section.php:130
|
566 |
-
msgid "Contact Us from email."
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: plugins/contact_section.php:135
|
570 |
-
msgid "Contact button text( sub )"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: plugins/contact_section.php:139
|
574 |
-
msgid "Email contact form"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: plugins/contact_section.php:144
|
578 |
-
msgid "Contact button short text for side widget"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: plugins/contact_section.php:148
|
582 |
-
msgid "This will used to \"Contact Button\" widget."
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: plugins/contact_section.php:152
|
586 |
-
msgid "Advanced Setting"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: plugins/contact_section.php:155
|
590 |
-
msgid "Inquiry Banner image"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: plugins/contact_section.php:157
|
594 |
-
msgid "Select Image"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: plugins/contact_section.php:158
|
598 |
-
msgid "Display the image instead of the above inquiry information"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: plugins/contact_section.php:162
|
602 |
-
msgid "Display HTML message instead of the standard"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: plugins/contact_section.php:164
|
606 |
-
msgid "HTML takes precedence over image"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: plugins/contact_section.php:187
|
610 |
-
msgid "Display Contact Section"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: plugins/contact_section.php:296 plugins/contact_section.php:326
|
614 |
-
msgid "Edit contact information"
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: plugins/contact_section.php:346
|
618 |
-
msgid "Contact Button"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: plugins/contact_section.php:352 plugins/contact_section.php:374
|
622 |
-
#: plugins/contact_section.php:395 plugins/contact_section.php:417
|
623 |
-
#, php-format
|
624 |
-
msgid ""
|
625 |
-
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
626 |
-
"\"Main setting\" page."
|
627 |
-
msgstr ""
|
628 |
-
|
629 |
-
#: plugins/contact_section.php:389
|
630 |
-
msgid "Contact Section HTML"
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
#: plugins/css_customize/css_customize-edit.php:2
|
634 |
-
#: plugins/css_customize/css_customize.php:28
|
635 |
-
#: plugins/css_customize/css_customize.php:44
|
636 |
-
#: plugins/css_customize/css_customize.php:45
|
637 |
-
msgid "CSS Customize"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: plugins/css_customize/css_customize-edit.php:5
|
641 |
-
msgid "You can add custom CSS here."
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: plugins/css_customize/css_customize-edit.php:10
|
645 |
-
msgid "Save CSS"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: plugins/css_customize/css_customize.php:102
|
649 |
-
msgid "Your custom CSS was saved."
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: plugins/css_customize/css_customize.php:105
|
653 |
-
msgid "Error occured. Please try again."
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: plugins/footer-copyright-change.php:6
|
657 |
-
msgid ""
|
658 |
-
"<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
|
659 |
-
"\"https://lightning.nagoya\" target=\"_blank\" title=\"Free WordPress Theme "
|
660 |
-
"Lightning\"> Lightning Theme</a> & <a href=\"https://ex-unit.nagoya\" "
|
661 |
-
"target=\"_blank\">VK All in One Expansion Unit</a> by <a href=\"//www.vektor-"
|
662 |
-
"inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: plugins/google_analytics/ga_admin.php:9
|
666 |
-
#: plugins/google_analytics/ga_admin.php:13
|
667 |
-
#: plugins/google_analytics/google_analytics.php:18
|
668 |
-
msgid "Google Analytics Settings"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: plugins/google_analytics/ga_admin.php:14
|
672 |
-
msgid ""
|
673 |
-
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
674 |
-
"the site."
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: plugins/google_analytics/ga_admin.php:19
|
678 |
-
msgid ""
|
679 |
-
"Please select the type of Analytics code . (If you are unsure you can skip "
|
680 |
-
"this.)"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: plugins/google_analytics/ga_admin.php:23
|
684 |
-
msgid "To output the Universal Analytics code (default)"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: plugins/google_analytics/ga_admin.php:24
|
688 |
-
msgid "To output only normal code"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: plugins/google_analytics/ga_admin.php:25
|
692 |
-
msgid "To output both types"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: plugins/icons.php:38 plugins/icons.php:68
|
696 |
-
msgid "icon setting"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: plugins/icons.php:74
|
700 |
-
#, php-format
|
701 |
-
msgid ""
|
702 |
-
"This feature will be discontinued shortly.<br>You can set the site icon from "
|
703 |
-
"\"Site Identity\" panel of [ <a href=%s>Themes > Customize</a> ] After "
|
704 |
-
"updating the setting."
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: plugins/icons.php:81
|
708 |
-
msgid "Favicon Setting"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: plugins/icons.php:83
|
712 |
-
msgid "Choose icon"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: plugins/icons.php:84
|
716 |
-
msgid "Please upload your \".ico\" file"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: plugins/insert_ads.php:140
|
720 |
-
msgid "Insert ads to post."
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: plugins/insert_ads.php:142
|
724 |
-
msgid "Insert ads to before content and more tag and after content."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: plugins/insert_ads.php:142
|
728 |
-
msgid "If you want to separate ads area, you fill two fields."
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: plugins/insert_ads.php:144
|
732 |
-
msgid "insert the ad [ before content ]"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: plugins/insert_ads.php:152
|
736 |
-
msgid "insert the ad [ more tag ]"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: plugins/insert_ads.php:160
|
740 |
-
msgid "insert the ad [ after content ]"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: plugins/meta_description.php:20 plugins/meta_description.php:31
|
744 |
-
#: plugins/meta_description.php:34
|
745 |
-
msgid "Meta Description"
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: plugins/meta_description.php:37
|
749 |
-
msgid ""
|
750 |
-
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
751 |
-
"page will be reflected in the description of the meta tag."
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: plugins/meta_description.php:38
|
755 |
-
msgid ""
|
756 |
-
"Description of meta tags in the search results screen of search sites such "
|
757 |
-
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
758 |
-
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
759 |
-
"has become a specification that is applied as a description."
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: plugins/meta_description.php:39
|
763 |
-
msgid ""
|
764 |
-
"The meta description of the top page is subject to the catchphrase of the "
|
765 |
-
"site. However, its contents will be reflected if the excerpt is entered in "
|
766 |
-
"fixed page that was set on the top page."
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: plugins/meta_description.php:40
|
770 |
-
msgid ""
|
771 |
-
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
772 |
-
"each article edit page, and check the expert column display."
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: plugins/meta_keyword.php:40 plugins/meta_keyword.php:91
|
776 |
-
#: plugins/meta_keyword.php:93 plugins/meta_keyword.php:94
|
777 |
-
#: plugins/meta_keyword.php:101
|
778 |
-
msgid "Meta Keywords"
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
#: plugins/meta_keyword.php:68
|
782 |
-
msgid "Meta Keyword"
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: plugins/meta_keyword.php:71
|
786 |
-
msgid "Common Keywords"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: plugins/meta_keyword.php:72
|
790 |
-
msgid ""
|
791 |
-
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
792 |
-
"if you want multiple keywords, enter with separator of \",\"."
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: plugins/meta_keyword.php:75
|
796 |
-
msgid "This is not seriously, Because the SearchEngine does not care this."
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: plugins/meta_keyword.php:76
|
800 |
-
msgid ""
|
801 |
-
"For each page individual keyword is enter at the edit screen of each "
|
802 |
-
"article. 10 keywords maximum, together with a each article keywords is "
|
803 |
-
"desirable."
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: plugins/meta_keyword.php:77
|
807 |
-
msgid "\",\" separator at end of the last keyword is do not need."
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: plugins/meta_keyword.php:78
|
811 |
-
msgid "Example: WordPress,template,theme,free,GPL"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: plugins/meta_keyword.php:102
|
815 |
-
msgid ""
|
816 |
-
"To distinguish between individual keywords, please enter a , delimiter "
|
817 |
-
"(optional)."
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: plugins/meta_keyword.php:104
|
821 |
-
#, php-format
|
822 |
-
msgid "* keywords common to the entire site can be set from %s."
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: plugins/other_widget/widget-3pr-area.php:9
|
826 |
-
#: plugins/other_widget/widget-3pr-area.php:156
|
827 |
-
msgid "3PR area"
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: plugins/other_widget/widget-3pr-area.php:14
|
831 |
-
msgid "Displays a 3PR area"
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
#: plugins/other_widget/widget-3pr-area.php:21
|
835 |
-
msgid "3PR area1 title"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: plugins/other_widget/widget-3pr-area.php:29
|
839 |
-
msgid "3PR area2 title"
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: plugins/other_widget/widget-3pr-area.php:37
|
843 |
-
msgid "3PR area3 title"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: plugins/other_widget/widget-3pr-area.php:56
|
847 |
-
msgid "3PR area setting"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: plugins/other_widget/widget-3pr-area.php:58
|
851 |
-
#: plugins/other_widget/widget-new-posts.php:204
|
852 |
-
#: plugins/other_widget/widget-page.php:39
|
853 |
-
#: plugins/other_widget/widget-pr-blocks.php:89
|
854 |
-
#: plugins/other_widget/widget-profile.php:48
|
855 |
-
#: plugins/sns/function_fbPagePlugin.php:79
|
856 |
-
msgid "Title:"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: plugins/other_widget/widget-3pr-area.php:64
|
860 |
-
msgid "Select image for PC:"
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: plugins/other_widget/widget-3pr-area.php:73
|
864 |
-
#: plugins/other_widget/widget-3pr-area.php:90
|
865 |
-
#: plugins/other_widget/widget-pr-blocks.php:147
|
866 |
-
#: plugins/other_widget/widget-profile.php:62
|
867 |
-
msgid "Select image"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: plugins/other_widget/widget-3pr-area.php:74
|
871 |
-
#: plugins/other_widget/widget-3pr-area.php:91
|
872 |
-
#: plugins/other_widget/widget-pr-blocks.php:148
|
873 |
-
#: plugins/other_widget/widget-profile.php:63
|
874 |
-
msgid "Clear image"
|
875 |
-
msgstr ""
|
876 |
-
|
877 |
-
#: plugins/other_widget/widget-3pr-area.php:81
|
878 |
-
msgid "Select image for Mobile:"
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: plugins/other_widget/widget-3pr-area.php:102
|
882 |
-
#: plugins/other_widget/widget-pr-blocks.php:93
|
883 |
-
msgid "Summary Text:"
|
884 |
-
msgstr ""
|
885 |
-
|
886 |
-
#: plugins/other_widget/widget-3pr-area.php:108
|
887 |
-
#: plugins/other_widget/widget-pr-blocks.php:98
|
888 |
-
msgid "Link URL:"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: plugins/other_widget/widget-3pr-area.php:111
|
892 |
-
#: plugins/other_widget/widget-banner.php:87
|
893 |
-
#: plugins/other_widget/widget-pr-blocks.php:102
|
894 |
-
msgid "Open link new tab."
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: plugins/other_widget/widget-archives.php:53
|
898 |
-
#: plugins/other_widget/widget-archives.php:54
|
899 |
-
msgid "Monthly archives"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: plugins/other_widget/widget-archives.php:63
|
903 |
-
#: plugins/other_widget/widget-new-posts.php:209
|
904 |
-
#: plugins/other_widget/widget-new-posts.php:210
|
905 |
-
msgid "Title"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: plugins/other_widget/widget-archives.php:67
|
909 |
-
msgid "Post type"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
#: plugins/other_widget/widget-archives.php:77
|
913 |
-
msgid "Monthly"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: plugins/other_widget/widget-archives.php:79
|
917 |
-
msgid "Yearly"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: plugins/other_widget/widget-archives.php:97
|
921 |
-
msgid "archive"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: plugins/other_widget/widget-banner.php:16
|
925 |
-
msgid "Banner"
|
926 |
-
msgstr ""
|
927 |
-
|
928 |
-
#: plugins/other_widget/widget-banner.php:22
|
929 |
-
msgid ""
|
930 |
-
"You can easily set up a banner simply by registering images and link "
|
931 |
-
"destinations."
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: plugins/other_widget/widget-banner.php:83
|
935 |
-
msgid "Set image"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: plugins/other_widget/widget-banner.php:88
|
939 |
-
msgid "Alternative text"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: plugins/other_widget/widget-button.php:35
|
943 |
-
msgid "Button"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: plugins/other_widget/widget-button.php:40
|
947 |
-
msgid "You can set buttons for arbitrary text."
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: plugins/other_widget/widget-button.php:98
|
951 |
-
msgid "Main text(Required):"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: plugins/other_widget/widget-button.php:103
|
955 |
-
msgid "Class name of the icon font"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: plugins/other_widget/widget-button.php:113
|
959 |
-
msgid "Sub text:"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: plugins/other_widget/widget-button.php:117
|
963 |
-
msgid "Link URL(Required):"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: plugins/other_widget/widget-button.php:122
|
967 |
-
msgid "Open with new tab"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: plugins/other_widget/widget-button.php:125
|
971 |
-
msgid "Size"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: plugins/other_widget/widget-button.php:127
|
975 |
-
msgid "Small"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
#: plugins/other_widget/widget-button.php:128
|
979 |
-
msgid "Medium"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: plugins/other_widget/widget-button.php:129
|
983 |
-
msgid "Large"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: plugins/other_widget/widget-button.php:133
|
987 |
-
msgid "Button color:"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: plugins/other_widget/widget-button.php:162
|
991 |
-
msgid "Key Color(.primary)"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: plugins/other_widget/widget-button.php:163
|
995 |
-
msgid "No paint(.default)"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: plugins/other_widget/widget-button.php:164
|
999 |
-
msgid "Light green(.success)"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: plugins/other_widget/widget-button.php:165
|
1003 |
-
msgid "Light blue(.info)"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: plugins/other_widget/widget-button.php:166
|
1007 |
-
msgid "Orange(.warning)"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: plugins/other_widget/widget-button.php:167
|
1011 |
-
msgid "Red(.danger)"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: plugins/other_widget/widget-child-page-list.php:10
|
1015 |
-
msgid "Child Page List"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: plugins/other_widget/widget-child-page-list.php:15
|
1019 |
-
#: plugins/other_widget/widget-child-page-list.php:50
|
1020 |
-
msgid "Display the child pages list from ancestor page."
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#: plugins/other_widget/widget-new-posts.php:11
|
1024 |
-
#: plugins/other_widget/widget-new-posts.php:181
|
1025 |
-
msgid "Recent Posts"
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: plugins/other_widget/widget-new-posts.php:16
|
1029 |
-
msgid "Displays a list of your most recent posts"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
#: plugins/other_widget/widget-new-posts.php:208
|
1033 |
-
msgid "Display Format"
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: plugins/other_widget/widget-new-posts.php:209
|
1037 |
-
msgid "Thumbnail"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: plugins/other_widget/widget-new-posts.php:209
|
1041 |
-
#: plugins/other_widget/widget-new-posts.php:210
|
1042 |
-
msgid "Date"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: plugins/other_widget/widget-new-posts.php:210
|
1046 |
-
#: plugins/other_widget/widget-taxonomies.php:24
|
1047 |
-
#: plugins/other_widget/widget-taxonomies.php:54
|
1048 |
-
#: plugins/other_widget/widget-taxonomies.php:55
|
1049 |
-
msgid "Category"
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: plugins/other_widget/widget-new-posts.php:213
|
1053 |
-
msgid "Order by"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: plugins/other_widget/widget-new-posts.php:214
|
1057 |
-
msgid "Publish date"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: plugins/other_widget/widget-new-posts.php:215
|
1061 |
-
msgid "Modified date"
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: plugins/other_widget/widget-new-posts.php:219
|
1065 |
-
msgid "Display count"
|
1066 |
-
msgstr ""
|
1067 |
-
|
1068 |
-
#: plugins/other_widget/widget-new-posts.php:224
|
1069 |
-
msgid "Slug for the custom type you want to display"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: plugins/other_widget/widget-new-posts.php:229
|
1073 |
-
msgid "taxonomy ID"
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: plugins/other_widget/widget-new-posts.php:231
|
1077 |
-
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: plugins/other_widget/widget-new-posts.php:233 plugins/sns/sns_admin.php:88
|
1081 |
-
msgid "if empty this area, I will do not filtering."
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: plugins/other_widget/widget-new-posts.php:238
|
1085 |
-
msgid "Destination URL:"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: plugins/other_widget/widget-new-posts.php:241
|
1089 |
-
msgid "Notation text:"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: plugins/other_widget/widget-page.php:9
|
1093 |
-
msgid "page content to widget"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: plugins/other_widget/widget-page.php:14
|
1097 |
-
msgid "Displays a page contents to widget."
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: plugins/other_widget/widget-page.php:48
|
1101 |
-
msgid "Display the entered title"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: plugins/other_widget/widget-page.php:52
|
1105 |
-
msgid "Display the title of page"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: plugins/other_widget/widget-page.php:56
|
1109 |
-
msgid "Do not display titles"
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: plugins/other_widget/widget-page.php:70
|
1113 |
-
#: plugins/other_widget/widget-taxonomies.php:74
|
1114 |
-
msgid "Display page"
|
1115 |
-
msgstr ""
|
1116 |
-
|
1117 |
-
#: plugins/other_widget/widget-page.php:96 plugins/pageList_ancestor.php:95
|
1118 |
-
msgid "Display a page list from ancestor"
|
1119 |
-
msgstr ""
|
1120 |
-
|
1121 |
-
#: plugins/other_widget/widget-page.php:218
|
1122 |
-
msgid "Edit"
|
1123 |
-
msgstr ""
|
1124 |
-
|
1125 |
-
#: plugins/other_widget/widget-pr-blocks.php:9
|
1126 |
-
msgid "PR Blocks"
|
1127 |
-
msgstr ""
|
1128 |
-
|
1129 |
-
#: plugins/other_widget/widget-pr-blocks.php:14
|
1130 |
-
msgid "Displays a circle image or icon font for pr blocks"
|
1131 |
-
msgstr ""
|
1132 |
-
|
1133 |
-
#: plugins/other_widget/widget-pr-blocks.php:23
|
1134 |
-
msgid "Service"
|
1135 |
-
msgstr ""
|
1136 |
-
|
1137 |
-
#: plugins/other_widget/widget-pr-blocks.php:33
|
1138 |
-
msgid "Company"
|
1139 |
-
msgstr ""
|
1140 |
-
|
1141 |
-
#: plugins/other_widget/widget-pr-blocks.php:43
|
1142 |
-
msgid "Recruit"
|
1143 |
-
msgstr ""
|
1144 |
-
|
1145 |
-
#: plugins/other_widget/widget-pr-blocks.php:53
|
1146 |
-
msgid "Contact"
|
1147 |
-
msgstr ""
|
1148 |
-
|
1149 |
-
#: plugins/other_widget/widget-pr-blocks.php:74
|
1150 |
-
msgid "The choice of the number of columns:"
|
1151 |
-
msgstr ""
|
1152 |
-
|
1153 |
-
#: plugins/other_widget/widget-pr-blocks.php:76
|
1154 |
-
msgid "3column"
|
1155 |
-
msgstr ""
|
1156 |
-
|
1157 |
-
#: plugins/other_widget/widget-pr-blocks.php:77
|
1158 |
-
msgid "4column"
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
#: plugins/other_widget/widget-pr-blocks.php:79
|
1162 |
-
msgid ""
|
1163 |
-
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1164 |
-
"edit page. When restart the edit page, the column input form is increased or "
|
1165 |
-
"decreased."
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: plugins/other_widget/widget-pr-blocks.php:86
|
1169 |
-
#: plugins/other_widget/widget-pr-blocks.php:243
|
1170 |
-
msgid "PR Block"
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: plugins/other_widget/widget-pr-blocks.php:107
|
1174 |
-
msgid "Icon"
|
1175 |
-
msgstr ""
|
1176 |
-
|
1177 |
-
#: plugins/other_widget/widget-pr-blocks.php:110
|
1178 |
-
msgid "Class name of the icon font you want to use:"
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: plugins/other_widget/widget-pr-blocks.php:113
|
1182 |
-
msgid " ex:fa-file-text-o"
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: plugins/other_widget/widget-pr-blocks.php:117
|
1186 |
-
#: plugins/other_widget/widget-profile.php:149
|
1187 |
-
msgid "Icon color:"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: plugins/other_widget/widget-pr-blocks.php:121
|
1191 |
-
#: plugins/other_widget/widget-profile.php:134
|
1192 |
-
msgid "Icon Background:"
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#: plugins/other_widget/widget-pr-blocks.php:125
|
1196 |
-
#: plugins/other_widget/widget-profile.php:140
|
1197 |
-
msgid "Solid color"
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
#: plugins/other_widget/widget-pr-blocks.php:129
|
1201 |
-
#: plugins/other_widget/widget-profile.php:143 plugins/sns/sns.php:187
|
1202 |
-
msgid "No background"
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#: plugins/other_widget/widget-pr-blocks.php:135
|
1206 |
-
msgid "PR Image"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: plugins/other_widget/widget-pr-blocks.php:136
|
1210 |
-
msgid "When you have an image. Image is displayed with priority"
|
1211 |
-
msgstr ""
|
1212 |
-
|
1213 |
-
#: plugins/other_widget/widget-profile.php:9
|
1214 |
-
#: plugins/other_widget/widget-profile.php:25
|
1215 |
-
msgid "Profile"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: plugins/other_widget/widget-profile.php:14
|
1219 |
-
msgid "Displays a your profile"
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: plugins/other_widget/widget-profile.php:33
|
1223 |
-
msgid "Profile Text"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: plugins/other_widget/widget-profile.php:53
|
1227 |
-
msgid "Select Profile image:"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: plugins/other_widget/widget-profile.php:71
|
1231 |
-
msgid "Cut out round the image."
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
#: plugins/other_widget/widget-profile.php:75
|
1235 |
-
msgid "Media size (Optional)"
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: plugins/other_widget/widget-profile.php:85
|
1239 |
-
msgid "Align left"
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: plugins/other_widget/widget-profile.php:88
|
1243 |
-
msgid "Align center"
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
-
#: plugins/other_widget/widget-profile.php:92
|
1247 |
-
msgid "Text float to image."
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: plugins/other_widget/widget-profile.php:96
|
1251 |
-
msgid "Profile Text:"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: plugins/other_widget/widget-profile.php:100
|
1255 |
-
msgid "Facebook URL:"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: plugins/other_widget/widget-profile.php:105
|
1259 |
-
msgid "Twitter URL:"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: plugins/other_widget/widget-profile.php:110
|
1263 |
-
msgid "Email Address:"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: plugins/other_widget/widget-profile.php:115
|
1267 |
-
msgid "Youtube URL:"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: plugins/other_widget/widget-profile.php:120
|
1271 |
-
msgid "RSS URL:"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: plugins/other_widget/widget-profile.php:125
|
1275 |
-
msgid "instagram URL:"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: plugins/other_widget/widget-profile.php:129
|
1279 |
-
msgid "linkedin URL:"
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: plugins/other_widget/widget-profile.php:145
|
1283 |
-
msgid ""
|
1284 |
-
"* When \"Icon Background: Fill\" is selected and \"Icon color\" is not "
|
1285 |
-
"specified, each brand color will be painted."
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: plugins/other_widget/widget-side-child-page-list.php:12
|
1289 |
-
msgid "child pages list"
|
1290 |
-
msgstr ""
|
1291 |
-
|
1292 |
-
#: plugins/other_widget/widget-side-child-page-list.php:17
|
1293 |
-
msgid "Displays list of child page for the current page."
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
#: plugins/other_widget/widget-taxonomies.php:10
|
1297 |
-
msgid "Categories/Custom taxonomies list"
|
1298 |
-
msgstr ""
|
1299 |
-
|
1300 |
-
#: plugins/other_widget/widget-taxonomies.php:15
|
1301 |
-
msgid "Displays a categories and custom taxonomies list."
|
1302 |
-
msgstr ""
|
1303 |
-
|
1304 |
-
#: plugins/other_widget/widget-taxonomies.php:70
|
1305 |
-
msgid "Label to display"
|
1306 |
-
msgstr ""
|
1307 |
-
|
1308 |
-
#: plugins/other_widget/widget-taxonomies.php:83
|
1309 |
-
msgid "Do not display terms without posts"
|
1310 |
-
msgstr ""
|
1311 |
-
|
1312 |
-
#: plugins/other_widget/widget-taxonomies.php:95
|
1313 |
-
msgid "Blog"
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#: plugins/other_widget/widget-taxonomies.php:100
|
1317 |
-
#: plugins/template-tags/template-tags.php:135
|
1318 |
-
msgid "Archives"
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: plugins/post-type-manager/class.post-type-manager.php:21
|
1322 |
-
#: plugins/post-type-manager/class.post-type-manager.php:22
|
1323 |
-
#: plugins/post-type-manager/class.post-type-manager.php:64
|
1324 |
-
msgid "Custom Post Type Setting"
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#: plugins/post-type-manager/class.post-type-manager.php:86
|
1328 |
-
msgid "Post Type ID(Required)"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: plugins/post-type-manager/class.post-type-manager.php:87
|
1332 |
-
msgid "20 characters or less in alphanumeric"
|
1333 |
-
msgstr ""
|
1334 |
-
|
1335 |
-
#: plugins/post-type-manager/class.post-type-manager.php:92
|
1336 |
-
msgid "title"
|
1337 |
-
msgstr ""
|
1338 |
-
|
1339 |
-
#: plugins/post-type-manager/class.post-type-manager.php:93
|
1340 |
-
msgid "editor"
|
1341 |
-
msgstr ""
|
1342 |
-
|
1343 |
-
#: plugins/post-type-manager/class.post-type-manager.php:94
|
1344 |
-
msgid "author"
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
#: plugins/post-type-manager/class.post-type-manager.php:95
|
1348 |
-
msgid "thumbnail"
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
-
#: plugins/post-type-manager/class.post-type-manager.php:96
|
1352 |
-
msgid "excerpt"
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#: plugins/post-type-manager/class.post-type-manager.php:97
|
1356 |
-
msgid "comments"
|
1357 |
-
msgstr ""
|
1358 |
-
|
1359 |
-
#: plugins/post-type-manager/class.post-type-manager.php:98
|
1360 |
-
msgid "revisions"
|
1361 |
-
msgstr ""
|
1362 |
-
|
1363 |
-
#: plugins/post-type-manager/class.post-type-manager.php:102
|
1364 |
-
msgid "Supports(Required)"
|
1365 |
-
msgstr ""
|
1366 |
-
|
1367 |
-
#: plugins/post-type-manager/class.post-type-manager.php:114
|
1368 |
-
msgid "Menu position(optional)"
|
1369 |
-
msgstr ""
|
1370 |
-
|
1371 |
-
#: plugins/post-type-manager/class.post-type-manager.php:115
|
1372 |
-
msgid "Please enter a number."
|
1373 |
-
msgstr ""
|
1374 |
-
|
1375 |
-
#: plugins/post-type-manager/class.post-type-manager.php:121
|
1376 |
-
msgid "Custom taxonomies(optional)"
|
1377 |
-
msgstr ""
|
1378 |
-
|
1379 |
-
#: plugins/post-type-manager/class.post-type-manager.php:134
|
1380 |
-
msgid "Custon taxonomy name(slug)"
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: plugins/post-type-manager/class.post-type-manager.php:138
|
1384 |
-
msgid "Custon taxonomy label"
|
1385 |
-
msgstr ""
|
1386 |
-
|
1387 |
-
#: plugins/post-type-manager/class.post-type-manager.php:144
|
1388 |
-
msgid "Hierarchy"
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: plugins/post-type-manager/class.post-type-manager.php:145
|
1392 |
-
msgid "Make it a tag (do not hierarchize)"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: plugins/post-type-manager/class.post-type-manager.php:200
|
1396 |
-
#, php-format
|
1397 |
-
msgid ""
|
1398 |
-
"Please save a <a href=\"%s\">permanent link configuration</a> After updating "
|
1399 |
-
"the setting."
|
1400 |
-
msgstr ""
|
1401 |
-
|
1402 |
-
#: plugins/sitemap_page/sitemap_admin.php:9
|
1403 |
-
msgid "HTML Sitemap Settings"
|
1404 |
-
msgstr ""
|
1405 |
-
|
1406 |
-
#: plugins/sitemap_page/sitemap_admin.php:13
|
1407 |
-
msgid "Exclude page Settings"
|
1408 |
-
msgstr ""
|
1409 |
-
|
1410 |
-
#: plugins/sitemap_page/sitemap_admin.php:15
|
1411 |
-
msgid "Input you want to exclude page id."
|
1412 |
-
msgstr ""
|
1413 |
-
|
1414 |
-
#: plugins/sitemap_page/sitemap_admin.php:17
|
1415 |
-
msgid ""
|
1416 |
-
"* Please enter separated by \",\"(commas) if there is more than one page ID "
|
1417 |
-
"that you want to exclude."
|
1418 |
-
msgstr ""
|
1419 |
-
|
1420 |
-
#: plugins/sitemap_page/sitemap_page.php:31
|
1421 |
-
msgid "HTML Sitemap"
|
1422 |
-
msgstr ""
|
1423 |
-
|
1424 |
-
#: plugins/sitemap_page/sitemap_page.php:238
|
1425 |
-
msgid "Display a HTML sitemap"
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
#: plugins/sns/function_fbPagePlugin.php:13
|
1429 |
-
msgid "Displays a Facebook Page Plugin"
|
1430 |
-
msgstr ""
|
1431 |
-
|
1432 |
-
#: plugins/sns/function_fbPagePlugin.php:89
|
1433 |
-
msgid "Height"
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
-
#: plugins/sns/function_fbPagePlugin.php:94
|
1437 |
-
msgid "Show Friend's Faces"
|
1438 |
-
msgstr ""
|
1439 |
-
|
1440 |
-
#: plugins/sns/function_fbPagePlugin.php:99
|
1441 |
-
msgid "Hide Cover Photo"
|
1442 |
-
msgstr ""
|
1443 |
-
|
1444 |
-
#: plugins/sns/function_fbPagePlugin.php:104
|
1445 |
-
msgid "Show Page Posts"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: plugins/sns/function_follow.php:16
|
1449 |
-
msgid "Follow me"
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
#: plugins/sns/function_follow.php:44
|
1453 |
-
msgid "Edit follow button"
|
1454 |
-
msgstr ""
|
1455 |
-
|
1456 |
-
#: plugins/sns/function_meta_box.php:28
|
1457 |
-
msgid "Sns Title"
|
1458 |
-
msgstr ""
|
1459 |
-
|
1460 |
-
#: plugins/sns/function_meta_box.php:39
|
1461 |
-
msgid "if filled this area then override title of OGP and Twitter Card"
|
1462 |
-
msgstr ""
|
1463 |
-
|
1464 |
-
#: plugins/sns/sns.php:24
|
1465 |
-
msgid "SNS"
|
1466 |
-
msgstr ""
|
1467 |
-
|
1468 |
-
#: plugins/sns/sns.php:124
|
1469 |
-
msgctxt "facebook language code"
|
1470 |
-
msgid "en_US"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: plugins/sns/sns.php:173 plugins/sns/sns_admin.php:1
|
1474 |
-
msgid "SNS Settings"
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: plugins/sns/sns.php:203
|
1478 |
-
msgid "Btn color"
|
1479 |
-
msgstr ""
|
1480 |
-
|
1481 |
-
#: plugins/sns/sns_admin.php:13
|
1482 |
-
msgid "facebook application ID"
|
1483 |
-
msgstr ""
|
1484 |
-
|
1485 |
-
#: plugins/sns/sns_admin.php:15
|
1486 |
-
msgid "I will check and get the application ID"
|
1487 |
-
msgstr ""
|
1488 |
-
|
1489 |
-
#: plugins/sns/sns_admin.php:16
|
1490 |
-
msgid ""
|
1491 |
-
"* If an application ID is not specified, neither a Like button nor the "
|
1492 |
-
"comment field displays and operates correctly."
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: plugins/sns/sns_admin.php:17
|
1496 |
-
msgid ""
|
1497 |
-
"Please search for terms as [get Facebook application ID] If you do not know "
|
1498 |
-
"much about how to get application ID for Facebook."
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: plugins/sns/sns_admin.php:21
|
1502 |
-
msgid "facebook page URL"
|
1503 |
-
msgstr ""
|
1504 |
-
|
1505 |
-
#: plugins/sns/sns_admin.php:26
|
1506 |
-
msgid "OG default image"
|
1507 |
-
msgstr ""
|
1508 |
-
|
1509 |
-
#: plugins/sns/sns_admin.php:27
|
1510 |
-
msgid ""
|
1511 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
1512 |
-
"image that appears on the Facebook timeline."
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: plugins/sns/sns_admin.php:28
|
1516 |
-
msgid "If a featured image is specified for the page, it takes precedence."
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: plugins/sns/sns_admin.php:30
|
1520 |
-
msgid "Select an image"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: plugins/sns/sns_admin.php:32
|
1524 |
-
msgid ""
|
1525 |
-
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
1526 |
-
"recommended."
|
1527 |
-
msgstr ""
|
1528 |
-
|
1529 |
-
#: plugins/sns/sns_admin.php:36
|
1530 |
-
msgid "twitter ID"
|
1531 |
-
msgstr ""
|
1532 |
-
|
1533 |
-
#: plugins/sns/sns_admin.php:41
|
1534 |
-
msgid "OG tags"
|
1535 |
-
msgstr ""
|
1536 |
-
|
1537 |
-
#: plugins/sns/sns_admin.php:43
|
1538 |
-
msgid "Print the OG tags"
|
1539 |
-
msgstr ""
|
1540 |
-
|
1541 |
-
#: plugins/sns/sns_admin.php:44
|
1542 |
-
msgid ""
|
1543 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
1544 |
-
"plugin."
|
1545 |
-
msgstr ""
|
1546 |
-
|
1547 |
-
#: plugins/sns/sns_admin.php:49
|
1548 |
-
msgid "Twitter Card tags"
|
1549 |
-
msgstr ""
|
1550 |
-
|
1551 |
-
#: plugins/sns/sns_admin.php:51
|
1552 |
-
msgid "Print the Twitter Card tags"
|
1553 |
-
msgstr ""
|
1554 |
-
|
1555 |
-
#: plugins/sns/sns_admin.php:56
|
1556 |
-
msgid "Social bookmark buttons"
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: plugins/sns/sns_admin.php:57
|
1560 |
-
msgid "Print the social bookmark buttons"
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
#: plugins/sns/sns_admin.php:60
|
1564 |
-
msgid "Exclude Post Types"
|
1565 |
-
msgstr ""
|
1566 |
-
|
1567 |
-
#: plugins/sns/sns_admin.php:82
|
1568 |
-
msgid "Exclude Post ID"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: plugins/sns/sns_admin.php:86
|
1572 |
-
msgid ""
|
1573 |
-
"if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
|
1574 |
-
msgstr ""
|
1575 |
-
|
1576 |
-
#: plugins/sns/sns_admin.php:90
|
1577 |
-
msgid "example"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
#: plugins/sns/sns_admin.php:98
|
1581 |
-
msgid "Follow me box"
|
1582 |
-
msgstr ""
|
1583 |
-
|
1584 |
-
#: plugins/sns/sns_admin.php:99
|
1585 |
-
msgid "Print the Follow me box"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: plugins/sns/sns_admin.php:101
|
1589 |
-
msgid "Follow me box title"
|
1590 |
-
msgstr ""
|
1591 |
-
|
1592 |
-
#: plugins/sns/sns_admin.php:108
|
1593 |
-
msgid "Share button for display"
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
#: plugins/sns/sns_admin.php:111
|
1597 |
-
msgid "Facebook"
|
1598 |
-
msgstr ""
|
1599 |
-
|
1600 |
-
#: plugins/sns/sns_admin.php:112
|
1601 |
-
msgid "Twitter"
|
1602 |
-
msgstr ""
|
1603 |
-
|
1604 |
-
#: plugins/sns/sns_admin.php:113
|
1605 |
-
msgid "Hatena"
|
1606 |
-
msgstr ""
|
1607 |
-
|
1608 |
-
#: plugins/sns/sns_admin.php:114
|
1609 |
-
msgid "Pocket"
|
1610 |
-
msgstr ""
|
1611 |
-
|
1612 |
-
#: plugins/sns/sns_admin.php:115
|
1613 |
-
msgid "LINE (mobile only)"
|
1614 |
-
msgstr ""
|
1615 |
-
|
1616 |
-
#: plugins/template-tags/template-tags.php:94
|
1617 |
-
#, php-format
|
1618 |
-
msgid "Author: %s"
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: plugins/template-tags/template-tags.php:96
|
1622 |
-
#: plugins/template-tags/template-tags.php:178
|
1623 |
-
msgctxt "yearly archives date format"
|
1624 |
-
msgid "Y"
|
1625 |
-
msgstr ""
|
1626 |
-
|
1627 |
-
#: plugins/template-tags/template-tags.php:98
|
1628 |
-
#: plugins/template-tags/template-tags.php:182
|
1629 |
-
msgctxt "monthly archives date format"
|
1630 |
-
msgid "F Y"
|
1631 |
-
msgstr ""
|
1632 |
-
|
1633 |
-
#: plugins/template-tags/template-tags.php:100
|
1634 |
-
msgctxt "daily archives date format"
|
1635 |
-
msgid "F j, Y"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: plugins/template-tags/template-tags.php:103
|
1639 |
-
msgctxt "post format archive title"
|
1640 |
-
msgid "Asides"
|
1641 |
-
msgstr ""
|
1642 |
-
|
1643 |
-
#: plugins/template-tags/template-tags.php:105
|
1644 |
-
msgctxt "post format archive title"
|
1645 |
-
msgid "Galleries"
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: plugins/template-tags/template-tags.php:107
|
1649 |
-
msgctxt "post format archive title"
|
1650 |
-
msgid "Images"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: plugins/template-tags/template-tags.php:109
|
1654 |
-
msgctxt "post format archive title"
|
1655 |
-
msgid "Videos"
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#: plugins/template-tags/template-tags.php:111
|
1659 |
-
msgctxt "post format archive title"
|
1660 |
-
msgid "Quotes"
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: plugins/template-tags/template-tags.php:113
|
1664 |
-
msgctxt "post format archive title"
|
1665 |
-
msgid "Links"
|
1666 |
-
msgstr ""
|
1667 |
-
|
1668 |
-
#: plugins/template-tags/template-tags.php:115
|
1669 |
-
msgctxt "post format archive title"
|
1670 |
-
msgid "Statuses"
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: plugins/template-tags/template-tags.php:117
|
1674 |
-
msgctxt "post format archive title"
|
1675 |
-
msgid "Audio"
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: plugins/template-tags/template-tags.php:119
|
1679 |
-
msgctxt "post format archive title"
|
1680 |
-
msgid "Chats"
|
1681 |
-
msgstr ""
|
1682 |
-
|
1683 |
-
#: plugins/template-tags/template-tags.php:166
|
1684 |
-
#: plugins/template-tags/template-tags.php:174
|
1685 |
-
#, php-format
|
1686 |
-
msgid "About %s"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
#: plugins/template-tags/template-tags.php:179
|
1690 |
-
#, php-format
|
1691 |
-
msgctxt "Yearly archive description"
|
1692 |
-
msgid "Article of %s."
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: plugins/template-tags/template-tags.php:183
|
1696 |
-
#: plugins/template-tags/template-tags.php:187
|
1697 |
-
#: plugins/template-tags/template-tags.php:192
|
1698 |
-
#, php-format
|
1699 |
-
msgctxt "Archive description"
|
1700 |
-
msgid "Article of %s."
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
-
#: plugins/template-tags/template-tags.php:211 plugins/wp_title.php:59
|
1704 |
-
#, php-format
|
1705 |
-
msgid "Page of %s"
|
1706 |
-
msgstr ""
|
1707 |
-
|
1708 |
-
#: plugins/wp_title.php:47
|
1709 |
-
#, php-format
|
1710 |
-
msgid "Search Results for : %s"
|
1711 |
-
msgstr ""
|
1712 |
-
|
1713 |
-
#: plugins/wp_title.php:50
|
1714 |
-
msgid "Not found"
|
1715 |
-
msgstr ""
|
1716 |
-
|
1717 |
-
#: plugins/wp_title.php:71 plugins/wp_title.php:83 plugins/wp_title.php:87
|
1718 |
-
msgid "<title> tag of homepage"
|
1719 |
-
msgstr ""
|
1720 |
-
|
1721 |
-
#: plugins/wp_title.php:91
|
1722 |
-
msgid "title of the site"
|
1723 |
-
msgstr ""
|
1724 |
-
|
1725 |
-
#: plugins/wp_title.php:92
|
1726 |
-
#, php-format
|
1727 |
-
msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: plugins/wp_title.php:93
|
1731 |
-
#, php-format
|
1732 |
-
msgid ""
|
1733 |
-
"For example, it appears in the form of <br /><title>page title | "
|
1734 |
-
"%1$s</title><br /> if using a static page."
|
1735 |
-
msgstr ""
|
1736 |
-
|
1737 |
-
#: plugins/wp_title.php:95
|
1738 |
-
#, php-format
|
1739 |
-
msgid ""
|
1740 |
-
"However, it might have negative impact on search engine rankings if the <"
|
1741 |
-
"title> is too long, <strong>therefore please include the most popular "
|
1742 |
-
"keywords in a summarized manner, keeping the %s as short as possible.</"
|
1743 |
-
"strong>"
|
1744 |
-
msgstr ""
|
1745 |
-
|
1746 |
-
#: plugins/wp_title.php:97
|
1747 |
-
msgid "Tagline"
|
1748 |
-
msgstr ""
|
1749 |
-
|
1750 |
-
#: plugins/wp_title.php:98
|
1751 |
-
#, php-format
|
1752 |
-
msgid ""
|
1753 |
-
"In the top page will be output usually in the form of <br /><title>"
|
1754 |
-
"%1$s | %2$s</title>"
|
1755 |
-
msgstr ""
|
1756 |
-
|
1757 |
-
#: plugins/wp_title.php:99
|
1758 |
-
msgid ""
|
1759 |
-
"However, it may be too long in the above format. If the input to the input "
|
1760 |
-
"field of the following, its contents will be reflected."
|
1761 |
-
msgstr ""
|
1762 |
-
|
1763 |
-
#: admin/admin_bar.php:28
|
1764 |
-
msgid "Active Setting"
|
1765 |
-
msgstr ""
|
1766 |
-
|
1767 |
-
#: admin/admin_bar.php:36
|
1768 |
-
msgid "Main Setting"
|
1769 |
-
msgstr ""
|
1770 |
-
|
1771 |
-
#: admin/content-meta-box.php:11
|
1772 |
-
msgid "Setting of insert items"
|
1773 |
-
msgstr ""
|
1774 |
-
|
1775 |
-
#: admin/customize-panel.php:28
|
1776 |
-
msgid "ExUnit Settings"
|
1777 |
-
msgstr ""
|
1778 |
-
|
1779 |
-
#: admin/dashboard_info_widget.php:18
|
1780 |
-
msgid "News from VK All in One Expansion Unit"
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: admin/disable_guide.php:17
|
1784 |
-
msgid "Edit Guide"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: admin/vk-admin/class.vk-admin.php:100
|
1788 |
-
msgid "Sorry, there is no post"
|
1789 |
-
msgstr ""
|
1790 |
-
|
1791 |
-
#: vkExUnit.php:77
|
1792 |
-
#, php-format
|
1793 |
-
msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
|
1794 |
-
msgstr ""
|
1795 |
-
|
1796 |
-
#: vkExUnit.php:79
|
1797 |
-
msgid "VK ExUnit supports PHP5.6 or later."
|
1798 |
-
msgstr ""
|
1799 |
-
|
1800 |
-
#: vkExUnit.php:91
|
1801 |
-
#, php-format
|
1802 |
-
msgid "Current PHP Version(%s) is old."
|
1803 |
-
msgstr ""
|
1804 |
-
|
1805 |
-
#: vkExUnit.php:92
|
1806 |
-
#, php-format
|
1807 |
-
msgid "%s supports PHP5.6 or later."
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: vkExUnit_admin.php:3
|
1811 |
-
msgid "Enable setting"
|
1812 |
-
msgstr ""
|
1813 |
-
|
1814 |
-
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1815 |
-
msgid "Select all"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1819 |
-
msgid "Function"
|
1820 |
-
msgstr ""
|
1821 |
-
|
1822 |
-
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1823 |
-
msgid "Description"
|
1824 |
-
msgstr ""
|
1825 |
-
|
1826 |
-
#: vkExUnit_admin.php:80
|
1827 |
-
msgid "Extension Setting"
|
1828 |
-
msgstr ""
|
1829 |
-
|
1830 |
-
#: vkExUnit_admin.php:85
|
1831 |
-
msgid "Extention contents"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: vkExUnit_admin.php:86
|
1835 |
-
msgid "set extension contents to loop_end hook"
|
1836 |
-
msgstr ""
|
1837 |
-
|
1838 |
-
#: vkExUnit_admin.php:92
|
1839 |
-
msgid "Plugin setting options"
|
1840 |
-
msgstr ""
|
1841 |
-
|
1842 |
-
#: vkExUnit_admin.php:94
|
1843 |
-
msgid "Delete myOptions when deactivate me."
|
1844 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -93,8 +93,12 @@ e.g.
|
|
93 |
|
94 |
== Changelog ==
|
95 |
|
|
|
|
|
|
|
96 |
= 9.11.5.0 =
|
97 |
[ bug fix ][ blocks ] Editor css was not working
|
|
|
98 |
|
99 |
= 9.11.4.0 =
|
100 |
[ Bug fix ] Fix Lightning Design skin specific design overwrite not working.
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 9.12.0.0 =
|
97 |
+
[ Add function ] Widget Active Controll
|
98 |
+
|
99 |
= 9.11.5.0 =
|
100 |
[ bug fix ][ blocks ] Editor css was not working
|
101 |
+
[ Specification change ] Delete language files ( use GlotPress )
|
102 |
|
103 |
= 9.11.4.0 =
|
104 |
[ Bug fix ] Fix Lightning Design skin specific design overwrite not working.
|
uninstaller.php
CHANGED
@@ -17,6 +17,7 @@ $delete_options = array(
|
|
17 |
'vkExUnit_description_options',
|
18 |
'vkExUnit_common_keywords',
|
19 |
'vkExUnit_colors',
|
|
|
20 |
);
|
21 |
|
22 |
$delete_customfields = array(
|
17 |
'vkExUnit_description_options',
|
18 |
'vkExUnit_common_keywords',
|
19 |
'vkExUnit_colors',
|
20 |
+
'vkExUnit_enable_widgets',
|
21 |
);
|
22 |
|
23 |
$delete_customfields = array(
|
veu-packages.php
CHANGED
@@ -166,7 +166,12 @@ function veu_get_packages() {
|
|
166 |
'description' => $desk,
|
167 |
'attr' => array(
|
168 |
array(
|
169 |
-
'name' => __( 'Setting', 'vk-all-in-one-expansion-unit' ),
|
|
|
|
|
|
|
|
|
|
|
170 |
'url' => admin_url() . 'widgets.php',
|
171 |
'enable_only' => 1,
|
172 |
),
|
166 |
'description' => $desk,
|
167 |
'attr' => array(
|
168 |
array(
|
169 |
+
'name' => __( 'Enable Setting', 'vk-all-in-one-expansion-unit' ),
|
170 |
+
'url' => admin_url() . 'admin.php?page=vkExUnit_setting_page#widget_enablation',
|
171 |
+
'enable_only' => 1,
|
172 |
+
),
|
173 |
+
array(
|
174 |
+
'name' => __( 'Widget Setting', 'vk-all-in-one-expansion-unit' ),
|
175 |
'url' => admin_url() . 'widgets.php',
|
176 |
'enable_only' => 1,
|
177 |
),
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
* Version: 9.
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
@@ -38,7 +38,7 @@ global $vkExUnit_version;
|
|
38 |
$vkExUnit_version = $data['version'];
|
39 |
|
40 |
// include('plugins/css_customize/css-customize.php');
|
41 |
-
load_plugin_textdomain( 'vk-all-in-one-expansion-unit', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
42 |
|
43 |
|
44 |
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
* Version: 9.12.0.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
38 |
$vkExUnit_version = $data['version'];
|
39 |
|
40 |
// include('plugins/css_customize/css-customize.php');
|
41 |
+
// load_plugin_textdomain( 'vk-all-in-one-expansion-unit', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
42 |
|
43 |
|
44 |
|