VK All in One Expansion Unit - Version 9.6.1.0

Version Description

[ Add function ][ HTML SiteMap ] Exclude post type [ Specification change ][ HTML SiteMap ] Abolished hidden page setting on ExUnit Main Setting Page. [ bug fix ] metabox display

Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.6.1.0
Comparing to
See all releases

Code changes from version 9.6.0.1 to 9.6.1.0

inc/post-type-manager/package/class.post-type-manager.php CHANGED
@@ -136,6 +136,7 @@ if ( ! class_exists( 'Vk_post_type_manager' ) ) {
136
  }
137
 
138
  echo '<label>' . '<input type="checkbox" id="veu_post_type_export_to_api" name="veu_post_type_export_to_api" value="true"' . $checked . '> ' . __( 'Export to REST API' ) . '</label>';
 
139
  echo '<hr>';
140
 
141
  /* Custom taxonomies
136
  }
137
 
138
  echo '<label>' . '<input type="checkbox" id="veu_post_type_export_to_api" name="veu_post_type_export_to_api" value="true"' . $checked . '> ' . __( 'Export to REST API' ) . '</label>';
139
+ echo '<p>' . __( 'If you want to use the block editor that, you have to use the REST API.', $vk_post_type_manager_textdomain ) . '</p>';
140
  echo '<hr>';
141
 
142
  /* Custom taxonomies
inc/sitemap-page/sitemap-page-admin-main-setting.php CHANGED
@@ -19,18 +19,26 @@ add_action( 'veu_package_init', 'veu_sitemap_set_main_setting' );
19
  function veu_sitemap_options_validate( $input ) {
20
  $output = $defaults = veu_get_sitemap_options_default();
21
 
22
- $paras = array( 'excludeId' );
23
 
24
  foreach ( $paras as $key => $value ) {
25
- $output[ $value ] = ( isset( $input[ $value ] ) ) ? $input[ $value ] : '';
26
- }
27
- return apply_filters( 'veu_sitemap_options_validate', $output, $input, $defaults );
 
 
 
 
 
 
 
 
28
  }
29
 
30
 
31
  function veu_add_sitemap_options_page() {
32
  $options = veu_get_sitemap_options();
33
- // $options_default = veu_get_sns_options_default();
34
  /*-------------------------------------------*/
35
  /* sitemap page
36
  /*-------------------------------------------*/
@@ -40,14 +48,37 @@ function veu_add_sitemap_options_page() {
40
  <table class="form-table">
41
  <!-- sitemap -->
42
  <tr>
43
- <th><?php _e( 'Exclude page Settings', 'vk-all-in-one-expansion-unit' ); ?></th>
44
  <td>
45
- <?php _e( 'Input you want to exclude page id.', 'vk-all-in-one-expansion-unit' ); ?><br />
46
- <p><input type="text" name="vkExUnit_sitemap_options[excludeId]" id="excludeId" value="<?php echo esc_attr( $options['excludeId'] ); ?>" style="width:50%;" /></p>
47
- <?php _e( '* Please enter separated by ","(commas) if there is more than one page ID that you want to exclude.', 'vk-all-in-one-expansion-unit' ); ?>
48
- </td>
 
 
 
 
 
 
49
  </tr>
50
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  <?php submit_button(); ?>
52
  </div>
53
  <?php
19
  function veu_sitemap_options_validate( $input ) {
20
  $output = $defaults = veu_get_sitemap_options_default();
21
 
22
+ $paras = array( 'excludeId', 'excludePostTypes' );
23
 
24
  foreach ( $paras as $key => $value ) {
25
+ if ( isset( $input[ $value ] ) ) {
26
+ if ( is_array( $input[ $value ] ) ) {
27
+ foreach ( $input[ $value ] as $post_typ => $post_type_boolean ) {
28
+ $output[ $value ][ $post_typ ] = esc_html( $post_type_boolean );
29
+ }
30
+ } else {
31
+ $output[ $value ] = ( isset( $input[ $value ] ) ) ? esc_html( $input[ $value ] ) : '';
32
+ }
33
+ } // if ( isset( $input[ $value ] ) {
34
+ } // foreach ( $paras as $key => $value ) {
35
+ return apply_filters( 'veu_sitemap_options_validate', $output );
36
  }
37
 
38
 
39
  function veu_add_sitemap_options_page() {
40
  $options = veu_get_sitemap_options();
41
+
42
  /*-------------------------------------------*/
43
  /* sitemap page
44
  /*-------------------------------------------*/
48
  <table class="form-table">
49
  <!-- sitemap -->
50
  <tr>
51
+ <th><?php _e( 'Exclude post type from the sitemap', 'vk-all-in-one-expansion-unit' ); ?></th>
52
  <td>
53
+ <?php
54
+ $args = array(
55
+ 'name' => 'vkExUnit_sitemap_options[excludePostTypes]',
56
+ 'checked' => $options['excludePostTypes'],
57
+ 'exclude_post_types' => array( 'page', 'attachment' ),
58
+ );
59
+ vk_the_post_type_check_list( $args );
60
+ ?>
61
+ </td>
62
+ </tr>
63
  </tr>
64
  </table>
65
+ <p><?php _e( 'If you want to do not display specific page that, you can set on that page edit screen.', 'vk-all-in-one-expansion-unit' ); ?></p>
66
+
67
+ <?php
68
+ // 以前は除外設定をここから IDを , 区切りで行っていた。
69
+ // 除外指定がもし , 区切りで保存してあった場合に固定ページ側での除外指定で自動上書きする
70
+ if ( ! empty( $options['excludeId'] ) ) {
71
+ $excludes = esc_attr( $options['excludeId'] );
72
+ $excludes = str_replace( ',', ',', $excludes );
73
+ $excludes = mb_convert_kana( $excludes, 'kvrn' );
74
+ $excludes = explode( ',', $excludes );
75
+ foreach ( $excludes as $key => $exclude_id ) {
76
+ update_post_meta( $exclude_id, 'sitemap_hide', true );
77
+ }
78
+ $options['excludeId'] = '';
79
+ update_option( 'vkExUnit_sitemap_options', $options );
80
+ } // if ( ! empty( $options['excludeId'] ) ) {
81
+ ?>
82
  <?php submit_button(); ?>
83
  </div>
84
  <?php
inc/sitemap-page/sitemap-page-helpers.php CHANGED
@@ -1,8 +1,7 @@
1
  <?php
2
-
3
  function veu_get_sitemap_options() {
4
  $default_options = array(
5
- 'excludeId' => '',
6
  );
7
  $options = get_option( 'vkExUnit_sitemap_options', $default_options );
8
  $options = wp_parse_args( $options, $default_options );
1
  <?php
 
2
  function veu_get_sitemap_options() {
3
  $default_options = array(
4
+ 'excludePostTypes' => array(),
5
  );
6
  $options = get_option( 'vkExUnit_sitemap_options', $default_options );
7
  $options = wp_parse_args( $options, $default_options );
inc/sitemap-page/sitemap-page.php CHANGED
@@ -5,8 +5,6 @@
5
  /*-------------------------------------------*/
6
  /* Options Init
7
  /*-------------------------------------------*/
8
- /* validate
9
- /*-------------------------------------------*/
10
  /* insert sitemap page
11
  /*-------------------------------------------*/
12
  /* admin _ meta box
@@ -139,6 +137,15 @@ function vkExUnit_sitemap( $atts ) {
139
  unset( $allPostTypes['page'] );
140
  unset( $allPostTypes['attachment'] );
141
 
 
 
 
 
 
 
 
 
 
142
  foreach ( $allPostTypes as $postType ) {
143
  $post_type_object = get_post_type_object( $postType );
144
  if ( $post_type_object ) {
5
  /*-------------------------------------------*/
6
  /* Options Init
7
  /*-------------------------------------------*/
 
 
8
  /* insert sitemap page
9
  /*-------------------------------------------*/
10
  /* admin _ meta box
137
  unset( $allPostTypes['page'] );
138
  unset( $allPostTypes['attachment'] );
139
 
140
+ // 除外投稿タイプ処理
141
+ if ( isset( $options['excludePostTypes'] ) && is_array( $options['excludePostTypes'] ) ) {
142
+ foreach ( $options['excludePostTypes'] as $key => $value ) {
143
+ if ( $value ) {
144
+ unset( $allPostTypes[ $key ] );
145
+ }
146
+ }
147
+ }
148
+
149
  foreach ( $allPostTypes as $postType ) {
150
  $post_type_object = get_post_type_object( $postType );
151
  if ( $post_type_object ) {
inc/template-tags/template-tags.php CHANGED
@@ -56,13 +56,21 @@ if ( ! function_exists( 'vk_get_post_type' ) ) {
56
 
57
  $postType = array();
58
 
 
 
59
  // 管理画面の投稿タイプ
60
- if ( is_admin() ) {
 
61
  global $post;
62
  $postType['slug'] = get_post_type( $post );
63
  if ( ! $postType['slug'] ) {
64
  if ( ! empty( $_GET['post_type'] ) ) {
65
  $postType['slug'] = $_GET['post_type'];
 
 
 
 
 
66
  }
67
  }
68
  return $postType;
@@ -331,18 +339,20 @@ if ( ! function_exists( 'vk_sanitize_number' ) ) {
331
  */
332
  function vk_the_post_type_check_list( $args ) {
333
  $default = array(
334
- 'post_types_args' => array(
335
  'public' => true,
336
  ),
337
- 'name' => '',
338
- 'checked' => '',
339
- 'id' => '',
 
340
  );
341
  $args = wp_parse_args( $args, $default );
342
  $post_types = get_post_types( $args['post_types_args'], 'object' );
343
  echo '<ul>';
344
  foreach ( $post_types as $key => $value ) {
345
- if ( $key != 'attachment' ) {
 
346
 
347
  $checked = ( isset( $args['checked'][ $key ] ) && $args['checked'][ $key ] == 'true' ) ? ' checked' : '';
348
 
56
 
57
  $postType = array();
58
 
59
+ $url = $_SERVER['REQUEST_URI'];
60
+
61
  // 管理画面の投稿タイプ
62
+ // phpunitで is_admin()判定が効かない場合のため strpos( $url, 'wp-admin' ) を使用
63
+ if ( is_admin() || strpos( $url, 'wp-admin' ) ) {
64
  global $post;
65
  $postType['slug'] = get_post_type( $post );
66
  if ( ! $postType['slug'] ) {
67
  if ( ! empty( $_GET['post_type'] ) ) {
68
  $postType['slug'] = $_GET['post_type'];
69
+ } elseif ( ! empty( $_GET['post'] ) ) {
70
+ $admin_post = get_post( $_GET['post'] );
71
+ if ( ! empty( $admin_post->post_type ) ) {
72
+ $postType['slug'] = $admin_post->post_type;
73
+ }
74
  }
75
  }
76
  return $postType;
339
  */
340
  function vk_the_post_type_check_list( $args ) {
341
  $default = array(
342
+ 'post_types_args' => array(
343
  'public' => true,
344
  ),
345
+ 'name' => '',
346
+ 'checked' => '',
347
+ 'id' => '',
348
+ 'exclude_post_types' => array( 'attachment' ),
349
  );
350
  $args = wp_parse_args( $args, $default );
351
  $post_types = get_post_types( $args['post_types_args'], 'object' );
352
  echo '<ul>';
353
  foreach ( $post_types as $key => $value ) {
354
+
355
+ if ( ! in_array( $key, $args['exclude_post_types'] ) ) {
356
 
357
  $checked = ( isset( $args['checked'][ $key ] ) && $args['checked'][ $key ] == 'true' ) ? ' checked' : '';
358
 
languages/vk-all-in-one-expansion-unit-ja.mo CHANGED
Binary file
languages/vk-all-in-one-expansion-unit-ja.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2019-05-22 00:17+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"
@@ -16,263 +16,214 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPathExcluded-0: node_modules\n"
18
 
19
- #: admin/admin-active-setting-page.php:3 dist/admin_active_setting_page.php:3
 
20
  msgid "Enable setting"
21
  msgstr "有効化設定"
22
 
23
  #: admin/admin-active-setting-page.php:16
24
- #: admin/admin-active-setting-page.php:89 dist/admin_active_setting_page.php:16
25
- #: dist/admin_active_setting_page.php:89
 
26
  msgid "Select all"
27
  msgstr "全てを選択"
28
 
29
  #: admin/admin-active-setting-page.php:16
30
- #: admin/admin-active-setting-page.php:89 dist/admin_active_setting_page.php:16
31
- #: dist/admin_active_setting_page.php:89
 
32
  msgid "Function"
33
  msgstr "有効化"
34
 
35
  #: admin/admin-active-setting-page.php:16
36
- #: admin/admin-active-setting-page.php:89 dist/admin_active_setting_page.php:16
37
- #: dist/admin_active_setting_page.php:89
 
38
  msgid "Description"
39
  msgstr "説明"
40
 
41
- #: admin/admin-active-setting-page.php:35 dist/admin_active_setting_page.php:35
42
- #: dist/veu-packages.php:441 veu-packages.php:412
 
43
  msgid "Automatic Eye Catch insert"
44
  msgstr "アイキャッチ画像自動挿入"
45
 
46
- #: admin/admin-active-setting-page.php:95 dist/admin_active_setting_page.php:95
 
47
  msgid "Extension Setting"
48
  msgstr "拡張設定"
49
 
50
  #: admin/admin-active-setting-page.php:100
51
- #: dist/admin_active_setting_page.php:100
52
  msgid "Extention contents"
53
  msgstr "拡張コンテンツ"
54
 
55
  #: admin/admin-active-setting-page.php:106
56
- #: dist/admin_active_setting_page.php:106
57
  msgid "set extension contents to loop_end hook"
58
  msgstr "ループ終了時にコンテンツを追加する"
59
 
60
  #: admin/admin-active-setting-page.php:112
 
61
  msgid "Post edit page metabox settings"
62
  msgstr "投稿編集画面metabox設定"
63
 
64
  #: admin/admin-active-setting-page.php:114
 
65
  msgid "Do not combine ExUnit's meta box"
66
  msgstr "ExUnitのmetaboxを統合しない"
67
 
68
  #: admin/admin-active-setting-page.php:117
69
- #: dist/admin_active_setting_page.php:112
70
- msgid "Test version update"
71
- msgstr "テストバージョンのアップデート"
72
-
73
- #: admin/admin-active-setting-page.php:119
74
- #: dist/admin_active_setting_page.php:114
75
- msgid "Active test version update"
76
- msgstr "テストバージョンのアップデートを有効にする"
77
-
78
- #: admin/admin-active-setting-page.php:122
79
- #: dist/admin_active_setting_page.php:117
80
  msgid "Plugin setting options"
81
  msgstr "プラグイン設定オプション"
82
 
83
- #: admin/admin-active-setting-page.php:124
84
- #: dist/admin_active_setting_page.php:119
85
  msgid "Delete myOptions when deactivate me."
86
  msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
87
 
88
  #: admin/admin-main-setting-page.php:16 admin/admin-main-setting-page.php:17
89
- #: dist/admin_main_setting_page.php:10 dist/admin_main_setting_page.php:11
90
- #: dist/plugins/meta_keyword.php:103
 
91
  #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:30
92
  msgid "Main setting"
93
  msgstr "メイン設定"
94
 
95
- #: admin/admin-main-setting-page.php:94 dist/admin_main_setting_page.php:82
 
96
  msgid "Activated Packages is noting. please activate some package."
97
  msgstr ""
98
  "有効化されているパッケージがありません。何かの機能を有効化してください。"
99
 
100
- #: admin/admin-post-metabox.php:47
101
  msgid "Open all"
102
  msgstr "すべて開く"
103
 
104
- #: admin/admin-post-metabox.php:48
105
  msgid "Close all"
106
  msgstr "全て閉じる"
107
 
108
- #: admin/admin_bar.php:33 dist/plugins_admin/admin_bar.php:33
109
  msgid "Active Setting"
110
  msgstr "有効化設定"
111
 
112
- #: admin/admin_bar.php:44 dist/plugins_admin/admin_bar.php:44
113
  msgid "Main Setting"
114
  msgstr "メイン設定"
115
 
116
  #: admin/class-veu-metabox-insert-items.php:12
117
- #: dist/plugins_admin/content-meta-box.php:11
118
  msgid "Setting of insert items"
119
  msgstr "挿入アイテムの設定"
120
 
121
- #: admin/class-veu-metabox.php:126
 
122
  #: inc/sitemap-page/class-veu-metabox-sitemap.php:37
123
  msgid "Hide this page to HTML Sitemap."
124
  msgstr "このページをHTMLサイトマップに表示しない。"
125
 
126
- #: admin/customizer.php:38 dist/plugins/bootstrap.php:9
127
- #: dist/plugins_admin/customizer.php:38 inc/bootstrap.php:9
128
  msgid "Settings"
129
  msgstr "設定"
130
 
131
- #: admin/disable-guide.php:17 dist/plugins_admin/disable_guide.php:17
132
  msgid "Edit Guide"
133
  msgstr "編集ガイド"
134
 
135
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:395
136
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:395
137
- msgid "Check for updates"
138
- msgstr ""
139
-
140
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:432
141
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:432
142
- msgid "View details"
143
- msgstr ""
144
-
145
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:455
146
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:455
147
- #, php-format
148
- msgid "More information about %s"
149
- msgstr ""
150
-
151
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:548
152
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:548
153
- #, php-format
154
- msgctxt "the plugin title"
155
- msgid "The %s plugin is up to date."
156
- msgstr ""
157
-
158
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:550
159
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:550
160
- #, php-format
161
- msgctxt "the plugin title"
162
- msgid "A new version of the %s plugin is available."
163
- msgstr ""
164
-
165
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:552
166
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:552
167
- #, php-format
168
- msgctxt "the plugin title"
169
- msgid "Could not determine if updates are available for %s."
170
- msgstr ""
171
-
172
- #: admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:558
173
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php:558
174
- #, php-format
175
- msgid "Unknown update checker status \"%s\""
176
- msgstr ""
177
-
178
- #: admin/plugin-update-checker/Puc/v4p4/Vcs/PluginUpdateChecker.php:98
179
- #: dist/plugins_admin/plugin-update-checker/Puc/v4p4/Vcs/PluginUpdateChecker.php:98
180
- msgid "There is no changelog available."
181
- msgstr ""
182
-
183
  #: admin/vk-admin/package/class-vk-admin.php:290
184
- #: dist/plugins_admin/vk-admin/class-vk-admin.php:290
185
  msgid "Sorry, there is no post"
186
  msgstr "お知らせはありません。"
187
 
188
  #: admin/vk-admin/package/class-vk-admin.php:344
189
- #: dist/plugins_admin/vk-admin/class-vk-admin.php:344
190
  msgid "Vektor WordPress Information"
191
  msgstr "Vektor WordPress Information"
192
 
193
- #: dist/plugins/auto_eyecatch.php:50
194
  #: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:10
195
  msgid "Automatic EyeCatch"
196
  msgstr "アイキャッチ自動挿入"
197
 
198
- #: dist/plugins/auto_eyecatch.php:60
199
  #: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:33
200
  msgid "Do not set eyecatch image automatic."
201
  msgstr "アイキャッチ画像を自動挿入しない"
202
 
203
- #: dist/plugins/bootstrap.php:36 inc/bootstrap.php:36
204
  msgid "Key color"
205
  msgstr "キーカラー"
206
 
207
- #: dist/plugins/bootstrap.php:47 inc/bootstrap.php:47
208
  msgid "Key color(dark)"
209
  msgstr "キーカラー(暗)"
210
 
211
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:63
212
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:425
213
- #: inc/call-to-action/package/class-vk-call-to-action.php:63
214
- #: inc/call-to-action/package/class-vk-call-to-action.php:394
215
- msgid "Edit CTA"
216
- msgstr "CTAの編集"
217
-
218
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:64
219
- #: inc/call-to-action/package/class-vk-call-to-action.php:64
220
- msgid "Add new CTA"
221
- msgstr "CTAの新規作成"
222
-
223
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:65
224
- #: inc/call-to-action/package/class-vk-call-to-action.php:65
225
- msgid "New CTA"
226
- msgstr "CTA 新規作成"
227
-
228
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:98
229
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:100
230
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:101
231
  #: inc/call-to-action/package/class-veu-metabox-cta.php:14
232
  msgid "Call to Action setting"
233
  msgstr "CTA設定"
234
 
235
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:103
236
- #: inc/call-to-action/package/class-vk-call-to-action.php:92
237
- msgid "CTA Contents"
238
- msgstr "CTA Contents"
239
-
240
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:129
241
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:631
242
- #: dist/plugins/call-to-action/widget-call-to-action.php:74
243
  #: inc/call-to-action/package/class-veu-metabox-cta.php:39
244
- #: inc/call-to-action/package/class-vk-call-to-action.php:602
245
  #: inc/call-to-action/package/widget-call-to-action.php:74
246
  msgid "Random"
247
  msgstr "ランダム表示"
248
 
249
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:135
250
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:638
251
  #: inc/call-to-action/package/class-veu-metabox-cta.php:45
252
- #: inc/call-to-action/package/class-vk-call-to-action.php:609
253
  msgid "Disable display"
254
  msgstr "表示しない"
255
 
256
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:141
257
  #: inc/call-to-action/package/class-veu-metabox-cta.php:51
258
  msgid "Follow common setting"
259
  msgstr "共通設定を使用"
260
 
261
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:154
262
  #: inc/call-to-action/package/class-veu-metabox-cta.php:62
263
  msgid "CTA common setting"
264
  msgstr "CTA共通設定"
265
 
266
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:155
267
- #: dist/plugins/call-to-action/view-adminsetting.php:31
268
- #: dist/plugins/call-to-action/widget-call-to-action.php:88
269
  #: inc/call-to-action/package/class-veu-metabox-cta.php:63
270
  #: inc/call-to-action/package/view-adminsetting.php:31
271
  #: inc/call-to-action/package/widget-call-to-action.php:88
272
  msgid "Show CTA index page"
273
  msgstr "CTAの一覧を表示"
274
 
275
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  #: inc/call-to-action/package/class-vk-call-to-action.php:268
277
  msgid ""
278
  "You can create it with a free layout in the content field using, such as "
@@ -281,7 +232,7 @@ msgstr ""
281
  "VK Blocks の アウターブロックやPR Content ブロックを使って本文欄に自由なレイ"
282
  "アウトで作成する事もできます。"
283
 
284
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:221
285
  #: inc/call-to-action/package/class-vk-call-to-action.php:269
286
  msgid ""
287
  "If the contents field is entered, the contents of the body will be displayed "
@@ -290,130 +241,127 @@ msgstr ""
290
  "本文欄が入力されている場合は本文の内容が優先して表示されるので以下の内容は無"
291
  "視されます。"
292
 
293
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:222
294
- #, fuzzy
295
- #| msgid ""
296
- #| "The entered contents are displayed directly. You can not use Dynamic "
297
- #| "blocks, reuse blocks, etc."
298
  msgid ""
299
- "The entered contents are displayed directly. You can not use short codes, "
300
  "reuse blocks, etc."
301
  msgstr ""
302
  "入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用でき"
303
  "ません。"
304
 
305
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:226
306
  #: inc/call-to-action/package/class-vk-call-to-action.php:274
307
  msgid "CTA image"
308
  msgstr "CTA画像"
309
 
310
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:232
311
  #: inc/call-to-action/package/class-vk-call-to-action.php:280
312
  msgid "Add image"
313
  msgstr "画像を追加"
314
 
315
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:233
316
  #: inc/call-to-action/package/class-vk-call-to-action.php:281
317
  msgid "Change image"
318
  msgstr "画像を変更"
319
 
320
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:234
321
  #: inc/call-to-action/package/class-vk-call-to-action.php:282
322
  msgid "Remove image"
323
  msgstr "画像を削除"
324
 
325
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:239
326
  #: inc/call-to-action/package/class-vk-call-to-action.php:287
327
  msgid "CTA image position"
328
  msgstr "CTA画像の位置"
329
 
330
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:242
331
  #: inc/call-to-action/package/class-vk-call-to-action.php:290
332
  msgid "right"
333
  msgstr "右寄せ"
334
 
335
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:243
336
  #: inc/call-to-action/package/class-vk-call-to-action.php:291
337
  msgid "center"
338
  msgstr "中央"
339
 
340
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:244
341
  #: inc/call-to-action/package/class-vk-call-to-action.php:292
342
  msgid "left"
343
  msgstr "左寄せ"
344
 
345
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:248
346
  #: inc/call-to-action/package/class-vk-call-to-action.php:296
347
  msgid "Button text"
348
  msgstr "ボタンの表記文言"
349
 
350
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:252
351
  #: inc/call-to-action/package/class-vk-call-to-action.php:300
352
  msgid "Button icon"
353
  msgstr "ボタンアイコン"
354
 
355
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:253
356
- #: dist/plugins/other_widget/widget-button.php:122
357
  #: inc/call-to-action/package/class-vk-call-to-action.php:301
358
- #: inc/other_widget/widget-button.php:122
359
  msgid "To choose your favorite icon, and enter the class."
360
  msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
361
 
362
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:254
363
- #: dist/plugins/other_widget/widget-button.php:123
364
  #: inc/call-to-action/package/class-vk-call-to-action.php:302
365
- #: inc/other_widget/widget-button.php:123
366
  msgid "Before :"
367
  msgstr "文字の前 :"
368
 
369
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:256
370
- #: dist/plugins/other_widget/widget-button.php:125
371
  #: inc/call-to-action/package/class-vk-call-to-action.php:304
372
- #: inc/other_widget/widget-button.php:125
373
  msgid "After :"
374
  msgstr "文字の後 :"
375
 
376
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:268
377
  #: inc/call-to-action/package/class-vk-call-to-action.php:316
378
  msgid "Button link url"
379
  msgstr "ボタンのリンク先URL"
380
 
381
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:281
382
  #: inc/call-to-action/package/class-vk-call-to-action.php:329
383
  msgid "Target window"
384
  msgstr "リンク先ターゲット"
385
 
386
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:283
387
  #: inc/call-to-action/package/class-vk-call-to-action.php:331
388
  msgid "Open in a self window"
389
  msgstr "同じウィンドウで開く"
390
 
391
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:285
392
  #: inc/call-to-action/package/class-vk-call-to-action.php:333
393
  msgid "Text message"
394
  msgstr "テキストメッセージ"
395
 
396
- #: dist/plugins/call-to-action/class-vk-call-to-action.php:291
397
- #: dist/plugins/call-to-action/widget-call-to-action.php:91
398
  #: inc/call-to-action/package/class-vk-call-to-action.php:339
399
  #: inc/call-to-action/package/widget-call-to-action.php:91
400
  msgid "CTA setting"
401
  msgstr "CTA設定"
402
 
403
- #: dist/plugins/call-to-action/view-adminsetting.php:15
404
- #: dist/veu-packages.php:299
405
  #: inc/call-to-action/package/view-adminsetting.php:15 veu-packages.php:259
406
  msgid "Call To Action"
407
  msgstr "Call To Action"
408
 
409
- #: dist/plugins/call-to-action/view-adminsetting.php:19
410
- #: dist/veu-packages.php:291
411
  #: inc/call-to-action/package/view-adminsetting.php:19 veu-packages.php:251
412
  msgid "Display the CTA at the end of the post content."
413
  msgstr "投稿内容の最後にCTAを表示します。"
414
 
415
- #: dist/plugins/call-to-action/view-adminsetting.php:20
416
- #: dist/veu-packages.php:293
417
  #: inc/call-to-action/package/view-adminsetting.php:20 veu-packages.php:253
418
  msgid ""
419
  "The CTA stands for \"Call to action\" and this is the area that prompts the "
@@ -422,8 +370,8 @@ msgstr ""
422
  "CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
423
  "情報を表示します。"
424
 
425
- #: dist/plugins/call-to-action/view-adminsetting.php:21
426
- #: dist/veu-packages.php:295
427
  #: inc/call-to-action/package/view-adminsetting.php:21 veu-packages.php:255
428
  msgid ""
429
  "As an example, text message and a link button for induction to the free "
@@ -432,24 +380,24 @@ msgstr ""
432
  "例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
433
  "ンなどです。"
434
 
435
- #: dist/plugins/call-to-action/view-adminsetting.php:23
436
  #: inc/call-to-action/package/view-adminsetting.php:23
437
  msgid "How to use"
438
  msgstr "使い方"
439
 
440
- #: dist/plugins/call-to-action/view-adminsetting.php:26
441
  #: inc/call-to-action/package/view-adminsetting.php:26
442
  msgid ""
443
  "You register the contents on \"CTA\" that you want to display to bottom of "
444
  "the content."
445
  msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
446
 
447
- #: dist/plugins/call-to-action/view-adminsetting.php:27
448
  #: inc/call-to-action/package/view-adminsetting.php:27
449
  msgid "Choose the CTA to be displayed from the following."
450
  msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
451
 
452
- #: dist/plugins/call-to-action/view-adminsetting.php:28
453
  #: inc/call-to-action/package/view-adminsetting.php:28
454
  msgid ""
455
  "If you want to switch the CTA to be displayed on each post, please set in "
@@ -458,71 +406,70 @@ msgstr ""
458
  "投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してくださ"
459
  "い。"
460
 
461
- #: dist/plugins/call-to-action/view-adminsetting.php:41
462
  #: inc/call-to-action/package/view-adminsetting.php:41
463
  msgid "Show index page"
464
  msgstr "一覧ページを表示する"
465
 
466
- #: dist/plugins/call-to-action/widget-call-to-action.php:20
467
  #: inc/call-to-action/package/widget-call-to-action.php:20
468
  msgid "CTA"
469
  msgstr "CTA"
470
 
471
- #: dist/plugins/call-to-action/widget-call-to-action.php:26
472
  #: inc/call-to-action/package/widget-call-to-action.php:26
473
  msgid "Select CTA and display it."
474
  msgstr "CTAを選択して表示します。"
475
 
476
- #: dist/plugins/call-to-action/widget-call-to-action.php:66
477
  #: inc/call-to-action/package/widget-call-to-action.php:66
478
  msgid "Please select CTA to display."
479
  msgstr "表示するCTAを選択してください。"
480
 
481
- #: dist/plugins/call-to-action/widget-call-to-action.php:80
482
  #: inc/call-to-action/package/widget-call-to-action.php:80
483
  msgid "Please select"
484
  msgstr "選択してください"
485
 
486
- #: dist/plugins/child_page_index.php:79
487
- #: dist/plugins/other_widget/widget-3pr-area.php:198
488
- #: inc/child-page-index.php:79 inc/other_widget/widget-3pr-area.php:198
489
  msgid "Read more"
490
  msgstr "詳しくはこちら"
491
 
492
- #: dist/plugins/child_page_index.php:150
493
- #: dist/plugins/other_widget/widget-page.php:166 inc/child-page-index.php:142
494
- #: inc/other_widget/widget-page.php:166
495
  msgid "Display a child page index"
496
  msgstr "子ページ一覧の表示"
497
 
498
- #: dist/plugins/contact-section/contact-section.php:107
499
- #: dist/plugins/contact-section/contact-section.php:138
500
  #: inc/contact-section/contact-section.php:106
501
  #: inc/contact-section/contact-section.php:137
502
  msgid "Contact Information"
503
  msgstr "お問い合わせ情報"
504
 
505
- #: dist/plugins/contact-section/contact-section.php:117
506
- #: dist/plugins/contact-section/contact-section.php:149
507
- #: dist/plugins/contact-section/customizer.php:53
508
- #: dist/plugins/contact-section/customizer.php:67
509
  #: inc/contact-section/contact-section.php:116
510
  #: inc/contact-section/contact-section.php:148
511
  #: inc/contact-section/customizer.php:53 inc/contact-section/customizer.php:67
512
  msgid "Please feel free to inquire."
513
  msgstr "お気軽にお問い合わせください。"
514
 
515
- #: dist/plugins/contact-section/contact-section.php:120
516
- #: dist/plugins/contact-section/customizer.php:116
517
  #: inc/contact-section/contact-section.php:119
518
  #: inc/contact-section/customizer.php:116
519
  msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
520
  msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
521
 
522
- #: dist/plugins/contact-section/contact-section.php:122
523
- #: dist/plugins/contact-section/contact-section.php:124
524
- #: dist/plugins/contact-section/customizer.php:158
525
- #: dist/plugins/contact-section/customizer.php:200
526
  #: inc/contact-section/contact-section.php:121
527
  #: inc/contact-section/contact-section.php:123
528
  #: inc/contact-section/customizer.php:158
@@ -530,8 +477,8 @@ msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
530
  msgid "Contact us"
531
  msgstr "お問い合わせ"
532
 
533
- #: dist/plugins/contact-section/contact-section.php:140
534
- #: dist/plugins/contact-section/customizer.php:33
535
  #: inc/contact-section/contact-section.php:139
536
  #: inc/contact-section/customizer.php:33
537
  msgid ""
@@ -541,8 +488,8 @@ msgstr ""
541
  "ここに入力された内容が各固定ページ下部や『お問い合わせ情報』ウィジェット、"
542
  "『お問い合わせボタン』ウィジェットなどに反映されます。"
543
 
544
- #: dist/plugins/contact-section/contact-section.php:142
545
- #: dist/plugins/contact-section/customizer.php:35
546
  #: inc/contact-section/contact-section.php:141
547
  #: inc/contact-section/customizer.php:35
548
  msgid ""
@@ -552,29 +499,28 @@ msgstr ""
552
  "固定ページに表示する場合は、各固定ページの編集画面で\"お問い合わせ情報の表示"
553
  "\"にチェックを入れる必要があります。"
554
 
555
- #: dist/plugins/contact-section/contact-section.php:146
556
- #: dist/plugins/contact-section/customizer.php:62
557
  #: inc/contact-section/contact-section.php:145
558
  #: inc/contact-section/customizer.php:62
559
  msgid "Message"
560
  msgstr "メッセージ"
561
 
562
- #: dist/plugins/contact-section/contact-section.php:149
563
- #: dist/plugins/contact-section/contact-section.php:156
564
- #: dist/plugins/contact-section/contact-section.php:163
565
- #: dist/plugins/contact-section/contact-section.php:170
566
- #: dist/plugins/contact-section/contact-section.php:178
567
- #: dist/plugins/contact-section/contact-section.php:186
568
- #: dist/plugins/contact-section/contact-section.php:194
569
- #: dist/plugins/contact-section/customizer.php:67
570
- #: dist/plugins/contact-section/customizer.php:88
571
- #: dist/plugins/contact-section/customizer.php:109
572
- #: dist/plugins/contact-section/customizer.php:130
573
- #: dist/plugins/contact-section/customizer.php:151
574
- #: dist/plugins/contact-section/customizer.php:172
575
- #: dist/plugins/contact-section/customizer.php:193
576
- #: dist/plugins/google_analytics/ga_admin.php:16
577
- #: dist/plugins/sns/sns_admin.php:38
578
  #: inc/contact-section/contact-section.php:148
579
  #: inc/contact-section/contact-section.php:155
580
  #: inc/contact-section/contact-section.php:162
@@ -592,24 +538,24 @@ msgstr "メッセージ"
592
  msgid "ex) "
593
  msgstr "例) "
594
 
595
- #: dist/plugins/contact-section/contact-section.php:153
596
- #: dist/plugins/contact-section/customizer.php:83
597
  #: inc/contact-section/contact-section.php:152
598
  #: inc/contact-section/customizer.php:83
599
  msgid "Phone number"
600
  msgstr "電話番号"
601
 
602
- #: dist/plugins/contact-section/contact-section.php:160
603
- #: dist/plugins/contact-section/customizer.php:104
604
  #: inc/contact-section/contact-section.php:159
605
  #: inc/contact-section/customizer.php:104
606
  msgid "Phone icon"
607
  msgstr "電話アイコン"
608
 
609
- #: dist/plugins/contact-section/contact-section.php:167
610
- #: dist/plugins/contact-section/contact-section.php:170
611
- #: dist/plugins/contact-section/customizer.php:125
612
- #: dist/plugins/contact-section/customizer.php:130
613
  #: inc/contact-section/contact-section.php:166
614
  #: inc/contact-section/contact-section.php:169
615
  #: inc/contact-section/customizer.php:125
@@ -617,71 +563,71 @@ msgstr "電話アイコン"
617
  msgid "Office hours"
618
  msgstr "営業時間"
619
 
620
- #: dist/plugins/contact-section/contact-section.php:170
621
- #: dist/plugins/contact-section/customizer.php:130
622
  #: inc/contact-section/contact-section.php:169
623
  #: inc/contact-section/customizer.php:130
624
  msgid "Weekdays except holidays"
625
  msgstr "土日・祝日除く"
626
 
627
- #: dist/plugins/contact-section/contact-section.php:175
628
- #: dist/plugins/contact-section/customizer.php:146
629
  #: inc/contact-section/contact-section.php:174
630
  #: inc/contact-section/customizer.php:146
631
  msgid "The contact page URL"
632
  msgstr "お問い合わせ先URL"
633
 
634
- #: dist/plugins/contact-section/contact-section.php:178
635
- #: dist/plugins/contact-section/customizer.php:151
636
  #: inc/contact-section/contact-section.php:177
637
  #: inc/contact-section/customizer.php:151
638
  msgid "or"
639
  msgstr "もしくは"
640
 
641
- #: dist/plugins/contact-section/contact-section.php:179
642
- #: dist/plugins/contact-section/customizer.php:151
643
  #: inc/contact-section/contact-section.php:178
644
  #: inc/contact-section/customizer.php:151
645
  msgid "* If you fill in the blank, widget's contact button does not appear."
646
  msgstr "※ 未入力の場合、お問い合わせウィジェットには何も表示されません。"
647
 
648
- #: dist/plugins/contact-section/contact-section.php:183
649
- #: dist/plugins/contact-section/customizer.php:167
650
  #: inc/contact-section/contact-section.php:182
651
  #: inc/contact-section/customizer.php:167
652
  msgid "Contact button Text"
653
  msgstr "お問い合わせボタンに表示するテキスト"
654
 
655
- #: dist/plugins/contact-section/contact-section.php:186
656
- #: dist/plugins/contact-section/customizer.php:172
657
  #: inc/contact-section/contact-section.php:185
658
  #: inc/contact-section/customizer.php:172
659
  msgid "Contact Us from email."
660
  msgstr "メールでのお問い合わせはこちら"
661
 
662
- #: dist/plugins/contact-section/contact-section.php:191
663
- #: dist/plugins/contact-section/customizer.php:188
664
  #: inc/contact-section/contact-section.php:190
665
  #: inc/contact-section/customizer.php:188
666
  msgid "Contact button text( sub )"
667
  msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
668
 
669
- #: dist/plugins/contact-section/contact-section.php:195
670
- #: dist/plugins/contact-section/customizer.php:193
671
  #: inc/contact-section/contact-section.php:194
672
  #: inc/contact-section/customizer.php:193
673
  msgid "Email contact form"
674
  msgstr "お気軽にお問い合わせください。"
675
 
676
- #: dist/plugins/contact-section/contact-section.php:200
677
- #: dist/plugins/contact-section/customizer.php:209
678
  #: inc/contact-section/contact-section.php:199
679
  #: inc/contact-section/customizer.php:209
680
  msgid "Contact button short text for side widget"
681
  msgstr "お問い合わせボタンウィジェットに表示するテキスト"
682
 
683
- #: dist/plugins/contact-section/contact-section.php:204
684
- #: dist/plugins/contact-section/customizer.php:214
685
  #: inc/contact-section/contact-section.php:203
686
  #: inc/contact-section/customizer.php:214
687
  msgid "This will used to \"Contact Button\" widget."
@@ -689,73 +635,73 @@ msgstr ""
689
  "このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの利"
690
  "用を想定していますので少ない文字数で設定してください。"
691
 
692
- #: dist/plugins/contact-section/contact-section.php:208
693
  #: inc/contact-section/contact-section.php:207
694
  msgid "Advanced Setting"
695
  msgstr "高度な設定"
696
 
697
- #: dist/plugins/contact-section/contact-section.php:217
698
- #: dist/plugins/contact-section/customizer.php:238
699
  #: inc/contact-section/contact-section.php:216
700
  #: inc/contact-section/customizer.php:238
701
  msgid "Inquiry Banner image"
702
  msgstr "お問い合わせバナー画像"
703
 
704
- #: dist/plugins/contact-section/contact-section.php:219
705
  #: inc/contact-section/contact-section.php:218
706
  msgid "Select Image"
707
  msgstr "画像を選択"
708
 
709
- #: dist/plugins/contact-section/contact-section.php:220
710
- #: dist/plugins/contact-section/customizer.php:228
711
  #: inc/contact-section/contact-section.php:219
712
  #: inc/contact-section/customizer.php:228
713
  msgid "Display the image instead of the above inquiry information"
714
  msgstr ""
715
  "画像が登録されている場合は標準のお問い合わせ情報ではなく画像が表示されます。"
716
 
717
- #: dist/plugins/contact-section/contact-section.php:224
718
- #: dist/plugins/contact-section/customizer.php:264
719
  #: inc/contact-section/contact-section.php:223
720
  #: inc/contact-section/customizer.php:264
721
  msgid "Display HTML message instead of the standard"
722
  msgstr "お問い合わせ情報として表示するHTML"
723
 
724
- #: dist/plugins/contact-section/contact-section.php:226
725
- #: dist/plugins/contact-section/customizer.php:257
726
  #: inc/contact-section/contact-section.php:225
727
  #: inc/contact-section/customizer.php:257
728
  msgid "HTML takes precedence over image"
729
  msgstr "HTMLが登録されている場合は画像より優先されます。"
730
 
731
- #: dist/plugins/contact-section/contact-section.php:248
732
  #: inc/contact-section/contact-section.php:247
733
  msgid "Display Contact Section"
734
  msgstr "お問い合わせ情報の表示"
735
 
736
- #: dist/plugins/contact-section/contact-section.php:388
737
- #: dist/plugins/contact-section/contact-section.php:441
738
- #: inc/contact-section/contact-section.php:387
739
- #: inc/contact-section/contact-section.php:440
740
  msgid "Edit contact information"
741
  msgstr "Contact情報を編集"
742
 
743
- #: dist/plugins/contact-section/contact-section.php:457
744
- #: inc/contact-section/contact-section.php:456
745
  msgid "Contact Button"
746
  msgstr "お問い合わせボタン"
747
 
748
- #: dist/plugins/contact-section/contact-section.php:458
749
- #: inc/contact-section/contact-section.php:457
750
  msgid "Display contact button."
751
  msgstr "お問い合わせボタンを表示します。"
752
 
753
- #: dist/plugins/contact-section/contact-section.php:459
754
- #: dist/plugins/contact-section/contact-section.php:487
755
- #: dist/plugins/contact-section/contact-section.php:509
756
- #: inc/contact-section/contact-section.php:458
757
- #: inc/contact-section/contact-section.php:486
758
- #: inc/contact-section/contact-section.php:508
759
  #, php-format
760
  msgid ""
761
  "It is necessary to set the \"%s\" -> \"Contact Information\" section in "
@@ -763,24 +709,23 @@ msgid ""
763
  msgstr ""
764
  "「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要があります。"
765
 
766
- #: dist/plugins/contact-section/contact-section.php:486
767
- #: inc/contact-section/contact-section.php:485
768
  msgid "Display contact button"
769
  msgstr "お問い合わせボタンを表示します。"
770
 
771
- #: dist/plugins/contact-section/contact-section.php:507
772
- #: dist/veu-packages.php:264 inc/contact-section/contact-section.php:506
773
- #: veu-packages.php:224
774
  msgid "Contact Section"
775
  msgstr "お問い合わせ情報"
776
 
777
- #: dist/plugins/contact-section/contact-section.php:508
778
- #: inc/contact-section/contact-section.php:507
779
  msgid "Display Phone number and contact button etc."
780
  msgstr "電話番号とお問い合わせボタンなどを表示します。"
781
 
782
- #: dist/plugins/contact-section/contact-section.php:537
783
- #: inc/contact-section/contact-section.php:536
784
  #, php-format
785
  msgid ""
786
  "*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
@@ -789,22 +734,27 @@ msgstr ""
789
  "* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
790
  "す。"
791
 
792
- #: dist/plugins/contact-section/customizer.php:23
793
  #: inc/contact-section/customizer.php:23
794
  msgid "Contact Settings"
795
  msgstr "お問い合わせ情報"
796
 
797
- #: dist/plugins/contact-section/customizer.php:231
798
- #: dist/plugins/contact-section/customizer.php:260
799
  #: inc/contact-section/customizer.php:231
800
  #: inc/contact-section/customizer.php:260
801
  msgid "It is not reflected in the header."
802
  msgstr "ヘッダーには反映されません。"
803
 
804
- #: dist/plugins/css_customize/css_customize-edit.php:2
805
- #: dist/plugins/css_customize/css_customize.php:30
806
- #: dist/plugins/css_customize/css_customize.php:44
807
- #: dist/plugins/css_customize/css_customize.php:45
 
 
 
 
 
808
  #: inc/css-customize/css-customize-edit.php:2
809
  #: inc/css-customize/css-customize.php:43
810
  #: inc/css-customize/css-customize.php:57
@@ -812,61 +762,56 @@ msgstr "ヘッダーには反映されません。"
812
  msgid "CSS Customize"
813
  msgstr "CSSカスタマイズ"
814
 
815
- #: dist/plugins/css_customize/css_customize-edit.php:5
816
  #: inc/css-customize/css-customize-edit.php:5
817
  msgid "You can add custom CSS here."
818
  msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
819
 
820
- #: dist/plugins/css_customize/css_customize-edit.php:13
821
  #: inc/css-customize/css-customize-edit.php:13
822
  msgid "Save CSS"
823
  msgstr "CSSを保存する"
824
 
825
- #: dist/plugins/css_customize/css_customize-single.php:22
826
- #: inc/css-customize/class-veu-metabox-css-customize.php:14
827
- msgid "Custom CSS"
828
- msgstr "カスタムCSS"
829
-
830
- #: dist/plugins/css_customize/css_customize.php:100
831
  #: inc/css-customize/css-customize.php:113
832
  msgid "Your custom CSS was saved."
833
  msgstr "CSSが保存されました"
834
 
835
- #: dist/plugins/css_customize/css_customize.php:103
836
  #: inc/css-customize/css-customize.php:116
837
  msgid "Error occured. Please try again."
838
  msgstr "何らかのエラー!! また試してみてください"
839
 
840
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:22
841
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:37
842
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:22
843
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:37
844
  msgid "Not recommended"
845
  msgstr "非推奨"
846
 
847
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:69
848
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:71
849
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:69
850
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:71
851
  msgid "Ex ) "
852
  msgstr "例 ) "
853
 
854
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:169
855
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:169
856
  msgid "Font Awesome"
857
  msgstr "Font Awesome"
858
 
859
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:190
860
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:190
861
  msgid "Font Awesome Version"
862
  msgstr "Font Awesome Version"
863
 
864
- #: dist/plugins/font-awesome/class-vk-font-awesome-versions.php:193
865
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:193
866
  msgid "4.7 will be abolished in the near future."
867
  msgstr "4.7は将来的に廃止します。"
868
 
869
- #: dist/plugins/footer_copyright_change.php:6 inc/footer-copyright-change.php:6
870
  msgid ""
871
  "<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
872
  "\"https://lightning.nagoya\" target=\"_blank\" title=\"Free WordPress Theme "
@@ -880,22 +825,22 @@ msgstr ""
880
  "nagoya/ja/\" target=\"_blank\">VK All in One Expansion Unit</a> by <a href="
881
  "\"//www.vektor-inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
882
 
883
- #: dist/plugins/google_analytics/ga_admin.php:9
884
- #: dist/plugins/google_analytics/ga_admin.php:13
885
- #: dist/plugins/google_analytics/google_analytics.php:23
886
  #: inc/google_analytics/ga_admin.php:9 inc/google_analytics/ga_admin.php:13
887
  #: inc/google_analytics/google_analytics.php:23
888
  msgid "Google Analytics Settings"
889
  msgstr "Google Analytics設定"
890
 
891
- #: dist/plugins/google_analytics/ga_admin.php:14
892
  #: inc/google_analytics/ga_admin.php:14
893
  msgid ""
894
  "Please fill in the Google Analytics ID from the Analytics embed code used in "
895
  "the site."
896
  msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
897
 
898
- #: dist/plugins/google_analytics/ga_admin.php:19
899
  #: inc/google_analytics/ga_admin.php:19
900
  msgid ""
901
  "Please select the type of Analytics code . (If you are unsure you can skip "
@@ -904,38 +849,38 @@ msgstr ""
904
  "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
905
  "す )"
906
 
907
- #: dist/plugins/google_analytics/ga_admin.php:23
908
- #: dist/plugins/google_analytics/ga_customizer.php:74
909
  #: inc/google_analytics/ga_admin.php:23
910
  #: inc/google_analytics/ga_customizer.php:74
911
  msgid "Recommendation ( gtag )"
912
  msgstr "推奨 ( gtag )"
913
 
914
- #: dist/plugins/google_analytics/ga_admin.php:24
915
- #: dist/plugins/google_analytics/ga_customizer.php:75
916
  #: inc/google_analytics/ga_admin.php:24
917
  #: inc/google_analytics/ga_customizer.php:75
918
  msgid "Universal Analytics code ( analytics.js )"
919
  msgstr "ユニバーサル アナリティクスのコード ( analytics.js )"
920
 
921
- #: dist/plugins/google_analytics/ga_admin.php:25
922
- #: dist/plugins/google_analytics/ga_customizer.php:76
923
  #: inc/google_analytics/ga_admin.php:25
924
  #: inc/google_analytics/ga_customizer.php:76
925
  msgid "Normal code ( analytics.js )"
926
  msgstr "ノーマルのコード ( analytics.js )"
927
 
928
- #: dist/plugins/google_analytics/ga_customizer.php:24
929
  #: inc/google_analytics/ga_customizer.php:24
930
  msgid "Google Analtics Settings"
931
  msgstr "Google Analytics設定"
932
 
933
- #: dist/plugins/google_analytics/ga_customizer.php:45
934
  #: inc/google_analytics/ga_customizer.php:45
935
  msgid "Google Analytics ID"
936
  msgstr "Google Analyticsの ID"
937
 
938
- #: dist/plugins/google_analytics/ga_customizer.php:49
939
  #: inc/google_analytics/ga_customizer.php:49
940
  msgid ""
941
  "Please fill in the Google Analytics ID from the Analytics embed code used in "
@@ -944,12 +889,12 @@ msgstr ""
944
  "このサイトで使用する Google アナリティクスの ID を入力して下さい。<br>例) "
945
  "XXXXXXXX-X"
946
 
947
- #: dist/plugins/google_analytics/ga_customizer.php:68
948
  #: inc/google_analytics/ga_customizer.php:68
949
  msgid "Select the type of Analytics code"
950
  msgstr "アナリティクスコードの種類を選択"
951
 
952
- #: dist/plugins/google_analytics/ga_customizer.php:78
953
  #: inc/google_analytics/ga_customizer.php:78
954
  msgid ""
955
  "Print the select the type of Analytics code.<br>(If you are unsure you can "
@@ -958,12 +903,12 @@ msgstr ""
958
  "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
959
  "す。)"
960
 
961
- #: dist/plugins/icons.php:38 dist/plugins/icons.php:68 inc/icons.php:38
962
  #: inc/icons.php:68
963
  msgid "icon setting"
964
  msgstr "アイコン設定"
965
 
966
- #: dist/plugins/icons.php:74 inc/icons.php:74
967
  #, php-format
968
  msgid ""
969
  "This feature will be discontinued shortly.<br>You can set the site icon from "
@@ -974,62 +919,62 @@ msgstr ""
974
  "サイトアイコンは「<a href=%s>外観 > カスタマイズ</a>」の「サイト基本情報」パ"
975
  "ネルから設定できます。"
976
 
977
- #: dist/plugins/icons.php:81 inc/icons.php:81
978
  msgid "Favicon Setting"
979
  msgstr "ファビコン設定"
980
 
981
- #: dist/plugins/icons.php:83 inc/icons.php:83
982
  msgid "Choose icon"
983
  msgstr "アイコンを選択"
984
 
985
- #: dist/plugins/icons.php:84 inc/icons.php:84
986
  msgid "Please upload your \".ico\" file"
987
  msgstr "作成したicoファイルをアップロードしてください"
988
 
989
- #: dist/plugins/insert_ads.php:38 dist/plugins/insert_ads.php:218
990
- #: dist/veu-packages.php:322 inc/insert-ads.php:38 inc/insert-ads.php:218
991
  #: veu-packages.php:282
992
  msgid "Insert ads"
993
  msgstr "広告の挿入"
994
 
995
- #: dist/plugins/insert_ads.php:228 inc/insert-ads.php:228
996
  msgid "Google Auto ads"
997
  msgstr "Google自動広告"
998
 
999
- #: dist/plugins/insert_ads.php:233 inc/insert-ads.php:233
1000
  msgid "About Google Auto ads"
1001
  msgstr "Google自動広告について"
1002
 
1003
- #: dist/plugins/insert_ads.php:236 inc/insert-ads.php:236
1004
  msgid ""
1005
  "If you would like to set to Google Auto ads,Please fill in Publisher ID."
1006
  msgstr ""
1007
  "Google自動広告を設定する場合はチェックを入れて、サイト運営者IDを入力してくだ"
1008
  "さい。"
1009
 
1010
- #: dist/plugins/insert_ads.php:238 inc/insert-ads.php:238
1011
  msgid "Enable Google Auto ads"
1012
  msgstr "Google自動広告を有効にする"
1013
 
1014
- #: dist/plugins/insert_ads.php:240 inc/insert-ads.php:240
1015
  msgid "Publisher ID"
1016
  msgstr "サイト運営者ID"
1017
 
1018
- #: dist/plugins/insert_ads.php:244 inc/insert-ads.php:244
1019
  msgid "Google AdSense dashboard"
1020
  msgstr "Google AdSense 管理画面"
1021
 
1022
- #: dist/plugins/insert_ads.php:246 inc/insert-ads.php:246
1023
  #, php-format
1024
  msgid ""
1025
  "Publisher ID is you can investigate from the %s > Account information page."
1026
  msgstr "サイト運営者IDは %s > アカウント情報 から確認できます。"
1027
 
1028
- #: dist/plugins/insert_ads.php:249 inc/insert-ads.php:249
1029
  msgid "Designate anchor ads at the bottom."
1030
  msgstr "アンカー広告を下部に指定する"
1031
 
1032
- #: dist/plugins/insert_ads.php:251 inc/insert-ads.php:251
1033
  msgid ""
1034
  "The layout may collapse by inserting Google Auto ads, but the correspondence "
1035
  "varies depending on the kind, specification, theme etc. of advertisement, so "
@@ -1040,37 +985,37 @@ msgstr ""
1040
  "中のテーマなどにより対応は様々ですので、表示崩れについては各自必要に応じてCSS"
1041
  "を書いて修正してください。"
1042
 
1043
- #: dist/plugins/insert_ads.php:259 inc/insert-ads.php:259
1044
  msgid "Insert ads to post."
1045
  msgstr "投稿に広告を挿入"
1046
 
1047
- #: dist/plugins/insert_ads.php:261 inc/insert-ads.php:261
1048
  msgid "Insert ads to before content and more tag and after content."
1049
  msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
1050
 
1051
- #: dist/plugins/insert_ads.php:261 inc/insert-ads.php:261
1052
  msgid "If you want to separate ads area, you fill two fields."
1053
  msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
1054
 
1055
- #: dist/plugins/insert_ads.php:263 inc/insert-ads.php:263
1056
  msgid "insert the ad [ before content ]"
1057
  msgstr "広告を挿入 [ 記事の最初 ]"
1058
 
1059
- #: dist/plugins/insert_ads.php:271 inc/insert-ads.php:271
1060
  msgid "insert the ad [ more tag ]"
1061
  msgstr "広告を挿入 [ moreタグ ]"
1062
 
1063
- #: dist/plugins/insert_ads.php:279 inc/insert-ads.php:279
1064
  msgid "insert the ad [ after content ]"
1065
  msgstr "広告を挿入 [ 記事の最後 ]"
1066
 
1067
- #: dist/plugins/meta_description.php:20 dist/plugins/meta_description.php:31
1068
- #: dist/plugins/meta_description.php:34 inc/meta-description.php:20
1069
  #: inc/meta-description.php:31 inc/meta-description.php:34
1070
  msgid "Meta Description"
1071
  msgstr "メタディスクリプション"
1072
 
1073
- #: dist/plugins/meta_description.php:37 inc/meta-description.php:37
1074
  msgid ""
1075
  "What you have to complete the \"excerpt\" column of the edit screen of each "
1076
  "page will be reflected in the description of the meta tag."
@@ -1078,7 +1023,7 @@ msgstr ""
1078
  "各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
1079
  "反映されます"
1080
 
1081
- #: dist/plugins/meta_description.php:38 inc/meta-description.php:38
1082
  msgid ""
1083
  "Description of meta tags in the search results screen of search sites such "
1084
  "as Google, will be Displayed, such as the bottom of the site title. If the "
@@ -1089,7 +1034,7 @@ msgstr ""
1089
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
1090
  "内容が反映されます。"
1091
 
1092
- #: dist/plugins/meta_description.php:39 inc/meta-description.php:39
1093
  msgid ""
1094
  "The meta description of the top page is subject to the catchphrase of the "
1095
  "site. However, its contents will be reflected if the excerpt is entered in "
@@ -1099,7 +1044,7 @@ msgstr ""
1099
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
1100
  "内容が反映されます。"
1101
 
1102
- #: dist/plugins/meta_description.php:40 inc/meta-description.php:40
1103
  msgid ""
1104
  "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
1105
  "each article edit page, and check the expert column display."
@@ -1108,23 +1053,38 @@ msgstr ""
1108
  "ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
1109
  "で、チェックして下さい。"
1110
 
1111
- #: dist/plugins/meta_keyword.php:40 dist/plugins/meta_keyword.php:91
1112
- #: dist/plugins/meta_keyword.php:93 dist/plugins/meta_keyword.php:94
1113
- #: dist/plugins/meta_keyword.php:101
1114
  #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:14
1115
  #: inc/meta-keyword/meta-keyword.php:51
1116
  msgid "Meta Keywords"
1117
  msgstr "メタキーワード"
1118
 
1119
- #: dist/plugins/meta_keyword.php:68 inc/meta-keyword/meta-keyword.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1120
  msgid "Meta Keyword"
1121
  msgstr "メタキーワード"
1122
 
1123
- #: dist/plugins/meta_keyword.php:71 inc/meta-keyword/meta-keyword.php:82
 
1124
  msgid "Common Keywords"
1125
  msgstr "共通キーワード設定"
1126
 
1127
- #: dist/plugins/meta_keyword.php:72 inc/meta-keyword/meta-keyword.php:83
 
1128
  msgid ""
1129
  "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
1130
  "if you want multiple keywords, enter with separator of \",\"."
@@ -1132,13 +1092,15 @@ msgstr ""
1132
  "メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
1133
  "のキーワードを設定します。複数ある場合は「,」で区切ってください。"
1134
 
1135
- #: dist/plugins/meta_keyword.php:75 inc/meta-keyword/meta-keyword.php:86
 
1136
  msgid "This is not seriously, Because the SearchEngine does not care this."
1137
  msgstr ""
1138
  "あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
1139
  "クターとはなりません。"
1140
 
1141
- #: dist/plugins/meta_keyword.php:76 inc/meta-keyword/meta-keyword.php:87
 
1142
  msgid ""
1143
  "For each page individual keyword is enter at the edit screen of each "
1144
  "article. 10 keywords maximum, together with a each article keywords is "
@@ -1147,145 +1109,143 @@ msgstr ""
1147
  "個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
1148
  "ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
1149
 
1150
- #: dist/plugins/meta_keyword.php:77 inc/meta-keyword/meta-keyword.php:88
 
1151
  msgid "\",\" separator at end of the last keyword is do not need."
1152
  msgstr "最後のキーワードの後ろに「,」は必要ありません。"
1153
 
1154
- #: dist/plugins/meta_keyword.php:78 inc/meta-keyword/meta-keyword.php:89
 
1155
  msgid "Example: WordPress,template,theme,free,GPL"
1156
  msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
1157
 
1158
- #: dist/plugins/meta_keyword.php:102
1159
- #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:34
1160
- msgid ""
1161
- "To distinguish between individual keywords, please enter a , delimiter "
1162
- "(optional)."
1163
- msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
1164
 
1165
- #: dist/plugins/meta_keyword.php:104
1166
- #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:35
1167
- #, php-format
1168
- msgid "* keywords common to the entire site can be set from %s."
1169
- msgstr "サイト全体のキーワードは %s より設定することができます。"
1170
 
1171
- #: dist/plugins/other_widget/widget-3pr-area.php:9
1172
- #: dist/plugins/other_widget/widget-3pr-area.php:161
1173
- #: inc/other_widget/widget-3pr-area.php:9
1174
- #: inc/other_widget/widget-3pr-area.php:161
1175
  msgid "3PR area"
1176
  msgstr "3PR エリア"
1177
 
1178
- #: dist/plugins/other_widget/widget-3pr-area.php:14
1179
- #: inc/other_widget/widget-3pr-area.php:14
1180
  msgid "Displays a 3PR area"
1181
  msgstr "3PR エリアを表示します。"
1182
 
1183
- #: dist/plugins/other_widget/widget-3pr-area.php:20
1184
- #: inc/other_widget/widget-3pr-area.php:20
1185
  msgid "3PR area1 title"
1186
  msgstr "3PR エリア1 タイトル"
1187
 
1188
- #: dist/plugins/other_widget/widget-3pr-area.php:28
1189
- #: inc/other_widget/widget-3pr-area.php:28
1190
  msgid "3PR area2 title"
1191
  msgstr "3PR エリア2 タイトル"
1192
 
1193
- #: dist/plugins/other_widget/widget-3pr-area.php:36
1194
- #: inc/other_widget/widget-3pr-area.php:36
1195
  msgid "3PR area3 title"
1196
  msgstr "3PR エリア3 タイトル"
1197
 
1198
- #: dist/plugins/other_widget/widget-3pr-area.php:54
1199
- #: inc/other_widget/widget-3pr-area.php:54
1200
  msgid "3PR area setting"
1201
  msgstr "3PR エリア設定"
1202
 
1203
- #: dist/plugins/other_widget/widget-3pr-area.php:56
1204
- #: dist/plugins/other_widget/widget-new-posts.php:243
1205
- #: dist/plugins/other_widget/widget-page.php:126
1206
- #: dist/plugins/other_widget/widget-pr-blocks.php:111
1207
- #: dist/plugins/other_widget/widget-profile.php:55
1208
- #: dist/plugins/related_posts/related_posts.php:261
1209
- #: dist/plugins/sns/widget-fb-page-plugin.php:79
1210
- #: dist/plugins/sns/widget-twitter.php:84
1211
- #: inc/other_widget/widget-3pr-area.php:56
1212
- #: inc/other_widget/widget-new-posts.php:243
1213
- #: inc/other_widget/widget-page.php:126
1214
- #: inc/other_widget/widget-pr-blocks.php:111
1215
- #: inc/other_widget/widget-profile.php:55
1216
  #: inc/related_posts/related_posts.php:261 inc/sns/widget-fb-page-plugin.php:79
1217
  #: inc/sns/widget-twitter.php:84
1218
  msgid "Title:"
1219
  msgstr "タイトル"
1220
 
1221
- #: dist/plugins/other_widget/widget-3pr-area.php:62
1222
- #: inc/other_widget/widget-3pr-area.php:62
1223
  msgid "Select image for PC:"
1224
  msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
1225
 
1226
- #: dist/plugins/other_widget/widget-3pr-area.php:72
1227
- #: dist/plugins/other_widget/widget-3pr-area.php:90
1228
- #: dist/plugins/other_widget/widget-new-posts.php:290
1229
- #: dist/plugins/other_widget/widget-pr-blocks.php:174
1230
- #: dist/plugins/other_widget/widget-profile.php:70
1231
- #: inc/other_widget/widget-3pr-area.php:72
1232
- #: inc/other_widget/widget-3pr-area.php:90
1233
- #: inc/other_widget/widget-new-posts.php:290
1234
- #: inc/other_widget/widget-pr-blocks.php:174
1235
- #: inc/other_widget/widget-profile.php:70
1236
  msgid "Select image"
1237
  msgstr "画像を選択"
1238
 
1239
- #: dist/plugins/other_widget/widget-3pr-area.php:73
1240
- #: dist/plugins/other_widget/widget-3pr-area.php:91
1241
- #: dist/plugins/other_widget/widget-new-posts.php:291
1242
- #: dist/plugins/other_widget/widget-pr-blocks.php:175
1243
- #: dist/plugins/other_widget/widget-profile.php:71
1244
- #: inc/other_widget/widget-3pr-area.php:73
1245
- #: inc/other_widget/widget-3pr-area.php:91
1246
- #: inc/other_widget/widget-new-posts.php:291
1247
- #: inc/other_widget/widget-pr-blocks.php:175
1248
- #: inc/other_widget/widget-profile.php:71
1249
  msgid "Clear image"
1250
  msgstr "画像クリア"
1251
 
1252
- #: dist/plugins/other_widget/widget-3pr-area.php:80
1253
- #: inc/other_widget/widget-3pr-area.php:80
1254
  msgid "Select image for Mobile:"
1255
  msgstr ""
1256
  "スマホ用(ウィンドウサイズが 768px 以下の場合)に表示される画像を選択(橫 "
1257
  "690px 以上推奨。空欄も可)"
1258
 
1259
- #: dist/plugins/other_widget/widget-3pr-area.php:102
1260
- #: dist/plugins/other_widget/widget-pr-blocks.php:115
1261
- #: inc/other_widget/widget-3pr-area.php:102
1262
- #: inc/other_widget/widget-pr-blocks.php:115
1263
  msgid "Summary Text:"
1264
  msgstr "概要となるテキスト"
1265
 
1266
- #: dist/plugins/other_widget/widget-3pr-area.php:108
1267
- #: dist/plugins/other_widget/widget-pr-blocks.php:120
1268
- #: inc/other_widget/widget-3pr-area.php:108
1269
- #: inc/other_widget/widget-pr-blocks.php:120
1270
  msgid "Link URL:"
1271
  msgstr "リンク先ページのURL"
1272
 
1273
- #: dist/plugins/other_widget/widget-3pr-area.php:116
1274
- #: dist/plugins/other_widget/widget-banner.php:106
1275
- #: dist/plugins/other_widget/widget-pr-blocks.php:124
1276
- #: inc/other_widget/widget-3pr-area.php:116
1277
- #: inc/other_widget/widget-banner.php:106
1278
- #: inc/other_widget/widget-pr-blocks.php:124
1279
  msgid "Open link new tab."
1280
  msgstr "リンクを別ウィンドウで開く"
1281
 
1282
- #: dist/plugins/other_widget/widget-archives.php:9 dist/veu-packages.php:200
1283
- #: inc/other_widget/widget-archives.php:9 veu-packages.php:160
1284
  msgid "archive list"
1285
  msgstr "アーカイブリスト"
1286
 
1287
- #: dist/plugins/other_widget/widget-archives.php:14 dist/veu-packages.php:200
1288
- #: inc/other_widget/widget-archives.php:14 veu-packages.php:160
1289
  msgid ""
1290
  "Displays a list of archives. You can choose the post type and also to "
1291
  "display archives by month or by year."
@@ -1293,349 +1253,345 @@ msgstr ""
1293
  "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
1294
  "プを選択できます。"
1295
 
1296
- #: dist/plugins/other_widget/widget-archives.php:53
1297
- #: dist/plugins/other_widget/widget-archives.php:54
1298
- #: inc/other_widget/widget-archives.php:53
1299
- #: inc/other_widget/widget-archives.php:54
1300
  msgid "Monthly archives"
1301
  msgstr "月別アーカイブ"
1302
 
1303
- #: dist/plugins/other_widget/widget-archives.php:68
1304
- #: dist/plugins/other_widget/widget-new-posts.php:261
1305
- #: dist/plugins/other_widget/widget-new-posts.php:268
1306
- #: inc/other_widget/widget-archives.php:68
1307
- #: inc/other_widget/widget-new-posts.php:261
1308
- #: inc/other_widget/widget-new-posts.php:268
1309
  msgid "Title"
1310
  msgstr "タイトル"
1311
 
1312
- #: dist/plugins/other_widget/widget-archives.php:72
1313
- #: inc/other_widget/widget-archives.php:72
1314
  msgid "Post type"
1315
  msgstr "ポストタイプ"
1316
 
1317
- #: dist/plugins/other_widget/widget-archives.php:92
1318
- #: inc/other_widget/widget-archives.php:92
1319
  msgid "Monthly"
1320
  msgstr "月別"
1321
 
1322
- #: dist/plugins/other_widget/widget-archives.php:99
1323
- #: inc/other_widget/widget-archives.php:99
1324
  msgid "Yearly"
1325
  msgstr "年別"
1326
 
1327
- #: dist/plugins/other_widget/widget-archives.php:117
1328
- #: inc/other_widget/widget-archives.php:117
1329
  msgid "archive"
1330
  msgstr "アーカイブ"
1331
 
1332
- #: dist/plugins/other_widget/widget-banner.php:15
1333
- #: inc/other_widget/widget-banner.php:15
1334
  msgid "Banner"
1335
  msgstr "バナー"
1336
 
1337
- #: dist/plugins/other_widget/widget-banner.php:21
1338
- #: inc/other_widget/widget-banner.php:21
1339
  msgid ""
1340
  "You can easily set up a banner simply by registering images and link "
1341
  "destinations."
1342
  msgstr "画像とリンク先を登録するだけで簡単にバナーを設定できます。"
1343
 
1344
- #: dist/plugins/other_widget/widget-banner.php:97
1345
- #: inc/other_widget/widget-banner.php:97
1346
  msgid "Set image"
1347
  msgstr "画像を選択"
1348
 
1349
- #: dist/plugins/other_widget/widget-banner.php:107
1350
- #: inc/other_widget/widget-banner.php:107
1351
  msgid "Alternative text"
1352
  msgstr "代替テキスト(alt)"
1353
 
1354
- #: dist/plugins/other_widget/widget-button.php:32
1355
- #: inc/other_widget/widget-button.php:32
1356
  msgid "Button"
1357
  msgstr "ボタン"
1358
 
1359
- #: dist/plugins/other_widget/widget-button.php:37
1360
- #: inc/other_widget/widget-button.php:37
1361
  msgid "You can set buttons for arbitrary text."
1362
  msgstr "任意のテキストのボタンを設定できます。"
1363
 
1364
- #: dist/plugins/other_widget/widget-button.php:116
1365
- #: inc/other_widget/widget-button.php:116
1366
  msgid "Main text(Required):"
1367
  msgstr "ボタンテキスト(必須):"
1368
 
1369
- #: dist/plugins/other_widget/widget-button.php:121
1370
- #: inc/other_widget/widget-button.php:121
1371
  msgid "Class name of the icon font"
1372
  msgstr "使用したいアイコンフォント"
1373
 
1374
- #: dist/plugins/other_widget/widget-button.php:134
1375
- #: inc/other_widget/widget-button.php:134
1376
  msgid "Sub text:"
1377
  msgstr "サブテキスト:"
1378
 
1379
- #: dist/plugins/other_widget/widget-button.php:138
1380
- #: inc/other_widget/widget-button.php:138
1381
  msgid "Link URL(Required):"
1382
  msgstr "リンク先ページのURL(必須):"
1383
 
1384
- #: dist/plugins/other_widget/widget-button.php:148
1385
- #: inc/other_widget/widget-button.php:148
1386
  msgid "Open with new tab"
1387
  msgstr "リンクを別ウィンドウで開く"
1388
 
1389
- #: dist/plugins/other_widget/widget-button.php:151
1390
- #: inc/other_widget/widget-button.php:151
1391
  msgid "Size"
1392
  msgstr "サイズ"
1393
 
1394
- #: dist/plugins/other_widget/widget-button.php:158
1395
- #: inc/other_widget/widget-button.php:158
1396
  msgid "Small"
1397
  msgstr "小"
1398
 
1399
- #: dist/plugins/other_widget/widget-button.php:164
1400
- #: inc/other_widget/widget-button.php:164
1401
  msgid "Medium"
1402
  msgstr "中"
1403
 
1404
- #: dist/plugins/other_widget/widget-button.php:170
1405
- #: inc/other_widget/widget-button.php:170
1406
  msgid "Large"
1407
  msgstr "大"
1408
 
1409
- #: dist/plugins/other_widget/widget-button.php:174
1410
- #: inc/other_widget/widget-button.php:174
1411
  msgid "Button color:"
1412
  msgstr "ボタンの色:"
1413
 
1414
- #: dist/plugins/other_widget/widget-button.php:211
1415
- #: inc/other_widget/widget-button.php:211
1416
  msgid "Key Color(.primary)"
1417
  msgstr "キーカラー(.primary)"
1418
 
1419
- #: dist/plugins/other_widget/widget-button.php:212
1420
- #: inc/other_widget/widget-button.php:212
1421
  msgid "No paint(.default)"
1422
  msgstr "塗りなし(.default)"
1423
 
1424
- #: dist/plugins/other_widget/widget-button.php:213
1425
- #: inc/other_widget/widget-button.php:213
1426
  msgid "Light green(.success)"
1427
  msgstr "明るい緑(.success)"
1428
 
1429
- #: dist/plugins/other_widget/widget-button.php:214
1430
- #: inc/other_widget/widget-button.php:214
1431
  msgid "Light blue(.info)"
1432
  msgstr "空色(.info)"
1433
 
1434
- #: dist/plugins/other_widget/widget-button.php:215
1435
- #: inc/other_widget/widget-button.php:215
1436
  msgid "Orange(.warning)"
1437
  msgstr "オレンジ(.warning)"
1438
 
1439
- #: dist/plugins/other_widget/widget-button.php:216
1440
- #: inc/other_widget/widget-button.php:216
1441
  msgid "Red(.danger)"
1442
  msgstr "赤(.danger)"
1443
 
1444
- #: dist/plugins/other_widget/widget-child-page-list.php:10
1445
- #: inc/other_widget/widget-child-page-list.php:10
1446
  msgid "Child Page List"
1447
  msgstr "子ページのリスト"
1448
 
1449
- #: dist/plugins/other_widget/widget-child-page-list.php:15
1450
- #: dist/plugins/other_widget/widget-child-page-list.php:59
1451
- #: inc/other_widget/widget-child-page-list.php:15
1452
- #: inc/other_widget/widget-child-page-list.php:59
1453
  msgid "Display the child pages list from ancestor page."
1454
  msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
1455
 
1456
- #: dist/plugins/other_widget/widget-new-posts.php:12
1457
- #: dist/plugins/other_widget/widget-new-posts.php:217
1458
- #: inc/other_widget/widget-new-posts.php:12
1459
- #: inc/other_widget/widget-new-posts.php:217
1460
  msgid "Recent Posts"
1461
  msgstr "最新記事"
1462
 
1463
- #: dist/plugins/other_widget/widget-new-posts.php:17
1464
- #: inc/other_widget/widget-new-posts.php:17
1465
  msgid "Displays a list of your most recent posts"
1466
  msgstr "最新の投稿記事リストを表示します。"
1467
 
1468
- #: dist/plugins/other_widget/widget-new-posts.php:254
1469
- #: inc/other_widget/widget-new-posts.php:254
1470
  msgid "Display Format"
1471
  msgstr "表示形式"
1472
 
1473
- #: dist/plugins/other_widget/widget-new-posts.php:261
1474
- #: inc/other_widget/widget-new-posts.php:261
1475
  msgid "Thumbnail"
1476
  msgstr "サムネイル画像"
1477
 
1478
- #: dist/plugins/other_widget/widget-new-posts.php:261
1479
- #: dist/plugins/other_widget/widget-new-posts.php:268
1480
- #: inc/other_widget/widget-new-posts.php:261
1481
- #: inc/other_widget/widget-new-posts.php:268
1482
  msgid "Date"
1483
  msgstr "日付"
1484
 
1485
- #: dist/plugins/other_widget/widget-new-posts.php:268
1486
- #: dist/plugins/other_widget/widget-taxonomies.php:26
1487
- #: dist/plugins/other_widget/widget-taxonomies.php:56
1488
- #: dist/plugins/other_widget/widget-taxonomies.php:57
1489
- #: inc/other_widget/widget-new-posts.php:268
1490
- #: inc/other_widget/widget-taxonomies.php:26
1491
- #: inc/other_widget/widget-taxonomies.php:56
1492
- #: inc/other_widget/widget-taxonomies.php:57
1493
  msgid "Category"
1494
  msgstr "カテゴリー"
1495
 
1496
- #: dist/plugins/other_widget/widget-new-posts.php:281
1497
- #: inc/other_widget/widget-new-posts.php:281
1498
  msgid "Default thumbnail image:"
1499
  msgstr "デフォルトのサムネイル画像:"
1500
 
1501
- #: dist/plugins/other_widget/widget-new-posts.php:302
1502
- #: inc/other_widget/widget-new-posts.php:302
1503
  msgid "Order by"
1504
  msgstr "表示順"
1505
 
1506
- #: dist/plugins/other_widget/widget-new-posts.php:309
1507
- #: inc/other_widget/widget-new-posts.php:309
1508
  msgid "Publish date"
1509
  msgstr "公開日"
1510
 
1511
- #: dist/plugins/other_widget/widget-new-posts.php:315
1512
- #: inc/other_widget/widget-new-posts.php:315
1513
  msgid "Modified date"
1514
  msgstr "最終更新日"
1515
 
1516
- #: dist/plugins/other_widget/widget-new-posts.php:319
1517
- #: dist/plugins/related_posts/related_posts.php:281
1518
- #: inc/other_widget/widget-new-posts.php:319
1519
  #: inc/related_posts/related_posts.php:281
1520
  msgid "Display count"
1521
  msgstr "表示する記事数"
1522
 
1523
- #: dist/plugins/other_widget/widget-new-posts.php:324
1524
- #: inc/other_widget/widget-new-posts.php:324
1525
  msgid "Slug for the custom type you want to display"
1526
  msgstr "表示したい記事タイプ"
1527
 
1528
- #: dist/plugins/other_widget/widget-new-posts.php:329
1529
- #: inc/other_widget/widget-new-posts.php:329
1530
  msgid "taxonomy ID"
1531
  msgstr "カテゴリー(タクソノミー)ID"
1532
 
1533
- #: dist/plugins/other_widget/widget-new-posts.php:332
1534
- #: inc/other_widget/widget-new-posts.php:332
1535
  msgid "if you need filtering by term, add the term ID separate by \",\"."
1536
  msgstr ""
1537
  "特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
1538
  "します。"
1539
 
1540
- #: dist/plugins/other_widget/widget-new-posts.php:334
1541
- #: dist/plugins/sns/sns_admin.php:92 inc/other_widget/widget-new-posts.php:334
1542
- #: inc/sns/sns_admin.php:92
1543
  msgid "if empty this area, I will do not filtering."
1544
  msgstr "空欄の場合はフィルタリングは行いません。"
1545
 
1546
- #: dist/plugins/other_widget/widget-new-posts.php:339
1547
- #: inc/other_widget/widget-new-posts.php:339
1548
  msgid "Destination URL:"
1549
  msgstr "リンク先URL:"
1550
 
1551
- #: dist/plugins/other_widget/widget-new-posts.php:342
1552
- #: inc/other_widget/widget-new-posts.php:342
1553
  msgid "Notation text:"
1554
  msgstr "表記テキスト:"
1555
 
1556
- #: dist/plugins/other_widget/widget-page.php:9
1557
- #: inc/other_widget/widget-page.php:9
1558
  msgid "page content to widget"
1559
  msgstr "固定ページ本文"
1560
 
1561
- #: dist/plugins/other_widget/widget-page.php:14
1562
- #: inc/other_widget/widget-page.php:14
1563
  msgid "Displays a page contents to widget."
1564
  msgstr "選択したページの内容を表示します。"
1565
 
1566
- #: dist/plugins/other_widget/widget-page.php:135
1567
- #: inc/other_widget/widget-page.php:135
1568
  msgid "Display the entered title"
1569
  msgstr "入力したタイトルを表示する"
1570
 
1571
- #: dist/plugins/other_widget/widget-page.php:139
1572
- #: inc/other_widget/widget-page.php:139
1573
  msgid "Display the title of page"
1574
  msgstr "固定ページのタイトルを表示する"
1575
 
1576
- #: dist/plugins/other_widget/widget-page.php:143
1577
- #: inc/other_widget/widget-page.php:143
1578
  msgid "Do not display titles"
1579
  msgstr "タイトルを表示しない"
1580
 
1581
- #: dist/plugins/other_widget/widget-page.php:175
1582
- #: dist/plugins/pageList_ancestor.php:96 inc/other_widget/widget-page.php:175
1583
- #: inc/page-list-ancestor.php:93
1584
  msgid "Display a page list from ancestor"
1585
  msgstr "現在のページの先祖階層からの子ページリストを表示"
1586
 
1587
- #: dist/plugins/other_widget/widget-page.php:243
1588
- #: inc/other_widget/widget-page.php:243
1589
  msgid "Edit"
1590
  msgstr "編集"
1591
 
1592
- #: dist/plugins/other_widget/widget-pr-blocks.php:17
1593
- #: inc/other_widget/widget-pr-blocks.php:17
1594
  msgid "PR Blocks"
1595
  msgstr "PR Blocks"
1596
 
1597
- #: dist/plugins/other_widget/widget-pr-blocks.php:22
1598
- #: inc/other_widget/widget-pr-blocks.php:22
1599
  msgid "Displays a circle image or icon font for pr blocks"
1600
  msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
1601
 
1602
- #: dist/plugins/other_widget/widget-pr-blocks.php:30
1603
- #: inc/other_widget/widget-pr-blocks.php:30
1604
  msgid "Service"
1605
  msgstr "サービス紹介"
1606
 
1607
- #: dist/plugins/other_widget/widget-pr-blocks.php:40
1608
- #: inc/other_widget/widget-pr-blocks.php:40
1609
  msgid "Company"
1610
  msgstr "会社案内"
1611
 
1612
- #: dist/plugins/other_widget/widget-pr-blocks.php:50
1613
- #: inc/other_widget/widget-pr-blocks.php:50
1614
  msgid "Recruit"
1615
  msgstr "採用情報"
1616
 
1617
- #: dist/plugins/other_widget/widget-pr-blocks.php:60
1618
- #: inc/other_widget/widget-pr-blocks.php:60
1619
  msgid "Contact"
1620
  msgstr "Contact"
1621
 
1622
- #: dist/plugins/other_widget/widget-pr-blocks.php:83
1623
- #: inc/other_widget/widget-pr-blocks.php:83
1624
  msgid "The choice of the number of columns:"
1625
  msgstr "列の数"
1626
 
1627
- #: dist/plugins/other_widget/widget-pr-blocks.php:90
1628
- #: inc/other_widget/widget-pr-blocks.php:90
1629
  msgid "3column"
1630
  msgstr "3列"
1631
 
1632
- #: dist/plugins/other_widget/widget-pr-blocks.php:96
1633
- #: inc/other_widget/widget-pr-blocks.php:96
1634
  msgid "4column"
1635
  msgstr "4列"
1636
 
1637
- #: dist/plugins/other_widget/widget-pr-blocks.php:98
1638
- #: inc/other_widget/widget-pr-blocks.php:98
1639
  msgid ""
1640
  "If you change the number of columns, click to \"Save\" botton and exit the "
1641
  "edit page. When restart the edit page, the column input form is increased or "
@@ -1644,151 +1600,151 @@ msgstr ""
1644
  "列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
1645
  "す。それから編集画面を再度開くと列の入力フォームが増減します。"
1646
 
1647
- #: dist/plugins/other_widget/widget-pr-blocks.php:107
1648
- #: dist/plugins/other_widget/widget-pr-blocks.php:277
1649
- #: inc/other_widget/widget-pr-blocks.php:107
1650
- #: inc/other_widget/widget-pr-blocks.php:277
1651
  msgid "PR Block"
1652
  msgstr "PRブロック"
1653
 
1654
- #: dist/plugins/other_widget/widget-pr-blocks.php:129
1655
- #: inc/other_widget/widget-pr-blocks.php:129
1656
  msgid "Icon"
1657
  msgstr "アイコン"
1658
 
1659
- #: dist/plugins/other_widget/widget-pr-blocks.php:132
1660
- #: inc/other_widget/widget-pr-blocks.php:132
1661
  msgid "Class name of the icon font you want to use:"
1662
  msgstr "使用したいアイコンフォントのクラス名:"
1663
 
1664
- #: dist/plugins/other_widget/widget-pr-blocks.php:143
1665
- #: dist/plugins/other_widget/widget-profile.php:157
1666
- #: inc/other_widget/widget-pr-blocks.php:143
1667
- #: inc/other_widget/widget-profile.php:157
1668
  msgid "Icon color:"
1669
  msgstr "アイコンの色:"
1670
 
1671
- #: dist/plugins/other_widget/widget-pr-blocks.php:147
1672
- #: dist/plugins/other_widget/widget-profile.php:142
1673
- #: inc/other_widget/widget-pr-blocks.php:147
1674
- #: inc/other_widget/widget-profile.php:142
1675
  msgid "Icon Background:"
1676
  msgstr "アイコン背景:"
1677
 
1678
- #: dist/plugins/other_widget/widget-pr-blocks.php:151
1679
- #: dist/plugins/other_widget/widget-profile.php:148
1680
- #: inc/other_widget/widget-pr-blocks.php:151
1681
- #: inc/other_widget/widget-profile.php:148
1682
  msgid "Solid color"
1683
  msgstr "塗りつぶし"
1684
 
1685
- #: dist/plugins/other_widget/widget-pr-blocks.php:155
1686
- #: dist/plugins/other_widget/widget-profile.php:151
1687
- #: dist/plugins/sns/sns_customizer.php:318
1688
- #: inc/other_widget/widget-pr-blocks.php:155
1689
- #: inc/other_widget/widget-profile.php:151 inc/sns/sns_customizer.php:318
1690
  msgid "No background"
1691
  msgstr "背景なし"
1692
 
1693
- #: dist/plugins/other_widget/widget-pr-blocks.php:161
1694
- #: inc/other_widget/widget-pr-blocks.php:161
1695
  msgid "PR Image"
1696
  msgstr "画像"
1697
 
1698
- #: dist/plugins/other_widget/widget-pr-blocks.php:162
1699
- #: inc/other_widget/widget-pr-blocks.php:162
1700
  msgid "When you have an image. Image is displayed with priority"
1701
  msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
1702
 
1703
- #: dist/plugins/other_widget/widget-profile.php:9
1704
- #: dist/plugins/other_widget/widget-profile.php:32
1705
- #: inc/other_widget/widget-profile.php:9 inc/other_widget/widget-profile.php:32
1706
  msgid "Profile"
1707
  msgstr "プロフィール"
1708
 
1709
- #: dist/plugins/other_widget/widget-profile.php:14
1710
- #: inc/other_widget/widget-profile.php:14
1711
  msgid "Displays a your profile"
1712
  msgstr ""
1713
  "ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
1714
 
1715
- #: dist/plugins/other_widget/widget-profile.php:40
1716
- #: inc/other_widget/widget-profile.php:40
1717
  msgid "Profile Text"
1718
  msgstr "プロフィールテキスト"
1719
 
1720
- #: dist/plugins/other_widget/widget-profile.php:60
1721
- #: inc/other_widget/widget-profile.php:60
1722
  msgid "Select Profile image:"
1723
  msgstr "プロフィール用画像を選択"
1724
 
1725
- #: dist/plugins/other_widget/widget-profile.php:79
1726
- #: inc/other_widget/widget-profile.php:79
1727
  msgid "Cut out round the image."
1728
  msgstr "画像を丸く切り抜いて表示する"
1729
 
1730
- #: dist/plugins/other_widget/widget-profile.php:83
1731
- #: inc/other_widget/widget-profile.php:83
1732
  msgid "Media size (Optional)"
1733
  msgstr "画像の大きさ( 任意 )"
1734
 
1735
- #: dist/plugins/other_widget/widget-profile.php:93
1736
- #: inc/other_widget/widget-profile.php:93
1737
  msgid "Align left"
1738
  msgstr "画像左揃え"
1739
 
1740
- #: dist/plugins/other_widget/widget-profile.php:96
1741
- #: inc/other_widget/widget-profile.php:96
1742
  msgid "Align center"
1743
  msgstr "画像中央揃え"
1744
 
1745
- #: dist/plugins/other_widget/widget-profile.php:100
1746
- #: inc/other_widget/widget-profile.php:100
1747
  msgid "Text float to image."
1748
  msgstr "テキストを画像に回りこませる"
1749
 
1750
- #: dist/plugins/other_widget/widget-profile.php:104
1751
- #: inc/other_widget/widget-profile.php:104
1752
  msgid "Profile Text:"
1753
  msgstr "プロフィールテキスト"
1754
 
1755
- #: dist/plugins/other_widget/widget-profile.php:108
1756
- #: inc/other_widget/widget-profile.php:108
1757
  msgid "Facebook URL:"
1758
  msgstr "Facebook リンク先ページのURL"
1759
 
1760
- #: dist/plugins/other_widget/widget-profile.php:113
1761
- #: inc/other_widget/widget-profile.php:113
1762
  msgid "Twitter URL:"
1763
  msgstr "twitterリンク先ページのURL"
1764
 
1765
- #: dist/plugins/other_widget/widget-profile.php:118
1766
- #: inc/other_widget/widget-profile.php:118
1767
  msgid "Email Address:"
1768
  msgstr "Email リンク先ページのURL"
1769
 
1770
- #: dist/plugins/other_widget/widget-profile.php:123
1771
- #: inc/other_widget/widget-profile.php:123
1772
  msgid "Youtube URL:"
1773
  msgstr "Youtube リンク先ページのURL"
1774
 
1775
- #: dist/plugins/other_widget/widget-profile.php:128
1776
- #: inc/other_widget/widget-profile.php:128
1777
  msgid "RSS URL:"
1778
  msgstr "RSS リンク先ページのURL"
1779
 
1780
- #: dist/plugins/other_widget/widget-profile.php:133
1781
- #: inc/other_widget/widget-profile.php:133
1782
  msgid "instagram URL:"
1783
  msgstr "instagram リンク先ページのURL"
1784
 
1785
- #: dist/plugins/other_widget/widget-profile.php:137
1786
- #: inc/other_widget/widget-profile.php:137
1787
  msgid "linkedin URL:"
1788
  msgstr "linkedin リンク先ページのURL"
1789
 
1790
- #: dist/plugins/other_widget/widget-profile.php:153
1791
- #: inc/other_widget/widget-profile.php:153
1792
  msgid ""
1793
  "* When \"Icon Background: Fill\" is selected and \"Icon color\" is not "
1794
  "specified, each brand color will be painted."
@@ -1796,151 +1752,151 @@ msgstr ""
1796
  "※ 「アイコン背景 : 塗りつぶし」を選択した場合で「アイコンの色」の指定がないと"
1797
  "きは各ブランドカラーで塗りつぶしされます。"
1798
 
1799
- #: dist/plugins/other_widget/widget-side-child-page-list.php:12
1800
- #: inc/other_widget/widget-side-child-page-list.php:12
1801
  msgid "child pages list"
1802
  msgstr "子ページのリスト"
1803
 
1804
- #: dist/plugins/other_widget/widget-side-child-page-list.php:17
1805
- #: inc/other_widget/widget-side-child-page-list.php:17
1806
  msgid "Displays list of child page for the current page."
1807
  msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
1808
 
1809
- #: dist/plugins/other_widget/widget-taxonomies.php:10
1810
- #: inc/other_widget/widget-taxonomies.php:10
1811
  msgid "Categories/Custom taxonomies list"
1812
  msgstr "カテゴリー/カスタム分類リスト"
1813
 
1814
- #: dist/plugins/other_widget/widget-taxonomies.php:15
1815
- #: inc/other_widget/widget-taxonomies.php:15
1816
  msgid "Displays a categories and custom taxonomies list."
1817
  msgstr "カテゴリーやカスタム分類のリストを表示します。"
1818
 
1819
- #: dist/plugins/other_widget/widget-taxonomies.php:71
1820
- #: inc/other_widget/widget-taxonomies.php:71
1821
  msgid "Label to display"
1822
  msgstr "表示するラベル"
1823
 
1824
- #: dist/plugins/other_widget/widget-taxonomies.php:75
1825
- #: inc/other_widget/widget-taxonomies.php:75
1826
  msgid "Display page"
1827
  msgstr "ページを表示"
1828
 
1829
- #: dist/plugins/other_widget/widget-taxonomies.php:94
1830
- #: inc/other_widget/widget-taxonomies.php:94
1831
  msgid "Do not display terms without posts"
1832
  msgstr "投稿のない分類項目を表示しない"
1833
 
1834
- #: dist/plugins/other_widget/widget-taxonomies.php:106
1835
- #: inc/other_widget/widget-taxonomies.php:106
1836
  msgid "Blog"
1837
  msgstr "ブログ"
1838
 
1839
- #: dist/plugins/other_widget/widget-taxonomies.php:111
1840
- #: dist/plugins/template-tags/template-tags.php:157
1841
- #: inc/other_widget/widget-taxonomies.php:111
1842
- #: inc/template-tags/template-tags.php:157
1843
  msgid "Archives"
1844
  msgstr "アーカイブ"
1845
 
1846
- #: dist/plugins/post-type-manager/class.post-type-manager.php:22
1847
- #: dist/plugins/post-type-manager/class.post-type-manager.php:23
1848
- #: dist/plugins/post-type-manager/class.post-type-manager.php:65
1849
  #: inc/post-type-manager/package/class.post-type-manager.php:22
1850
  #: inc/post-type-manager/package/class.post-type-manager.php:23
1851
  #: inc/post-type-manager/package/class.post-type-manager.php:65
1852
  msgid "Custom Post Type Setting"
1853
  msgstr "カスタム投稿タイプ設定"
1854
 
1855
- #: dist/plugins/post-type-manager/class.post-type-manager.php:88
1856
  #: inc/post-type-manager/package/class.post-type-manager.php:88
1857
  msgid "Post Type ID(Required)"
1858
  msgstr "投稿タイプID(必須)"
1859
 
1860
- #: dist/plugins/post-type-manager/class.post-type-manager.php:89
1861
  #: inc/post-type-manager/package/class.post-type-manager.php:89
1862
  msgid "20 characters or less in alphanumeric"
1863
  msgstr "半角英数字20文字以内で入力ください"
1864
 
1865
- #: dist/plugins/post-type-manager/class.post-type-manager.php:94
1866
  #: inc/post-type-manager/package/class.post-type-manager.php:94
1867
  msgid "title"
1868
  msgstr "タイトル"
1869
 
1870
- #: dist/plugins/post-type-manager/class.post-type-manager.php:95
1871
  #: inc/post-type-manager/package/class.post-type-manager.php:95
1872
  msgid "editor"
1873
  msgstr "本文"
1874
 
1875
- #: dist/plugins/post-type-manager/class.post-type-manager.php:96
1876
  #: inc/post-type-manager/package/class.post-type-manager.php:96
1877
  msgid "author"
1878
  msgstr "投稿者"
1879
 
1880
- #: dist/plugins/post-type-manager/class.post-type-manager.php:97
1881
  #: inc/post-type-manager/package/class.post-type-manager.php:97
1882
  msgid "thumbnail"
1883
  msgstr "アイキャッチ画像"
1884
 
1885
- #: dist/plugins/post-type-manager/class.post-type-manager.php:98
1886
  #: inc/post-type-manager/package/class.post-type-manager.php:98
1887
  msgid "excerpt"
1888
  msgstr "抜粋"
1889
 
1890
- #: dist/plugins/post-type-manager/class.post-type-manager.php:99
1891
  #: inc/post-type-manager/package/class.post-type-manager.php:99
1892
  msgid "comments"
1893
  msgstr "コメント"
1894
 
1895
- #: dist/plugins/post-type-manager/class.post-type-manager.php:100
1896
  #: inc/post-type-manager/package/class.post-type-manager.php:100
1897
  msgid "revisions"
1898
  msgstr "リビジョン"
1899
 
1900
- #: dist/plugins/post-type-manager/class.post-type-manager.php:105
1901
  #: inc/post-type-manager/package/class.post-type-manager.php:105
1902
  msgid "Supports(Required)"
1903
  msgstr "有効にする項目(必須)"
1904
 
1905
- #: dist/plugins/post-type-manager/class.post-type-manager.php:118
1906
  #: inc/post-type-manager/package/class.post-type-manager.php:118
1907
  msgid "Menu position(optional)"
1908
  msgstr "メニューの位置( 任意 )"
1909
 
1910
- #: dist/plugins/post-type-manager/class.post-type-manager.php:119
1911
  #: inc/post-type-manager/package/class.post-type-manager.php:119
1912
  msgid "Please enter a number."
1913
  msgstr "数字を入力してください。数字が小さいほど上に表示されます。"
1914
 
1915
- #: dist/plugins/post-type-manager/class.post-type-manager.php:126
1916
  #: inc/post-type-manager/package/class.post-type-manager.php:126
1917
  msgid "Export to REST API(optional)"
1918
  msgstr "REST API に出力する( 任意 )"
1919
 
1920
- #: dist/plugins/post-type-manager/class.post-type-manager.php:138
1921
  #: inc/post-type-manager/package/class.post-type-manager.php:138
1922
  msgid "Export to REST API"
1923
  msgstr "REST API に出力する"
1924
 
1925
- #: dist/plugins/post-type-manager/class.post-type-manager.php:143
1926
- #: inc/post-type-manager/package/class.post-type-manager.php:143
1927
  msgid "Custom taxonomies(optional)"
1928
  msgstr "カスタム分類(任意)"
1929
 
1930
- #: dist/plugins/post-type-manager/class.post-type-manager.php:146
1931
- #: inc/post-type-manager/package/class.post-type-manager.php:146
1932
  msgid "Custom taxonomy is like a category in post."
1933
  msgstr "カスタム分類とは投稿で言うカテゴリーです。"
1934
 
1935
- #: dist/plugins/post-type-manager/class.post-type-manager.php:147
1936
- #: inc/post-type-manager/package/class.post-type-manager.php:147
1937
  msgid ""
1938
  "However, it refers to the \"category\" itself, not to the “item” of the "
1939
  "category."
1940
  msgstr "しかし、カテゴリーの”項目”ではなく、”カテゴリー”そのものを指します。"
1941
 
1942
- #: dist/plugins/post-type-manager/class.post-type-manager.php:148
1943
- #: inc/post-type-manager/package/class.post-type-manager.php:148
1944
  msgid ""
1945
  "For example, if you create a post type \"construction result\", Custom "
1946
  "taxonomy will be \"construction type\", \"construction area\", etc."
@@ -1948,43 +1904,43 @@ msgstr ""
1948
  "例えば「施工実績」という投稿タイプを作成した場合、カスタム分類は「施工タイ"
1949
  "プ」「施工地域」等になります。"
1950
 
1951
- #: dist/plugins/post-type-manager/class.post-type-manager.php:172
1952
- #: inc/post-type-manager/package/class.post-type-manager.php:172
1953
  msgid "Custon taxonomy name(slug)"
1954
  msgstr "カスタム分類名(スラッグ)"
1955
 
1956
- #: dist/plugins/post-type-manager/class.post-type-manager.php:176
1957
- #: inc/post-type-manager/package/class.post-type-manager.php:176
1958
  msgid "* Please be sure to enter it with one-byte alphanumeric characters"
1959
  msgstr "※ 必ず半角英数字にて入力してください"
1960
 
1961
- #: dist/plugins/post-type-manager/class.post-type-manager.php:182
1962
- #: inc/post-type-manager/package/class.post-type-manager.php:182
1963
  msgid "Custon taxonomy label"
1964
  msgstr "カスタム分類名(表示名)"
1965
 
1966
- #: dist/plugins/post-type-manager/class.post-type-manager.php:189
1967
- #: inc/post-type-manager/package/class.post-type-manager.php:189
1968
  msgid "Hierarchy"
1969
  msgstr "階層"
1970
 
1971
- #: dist/plugins/post-type-manager/class.post-type-manager.php:190
1972
- #: inc/post-type-manager/package/class.post-type-manager.php:190
1973
  msgid "Make it a tag (do not hierarchize)"
1974
  msgstr "タグにする(階層化しない)"
1975
 
1976
- #: dist/plugins/post-type-manager/class.post-type-manager.php:199
1977
- #: inc/post-type-manager/package/class.post-type-manager.php:199
1978
  msgid "REST API(optional)"
1979
  msgstr "REST API ( 任意 )"
1980
 
1981
- #: dist/plugins/post-type-manager/class.post-type-manager.php:200
1982
- #: inc/post-type-manager/package/class.post-type-manager.php:200
1983
  msgid "Use for REST API"
1984
  msgstr "REST API に利用する"
1985
 
1986
- #: dist/plugins/post-type-manager/class.post-type-manager.php:262
1987
- #: inc/post-type-manager/package/class.post-type-manager.php:262
1988
  #, php-format
1989
  msgid ""
1990
  "Please save a <a href=\"%s\">permanent link configuration</a> After updating "
@@ -1992,124 +1948,123 @@ msgid ""
1992
  msgstr ""
1993
  "設定を更新したら<a href=\"%s\">パーマリンク設定</a>を保存してください。"
1994
 
1995
- #: dist/plugins/related_posts/related_posts.php:210 dist/veu-packages.php:339
1996
  #: inc/related_posts/related_posts.php:210 veu-packages.php:299
1997
  msgid "Related posts"
1998
  msgstr "関連記事を表示"
1999
 
2000
- #: dist/plugins/related_posts/related_posts.php:244
2001
  #: inc/related_posts/related_posts.php:244
2002
  msgid "Related Settings"
2003
  msgstr "関連記事設定"
2004
 
2005
- #: dist/plugins/sitemap_page/hide-controller.php:17
2006
- msgid "Site Map Hide"
2007
- msgstr "サイトマップ非表示設定"
 
2008
 
2009
- #: dist/plugins/sitemap_page/hide-controller.php:46
2010
- msgid "Don't display on Sitemap."
2011
- msgstr "サイトマップに表示しない"
 
2012
 
2013
- #: dist/plugins/sitemap_page/sitemap_admin.php:9
2014
- #: inc/sitemap-page/sitemap-page-admin-main-setting.php:39
2015
  msgid "HTML Sitemap Settings"
2016
  msgstr "HTMLサイトマップ設定"
2017
 
2018
- #: dist/plugins/sitemap_page/sitemap_admin.php:13
2019
- #: inc/sitemap-page/sitemap-page-admin-main-setting.php:43
2020
  msgid "Exclude page Settings"
2021
  msgstr "除外ページ設定"
2022
 
2023
- #: dist/plugins/sitemap_page/sitemap_admin.php:15
2024
- #: inc/sitemap-page/sitemap-page-admin-main-setting.php:45
2025
  msgid "Input you want to exclude page id."
2026
  msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
2027
 
2028
- #: dist/plugins/sitemap_page/sitemap_admin.php:17
2029
- #: inc/sitemap-page/sitemap-page-admin-main-setting.php:47
2030
  msgid ""
2031
  "* Please enter separated by \",\"(commas) if there is more than one page ID "
2032
  "that you want to exclude."
2033
  msgstr "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
2034
 
2035
- #: dist/plugins/sitemap_page/sitemap_page.php:34
2036
- #: inc/sitemap-page/sitemap-page-admin-main-setting.php:8
2037
- msgid "HTML Sitemap"
2038
- msgstr "HTMLサイトマップ"
2039
-
2040
- #: dist/plugins/sitemap_page/sitemap_page.php:261
2041
- #: inc/sitemap-page/sitemap-page.php:217
2042
  msgid "Display a HTML sitemap"
2043
  msgstr "HTMLサイトマップの表示"
2044
 
2045
- #: dist/plugins/sns/function_follow.php:25 inc/sns/function_follow.php:25
2046
- msgid "Follow me"
2047
- msgstr "このサイトをフォローする"
 
2048
 
2049
- #: dist/plugins/sns/function_follow.php:73 inc/sns/function_follow.php:73
2050
- msgid "Edit follow button"
2051
- msgstr "Follow me box の編集"
 
2052
 
2053
- #: dist/plugins/sns/function_meta_box.php:29
2054
- #, fuzzy
2055
- #| msgid "SNS Title"
2056
- msgid "Sns Title"
 
 
 
 
 
 
 
 
 
2057
  msgstr "OGPタイトル"
2058
 
2059
- #: dist/plugins/sns/function_meta_box.php:40
2060
  #: inc/sns/class-veu-metabox-sns-title.php:32
2061
  msgid "if filled this area then override title of OGP and Twitter Card"
2062
  msgstr ""
2063
  "このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
2064
  "るタイトルを上書きすることができます"
2065
 
2066
- #: dist/plugins/sns/hide_controller.php:28
2067
- msgid "Share bottons"
2068
- msgstr "ソーシャルボタン"
2069
-
2070
- #: dist/plugins/sns/hide_controller.php:72
2071
- #: inc/sns/class-veu-metabox-sns-button.php:38
2072
- msgid "This post type is not set to display the share button."
2073
- msgstr "この投稿タイプはシェアボタンを表示するように設定されていません。"
2074
 
2075
- #: dist/plugins/sns/hide_controller.php:93
2076
- #: inc/sns/class-veu-metabox-sns-button.php:49
2077
- msgid "Don't display share bottons."
2078
- msgstr "ソーシャルボタンを表示しない"
2079
 
2080
- #: dist/plugins/sns/sns.php:21 inc/sns/sns.php:19
2081
  msgid "SNS"
2082
  msgstr "SNS"
2083
 
2084
- #: dist/plugins/sns/sns.php:156 inc/sns/sns.php:154
2085
  msgctxt "facebook language code"
2086
  msgid "en_US"
2087
  msgstr "ja_JP"
2088
 
2089
- #: dist/plugins/sns/sns_admin.php:1 dist/plugins/sns/sns_customizer.php:22
2090
  #: inc/sns/sns_admin.php:1 inc/sns/sns_customizer.php:22
2091
  msgid "SNS Settings"
2092
  msgstr "SNS設定"
2093
 
2094
- #: dist/plugins/sns/sns_admin.php:14 dist/plugins/sns/sns_customizer.php:36
2095
  #: inc/sns/sns_admin.php:14 inc/sns/sns_customizer.php:36
2096
  msgid "Post title custom for SNS"
2097
  msgstr "OGPなどの投稿タイトルの変更"
2098
 
2099
- #: dist/plugins/sns/sns_admin.php:16 dist/plugins/sns/sns_customizer.php:58
2100
  #: inc/sns/sns_admin.php:16 inc/sns/sns_customizer.php:58
2101
  msgid "For SNS title be composed by post title only."
2102
  msgstr "投稿タイトルだけにする(サイトタイトルなど含めない)。"
2103
 
2104
- #: dist/plugins/sns/sns_admin.php:20 inc/sns/sns_admin.php:20
2105
  msgid "facebook application ID"
2106
  msgstr "facebookアプリケーションID"
2107
 
2108
- #: dist/plugins/sns/sns_admin.php:22 inc/sns/sns_admin.php:22
2109
  msgid "I will check and get the application ID"
2110
  msgstr "アプリケーションIDを確認・取得する "
2111
 
2112
- #: dist/plugins/sns/sns_admin.php:23 inc/sns/sns_admin.php:23
2113
  msgid ""
2114
  "* If an application ID is not specified, neither a Like button nor the "
2115
  "comment field displays and operates correctly."
@@ -2117,7 +2072,7 @@ msgstr ""
2117
  "※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
2118
  "ん。"
2119
 
2120
- #: dist/plugins/sns/sns_admin.php:24 inc/sns/sns_admin.php:24
2121
  msgid ""
2122
  "Please search for terms as [get Facebook application ID] If you do not know "
2123
  "much about how to get application ID for Facebook."
@@ -2125,16 +2080,16 @@ msgstr ""
2125
  "facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
2126
  "アプリケーションID 取得」などで検索して下さい。"
2127
 
2128
- #: dist/plugins/sns/sns_admin.php:28 inc/sns/sns_admin.php:28
2129
  msgid "facebook page URL"
2130
  msgstr "FacebookページURL"
2131
 
2132
- #: dist/plugins/sns/sns_admin.php:33 dist/plugins/sns/sns_customizer.php:141
2133
  #: inc/sns/sns_admin.php:33 inc/sns/sns_customizer.php:141
2134
  msgid "OG default image"
2135
  msgstr "デフォルトのOGPイメージ"
2136
 
2137
- #: dist/plugins/sns/sns_admin.php:34 inc/sns/sns_admin.php:34
2138
  msgid ""
2139
  "If, for example someone pressed the Facebook [Like] button, this is the "
2140
  "image that appears on the Facebook timeline."
@@ -2142,36 +2097,36 @@ msgstr ""
2142
  "Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
2143
  "ムラインに表示されます。"
2144
 
2145
- #: dist/plugins/sns/sns_admin.php:35 inc/sns/sns_admin.php:35
2146
  msgid "If a featured image is specified for the page, it takes precedence."
2147
  msgstr ""
2148
  "ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
2149
  "す。"
2150
 
2151
- #: dist/plugins/sns/sns_admin.php:37 inc/sns/sns_admin.php:37
2152
  msgid "Select an image"
2153
  msgstr "画像を選択"
2154
 
2155
- #: dist/plugins/sns/sns_admin.php:39 inc/sns/sns_admin.php:39
2156
  msgid ""
2157
  "* Picture sizes are 1280x720 pixels or more and picture ratio 16:9 is "
2158
  "recommended."
2159
  msgstr "画像サイズ 橫 1280px 縦 720px 以上、画像比率 16:9 を推奨します。"
2160
 
2161
- #: dist/plugins/sns/sns_admin.php:43 inc/sns/sns_admin.php:43
2162
  msgid "twitter ID"
2163
  msgstr "twitterアカウント"
2164
 
2165
- #: dist/plugins/sns/sns_admin.php:48 inc/sns/sns_admin.php:48
2166
  msgid "OG tags"
2167
  msgstr "OGタグ"
2168
 
2169
- #: dist/plugins/sns/sns_admin.php:50 dist/plugins/sns/sns_customizer.php:180
2170
  #: inc/sns/sns_admin.php:50 inc/sns/sns_customizer.php:180
2171
  msgid "Print the OG tags"
2172
  msgstr "OGタグを出力する"
2173
 
2174
- #: dist/plugins/sns/sns_admin.php:51 dist/plugins/sns/sns_customizer.php:184
2175
  #: inc/sns/sns_admin.php:51 inc/sns/sns_customizer.php:184
2176
  msgid ""
2177
  "If other plug-ins are used for the OG, do not output the OG using this "
@@ -2180,119 +2135,119 @@ msgstr ""
2180
  "OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
2181
  "る場合は、このプラグインでの出力は必要ありません。"
2182
 
2183
- #: dist/plugins/sns/sns_admin.php:56 dist/plugins/sns/sns_customizer.php:243
2184
  #: inc/sns/sns_admin.php:56 inc/sns/sns_customizer.php:243
2185
  msgid "Twitter Card tags"
2186
  msgstr "Twitterカードタグ"
2187
 
2188
- #: dist/plugins/sns/sns_admin.php:58 dist/plugins/sns/sns_customizer.php:247
2189
  #: inc/sns/sns_admin.php:58 inc/sns/sns_customizer.php:247
2190
  msgid "Print the Twitter Card tags"
2191
  msgstr "Twitter カードタグを html head 内へ出力します。"
2192
 
2193
- #: dist/plugins/sns/sns_admin.php:63 dist/plugins/sns/sns_customizer.php:260
2194
  #: inc/sns/sns_admin.php:63 inc/sns/sns_customizer.php:260
2195
  msgid "Social bookmark buttons"
2196
  msgstr "ソーシャルボタン"
2197
 
2198
- #: dist/plugins/sns/sns_admin.php:64 dist/plugins/sns/sns_customizer.php:283
2199
  #: inc/sns/sns_admin.php:64 inc/sns/sns_customizer.php:283
2200
  msgid "Print the social bookmark buttons"
2201
  msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
2202
 
2203
- #: dist/plugins/sns/sns_admin.php:67 dist/plugins/sns/sns_customizer.php:409
2204
  #: inc/sns/sns_admin.php:67 inc/sns/sns_customizer.php:409
2205
  msgid "Exclude Post Types"
2206
  msgstr "シェアボタンを表示しない投稿タイプ"
2207
 
2208
- #: dist/plugins/sns/sns_admin.php:80 inc/sns/sns_admin.php:80
2209
  msgid "Exclude Post ID"
2210
  msgstr "シェアボタンを表示しない投稿のID"
2211
 
2212
- #: dist/plugins/sns/sns_admin.php:90 inc/sns/sns_admin.php:90
2213
  msgid ""
2214
  "if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
2215
  msgstr ""
2216
  "特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを入"
2217
  "力します。"
2218
 
2219
- #: dist/plugins/sns/sns_admin.php:94 inc/sns/sns_admin.php:94
2220
  msgid "example"
2221
  msgstr "例"
2222
 
2223
- #: dist/plugins/sns/sns_admin.php:103 dist/plugins/sns/sns_customizer.php:452
2224
  #: inc/sns/sns_admin.php:103 inc/sns/sns_customizer.php:452
2225
  msgid "Share button for display"
2226
  msgstr "表示するボタン"
2227
 
2228
- #: dist/plugins/sns/sns_admin.php:111 inc/sns/sns_admin.php:111
2229
  msgid "Facebook"
2230
  msgstr "Facebook"
2231
 
2232
- #: dist/plugins/sns/sns_admin.php:117 dist/plugins/sns/sns_customizer.php:493
2233
- #: dist/plugins/sns/widget-twitter.php:9 inc/sns/sns_admin.php:117
2234
  #: inc/sns/sns_customizer.php:493 inc/sns/widget-twitter.php:9
2235
  msgid "Twitter"
2236
  msgstr "Twitter"
2237
 
2238
- #: dist/plugins/sns/sns_admin.php:123 dist/plugins/sns/sns_customizer.php:514
2239
  #: inc/sns/sns_admin.php:123 inc/sns/sns_customizer.php:514
2240
  msgid "Hatena"
2241
  msgstr "はてな"
2242
 
2243
- #: dist/plugins/sns/sns_admin.php:129 dist/plugins/sns/sns_customizer.php:535
2244
  #: inc/sns/sns_admin.php:129 inc/sns/sns_customizer.php:535
2245
  msgid "Pocket"
2246
  msgstr "Pocket"
2247
 
2248
- #: dist/plugins/sns/sns_admin.php:135 dist/plugins/sns/sns_customizer.php:556
2249
  #: inc/sns/sns_admin.php:135 inc/sns/sns_customizer.php:556
2250
  msgid "LINE (mobile only)"
2251
  msgstr "LINE (mobile only)"
2252
 
2253
- #: dist/plugins/sns/sns_admin.php:141 dist/plugins/sns/sns_customizer.php:355
2254
  #: inc/sns/sns_admin.php:141 inc/sns/sns_customizer.php:355
2255
  msgid "Share button display Position"
2256
  msgstr "シェアボタンの表示位置"
2257
 
2258
- #: dist/plugins/sns/sns_admin.php:149 dist/plugins/sns/sns_customizer.php:374
2259
  #: inc/sns/sns_admin.php:149 inc/sns/sns_customizer.php:374
2260
  msgid "Before content"
2261
  msgstr "本文の前"
2262
 
2263
- #: dist/plugins/sns/sns_admin.php:155 dist/plugins/sns/sns_customizer.php:394
2264
  #: inc/sns/sns_admin.php:155 inc/sns/sns_customizer.php:394
2265
  msgid "After content"
2266
  msgstr "本文の後"
2267
 
2268
- #: dist/plugins/sns/sns_admin.php:161 dist/plugins/sns/sns_customizer.php:571
2269
  #: inc/sns/sns_admin.php:161 inc/sns/sns_customizer.php:571
2270
  msgid "Follow me box"
2271
  msgstr "Follow me box"
2272
 
2273
- #: dist/plugins/sns/sns_admin.php:162 dist/plugins/sns/sns_customizer.php:593
2274
  #: inc/sns/sns_admin.php:162 inc/sns/sns_customizer.php:593
2275
  msgid "Print the Follow me box"
2276
  msgstr "Follow me ユニットを本文の下に表示する"
2277
 
2278
- #: dist/plugins/sns/sns_admin.php:164 dist/plugins/sns/sns_customizer.php:613
2279
  #: inc/sns/sns_admin.php:164 inc/sns/sns_customizer.php:613
2280
  msgid "Follow me box title"
2281
  msgstr "Follow me box の見出しテキスト"
2282
 
2283
- #: dist/plugins/sns/sns_customizer.php:74 inc/sns/sns_customizer.php:74
2284
  msgid "Facebook Settings"
2285
  msgstr "Facebook 設定"
2286
 
2287
- #: dist/plugins/sns/sns_customizer.php:97 inc/sns/sns_customizer.php:97
2288
  msgid "Facebook application ID"
2289
  msgstr "facebookアプリケーションID"
2290
 
2291
- #: dist/plugins/sns/sns_customizer.php:118 inc/sns/sns_customizer.php:118
2292
  msgid "Facebook Page URL"
2293
  msgstr "FacebookページURL"
2294
 
2295
- #: dist/plugins/sns/sns_customizer.php:144 inc/sns/sns_customizer.php:144
2296
  msgid ""
2297
  "If, for example someone pressed the Facebook [Like] button, this is the "
2298
  "image that appears on the Facebook timeline.<br>If a featured image is "
@@ -2304,233 +2259,231 @@ msgstr ""
2304
  "アイキャッチ画像が優先されます。<br>画像サイズ 橫 1280px 縦 720px 以上、画像"
2305
  "比率 16:9 程度を推奨します。"
2306
 
2307
- #: dist/plugins/sns/sns_customizer.php:157 inc/sns/sns_customizer.php:157
2308
  msgid "OG Settings"
2309
  msgstr "OG 設定"
2310
 
2311
- #: dist/plugins/sns/sns_customizer.php:196 inc/sns/sns_customizer.php:196
2312
  msgid "Twitter Settings"
2313
  msgstr "Twitter 設定"
2314
 
2315
- #: dist/plugins/sns/sns_customizer.php:219 inc/sns/sns_customizer.php:219
2316
  #, fuzzy
2317
  #| msgid "twitter ID"
2318
  msgid "Twitter ID"
2319
  msgstr "twitterアカウント"
2320
 
2321
- #: dist/plugins/sns/sns_customizer.php:298 inc/sns/sns_customizer.php:298
2322
  msgid "Social button style setting"
2323
  msgstr "ソーシャルボタンのスタイル設定"
2324
 
2325
- #: dist/plugins/sns/sns_customizer.php:340 inc/sns/sns_customizer.php:340
2326
  msgid "Btn color"
2327
  msgstr "ボタンの色:"
2328
 
2329
- #: dist/plugins/sns/sns_customizer.php:472 inc/sns/sns_customizer.php:472
2330
  #, fuzzy
2331
  #| msgid "Facebook URL:"
2332
  msgid "Facebook "
2333
  msgstr "Facebook リンク先ページのURL"
2334
 
2335
- #: dist/plugins/sns/widget-fb-page-plugin.php:13
2336
  #: inc/sns/widget-fb-page-plugin.php:13
2337
  msgid "Displays a Facebook Page Plugin"
2338
  msgstr "Facebook ページプラグインを表示します。"
2339
 
2340
- #: dist/plugins/sns/widget-fb-page-plugin.php:89
2341
  #: inc/sns/widget-fb-page-plugin.php:89
2342
  msgid "Height"
2343
  msgstr "高さ"
2344
 
2345
- #: dist/plugins/sns/widget-fb-page-plugin.php:94
2346
  #: inc/sns/widget-fb-page-plugin.php:94
2347
  msgid "Show Friend's Faces"
2348
  msgstr "アイコンを表示する"
2349
 
2350
- #: dist/plugins/sns/widget-fb-page-plugin.php:99
2351
  #: inc/sns/widget-fb-page-plugin.php:99
2352
  msgid "Hide Cover Photo"
2353
  msgstr "カバー画像を表示しない"
2354
 
2355
- #: dist/plugins/sns/widget-fb-page-plugin.php:104
2356
  #: inc/sns/widget-fb-page-plugin.php:104
2357
  msgid "Show Page Posts"
2358
  msgstr "タイムラインを表示"
2359
 
2360
- #: dist/plugins/sns/widget-twitter.php:13 inc/sns/widget-twitter.php:13
2361
  msgid "Display Twitter timeline."
2362
  msgstr "Twitter のタイムラインを表示します。"
2363
 
2364
- #: dist/plugins/sns/widget-twitter.php:89 inc/sns/widget-twitter.php:89
2365
  msgid "Account:<br>Please enter your Twitter account."
2366
  msgstr "アカウント:<br>Twitter アカウントを入力してください。"
2367
 
2368
- #: dist/plugins/sns/widget-twitter.php:90 inc/sns/widget-twitter.php:90
2369
  msgid "@"
2370
  msgstr "@"
2371
 
2372
- #: dist/plugins/sns/widget-twitter.php:94 inc/sns/widget-twitter.php:94
2373
  msgid "Height:<br>Please enter an arbitrary number.(Example: 300)"
2374
  msgstr "高さ:<br>任意の数値を入力してください(例:300)"
2375
 
2376
- #: dist/plugins/sns/widget-twitter.php:99 inc/sns/widget-twitter.php:99
2377
  msgid "Background color:"
2378
  msgstr "背景の色:"
2379
 
2380
- #: dist/plugins/sns/widget-twitter.php:122 inc/sns/widget-twitter.php:122
2381
  msgid "Link color:"
2382
  msgstr "リンクの色:"
2383
 
2384
- #: dist/plugins/template-tags/template-tags.php:116
2385
- #: inc/template-tags/template-tags.php:116
2386
  #, php-format
2387
  msgid "Author: %s"
2388
  msgstr "著者: %s"
2389
 
2390
- #: dist/plugins/template-tags/template-tags.php:118
2391
- #: dist/plugins/template-tags/template-tags.php:200
2392
- #: inc/template-tags/template-tags.php:118
2393
- #: inc/template-tags/template-tags.php:200
2394
  msgctxt "yearly archives date format"
2395
  msgid "Y"
2396
  msgstr "Y年"
2397
 
2398
- #: dist/plugins/template-tags/template-tags.php:120
2399
- #: dist/plugins/template-tags/template-tags.php:204
2400
- #: inc/template-tags/template-tags.php:120
2401
- #: inc/template-tags/template-tags.php:204
2402
  msgctxt "monthly archives date format"
2403
  msgid "F Y"
2404
  msgstr "Y年F"
2405
 
2406
- #: dist/plugins/template-tags/template-tags.php:122
2407
- #: inc/template-tags/template-tags.php:122
2408
  msgctxt "daily archives date format"
2409
  msgid "F j, Y"
2410
  msgstr "Y年Fj日"
2411
 
2412
- #: dist/plugins/template-tags/template-tags.php:125
2413
- #: inc/template-tags/template-tags.php:125
2414
  msgctxt "post format archive title"
2415
  msgid "Asides"
2416
  msgstr "サイド"
2417
 
2418
- #: dist/plugins/template-tags/template-tags.php:127
2419
- #: inc/template-tags/template-tags.php:127
2420
  msgctxt "post format archive title"
2421
  msgid "Galleries"
2422
  msgstr "ギャラリー"
2423
 
2424
- #: dist/plugins/template-tags/template-tags.php:129
2425
- #: inc/template-tags/template-tags.php:129
2426
  msgctxt "post format archive title"
2427
  msgid "Images"
2428
  msgstr "画像"
2429
 
2430
- #: dist/plugins/template-tags/template-tags.php:131
2431
- #: inc/template-tags/template-tags.php:131
2432
  msgctxt "post format archive title"
2433
  msgid "Videos"
2434
  msgstr "ビデオ"
2435
 
2436
- #: dist/plugins/template-tags/template-tags.php:133
2437
- #: inc/template-tags/template-tags.php:133
2438
  msgctxt "post format archive title"
2439
  msgid "Quotes"
2440
  msgstr "引用"
2441
 
2442
- #: dist/plugins/template-tags/template-tags.php:135
2443
- #: inc/template-tags/template-tags.php:135
2444
  msgctxt "post format archive title"
2445
  msgid "Links"
2446
  msgstr "リンク"
2447
 
2448
- #: dist/plugins/template-tags/template-tags.php:137
2449
- #: inc/template-tags/template-tags.php:137
2450
  msgctxt "post format archive title"
2451
  msgid "Statuses"
2452
  msgstr "ステータス"
2453
 
2454
- #: dist/plugins/template-tags/template-tags.php:139
2455
- #: inc/template-tags/template-tags.php:139
2456
  msgctxt "post format archive title"
2457
  msgid "Audio"
2458
  msgstr "オーディオ"
2459
 
2460
- #: dist/plugins/template-tags/template-tags.php:141
2461
- #: inc/template-tags/template-tags.php:141
2462
  msgctxt "post format archive title"
2463
  msgid "Chats"
2464
  msgstr "チャット"
2465
 
2466
- #: dist/plugins/template-tags/template-tags.php:188
2467
- #: dist/plugins/template-tags/template-tags.php:196
2468
- #: inc/template-tags/template-tags.php:188
2469
- #: inc/template-tags/template-tags.php:196
2470
  #, php-format
2471
  msgid "About %s"
2472
  msgstr "%s について"
2473
 
2474
- #: dist/plugins/template-tags/template-tags.php:201
2475
- #: inc/template-tags/template-tags.php:201
2476
  #, php-format
2477
  msgctxt "Yearly archive description"
2478
  msgid "Article of %s."
2479
  msgstr "%s の記事"
2480
 
2481
- #: dist/plugins/template-tags/template-tags.php:205
2482
- #: dist/plugins/template-tags/template-tags.php:209
2483
- #: dist/plugins/template-tags/template-tags.php:214
2484
- #: inc/template-tags/template-tags.php:205
2485
- #: inc/template-tags/template-tags.php:209
2486
- #: inc/template-tags/template-tags.php:214
2487
  #, php-format
2488
  msgctxt "Archive description"
2489
  msgid "Article of %s."
2490
  msgstr "%s の記事"
2491
 
2492
- #: dist/plugins/template-tags/template-tags.php:231
2493
- #: dist/plugins/wp_title.php:59 inc/template-tags/template-tags.php:231
2494
- #: inc/wp-title.php:59
2495
  #, php-format
2496
  msgid "Page of %s"
2497
  msgstr "%sページ目"
2498
 
2499
- #: dist/plugins/vk-blocks/vk-blocks-functions.php:58
2500
- #: inc/vk-blocks/package/vk-blocks-functions.php:58
2501
  msgid "Blocks(Beta)"
2502
  msgstr ""
2503
 
2504
- #: dist/plugins/vk-blocks/vk-blocks-functions.php:63
2505
- #: inc/vk-blocks/package/vk-blocks-functions.php:63
2506
  msgid "Blocks Layout(Beta)"
2507
  msgstr ""
2508
 
2509
- #: dist/plugins/wp_title.php:47 inc/wp-title.php:47
 
 
 
 
 
2510
  #, php-format
2511
  msgid "Search Results for : %s"
2512
  msgstr "検索結果 : %s"
2513
 
2514
- #: dist/plugins/wp_title.php:50 inc/wp-title.php:50
2515
  msgid "Not found"
2516
  msgstr "見つかりません"
2517
 
2518
- #: dist/plugins/wp_title.php:70 dist/plugins/wp_title.php:82
2519
- #: dist/plugins/wp_title.php:86 inc/wp-title.php:70 inc/wp-title.php:82
2520
- #: inc/wp-title.php:86
2521
- msgid "&lt;title&gt; tag of homepage"
2522
- msgstr "トップページの&lt;title&gt;タグ"
2523
-
2524
- #: dist/plugins/wp_title.php:90 inc/wp-title.php:90
2525
  msgid "title of the site"
2526
  msgstr "サイトのタイトル"
2527
 
2528
- #: dist/plugins/wp_title.php:91 inc/wp-title.php:91
2529
  #, php-format
2530
  msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
2531
  msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
2532
 
2533
- #: dist/plugins/wp_title.php:94 inc/wp-title.php:94
2534
  #, php-format
2535
  msgid ""
2536
  "For example, it appears in the form of <br />&lt;title&gt;page title | "
@@ -2539,7 +2492,7 @@ msgstr ""
2539
  "例えば固定ページであれば<br>&lt;title&gt;固定ページ名 | %1$s&lt;/title&gt;"
2540
  "<br>というような形式で出力されます。"
2541
 
2542
- #: dist/plugins/wp_title.php:96 inc/wp-title.php:96
2543
  #, php-format
2544
  msgid ""
2545
  "However, it might have negative impact on search engine rankings if the &lt;"
@@ -2551,11 +2504,11 @@ msgstr ""
2551
  "くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短くまとめる"
2552
  "事が望ましいです。"
2553
 
2554
- #: dist/plugins/wp_title.php:100 inc/wp-title.php:100
2555
  msgid "Tagline"
2556
  msgstr "キャッチフレーズ"
2557
 
2558
- #: dist/plugins/wp_title.php:101 inc/wp-title.php:101
2559
  #, php-format
2560
  msgid ""
2561
  "In the top page will be output usually in the form of <br />&lt;title&gt;"
@@ -2564,7 +2517,7 @@ msgstr ""
2564
  "トップページでは<br>&lt;title&gt;%1$s | %2$s&lt;/title&gt;<br>というような形"
2565
  "式で出力されます。"
2566
 
2567
- #: dist/plugins/wp_title.php:104 inc/wp-title.php:104
2568
  msgid ""
2569
  "However, it may be too long in the above format. If the input to the input "
2570
  "field of the following, its contents will be reflected."
@@ -2572,100 +2525,92 @@ msgstr ""
2572
  "しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に入"
2573
  "力すれば、その内容が反映されます。"
2574
 
2575
- #: dist/veu-packages.php:78 veu-packages.php:55
2576
  msgid "Print link fontawesome"
2577
  msgstr "fontawesome link タグを出力"
2578
 
2579
- #: dist/veu-packages.php:79 veu-packages.php:56
2580
  msgid "Print fontawesome link tag to html head."
2581
  msgstr ""
2582
  "fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
2583
  "テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
2584
  "さい。"
2585
 
2586
- #: dist/veu-packages.php:89 veu-packages.php:66
2587
  msgid "VK Blocks ( Beta )"
2588
  msgstr "VK Blocks ( Beta )"
2589
 
2590
- #: dist/veu-packages.php:90 veu-packages.php:67
2591
  msgid "Extends Gutenberg's blocks."
2592
  msgstr "Gutenbergのブロックを拡張します。"
2593
 
2594
- #: dist/veu-packages.php:100 veu-packages.php:77
2595
  msgid "Rewrite the title tag"
2596
  msgstr "タイトルタグの書き換え"
2597
 
2598
- #: dist/veu-packages.php:101 veu-packages.php:78
2599
  msgid "Print is rewritten by its own rules to html head."
2600
  msgstr ""
2601
  "head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
2602
  "EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
2603
  "ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
2604
 
2605
- #: dist/veu-packages.php:104 dist/veu-packages.php:122
2606
- #: dist/veu-packages.php:161 dist/veu-packages.php:179
2607
- #: dist/veu-packages.php:209 dist/veu-packages.php:227
2608
- #: dist/veu-packages.php:268 dist/veu-packages.php:303
2609
- #: dist/veu-packages.php:326 dist/veu-packages.php:383 veu-packages.php:81
2610
- #: veu-packages.php:121 veu-packages.php:139 veu-packages.php:169
2611
- #: veu-packages.php:187 veu-packages.php:228 veu-packages.php:263
2612
- #: veu-packages.php:286 veu-packages.php:354 veu-packages.php:449
2613
  msgid "Setting"
2614
  msgstr "設定"
2615
 
2616
- #: dist/veu-packages.php:118 veu-packages.php:445
2617
- msgid "Print meta Keyword"
2618
- msgstr "メタキーワードを出力"
2619
-
2620
- #: dist/veu-packages.php:119 veu-packages.php:446
2621
- msgid "Print meta Keyword to html head."
2622
- msgstr "ヘッダーにメタキーワードを出力します。"
2623
-
2624
- #: dist/veu-packages.php:135 veu-packages.php:95
2625
  msgid "Print meta description"
2626
  msgstr "メタディスクリプションタグを出力"
2627
 
2628
- #: dist/veu-packages.php:136 veu-packages.php:96
2629
  msgid "Print meta description to html head."
2630
  msgstr ""
2631
  "投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
2632
  "head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
2633
  "している場合はチェックを外して下さい。"
2634
 
2635
- #: dist/veu-packages.php:145 veu-packages.php:105
2636
  msgid "Main setting page"
2637
  msgstr "メイン設定画面"
2638
 
2639
- #: dist/veu-packages.php:147 veu-packages.php:107
2640
  msgid "Print og tags to html head."
2641
  msgstr "OG タグを html head 内へ出力します。"
2642
 
2643
- #: dist/veu-packages.php:148 veu-packages.php:108
2644
  msgid "Print twitter card tags to html head."
2645
  msgstr "Twitter カードタグを html head 内へ出力します。"
2646
 
2647
- #: dist/veu-packages.php:149 veu-packages.php:109
2648
  msgid "Print social bookmark buttons."
2649
  msgstr "ソーシャルブックマークボタンを表示します。"
2650
 
2651
- #: dist/veu-packages.php:150 veu-packages.php:110
2652
  msgid "Facebook Page Plugin widget."
2653
  msgstr "Facebookページプラグインウィジェット"
2654
 
2655
- #: dist/veu-packages.php:151 veu-packages.php:111
2656
  msgid "Print Follow me box to content bottom."
2657
  msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
2658
 
2659
- #: dist/veu-packages.php:153 veu-packages.php:113
2660
  #, php-format
2661
  msgid "* You can stop the function separately from the %s."
2662
  msgstr "%s から個別に機能を停止する事ができます。"
2663
 
2664
- #: dist/veu-packages.php:157 veu-packages.php:117
2665
  msgid "Social media cooperation"
2666
  msgstr "ソーシャルメディア連携"
2667
 
2668
- #: dist/veu-packages.php:176 veu-packages.php:136
2669
  msgid "Print Google Analytics tracking code."
2670
  msgstr ""
2671
  "Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
@@ -2673,64 +2618,64 @@ msgstr ""
2673
  "のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
2674
  "合はチェックを外して下さい。"
2675
 
2676
- #: dist/veu-packages.php:192 veu-packages.php:152
2677
  msgid "You can use various widgets."
2678
  msgstr ""
2679
  "以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
2680
  "→「ウィジェット」の設定画面より行って下さい。"
2681
 
2682
- #: dist/veu-packages.php:194 veu-packages.php:154
2683
  msgid ""
2684
  "VK_Recent Posts - display the link text and the date of the latest article "
2685
  "title."
2686
  msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
2687
 
2688
- #: dist/veu-packages.php:195 veu-packages.php:155
2689
  msgid ""
2690
  "VK_Page content to widget - display the contents of the page to the widgets."
2691
  msgstr ""
2692
  "VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
2693
 
2694
- #: dist/veu-packages.php:196 veu-packages.php:156
2695
  msgid "VK_Profile - display the profile entered in the widget."
2696
  msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
2697
 
2698
- #: dist/veu-packages.php:197 veu-packages.php:157
2699
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
2700
  msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
2701
 
2702
- #: dist/veu-packages.php:198 veu-packages.php:158
2703
  msgid "VK_3PR area - display the 3PR area."
2704
  msgstr "VK_3PR エリア - 3PR エリアを表示します。"
2705
 
2706
- #: dist/veu-packages.php:199 veu-packages.php:159
2707
  msgid "categories/tags list"
2708
  msgstr "カテゴリー/タグ リスト"
2709
 
2710
- #: dist/veu-packages.php:199 veu-packages.php:159
2711
  msgid "Displays a categories, tags or format list."
2712
  msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
2713
 
2714
- #: dist/veu-packages.php:205 veu-packages.php:165
2715
  msgid "Widgets"
2716
  msgstr "ウィジェット"
2717
 
2718
- #: dist/veu-packages.php:223 veu-packages.php:183
2719
  msgid "CSS customize"
2720
  msgstr "CSSカスタマイズ"
2721
 
2722
- #: dist/veu-packages.php:224 veu-packages.php:184
2723
  msgid "You can set Customize CSS."
2724
  msgstr ""
2725
  "テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
2726
  "追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
2727
  "さい。"
2728
 
2729
- #: dist/veu-packages.php:242 veu-packages.php:202
2730
  msgid "Child page index"
2731
  msgstr "子ページの一覧表示"
2732
 
2733
- #: dist/veu-packages.php:243 veu-packages.php:203
2734
  msgid ""
2735
  "At the bottom of the specified page, it will display a list of the child "
2736
  "page."
@@ -2738,126 +2683,134 @@ msgstr ""
2738
  "指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
2739
  "サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
2740
 
2741
- #: dist/veu-packages.php:253 veu-packages.php:213
2742
  msgid "Page list from ancestor"
2743
  msgstr "先祖階層からの子ページリスト表示"
2744
 
2745
- #: dist/veu-packages.php:254 veu-packages.php:214
2746
  msgid "Display Page list from ancestor at after content."
2747
  msgstr ""
2748
  "現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
2749
 
2750
- #: dist/veu-packages.php:265 veu-packages.php:225
2751
  msgid "Display Contact Section at after content."
2752
  msgstr "お問い合わせ情報を本文の下に表示する"
2753
 
2754
- #: dist/veu-packages.php:282 veu-packages.php:242
2755
  msgid "Display HTML Site Map"
2756
  msgstr "HTMLサイトマップの表示"
2757
 
2758
- #: dist/veu-packages.php:283 veu-packages.php:243
2759
  msgid "It displays a HTML Site Map to the specified page."
2760
  msgstr "指定した固定ページにHTMLサイトマップを表示します。"
2761
 
2762
- #: dist/veu-packages.php:308 veu-packages.php:268
2763
  msgid "Contents setting"
2764
  msgstr "CTA表示内容設定"
2765
 
2766
- #: dist/veu-packages.php:323 veu-packages.php:283
2767
  msgid "Insert ads to content."
2768
  msgstr "記事に広告を挿入します"
2769
 
2770
- #: dist/veu-packages.php:340 veu-packages.php:300
2771
  msgid "Print Related posts lists to post content bottom."
2772
  msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
2773
 
2774
- #: dist/veu-packages.php:350 veu-packages.php:321
 
 
 
 
 
 
 
 
2775
  msgid "Disable ping back"
2776
  msgstr "ping backを停止"
2777
 
2778
- #: dist/veu-packages.php:351 veu-packages.php:322
2779
  msgid "Disable xmlrpc ping back."
2780
  msgstr "xmlrpcを停止"
2781
 
2782
- #: dist/veu-packages.php:359 dist/veu-packages.php:360 veu-packages.php:330
2783
  #: veu-packages.php:331
2784
  msgid "Disable dashbord"
2785
  msgstr "ダッシュボードに最新情報を表示しない"
2786
 
2787
- #: dist/veu-packages.php:368 veu-packages.php:339
2788
  msgid "Admin bar manu"
2789
  msgstr "管理バーメニュー"
2790
 
2791
- #: dist/veu-packages.php:369 veu-packages.php:340
2792
  msgid "Add ExUnit menu to admin bar."
2793
  msgstr "ExUnitのメニューを管理バーに表示する"
2794
 
2795
- #: dist/veu-packages.php:379 veu-packages.php:350
2796
  msgid "Post Type Manager"
2797
  msgstr "カスタム投稿タイプマネージャー"
2798
 
2799
- #: dist/veu-packages.php:380 veu-packages.php:351
2800
  msgid "Add custom post types and custom taxonomies."
2801
  msgstr "カスタム投稿タイプやカスタム分類を追加します。"
2802
 
2803
- #: dist/veu-packages.php:397 veu-packages.php:368
2804
  msgid "Page Top Button"
2805
  msgstr "ページトップへ戻るボタン"
2806
 
2807
- #: dist/veu-packages.php:398 veu-packages.php:369
2808
  msgid ""
2809
  "The page top button is displayed in the lower right corner of the screen."
2810
  msgstr "ページトップへ戻るボタンは、画面の右下隅に表示されます。"
2811
 
2812
- #: dist/veu-packages.php:408 veu-packages.php:379
2813
  msgid "Smooth scroll"
2814
  msgstr "スムーススクロール"
2815
 
2816
- #: dist/veu-packages.php:409 veu-packages.php:380
2817
  msgid "Add smooth scroll at anchor link in same page."
2818
  msgstr ""
2819
  "ページ内のアンカーリンククリックした際にスムーズにスクロースします。<br>※他の"
2820
  "jsと干渉する事があります。独自にjsで制御している箇所をクリックしても正しく動"
2821
  "作しない場合はこの機能を停止してみてください。"
2822
 
2823
- #: dist/veu-packages.php:419 veu-packages.php:390
2824
  msgid "Add body class"
2825
  msgstr "Body class の追加"
2826
 
2827
- #: dist/veu-packages.php:420 veu-packages.php:391
2828
  msgid "Add \"Post type\", \"Page slug\" etc class name to the body class."
2829
  msgstr "投稿タイプ名や固定ページのスラッグ名をbodyタグのクラスに追加します。"
2830
 
2831
- #: dist/veu-packages.php:430 veu-packages.php:401
2832
  msgid "Navi menu class custom"
2833
  msgstr "ナビメニューclassの改変"
2834
 
2835
- #: dist/veu-packages.php:431 veu-packages.php:402
2836
  msgid "Current class tuning of navi menu."
2837
  msgstr ""
2838
  "メニューに投稿トップやカスタム投稿タイプアーカイブページが設定された時に、詳"
2839
  "細ページや関連するカスタム分類ページを表示している時でも適切にcurrentクラスが"
2840
  "追加されるように調整します。"
2841
 
2842
- #: dist/veu-packages.php:442 veu-packages.php:413
2843
  msgid "Display Eye Catch image at before content."
2844
  msgstr ""
2845
  "アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
2846
  "す。"
2847
 
2848
- #: dist/veu-packages.php:452 veu-packages.php:423
2849
  msgid "TinyMCE Style Tags"
2850
  msgstr "TinyMCE スタイルタグ"
2851
 
2852
- #: dist/veu-packages.php:453 veu-packages.php:424
2853
  msgid "Add TinyMCE Editor to style tags."
2854
  msgstr "スタイルタグにTinyMCEエディタを追加する"
2855
 
2856
- #: dist/veu-packages.php:463 veu-packages.php:434
2857
  msgid "Print Bootstrap css ( grid / button / table )"
2858
  msgstr "Bootstrap の CSS(grid/button/tableのみ)を出力"
2859
 
2860
- #: dist/veu-packages.php:464 veu-packages.php:435
2861
  msgid ""
2862
  "If your using theme has already including Bootstrap, you deactivate this "
2863
  "item."
@@ -2866,17 +2819,29 @@ msgstr ""
2866
  "(Lightningなど)やプラグインで Bootstrap を既に読み込んでいる場合はチェック"
2867
  "を外して下さい。"
2868
 
2869
- #: dist/veu-packages.php:474 veu-packages.php:463
 
 
 
 
 
 
 
 
 
 
 
 
2870
  msgid "Favicon setting"
2871
  msgstr "ファビコン設定"
2872
 
2873
- #: dist/veu-packages.php:475 veu-packages.php:464
2874
  msgid "About favicon."
2875
  msgstr ""
2876
  "ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
2877
  "(ファビコン)を設定します。"
2878
 
2879
- #: dist/veu-packages.php:475 veu-packages.php:464
2880
  msgid ""
2881
  "This feature will be discontinued shortly.<br>You can set the site icon from "
2882
  "\"Site Identity\" panel of \"Themes > Customize\"."
@@ -2885,68 +2850,71 @@ msgstr ""
2885
  "サイトアイコンは「外観 > カスタマイズ」の「サイト基本情報」パネルから設定でき"
2886
  "ます。"
2887
 
2888
- #: dist/vkExUnit.php:97 vkExUnit.php:96
2889
  #, php-format
2890
  msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
2891
  msgstr "使用中のPHPのバージョン(%s) が古すぎるので VK ExUnit は動作しません。"
2892
 
2893
- #: dist/vkExUnit.php:100 vkExUnit.php:99
2894
  msgid "VK ExUnit supports PHP5.6 or later."
2895
  msgstr "VKExUnit がサポートしているPHPのバージョンは5.6以降です"
2896
 
2897
- #: dist/vkExUnit.php:116 vkExUnit.php:115
2898
  #, php-format
2899
  msgid "Current PHP Version(%s) is old."
2900
  msgstr "使用中のPHPのバージョン(%s) が古いです。"
2901
 
2902
- #: dist/vkExUnit.php:117 vkExUnit.php:116
2903
  #, php-format
2904
  msgid "%s supports PHP5.6 or later."
2905
  msgstr "%s はPHP5.6以降をサポートしています。"
2906
 
2907
- #: inc/call-to-action/package/class-vk-call-to-action.php:270
2908
- msgid ""
2909
- "The entered contents are displayed directly. You can not use Dynamic blocks, "
2910
- "reuse blocks, etc."
2911
- msgstr ""
2912
- "入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用でき"
2913
- "ません。"
2914
-
2915
- #: inc/noindex/class-veu-metabox-noindex.php:10
2916
- msgid "Noindex setting"
2917
- msgstr "noindex設定"
2918
-
2919
- #: inc/noindex/class-veu-metabox-noindex.php:34
2920
- msgid "Print noindex tag that to be do not display on search result."
2921
- msgstr "検索結果に表示されないようにnoindexタグを出力する。"
2922
 
2923
- #: inc/sitemap-page/class-veu-metabox-sitemap.php:14
2924
- msgid "Hide setting of HTML sitemap"
2925
- msgstr "HTMLサイトマップの非表示設定"
2926
 
2927
- #: inc/sns/class-veu-metabox-sns-button.php:14
2928
- msgid "Hide setting of share button"
2929
- msgstr "シェアボタンの非表示設定"
 
 
 
 
2930
 
2931
- #: inc/sns/class-veu-metabox-sns-button.php:39
2932
- msgid "Display setting of share button"
2933
- msgstr "ソーシャルボタンの表示設定"
2934
 
2935
- #: inc/sns/class-veu-metabox-sns-title.php:14
2936
- msgid "SNS Title"
2937
- msgstr "OGPタイトル"
2938
 
2939
- #: veu-packages.php:310
2940
- msgid "Noindex additional function"
2941
- msgstr "noindex 追加機能"
 
 
 
 
 
 
 
 
 
 
 
 
 
2942
 
2943
- #: veu-packages.php:311
2944
- msgid "Print noindex tag to html head."
2945
- msgstr "noindex タグを html head 内へ出力します。"
 
2946
 
2947
- #: veu-packages.php:446
2948
- msgid "This feature will be discontinued shortly."
2949
- msgstr "この機能は間もなく廃止されます。"
2950
 
2951
  #, fuzzy
2952
  #~| msgid "CTA common setting"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2019-09-10 01:32+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"
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/disable-guide.php:17 dist/admin/disable-guide.php:17
133
  msgid "Edit Guide"
134
  msgstr "編集ガイド"
135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  #: admin/vk-admin/package/class-vk-admin.php:290
137
+ #: dist/admin/vk-admin/package/class-vk-admin.php:290
138
  msgid "Sorry, there is no post"
139
  msgstr "お知らせはありません。"
140
 
141
  #: admin/vk-admin/package/class-vk-admin.php:344
142
+ #: dist/admin/vk-admin/package/class-vk-admin.php:344
143
  msgid "Vektor WordPress Information"
144
  msgstr "Vektor WordPress Information"
145
 
146
+ #: dist/inc/auto-eyecatch/class-veu-metabox-eyecatch.php:10
147
  #: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:10
148
  msgid "Automatic EyeCatch"
149
  msgstr "アイキャッチ自動挿入"
150
 
151
+ #: dist/inc/auto-eyecatch/class-veu-metabox-eyecatch.php:33
152
  #: inc/auto-eyecatch/class-veu-metabox-eyecatch.php:33
153
  msgid "Do not set eyecatch image automatic."
154
  msgstr "アイキャッチ画像を自動挿入しない"
155
 
156
+ #: dist/inc/bootstrap.php:36 inc/bootstrap.php:36
157
  msgid "Key color"
158
  msgstr "キーカラー"
159
 
160
+ #: dist/inc/bootstrap.php:47 inc/bootstrap.php:47
161
  msgid "Key color(dark)"
162
  msgstr "キーカラー(暗)"
163
 
164
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  #: inc/call-to-action/package/class-veu-metabox-cta.php:14
166
  msgid "Call to Action setting"
167
  msgstr "CTA設定"
168
 
169
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:39
170
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:603
171
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:74
 
 
 
 
 
172
  #: inc/call-to-action/package/class-veu-metabox-cta.php:39
173
+ #: inc/call-to-action/package/class-vk-call-to-action.php:603
174
  #: inc/call-to-action/package/widget-call-to-action.php:74
175
  msgid "Random"
176
  msgstr "ランダム表示"
177
 
178
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:45
179
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:610
180
  #: inc/call-to-action/package/class-veu-metabox-cta.php:45
181
+ #: inc/call-to-action/package/class-vk-call-to-action.php:610
182
  msgid "Disable display"
183
  msgstr "表示しない"
184
 
185
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:51
186
  #: inc/call-to-action/package/class-veu-metabox-cta.php:51
187
  msgid "Follow common setting"
188
  msgstr "共通設定を使用"
189
 
190
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:62
191
  #: inc/call-to-action/package/class-veu-metabox-cta.php:62
192
  msgid "CTA common setting"
193
  msgstr "CTA共通設定"
194
 
195
+ #: dist/inc/call-to-action/package/class-veu-metabox-cta.php:63
196
+ #: dist/inc/call-to-action/package/view-adminsetting.php:31
197
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:88
198
  #: inc/call-to-action/package/class-veu-metabox-cta.php:63
199
  #: inc/call-to-action/package/view-adminsetting.php:31
200
  #: inc/call-to-action/package/widget-call-to-action.php:88
201
  msgid "Show CTA index page"
202
  msgstr "CTAの一覧を表示"
203
 
204
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:63
205
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:394
206
+ #: inc/call-to-action/package/class-vk-call-to-action.php:63
207
+ #: inc/call-to-action/package/class-vk-call-to-action.php:394
208
+ msgid "Edit CTA"
209
+ msgstr "CTAの編集"
210
+
211
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:64
212
+ #: inc/call-to-action/package/class-vk-call-to-action.php:64
213
+ msgid "Add new CTA"
214
+ msgstr "CTAの新規作成"
215
+
216
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:65
217
+ #: inc/call-to-action/package/class-vk-call-to-action.php:65
218
+ msgid "New CTA"
219
+ msgstr "CTA 新規作成"
220
+
221
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:92
222
+ #: inc/call-to-action/package/class-vk-call-to-action.php:92
223
+ msgid "CTA Contents"
224
+ msgstr "CTA Contents"
225
+
226
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:268
227
  #: inc/call-to-action/package/class-vk-call-to-action.php:268
228
  msgid ""
229
  "You can create it with a free layout in the content field using, such as "
232
  "VK Blocks の アウターブロックやPR Content ブロックを使って本文欄に自由なレイ"
233
  "アウトで作成する事もできます。"
234
 
235
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:269
236
  #: inc/call-to-action/package/class-vk-call-to-action.php:269
237
  msgid ""
238
  "If the contents field is entered, the contents of the body will be displayed "
241
  "本文欄が入力されている場合は本文の内容が優先して表示されるので以下の内容は無"
242
  "視されます。"
243
 
244
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:270
245
+ #: inc/call-to-action/package/class-vk-call-to-action.php:270
 
 
 
246
  msgid ""
247
+ "The entered contents are displayed directly. You can not use Dynamic blocks, "
248
  "reuse blocks, etc."
249
  msgstr ""
250
  "入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用でき"
251
  "ません。"
252
 
253
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:274
254
  #: inc/call-to-action/package/class-vk-call-to-action.php:274
255
  msgid "CTA image"
256
  msgstr "CTA画像"
257
 
258
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:280
259
  #: inc/call-to-action/package/class-vk-call-to-action.php:280
260
  msgid "Add image"
261
  msgstr "画像を追加"
262
 
263
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:281
264
  #: inc/call-to-action/package/class-vk-call-to-action.php:281
265
  msgid "Change image"
266
  msgstr "画像を変更"
267
 
268
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:282
269
  #: inc/call-to-action/package/class-vk-call-to-action.php:282
270
  msgid "Remove image"
271
  msgstr "画像を削除"
272
 
273
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:287
274
  #: inc/call-to-action/package/class-vk-call-to-action.php:287
275
  msgid "CTA image position"
276
  msgstr "CTA画像の位置"
277
 
278
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:290
279
  #: inc/call-to-action/package/class-vk-call-to-action.php:290
280
  msgid "right"
281
  msgstr "右寄せ"
282
 
283
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:291
284
  #: inc/call-to-action/package/class-vk-call-to-action.php:291
285
  msgid "center"
286
  msgstr "中央"
287
 
288
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:292
289
  #: inc/call-to-action/package/class-vk-call-to-action.php:292
290
  msgid "left"
291
  msgstr "左寄せ"
292
 
293
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:296
294
  #: inc/call-to-action/package/class-vk-call-to-action.php:296
295
  msgid "Button text"
296
  msgstr "ボタンの表記文言"
297
 
298
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:300
299
  #: inc/call-to-action/package/class-vk-call-to-action.php:300
300
  msgid "Button icon"
301
  msgstr "ボタンアイコン"
302
 
303
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:301
304
+ #: dist/inc/other-widget/widget-button.php:122
305
  #: inc/call-to-action/package/class-vk-call-to-action.php:301
306
+ #: inc/other-widget/widget-button.php:122
307
  msgid "To choose your favorite icon, and enter the class."
308
  msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
309
 
310
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:302
311
+ #: dist/inc/other-widget/widget-button.php:123
312
  #: inc/call-to-action/package/class-vk-call-to-action.php:302
313
+ #: inc/other-widget/widget-button.php:123
314
  msgid "Before :"
315
  msgstr "文字の前 :"
316
 
317
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:304
318
+ #: dist/inc/other-widget/widget-button.php:125
319
  #: inc/call-to-action/package/class-vk-call-to-action.php:304
320
+ #: inc/other-widget/widget-button.php:125
321
  msgid "After :"
322
  msgstr "文字の後 :"
323
 
324
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:316
325
  #: inc/call-to-action/package/class-vk-call-to-action.php:316
326
  msgid "Button link url"
327
  msgstr "ボタンのリンク先URL"
328
 
329
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:329
330
  #: inc/call-to-action/package/class-vk-call-to-action.php:329
331
  msgid "Target window"
332
  msgstr "リンク先ターゲット"
333
 
334
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:331
335
  #: inc/call-to-action/package/class-vk-call-to-action.php:331
336
  msgid "Open in a self window"
337
  msgstr "同じウィンドウで開く"
338
 
339
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:333
340
  #: inc/call-to-action/package/class-vk-call-to-action.php:333
341
  msgid "Text message"
342
  msgstr "テキストメッセージ"
343
 
344
+ #: dist/inc/call-to-action/package/class-vk-call-to-action.php:339
345
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:91
346
  #: inc/call-to-action/package/class-vk-call-to-action.php:339
347
  #: inc/call-to-action/package/widget-call-to-action.php:91
348
  msgid "CTA setting"
349
  msgstr "CTA設定"
350
 
351
+ #: dist/inc/call-to-action/package/view-adminsetting.php:15
352
+ #: dist/veu-packages.php:259
353
  #: inc/call-to-action/package/view-adminsetting.php:15 veu-packages.php:259
354
  msgid "Call To Action"
355
  msgstr "Call To Action"
356
 
357
+ #: dist/inc/call-to-action/package/view-adminsetting.php:19
358
+ #: dist/veu-packages.php:251
359
  #: inc/call-to-action/package/view-adminsetting.php:19 veu-packages.php:251
360
  msgid "Display the CTA at the end of the post content."
361
  msgstr "投稿内容の最後にCTAを表示します。"
362
 
363
+ #: dist/inc/call-to-action/package/view-adminsetting.php:20
364
+ #: dist/veu-packages.php:253
365
  #: inc/call-to-action/package/view-adminsetting.php:20 veu-packages.php:253
366
  msgid ""
367
  "The CTA stands for \"Call to action\" and this is the area that prompts the "
370
  "CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
371
  "情報を表示します。"
372
 
373
+ #: dist/inc/call-to-action/package/view-adminsetting.php:21
374
+ #: dist/veu-packages.php:255
375
  #: inc/call-to-action/package/view-adminsetting.php:21 veu-packages.php:255
376
  msgid ""
377
  "As an example, text message and a link button for induction to the free "
380
  "例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
381
  "ンなどです。"
382
 
383
+ #: dist/inc/call-to-action/package/view-adminsetting.php:23
384
  #: inc/call-to-action/package/view-adminsetting.php:23
385
  msgid "How to use"
386
  msgstr "使い方"
387
 
388
+ #: dist/inc/call-to-action/package/view-adminsetting.php:26
389
  #: inc/call-to-action/package/view-adminsetting.php:26
390
  msgid ""
391
  "You register the contents on \"CTA\" that you want to display to bottom of "
392
  "the content."
393
  msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
394
 
395
+ #: dist/inc/call-to-action/package/view-adminsetting.php:27
396
  #: inc/call-to-action/package/view-adminsetting.php:27
397
  msgid "Choose the CTA to be displayed from the following."
398
  msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
399
 
400
+ #: dist/inc/call-to-action/package/view-adminsetting.php:28
401
  #: inc/call-to-action/package/view-adminsetting.php:28
402
  msgid ""
403
  "If you want to switch the CTA to be displayed on each post, please set in "
406
  "投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してくださ"
407
  "い。"
408
 
409
+ #: dist/inc/call-to-action/package/view-adminsetting.php:41
410
  #: inc/call-to-action/package/view-adminsetting.php:41
411
  msgid "Show index page"
412
  msgstr "一覧ページを表示する"
413
 
414
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:20
415
  #: inc/call-to-action/package/widget-call-to-action.php:20
416
  msgid "CTA"
417
  msgstr "CTA"
418
 
419
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:26
420
  #: inc/call-to-action/package/widget-call-to-action.php:26
421
  msgid "Select CTA and display it."
422
  msgstr "CTAを選択して表示します。"
423
 
424
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:66
425
  #: inc/call-to-action/package/widget-call-to-action.php:66
426
  msgid "Please select CTA to display."
427
  msgstr "表示するCTAを選択してください。"
428
 
429
+ #: dist/inc/call-to-action/package/widget-call-to-action.php:80
430
  #: inc/call-to-action/package/widget-call-to-action.php:80
431
  msgid "Please select"
432
  msgstr "選択してください"
433
 
434
+ #: dist/inc/child-page-index.php:79
435
+ #: dist/inc/other-widget/widget-3pr-area.php:198 inc/child-page-index.php:79
436
+ #: inc/other-widget/widget-3pr-area.php:198
437
  msgid "Read more"
438
  msgstr "詳しくはこちら"
439
 
440
+ #: dist/inc/child-page-index.php:142 dist/inc/other-widget/widget-page.php:166
441
+ #: inc/child-page-index.php:142 inc/other-widget/widget-page.php:166
 
442
  msgid "Display a child page index"
443
  msgstr "子ページ一覧の表示"
444
 
445
+ #: dist/inc/contact-section/contact-section.php:106
446
+ #: dist/inc/contact-section/contact-section.php:137
447
  #: inc/contact-section/contact-section.php:106
448
  #: inc/contact-section/contact-section.php:137
449
  msgid "Contact Information"
450
  msgstr "お問い合わせ情報"
451
 
452
+ #: dist/inc/contact-section/contact-section.php:116
453
+ #: dist/inc/contact-section/contact-section.php:148
454
+ #: dist/inc/contact-section/customizer.php:53
455
+ #: dist/inc/contact-section/customizer.php:67
456
  #: inc/contact-section/contact-section.php:116
457
  #: inc/contact-section/contact-section.php:148
458
  #: inc/contact-section/customizer.php:53 inc/contact-section/customizer.php:67
459
  msgid "Please feel free to inquire."
460
  msgstr "お気軽にお問い合わせください。"
461
 
462
+ #: dist/inc/contact-section/contact-section.php:119
463
+ #: dist/inc/contact-section/customizer.php:116
464
  #: inc/contact-section/contact-section.php:119
465
  #: inc/contact-section/customizer.php:116
466
  msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
467
  msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
468
 
469
+ #: dist/inc/contact-section/contact-section.php:121
470
+ #: dist/inc/contact-section/contact-section.php:123
471
+ #: dist/inc/contact-section/customizer.php:158
472
+ #: dist/inc/contact-section/customizer.php:200
473
  #: inc/contact-section/contact-section.php:121
474
  #: inc/contact-section/contact-section.php:123
475
  #: inc/contact-section/customizer.php:158
477
  msgid "Contact us"
478
  msgstr "お問い合わせ"
479
 
480
+ #: dist/inc/contact-section/contact-section.php:139
481
+ #: dist/inc/contact-section/customizer.php:33
482
  #: inc/contact-section/contact-section.php:139
483
  #: inc/contact-section/customizer.php:33
484
  msgid ""
488
  "ここに入力された内容が各固定ページ下部や『お問い合わせ情報』ウィジェット、"
489
  "『お問い合わせボタン』ウィジェットなどに反映されます。"
490
 
491
+ #: dist/inc/contact-section/contact-section.php:141
492
+ #: dist/inc/contact-section/customizer.php:35
493
  #: inc/contact-section/contact-section.php:141
494
  #: inc/contact-section/customizer.php:35
495
  msgid ""
499
  "固定ページに表示する場合は、各固定ページの編集画面で\"お問い合わせ情報の表示"
500
  "\"にチェックを入れる必要があります。"
501
 
502
+ #: dist/inc/contact-section/contact-section.php:145
503
+ #: dist/inc/contact-section/customizer.php:62
504
  #: inc/contact-section/contact-section.php:145
505
  #: inc/contact-section/customizer.php:62
506
  msgid "Message"
507
  msgstr "メッセージ"
508
 
509
+ #: dist/inc/contact-section/contact-section.php:148
510
+ #: dist/inc/contact-section/contact-section.php:155
511
+ #: dist/inc/contact-section/contact-section.php:162
512
+ #: dist/inc/contact-section/contact-section.php:169
513
+ #: dist/inc/contact-section/contact-section.php:177
514
+ #: dist/inc/contact-section/contact-section.php:185
515
+ #: dist/inc/contact-section/contact-section.php:193
516
+ #: dist/inc/contact-section/customizer.php:67
517
+ #: dist/inc/contact-section/customizer.php:88
518
+ #: dist/inc/contact-section/customizer.php:109
519
+ #: dist/inc/contact-section/customizer.php:130
520
+ #: dist/inc/contact-section/customizer.php:151
521
+ #: dist/inc/contact-section/customizer.php:172
522
+ #: dist/inc/contact-section/customizer.php:193
523
+ #: dist/inc/google_analytics/ga_admin.php:16 dist/inc/sns/sns_admin.php:38
 
524
  #: inc/contact-section/contact-section.php:148
525
  #: inc/contact-section/contact-section.php:155
526
  #: inc/contact-section/contact-section.php:162
538
  msgid "ex) "
539
  msgstr "例) "
540
 
541
+ #: dist/inc/contact-section/contact-section.php:152
542
+ #: dist/inc/contact-section/customizer.php:83
543
  #: inc/contact-section/contact-section.php:152
544
  #: inc/contact-section/customizer.php:83
545
  msgid "Phone number"
546
  msgstr "電話番号"
547
 
548
+ #: dist/inc/contact-section/contact-section.php:159
549
+ #: dist/inc/contact-section/customizer.php:104
550
  #: inc/contact-section/contact-section.php:159
551
  #: inc/contact-section/customizer.php:104
552
  msgid "Phone icon"
553
  msgstr "電話アイコン"
554
 
555
+ #: dist/inc/contact-section/contact-section.php:166
556
+ #: dist/inc/contact-section/contact-section.php:169
557
+ #: dist/inc/contact-section/customizer.php:125
558
+ #: dist/inc/contact-section/customizer.php:130
559
  #: inc/contact-section/contact-section.php:166
560
  #: inc/contact-section/contact-section.php:169
561
  #: inc/contact-section/customizer.php:125
563
  msgid "Office hours"
564
  msgstr "営業時間"
565
 
566
+ #: dist/inc/contact-section/contact-section.php:169
567
+ #: dist/inc/contact-section/customizer.php:130
568
  #: inc/contact-section/contact-section.php:169
569
  #: inc/contact-section/customizer.php:130
570
  msgid "Weekdays except holidays"
571
  msgstr "土日・祝日除く"
572
 
573
+ #: dist/inc/contact-section/contact-section.php:174
574
+ #: dist/inc/contact-section/customizer.php:146
575
  #: inc/contact-section/contact-section.php:174
576
  #: inc/contact-section/customizer.php:146
577
  msgid "The contact page URL"
578
  msgstr "お問い合わせ先URL"
579
 
580
+ #: dist/inc/contact-section/contact-section.php:177
581
+ #: dist/inc/contact-section/customizer.php:151
582
  #: inc/contact-section/contact-section.php:177
583
  #: inc/contact-section/customizer.php:151
584
  msgid "or"
585
  msgstr "もしくは"
586
 
587
+ #: dist/inc/contact-section/contact-section.php:178
588
+ #: dist/inc/contact-section/customizer.php:151
589
  #: inc/contact-section/contact-section.php:178
590
  #: inc/contact-section/customizer.php:151
591
  msgid "* If you fill in the blank, widget's contact button does not appear."
592
  msgstr "※ 未入力の場合、お問い合わせウィジェットには何も表示されません。"
593
 
594
+ #: dist/inc/contact-section/contact-section.php:182
595
+ #: dist/inc/contact-section/customizer.php:167
596
  #: inc/contact-section/contact-section.php:182
597
  #: inc/contact-section/customizer.php:167
598
  msgid "Contact button Text"
599
  msgstr "お問い合わせボタンに表示するテキスト"
600
 
601
+ #: dist/inc/contact-section/contact-section.php:185
602
+ #: dist/inc/contact-section/customizer.php:172
603
  #: inc/contact-section/contact-section.php:185
604
  #: inc/contact-section/customizer.php:172
605
  msgid "Contact Us from email."
606
  msgstr "メールでのお問い合わせはこちら"
607
 
608
+ #: dist/inc/contact-section/contact-section.php:190
609
+ #: dist/inc/contact-section/customizer.php:188
610
  #: inc/contact-section/contact-section.php:190
611
  #: inc/contact-section/customizer.php:188
612
  msgid "Contact button text( sub )"
613
  msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
614
 
615
+ #: dist/inc/contact-section/contact-section.php:194
616
+ #: dist/inc/contact-section/customizer.php:193
617
  #: inc/contact-section/contact-section.php:194
618
  #: inc/contact-section/customizer.php:193
619
  msgid "Email contact form"
620
  msgstr "お気軽にお問い合わせください。"
621
 
622
+ #: dist/inc/contact-section/contact-section.php:199
623
+ #: dist/inc/contact-section/customizer.php:209
624
  #: inc/contact-section/contact-section.php:199
625
  #: inc/contact-section/customizer.php:209
626
  msgid "Contact button short text for side widget"
627
  msgstr "お問い合わせボタンウィジェットに表示するテキスト"
628
 
629
+ #: dist/inc/contact-section/contact-section.php:203
630
+ #: dist/inc/contact-section/customizer.php:214
631
  #: inc/contact-section/contact-section.php:203
632
  #: inc/contact-section/customizer.php:214
633
  msgid "This will used to \"Contact Button\" widget."
635
  "このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの利"
636
  "用を想定していますので少ない文字数で設定してください。"
637
 
638
+ #: dist/inc/contact-section/contact-section.php:207
639
  #: inc/contact-section/contact-section.php:207
640
  msgid "Advanced Setting"
641
  msgstr "高度な設定"
642
 
643
+ #: dist/inc/contact-section/contact-section.php:216
644
+ #: dist/inc/contact-section/customizer.php:238
645
  #: inc/contact-section/contact-section.php:216
646
  #: inc/contact-section/customizer.php:238
647
  msgid "Inquiry Banner image"
648
  msgstr "お問い合わせバナー画像"
649
 
650
+ #: dist/inc/contact-section/contact-section.php:218
651
  #: inc/contact-section/contact-section.php:218
652
  msgid "Select Image"
653
  msgstr "画像を選択"
654
 
655
+ #: dist/inc/contact-section/contact-section.php:219
656
+ #: dist/inc/contact-section/customizer.php:228
657
  #: inc/contact-section/contact-section.php:219
658
  #: inc/contact-section/customizer.php:228
659
  msgid "Display the image instead of the above inquiry information"
660
  msgstr ""
661
  "画像が登録されている場合は標準のお問い合わせ情報ではなく画像が表示されます。"
662
 
663
+ #: dist/inc/contact-section/contact-section.php:223
664
+ #: dist/inc/contact-section/customizer.php:264
665
  #: inc/contact-section/contact-section.php:223
666
  #: inc/contact-section/customizer.php:264
667
  msgid "Display HTML message instead of the standard"
668
  msgstr "お問い合わせ情報として表示するHTML"
669
 
670
+ #: dist/inc/contact-section/contact-section.php:225
671
+ #: dist/inc/contact-section/customizer.php:257
672
  #: inc/contact-section/contact-section.php:225
673
  #: inc/contact-section/customizer.php:257
674
  msgid "HTML takes precedence over image"
675
  msgstr "HTMLが登録されている場合は画像より優先されます。"
676
 
677
+ #: dist/inc/contact-section/contact-section.php:247
678
  #: inc/contact-section/contact-section.php:247
679
  msgid "Display Contact Section"
680
  msgstr "お問い合わせ情報の表示"
681
 
682
+ #: dist/inc/contact-section/contact-section.php:395
683
+ #: dist/inc/contact-section/contact-section.php:448
684
+ #: inc/contact-section/contact-section.php:395
685
+ #: inc/contact-section/contact-section.php:448
686
  msgid "Edit contact information"
687
  msgstr "Contact情報を編集"
688
 
689
+ #: dist/inc/contact-section/contact-section.php:464
690
+ #: inc/contact-section/contact-section.php:464
691
  msgid "Contact Button"
692
  msgstr "お問い合わせボタン"
693
 
694
+ #: dist/inc/contact-section/contact-section.php:465
695
+ #: inc/contact-section/contact-section.php:465
696
  msgid "Display contact button."
697
  msgstr "お問い合わせボタンを表示します。"
698
 
699
+ #: dist/inc/contact-section/contact-section.php:466
700
+ #: dist/inc/contact-section/contact-section.php:494
701
+ #: dist/inc/contact-section/contact-section.php:516
702
+ #: inc/contact-section/contact-section.php:466
703
+ #: inc/contact-section/contact-section.php:494
704
+ #: inc/contact-section/contact-section.php:516
705
  #, php-format
706
  msgid ""
707
  "It is necessary to set the \"%s\" -> \"Contact Information\" section in "
709
  msgstr ""
710
  "「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要があります。"
711
 
712
+ #: dist/inc/contact-section/contact-section.php:493
713
+ #: inc/contact-section/contact-section.php:493
714
  msgid "Display contact button"
715
  msgstr "お問い合わせボタンを表示します。"
716
 
717
+ #: dist/inc/contact-section/contact-section.php:514 dist/veu-packages.php:224
718
+ #: inc/contact-section/contact-section.php:514 veu-packages.php:224
 
719
  msgid "Contact Section"
720
  msgstr "お問い合わせ情報"
721
 
722
+ #: dist/inc/contact-section/contact-section.php:515
723
+ #: inc/contact-section/contact-section.php:515
724
  msgid "Display Phone number and contact button etc."
725
  msgstr "電話番号とお問い合わせボタンなどを表示します。"
726
 
727
+ #: dist/inc/contact-section/contact-section.php:544
728
+ #: inc/contact-section/contact-section.php:544
729
  #, php-format
730
  msgid ""
731
  "*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
734
  "* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
735
  "す。"
736
 
737
+ #: dist/inc/contact-section/customizer.php:23
738
  #: inc/contact-section/customizer.php:23
739
  msgid "Contact Settings"
740
  msgstr "お問い合わせ情報"
741
 
742
+ #: dist/inc/contact-section/customizer.php:231
743
+ #: dist/inc/contact-section/customizer.php:260
744
  #: inc/contact-section/customizer.php:231
745
  #: inc/contact-section/customizer.php:260
746
  msgid "It is not reflected in the header."
747
  msgstr "ヘッダーには反映されません。"
748
 
749
+ #: dist/inc/css-customize/class-veu-metabox-css-customize.php:14
750
+ #: inc/css-customize/class-veu-metabox-css-customize.php:14
751
+ msgid "Custom CSS"
752
+ msgstr "カスタムCSS"
753
+
754
+ #: dist/inc/css-customize/css-customize-edit.php:2
755
+ #: dist/inc/css-customize/css-customize.php:43
756
+ #: dist/inc/css-customize/css-customize.php:57
757
+ #: dist/inc/css-customize/css-customize.php:58
758
  #: inc/css-customize/css-customize-edit.php:2
759
  #: inc/css-customize/css-customize.php:43
760
  #: inc/css-customize/css-customize.php:57
762
  msgid "CSS Customize"
763
  msgstr "CSSカスタマイズ"
764
 
765
+ #: dist/inc/css-customize/css-customize-edit.php:5
766
  #: inc/css-customize/css-customize-edit.php:5
767
  msgid "You can add custom CSS here."
768
  msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
769
 
770
+ #: dist/inc/css-customize/css-customize-edit.php:13
771
  #: inc/css-customize/css-customize-edit.php:13
772
  msgid "Save CSS"
773
  msgstr "CSSを保存する"
774
 
775
+ #: dist/inc/css-customize/css-customize.php:113
 
 
 
 
 
776
  #: inc/css-customize/css-customize.php:113
777
  msgid "Your custom CSS was saved."
778
  msgstr "CSSが保存されました"
779
 
780
+ #: dist/inc/css-customize/css-customize.php:116
781
  #: inc/css-customize/css-customize.php:116
782
  msgid "Error occured. Please try again."
783
  msgstr "何らかのエラー!! また試してみてください"
784
 
785
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:27
786
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:42
787
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:27
788
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:42
789
  msgid "Not recommended"
790
  msgstr "非推奨"
791
 
792
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:74
793
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:76
794
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:74
795
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:76
796
  msgid "Ex ) "
797
  msgstr "例 ) "
798
 
799
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:174
800
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:174
801
  msgid "Font Awesome"
802
  msgstr "Font Awesome"
803
 
804
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:195
805
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:195
806
  msgid "Font Awesome Version"
807
  msgstr "Font Awesome Version"
808
 
809
+ #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:198
810
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:198
811
  msgid "4.7 will be abolished in the near future."
812
  msgstr "4.7は将来的に廃止します。"
813
 
814
+ #: dist/inc/footer-copyright-change.php:6 inc/footer-copyright-change.php:6
815
  msgid ""
816
  "<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
817
  "\"https://lightning.nagoya\" target=\"_blank\" title=\"Free WordPress Theme "
825
  "nagoya/ja/\" target=\"_blank\">VK All in One Expansion Unit</a> by <a href="
826
  "\"//www.vektor-inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
827
 
828
+ #: dist/inc/google_analytics/ga_admin.php:9
829
+ #: dist/inc/google_analytics/ga_admin.php:13
830
+ #: dist/inc/google_analytics/google_analytics.php:23
831
  #: inc/google_analytics/ga_admin.php:9 inc/google_analytics/ga_admin.php:13
832
  #: inc/google_analytics/google_analytics.php:23
833
  msgid "Google Analytics Settings"
834
  msgstr "Google Analytics設定"
835
 
836
+ #: dist/inc/google_analytics/ga_admin.php:14
837
  #: inc/google_analytics/ga_admin.php:14
838
  msgid ""
839
  "Please fill in the Google Analytics ID from the Analytics embed code used in "
840
  "the site."
841
  msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
842
 
843
+ #: dist/inc/google_analytics/ga_admin.php:19
844
  #: inc/google_analytics/ga_admin.php:19
845
  msgid ""
846
  "Please select the type of Analytics code . (If you are unsure you can skip "
849
  "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
850
  "す )"
851
 
852
+ #: dist/inc/google_analytics/ga_admin.php:23
853
+ #: dist/inc/google_analytics/ga_customizer.php:74
854
  #: inc/google_analytics/ga_admin.php:23
855
  #: inc/google_analytics/ga_customizer.php:74
856
  msgid "Recommendation ( gtag )"
857
  msgstr "推奨 ( gtag )"
858
 
859
+ #: dist/inc/google_analytics/ga_admin.php:24
860
+ #: dist/inc/google_analytics/ga_customizer.php:75
861
  #: inc/google_analytics/ga_admin.php:24
862
  #: inc/google_analytics/ga_customizer.php:75
863
  msgid "Universal Analytics code ( analytics.js )"
864
  msgstr "ユニバーサル アナリティクスのコード ( analytics.js )"
865
 
866
+ #: dist/inc/google_analytics/ga_admin.php:25
867
+ #: dist/inc/google_analytics/ga_customizer.php:76
868
  #: inc/google_analytics/ga_admin.php:25
869
  #: inc/google_analytics/ga_customizer.php:76
870
  msgid "Normal code ( analytics.js )"
871
  msgstr "ノーマルのコード ( analytics.js )"
872
 
873
+ #: dist/inc/google_analytics/ga_customizer.php:24
874
  #: inc/google_analytics/ga_customizer.php:24
875
  msgid "Google Analtics Settings"
876
  msgstr "Google Analytics設定"
877
 
878
+ #: dist/inc/google_analytics/ga_customizer.php:45
879
  #: inc/google_analytics/ga_customizer.php:45
880
  msgid "Google Analytics ID"
881
  msgstr "Google Analyticsの ID"
882
 
883
+ #: dist/inc/google_analytics/ga_customizer.php:49
884
  #: inc/google_analytics/ga_customizer.php:49
885
  msgid ""
886
  "Please fill in the Google Analytics ID from the Analytics embed code used in "
889
  "このサイトで使用する Google アナリティクスの ID を入力して下さい。<br>例) "
890
  "XXXXXXXX-X"
891
 
892
+ #: dist/inc/google_analytics/ga_customizer.php:68
893
  #: inc/google_analytics/ga_customizer.php:68
894
  msgid "Select the type of Analytics code"
895
  msgstr "アナリティクスコードの種類を選択"
896
 
897
+ #: dist/inc/google_analytics/ga_customizer.php:78
898
  #: inc/google_analytics/ga_customizer.php:78
899
  msgid ""
900
  "Print the select the type of Analytics code.<br>(If you are unsure you can "
903
  "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
904
  "す。)"
905
 
906
+ #: dist/inc/icons.php:38 dist/inc/icons.php:68 inc/icons.php:38
907
  #: inc/icons.php:68
908
  msgid "icon setting"
909
  msgstr "アイコン設定"
910
 
911
+ #: dist/inc/icons.php:74 inc/icons.php:74
912
  #, php-format
913
  msgid ""
914
  "This feature will be discontinued shortly.<br>You can set the site icon from "
919
  "サイトアイコンは「<a href=%s>外観 > カスタマイズ</a>」の「サイト基本情報」パ"
920
  "ネルから設定できます。"
921
 
922
+ #: dist/inc/icons.php:81 inc/icons.php:81
923
  msgid "Favicon Setting"
924
  msgstr "ファビコン設定"
925
 
926
+ #: dist/inc/icons.php:83 inc/icons.php:83
927
  msgid "Choose icon"
928
  msgstr "アイコンを選択"
929
 
930
+ #: dist/inc/icons.php:84 inc/icons.php:84
931
  msgid "Please upload your \".ico\" file"
932
  msgstr "作成したicoファイルをアップロードしてください"
933
 
934
+ #: dist/inc/insert-ads.php:38 dist/inc/insert-ads.php:218
935
+ #: dist/veu-packages.php:282 inc/insert-ads.php:38 inc/insert-ads.php:218
936
  #: veu-packages.php:282
937
  msgid "Insert ads"
938
  msgstr "広告の挿入"
939
 
940
+ #: dist/inc/insert-ads.php:228 inc/insert-ads.php:228
941
  msgid "Google Auto ads"
942
  msgstr "Google自動広告"
943
 
944
+ #: dist/inc/insert-ads.php:233 inc/insert-ads.php:233
945
  msgid "About Google Auto ads"
946
  msgstr "Google自動広告について"
947
 
948
+ #: dist/inc/insert-ads.php:236 inc/insert-ads.php:236
949
  msgid ""
950
  "If you would like to set to Google Auto ads,Please fill in Publisher ID."
951
  msgstr ""
952
  "Google自動広告を設定する場合はチェックを入れて、サイト運営者IDを入力してくだ"
953
  "さい。"
954
 
955
+ #: dist/inc/insert-ads.php:238 inc/insert-ads.php:238
956
  msgid "Enable Google Auto ads"
957
  msgstr "Google自動広告を有効にする"
958
 
959
+ #: dist/inc/insert-ads.php:240 inc/insert-ads.php:240
960
  msgid "Publisher ID"
961
  msgstr "サイト運営者ID"
962
 
963
+ #: dist/inc/insert-ads.php:244 inc/insert-ads.php:244
964
  msgid "Google AdSense dashboard"
965
  msgstr "Google AdSense 管理画面"
966
 
967
+ #: dist/inc/insert-ads.php:246 inc/insert-ads.php:246
968
  #, php-format
969
  msgid ""
970
  "Publisher ID is you can investigate from the %s > Account information page."
971
  msgstr "サイト運営者IDは %s > アカウント情報 から確認できます。"
972
 
973
+ #: dist/inc/insert-ads.php:249 inc/insert-ads.php:249
974
  msgid "Designate anchor ads at the bottom."
975
  msgstr "アンカー広告を下部に指定する"
976
 
977
+ #: dist/inc/insert-ads.php:251 inc/insert-ads.php:251
978
  msgid ""
979
  "The layout may collapse by inserting Google Auto ads, but the correspondence "
980
  "varies depending on the kind, specification, theme etc. of advertisement, so "
985
  "中のテーマなどにより対応は様々ですので、表示崩れについては各自必要に応じてCSS"
986
  "を書いて修正してください。"
987
 
988
+ #: dist/inc/insert-ads.php:259 inc/insert-ads.php:259
989
  msgid "Insert ads to post."
990
  msgstr "投稿に広告を挿入"
991
 
992
+ #: dist/inc/insert-ads.php:261 inc/insert-ads.php:261
993
  msgid "Insert ads to before content and more tag and after content."
994
  msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
995
 
996
+ #: dist/inc/insert-ads.php:261 inc/insert-ads.php:261
997
  msgid "If you want to separate ads area, you fill two fields."
998
  msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
999
 
1000
+ #: dist/inc/insert-ads.php:263 inc/insert-ads.php:263
1001
  msgid "insert the ad [ before content ]"
1002
  msgstr "広告を挿入 [ 記事の最初 ]"
1003
 
1004
+ #: dist/inc/insert-ads.php:271 inc/insert-ads.php:271
1005
  msgid "insert the ad [ more tag ]"
1006
  msgstr "広告を挿入 [ moreタグ ]"
1007
 
1008
+ #: dist/inc/insert-ads.php:279 inc/insert-ads.php:279
1009
  msgid "insert the ad [ after content ]"
1010
  msgstr "広告を挿入 [ 記事の最後 ]"
1011
 
1012
+ #: dist/inc/meta-description.php:20 dist/inc/meta-description.php:31
1013
+ #: dist/inc/meta-description.php:34 inc/meta-description.php:20
1014
  #: inc/meta-description.php:31 inc/meta-description.php:34
1015
  msgid "Meta Description"
1016
  msgstr "メタディスクリプション"
1017
 
1018
+ #: dist/inc/meta-description.php:37 inc/meta-description.php:37
1019
  msgid ""
1020
  "What you have to complete the \"excerpt\" column of the edit screen of each "
1021
  "page will be reflected in the description of the meta tag."
1023
  "各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
1024
  "反映されます"
1025
 
1026
+ #: dist/inc/meta-description.php:38 inc/meta-description.php:38
1027
  msgid ""
1028
  "Description of meta tags in the search results screen of search sites such "
1029
  "as Google, will be Displayed, such as the bottom of the site title. If the "
1034
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
1035
  "内容が反映されます。"
1036
 
1037
+ #: dist/inc/meta-description.php:39 inc/meta-description.php:39
1038
  msgid ""
1039
  "The meta description of the top page is subject to the catchphrase of the "
1040
  "site. However, its contents will be reflected if the excerpt is entered in "
1044
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
1045
  "内容が反映されます。"
1046
 
1047
+ #: dist/inc/meta-description.php:40 inc/meta-description.php:40
1048
  msgid ""
1049
  "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
1050
  "each article edit page, and check the expert column display."
1053
  "ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
1054
  "で、チェックして下さい。"
1055
 
1056
+ #: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:14
1057
+ #: dist/inc/meta-keyword/meta-keyword.php:51
 
1058
  #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:14
1059
  #: inc/meta-keyword/meta-keyword.php:51
1060
  msgid "Meta Keywords"
1061
  msgstr "メタキーワード"
1062
 
1063
+ #: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:34
1064
+ #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:34
1065
+ msgid ""
1066
+ "To distinguish between individual keywords, please enter a , delimiter "
1067
+ "(optional)."
1068
+ msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
1069
+
1070
+ #: dist/inc/meta-keyword/class-veu-metabox-meta-keyword.php:35
1071
+ #: inc/meta-keyword/class-veu-metabox-meta-keyword.php:35
1072
+ #, php-format
1073
+ msgid "* keywords common to the entire site can be set from %s."
1074
+ msgstr "サイト全体のキーワードは %s より設定することができます。"
1075
+
1076
+ #: dist/inc/meta-keyword/meta-keyword.php:79
1077
+ #: inc/meta-keyword/meta-keyword.php:79
1078
  msgid "Meta Keyword"
1079
  msgstr "メタキーワード"
1080
 
1081
+ #: dist/inc/meta-keyword/meta-keyword.php:82
1082
+ #: inc/meta-keyword/meta-keyword.php:82
1083
  msgid "Common Keywords"
1084
  msgstr "共通キーワード設定"
1085
 
1086
+ #: dist/inc/meta-keyword/meta-keyword.php:83
1087
+ #: inc/meta-keyword/meta-keyword.php:83
1088
  msgid ""
1089
  "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
1090
  "if you want multiple keywords, enter with separator of \",\"."
1092
  "メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
1093
  "のキーワードを設定します。複数ある場合は「,」で区切ってください。"
1094
 
1095
+ #: dist/inc/meta-keyword/meta-keyword.php:86
1096
+ #: inc/meta-keyword/meta-keyword.php:86
1097
  msgid "This is not seriously, Because the SearchEngine does not care this."
1098
  msgstr ""
1099
  "あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
1100
  "クターとはなりません。"
1101
 
1102
+ #: dist/inc/meta-keyword/meta-keyword.php:87
1103
+ #: inc/meta-keyword/meta-keyword.php:87
1104
  msgid ""
1105
  "For each page individual keyword is enter at the edit screen of each "
1106
  "article. 10 keywords maximum, together with a each article keywords is "
1109
  "個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
1110
  "ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
1111
 
1112
+ #: dist/inc/meta-keyword/meta-keyword.php:88
1113
+ #: inc/meta-keyword/meta-keyword.php:88
1114
  msgid "\",\" separator at end of the last keyword is do not need."
1115
  msgstr "最後のキーワードの後ろに「,」は必要ありません。"
1116
 
1117
+ #: dist/inc/meta-keyword/meta-keyword.php:89
1118
+ #: inc/meta-keyword/meta-keyword.php:89
1119
  msgid "Example: WordPress,template,theme,free,GPL"
1120
  msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
1121
 
1122
+ #: dist/inc/noindex/class-veu-metabox-noindex.php:10
1123
+ #: inc/noindex/class-veu-metabox-noindex.php:10
1124
+ msgid "Noindex setting"
1125
+ msgstr "noindex設定"
 
 
1126
 
1127
+ #: dist/inc/noindex/class-veu-metabox-noindex.php:34
1128
+ #: inc/noindex/class-veu-metabox-noindex.php:34
1129
+ msgid "Print noindex tag that to be do not display on search result."
1130
+ msgstr "検索結果に表示されないようにnoindexタグを出力する。"
 
1131
 
1132
+ #: dist/inc/other-widget/widget-3pr-area.php:9
1133
+ #: dist/inc/other-widget/widget-3pr-area.php:161
1134
+ #: inc/other-widget/widget-3pr-area.php:9
1135
+ #: inc/other-widget/widget-3pr-area.php:161
1136
  msgid "3PR area"
1137
  msgstr "3PR エリア"
1138
 
1139
+ #: dist/inc/other-widget/widget-3pr-area.php:14
1140
+ #: inc/other-widget/widget-3pr-area.php:14
1141
  msgid "Displays a 3PR area"
1142
  msgstr "3PR エリアを表示します。"
1143
 
1144
+ #: dist/inc/other-widget/widget-3pr-area.php:20
1145
+ #: inc/other-widget/widget-3pr-area.php:20
1146
  msgid "3PR area1 title"
1147
  msgstr "3PR エリア1 タイトル"
1148
 
1149
+ #: dist/inc/other-widget/widget-3pr-area.php:28
1150
+ #: inc/other-widget/widget-3pr-area.php:28
1151
  msgid "3PR area2 title"
1152
  msgstr "3PR エリア2 タイトル"
1153
 
1154
+ #: dist/inc/other-widget/widget-3pr-area.php:36
1155
+ #: inc/other-widget/widget-3pr-area.php:36
1156
  msgid "3PR area3 title"
1157
  msgstr "3PR エリア3 タイトル"
1158
 
1159
+ #: dist/inc/other-widget/widget-3pr-area.php:54
1160
+ #: inc/other-widget/widget-3pr-area.php:54
1161
  msgid "3PR area setting"
1162
  msgstr "3PR エリア設定"
1163
 
1164
+ #: dist/inc/other-widget/widget-3pr-area.php:56
1165
+ #: dist/inc/other-widget/widget-new-posts.php:257
1166
+ #: dist/inc/other-widget/widget-page.php:126
1167
+ #: dist/inc/other-widget/widget-pr-blocks.php:111
1168
+ #: dist/inc/other-widget/widget-profile.php:55
1169
+ #: dist/inc/related_posts/related_posts.php:261
1170
+ #: dist/inc/sns/widget-fb-page-plugin.php:79 dist/inc/sns/widget-twitter.php:84
1171
+ #: inc/other-widget/widget-3pr-area.php:56
1172
+ #: inc/other-widget/widget-new-posts.php:257
1173
+ #: inc/other-widget/widget-page.php:126
1174
+ #: inc/other-widget/widget-pr-blocks.php:111
1175
+ #: inc/other-widget/widget-profile.php:55
 
1176
  #: inc/related_posts/related_posts.php:261 inc/sns/widget-fb-page-plugin.php:79
1177
  #: inc/sns/widget-twitter.php:84
1178
  msgid "Title:"
1179
  msgstr "タイトル"
1180
 
1181
+ #: dist/inc/other-widget/widget-3pr-area.php:62
1182
+ #: inc/other-widget/widget-3pr-area.php:62
1183
  msgid "Select image for PC:"
1184
  msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
1185
 
1186
+ #: dist/inc/other-widget/widget-3pr-area.php:72
1187
+ #: dist/inc/other-widget/widget-3pr-area.php:90
1188
+ #: dist/inc/other-widget/widget-new-posts.php:304
1189
+ #: dist/inc/other-widget/widget-pr-blocks.php:174
1190
+ #: dist/inc/other-widget/widget-profile.php:70
1191
+ #: inc/other-widget/widget-3pr-area.php:72
1192
+ #: inc/other-widget/widget-3pr-area.php:90
1193
+ #: inc/other-widget/widget-new-posts.php:304
1194
+ #: inc/other-widget/widget-pr-blocks.php:174
1195
+ #: inc/other-widget/widget-profile.php:70
1196
  msgid "Select image"
1197
  msgstr "画像を選択"
1198
 
1199
+ #: dist/inc/other-widget/widget-3pr-area.php:73
1200
+ #: dist/inc/other-widget/widget-3pr-area.php:91
1201
+ #: dist/inc/other-widget/widget-new-posts.php:305
1202
+ #: dist/inc/other-widget/widget-pr-blocks.php:175
1203
+ #: dist/inc/other-widget/widget-profile.php:71
1204
+ #: inc/other-widget/widget-3pr-area.php:73
1205
+ #: inc/other-widget/widget-3pr-area.php:91
1206
+ #: inc/other-widget/widget-new-posts.php:305
1207
+ #: inc/other-widget/widget-pr-blocks.php:175
1208
+ #: inc/other-widget/widget-profile.php:71
1209
  msgid "Clear image"
1210
  msgstr "画像クリア"
1211
 
1212
+ #: dist/inc/other-widget/widget-3pr-area.php:80
1213
+ #: inc/other-widget/widget-3pr-area.php:80
1214
  msgid "Select image for Mobile:"
1215
  msgstr ""
1216
  "スマホ用(ウィンドウサイズが 768px 以下の場合)に表示される画像を選択(橫 "
1217
  "690px 以上推奨。空欄も可)"
1218
 
1219
+ #: dist/inc/other-widget/widget-3pr-area.php:102
1220
+ #: dist/inc/other-widget/widget-pr-blocks.php:115
1221
+ #: inc/other-widget/widget-3pr-area.php:102
1222
+ #: inc/other-widget/widget-pr-blocks.php:115
1223
  msgid "Summary Text:"
1224
  msgstr "概要となるテキスト"
1225
 
1226
+ #: dist/inc/other-widget/widget-3pr-area.php:108
1227
+ #: dist/inc/other-widget/widget-pr-blocks.php:120
1228
+ #: inc/other-widget/widget-3pr-area.php:108
1229
+ #: inc/other-widget/widget-pr-blocks.php:120
1230
  msgid "Link URL:"
1231
  msgstr "リンク先ページのURL"
1232
 
1233
+ #: dist/inc/other-widget/widget-3pr-area.php:116
1234
+ #: dist/inc/other-widget/widget-banner.php:106
1235
+ #: dist/inc/other-widget/widget-pr-blocks.php:124
1236
+ #: inc/other-widget/widget-3pr-area.php:116
1237
+ #: inc/other-widget/widget-banner.php:106
1238
+ #: inc/other-widget/widget-pr-blocks.php:124
1239
  msgid "Open link new tab."
1240
  msgstr "リンクを別ウィンドウで開く"
1241
 
1242
+ #: dist/inc/other-widget/widget-archives.php:9 dist/veu-packages.php:160
1243
+ #: inc/other-widget/widget-archives.php:9 veu-packages.php:160
1244
  msgid "archive list"
1245
  msgstr "アーカイブリスト"
1246
 
1247
+ #: dist/inc/other-widget/widget-archives.php:14 dist/veu-packages.php:160
1248
+ #: inc/other-widget/widget-archives.php:14 veu-packages.php:160
1249
  msgid ""
1250
  "Displays a list of archives. You can choose the post type and also to "
1251
  "display archives by month or by year."
1253
  "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
1254
  "プを選択できます。"
1255
 
1256
+ #: dist/inc/other-widget/widget-archives.php:53
1257
+ #: dist/inc/other-widget/widget-archives.php:54
1258
+ #: inc/other-widget/widget-archives.php:53
1259
+ #: inc/other-widget/widget-archives.php:54
1260
  msgid "Monthly archives"
1261
  msgstr "月別アーカイブ"
1262
 
1263
+ #: dist/inc/other-widget/widget-archives.php:68
1264
+ #: dist/inc/other-widget/widget-new-posts.php:275
1265
+ #: dist/inc/other-widget/widget-new-posts.php:282
1266
+ #: inc/other-widget/widget-archives.php:68
1267
+ #: inc/other-widget/widget-new-posts.php:275
1268
+ #: inc/other-widget/widget-new-posts.php:282
1269
  msgid "Title"
1270
  msgstr "タイトル"
1271
 
1272
+ #: dist/inc/other-widget/widget-archives.php:72
1273
+ #: inc/other-widget/widget-archives.php:72
1274
  msgid "Post type"
1275
  msgstr "ポストタイプ"
1276
 
1277
+ #: dist/inc/other-widget/widget-archives.php:92
1278
+ #: inc/other-widget/widget-archives.php:92
1279
  msgid "Monthly"
1280
  msgstr "月別"
1281
 
1282
+ #: dist/inc/other-widget/widget-archives.php:99
1283
+ #: inc/other-widget/widget-archives.php:99
1284
  msgid "Yearly"
1285
  msgstr "年別"
1286
 
1287
+ #: dist/inc/other-widget/widget-archives.php:117
1288
+ #: inc/other-widget/widget-archives.php:117
1289
  msgid "archive"
1290
  msgstr "アーカイブ"
1291
 
1292
+ #: dist/inc/other-widget/widget-banner.php:15
1293
+ #: inc/other-widget/widget-banner.php:15
1294
  msgid "Banner"
1295
  msgstr "バナー"
1296
 
1297
+ #: dist/inc/other-widget/widget-banner.php:21
1298
+ #: inc/other-widget/widget-banner.php:21
1299
  msgid ""
1300
  "You can easily set up a banner simply by registering images and link "
1301
  "destinations."
1302
  msgstr "画像とリンク先を登録するだけで簡単にバナーを設定できます。"
1303
 
1304
+ #: dist/inc/other-widget/widget-banner.php:97
1305
+ #: inc/other-widget/widget-banner.php:97
1306
  msgid "Set image"
1307
  msgstr "画像を選択"
1308
 
1309
+ #: dist/inc/other-widget/widget-banner.php:107
1310
+ #: inc/other-widget/widget-banner.php:107
1311
  msgid "Alternative text"
1312
  msgstr "代替テキスト(alt)"
1313
 
1314
+ #: dist/inc/other-widget/widget-button.php:32
1315
+ #: inc/other-widget/widget-button.php:32
1316
  msgid "Button"
1317
  msgstr "ボタン"
1318
 
1319
+ #: dist/inc/other-widget/widget-button.php:37
1320
+ #: inc/other-widget/widget-button.php:37
1321
  msgid "You can set buttons for arbitrary text."
1322
  msgstr "任意のテキストのボタンを設定できます。"
1323
 
1324
+ #: dist/inc/other-widget/widget-button.php:116
1325
+ #: inc/other-widget/widget-button.php:116
1326
  msgid "Main text(Required):"
1327
  msgstr "ボタンテキスト(必須):"
1328
 
1329
+ #: dist/inc/other-widget/widget-button.php:121
1330
+ #: inc/other-widget/widget-button.php:121
1331
  msgid "Class name of the icon font"
1332
  msgstr "使用したいアイコンフォント"
1333
 
1334
+ #: dist/inc/other-widget/widget-button.php:134
1335
+ #: inc/other-widget/widget-button.php:134
1336
  msgid "Sub text:"
1337
  msgstr "サブテキスト:"
1338
 
1339
+ #: dist/inc/other-widget/widget-button.php:138
1340
+ #: inc/other-widget/widget-button.php:138
1341
  msgid "Link URL(Required):"
1342
  msgstr "リンク先ページのURL(必須):"
1343
 
1344
+ #: dist/inc/other-widget/widget-button.php:148
1345
+ #: inc/other-widget/widget-button.php:148
1346
  msgid "Open with new tab"
1347
  msgstr "リンクを別ウィンドウで開く"
1348
 
1349
+ #: dist/inc/other-widget/widget-button.php:151
1350
+ #: inc/other-widget/widget-button.php:151
1351
  msgid "Size"
1352
  msgstr "サイズ"
1353
 
1354
+ #: dist/inc/other-widget/widget-button.php:158
1355
+ #: inc/other-widget/widget-button.php:158
1356
  msgid "Small"
1357
  msgstr "小"
1358
 
1359
+ #: dist/inc/other-widget/widget-button.php:164
1360
+ #: inc/other-widget/widget-button.php:164
1361
  msgid "Medium"
1362
  msgstr "中"
1363
 
1364
+ #: dist/inc/other-widget/widget-button.php:170
1365
+ #: inc/other-widget/widget-button.php:170
1366
  msgid "Large"
1367
  msgstr "大"
1368
 
1369
+ #: dist/inc/other-widget/widget-button.php:174
1370
+ #: inc/other-widget/widget-button.php:174
1371
  msgid "Button color:"
1372
  msgstr "ボタンの色:"
1373
 
1374
+ #: dist/inc/other-widget/widget-button.php:211
1375
+ #: inc/other-widget/widget-button.php:211
1376
  msgid "Key Color(.primary)"
1377
  msgstr "キーカラー(.primary)"
1378
 
1379
+ #: dist/inc/other-widget/widget-button.php:212
1380
+ #: inc/other-widget/widget-button.php:212
1381
  msgid "No paint(.default)"
1382
  msgstr "塗りなし(.default)"
1383
 
1384
+ #: dist/inc/other-widget/widget-button.php:213
1385
+ #: inc/other-widget/widget-button.php:213
1386
  msgid "Light green(.success)"
1387
  msgstr "明るい緑(.success)"
1388
 
1389
+ #: dist/inc/other-widget/widget-button.php:214
1390
+ #: inc/other-widget/widget-button.php:214
1391
  msgid "Light blue(.info)"
1392
  msgstr "空色(.info)"
1393
 
1394
+ #: dist/inc/other-widget/widget-button.php:215
1395
+ #: inc/other-widget/widget-button.php:215
1396
  msgid "Orange(.warning)"
1397
  msgstr "オレンジ(.warning)"
1398
 
1399
+ #: dist/inc/other-widget/widget-button.php:216
1400
+ #: inc/other-widget/widget-button.php:216
1401
  msgid "Red(.danger)"
1402
  msgstr "赤(.danger)"
1403
 
1404
+ #: dist/inc/other-widget/widget-child-page-list.php:10
1405
+ #: inc/other-widget/widget-child-page-list.php:10
1406
  msgid "Child Page List"
1407
  msgstr "子ページのリスト"
1408
 
1409
+ #: dist/inc/other-widget/widget-child-page-list.php:15
1410
+ #: dist/inc/other-widget/widget-child-page-list.php:59
1411
+ #: inc/other-widget/widget-child-page-list.php:15
1412
+ #: inc/other-widget/widget-child-page-list.php:59
1413
  msgid "Display the child pages list from ancestor page."
1414
  msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
1415
 
1416
+ #: dist/inc/other-widget/widget-new-posts.php:12
1417
+ #: dist/inc/other-widget/widget-new-posts.php:231
1418
+ #: inc/other-widget/widget-new-posts.php:12
1419
+ #: inc/other-widget/widget-new-posts.php:231
1420
  msgid "Recent Posts"
1421
  msgstr "最新記事"
1422
 
1423
+ #: dist/inc/other-widget/widget-new-posts.php:17
1424
+ #: inc/other-widget/widget-new-posts.php:17
1425
  msgid "Displays a list of your most recent posts"
1426
  msgstr "最新の投稿記事リストを表示します。"
1427
 
1428
+ #: dist/inc/other-widget/widget-new-posts.php:268
1429
+ #: inc/other-widget/widget-new-posts.php:268
1430
  msgid "Display Format"
1431
  msgstr "表示形式"
1432
 
1433
+ #: dist/inc/other-widget/widget-new-posts.php:275
1434
+ #: inc/other-widget/widget-new-posts.php:275
1435
  msgid "Thumbnail"
1436
  msgstr "サムネイル画像"
1437
 
1438
+ #: dist/inc/other-widget/widget-new-posts.php:275
1439
+ #: dist/inc/other-widget/widget-new-posts.php:282
1440
+ #: inc/other-widget/widget-new-posts.php:275
1441
+ #: inc/other-widget/widget-new-posts.php:282
1442
  msgid "Date"
1443
  msgstr "日付"
1444
 
1445
+ #: dist/inc/other-widget/widget-new-posts.php:282
1446
+ #: dist/inc/other-widget/widget-taxonomies.php:26
1447
+ #: dist/inc/other-widget/widget-taxonomies.php:56
1448
+ #: dist/inc/other-widget/widget-taxonomies.php:57
1449
+ #: inc/other-widget/widget-new-posts.php:282
1450
+ #: inc/other-widget/widget-taxonomies.php:26
1451
+ #: inc/other-widget/widget-taxonomies.php:56
1452
+ #: inc/other-widget/widget-taxonomies.php:57
1453
  msgid "Category"
1454
  msgstr "カテゴリー"
1455
 
1456
+ #: dist/inc/other-widget/widget-new-posts.php:295
1457
+ #: inc/other-widget/widget-new-posts.php:295
1458
  msgid "Default thumbnail image:"
1459
  msgstr "デフォルトのサムネイル画像:"
1460
 
1461
+ #: dist/inc/other-widget/widget-new-posts.php:316
1462
+ #: inc/other-widget/widget-new-posts.php:316
1463
  msgid "Order by"
1464
  msgstr "表示順"
1465
 
1466
+ #: dist/inc/other-widget/widget-new-posts.php:323
1467
+ #: inc/other-widget/widget-new-posts.php:323
1468
  msgid "Publish date"
1469
  msgstr "公開日"
1470
 
1471
+ #: dist/inc/other-widget/widget-new-posts.php:329
1472
+ #: inc/other-widget/widget-new-posts.php:329
1473
  msgid "Modified date"
1474
  msgstr "最終更新日"
1475
 
1476
+ #: dist/inc/other-widget/widget-new-posts.php:333
1477
+ #: dist/inc/related_posts/related_posts.php:281
1478
+ #: inc/other-widget/widget-new-posts.php:333
1479
  #: inc/related_posts/related_posts.php:281
1480
  msgid "Display count"
1481
  msgstr "表示する記事数"
1482
 
1483
+ #: dist/inc/other-widget/widget-new-posts.php:338
1484
+ #: inc/other-widget/widget-new-posts.php:338
1485
  msgid "Slug for the custom type you want to display"
1486
  msgstr "表示したい記事タイプ"
1487
 
1488
+ #: dist/inc/other-widget/widget-new-posts.php:343
1489
+ #: inc/other-widget/widget-new-posts.php:343
1490
  msgid "taxonomy ID"
1491
  msgstr "カテゴリー(タクソノミー)ID"
1492
 
1493
+ #: dist/inc/other-widget/widget-new-posts.php:346
1494
+ #: inc/other-widget/widget-new-posts.php:346
1495
  msgid "if you need filtering by term, add the term ID separate by \",\"."
1496
  msgstr ""
1497
  "特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
1498
  "します。"
1499
 
1500
+ #: dist/inc/other-widget/widget-new-posts.php:348 dist/inc/sns/sns_admin.php:92
1501
+ #: inc/other-widget/widget-new-posts.php:348 inc/sns/sns_admin.php:92
 
1502
  msgid "if empty this area, I will do not filtering."
1503
  msgstr "空欄の場合はフィルタリングは行いません。"
1504
 
1505
+ #: dist/inc/other-widget/widget-new-posts.php:353
1506
+ #: inc/other-widget/widget-new-posts.php:353
1507
  msgid "Destination URL:"
1508
  msgstr "リンク先URL:"
1509
 
1510
+ #: dist/inc/other-widget/widget-new-posts.php:356
1511
+ #: inc/other-widget/widget-new-posts.php:356
1512
  msgid "Notation text:"
1513
  msgstr "表記テキスト:"
1514
 
1515
+ #: dist/inc/other-widget/widget-page.php:9 inc/other-widget/widget-page.php:9
 
1516
  msgid "page content to widget"
1517
  msgstr "固定ページ本文"
1518
 
1519
+ #: dist/inc/other-widget/widget-page.php:14 inc/other-widget/widget-page.php:14
 
1520
  msgid "Displays a page contents to widget."
1521
  msgstr "選択したページの内容を表示します。"
1522
 
1523
+ #: dist/inc/other-widget/widget-page.php:135
1524
+ #: inc/other-widget/widget-page.php:135
1525
  msgid "Display the entered title"
1526
  msgstr "入力したタイトルを表示する"
1527
 
1528
+ #: dist/inc/other-widget/widget-page.php:139
1529
+ #: inc/other-widget/widget-page.php:139
1530
  msgid "Display the title of page"
1531
  msgstr "固定ページのタイトルを表示する"
1532
 
1533
+ #: dist/inc/other-widget/widget-page.php:143
1534
+ #: inc/other-widget/widget-page.php:143
1535
  msgid "Do not display titles"
1536
  msgstr "タイトルを表示しない"
1537
 
1538
+ #: dist/inc/other-widget/widget-page.php:175 dist/inc/page-list-ancestor.php:94
1539
+ #: inc/other-widget/widget-page.php:175 inc/page-list-ancestor.php:94
 
1540
  msgid "Display a page list from ancestor"
1541
  msgstr "現在のページの先祖階層からの子ページリストを表示"
1542
 
1543
+ #: dist/inc/other-widget/widget-page.php:243
1544
+ #: inc/other-widget/widget-page.php:243
1545
  msgid "Edit"
1546
  msgstr "編集"
1547
 
1548
+ #: dist/inc/other-widget/widget-pr-blocks.php:17
1549
+ #: inc/other-widget/widget-pr-blocks.php:17
1550
  msgid "PR Blocks"
1551
  msgstr "PR Blocks"
1552
 
1553
+ #: dist/inc/other-widget/widget-pr-blocks.php:22
1554
+ #: inc/other-widget/widget-pr-blocks.php:22
1555
  msgid "Displays a circle image or icon font for pr blocks"
1556
  msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
1557
 
1558
+ #: dist/inc/other-widget/widget-pr-blocks.php:30
1559
+ #: inc/other-widget/widget-pr-blocks.php:30
1560
  msgid "Service"
1561
  msgstr "サービス紹介"
1562
 
1563
+ #: dist/inc/other-widget/widget-pr-blocks.php:40
1564
+ #: inc/other-widget/widget-pr-blocks.php:40
1565
  msgid "Company"
1566
  msgstr "会社案内"
1567
 
1568
+ #: dist/inc/other-widget/widget-pr-blocks.php:50
1569
+ #: inc/other-widget/widget-pr-blocks.php:50
1570
  msgid "Recruit"
1571
  msgstr "採用情報"
1572
 
1573
+ #: dist/inc/other-widget/widget-pr-blocks.php:60
1574
+ #: inc/other-widget/widget-pr-blocks.php:60
1575
  msgid "Contact"
1576
  msgstr "Contact"
1577
 
1578
+ #: dist/inc/other-widget/widget-pr-blocks.php:83
1579
+ #: inc/other-widget/widget-pr-blocks.php:83
1580
  msgid "The choice of the number of columns:"
1581
  msgstr "列の数"
1582
 
1583
+ #: dist/inc/other-widget/widget-pr-blocks.php:90
1584
+ #: inc/other-widget/widget-pr-blocks.php:90
1585
  msgid "3column"
1586
  msgstr "3列"
1587
 
1588
+ #: dist/inc/other-widget/widget-pr-blocks.php:96
1589
+ #: inc/other-widget/widget-pr-blocks.php:96
1590
  msgid "4column"
1591
  msgstr "4列"
1592
 
1593
+ #: dist/inc/other-widget/widget-pr-blocks.php:98
1594
+ #: inc/other-widget/widget-pr-blocks.php:98
1595
  msgid ""
1596
  "If you change the number of columns, click to \"Save\" botton and exit the "
1597
  "edit page. When restart the edit page, the column input form is increased or "
1600
  "列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
1601
  "す。それから編集画面を再度開くと列の入力フォームが増減します。"
1602
 
1603
+ #: dist/inc/other-widget/widget-pr-blocks.php:107
1604
+ #: dist/inc/other-widget/widget-pr-blocks.php:277
1605
+ #: inc/other-widget/widget-pr-blocks.php:107
1606
+ #: inc/other-widget/widget-pr-blocks.php:277
1607
  msgid "PR Block"
1608
  msgstr "PRブロック"
1609
 
1610
+ #: dist/inc/other-widget/widget-pr-blocks.php:129
1611
+ #: inc/other-widget/widget-pr-blocks.php:129
1612
  msgid "Icon"
1613
  msgstr "アイコン"
1614
 
1615
+ #: dist/inc/other-widget/widget-pr-blocks.php:132
1616
+ #: inc/other-widget/widget-pr-blocks.php:132
1617
  msgid "Class name of the icon font you want to use:"
1618
  msgstr "使用したいアイコンフォントのクラス名:"
1619
 
1620
+ #: dist/inc/other-widget/widget-pr-blocks.php:143
1621
+ #: dist/inc/other-widget/widget-profile.php:157
1622
+ #: inc/other-widget/widget-pr-blocks.php:143
1623
+ #: inc/other-widget/widget-profile.php:157
1624
  msgid "Icon color:"
1625
  msgstr "アイコンの色:"
1626
 
1627
+ #: dist/inc/other-widget/widget-pr-blocks.php:147
1628
+ #: dist/inc/other-widget/widget-profile.php:142
1629
+ #: inc/other-widget/widget-pr-blocks.php:147
1630
+ #: inc/other-widget/widget-profile.php:142
1631
  msgid "Icon Background:"
1632
  msgstr "アイコン背景:"
1633
 
1634
+ #: dist/inc/other-widget/widget-pr-blocks.php:151
1635
+ #: dist/inc/other-widget/widget-profile.php:148
1636
+ #: inc/other-widget/widget-pr-blocks.php:151
1637
+ #: inc/other-widget/widget-profile.php:148
1638
  msgid "Solid color"
1639
  msgstr "塗りつぶし"
1640
 
1641
+ #: dist/inc/other-widget/widget-pr-blocks.php:155
1642
+ #: dist/inc/other-widget/widget-profile.php:151
1643
+ #: dist/inc/sns/sns_customizer.php:318
1644
+ #: inc/other-widget/widget-pr-blocks.php:155
1645
+ #: inc/other-widget/widget-profile.php:151 inc/sns/sns_customizer.php:318
1646
  msgid "No background"
1647
  msgstr "背景なし"
1648
 
1649
+ #: dist/inc/other-widget/widget-pr-blocks.php:161
1650
+ #: inc/other-widget/widget-pr-blocks.php:161
1651
  msgid "PR Image"
1652
  msgstr "画像"
1653
 
1654
+ #: dist/inc/other-widget/widget-pr-blocks.php:162
1655
+ #: inc/other-widget/widget-pr-blocks.php:162
1656
  msgid "When you have an image. Image is displayed with priority"
1657
  msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
1658
 
1659
+ #: dist/inc/other-widget/widget-profile.php:9
1660
+ #: dist/inc/other-widget/widget-profile.php:32
1661
+ #: inc/other-widget/widget-profile.php:9 inc/other-widget/widget-profile.php:32
1662
  msgid "Profile"
1663
  msgstr "プロフィール"
1664
 
1665
+ #: dist/inc/other-widget/widget-profile.php:14
1666
+ #: inc/other-widget/widget-profile.php:14
1667
  msgid "Displays a your profile"
1668
  msgstr ""
1669
  "ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
1670
 
1671
+ #: dist/inc/other-widget/widget-profile.php:40
1672
+ #: inc/other-widget/widget-profile.php:40
1673
  msgid "Profile Text"
1674
  msgstr "プロフィールテキスト"
1675
 
1676
+ #: dist/inc/other-widget/widget-profile.php:60
1677
+ #: inc/other-widget/widget-profile.php:60
1678
  msgid "Select Profile image:"
1679
  msgstr "プロフィール用画像を選択"
1680
 
1681
+ #: dist/inc/other-widget/widget-profile.php:79
1682
+ #: inc/other-widget/widget-profile.php:79
1683
  msgid "Cut out round the image."
1684
  msgstr "画像を丸く切り抜いて表示する"
1685
 
1686
+ #: dist/inc/other-widget/widget-profile.php:83
1687
+ #: inc/other-widget/widget-profile.php:83
1688
  msgid "Media size (Optional)"
1689
  msgstr "画像の大きさ( 任意 )"
1690
 
1691
+ #: dist/inc/other-widget/widget-profile.php:93
1692
+ #: inc/other-widget/widget-profile.php:93
1693
  msgid "Align left"
1694
  msgstr "画像左揃え"
1695
 
1696
+ #: dist/inc/other-widget/widget-profile.php:96
1697
+ #: inc/other-widget/widget-profile.php:96
1698
  msgid "Align center"
1699
  msgstr "画像中央揃え"
1700
 
1701
+ #: dist/inc/other-widget/widget-profile.php:100
1702
+ #: inc/other-widget/widget-profile.php:100
1703
  msgid "Text float to image."
1704
  msgstr "テキストを画像に回りこませる"
1705
 
1706
+ #: dist/inc/other-widget/widget-profile.php:104
1707
+ #: inc/other-widget/widget-profile.php:104
1708
  msgid "Profile Text:"
1709
  msgstr "プロフィールテキスト"
1710
 
1711
+ #: dist/inc/other-widget/widget-profile.php:108
1712
+ #: inc/other-widget/widget-profile.php:108
1713
  msgid "Facebook URL:"
1714
  msgstr "Facebook リンク先ページのURL"
1715
 
1716
+ #: dist/inc/other-widget/widget-profile.php:113
1717
+ #: inc/other-widget/widget-profile.php:113
1718
  msgid "Twitter URL:"
1719
  msgstr "twitterリンク先ページのURL"
1720
 
1721
+ #: dist/inc/other-widget/widget-profile.php:118
1722
+ #: inc/other-widget/widget-profile.php:118
1723
  msgid "Email Address:"
1724
  msgstr "Email リンク先ページのURL"
1725
 
1726
+ #: dist/inc/other-widget/widget-profile.php:123
1727
+ #: inc/other-widget/widget-profile.php:123
1728
  msgid "Youtube URL:"
1729
  msgstr "Youtube リンク先ページのURL"
1730
 
1731
+ #: dist/inc/other-widget/widget-profile.php:128
1732
+ #: inc/other-widget/widget-profile.php:128
1733
  msgid "RSS URL:"
1734
  msgstr "RSS リンク先ページのURL"
1735
 
1736
+ #: dist/inc/other-widget/widget-profile.php:133
1737
+ #: inc/other-widget/widget-profile.php:133
1738
  msgid "instagram URL:"
1739
  msgstr "instagram リンク先ページのURL"
1740
 
1741
+ #: dist/inc/other-widget/widget-profile.php:137
1742
+ #: inc/other-widget/widget-profile.php:137
1743
  msgid "linkedin URL:"
1744
  msgstr "linkedin リンク先ページのURL"
1745
 
1746
+ #: dist/inc/other-widget/widget-profile.php:153
1747
+ #: inc/other-widget/widget-profile.php:153
1748
  msgid ""
1749
  "* When \"Icon Background: Fill\" is selected and \"Icon color\" is not "
1750
  "specified, each brand color will be painted."
1752
  "※ 「アイコン背景 : 塗りつぶし」を選択した場合で「アイコンの色」の指定がないと"
1753
  "きは各ブランドカラーで塗りつぶしされます。"
1754
 
1755
+ #: dist/inc/other-widget/widget-side-child-page-list.php:12
1756
+ #: inc/other-widget/widget-side-child-page-list.php:12
1757
  msgid "child pages list"
1758
  msgstr "子ページのリスト"
1759
 
1760
+ #: dist/inc/other-widget/widget-side-child-page-list.php:17
1761
+ #: inc/other-widget/widget-side-child-page-list.php:17
1762
  msgid "Displays list of child page for the current page."
1763
  msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
1764
 
1765
+ #: dist/inc/other-widget/widget-taxonomies.php:10
1766
+ #: inc/other-widget/widget-taxonomies.php:10
1767
  msgid "Categories/Custom taxonomies list"
1768
  msgstr "カテゴリー/カスタム分類リスト"
1769
 
1770
+ #: dist/inc/other-widget/widget-taxonomies.php:15
1771
+ #: inc/other-widget/widget-taxonomies.php:15
1772
  msgid "Displays a categories and custom taxonomies list."
1773
  msgstr "カテゴリーやカスタム分類のリストを表示します。"
1774
 
1775
+ #: dist/inc/other-widget/widget-taxonomies.php:71
1776
+ #: inc/other-widget/widget-taxonomies.php:71
1777
  msgid "Label to display"
1778
  msgstr "表示するラベル"
1779
 
1780
+ #: dist/inc/other-widget/widget-taxonomies.php:75
1781
+ #: inc/other-widget/widget-taxonomies.php:75
1782
  msgid "Display page"
1783
  msgstr "ページを表示"
1784
 
1785
+ #: dist/inc/other-widget/widget-taxonomies.php:94
1786
+ #: inc/other-widget/widget-taxonomies.php:94
1787
  msgid "Do not display terms without posts"
1788
  msgstr "投稿のない分類項目を表示しない"
1789
 
1790
+ #: dist/inc/other-widget/widget-taxonomies.php:106
1791
+ #: inc/other-widget/widget-taxonomies.php:106
1792
  msgid "Blog"
1793
  msgstr "ブログ"
1794
 
1795
+ #: dist/inc/other-widget/widget-taxonomies.php:111
1796
+ #: dist/inc/template-tags/template-tags.php:175
1797
+ #: inc/other-widget/widget-taxonomies.php:111
1798
+ #: inc/template-tags/template-tags.php:183
1799
  msgid "Archives"
1800
  msgstr "アーカイブ"
1801
 
1802
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:22
1803
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:23
1804
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:65
1805
  #: inc/post-type-manager/package/class.post-type-manager.php:22
1806
  #: inc/post-type-manager/package/class.post-type-manager.php:23
1807
  #: inc/post-type-manager/package/class.post-type-manager.php:65
1808
  msgid "Custom Post Type Setting"
1809
  msgstr "カスタム投稿タイプ設定"
1810
 
1811
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:88
1812
  #: inc/post-type-manager/package/class.post-type-manager.php:88
1813
  msgid "Post Type ID(Required)"
1814
  msgstr "投稿タイプID(必須)"
1815
 
1816
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:89
1817
  #: inc/post-type-manager/package/class.post-type-manager.php:89
1818
  msgid "20 characters or less in alphanumeric"
1819
  msgstr "半角英数字20文字以内で入力ください"
1820
 
1821
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:94
1822
  #: inc/post-type-manager/package/class.post-type-manager.php:94
1823
  msgid "title"
1824
  msgstr "タイトル"
1825
 
1826
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:95
1827
  #: inc/post-type-manager/package/class.post-type-manager.php:95
1828
  msgid "editor"
1829
  msgstr "本文"
1830
 
1831
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:96
1832
  #: inc/post-type-manager/package/class.post-type-manager.php:96
1833
  msgid "author"
1834
  msgstr "投稿者"
1835
 
1836
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:97
1837
  #: inc/post-type-manager/package/class.post-type-manager.php:97
1838
  msgid "thumbnail"
1839
  msgstr "アイキャッチ画像"
1840
 
1841
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:98
1842
  #: inc/post-type-manager/package/class.post-type-manager.php:98
1843
  msgid "excerpt"
1844
  msgstr "抜粋"
1845
 
1846
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:99
1847
  #: inc/post-type-manager/package/class.post-type-manager.php:99
1848
  msgid "comments"
1849
  msgstr "コメント"
1850
 
1851
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:100
1852
  #: inc/post-type-manager/package/class.post-type-manager.php:100
1853
  msgid "revisions"
1854
  msgstr "リビジョン"
1855
 
1856
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:105
1857
  #: inc/post-type-manager/package/class.post-type-manager.php:105
1858
  msgid "Supports(Required)"
1859
  msgstr "有効にする項目(必須)"
1860
 
1861
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:118
1862
  #: inc/post-type-manager/package/class.post-type-manager.php:118
1863
  msgid "Menu position(optional)"
1864
  msgstr "メニューの位置( 任意 )"
1865
 
1866
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:119
1867
  #: inc/post-type-manager/package/class.post-type-manager.php:119
1868
  msgid "Please enter a number."
1869
  msgstr "数字を入力してください。数字が小さいほど上に表示されます。"
1870
 
1871
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:126
1872
  #: inc/post-type-manager/package/class.post-type-manager.php:126
1873
  msgid "Export to REST API(optional)"
1874
  msgstr "REST API に出力する( 任意 )"
1875
 
1876
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:138
1877
  #: inc/post-type-manager/package/class.post-type-manager.php:138
1878
  msgid "Export to REST API"
1879
  msgstr "REST API に出力する"
1880
 
1881
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:143
1882
+ #: inc/post-type-manager/package/class.post-type-manager.php:144
1883
  msgid "Custom taxonomies(optional)"
1884
  msgstr "カスタム分類(任意)"
1885
 
1886
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:146
1887
+ #: inc/post-type-manager/package/class.post-type-manager.php:147
1888
  msgid "Custom taxonomy is like a category in post."
1889
  msgstr "カスタム分類とは投稿で言うカテゴリーです。"
1890
 
1891
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:147
1892
+ #: inc/post-type-manager/package/class.post-type-manager.php:148
1893
  msgid ""
1894
  "However, it refers to the \"category\" itself, not to the “item” of the "
1895
  "category."
1896
  msgstr "しかし、カテゴリーの”項目”ではなく、”カテゴリー”そのものを指します。"
1897
 
1898
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:148
1899
+ #: inc/post-type-manager/package/class.post-type-manager.php:149
1900
  msgid ""
1901
  "For example, if you create a post type \"construction result\", Custom "
1902
  "taxonomy will be \"construction type\", \"construction area\", etc."
1904
  "例えば「施工実績」という投稿タイプを作成した場合、カスタム分類は「施工タイ"
1905
  "プ」「施工地域」等になります。"
1906
 
1907
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:172
1908
+ #: inc/post-type-manager/package/class.post-type-manager.php:173
1909
  msgid "Custon taxonomy name(slug)"
1910
  msgstr "カスタム分類名(スラッグ)"
1911
 
1912
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:176
1913
+ #: inc/post-type-manager/package/class.post-type-manager.php:177
1914
  msgid "* Please be sure to enter it with one-byte alphanumeric characters"
1915
  msgstr "※ 必ず半角英数字にて入力してください"
1916
 
1917
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:182
1918
+ #: inc/post-type-manager/package/class.post-type-manager.php:183
1919
  msgid "Custon taxonomy label"
1920
  msgstr "カスタム分類名(表示名)"
1921
 
1922
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:189
1923
+ #: inc/post-type-manager/package/class.post-type-manager.php:190
1924
  msgid "Hierarchy"
1925
  msgstr "階層"
1926
 
1927
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:190
1928
+ #: inc/post-type-manager/package/class.post-type-manager.php:191
1929
  msgid "Make it a tag (do not hierarchize)"
1930
  msgstr "タグにする(階層化しない)"
1931
 
1932
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:199
1933
+ #: inc/post-type-manager/package/class.post-type-manager.php:200
1934
  msgid "REST API(optional)"
1935
  msgstr "REST API ( 任意 )"
1936
 
1937
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:200
1938
+ #: inc/post-type-manager/package/class.post-type-manager.php:201
1939
  msgid "Use for REST API"
1940
  msgstr "REST API に利用する"
1941
 
1942
+ #: dist/inc/post-type-manager/package/class.post-type-manager.php:262
1943
+ #: inc/post-type-manager/package/class.post-type-manager.php:263
1944
  #, php-format
1945
  msgid ""
1946
  "Please save a <a href=\"%s\">permanent link configuration</a> After updating "
1948
  msgstr ""
1949
  "設定を更新したら<a href=\"%s\">パーマリンク設定</a>を保存してください。"
1950
 
1951
+ #: dist/inc/related_posts/related_posts.php:210 dist/veu-packages.php:299
1952
  #: inc/related_posts/related_posts.php:210 veu-packages.php:299
1953
  msgid "Related posts"
1954
  msgstr "関連記事を表示"
1955
 
1956
+ #: dist/inc/related_posts/related_posts.php:244
1957
  #: inc/related_posts/related_posts.php:244
1958
  msgid "Related Settings"
1959
  msgstr "関連記事設定"
1960
 
1961
+ #: dist/inc/sitemap-page/class-veu-metabox-sitemap.php:14
1962
+ #: inc/sitemap-page/class-veu-metabox-sitemap.php:14
1963
+ msgid "Hide setting of HTML sitemap"
1964
+ msgstr "HTMLサイトマップの非表示設定"
1965
 
1966
+ #: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:8
1967
+ #: inc/sitemap-page/sitemap-page-admin-main-setting.php:8
1968
+ msgid "HTML Sitemap"
1969
+ msgstr "HTMLサイトマップ"
1970
 
1971
+ #: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:39
1972
+ #: inc/sitemap-page/sitemap-page-admin-main-setting.php:47
1973
  msgid "HTML Sitemap Settings"
1974
  msgstr "HTMLサイトマップ設定"
1975
 
1976
+ #: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:43
 
1977
  msgid "Exclude page Settings"
1978
  msgstr "除外ページ設定"
1979
 
1980
+ #: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:45
 
1981
  msgid "Input you want to exclude page id."
1982
  msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
1983
 
1984
+ #: dist/inc/sitemap-page/sitemap-page-admin-main-setting.php:47
 
1985
  msgid ""
1986
  "* Please enter separated by \",\"(commas) if there is more than one page ID "
1987
  "that you want to exclude."
1988
  msgstr "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
1989
 
1990
+ #: dist/inc/sitemap-page/sitemap-page.php:217
1991
+ #: inc/sitemap-page/sitemap-page.php:224
 
 
 
 
 
1992
  msgid "Display a HTML sitemap"
1993
  msgstr "HTMLサイトマップの表示"
1994
 
1995
+ #: dist/inc/sns/class-veu-metabox-sns-button.php:14
1996
+ #: inc/sns/class-veu-metabox-sns-button.php:14
1997
+ msgid "Hide setting of share button"
1998
+ msgstr "シェアボタンの非表示設定"
1999
 
2000
+ #: dist/inc/sns/class-veu-metabox-sns-button.php:38
2001
+ #: inc/sns/class-veu-metabox-sns-button.php:38
2002
+ msgid "This post type is not set to display the share button."
2003
+ msgstr "この投稿タイプはシェアボタンを表示するように設定されていません。"
2004
 
2005
+ #: dist/inc/sns/class-veu-metabox-sns-button.php:39
2006
+ #: inc/sns/class-veu-metabox-sns-button.php:39
2007
+ msgid "Display setting of share button"
2008
+ msgstr "ソーシャルボタンの表示設定"
2009
+
2010
+ #: dist/inc/sns/class-veu-metabox-sns-button.php:49
2011
+ #: inc/sns/class-veu-metabox-sns-button.php:49
2012
+ msgid "Don't display share bottons."
2013
+ msgstr "ソーシャルボタンを表示しない"
2014
+
2015
+ #: dist/inc/sns/class-veu-metabox-sns-title.php:14
2016
+ #: inc/sns/class-veu-metabox-sns-title.php:14
2017
+ msgid "SNS Title"
2018
  msgstr "OGPタイトル"
2019
 
2020
+ #: dist/inc/sns/class-veu-metabox-sns-title.php:32
2021
  #: inc/sns/class-veu-metabox-sns-title.php:32
2022
  msgid "if filled this area then override title of OGP and Twitter Card"
2023
  msgstr ""
2024
  "このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
2025
  "るタイトルを上書きすることができます"
2026
 
2027
+ #: dist/inc/sns/function_follow.php:25 inc/sns/function_follow.php:25
2028
+ msgid "Follow me"
2029
+ msgstr "このサイトをフォローする"
 
 
 
 
 
2030
 
2031
+ #: dist/inc/sns/function_follow.php:73 inc/sns/function_follow.php:73
2032
+ msgid "Edit follow button"
2033
+ msgstr "Follow me box の編集"
 
2034
 
2035
+ #: dist/inc/sns/sns.php:19 inc/sns/sns.php:19
2036
  msgid "SNS"
2037
  msgstr "SNS"
2038
 
2039
+ #: dist/inc/sns/sns.php:163 inc/sns/sns.php:163
2040
  msgctxt "facebook language code"
2041
  msgid "en_US"
2042
  msgstr "ja_JP"
2043
 
2044
+ #: dist/inc/sns/sns_admin.php:1 dist/inc/sns/sns_customizer.php:22
2045
  #: inc/sns/sns_admin.php:1 inc/sns/sns_customizer.php:22
2046
  msgid "SNS Settings"
2047
  msgstr "SNS設定"
2048
 
2049
+ #: dist/inc/sns/sns_admin.php:14 dist/inc/sns/sns_customizer.php:36
2050
  #: inc/sns/sns_admin.php:14 inc/sns/sns_customizer.php:36
2051
  msgid "Post title custom for SNS"
2052
  msgstr "OGPなどの投稿タイトルの変更"
2053
 
2054
+ #: dist/inc/sns/sns_admin.php:16 dist/inc/sns/sns_customizer.php:58
2055
  #: inc/sns/sns_admin.php:16 inc/sns/sns_customizer.php:58
2056
  msgid "For SNS title be composed by post title only."
2057
  msgstr "投稿タイトルだけにする(サイトタイトルなど含めない)。"
2058
 
2059
+ #: dist/inc/sns/sns_admin.php:20 inc/sns/sns_admin.php:20
2060
  msgid "facebook application ID"
2061
  msgstr "facebookアプリケーションID"
2062
 
2063
+ #: dist/inc/sns/sns_admin.php:22 inc/sns/sns_admin.php:22
2064
  msgid "I will check and get the application ID"
2065
  msgstr "アプリケーションIDを確認・取得する "
2066
 
2067
+ #: dist/inc/sns/sns_admin.php:23 inc/sns/sns_admin.php:23
2068
  msgid ""
2069
  "* If an application ID is not specified, neither a Like button nor the "
2070
  "comment field displays and operates correctly."
2072
  "※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
2073
  "ん。"
2074
 
2075
+ #: dist/inc/sns/sns_admin.php:24 inc/sns/sns_admin.php:24
2076
  msgid ""
2077
  "Please search for terms as [get Facebook application ID] If you do not know "
2078
  "much about how to get application ID for Facebook."
2080
  "facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
2081
  "アプリケーションID 取得」などで検索して下さい。"
2082
 
2083
+ #: dist/inc/sns/sns_admin.php:28 inc/sns/sns_admin.php:28
2084
  msgid "facebook page URL"
2085
  msgstr "FacebookページURL"
2086
 
2087
+ #: dist/inc/sns/sns_admin.php:33 dist/inc/sns/sns_customizer.php:141
2088
  #: inc/sns/sns_admin.php:33 inc/sns/sns_customizer.php:141
2089
  msgid "OG default image"
2090
  msgstr "デフォルトのOGPイメージ"
2091
 
2092
+ #: dist/inc/sns/sns_admin.php:34 inc/sns/sns_admin.php:34
2093
  msgid ""
2094
  "If, for example someone pressed the Facebook [Like] button, this is the "
2095
  "image that appears on the Facebook timeline."
2097
  "Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
2098
  "ムラインに表示されます。"
2099
 
2100
+ #: dist/inc/sns/sns_admin.php:35 inc/sns/sns_admin.php:35
2101
  msgid "If a featured image is specified for the page, it takes precedence."
2102
  msgstr ""
2103
  "ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
2104
  "す。"
2105
 
2106
+ #: dist/inc/sns/sns_admin.php:37 inc/sns/sns_admin.php:37
2107
  msgid "Select an image"
2108
  msgstr "画像を選択"
2109
 
2110
+ #: dist/inc/sns/sns_admin.php:39 inc/sns/sns_admin.php:39
2111
  msgid ""
2112
  "* Picture sizes are 1280x720 pixels or more and picture ratio 16:9 is "
2113
  "recommended."
2114
  msgstr "画像サイズ 橫 1280px 縦 720px 以上、画像比率 16:9 を推奨します。"
2115
 
2116
+ #: dist/inc/sns/sns_admin.php:43 inc/sns/sns_admin.php:43
2117
  msgid "twitter ID"
2118
  msgstr "twitterアカウント"
2119
 
2120
+ #: dist/inc/sns/sns_admin.php:48 inc/sns/sns_admin.php:48
2121
  msgid "OG tags"
2122
  msgstr "OGタグ"
2123
 
2124
+ #: dist/inc/sns/sns_admin.php:50 dist/inc/sns/sns_customizer.php:180
2125
  #: inc/sns/sns_admin.php:50 inc/sns/sns_customizer.php:180
2126
  msgid "Print the OG tags"
2127
  msgstr "OGタグを出力する"
2128
 
2129
+ #: dist/inc/sns/sns_admin.php:51 dist/inc/sns/sns_customizer.php:184
2130
  #: inc/sns/sns_admin.php:51 inc/sns/sns_customizer.php:184
2131
  msgid ""
2132
  "If other plug-ins are used for the OG, do not output the OG using this "
2135
  "OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
2136
  "る場合は、このプラグインでの出力は必要ありません。"
2137
 
2138
+ #: dist/inc/sns/sns_admin.php:56 dist/inc/sns/sns_customizer.php:243
2139
  #: inc/sns/sns_admin.php:56 inc/sns/sns_customizer.php:243
2140
  msgid "Twitter Card tags"
2141
  msgstr "Twitterカードタグ"
2142
 
2143
+ #: dist/inc/sns/sns_admin.php:58 dist/inc/sns/sns_customizer.php:247
2144
  #: inc/sns/sns_admin.php:58 inc/sns/sns_customizer.php:247
2145
  msgid "Print the Twitter Card tags"
2146
  msgstr "Twitter カードタグを html head 内へ出力します。"
2147
 
2148
+ #: dist/inc/sns/sns_admin.php:63 dist/inc/sns/sns_customizer.php:260
2149
  #: inc/sns/sns_admin.php:63 inc/sns/sns_customizer.php:260
2150
  msgid "Social bookmark buttons"
2151
  msgstr "ソーシャルボタン"
2152
 
2153
+ #: dist/inc/sns/sns_admin.php:64 dist/inc/sns/sns_customizer.php:283
2154
  #: inc/sns/sns_admin.php:64 inc/sns/sns_customizer.php:283
2155
  msgid "Print the social bookmark buttons"
2156
  msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
2157
 
2158
+ #: dist/inc/sns/sns_admin.php:67 dist/inc/sns/sns_customizer.php:409
2159
  #: inc/sns/sns_admin.php:67 inc/sns/sns_customizer.php:409
2160
  msgid "Exclude Post Types"
2161
  msgstr "シェアボタンを表示しない投稿タイプ"
2162
 
2163
+ #: dist/inc/sns/sns_admin.php:80 inc/sns/sns_admin.php:80
2164
  msgid "Exclude Post ID"
2165
  msgstr "シェアボタンを表示しない投稿のID"
2166
 
2167
+ #: dist/inc/sns/sns_admin.php:90 inc/sns/sns_admin.php:90
2168
  msgid ""
2169
  "if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
2170
  msgstr ""
2171
  "特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを入"
2172
  "力します。"
2173
 
2174
+ #: dist/inc/sns/sns_admin.php:94 inc/sns/sns_admin.php:94
2175
  msgid "example"
2176
  msgstr "例"
2177
 
2178
+ #: dist/inc/sns/sns_admin.php:103 dist/inc/sns/sns_customizer.php:452
2179
  #: inc/sns/sns_admin.php:103 inc/sns/sns_customizer.php:452
2180
  msgid "Share button for display"
2181
  msgstr "表示するボタン"
2182
 
2183
+ #: dist/inc/sns/sns_admin.php:111 inc/sns/sns_admin.php:111
2184
  msgid "Facebook"
2185
  msgstr "Facebook"
2186
 
2187
+ #: dist/inc/sns/sns_admin.php:117 dist/inc/sns/sns_customizer.php:493
2188
+ #: dist/inc/sns/widget-twitter.php:9 inc/sns/sns_admin.php:117
2189
  #: inc/sns/sns_customizer.php:493 inc/sns/widget-twitter.php:9
2190
  msgid "Twitter"
2191
  msgstr "Twitter"
2192
 
2193
+ #: dist/inc/sns/sns_admin.php:123 dist/inc/sns/sns_customizer.php:514
2194
  #: inc/sns/sns_admin.php:123 inc/sns/sns_customizer.php:514
2195
  msgid "Hatena"
2196
  msgstr "はてな"
2197
 
2198
+ #: dist/inc/sns/sns_admin.php:129 dist/inc/sns/sns_customizer.php:535
2199
  #: inc/sns/sns_admin.php:129 inc/sns/sns_customizer.php:535
2200
  msgid "Pocket"
2201
  msgstr "Pocket"
2202
 
2203
+ #: dist/inc/sns/sns_admin.php:135 dist/inc/sns/sns_customizer.php:556
2204
  #: inc/sns/sns_admin.php:135 inc/sns/sns_customizer.php:556
2205
  msgid "LINE (mobile only)"
2206
  msgstr "LINE (mobile only)"
2207
 
2208
+ #: dist/inc/sns/sns_admin.php:141 dist/inc/sns/sns_customizer.php:355
2209
  #: inc/sns/sns_admin.php:141 inc/sns/sns_customizer.php:355
2210
  msgid "Share button display Position"
2211
  msgstr "シェアボタンの表示位置"
2212
 
2213
+ #: dist/inc/sns/sns_admin.php:149 dist/inc/sns/sns_customizer.php:374
2214
  #: inc/sns/sns_admin.php:149 inc/sns/sns_customizer.php:374
2215
  msgid "Before content"
2216
  msgstr "本文の前"
2217
 
2218
+ #: dist/inc/sns/sns_admin.php:155 dist/inc/sns/sns_customizer.php:394
2219
  #: inc/sns/sns_admin.php:155 inc/sns/sns_customizer.php:394
2220
  msgid "After content"
2221
  msgstr "本文の後"
2222
 
2223
+ #: dist/inc/sns/sns_admin.php:161 dist/inc/sns/sns_customizer.php:571
2224
  #: inc/sns/sns_admin.php:161 inc/sns/sns_customizer.php:571
2225
  msgid "Follow me box"
2226
  msgstr "Follow me box"
2227
 
2228
+ #: dist/inc/sns/sns_admin.php:162 dist/inc/sns/sns_customizer.php:593
2229
  #: inc/sns/sns_admin.php:162 inc/sns/sns_customizer.php:593
2230
  msgid "Print the Follow me box"
2231
  msgstr "Follow me ユニットを本文の下に表示する"
2232
 
2233
+ #: dist/inc/sns/sns_admin.php:164 dist/inc/sns/sns_customizer.php:613
2234
  #: inc/sns/sns_admin.php:164 inc/sns/sns_customizer.php:613
2235
  msgid "Follow me box title"
2236
  msgstr "Follow me box の見出しテキスト"
2237
 
2238
+ #: dist/inc/sns/sns_customizer.php:74 inc/sns/sns_customizer.php:74
2239
  msgid "Facebook Settings"
2240
  msgstr "Facebook 設定"
2241
 
2242
+ #: dist/inc/sns/sns_customizer.php:97 inc/sns/sns_customizer.php:97
2243
  msgid "Facebook application ID"
2244
  msgstr "facebookアプリケーションID"
2245
 
2246
+ #: dist/inc/sns/sns_customizer.php:118 inc/sns/sns_customizer.php:118
2247
  msgid "Facebook Page URL"
2248
  msgstr "FacebookページURL"
2249
 
2250
+ #: dist/inc/sns/sns_customizer.php:144 inc/sns/sns_customizer.php:144
2251
  msgid ""
2252
  "If, for example someone pressed the Facebook [Like] button, this is the "
2253
  "image that appears on the Facebook timeline.<br>If a featured image is "
2259
  "アイキャッチ画像が優先されます。<br>画像サイズ 橫 1280px 縦 720px 以上、画像"
2260
  "比率 16:9 程度を推奨します。"
2261
 
2262
+ #: dist/inc/sns/sns_customizer.php:157 inc/sns/sns_customizer.php:157
2263
  msgid "OG Settings"
2264
  msgstr "OG 設定"
2265
 
2266
+ #: dist/inc/sns/sns_customizer.php:196 inc/sns/sns_customizer.php:196
2267
  msgid "Twitter Settings"
2268
  msgstr "Twitter 設定"
2269
 
2270
+ #: dist/inc/sns/sns_customizer.php:219 inc/sns/sns_customizer.php:219
2271
  #, fuzzy
2272
  #| msgid "twitter ID"
2273
  msgid "Twitter ID"
2274
  msgstr "twitterアカウント"
2275
 
2276
+ #: dist/inc/sns/sns_customizer.php:298 inc/sns/sns_customizer.php:298
2277
  msgid "Social button style setting"
2278
  msgstr "ソーシャルボタンのスタイル設定"
2279
 
2280
+ #: dist/inc/sns/sns_customizer.php:340 inc/sns/sns_customizer.php:340
2281
  msgid "Btn color"
2282
  msgstr "ボタンの色:"
2283
 
2284
+ #: dist/inc/sns/sns_customizer.php:472 inc/sns/sns_customizer.php:472
2285
  #, fuzzy
2286
  #| msgid "Facebook URL:"
2287
  msgid "Facebook "
2288
  msgstr "Facebook リンク先ページのURL"
2289
 
2290
+ #: dist/inc/sns/widget-fb-page-plugin.php:13
2291
  #: inc/sns/widget-fb-page-plugin.php:13
2292
  msgid "Displays a Facebook Page Plugin"
2293
  msgstr "Facebook ページプラグインを表示します。"
2294
 
2295
+ #: dist/inc/sns/widget-fb-page-plugin.php:89
2296
  #: inc/sns/widget-fb-page-plugin.php:89
2297
  msgid "Height"
2298
  msgstr "高さ"
2299
 
2300
+ #: dist/inc/sns/widget-fb-page-plugin.php:94
2301
  #: inc/sns/widget-fb-page-plugin.php:94
2302
  msgid "Show Friend's Faces"
2303
  msgstr "アイコンを表示する"
2304
 
2305
+ #: dist/inc/sns/widget-fb-page-plugin.php:99
2306
  #: inc/sns/widget-fb-page-plugin.php:99
2307
  msgid "Hide Cover Photo"
2308
  msgstr "カバー画像を表示しない"
2309
 
2310
+ #: dist/inc/sns/widget-fb-page-plugin.php:104
2311
  #: inc/sns/widget-fb-page-plugin.php:104
2312
  msgid "Show Page Posts"
2313
  msgstr "タイムラインを表示"
2314
 
2315
+ #: dist/inc/sns/widget-twitter.php:13 inc/sns/widget-twitter.php:13
2316
  msgid "Display Twitter timeline."
2317
  msgstr "Twitter のタイムラインを表示します。"
2318
 
2319
+ #: dist/inc/sns/widget-twitter.php:89 inc/sns/widget-twitter.php:89
2320
  msgid "Account:<br>Please enter your Twitter account."
2321
  msgstr "アカウント:<br>Twitter アカウントを入力してください。"
2322
 
2323
+ #: dist/inc/sns/widget-twitter.php:90 inc/sns/widget-twitter.php:90
2324
  msgid "@"
2325
  msgstr "@"
2326
 
2327
+ #: dist/inc/sns/widget-twitter.php:94 inc/sns/widget-twitter.php:94
2328
  msgid "Height:<br>Please enter an arbitrary number.(Example: 300)"
2329
  msgstr "高さ:<br>任意の数値を入力してください(例:300)"
2330
 
2331
+ #: dist/inc/sns/widget-twitter.php:99 inc/sns/widget-twitter.php:99
2332
  msgid "Background color:"
2333
  msgstr "背景の色:"
2334
 
2335
+ #: dist/inc/sns/widget-twitter.php:122 inc/sns/widget-twitter.php:122
2336
  msgid "Link color:"
2337
  msgstr "リンクの色:"
2338
 
2339
+ #: dist/inc/template-tags/template-tags.php:134
2340
+ #: inc/template-tags/template-tags.php:142
2341
  #, php-format
2342
  msgid "Author: %s"
2343
  msgstr "著者: %s"
2344
 
2345
+ #: dist/inc/template-tags/template-tags.php:136
2346
+ #: dist/inc/template-tags/template-tags.php:218
2347
+ #: inc/template-tags/template-tags.php:144
2348
+ #: inc/template-tags/template-tags.php:226
2349
  msgctxt "yearly archives date format"
2350
  msgid "Y"
2351
  msgstr "Y年"
2352
 
2353
+ #: dist/inc/template-tags/template-tags.php:138
2354
+ #: dist/inc/template-tags/template-tags.php:222
2355
+ #: inc/template-tags/template-tags.php:146
2356
+ #: inc/template-tags/template-tags.php:230
2357
  msgctxt "monthly archives date format"
2358
  msgid "F Y"
2359
  msgstr "Y年F"
2360
 
2361
+ #: dist/inc/template-tags/template-tags.php:140
2362
+ #: inc/template-tags/template-tags.php:148
2363
  msgctxt "daily archives date format"
2364
  msgid "F j, Y"
2365
  msgstr "Y年Fj日"
2366
 
2367
+ #: dist/inc/template-tags/template-tags.php:143
2368
+ #: inc/template-tags/template-tags.php:151
2369
  msgctxt "post format archive title"
2370
  msgid "Asides"
2371
  msgstr "サイド"
2372
 
2373
+ #: dist/inc/template-tags/template-tags.php:145
2374
+ #: inc/template-tags/template-tags.php:153
2375
  msgctxt "post format archive title"
2376
  msgid "Galleries"
2377
  msgstr "ギャラリー"
2378
 
2379
+ #: dist/inc/template-tags/template-tags.php:147
2380
+ #: inc/template-tags/template-tags.php:155
2381
  msgctxt "post format archive title"
2382
  msgid "Images"
2383
  msgstr "画像"
2384
 
2385
+ #: dist/inc/template-tags/template-tags.php:149
2386
+ #: inc/template-tags/template-tags.php:157
2387
  msgctxt "post format archive title"
2388
  msgid "Videos"
2389
  msgstr "ビデオ"
2390
 
2391
+ #: dist/inc/template-tags/template-tags.php:151
2392
+ #: inc/template-tags/template-tags.php:159
2393
  msgctxt "post format archive title"
2394
  msgid "Quotes"
2395
  msgstr "引用"
2396
 
2397
+ #: dist/inc/template-tags/template-tags.php:153
2398
+ #: inc/template-tags/template-tags.php:161
2399
  msgctxt "post format archive title"
2400
  msgid "Links"
2401
  msgstr "リンク"
2402
 
2403
+ #: dist/inc/template-tags/template-tags.php:155
2404
+ #: inc/template-tags/template-tags.php:163
2405
  msgctxt "post format archive title"
2406
  msgid "Statuses"
2407
  msgstr "ステータス"
2408
 
2409
+ #: dist/inc/template-tags/template-tags.php:157
2410
+ #: inc/template-tags/template-tags.php:165
2411
  msgctxt "post format archive title"
2412
  msgid "Audio"
2413
  msgstr "オーディオ"
2414
 
2415
+ #: dist/inc/template-tags/template-tags.php:159
2416
+ #: inc/template-tags/template-tags.php:167
2417
  msgctxt "post format archive title"
2418
  msgid "Chats"
2419
  msgstr "チャット"
2420
 
2421
+ #: dist/inc/template-tags/template-tags.php:206
2422
+ #: dist/inc/template-tags/template-tags.php:214
2423
+ #: inc/template-tags/template-tags.php:214
2424
+ #: inc/template-tags/template-tags.php:222
2425
  #, php-format
2426
  msgid "About %s"
2427
  msgstr "%s について"
2428
 
2429
+ #: dist/inc/template-tags/template-tags.php:219
2430
+ #: inc/template-tags/template-tags.php:227
2431
  #, php-format
2432
  msgctxt "Yearly archive description"
2433
  msgid "Article of %s."
2434
  msgstr "%s の記事"
2435
 
2436
+ #: dist/inc/template-tags/template-tags.php:223
2437
+ #: dist/inc/template-tags/template-tags.php:227
2438
+ #: dist/inc/template-tags/template-tags.php:232
2439
+ #: inc/template-tags/template-tags.php:231
2440
+ #: inc/template-tags/template-tags.php:235
2441
+ #: inc/template-tags/template-tags.php:240
2442
  #, php-format
2443
  msgctxt "Archive description"
2444
  msgid "Article of %s."
2445
  msgstr "%s の記事"
2446
 
2447
+ #: dist/inc/template-tags/template-tags.php:249 dist/inc/wp-title.php:73
2448
+ #: inc/template-tags/template-tags.php:257 inc/wp-title.php:73
 
2449
  #, php-format
2450
  msgid "Page of %s"
2451
  msgstr "%sページ目"
2452
 
2453
+ #: dist/inc/vk-blocks/package/vk-blocks-functions.php:94
2454
+ #: inc/vk-blocks/package/vk-blocks-functions.php:94
2455
  msgid "Blocks(Beta)"
2456
  msgstr ""
2457
 
2458
+ #: dist/inc/vk-blocks/package/vk-blocks-functions.php:99
2459
+ #: inc/vk-blocks/package/vk-blocks-functions.php:99
2460
  msgid "Blocks Layout(Beta)"
2461
  msgstr ""
2462
 
2463
+ #: dist/inc/wp-title.php:12 dist/inc/wp-title.php:85 dist/inc/wp-title.php:89
2464
+ #: inc/wp-title.php:12 inc/wp-title.php:85 inc/wp-title.php:89
2465
+ msgid "&lt;title&gt; tag of homepage"
2466
+ msgstr "トップページの&lt;title&gt;タグ"
2467
+
2468
+ #: dist/inc/wp-title.php:61 inc/wp-title.php:61
2469
  #, php-format
2470
  msgid "Search Results for : %s"
2471
  msgstr "検索結果 : %s"
2472
 
2473
+ #: dist/inc/wp-title.php:64 inc/wp-title.php:64
2474
  msgid "Not found"
2475
  msgstr "見つかりません"
2476
 
2477
+ #: dist/inc/wp-title.php:93 inc/wp-title.php:93
 
 
 
 
 
 
2478
  msgid "title of the site"
2479
  msgstr "サイトのタイトル"
2480
 
2481
+ #: dist/inc/wp-title.php:94 inc/wp-title.php:94
2482
  #, php-format
2483
  msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
2484
  msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
2485
 
2486
+ #: dist/inc/wp-title.php:97 inc/wp-title.php:97
2487
  #, php-format
2488
  msgid ""
2489
  "For example, it appears in the form of <br />&lt;title&gt;page title | "
2492
  "例えば固定ページであれば<br>&lt;title&gt;固定ページ名 | %1$s&lt;/title&gt;"
2493
  "<br>というような形式で出力されます。"
2494
 
2495
+ #: dist/inc/wp-title.php:99 inc/wp-title.php:99
2496
  #, php-format
2497
  msgid ""
2498
  "However, it might have negative impact on search engine rankings if the &lt;"
2504
  "くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短くまとめる"
2505
  "事が望ましいです。"
2506
 
2507
+ #: dist/inc/wp-title.php:103 inc/wp-title.php:103
2508
  msgid "Tagline"
2509
  msgstr "キャッチフレーズ"
2510
 
2511
+ #: dist/inc/wp-title.php:104 inc/wp-title.php:104
2512
  #, php-format
2513
  msgid ""
2514
  "In the top page will be output usually in the form of <br />&lt;title&gt;"
2517
  "トップページでは<br>&lt;title&gt;%1$s | %2$s&lt;/title&gt;<br>というような形"
2518
  "式で出力されます。"
2519
 
2520
+ #: dist/inc/wp-title.php:107 inc/wp-title.php:107
2521
  msgid ""
2522
  "However, it may be too long in the above format. If the input to the input "
2523
  "field of the following, its contents will be reflected."
2525
  "しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に入"
2526
  "力すれば、その内容が反映されます。"
2527
 
2528
+ #: dist/veu-packages.php:55 veu-packages.php:55
2529
  msgid "Print link fontawesome"
2530
  msgstr "fontawesome link タグを出力"
2531
 
2532
+ #: dist/veu-packages.php:56 veu-packages.php:56
2533
  msgid "Print fontawesome link tag to html head."
2534
  msgstr ""
2535
  "fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
2536
  "テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
2537
  "さい。"
2538
 
2539
+ #: dist/veu-packages.php:66 veu-packages.php:66
2540
  msgid "VK Blocks ( Beta )"
2541
  msgstr "VK Blocks ( Beta )"
2542
 
2543
+ #: dist/veu-packages.php:67 veu-packages.php:67
2544
  msgid "Extends Gutenberg's blocks."
2545
  msgstr "Gutenbergのブロックを拡張します。"
2546
 
2547
+ #: dist/veu-packages.php:77 veu-packages.php:77
2548
  msgid "Rewrite the title tag"
2549
  msgstr "タイトルタグの書き換え"
2550
 
2551
+ #: dist/veu-packages.php:78 veu-packages.php:78
2552
  msgid "Print is rewritten by its own rules to html head."
2553
  msgstr ""
2554
  "head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
2555
  "EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
2556
  "ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
2557
 
2558
+ #: dist/veu-packages.php:81 dist/veu-packages.php:121 dist/veu-packages.php:139
2559
+ #: dist/veu-packages.php:169 dist/veu-packages.php:187
2560
+ #: dist/veu-packages.php:228 dist/veu-packages.php:263
2561
+ #: dist/veu-packages.php:286 dist/veu-packages.php:354
2562
+ #: dist/veu-packages.php:449 veu-packages.php:81 veu-packages.php:121
2563
+ #: veu-packages.php:139 veu-packages.php:169 veu-packages.php:187
2564
+ #: veu-packages.php:228 veu-packages.php:263 veu-packages.php:286
2565
+ #: veu-packages.php:354 veu-packages.php:449
2566
  msgid "Setting"
2567
  msgstr "設定"
2568
 
2569
+ #: dist/veu-packages.php:95 veu-packages.php:95
 
 
 
 
 
 
 
 
2570
  msgid "Print meta description"
2571
  msgstr "メタディスクリプションタグを出力"
2572
 
2573
+ #: dist/veu-packages.php:96 veu-packages.php:96
2574
  msgid "Print meta description to html head."
2575
  msgstr ""
2576
  "投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
2577
  "head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
2578
  "している場合はチェックを外して下さい。"
2579
 
2580
+ #: dist/veu-packages.php:105 veu-packages.php:105
2581
  msgid "Main setting page"
2582
  msgstr "メイン設定画面"
2583
 
2584
+ #: dist/veu-packages.php:107 veu-packages.php:107
2585
  msgid "Print og tags to html head."
2586
  msgstr "OG タグを html head 内へ出力します。"
2587
 
2588
+ #: dist/veu-packages.php:108 veu-packages.php:108
2589
  msgid "Print twitter card tags to html head."
2590
  msgstr "Twitter カードタグを html head 内へ出力します。"
2591
 
2592
+ #: dist/veu-packages.php:109 veu-packages.php:109
2593
  msgid "Print social bookmark buttons."
2594
  msgstr "ソーシャルブックマークボタンを表示します。"
2595
 
2596
+ #: dist/veu-packages.php:110 veu-packages.php:110
2597
  msgid "Facebook Page Plugin widget."
2598
  msgstr "Facebookページプラグインウィジェット"
2599
 
2600
+ #: dist/veu-packages.php:111 veu-packages.php:111
2601
  msgid "Print Follow me box to content bottom."
2602
  msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
2603
 
2604
+ #: dist/veu-packages.php:113 veu-packages.php:113
2605
  #, php-format
2606
  msgid "* You can stop the function separately from the %s."
2607
  msgstr "%s から個別に機能を停止する事ができます。"
2608
 
2609
+ #: dist/veu-packages.php:117 veu-packages.php:117
2610
  msgid "Social media cooperation"
2611
  msgstr "ソーシャルメディア連携"
2612
 
2613
+ #: dist/veu-packages.php:136 veu-packages.php:136
2614
  msgid "Print Google Analytics tracking code."
2615
  msgstr ""
2616
  "Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
2618
  "のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
2619
  "合はチェックを外して下さい。"
2620
 
2621
+ #: dist/veu-packages.php:152 veu-packages.php:152
2622
  msgid "You can use various widgets."
2623
  msgstr ""
2624
  "以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
2625
  "→「ウィジェット」の設定画面より行って下さい。"
2626
 
2627
+ #: dist/veu-packages.php:154 veu-packages.php:154
2628
  msgid ""
2629
  "VK_Recent Posts - display the link text and the date of the latest article "
2630
  "title."
2631
  msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
2632
 
2633
+ #: dist/veu-packages.php:155 veu-packages.php:155
2634
  msgid ""
2635
  "VK_Page content to widget - display the contents of the page to the widgets."
2636
  msgstr ""
2637
  "VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
2638
 
2639
+ #: dist/veu-packages.php:156 veu-packages.php:156
2640
  msgid "VK_Profile - display the profile entered in the widget."
2641
  msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
2642
 
2643
+ #: dist/veu-packages.php:157 veu-packages.php:157
2644
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
2645
  msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
2646
 
2647
+ #: dist/veu-packages.php:158 veu-packages.php:158
2648
  msgid "VK_3PR area - display the 3PR area."
2649
  msgstr "VK_3PR エリア - 3PR エリアを表示します。"
2650
 
2651
+ #: dist/veu-packages.php:159 veu-packages.php:159
2652
  msgid "categories/tags list"
2653
  msgstr "カテゴリー/タグ リスト"
2654
 
2655
+ #: dist/veu-packages.php:159 veu-packages.php:159
2656
  msgid "Displays a categories, tags or format list."
2657
  msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
2658
 
2659
+ #: dist/veu-packages.php:165 veu-packages.php:165
2660
  msgid "Widgets"
2661
  msgstr "ウィジェット"
2662
 
2663
+ #: dist/veu-packages.php:183 veu-packages.php:183
2664
  msgid "CSS customize"
2665
  msgstr "CSSカスタマイズ"
2666
 
2667
+ #: dist/veu-packages.php:184 veu-packages.php:184
2668
  msgid "You can set Customize CSS."
2669
  msgstr ""
2670
  "テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
2671
  "追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
2672
  "さい。"
2673
 
2674
+ #: dist/veu-packages.php:202 veu-packages.php:202
2675
  msgid "Child page index"
2676
  msgstr "子ページの一覧表示"
2677
 
2678
+ #: dist/veu-packages.php:203 veu-packages.php:203
2679
  msgid ""
2680
  "At the bottom of the specified page, it will display a list of the child "
2681
  "page."
2683
  "指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
2684
  "サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
2685
 
2686
+ #: dist/veu-packages.php:213 veu-packages.php:213
2687
  msgid "Page list from ancestor"
2688
  msgstr "先祖階層からの子ページリスト表示"
2689
 
2690
+ #: dist/veu-packages.php:214 veu-packages.php:214
2691
  msgid "Display Page list from ancestor at after content."
2692
  msgstr ""
2693
  "現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
2694
 
2695
+ #: dist/veu-packages.php:225 veu-packages.php:225
2696
  msgid "Display Contact Section at after content."
2697
  msgstr "お問い合わせ情報を本文の下に表示する"
2698
 
2699
+ #: dist/veu-packages.php:242 veu-packages.php:242
2700
  msgid "Display HTML Site Map"
2701
  msgstr "HTMLサイトマップの表示"
2702
 
2703
+ #: dist/veu-packages.php:243 veu-packages.php:243
2704
  msgid "It displays a HTML Site Map to the specified page."
2705
  msgstr "指定した固定ページにHTMLサイトマップを表示します。"
2706
 
2707
+ #: dist/veu-packages.php:268 veu-packages.php:268
2708
  msgid "Contents setting"
2709
  msgstr "CTA表示内容設定"
2710
 
2711
+ #: dist/veu-packages.php:283 veu-packages.php:283
2712
  msgid "Insert ads to content."
2713
  msgstr "記事に広告を挿入します"
2714
 
2715
+ #: dist/veu-packages.php:300 veu-packages.php:300
2716
  msgid "Print Related posts lists to post content bottom."
2717
  msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
2718
 
2719
+ #: dist/veu-packages.php:310 veu-packages.php:310
2720
+ msgid "Noindex additional function"
2721
+ msgstr "noindex 追加機能"
2722
+
2723
+ #: dist/veu-packages.php:311 veu-packages.php:311
2724
+ msgid "Print noindex tag to html head."
2725
+ msgstr "noindex タグを html head 内へ出力します。"
2726
+
2727
+ #: dist/veu-packages.php:321 veu-packages.php:321
2728
  msgid "Disable ping back"
2729
  msgstr "ping backを停止"
2730
 
2731
+ #: dist/veu-packages.php:322 veu-packages.php:322
2732
  msgid "Disable xmlrpc ping back."
2733
  msgstr "xmlrpcを停止"
2734
 
2735
+ #: dist/veu-packages.php:330 dist/veu-packages.php:331 veu-packages.php:330
2736
  #: veu-packages.php:331
2737
  msgid "Disable dashbord"
2738
  msgstr "ダッシュボードに最新情報を表示しない"
2739
 
2740
+ #: dist/veu-packages.php:339 veu-packages.php:339
2741
  msgid "Admin bar manu"
2742
  msgstr "管理バーメニュー"
2743
 
2744
+ #: dist/veu-packages.php:340 veu-packages.php:340
2745
  msgid "Add ExUnit menu to admin bar."
2746
  msgstr "ExUnitのメニューを管理バーに表示する"
2747
 
2748
+ #: dist/veu-packages.php:350 veu-packages.php:350
2749
  msgid "Post Type Manager"
2750
  msgstr "カスタム投稿タイプマネージャー"
2751
 
2752
+ #: dist/veu-packages.php:351 veu-packages.php:351
2753
  msgid "Add custom post types and custom taxonomies."
2754
  msgstr "カスタム投稿タイプやカスタム分類を追加します。"
2755
 
2756
+ #: dist/veu-packages.php:368 veu-packages.php:368
2757
  msgid "Page Top Button"
2758
  msgstr "ページトップへ戻るボタン"
2759
 
2760
+ #: dist/veu-packages.php:369 veu-packages.php:369
2761
  msgid ""
2762
  "The page top button is displayed in the lower right corner of the screen."
2763
  msgstr "ページトップへ戻るボタンは、画面の右下隅に表示されます。"
2764
 
2765
+ #: dist/veu-packages.php:379 veu-packages.php:379
2766
  msgid "Smooth scroll"
2767
  msgstr "スムーススクロール"
2768
 
2769
+ #: dist/veu-packages.php:380 veu-packages.php:380
2770
  msgid "Add smooth scroll at anchor link in same page."
2771
  msgstr ""
2772
  "ページ内のアンカーリンククリックした際にスムーズにスクロースします。<br>※他の"
2773
  "jsと干渉する事があります。独自にjsで制御している箇所をクリックしても正しく動"
2774
  "作しない場合はこの機能を停止してみてください。"
2775
 
2776
+ #: dist/veu-packages.php:390 veu-packages.php:390
2777
  msgid "Add body class"
2778
  msgstr "Body class の追加"
2779
 
2780
+ #: dist/veu-packages.php:391 veu-packages.php:391
2781
  msgid "Add \"Post type\", \"Page slug\" etc class name to the body class."
2782
  msgstr "投稿タイプ名や固定ページのスラッグ名をbodyタグのクラスに追加します。"
2783
 
2784
+ #: dist/veu-packages.php:401 veu-packages.php:401
2785
  msgid "Navi menu class custom"
2786
  msgstr "ナビメニューclassの改変"
2787
 
2788
+ #: dist/veu-packages.php:402 veu-packages.php:402
2789
  msgid "Current class tuning of navi menu."
2790
  msgstr ""
2791
  "メニューに投稿トップやカスタム投稿タイプアーカイブページが設定された時に、詳"
2792
  "細ページや関連するカスタム分類ページを表示している時でも適切にcurrentクラスが"
2793
  "追加されるように調整します。"
2794
 
2795
+ #: dist/veu-packages.php:413 veu-packages.php:413
2796
  msgid "Display Eye Catch image at before content."
2797
  msgstr ""
2798
  "アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
2799
  "す。"
2800
 
2801
+ #: dist/veu-packages.php:423 veu-packages.php:423
2802
  msgid "TinyMCE Style Tags"
2803
  msgstr "TinyMCE スタイルタグ"
2804
 
2805
+ #: dist/veu-packages.php:424 veu-packages.php:424
2806
  msgid "Add TinyMCE Editor to style tags."
2807
  msgstr "スタイルタグにTinyMCEエディタを追加する"
2808
 
2809
+ #: dist/veu-packages.php:434 veu-packages.php:434
2810
  msgid "Print Bootstrap css ( grid / button / table )"
2811
  msgstr "Bootstrap の CSS(grid/button/tableのみ)を出力"
2812
 
2813
+ #: dist/veu-packages.php:435 veu-packages.php:435
2814
  msgid ""
2815
  "If your using theme has already including Bootstrap, you deactivate this "
2816
  "item."
2819
  "(Lightningなど)やプラグインで Bootstrap を既に読み込んでいる場合はチェック"
2820
  "を外して下さい。"
2821
 
2822
+ #: dist/veu-packages.php:445 veu-packages.php:445
2823
+ msgid "Print meta Keyword"
2824
+ msgstr "メタキーワードを出力"
2825
+
2826
+ #: dist/veu-packages.php:446 veu-packages.php:446
2827
+ msgid "Print meta Keyword to html head."
2828
+ msgstr "ヘッダーにメタキーワードを出力します。"
2829
+
2830
+ #: dist/veu-packages.php:446 veu-packages.php:446
2831
+ msgid "This feature will be discontinued shortly."
2832
+ msgstr "この機能は間もなく廃止されます。"
2833
+
2834
+ #: dist/veu-packages.php:463 veu-packages.php:463
2835
  msgid "Favicon setting"
2836
  msgstr "ファビコン設定"
2837
 
2838
+ #: dist/veu-packages.php:464 veu-packages.php:464
2839
  msgid "About favicon."
2840
  msgstr ""
2841
  "ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
2842
  "(ファビコン)を設定します。"
2843
 
2844
+ #: dist/veu-packages.php:464 veu-packages.php:464
2845
  msgid ""
2846
  "This feature will be discontinued shortly.<br>You can set the site icon from "
2847
  "\"Site Identity\" panel of \"Themes > Customize\"."
2850
  "サイトアイコンは「外観 > カスタマイズ」の「サイト基本情報」パネルから設定でき"
2851
  "ます。"
2852
 
2853
+ #: dist/vkExUnit.php:83 vkExUnit.php:83
2854
  #, php-format
2855
  msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
2856
  msgstr "使用中のPHPのバージョン(%s) が古すぎるので VK ExUnit は動作しません。"
2857
 
2858
+ #: dist/vkExUnit.php:86 vkExUnit.php:86
2859
  msgid "VK ExUnit supports PHP5.6 or later."
2860
  msgstr "VKExUnit がサポートしているPHPのバージョンは5.6以降です"
2861
 
2862
+ #: dist/vkExUnit.php:102 vkExUnit.php:102
2863
  #, php-format
2864
  msgid "Current PHP Version(%s) is old."
2865
  msgstr "使用中のPHPのバージョン(%s) が古いです。"
2866
 
2867
+ #: dist/vkExUnit.php:103 vkExUnit.php:103
2868
  #, php-format
2869
  msgid "%s supports PHP5.6 or later."
2870
  msgstr "%s はPHP5.6以降をサポートしています。"
2871
 
2872
+ #: inc/post-type-manager/package/class.post-type-manager.php:139
2873
+ msgid "If you want to use the block editor that, you have to use the REST API."
2874
+ msgstr "ブロックエディターを使用する場合は、REST APIを使用する必要があります。"
 
 
 
 
 
 
 
 
 
 
 
 
2875
 
2876
+ #: inc/sitemap-page/sitemap-page-admin-main-setting.php:51
2877
+ msgid "Exclude post type from the sitemap"
2878
+ msgstr "サイトマップから除外する投稿タイプ"
2879
 
2880
+ #: inc/sitemap-page/sitemap-page-admin-main-setting.php:65
2881
+ msgid ""
2882
+ "If you want to do not display specific page that, you can set on that page "
2883
+ "edit screen."
2884
+ msgstr ""
2885
+ "特定の固定ページをサイトマップに表示したくない場合は、該当の固定ページの編集"
2886
+ "画面から除外設定をしてください。"
2887
 
2888
+ #~ msgid "Test version update"
2889
+ #~ msgstr "テストバージョンのアップデート"
 
2890
 
2891
+ #~ msgid "Active test version update"
2892
+ #~ msgstr "テストバージョンのアップデートを有効にする"
 
2893
 
2894
+ #, fuzzy
2895
+ #~| msgid ""
2896
+ #~| "The entered contents are displayed directly. You can not use Dynamic "
2897
+ #~| "blocks, reuse blocks, etc."
2898
+ #~ msgid ""
2899
+ #~ "The entered contents are displayed directly. You can not use short codes, "
2900
+ #~ "reuse blocks, etc."
2901
+ #~ msgstr ""
2902
+ #~ "入力された内容は直接表示されます。 動的ブロックや再利用ブロックなどは使用"
2903
+ #~ "できません。"
2904
+
2905
+ #~ msgid "Site Map Hide"
2906
+ #~ msgstr "サイトマップ非表示設定"
2907
+
2908
+ #~ msgid "Don't display on Sitemap."
2909
+ #~ msgstr "サイトマップに表示しない"
2910
 
2911
+ #, fuzzy
2912
+ #~| msgid "SNS Title"
2913
+ #~ msgid "Sns Title"
2914
+ #~ msgstr "OGPタイトル"
2915
 
2916
+ #~ msgid "Share bottons"
2917
+ #~ msgstr "ソーシャルボタン"
 
2918
 
2919
  #, fuzzy
2920
  #~| msgid "CTA common setting"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.1.0
6
  Tested up to: 5.2.2
7
- Stable tag: 9.6.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -87,6 +87,10 @@ e.g.
87
 
88
  == Changelog ==
89
 
 
 
 
 
90
 
91
  = 9.6.0.0 =
92
  [ Specification change ][ font awesome ] 5.6 -> 5.10.1
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.1.0
6
  Tested up to: 5.2.2
7
+ Stable tag: 9.6.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
87
 
88
  == Changelog ==
89
 
90
+ = 9.6.1.0 =
91
+ [ Add function ][ HTML SiteMap ] Exclude post type
92
+ [ Specification change ][ HTML SiteMap ] Abolished hidden page setting on ExUnit Main Setting Page.
93
+ [ bug fix ] metabox display
94
 
95
  = 9.6.0.0 =
96
  [ Specification change ][ font awesome ] 5.6 -> 5.10.1
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.6.0.1
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages
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.6.1.0
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages