Version Description
- [ Add Function ][ Button Widget ] Button widget is now available!!
- [ Bug fix ][ Page Widget ] New Posts Widget PHP error fix
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 5.1.0 |
Comparing to | |
See all releases |
Code changes from version 5.0.3 to 5.1.0
- _scss/_contents_option_style.scss +2 -0
- _scss/vkExUnit_style.scss +12 -2
- admin_wrapper.php +21 -0
- css/vkExUnit_editor_style.css +1 -1
- css/vkExUnit_style.css +1 -1
- css/vkExUnit_style_in_bs.css +1 -1
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +531 -428
- languages/vkexunit.pot +210 -89
- packages.php +9 -0
- plugins/other_widget/other_widget.php +1 -0
- plugins/other_widget/widget-3pr-area.php +24 -6
- plugins/other_widget/widget-banner.php +9 -5
- plugins/other_widget/widget-button.php +168 -0
- plugins/other_widget/widget-new-posts.php +6 -6
- plugins/other_widget/widget-pr-blocks.php +30 -10
- plugins_admin/admin_bar.php +29 -58
- plugins_admin/disable_guide.php +37 -0
- plugins_admin/vk-admin/_scss/vk_admin.scss +3 -0
- plugins_admin/vk-admin/css/vk_admin.css +1 -1
- readme.txt +9 -3
- vkExUnit.php +3 -2
_scss/_contents_option_style.scss
CHANGED
@@ -10,6 +10,8 @@ p.veu_leadTxt { font-size:1.6em; line-height: 150%;padding:0; }
|
|
10 |
p.veu_leadTxt { font-size:2em; }
|
11 |
}
|
12 |
|
|
|
|
|
13 |
.btn.btn-blank::after { margin-left:0.7em;font-family: FontAwesome;content: "\f08e"; }
|
14 |
|
15 |
/* .qaItem
|
10 |
p.veu_leadTxt { font-size:2em; }
|
11 |
}
|
12 |
|
13 |
+
.veu_caption { font-size:0.8em; }
|
14 |
+
|
15 |
.btn.btn-blank::after { margin-left:0.7em;font-family: FontAwesome;content: "\f08e"; }
|
16 |
|
17 |
/* .qaItem
|
_scss/vkExUnit_style.scss
CHANGED
@@ -559,12 +559,11 @@ $section_pagelist_margin:2.5em 0 1em;
|
|
559 |
/* Widget .veu_3prArea
|
560 |
/*-------------------------------------------*/
|
561 |
.veu_3prArea{
|
562 |
-
.subSection-title{ font-size: 18px; }
|
563 |
.summary{ margin-bottom: 0.5em; font-size: 14px; line-height: 1.6em; }
|
564 |
.linkurl a{ text-decoration: none; }
|
565 |
}
|
566 |
.veu_3prArea_image {
|
567 |
-
margin-top: 0.8em;
|
568 |
margin-bottom: 0.8em;
|
569 |
.image_pc{ display: block; }
|
570 |
.image_sp{ display: none; }
|
@@ -606,4 +605,15 @@ $section_pagelist_margin:2.5em 0 1em;
|
|
606 |
// .veu_prBlocks{
|
607 |
.prBlock{ margin-bottom: 1.5em; }
|
608 |
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
}
|
559 |
/* Widget .veu_3prArea
|
560 |
/*-------------------------------------------*/
|
561 |
.veu_3prArea{
|
562 |
+
.subSection-title{ font-size: 18px;margin-top: 0.8em; }
|
563 |
.summary{ margin-bottom: 0.5em; font-size: 14px; line-height: 1.6em; }
|
564 |
.linkurl a{ text-decoration: none; }
|
565 |
}
|
566 |
.veu_3prArea_image {
|
|
|
567 |
margin-bottom: 0.8em;
|
568 |
.image_pc{ display: block; }
|
569 |
.image_sp{ display: none; }
|
605 |
// .veu_prBlocks{
|
606 |
.prBlock{ margin-bottom: 1.5em; }
|
607 |
// }
|
608 |
+
}
|
609 |
+
/*-------------------------------------------*/
|
610 |
+
/* Widget .veu_button
|
611 |
+
/*-------------------------------------------*/
|
612 |
+
.veu_button {
|
613 |
+
i { margin-left:0.3em;margin-right:0.3em; }
|
614 |
+
.button_mainText,
|
615 |
+
.button_subText { display: block; }
|
616 |
+
.btn.btn-sm { padding-top:0.6em;padding-bottom:0.45em; }
|
617 |
+
.btn { padding-top:0.8em;padding-bottom:0.6em; }
|
618 |
+
.btn.btn-lg { padding-top:0.8em;padding-bottom:0.7em; }
|
619 |
}
|
admin_wrapper.php
CHANGED
@@ -53,6 +53,7 @@ function vkExUnit_render_main_config() {
|
|
53 |
// $menu
|
54 |
/*--------------------------------------------------*/
|
55 |
global $vkExUnit_options;
|
|
|
56 |
$get_menu_html = '';
|
57 |
foreach ( $vkExUnit_options as $vkoption ) {
|
58 |
if ( ! isset( $vkoption['render_page'] ) ) { continue; }
|
@@ -69,6 +70,7 @@ function vkExUnit_render_main_config() {
|
|
69 |
|
70 |
function vkExUnit_register_setting( $tab_label = 'tab_label', $option_name, $sanitize_callback, $render_page ) {
|
71 |
global $vkExUnit_options;
|
|
|
72 |
$vkExUnit_options[] =
|
73 |
array(
|
74 |
'option_name' => $option_name,
|
@@ -79,6 +81,25 @@ function vkExUnit_register_setting( $tab_label = 'tab_label', $option_name, $san
|
|
79 |
}
|
80 |
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
function vkExUnit_main_config_sanitaize( $post ) {
|
83 |
global $vkExUnit_options;
|
84 |
|
53 |
// $menu
|
54 |
/*--------------------------------------------------*/
|
55 |
global $vkExUnit_options;
|
56 |
+
if (!isset($vkExUnit_options)) $vkExUnit_options = array();
|
57 |
$get_menu_html = '';
|
58 |
foreach ( $vkExUnit_options as $vkoption ) {
|
59 |
if ( ! isset( $vkoption['render_page'] ) ) { continue; }
|
70 |
|
71 |
function vkExUnit_register_setting( $tab_label = 'tab_label', $option_name, $sanitize_callback, $render_page ) {
|
72 |
global $vkExUnit_options;
|
73 |
+
if (!isset($vkExUnit_options)) $vkExUnit_options = array();
|
74 |
$vkExUnit_options[] =
|
75 |
array(
|
76 |
'option_name' => $option_name,
|
81 |
}
|
82 |
|
83 |
|
84 |
+
add_action( 'admin_bar_menu', 'vkExUnit_package_adminbar', 43 );
|
85 |
+
function vkExUnit_package_adminbar( $wp_admin_bar ) {
|
86 |
+
|
87 |
+
if ( ! current_user_can( 'activate_plugins' ) ) { return; }
|
88 |
+
|
89 |
+
global $vkExUnit_options;
|
90 |
+
if (!isset($vkExUnit_options) || !count($vkExUnit_options)) return;
|
91 |
+
|
92 |
+
foreach ($vkExUnit_options as $opt) {
|
93 |
+
$wp_admin_bar->add_node( array(
|
94 |
+
'parent' => 'veu_adminlink_main',
|
95 |
+
'title' => $opt['tab_label'],
|
96 |
+
'id' => 'vew_configbar_'.$opt['option_name'],
|
97 |
+
'href' => admin_url() . 'admin.php?page=vkExUnit_main_setting#'.$opt['option_name']
|
98 |
+
));
|
99 |
+
}
|
100 |
+
}
|
101 |
+
|
102 |
+
|
103 |
function vkExUnit_main_config_sanitaize( $post ) {
|
104 |
global $vkExUnit_options;
|
105 |
|
css/vkExUnit_editor_style.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}
|
1 |
+
.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.veu_caption{font-size:0.8em}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}
|
css/vkExUnit_style.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}html{font-size:inherit}.link-list li{padding:0.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;content:"\f040";font-family:FontAwesome}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:0.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}@media (max-width: 767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0;display:flex}.veu_socialSet ul li{position:relative;display:block;overflow:visible;width:50%;margin:3px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:7px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns,.veu_socialSet ul li a .fa-get-pocket{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet ul li.sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet ul li.sb_icon.sb_facebook a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet ul li.sb_icon.sb_hatena a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet ul li.sb_icon.sb_twitter a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet ul li.sb_icon.sb_google a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet ul li.sb_icon.sb_line a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_socialSet ul li.sb_pocket a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_count_sns_pocket,.veu_count_sns_fb,.veu_count_sns_hb{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:bold}@media (max-width: 767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet ul li{width:48%;margin-bottom:9px}.veu_socialSet ul li:nth-child(even){margin-right:0}.veu_socialSet ul li.sb_icon a{padding:8px 10px}.pocket-count,.veu_count_sns_fb,.veu_count_sns_hb{bottom:2px}}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg")}[class^="vk_icon_w_r_sns_"],[class*=" vk_icon_w_r_sns_"]{text-transform:none;font-weight:normal;font-style:normal;font-variant:normal;font-family:'vk_sns';line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.veu_childPage_list{margin:2.5em 0 1em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{position:relative;display:block;overflow:hidden;height:100%;padding:0 20px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_childPage_list .childPage_list_title{margin-top:20px;color:#464646;font-size:16px;line-height:1.4}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;margin-bottom:5px;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}@media (min-width: 541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em;padding:20px 20px 0;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_pageList_ancestor h3{margin:0.5em 0}.veu_pageList_ancestor h3 a{color:#333;font-size:16px}.veu_pageList_ancestor ul.pageList{margin-top:1em;padding-left:0}.veu_pageList_ancestor ul.pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor ul.pageList a:hover{text-decoration:underline}.veu_pageList_ancestor ul.pageList>.page_item{list-style:none}.veu_pageList_ancestor ul.pageList li{margin-bottom:0}.veu_pageList_ancestor ul.pageList ul{margin:0;padding-left:0px;padding-bottom:0}.veu_pageList_ancestor ul.pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor ul.pageList ul li:before{position:absolute;top:0.26em;left:5px;display:inline-block}.veu_pageList_ancestor ul.pageList ul li a{padding-left:20px}.veu_pageList_ancestor ul.pageList ul li li a{padding-left:30px}.veu_pageList_ancestor ul.pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:bold}.veu_followSet{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef;clear:both}.veu_followSet h1.followSet_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_followSet .followSet_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em}.veu_followSet .follow_btn{float:left;margin-right:20px;margin-bottom:10px}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta h1.cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;background-color:#f9f9f9;box-shadow:inset 0px 0px 0px 1px #fff}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding-top:4px;padding-bottom:1px;font-size:28px;line-height:110%}.veu_contact .contact_bt_txt:before{margin-right:7px;content:"\f003";font-family:FontAwesome}.veu_contact .contact_bt_txt:after{margin-left:7px;content:"\f18e";font-family:FontAwesome}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}@media (min-width: 1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right}}.widget .veu_contact .contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 0.8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_postList h1.mainSection-title,.veu_postList .subSection-title{margin-bottom:0}.veu_postList ul.postList{margin:15px 0 30px;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;padding:0;border-bottom:1px dotted #666}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:5px 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}@media (min-width: 992px){.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2F915F}.veu_profile .sns_btns .youtube_btn a{background:#C81D1C}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-top:0.8em;margin-bottom:0.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}@media screen and (max-width: 768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock_icon_outer{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:36px}.prBlock_title{margin-top:0.8em;margin-bottom:0.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock_image{display:table;margin:0 auto}.prBlock_image img{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.prBlock_summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.6em}@media screen and (max-width: 992px){.prBlock{margin-bottom:1.5em}}
|
1 |
+
.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.veu_caption{font-size:0.8em}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}html{font-size:inherit}.link-list li{padding:0.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;content:"\f040";font-family:FontAwesome}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:0.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}@media (max-width: 767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0;display:flex}.veu_socialSet ul li{position:relative;display:block;overflow:visible;width:50%;margin:3px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:7px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns,.veu_socialSet ul li a .fa-get-pocket{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet ul li.sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet ul li.sb_icon.sb_facebook a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet ul li.sb_icon.sb_hatena a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet ul li.sb_icon.sb_twitter a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet ul li.sb_icon.sb_google a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet ul li.sb_icon.sb_line a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_socialSet ul li.sb_pocket a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_count_sns_pocket,.veu_count_sns_fb,.veu_count_sns_hb{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:bold}@media (max-width: 767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet ul li{width:48%;margin-bottom:9px}.veu_socialSet ul li:nth-child(even){margin-right:0}.veu_socialSet ul li.sb_icon a{padding:8px 10px}.pocket-count,.veu_count_sns_fb,.veu_count_sns_hb{bottom:2px}}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg")}[class^="vk_icon_w_r_sns_"],[class*=" vk_icon_w_r_sns_"]{text-transform:none;font-weight:normal;font-style:normal;font-variant:normal;font-family:'vk_sns';line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.veu_childPage_list{margin:2.5em 0 1em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{position:relative;display:block;overflow:hidden;height:100%;padding:0 20px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_childPage_list .childPage_list_title{margin-top:20px;color:#464646;font-size:16px;line-height:1.4}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;margin-bottom:5px;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}@media (min-width: 541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em;padding:20px 20px 0;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_pageList_ancestor h3{margin:0.5em 0}.veu_pageList_ancestor h3 a{color:#333;font-size:16px}.veu_pageList_ancestor ul.pageList{margin-top:1em;padding-left:0}.veu_pageList_ancestor ul.pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor ul.pageList a:hover{text-decoration:underline}.veu_pageList_ancestor ul.pageList>.page_item{list-style:none}.veu_pageList_ancestor ul.pageList li{margin-bottom:0}.veu_pageList_ancestor ul.pageList ul{margin:0;padding-left:0px;padding-bottom:0}.veu_pageList_ancestor ul.pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor ul.pageList ul li:before{position:absolute;top:0.26em;left:5px;display:inline-block}.veu_pageList_ancestor ul.pageList ul li a{padding-left:20px}.veu_pageList_ancestor ul.pageList ul li li a{padding-left:30px}.veu_pageList_ancestor ul.pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:bold}.veu_followSet{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef;clear:both}.veu_followSet h1.followSet_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_followSet .followSet_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em}.veu_followSet .follow_btn{float:left;margin-right:20px;margin-bottom:10px}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta h1.cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;background-color:#f9f9f9;box-shadow:inset 0px 0px 0px 1px #fff}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding-top:4px;padding-bottom:1px;font-size:28px;line-height:110%}.veu_contact .contact_bt_txt:before{margin-right:7px;content:"\f003";font-family:FontAwesome}.veu_contact .contact_bt_txt:after{margin-left:7px;content:"\f18e";font-family:FontAwesome}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}@media (min-width: 1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right}}.widget .veu_contact .contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 0.8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_postList h1.mainSection-title,.veu_postList .subSection-title{margin-bottom:0}.veu_postList ul.postList{margin:15px 0 30px;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;padding:0;border-bottom:1px dotted #666}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:5px 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}@media (min-width: 992px){.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2F915F}.veu_profile .sns_btns .youtube_btn a{background:#C81D1C}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:0.8em}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:0.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}@media screen and (max-width: 768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock_icon_outer{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:36px}.prBlock_title{margin-top:0.8em;margin-bottom:0.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock_image{display:table;margin:0 auto}.prBlock_image img{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.prBlock_summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.6em}@media screen and (max-width: 992px){.prBlock{margin-bottom:1.5em}}.veu_button i{margin-left:0.3em;margin-right:0.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:0.6em;padding-bottom:0.45em}.veu_button .btn{padding-top:0.8em;padding-bottom:0.6em}.veu_button .btn.btn-lg{padding-top:0.8em;padding-bottom:0.7em}
|
css/vkExUnit_style_in_bs.css
CHANGED
@@ -9,4 +9,4 @@
|
|
9 |
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
10 |
* Copyright 2011-2015 Twitter, Inc.
|
11 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
12 |
-
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}html{font-size:inherit}.link-list li{padding:0.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;content:"\f040";font-family:FontAwesome}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:0.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}@media (max-width: 767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0;display:flex}.veu_socialSet ul li{position:relative;display:block;overflow:visible;width:50%;margin:3px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:7px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns,.veu_socialSet ul li a .fa-get-pocket{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet ul li.sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet ul li.sb_icon.sb_facebook a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet ul li.sb_icon.sb_hatena a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet ul li.sb_icon.sb_twitter a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet ul li.sb_icon.sb_google a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet ul li.sb_icon.sb_line a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_socialSet ul li.sb_pocket a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_count_sns_pocket,.veu_count_sns_fb,.veu_count_sns_hb{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:bold}@media (max-width: 767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet ul li{width:48%;margin-bottom:9px}.veu_socialSet ul li:nth-child(even){margin-right:0}.veu_socialSet ul li.sb_icon a{padding:8px 10px}.pocket-count,.veu_count_sns_fb,.veu_count_sns_hb{bottom:2px}}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg")}[class^="vk_icon_w_r_sns_"],[class*=" vk_icon_w_r_sns_"]{text-transform:none;font-weight:normal;font-style:normal;font-variant:normal;font-family:'vk_sns';line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.veu_childPage_list{margin:2.5em 0 1em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{position:relative;display:block;overflow:hidden;height:100%;padding:0 20px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_childPage_list .childPage_list_title{margin-top:20px;color:#464646;font-size:16px;line-height:1.4}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;margin-bottom:5px;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}@media (min-width: 541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em;padding:20px 20px 0;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_pageList_ancestor h3{margin:0.5em 0}.veu_pageList_ancestor h3 a{color:#333;font-size:16px}.veu_pageList_ancestor ul.pageList{margin-top:1em;padding-left:0}.veu_pageList_ancestor ul.pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor ul.pageList a:hover{text-decoration:underline}.veu_pageList_ancestor ul.pageList>.page_item{list-style:none}.veu_pageList_ancestor ul.pageList li{margin-bottom:0}.veu_pageList_ancestor ul.pageList ul{margin:0;padding-left:0px;padding-bottom:0}.veu_pageList_ancestor ul.pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor ul.pageList ul li:before{position:absolute;top:0.26em;left:5px;display:inline-block}.veu_pageList_ancestor ul.pageList ul li a{padding-left:20px}.veu_pageList_ancestor ul.pageList ul li li a{padding-left:30px}.veu_pageList_ancestor ul.pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:bold}.veu_followSet{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef;clear:both}.veu_followSet h1.followSet_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_followSet .followSet_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em}.veu_followSet .follow_btn{float:left;margin-right:20px;margin-bottom:10px}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta h1.cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;background-color:#f9f9f9;box-shadow:inset 0px 0px 0px 1px #fff}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding-top:4px;padding-bottom:1px;font-size:28px;line-height:110%}.veu_contact .contact_bt_txt:before{margin-right:7px;content:"\f003";font-family:FontAwesome}.veu_contact .contact_bt_txt:after{margin-left:7px;content:"\f18e";font-family:FontAwesome}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}@media (min-width: 1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right}}.widget .veu_contact .contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 0.8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_postList h1.mainSection-title,.veu_postList .subSection-title{margin-bottom:0}.veu_postList ul.postList{margin:15px 0 30px;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;padding:0;border-bottom:1px dotted #666}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:5px 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}@media (min-width: 992px){.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2F915F}.veu_profile .sns_btns .youtube_btn a{background:#C81D1C}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-top:0.8em;margin-bottom:0.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}@media screen and (max-width: 768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock_icon_outer{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:36px}.prBlock_title{margin-top:0.8em;margin-bottom:0.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock_image{display:table;margin:0 auto}.prBlock_image img{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.prBlock_summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.6em}@media screen and (max-width: 992px){.prBlock{margin-bottom:1.5em}}
|
9 |
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
10 |
* Copyright 2011-2015 Twitter, Inc.
|
11 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
12 |
+
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}.veu_leadTxt,p.veu_leadTxt{font-size:1.6em;line-height:150%;padding:0}@media (min-width: 768px){.veu_leadTxt,p.veu_leadTxt{font-size:2em}}.veu_caption{font-size:0.8em}.btn.btn-blank::after{margin-left:0.7em;font-family:FontAwesome;content:"\f08e"}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:"areal";content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:none;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::before,.veu_feat_list::after{border:none;background:none}.veu_feat_list::before{position:absolute;left:0;top:-0.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:0.5em;padding:0.2em 0.5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}html{font-size:inherit}.link-list li{padding:0.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;content:"\f040";font-family:FontAwesome}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:0.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}@media (max-width: 767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0;display:flex}.veu_socialSet ul li{position:relative;display:block;overflow:visible;width:50%;margin:3px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:7px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns,.veu_socialSet ul li a .fa-get-pocket{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet ul li.sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet ul li.sb_icon.sb_facebook a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet ul li.sb_icon.sb_hatena a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet ul li.sb_icon.sb_twitter a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet ul li.sb_icon.sb_google a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet ul li.sb_icon.sb_line a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_socialSet ul li.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_socialSet ul li.sb_pocket a:hover{box-shadow:none;transform:translate3d(0, 4px, 0);-webkit-transform:translate3d(0, 4px, 0)}.veu_count_sns_pocket,.veu_count_sns_fb,.veu_count_sns_hb{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:bold}@media (max-width: 767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet ul li{width:48%;margin-bottom:9px}.veu_socialSet ul li:nth-child(even){margin-right:0}.veu_socialSet ul li.sb_icon a{padding:8px 10px}.pocket-count,.veu_count_sns_fb,.veu_count_sns_hb{bottom:2px}}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg")}[class^="vk_icon_w_r_sns_"],[class*=" vk_icon_w_r_sns_"]{text-transform:none;font-weight:normal;font-style:normal;font-variant:normal;font-family:'vk_sns';line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.veu_childPage_list{margin:2.5em 0 1em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{position:relative;display:block;overflow:hidden;height:100%;padding:0 20px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_childPage_list .childPage_list_title{margin-top:20px;color:#464646;font-size:16px;line-height:1.4}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;margin-bottom:5px;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}@media (min-width: 541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em;padding:20px 20px 0;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff}.veu_pageList_ancestor h3{margin:0.5em 0}.veu_pageList_ancestor h3 a{color:#333;font-size:16px}.veu_pageList_ancestor ul.pageList{margin-top:1em;padding-left:0}.veu_pageList_ancestor ul.pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor ul.pageList a:hover{text-decoration:underline}.veu_pageList_ancestor ul.pageList>.page_item{list-style:none}.veu_pageList_ancestor ul.pageList li{margin-bottom:0}.veu_pageList_ancestor ul.pageList ul{margin:0;padding-left:0px;padding-bottom:0}.veu_pageList_ancestor ul.pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor ul.pageList ul li:before{position:absolute;top:0.26em;left:5px;display:inline-block}.veu_pageList_ancestor ul.pageList ul li a{padding-left:20px}.veu_pageList_ancestor ul.pageList ul li li a{padding-left:30px}.veu_pageList_ancestor ul.pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:bold}.veu_followSet{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef;clear:both}.veu_followSet h1.followSet_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_followSet .followSet_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em}.veu_followSet .follow_btn{float:left;margin-right:20px;margin-bottom:10px}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta h1.cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;background-color:#f9f9f9;box-shadow:inset 0px 0px 0px 1px #fff}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding-top:4px;padding-bottom:1px;font-size:28px;line-height:110%}.veu_contact .contact_bt_txt:before{margin-right:7px;content:"\f003";font-family:FontAwesome}.veu_contact .contact_bt_txt:after{margin-left:7px;content:"\f18e";font-family:FontAwesome}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}@media (min-width: 1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right}}.widget .veu_contact .contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 0.8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_postList h1.mainSection-title,.veu_postList .subSection-title{margin-bottom:0}.veu_postList ul.postList{margin:15px 0 30px;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;padding:0;border-bottom:1px dotted #666}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:5px 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}@media (min-width: 992px){.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2F915F}.veu_profile .sns_btns .youtube_btn a{background:#C81D1C}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:0.8em}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:0.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}@media screen and (max-width: 768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock_icon_outer{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:36px}.prBlock_title{margin-top:0.8em;margin-bottom:0.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock_image{display:table;margin:0 auto}.prBlock_image img{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.prBlock_summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.6em}@media screen and (max-width: 992px){.prBlock{margin-bottom:1.5em}}.veu_button i{margin-left:0.3em;margin-right:0.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:0.6em;padding-bottom:0.45em}.veu_button .btn{padding-top:0.8em;padding-bottom:0.6em}.veu_button .btn.btn-lg{padding-top:0.8em;padding-bottom:0.7em}
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2016-12-
|
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"
|
@@ -10,99 +10,103 @@ msgstr ""
|
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.8.11\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_x;_e;_ex\n"
|
16 |
-
"X-Poedit-SearchPath-0:
|
|
|
17 |
|
18 |
-
#:
|
19 |
-
#: ../plugins/meta_keyword.php:103
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
-
#:
|
24 |
msgid "Activated Packages is noting. please activate some package."
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
27 |
|
28 |
-
#:
|
|
|
|
|
|
|
|
|
29 |
#, php-format
|
30 |
msgid "Author: %s"
|
31 |
msgstr "著者: %s"
|
32 |
|
33 |
-
#:
|
34 |
msgid "Y"
|
35 |
msgstr "年"
|
36 |
|
37 |
-
#:
|
38 |
msgid "F Y"
|
39 |
msgstr "年月"
|
40 |
|
41 |
-
#:
|
42 |
msgid "F j, Y"
|
43 |
msgstr "月日, 年"
|
44 |
|
45 |
-
#:
|
46 |
msgid "Asides"
|
47 |
msgstr "サイド"
|
48 |
|
49 |
-
#:
|
50 |
msgid "Galleries"
|
51 |
msgstr "ギャラリー"
|
52 |
|
53 |
-
#:
|
54 |
msgid "Images"
|
55 |
msgstr "画像"
|
56 |
|
57 |
-
#:
|
58 |
msgid "Videos"
|
59 |
msgstr "ビデオ"
|
60 |
|
61 |
-
#:
|
62 |
msgid "Quotes"
|
63 |
msgstr "引用"
|
64 |
|
65 |
-
#:
|
66 |
msgid "Links"
|
67 |
msgstr "リンク"
|
68 |
|
69 |
-
#:
|
70 |
msgid "Statuses"
|
71 |
msgstr "ステータス"
|
72 |
|
73 |
-
#:
|
74 |
msgid "Audio"
|
75 |
msgstr "オーディオ"
|
76 |
|
77 |
-
#:
|
78 |
msgid "Chats"
|
79 |
msgstr "チャット"
|
80 |
|
81 |
-
#:
|
82 |
msgid "Archives"
|
83 |
msgstr "アーカイブ"
|
84 |
|
85 |
-
#:
|
86 |
#, php-format
|
87 |
msgid "About %s"
|
88 |
msgstr "%s について"
|
89 |
|
90 |
-
#:
|
91 |
-
#:
|
92 |
#, php-format
|
93 |
msgid "Article of %s."
|
94 |
msgstr "%s の記事"
|
95 |
|
96 |
-
#:
|
97 |
#, php-format
|
98 |
msgid "Page of %s"
|
99 |
msgstr "%sページ目"
|
100 |
|
101 |
-
#:
|
102 |
msgid "Print Bootstrap css and js"
|
103 |
msgstr "Bootstrap の CSS と js を出力"
|
104 |
|
105 |
-
#:
|
106 |
msgid ""
|
107 |
"If your using theme has already including Bootstrap, you deactivate this "
|
108 |
"item."
|
@@ -111,98 +115,97 @@ msgstr ""
|
|
111 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
112 |
"下さい。"
|
113 |
|
114 |
-
#:
|
115 |
msgid "Print link fontawesome"
|
116 |
msgstr "fontawesome link タグを出力"
|
117 |
|
118 |
-
#:
|
119 |
msgid "Print fontawesome link tag to html head."
|
120 |
msgstr ""
|
121 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
122 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
123 |
"さい。"
|
124 |
|
125 |
-
#:
|
126 |
msgid "Favicon setting"
|
127 |
msgstr "ファビコン設定"
|
128 |
|
129 |
-
#:
|
130 |
msgid "About favicon."
|
131 |
msgstr ""
|
132 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
133 |
"(ファビコン)を設定します。"
|
134 |
|
135 |
-
#:
|
136 |
msgid "Rewrite the title tag"
|
137 |
msgstr "タイトルタグの書き換え"
|
138 |
|
139 |
-
#:
|
140 |
msgid "Print is rewritten by its own rules to html head."
|
141 |
msgstr ""
|
142 |
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
143 |
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
144 |
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
145 |
|
146 |
-
#:
|
147 |
-
#:
|
148 |
-
#:
|
149 |
-
#: ../packages.php:401
|
150 |
msgid "Setting"
|
151 |
msgstr "設定"
|
152 |
|
153 |
-
#:
|
154 |
msgid "Print meta Keyword"
|
155 |
msgstr "メタキーワードを出力"
|
156 |
|
157 |
-
#:
|
158 |
msgid "Print meta Keyword to html head."
|
159 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
160 |
|
161 |
-
#:
|
162 |
msgid "Print meta description"
|
163 |
msgstr "メタディスクリプションタグを出力"
|
164 |
|
165 |
-
#:
|
166 |
msgid "Print meta description to html head."
|
167 |
msgstr ""
|
168 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
169 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
170 |
"している場合はチェックを外して下さい。"
|
171 |
|
172 |
-
#:
|
173 |
msgid "Main setting page"
|
174 |
msgstr "メイン設定画面"
|
175 |
|
176 |
-
#:
|
177 |
msgid "Print og tags to html head."
|
178 |
msgstr "OG タグを html head 内へ出力します。"
|
179 |
|
180 |
-
#:
|
181 |
msgid "Print twitter card tags to html head."
|
182 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
183 |
|
184 |
-
#:
|
185 |
msgid "Print social bookmark buttons."
|
186 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
187 |
|
188 |
-
#:
|
189 |
msgid "Facebook Page Plugin widget."
|
190 |
msgstr "Facebookページプラグインウィジェット"
|
191 |
|
192 |
-
#:
|
193 |
msgid "Print Follow me box to content bottom."
|
194 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
195 |
|
196 |
-
#:
|
197 |
#, php-format
|
198 |
msgid "* You can stop the function separately from the %s."
|
199 |
msgstr "%s から個別に機能を停止する事ができます。"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Social media cooperation"
|
203 |
msgstr "ソーシャルメディア連携"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Print Google Analytics tracking code."
|
207 |
msgstr ""
|
208 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
@@ -210,49 +213,49 @@ msgstr ""
|
|
210 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
211 |
"合はチェックを外して下さい。"
|
212 |
|
213 |
-
#:
|
214 |
msgid "You can use various widgets."
|
215 |
msgstr ""
|
216 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
|
217 |
"→「ウィジェット」の設定画面より行って下さい。"
|
218 |
|
219 |
-
#:
|
220 |
msgid ""
|
221 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
222 |
"title."
|
223 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
224 |
|
225 |
-
#:
|
226 |
msgid ""
|
227 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
228 |
msgstr ""
|
229 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
230 |
|
231 |
-
#:
|
232 |
msgid "VK_Profile - display the profile entered in the widget."
|
233 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
234 |
|
235 |
-
#:
|
236 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
237 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
238 |
|
239 |
-
#:
|
240 |
msgid "VK_3PR area - display the 3PR area."
|
241 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
242 |
|
243 |
-
#:
|
244 |
msgid "categories/tags list"
|
245 |
msgstr "カテゴリー/タグ リスト"
|
246 |
|
247 |
-
#:
|
248 |
msgid "Displays a categories, tags or format list."
|
249 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
250 |
|
251 |
-
#:
|
252 |
msgid "archive list"
|
253 |
msgstr "アーカイブリスト"
|
254 |
|
255 |
-
#:
|
256 |
msgid ""
|
257 |
"Displays a list of archives. You can choose the post type and also to "
|
258 |
"display archives by month or by year."
|
@@ -260,26 +263,26 @@ msgstr ""
|
|
260 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
261 |
"プを選択できます。"
|
262 |
|
263 |
-
#:
|
264 |
msgid "Widgets"
|
265 |
msgstr "ウィジェット"
|
266 |
|
267 |
-
#:
|
268 |
msgid "CSS customize"
|
269 |
msgstr "CSSカスタマイズ"
|
270 |
|
271 |
-
#:
|
272 |
msgid "You can set Customize CSS."
|
273 |
msgstr ""
|
274 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
275 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
276 |
"さい。"
|
277 |
|
278 |
-
#:
|
279 |
msgid "Child page index"
|
280 |
msgstr "子ページの一覧表示"
|
281 |
|
282 |
-
#:
|
283 |
msgid ""
|
284 |
"At the bottom of the specified page, it will display a list of the child "
|
285 |
"page."
|
@@ -287,36 +290,36 @@ msgstr ""
|
|
287 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
288 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
289 |
|
290 |
-
#:
|
291 |
msgid "Page list from ancestor"
|
292 |
msgstr "先祖階層からの子ページリスト表示"
|
293 |
|
294 |
-
#:
|
295 |
msgid "Display Page list from ancestor at after content."
|
296 |
msgstr ""
|
297 |
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
298 |
|
299 |
-
#:
|
300 |
msgid "Contact Section"
|
301 |
msgstr "お問い合わせ"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Display Contact Section at after content."
|
305 |
msgstr "お問い合わせ情報を本文の下に表示する"
|
306 |
|
307 |
-
#:
|
308 |
msgid "Display HTML Site Map"
|
309 |
msgstr "HTMLサイトマップの表示"
|
310 |
|
311 |
-
#:
|
312 |
msgid "It displays a HTML Site Map to the specified page."
|
313 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Display the CTA at the end of the post content."
|
317 |
msgstr "投稿内容の最後にCTAを表示します。"
|
318 |
|
319 |
-
#:
|
320 |
msgid ""
|
321 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
322 |
"user behavior."
|
@@ -324,7 +327,7 @@ msgstr ""
|
|
324 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
325 |
"情報を表示します。"
|
326 |
|
327 |
-
#:
|
328 |
msgid ""
|
329 |
"As an example, text message and a link button for induction to the free "
|
330 |
"sample download page."
|
@@ -332,183 +335,198 @@ msgstr ""
|
|
332 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
333 |
"ンなどです。"
|
334 |
|
335 |
-
#:
|
336 |
msgid "Call To Action"
|
337 |
msgstr "Call To Action"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Contents setting"
|
341 |
msgstr "CTA表示内容設定"
|
342 |
|
343 |
-
#:
|
344 |
-
#: ../plugins/insert_ads.php:137
|
345 |
msgid "Insert ads"
|
346 |
msgstr "広告の挿入"
|
347 |
|
348 |
-
#:
|
349 |
msgid "Insert ads to content."
|
350 |
msgstr "記事に広告を挿入します"
|
351 |
|
352 |
-
#:
|
353 |
msgid "Related posts"
|
354 |
msgstr "関連記事を表示"
|
355 |
|
356 |
-
#:
|
357 |
msgid "Print Related posts lists to post content bottom."
|
358 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
359 |
|
360 |
-
#:
|
361 |
msgid "Automatic Eye Catch insert"
|
362 |
msgstr "アイキャッチ画像自動挿入"
|
363 |
|
364 |
-
#:
|
365 |
msgid "Display Eye Catch image at before content."
|
366 |
msgstr ""
|
367 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
368 |
"す。"
|
369 |
|
370 |
-
#:
|
371 |
msgid "Disable ping back"
|
372 |
msgstr "ping backを停止"
|
373 |
|
374 |
-
#:
|
375 |
msgid "Disable xmlrpc ping back."
|
376 |
msgstr "xmlrpcを停止"
|
377 |
|
378 |
-
#:
|
379 |
msgid "Disable dashbord"
|
380 |
msgstr "ダッシュボードに最新情報を表示しない"
|
381 |
|
382 |
-
#:
|
383 |
msgid "TinyMCE Style Tags"
|
384 |
msgstr "TinyMCE スタイルタグ"
|
385 |
|
386 |
-
#:
|
387 |
msgid "Add TinyMCE Editor to style tags."
|
388 |
msgstr "スタイルタグにTinyMCEエディタを追加する"
|
389 |
|
390 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
msgid "Post Type Manager"
|
392 |
msgstr "カスタム投稿タイプマネージャー"
|
393 |
|
394 |
-
#:
|
395 |
msgid "Add custom post types and custom taxonomies."
|
396 |
msgstr "カスタム投稿タイプやカスタム分類を追加します。"
|
397 |
|
398 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "Automatic EyeCatch"
|
400 |
msgstr "アイキャッチ自動挿入"
|
401 |
|
402 |
-
#:
|
403 |
msgid "Do not set eyecatch image automatic."
|
404 |
msgstr "アイキャッチ画像を自動挿入しない"
|
405 |
|
406 |
-
#:
|
407 |
-
#:
|
408 |
msgid "Edit CTA"
|
409 |
msgstr "CTAの編集"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Add new CTA"
|
413 |
msgstr "CTAの新規作成"
|
414 |
|
415 |
-
#:
|
416 |
msgid "New CTA"
|
417 |
msgstr "CTA 新規作成"
|
418 |
|
419 |
-
#:
|
420 |
-
#:
|
421 |
-
#:
|
422 |
msgid "Call to Action setting"
|
423 |
msgstr "CTA設定"
|
424 |
|
425 |
-
#:
|
426 |
msgid "CTA Contents"
|
427 |
msgstr "CTA Contents"
|
428 |
|
429 |
-
#:
|
430 |
msgid "Follow common setting"
|
431 |
msgstr "共通設定を使用"
|
432 |
|
433 |
-
#:
|
434 |
-
#:
|
435 |
msgid "Disable display"
|
436 |
msgstr "表示しない"
|
437 |
|
438 |
-
#:
|
439 |
msgid "CTA common setting"
|
440 |
msgstr "CTA共通設定"
|
441 |
|
442 |
-
#:
|
443 |
-
#:
|
444 |
-
#:
|
445 |
msgid "Show CTA index page"
|
446 |
msgstr "CTAの一覧を表示"
|
447 |
|
448 |
-
#:
|
449 |
msgid "CTA image"
|
450 |
msgstr "CTA画像"
|
451 |
|
452 |
-
#:
|
453 |
msgid "Add image"
|
454 |
msgstr "画像を追加"
|
455 |
|
456 |
-
#:
|
457 |
msgid "Change image"
|
458 |
msgstr "画像を変更"
|
459 |
|
460 |
-
#:
|
461 |
msgid "Remove image"
|
462 |
msgstr "画像を削除"
|
463 |
|
464 |
-
#:
|
465 |
msgid "CTA image position"
|
466 |
msgstr "CTA画像の位置"
|
467 |
|
468 |
-
#:
|
469 |
msgid "right"
|
470 |
msgstr "右寄せ"
|
471 |
|
472 |
-
#:
|
473 |
msgid "center"
|
474 |
msgstr "中央"
|
475 |
|
476 |
-
#:
|
477 |
msgid "left"
|
478 |
msgstr "左寄せ"
|
479 |
|
480 |
-
#:
|
481 |
msgid "Button text"
|
482 |
msgstr "ボタンの表記文言"
|
483 |
|
484 |
-
#:
|
485 |
msgid "Button link url"
|
486 |
msgstr "ボタンのリンク先URL"
|
487 |
|
488 |
-
#:
|
489 |
msgid "Text message"
|
490 |
msgstr "テキストメッセージ"
|
491 |
|
492 |
-
#:
|
493 |
-
#:
|
494 |
msgid "CTA setting"
|
495 |
msgstr "CTA設定"
|
496 |
|
497 |
-
#:
|
498 |
msgid "How to use"
|
499 |
msgstr "使い方"
|
500 |
|
501 |
-
#:
|
502 |
msgid ""
|
503 |
"You register the contents on \"CTA\" that you want to display to bottom of "
|
504 |
"the content."
|
505 |
msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Choose the CTA to be displayed from the following."
|
509 |
msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
|
510 |
|
511 |
-
#:
|
512 |
msgid ""
|
513 |
"If you want to switch the CTA to be displayed on each post, please set in "
|
514 |
"the details page of such posting."
|
@@ -516,56 +534,55 @@ msgstr ""
|
|
516 |
"投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してくださ"
|
517 |
"い。"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Show index page"
|
521 |
msgstr "一覧ページを表示する"
|
522 |
|
523 |
-
#:
|
524 |
#, fuzzy
|
525 |
msgid "CTA"
|
526 |
msgstr "CTAの新規作成"
|
527 |
|
528 |
-
#:
|
529 |
msgid "Select CTA and display it."
|
530 |
msgstr "CTAを選択して表示します。"
|
531 |
|
532 |
-
#:
|
533 |
msgid "Please select CTA to display."
|
534 |
msgstr "表示するCTAを選択してください。"
|
535 |
|
536 |
-
#:
|
537 |
-
#: ../plugins/other_widget/widget-3pr-area.php:167
|
538 |
msgid "Read more"
|
539 |
msgstr "詳しくはこちら"
|
540 |
|
541 |
-
#:
|
542 |
msgid "Display a child page index"
|
543 |
msgstr "子ページ一覧の表示"
|
544 |
|
545 |
-
#:
|
546 |
msgid "Contact Information"
|
547 |
msgstr "お問い合わせ情報"
|
548 |
|
549 |
-
#:
|
550 |
msgid "Please feel free to inquire."
|
551 |
msgstr "お気軽にお問い合わせください。"
|
552 |
|
553 |
-
#:
|
554 |
msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
|
555 |
msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
|
556 |
|
557 |
-
#:
|
558 |
msgid "Contact us"
|
559 |
msgstr "お問い合わせ"
|
560 |
|
561 |
-
#:
|
562 |
msgid ""
|
563 |
"Contents input here are displayed on an \"Contact Button\" widget and each "
|
564 |
"fixed page."
|
565 |
msgstr ""
|
566 |
"ここに入力された内容がお問い合わせウィジェットと各固定ページに表示されます。"
|
567 |
|
568 |
-
#:
|
569 |
msgid ""
|
570 |
"When I display it on the page, it is necessary to classify a check into "
|
571 |
"\"Display Contact Section\" checkbox with the edit page of each page."
|
@@ -573,105 +590,105 @@ msgstr ""
|
|
573 |
"固定ページに表示する場合は、各固定ページの編集画面で\"お問い合わせ情報の表示"
|
574 |
"\"にチェックを入れる必要があります。"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Message"
|
578 |
msgstr "メッセージ"
|
579 |
|
580 |
-
#:
|
581 |
-
#:
|
582 |
-
#:
|
583 |
-
#:
|
584 |
msgid "ex) "
|
585 |
msgstr "例: "
|
586 |
|
587 |
-
#:
|
588 |
msgid "Phone number"
|
589 |
msgstr "電話番号"
|
590 |
|
591 |
-
#:
|
592 |
msgid "Office hours"
|
593 |
msgstr "営業時間"
|
594 |
|
595 |
-
#:
|
596 |
msgid "Weekdays except holidays"
|
597 |
msgstr "土日・祝日除く"
|
598 |
|
599 |
-
#:
|
600 |
msgid "The contact page URL"
|
601 |
msgstr "お問い合わせ先URL"
|
602 |
|
603 |
-
#:
|
604 |
msgid "or"
|
605 |
msgstr "もしくは"
|
606 |
|
607 |
-
#:
|
608 |
msgid "* If you fill in the blank, widget's contact button does not appear."
|
609 |
msgstr "※ 未入力の場合、お問い合わせウィジェットには何も表示されません。"
|
610 |
|
611 |
-
#:
|
612 |
msgid "Contact button Text"
|
613 |
msgstr "お問い合わせボタンに表示するテキスト"
|
614 |
|
615 |
-
#:
|
616 |
msgid "Contact Us from email."
|
617 |
msgstr "メールでのお問い合わせはこちら"
|
618 |
|
619 |
-
#:
|
620 |
msgid "Contact button text( sub )"
|
621 |
msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
|
622 |
|
623 |
-
#:
|
624 |
msgid "Email contact form"
|
625 |
msgstr "お気軽にお問い合わせください。"
|
626 |
|
627 |
-
#:
|
628 |
msgid "Contact button short text for side widget"
|
629 |
msgstr "お問い合わせボタンウィジェットに表示するテキスト"
|
630 |
|
631 |
-
#:
|
632 |
msgid "This will used to \"Contact Button\" widget."
|
633 |
msgstr ""
|
634 |
"このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの利"
|
635 |
"用を想定していますので少ない文字数で設定してください。"
|
636 |
|
637 |
-
#:
|
638 |
msgid "Advanced Setting"
|
639 |
msgstr "高度な設定"
|
640 |
|
641 |
-
#:
|
642 |
msgid "Inquiry Banner image"
|
643 |
msgstr "お問い合わせバナー画像"
|
644 |
|
645 |
-
#:
|
646 |
msgid "Select Image"
|
647 |
msgstr "画像を選択"
|
648 |
|
649 |
-
#:
|
650 |
msgid "Display the image instead of the above inquiry information"
|
651 |
msgstr ""
|
652 |
"画像が登録されている場合は標準のお問い合わせ情報ではなく画像が表示されます。"
|
653 |
|
654 |
-
#:
|
655 |
msgid "Display HTML message instead of the standard"
|
656 |
msgstr "お問い合わせ情報として表示するHTML"
|
657 |
|
658 |
-
#:
|
659 |
msgid "HTML takes precedence over image"
|
660 |
msgstr "HTMLが登録されている場合は画像より優先されます。"
|
661 |
|
662 |
-
#:
|
663 |
msgid "Display Contact Section"
|
664 |
msgstr "お問い合わせ情報の表示"
|
665 |
|
666 |
-
#:
|
667 |
msgid "Edit contact information"
|
668 |
msgstr "Contact情報を編集"
|
669 |
|
670 |
-
#:
|
671 |
msgid "Contact Button"
|
672 |
msgstr "お問い合わせボタン"
|
673 |
|
674 |
-
#:
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
@@ -680,30 +697,30 @@ msgstr ""
|
|
680 |
"* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
|
681 |
"す。"
|
682 |
|
683 |
-
#:
|
684 |
-
#:
|
685 |
-
#:
|
686 |
-
#:
|
687 |
msgid "CSS Customize"
|
688 |
msgstr "CSSカスタマイズ"
|
689 |
|
690 |
-
#:
|
691 |
msgid "You can add custom CSS here."
|
692 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
693 |
|
694 |
-
#:
|
695 |
msgid "Save CSS"
|
696 |
msgstr "CSSを保存する"
|
697 |
|
698 |
-
#:
|
699 |
msgid "Your custom CSS was saved."
|
700 |
msgstr "CSSが保存されました"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Error occured. Please try again."
|
704 |
msgstr "何らかのエラー!! また試してみてください"
|
705 |
|
706 |
-
#:
|
707 |
msgid ""
|
708 |
"<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
|
709 |
"\"//lightning.vektor-inc.co.jp\" target=\"_blank\" title=\"Free WordPress "
|
@@ -719,19 +736,19 @@ msgstr ""
|
|
719 |
"All in One Expansion Unit</a> by <a href=\"http://www.vektor-inc.co.jp\" "
|
720 |
"target=\"_blank\">Vektor,Inc.</a> technology.</p>"
|
721 |
|
722 |
-
#:
|
723 |
-
#:
|
724 |
-
#:
|
725 |
msgid "Google Analytics Settings"
|
726 |
msgstr "Google Analytics設定"
|
727 |
|
728 |
-
#:
|
729 |
msgid ""
|
730 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
731 |
"the site."
|
732 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
733 |
|
734 |
-
#:
|
735 |
msgid ""
|
736 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
737 |
"this.)"
|
@@ -739,64 +756,64 @@ msgstr ""
|
|
739 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
740 |
"す )"
|
741 |
|
742 |
-
#:
|
743 |
msgid "To output the Universal Analytics code (default)"
|
744 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
745 |
|
746 |
-
#:
|
747 |
msgid "To output only normal code"
|
748 |
msgstr "ノーマルのコードのみを出力します。"
|
749 |
|
750 |
-
#:
|
751 |
msgid "To output both types"
|
752 |
msgstr "両タイプのコードを出力します。"
|
753 |
|
754 |
-
#:
|
755 |
msgid "icon setting"
|
756 |
msgstr "アイコン設定"
|
757 |
|
758 |
-
#:
|
759 |
msgid "Favicon Setting"
|
760 |
msgstr "ファビコン設定"
|
761 |
|
762 |
-
#:
|
763 |
msgid "Choose icon"
|
764 |
msgstr "アイコンを選択"
|
765 |
|
766 |
-
#:
|
767 |
msgid "Please upload your \".ico\" file"
|
768 |
msgstr "作成したicoファイルをアップロードしてください"
|
769 |
|
770 |
-
#:
|
771 |
msgid "Insert ads to post."
|
772 |
msgstr "投稿に広告を挿入"
|
773 |
|
774 |
-
#:
|
775 |
msgid "Insert ads to before content and more tag and after content."
|
776 |
msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
|
777 |
|
778 |
-
#:
|
779 |
msgid "If you want to separate ads area, you fill two fields."
|
780 |
msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
|
781 |
|
782 |
-
#:
|
783 |
msgid "insert the ad [ before content ]"
|
784 |
msgstr "広告を挿入 [ 記事の最初 ]"
|
785 |
|
786 |
-
#:
|
787 |
msgid "insert the ad [ more tag ]"
|
788 |
msgstr "広告を挿入 [ moreタグ ]"
|
789 |
|
790 |
-
#:
|
791 |
msgid "insert the ad [ after content ]"
|
792 |
msgstr "広告を挿入 [ 記事の最後 ]"
|
793 |
|
794 |
-
#:
|
795 |
-
#:
|
796 |
msgid "Meta Description"
|
797 |
msgstr "メタディスクリプション"
|
798 |
|
799 |
-
#:
|
800 |
msgid ""
|
801 |
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
802 |
"page will be reflected in the description of the meta tag."
|
@@ -804,7 +821,7 @@ msgstr ""
|
|
804 |
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
805 |
"反映されます"
|
806 |
|
807 |
-
#:
|
808 |
msgid ""
|
809 |
"Description of meta tags in the search results screen of search sites such "
|
810 |
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
@@ -815,7 +832,7 @@ msgstr ""
|
|
815 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
816 |
"内容が反映されます。"
|
817 |
|
818 |
-
#:
|
819 |
msgid ""
|
820 |
"The meta description of the top page is subject to the catchphrase of the "
|
821 |
"site. However, its contents will be reflected if the excerpt is entered in "
|
@@ -825,7 +842,7 @@ msgstr ""
|
|
825 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
826 |
"内容が反映されます。"
|
827 |
|
828 |
-
#:
|
829 |
msgid ""
|
830 |
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
831 |
"each article edit page, and check the expert column display."
|
@@ -834,21 +851,21 @@ msgstr ""
|
|
834 |
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
835 |
"で、チェックして下さい。"
|
836 |
|
837 |
-
#:
|
838 |
-
#:
|
839 |
-
#:
|
840 |
msgid "Meta Keywords"
|
841 |
msgstr "メタキーワード"
|
842 |
|
843 |
-
#:
|
844 |
msgid "Meta Keyword"
|
845 |
msgstr "メタキーワード"
|
846 |
|
847 |
-
#:
|
848 |
msgid "Common Keywords"
|
849 |
msgstr "共通キーワード設定"
|
850 |
|
851 |
-
#:
|
852 |
msgid ""
|
853 |
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
854 |
"if you want multiple keywords, enter with separator of \",\"."
|
@@ -856,13 +873,13 @@ msgstr ""
|
|
856 |
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
857 |
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
858 |
|
859 |
-
#:
|
860 |
msgid "This is not seriously, Because the SearchEngine does not care this."
|
861 |
msgstr ""
|
862 |
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
863 |
"クターとはなりません。"
|
864 |
|
865 |
-
#:
|
866 |
msgid ""
|
867 |
"For each page individual keyword is enter at the edit screen of each "
|
868 |
"article. 10 keywords maximum, together with a each article keywords is "
|
@@ -871,285 +888,379 @@ msgstr ""
|
|
871 |
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
872 |
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
873 |
|
874 |
-
#:
|
875 |
msgid "\",\" separator at end of the last keyword is do not need."
|
876 |
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
877 |
|
878 |
-
#:
|
879 |
msgid "Example: WordPress,template,theme,free,GPL"
|
880 |
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
881 |
|
882 |
-
#:
|
883 |
msgid ""
|
884 |
"To distinguish between individual keywords, please enter a , delimiter "
|
885 |
"(optional)."
|
886 |
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
887 |
|
888 |
-
#:
|
889 |
#, php-format
|
890 |
msgid "* keywords common to the entire site can be set from %s."
|
891 |
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Displays entries list from a RSS feed link."
|
895 |
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
896 |
|
897 |
-
#:
|
898 |
msgid "RSS entries for top"
|
899 |
msgstr "トップのRSSエントリー"
|
900 |
|
901 |
-
#:
|
902 |
msgid "Blog entries"
|
903 |
msgstr "ブログエントリー"
|
904 |
|
905 |
-
#:
|
906 |
msgid "Heading title"
|
907 |
msgstr "見出しタイトル"
|
908 |
|
909 |
-
#:
|
910 |
-
#:
|
911 |
msgid "3PR area"
|
912 |
msgstr "3PR エリア"
|
913 |
|
914 |
-
#:
|
915 |
msgid "Displays a 3PR area"
|
916 |
msgstr "3PR エリアを表示します。"
|
917 |
|
918 |
-
#:
|
919 |
msgid "3PR area1 title"
|
920 |
msgstr "3PR エリア1 タイトル"
|
921 |
|
922 |
-
#:
|
923 |
msgid "3PR area2 title"
|
924 |
msgstr "3PR エリア2 タイトル"
|
925 |
|
926 |
-
#:
|
927 |
msgid "3PR area3 title"
|
928 |
msgstr "3PR エリア3 タイトル"
|
929 |
|
930 |
-
#:
|
931 |
msgid "3PR area setting"
|
932 |
msgstr "3PR エリア設定"
|
933 |
|
934 |
-
#:
|
935 |
-
#:
|
936 |
-
#:
|
937 |
-
#:
|
938 |
-
#:
|
939 |
msgid "Title:"
|
940 |
msgstr "タイトル"
|
941 |
|
942 |
-
#:
|
943 |
msgid "Select image for PC:"
|
944 |
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
945 |
|
946 |
-
#:
|
947 |
-
#:
|
948 |
-
#:
|
949 |
-
#:
|
950 |
msgid "Select image"
|
951 |
msgstr "画像を選択"
|
952 |
|
953 |
-
#:
|
954 |
-
#:
|
955 |
-
#:
|
956 |
-
#:
|
957 |
msgid "Clear image"
|
958 |
msgstr "画像クリア"
|
959 |
|
960 |
-
#:
|
961 |
msgid "Select image for Mobile:"
|
962 |
msgstr ""
|
963 |
"スマホ用(ウィンドウサイズが 768px 以下の場合)に表示される画像を選択(橫 "
|
964 |
"690px 以上推奨。空欄も可)"
|
965 |
|
966 |
-
#:
|
967 |
-
#:
|
968 |
msgid "Summary Text:"
|
969 |
msgstr "概要となるテキスト"
|
970 |
|
971 |
-
#:
|
972 |
-
#:
|
973 |
msgid "Link URL:"
|
974 |
msgstr "リンク先ページのURL"
|
975 |
|
976 |
-
#:
|
977 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Monthly archives"
|
979 |
msgstr "月別アーカイブ"
|
980 |
|
981 |
-
#:
|
982 |
-
#:
|
983 |
-
#:
|
984 |
msgid "Title"
|
985 |
msgstr "タイトル"
|
986 |
|
987 |
-
#:
|
988 |
msgid "Post type"
|
989 |
msgstr "ポストタイプ"
|
990 |
|
991 |
-
#:
|
992 |
msgid "Monthly"
|
993 |
msgstr "月別"
|
994 |
|
995 |
-
#:
|
996 |
msgid "Yearly"
|
997 |
msgstr "年別"
|
998 |
|
999 |
-
#:
|
1000 |
msgid "archive"
|
1001 |
msgstr "アーカイブ"
|
1002 |
|
1003 |
-
#:
|
1004 |
msgid "Banner"
|
1005 |
msgstr "バナー"
|
1006 |
|
1007 |
-
#:
|
1008 |
msgid ""
|
1009 |
"You can easily set up a banner simply by registering images and link "
|
1010 |
"destinations."
|
1011 |
msgstr "画像とリンク先を登録するだけで簡単にバナーを設定できます。"
|
1012 |
|
1013 |
-
#:
|
1014 |
msgid "Set image"
|
1015 |
msgstr "画像を選択"
|
1016 |
|
1017 |
-
#:
|
1018 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgstr "リンクを別ウィンドウで開く"
|
1020 |
|
1021 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
msgid "Child Page List"
|
1023 |
msgstr "子ページのリスト"
|
1024 |
|
1025 |
-
#:
|
1026 |
-
#:
|
1027 |
msgid "Display the child pages list from ancestor page."
|
1028 |
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1029 |
|
1030 |
-
#:
|
1031 |
-
#:
|
1032 |
-
#:
|
1033 |
msgid "Recent Posts"
|
1034 |
msgstr "最新記事"
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "Displays a list of your most recent posts"
|
1038 |
msgstr "最新の投稿記事リストを表示します。"
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Display Format"
|
1042 |
msgstr "表示形式"
|
1043 |
|
1044 |
-
#:
|
1045 |
msgid "Thumbnail"
|
1046 |
msgstr "サムネイル画像"
|
1047 |
|
1048 |
-
#:
|
1049 |
-
#:
|
1050 |
msgid "Date"
|
1051 |
msgstr "日付"
|
1052 |
|
1053 |
-
#:
|
1054 |
-
#:
|
1055 |
-
#:
|
1056 |
-
#:
|
1057 |
msgid "Category"
|
1058 |
msgstr "カテゴリー"
|
1059 |
|
1060 |
-
#:
|
1061 |
msgid "Order by"
|
1062 |
msgstr "表示順"
|
1063 |
|
1064 |
-
#:
|
1065 |
msgid "Publish date"
|
1066 |
msgstr "公開日"
|
1067 |
|
1068 |
-
#:
|
1069 |
msgid "Modified date"
|
1070 |
msgstr "最終更新日"
|
1071 |
|
1072 |
-
#:
|
1073 |
msgid "Display count"
|
1074 |
msgstr "表示する記事数"
|
1075 |
|
1076 |
-
#:
|
1077 |
msgid "Slug for the custom type you want to display"
|
1078 |
msgstr "表示したい記事タイプ"
|
1079 |
|
1080 |
-
#:
|
1081 |
msgid "taxonomy ID"
|
1082 |
msgstr "カテゴリー(タクソノミー)ID"
|
1083 |
|
1084 |
-
#:
|
1085 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1086 |
msgstr ""
|
1087 |
"特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
|
1088 |
"します。"
|
1089 |
|
1090 |
-
#:
|
1091 |
-
#: ../plugins/sns/sns_admin.php:88
|
1092 |
msgid "if empty this area, I will do not filtering."
|
1093 |
msgstr "空欄の場合はフィルタリングは行いません。"
|
1094 |
|
1095 |
-
#:
|
1096 |
msgid "page content to widget"
|
1097 |
msgstr "固定ページ本文"
|
1098 |
|
1099 |
-
#:
|
1100 |
msgid "Displays a page contents to widget."
|
1101 |
msgstr "選択したページの内容を表示します。"
|
1102 |
|
1103 |
-
#:
|
1104 |
-
#:
|
1105 |
msgid "Display page"
|
1106 |
msgstr "ページを表示"
|
1107 |
|
1108 |
-
#:
|
1109 |
msgid "display title"
|
1110 |
msgstr "タイトルを表示"
|
1111 |
|
1112 |
-
#:
|
1113 |
msgid "Edit"
|
1114 |
msgstr "編集"
|
1115 |
|
1116 |
-
#:
|
1117 |
msgid "PR Blocks"
|
1118 |
msgstr "PR Blocks"
|
1119 |
|
1120 |
-
#:
|
1121 |
msgid "Displays a circle image or icon font for pr blocks"
|
1122 |
msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
|
1123 |
|
1124 |
-
#:
|
1125 |
msgid "Service"
|
1126 |
msgstr "サービス紹介"
|
1127 |
|
1128 |
-
#:
|
1129 |
msgid "Company"
|
1130 |
msgstr "会社案内"
|
1131 |
|
1132 |
-
#:
|
1133 |
msgid "Recruit"
|
1134 |
msgstr "採用情報"
|
1135 |
|
1136 |
-
#:
|
1137 |
msgid "Contact"
|
1138 |
msgstr "Contact"
|
1139 |
|
1140 |
-
#:
|
1141 |
msgid "The choice of the number of columns:"
|
1142 |
msgstr "列の数"
|
1143 |
|
1144 |
-
#:
|
1145 |
msgid "3column"
|
1146 |
msgstr "3列"
|
1147 |
|
1148 |
-
#:
|
1149 |
msgid "4column"
|
1150 |
msgstr "4列"
|
1151 |
|
1152 |
-
#:
|
1153 |
msgid ""
|
1154 |
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1155 |
"edit page. When restart the edit page, the column input form is increased or "
|
@@ -1158,212 +1269,208 @@ msgstr ""
|
|
1158 |
"列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
|
1159 |
"す。それから編集画面を再度開くと列の入力フォームが増減します。"
|
1160 |
|
1161 |
-
#:
|
1162 |
-
#:
|
1163 |
msgid "PR Block"
|
1164 |
msgstr "PRブロック"
|
1165 |
|
1166 |
-
#:
|
1167 |
msgid "Class name of the icon font you want to use:"
|
1168 |
msgstr "使用したいアイコンフォントのクラス名:"
|
1169 |
|
1170 |
-
#:
|
1171 |
-
msgid "To choose your favorite icon, and enter the class."
|
1172 |
-
msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
|
1173 |
-
|
1174 |
-
#: ../plugins/other_widget/widget-pr-blocks.php:85
|
1175 |
msgid " ex:fa-file-text-o"
|
1176 |
msgstr "例:fa-file-text-o"
|
1177 |
|
1178 |
-
#:
|
1179 |
msgid "Icon color:"
|
1180 |
msgstr "アイコンの色:"
|
1181 |
|
1182 |
-
#:
|
1183 |
msgid "Icon Background:"
|
1184 |
msgstr "アイコン背景:"
|
1185 |
|
1186 |
-
#:
|
1187 |
msgid "Solid color"
|
1188 |
msgstr "塗りつぶし"
|
1189 |
|
1190 |
-
#:
|
1191 |
msgid "No background"
|
1192 |
msgstr "背景なし"
|
1193 |
|
1194 |
-
#:
|
1195 |
msgid "Select image:"
|
1196 |
msgstr "画像を選択"
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid "When you have an image. Image is displayed with priority"
|
1200 |
msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
|
1201 |
|
1202 |
-
#:
|
1203 |
-
#:
|
1204 |
msgid "Profile"
|
1205 |
msgstr "プロフィール"
|
1206 |
|
1207 |
-
#:
|
1208 |
msgid "Displays a your profile"
|
1209 |
msgstr ""
|
1210 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid "Profile Text"
|
1214 |
msgstr "プロフィールテキスト"
|
1215 |
|
1216 |
-
#:
|
1217 |
msgid "Select Profile image:"
|
1218 |
msgstr "プロフィール用画像を選択"
|
1219 |
|
1220 |
-
#:
|
1221 |
msgid "Cut out round the image."
|
1222 |
msgstr "画像を丸く切り抜いて表示する"
|
1223 |
|
1224 |
-
#:
|
1225 |
msgid "Media size (Optional)"
|
1226 |
msgstr "画像の大きさ( 任意 )"
|
1227 |
|
1228 |
-
#:
|
1229 |
msgid "Image align left"
|
1230 |
msgstr "画像を左揃えにする"
|
1231 |
|
1232 |
-
#:
|
1233 |
msgid "Text float to image."
|
1234 |
msgstr "テキストを画像に回りこませる"
|
1235 |
|
1236 |
-
#:
|
1237 |
msgid "Profile Text:"
|
1238 |
msgstr "プロフィールテキスト"
|
1239 |
|
1240 |
-
#:
|
1241 |
msgid "Facebook URL:"
|
1242 |
msgstr "Facebook リンク先ページのURL"
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "Twitter URL:"
|
1246 |
msgstr "twitterリンク先ページのURL"
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "Email Address:"
|
1250 |
msgstr "Email リンク先ページのURL"
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid "Youtube URL:"
|
1254 |
msgstr "Youtube リンク先ページのURL"
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid "RSS URL:"
|
1258 |
msgstr "RSS リンク先ページのURL"
|
1259 |
|
1260 |
-
#:
|
1261 |
msgid "instagram URL:"
|
1262 |
msgstr "instagram リンク先ページのURL"
|
1263 |
|
1264 |
-
#:
|
1265 |
msgid "linkedin URL:"
|
1266 |
msgstr "linkedin リンク先ページのURL"
|
1267 |
|
1268 |
-
#:
|
1269 |
msgid "child pages list"
|
1270 |
msgstr "子ページのリスト"
|
1271 |
|
1272 |
-
#:
|
1273 |
msgid "Displays list of child page for the current page."
|
1274 |
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1275 |
|
1276 |
-
#:
|
1277 |
msgid "Categories/Custom taxonomies list"
|
1278 |
msgstr "カテゴリー/カスタム分類リスト"
|
1279 |
|
1280 |
-
#:
|
1281 |
msgid "Displays a categories and custom taxonomies list."
|
1282 |
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
1283 |
|
1284 |
-
#:
|
1285 |
msgid "Label to display"
|
1286 |
msgstr "表示するラベル"
|
1287 |
|
1288 |
-
#:
|
1289 |
msgid "Blog"
|
1290 |
msgstr "ブログ"
|
1291 |
|
1292 |
-
#:
|
1293 |
msgid "Display a page list from ancestor"
|
1294 |
msgstr "現在のページの先祖階層からの子ページリストを表示"
|
1295 |
|
1296 |
-
#:
|
1297 |
msgid "Setting of insert items"
|
1298 |
msgstr "挿入アイテムの設定"
|
1299 |
|
1300 |
-
#:
|
1301 |
-
#:
|
1302 |
-
#:
|
1303 |
msgid "Custom Post Type Setting"
|
1304 |
msgstr "カスタム投稿タイプ設定"
|
1305 |
|
1306 |
-
#:
|
1307 |
msgid "Post Type ID(Required)"
|
1308 |
msgstr "投稿タイプID(必須)"
|
1309 |
|
1310 |
-
#:
|
1311 |
msgid "20 characters or less in alphanumeric"
|
1312 |
msgstr "半角英数字20文字以内で入力ください"
|
1313 |
|
1314 |
-
#:
|
1315 |
msgid "title"
|
1316 |
msgstr "タイトル"
|
1317 |
|
1318 |
-
#:
|
1319 |
msgid "editor"
|
1320 |
msgstr "本文"
|
1321 |
|
1322 |
-
#:
|
1323 |
msgid "author"
|
1324 |
msgstr "投稿者"
|
1325 |
|
1326 |
-
#:
|
1327 |
msgid "thumbnail"
|
1328 |
msgstr "アイキャッチ画像"
|
1329 |
|
1330 |
-
#:
|
1331 |
msgid "excerpt"
|
1332 |
msgstr "抜粋"
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "comments"
|
1336 |
msgstr "コメント"
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "revisions"
|
1340 |
msgstr "リビジョン"
|
1341 |
|
1342 |
-
#:
|
1343 |
msgid "Supports(Required)"
|
1344 |
msgstr "有効にする項目(必須)"
|
1345 |
|
1346 |
-
#:
|
1347 |
msgid "Menu position(optional)"
|
1348 |
msgstr "メニューの位置( 任意 )"
|
1349 |
|
1350 |
-
#:
|
1351 |
msgid "Please enter a number."
|
1352 |
msgstr "数字を入力してください。数字が小さいほど上に表示されます。"
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "Custom taxonomies(optional)"
|
1356 |
msgstr "カスタム分類(任意)"
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Custon taxonomy name(slug)"
|
1360 |
msgstr "カスタム分類名(スラッグ)"
|
1361 |
|
1362 |
-
#:
|
1363 |
msgid "Custon taxonomy label"
|
1364 |
msgstr "カスタム分類名(表示名)"
|
1365 |
|
1366 |
-
#:
|
1367 |
#, php-format
|
1368 |
msgid ""
|
1369 |
"Please save a <a href=\"%s\">permanent link configuration</a> After updating "
|
@@ -1371,83 +1478,83 @@ msgid ""
|
|
1371 |
msgstr ""
|
1372 |
"設定を更新したら<a href=\"%s\">パーマリンク設定</a>を保存してください。"
|
1373 |
|
1374 |
-
#:
|
1375 |
msgid "HTML Sitemap Settings"
|
1376 |
msgstr "HTMLサイトマップ設定"
|
1377 |
|
1378 |
-
#:
|
1379 |
msgid "Exclude page Settings"
|
1380 |
msgstr "除外ページ設定"
|
1381 |
|
1382 |
-
#:
|
1383 |
msgid "Input you want to exclude page id."
|
1384 |
msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid ""
|
1388 |
"* Please enter separated by \",\"(commas) if there is more than one page ID "
|
1389 |
"that you want to exclude."
|
1390 |
msgstr "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
|
1391 |
|
1392 |
-
#:
|
1393 |
msgid "HTML Sitemap"
|
1394 |
msgstr "HTMLサイトマップ"
|
1395 |
|
1396 |
-
#:
|
1397 |
msgid "Display a HTML sitemap"
|
1398 |
msgstr "HTMLサイトマップの表示"
|
1399 |
|
1400 |
-
#:
|
1401 |
msgid "Displays a Facebook Page Plugin"
|
1402 |
msgstr "Facebook ページプラグインを表示します。"
|
1403 |
|
1404 |
-
#:
|
1405 |
msgid "Height"
|
1406 |
msgstr "高さ"
|
1407 |
|
1408 |
-
#:
|
1409 |
msgid "Show Friend's Faces"
|
1410 |
msgstr "アイコンを表示する"
|
1411 |
|
1412 |
-
#:
|
1413 |
msgid "Hide Cover Photo"
|
1414 |
msgstr "カバー画像を表示しない"
|
1415 |
|
1416 |
-
#:
|
1417 |
msgid "Show Page Posts"
|
1418 |
msgstr "タイムラインを表示"
|
1419 |
|
1420 |
-
#:
|
1421 |
msgid "Follow me"
|
1422 |
msgstr "このサイトをフォローする"
|
1423 |
|
1424 |
-
#:
|
1425 |
msgid "Sns Title"
|
1426 |
msgstr "OGPタイトル"
|
1427 |
|
1428 |
-
#:
|
1429 |
msgid "if filled this area then override title of OGP and Twitter Card"
|
1430 |
msgstr ""
|
1431 |
"このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
|
1432 |
"るタイトルを上書きすることができます"
|
1433 |
|
1434 |
-
#:
|
1435 |
msgid "SNS"
|
1436 |
msgstr "SNS"
|
1437 |
|
1438 |
-
#:
|
1439 |
msgid "SNS Settings"
|
1440 |
msgstr "SNS設定"
|
1441 |
|
1442 |
-
#:
|
1443 |
msgid "facebook application ID"
|
1444 |
msgstr "facebookアプリケーションID"
|
1445 |
|
1446 |
-
#:
|
1447 |
msgid "I will check and get the application ID"
|
1448 |
msgstr "アプリケーションIDを確認・取得する "
|
1449 |
|
1450 |
-
#:
|
1451 |
msgid ""
|
1452 |
"* If an application ID is not specified, neither a Like button nor the "
|
1453 |
"comment field displays and operates correctly."
|
@@ -1455,7 +1562,7 @@ msgstr ""
|
|
1455 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
1456 |
"ん。"
|
1457 |
|
1458 |
-
#:
|
1459 |
msgid ""
|
1460 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
1461 |
"much about how to get application ID for Facebook."
|
@@ -1463,15 +1570,15 @@ msgstr ""
|
|
1463 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
1464 |
"アプリケーションID 取得」などで検索して下さい。"
|
1465 |
|
1466 |
-
#:
|
1467 |
msgid "facebook page URL"
|
1468 |
msgstr "FacebookページURL"
|
1469 |
|
1470 |
-
#:
|
1471 |
msgid "OG default image"
|
1472 |
msgstr "デフォルトのOGPイメージ"
|
1473 |
|
1474 |
-
#:
|
1475 |
msgid ""
|
1476 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
1477 |
"image that appears on the Facebook timeline."
|
@@ -1479,35 +1586,35 @@ msgstr ""
|
|
1479 |
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
1480 |
"ムラインに表示されます。"
|
1481 |
|
1482 |
-
#:
|
1483 |
msgid "If a featured image is specified for the page, it takes precedence."
|
1484 |
msgstr ""
|
1485 |
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
1486 |
"す。"
|
1487 |
|
1488 |
-
#:
|
1489 |
msgid "Select an image"
|
1490 |
msgstr "画像を選択"
|
1491 |
|
1492 |
-
#:
|
1493 |
msgid ""
|
1494 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
1495 |
"recommended."
|
1496 |
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
1497 |
|
1498 |
-
#:
|
1499 |
msgid "twitter ID"
|
1500 |
msgstr "twitterアカウント"
|
1501 |
|
1502 |
-
#:
|
1503 |
msgid "OG tags"
|
1504 |
msgstr "OGタグ"
|
1505 |
|
1506 |
-
#:
|
1507 |
msgid "Print the OG tags"
|
1508 |
msgstr "OGタグを出力する"
|
1509 |
|
1510 |
-
#:
|
1511 |
msgid ""
|
1512 |
"If other plug-ins are used for the OG, do not output the OG using this "
|
1513 |
"plugin."
|
@@ -1515,77 +1622,76 @@ msgstr ""
|
|
1515 |
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
1516 |
"る場合は、このプラグインでの出力は必要ありません。"
|
1517 |
|
1518 |
-
#:
|
1519 |
msgid "Twitter Card tags"
|
1520 |
msgstr "Twitterカードタグ"
|
1521 |
|
1522 |
-
#:
|
1523 |
msgid "Print the Twitter Card tags"
|
1524 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
1525 |
|
1526 |
-
#:
|
1527 |
msgid "Social bookmark buttons"
|
1528 |
msgstr "ソーシャルボタン"
|
1529 |
|
1530 |
-
#:
|
1531 |
msgid "Print the social bookmark buttons"
|
1532 |
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
1533 |
|
1534 |
-
#:
|
1535 |
msgid "Exclude Post Types"
|
1536 |
msgstr "シェアボタンを表示しない投稿タイプ"
|
1537 |
|
1538 |
-
#:
|
1539 |
msgid "Exclude Post ID"
|
1540 |
msgstr "シェアボタンを表示しない投稿のID"
|
1541 |
|
1542 |
-
#:
|
1543 |
msgid ""
|
1544 |
"if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
|
1545 |
msgstr ""
|
1546 |
"特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを入"
|
1547 |
"力します。"
|
1548 |
|
1549 |
-
#:
|
1550 |
msgid "example"
|
1551 |
msgstr "例"
|
1552 |
|
1553 |
-
#:
|
1554 |
msgid "Follow me box"
|
1555 |
msgstr "Follow me box"
|
1556 |
|
1557 |
-
#:
|
1558 |
msgid "Print the Follow me box"
|
1559 |
msgstr "Follow me ユニットを本文の下に表示する"
|
1560 |
|
1561 |
-
#:
|
1562 |
msgid "Follow me box title"
|
1563 |
msgstr "Follow me box の見出しテキスト"
|
1564 |
|
1565 |
-
#:
|
1566 |
#, php-format
|
1567 |
msgid "Search Results for : %s"
|
1568 |
msgstr "検索結果 : %s"
|
1569 |
|
1570 |
-
#:
|
1571 |
msgid "Not found"
|
1572 |
msgstr "見つかりません"
|
1573 |
|
1574 |
-
#:
|
1575 |
-
#: ../plugins/wp_title.php:87
|
1576 |
msgid "<title> tag of homepage"
|
1577 |
msgstr "トップページの<title>タグ"
|
1578 |
|
1579 |
-
#:
|
1580 |
msgid "title of the site"
|
1581 |
msgstr "サイトのタイトル"
|
1582 |
|
1583 |
-
#:
|
1584 |
#, php-format
|
1585 |
msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
|
1586 |
msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
|
1587 |
|
1588 |
-
#:
|
1589 |
#, php-format
|
1590 |
msgid ""
|
1591 |
"For example, it appears in the form of <br /><title>page title | "
|
@@ -1594,7 +1700,7 @@ msgstr ""
|
|
1594 |
"例えば固定ページであれば<br><title>固定ページ名 | %1$s</title>"
|
1595 |
"<br>というような形式で出力されます。"
|
1596 |
|
1597 |
-
#:
|
1598 |
#, php-format
|
1599 |
msgid ""
|
1600 |
"However, it might have negative impact on search engine rankings if the <"
|
@@ -1606,11 +1712,11 @@ msgstr ""
|
|
1606 |
"くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短くまとめる"
|
1607 |
"事が望ましいです。"
|
1608 |
|
1609 |
-
#:
|
1610 |
msgid "Tagline"
|
1611 |
msgstr "キャッチフレーズ"
|
1612 |
|
1613 |
-
#:
|
1614 |
#, php-format
|
1615 |
msgid ""
|
1616 |
"In the top page will be output usually in the form of <br /><title>"
|
@@ -1619,7 +1725,7 @@ msgstr ""
|
|
1619 |
"トップページでは<br><title>%1$s | %2$s</title><br>というような形"
|
1620 |
"式で出力されます。"
|
1621 |
|
1622 |
-
#:
|
1623 |
msgid ""
|
1624 |
"However, it may be too long in the above format. If the input to the input "
|
1625 |
"field of the following, its contents will be reflected."
|
@@ -1627,63 +1733,63 @@ msgstr ""
|
|
1627 |
"しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に入"
|
1628 |
"力すれば、その内容が反映されます。"
|
1629 |
|
1630 |
-
#:
|
1631 |
-
msgid "Edit Guide"
|
1632 |
-
msgstr "編集ガイド"
|
1633 |
-
|
1634 |
-
#: ../plugins_admin/admin_bar.php:57
|
1635 |
-
msgid "Active Setting"
|
1636 |
-
msgstr "有効化設定"
|
1637 |
-
|
1638 |
-
#: ../plugins_admin/admin_bar.php:65
|
1639 |
-
msgid "Main Setting"
|
1640 |
-
msgstr "メイン設定"
|
1641 |
-
|
1642 |
-
#: ../plugins_admin/dashboard_info_widget.php:18
|
1643 |
msgid "News from VK All in One Expansion Unit"
|
1644 |
msgstr "VK All in One Expansion Unit からのお知らせ"
|
1645 |
|
1646 |
-
#:
|
|
|
|
|
|
|
|
|
1647 |
msgid "Sorry, there is no post"
|
1648 |
msgstr "お知らせはありません。"
|
1649 |
|
1650 |
-
#:
|
1651 |
msgid "Enable setting"
|
1652 |
msgstr "有効化設定"
|
1653 |
|
1654 |
-
#:
|
1655 |
msgid "Select all"
|
1656 |
msgstr "全てを選択"
|
1657 |
|
1658 |
-
#:
|
1659 |
msgid "Function"
|
1660 |
msgstr "有効化"
|
1661 |
|
1662 |
-
#:
|
1663 |
msgid "Description"
|
1664 |
msgstr "説明"
|
1665 |
|
1666 |
-
#:
|
1667 |
msgid "Extension Setting"
|
1668 |
msgstr "拡張設定"
|
1669 |
|
1670 |
-
#:
|
1671 |
#, fuzzy
|
1672 |
msgid "extention contents"
|
1673 |
msgstr "記事に広告を挿入します"
|
1674 |
|
1675 |
-
#:
|
1676 |
msgid "set extension contents to loop_end hook"
|
1677 |
msgstr "ループ終了時にコンテンツを追加する"
|
1678 |
|
1679 |
-
#:
|
1680 |
msgid "Plugin setting options"
|
1681 |
msgstr "プラグイン設定オプション"
|
1682 |
|
1683 |
-
#:
|
1684 |
msgid "Delete myOptions when deactivate me."
|
1685 |
msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
|
1686 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1687 |
#~ msgid "* If you fill in the blank, contact button does not appear."
|
1688 |
#~ msgstr "未入力の場合はお問い合わせボタンは表示されません。"
|
1689 |
|
@@ -1907,9 +2013,6 @@ msgstr "プラグインを無効化する際にDBに保存したオプション
|
|
1907 |
#~ msgid "PR Block4 title"
|
1908 |
#~ msgstr "PR ブロック4 タイトル"
|
1909 |
|
1910 |
-
#~ msgid " ex:fa-rocket"
|
1911 |
-
#~ msgstr "例: fa-rocket"
|
1912 |
-
|
1913 |
#~ msgid "if checked you will display a sitemap"
|
1914 |
#~ msgstr "チェックを入れるとHTMLサイトマップを表示します。"
|
1915 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2016-12-25 10:27+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"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.8.11\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_x;_e;_ex\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
"X-Poedit-SearchPathExcluded-0: node_modules\n"
|
18 |
|
19 |
+
#: admin_wrapper.php:7 admin_wrapper.php:8 plugins/meta_keyword.php:103
|
|
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
+
#: admin_wrapper.php:39
|
24 |
msgid "Activated Packages is noting. please activate some package."
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
27 |
|
28 |
+
#: admin_wrapper.php:94
|
29 |
+
msgid "Settings"
|
30 |
+
msgstr "設定"
|
31 |
+
|
32 |
+
#: common_helpers.php:109
|
33 |
#, php-format
|
34 |
msgid "Author: %s"
|
35 |
msgstr "著者: %s"
|
36 |
|
37 |
+
#: common_helpers.php:111 common_helpers.php:192
|
38 |
msgid "Y"
|
39 |
msgstr "年"
|
40 |
|
41 |
+
#: common_helpers.php:113 common_helpers.php:196
|
42 |
msgid "F Y"
|
43 |
msgstr "年月"
|
44 |
|
45 |
+
#: common_helpers.php:115
|
46 |
msgid "F j, Y"
|
47 |
msgstr "月日, 年"
|
48 |
|
49 |
+
#: common_helpers.php:118
|
50 |
msgid "Asides"
|
51 |
msgstr "サイド"
|
52 |
|
53 |
+
#: common_helpers.php:120
|
54 |
msgid "Galleries"
|
55 |
msgstr "ギャラリー"
|
56 |
|
57 |
+
#: common_helpers.php:122
|
58 |
msgid "Images"
|
59 |
msgstr "画像"
|
60 |
|
61 |
+
#: common_helpers.php:124
|
62 |
msgid "Videos"
|
63 |
msgstr "ビデオ"
|
64 |
|
65 |
+
#: common_helpers.php:126
|
66 |
msgid "Quotes"
|
67 |
msgstr "引用"
|
68 |
|
69 |
+
#: common_helpers.php:128
|
70 |
msgid "Links"
|
71 |
msgstr "リンク"
|
72 |
|
73 |
+
#: common_helpers.php:130
|
74 |
msgid "Statuses"
|
75 |
msgstr "ステータス"
|
76 |
|
77 |
+
#: common_helpers.php:132
|
78 |
msgid "Audio"
|
79 |
msgstr "オーディオ"
|
80 |
|
81 |
+
#: common_helpers.php:134
|
82 |
msgid "Chats"
|
83 |
msgstr "チャット"
|
84 |
|
85 |
+
#: common_helpers.php:150 plugins/other_widget/widget-taxonomies.php:83
|
86 |
msgid "Archives"
|
87 |
msgstr "アーカイブ"
|
88 |
|
89 |
+
#: common_helpers.php:180 common_helpers.php:188
|
90 |
#, php-format
|
91 |
msgid "About %s"
|
92 |
msgstr "%s について"
|
93 |
|
94 |
+
#: common_helpers.php:193 common_helpers.php:197 common_helpers.php:201
|
95 |
+
#: common_helpers.php:205
|
96 |
#, php-format
|
97 |
msgid "Article of %s."
|
98 |
msgstr "%s の記事"
|
99 |
|
100 |
+
#: common_helpers.php:220 plugins/wp_title.php:59
|
101 |
#, php-format
|
102 |
msgid "Page of %s"
|
103 |
msgstr "%sページ目"
|
104 |
|
105 |
+
#: packages.php:70
|
106 |
msgid "Print Bootstrap css and js"
|
107 |
msgstr "Bootstrap の CSS と js を出力"
|
108 |
|
109 |
+
#: packages.php:71
|
110 |
msgid ""
|
111 |
"If your using theme has already including Bootstrap, you deactivate this "
|
112 |
"item."
|
115 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
116 |
"下さい。"
|
117 |
|
118 |
+
#: packages.php:80
|
119 |
msgid "Print link fontawesome"
|
120 |
msgstr "fontawesome link タグを出力"
|
121 |
|
122 |
+
#: packages.php:81
|
123 |
msgid "Print fontawesome link tag to html head."
|
124 |
msgstr ""
|
125 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
126 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
127 |
"さい。"
|
128 |
|
129 |
+
#: packages.php:90
|
130 |
msgid "Favicon setting"
|
131 |
msgstr "ファビコン設定"
|
132 |
|
133 |
+
#: packages.php:91
|
134 |
msgid "About favicon."
|
135 |
msgstr ""
|
136 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
137 |
"(ファビコン)を設定します。"
|
138 |
|
139 |
+
#: packages.php:101
|
140 |
msgid "Rewrite the title tag"
|
141 |
msgstr "タイトルタグの書き換え"
|
142 |
|
143 |
+
#: packages.php:102
|
144 |
msgid "Print is rewritten by its own rules to html head."
|
145 |
msgstr ""
|
146 |
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
147 |
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
148 |
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
149 |
|
150 |
+
#: packages.php:105 packages.php:123 packages.php:162 packages.php:180
|
151 |
+
#: packages.php:210 packages.php:228 packages.php:270 packages.php:306
|
152 |
+
#: packages.php:329 packages.php:410
|
|
|
153 |
msgid "Setting"
|
154 |
msgstr "設定"
|
155 |
|
156 |
+
#: packages.php:119
|
157 |
msgid "Print meta Keyword"
|
158 |
msgstr "メタキーワードを出力"
|
159 |
|
160 |
+
#: packages.php:120
|
161 |
msgid "Print meta Keyword to html head."
|
162 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
163 |
|
164 |
+
#: packages.php:136
|
165 |
msgid "Print meta description"
|
166 |
msgstr "メタディスクリプションタグを出力"
|
167 |
|
168 |
+
#: packages.php:137
|
169 |
msgid "Print meta description to html head."
|
170 |
msgstr ""
|
171 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
172 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
173 |
"している場合はチェックを外して下さい。"
|
174 |
|
175 |
+
#: packages.php:146
|
176 |
msgid "Main setting page"
|
177 |
msgstr "メイン設定画面"
|
178 |
|
179 |
+
#: packages.php:148
|
180 |
msgid "Print og tags to html head."
|
181 |
msgstr "OG タグを html head 内へ出力します。"
|
182 |
|
183 |
+
#: packages.php:149
|
184 |
msgid "Print twitter card tags to html head."
|
185 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
186 |
|
187 |
+
#: packages.php:150
|
188 |
msgid "Print social bookmark buttons."
|
189 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
190 |
|
191 |
+
#: packages.php:151
|
192 |
msgid "Facebook Page Plugin widget."
|
193 |
msgstr "Facebookページプラグインウィジェット"
|
194 |
|
195 |
+
#: packages.php:152
|
196 |
msgid "Print Follow me box to content bottom."
|
197 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
198 |
|
199 |
+
#: packages.php:154
|
200 |
#, php-format
|
201 |
msgid "* You can stop the function separately from the %s."
|
202 |
msgstr "%s から個別に機能を停止する事ができます。"
|
203 |
|
204 |
+
#: packages.php:158
|
205 |
msgid "Social media cooperation"
|
206 |
msgstr "ソーシャルメディア連携"
|
207 |
|
208 |
+
#: packages.php:177
|
209 |
msgid "Print Google Analytics tracking code."
|
210 |
msgstr ""
|
211 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
213 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
214 |
"合はチェックを外して下さい。"
|
215 |
|
216 |
+
#: packages.php:193
|
217 |
msgid "You can use various widgets."
|
218 |
msgstr ""
|
219 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
|
220 |
"→「ウィジェット」の設定画面より行って下さい。"
|
221 |
|
222 |
+
#: packages.php:195
|
223 |
msgid ""
|
224 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
225 |
"title."
|
226 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
227 |
|
228 |
+
#: packages.php:196
|
229 |
msgid ""
|
230 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
231 |
msgstr ""
|
232 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
233 |
|
234 |
+
#: packages.php:197
|
235 |
msgid "VK_Profile - display the profile entered in the widget."
|
236 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
237 |
|
238 |
+
#: packages.php:198
|
239 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
240 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
241 |
|
242 |
+
#: packages.php:199
|
243 |
msgid "VK_3PR area - display the 3PR area."
|
244 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
245 |
|
246 |
+
#: packages.php:200
|
247 |
msgid "categories/tags list"
|
248 |
msgstr "カテゴリー/タグ リスト"
|
249 |
|
250 |
+
#: packages.php:200
|
251 |
msgid "Displays a categories, tags or format list."
|
252 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
253 |
|
254 |
+
#: packages.php:201 plugins/other_widget/widget-archives.php:9
|
255 |
msgid "archive list"
|
256 |
msgstr "アーカイブリスト"
|
257 |
|
258 |
+
#: packages.php:201 plugins/other_widget/widget-archives.php:14
|
259 |
msgid ""
|
260 |
"Displays a list of archives. You can choose the post type and also to "
|
261 |
"display archives by month or by year."
|
263 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
264 |
"プを選択できます。"
|
265 |
|
266 |
+
#: packages.php:206
|
267 |
msgid "Widgets"
|
268 |
msgstr "ウィジェット"
|
269 |
|
270 |
+
#: packages.php:224
|
271 |
msgid "CSS customize"
|
272 |
msgstr "CSSカスタマイズ"
|
273 |
|
274 |
+
#: packages.php:225
|
275 |
msgid "You can set Customize CSS."
|
276 |
msgstr ""
|
277 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
278 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
279 |
"さい。"
|
280 |
|
281 |
+
#: packages.php:243
|
282 |
msgid "Child page index"
|
283 |
msgstr "子ページの一覧表示"
|
284 |
|
285 |
+
#: packages.php:244
|
286 |
msgid ""
|
287 |
"At the bottom of the specified page, it will display a list of the child "
|
288 |
"page."
|
290 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
291 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
292 |
|
293 |
+
#: packages.php:255
|
294 |
msgid "Page list from ancestor"
|
295 |
msgstr "先祖階層からの子ページリスト表示"
|
296 |
|
297 |
+
#: packages.php:256
|
298 |
msgid "Display Page list from ancestor at after content."
|
299 |
msgstr ""
|
300 |
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
301 |
|
302 |
+
#: packages.php:266
|
303 |
msgid "Contact Section"
|
304 |
msgstr "お問い合わせ"
|
305 |
|
306 |
+
#: packages.php:267
|
307 |
msgid "Display Contact Section at after content."
|
308 |
msgstr "お問い合わせ情報を本文の下に表示する"
|
309 |
|
310 |
+
#: packages.php:284
|
311 |
msgid "Display HTML Site Map"
|
312 |
msgstr "HTMLサイトマップの表示"
|
313 |
|
314 |
+
#: packages.php:285
|
315 |
msgid "It displays a HTML Site Map to the specified page."
|
316 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
317 |
|
318 |
+
#: packages.php:294 plugins/call_to_action/view.adminsetting.php:10
|
319 |
msgid "Display the CTA at the end of the post content."
|
320 |
msgstr "投稿内容の最後にCTAを表示します。"
|
321 |
|
322 |
+
#: packages.php:296 plugins/call_to_action/view.adminsetting.php:11
|
323 |
msgid ""
|
324 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
325 |
"user behavior."
|
327 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
328 |
"情報を表示します。"
|
329 |
|
330 |
+
#: packages.php:298 plugins/call_to_action/view.adminsetting.php:12
|
331 |
msgid ""
|
332 |
"As an example, text message and a link button for induction to the free "
|
333 |
"sample download page."
|
335 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
336 |
"ンなどです。"
|
337 |
|
338 |
+
#: packages.php:302 plugins/call_to_action/view.adminsetting.php:6
|
339 |
msgid "Call To Action"
|
340 |
msgstr "Call To Action"
|
341 |
|
342 |
+
#: packages.php:311
|
343 |
msgid "Contents setting"
|
344 |
msgstr "CTA表示内容設定"
|
345 |
|
346 |
+
#: packages.php:325 plugins/insert_ads.php:37 plugins/insert_ads.php:137
|
|
|
347 |
msgid "Insert ads"
|
348 |
msgstr "広告の挿入"
|
349 |
|
350 |
+
#: packages.php:326
|
351 |
msgid "Insert ads to content."
|
352 |
msgstr "記事に広告を挿入します"
|
353 |
|
354 |
+
#: packages.php:342 plugins/related_posts/related_posts.php:89
|
355 |
msgid "Related posts"
|
356 |
msgstr "関連記事を表示"
|
357 |
|
358 |
+
#: packages.php:343
|
359 |
msgid "Print Related posts lists to post content bottom."
|
360 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
361 |
|
362 |
+
#: packages.php:353 vkExUnit_admin.php:28
|
363 |
msgid "Automatic Eye Catch insert"
|
364 |
msgstr "アイキャッチ画像自動挿入"
|
365 |
|
366 |
+
#: packages.php:354
|
367 |
msgid "Display Eye Catch image at before content."
|
368 |
msgstr ""
|
369 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
370 |
"す。"
|
371 |
|
372 |
+
#: packages.php:364
|
373 |
msgid "Disable ping back"
|
374 |
msgstr "ping backを停止"
|
375 |
|
376 |
+
#: packages.php:365
|
377 |
msgid "Disable xmlrpc ping back."
|
378 |
msgstr "xmlrpcを停止"
|
379 |
|
380 |
+
#: packages.php:374 packages.php:375
|
381 |
msgid "Disable dashbord"
|
382 |
msgstr "ダッシュボードに最新情報を表示しない"
|
383 |
|
384 |
+
#: packages.php:386
|
385 |
msgid "TinyMCE Style Tags"
|
386 |
msgstr "TinyMCE スタイルタグ"
|
387 |
|
388 |
+
#: packages.php:387
|
389 |
msgid "Add TinyMCE Editor to style tags."
|
390 |
msgstr "スタイルタグにTinyMCEエディタを追加する"
|
391 |
|
392 |
+
#: packages.php:395
|
393 |
+
msgid "Admin bar manu"
|
394 |
+
msgstr "管理バーメニュー"
|
395 |
+
|
396 |
+
#: packages.php:396
|
397 |
+
msgid "Add ExUnit menu to admin bar."
|
398 |
+
msgstr "ExUnitのメニューを管理バーに表示する"
|
399 |
+
|
400 |
+
#: packages.php:406
|
401 |
msgid "Post Type Manager"
|
402 |
msgstr "カスタム投稿タイプマネージャー"
|
403 |
|
404 |
+
#: packages.php:407
|
405 |
msgid "Add custom post types and custom taxonomies."
|
406 |
msgstr "カスタム投稿タイプやカスタム分類を追加します。"
|
407 |
|
408 |
+
#: plugins/admin_bar.php:28
|
409 |
+
msgid "Active Setting"
|
410 |
+
msgstr "有効化設定"
|
411 |
+
|
412 |
+
#: plugins/admin_bar.php:36
|
413 |
+
msgid "Main Setting"
|
414 |
+
msgstr "メイン設定"
|
415 |
+
|
416 |
+
#: plugins/auto_eyecatch.php:40
|
417 |
msgid "Automatic EyeCatch"
|
418 |
msgstr "アイキャッチ自動挿入"
|
419 |
|
420 |
+
#: plugins/auto_eyecatch.php:50
|
421 |
msgid "Do not set eyecatch image automatic."
|
422 |
msgstr "アイキャッチ画像を自動挿入しない"
|
423 |
|
424 |
+
#: plugins/call_to_action/class.call_to_action.php:46
|
425 |
+
#: plugins/call_to_action/view.actionbox.php:39
|
426 |
msgid "Edit CTA"
|
427 |
msgstr "CTAの編集"
|
428 |
|
429 |
+
#: plugins/call_to_action/class.call_to_action.php:47
|
430 |
msgid "Add new CTA"
|
431 |
msgstr "CTAの新規作成"
|
432 |
|
433 |
+
#: plugins/call_to_action/class.call_to_action.php:48
|
434 |
msgid "New CTA"
|
435 |
msgstr "CTA 新規作成"
|
436 |
|
437 |
+
#: plugins/call_to_action/class.call_to_action.php:75
|
438 |
+
#: plugins/call_to_action/class.call_to_action.php:77
|
439 |
+
#: plugins/call_to_action/class.call_to_action.php:78
|
440 |
msgid "Call to Action setting"
|
441 |
msgstr "CTA設定"
|
442 |
|
443 |
+
#: plugins/call_to_action/class.call_to_action.php:80
|
444 |
msgid "CTA Contents"
|
445 |
msgstr "CTA Contents"
|
446 |
|
447 |
+
#: plugins/call_to_action/class.call_to_action.php:89
|
448 |
msgid "Follow common setting"
|
449 |
msgstr "共通設定を使用"
|
450 |
|
451 |
+
#: plugins/call_to_action/class.call_to_action.php:90
|
452 |
+
#: plugins/call_to_action/class.call_to_action.php:417
|
453 |
msgid "Disable display"
|
454 |
msgstr "表示しない"
|
455 |
|
456 |
+
#: plugins/call_to_action/class.call_to_action.php:101
|
457 |
msgid "CTA common setting"
|
458 |
msgstr "CTA共通設定"
|
459 |
|
460 |
+
#: plugins/call_to_action/class.call_to_action.php:102
|
461 |
+
#: plugins/call_to_action/view.adminsetting.php:22
|
462 |
+
#: plugins/call_to_action/widget.call_to_action.php:61
|
463 |
msgid "Show CTA index page"
|
464 |
msgstr "CTAの一覧を表示"
|
465 |
|
466 |
+
#: plugins/call_to_action/class.call_to_action.php:167
|
467 |
msgid "CTA image"
|
468 |
msgstr "CTA画像"
|
469 |
|
470 |
+
#: plugins/call_to_action/class.call_to_action.php:173
|
471 |
msgid "Add image"
|
472 |
msgstr "画像を追加"
|
473 |
|
474 |
+
#: plugins/call_to_action/class.call_to_action.php:174
|
475 |
msgid "Change image"
|
476 |
msgstr "画像を変更"
|
477 |
|
478 |
+
#: plugins/call_to_action/class.call_to_action.php:175
|
479 |
msgid "Remove image"
|
480 |
msgstr "画像を削除"
|
481 |
|
482 |
+
#: plugins/call_to_action/class.call_to_action.php:180
|
483 |
msgid "CTA image position"
|
484 |
msgstr "CTA画像の位置"
|
485 |
|
486 |
+
#: plugins/call_to_action/class.call_to_action.php:183
|
487 |
msgid "right"
|
488 |
msgstr "右寄せ"
|
489 |
|
490 |
+
#: plugins/call_to_action/class.call_to_action.php:184
|
491 |
msgid "center"
|
492 |
msgstr "中央"
|
493 |
|
494 |
+
#: plugins/call_to_action/class.call_to_action.php:185
|
495 |
msgid "left"
|
496 |
msgstr "左寄せ"
|
497 |
|
498 |
+
#: plugins/call_to_action/class.call_to_action.php:189
|
499 |
msgid "Button text"
|
500 |
msgstr "ボタンの表記文言"
|
501 |
|
502 |
+
#: plugins/call_to_action/class.call_to_action.php:192
|
503 |
msgid "Button link url"
|
504 |
msgstr "ボタンのリンク先URL"
|
505 |
|
506 |
+
#: plugins/call_to_action/class.call_to_action.php:195
|
507 |
msgid "Text message"
|
508 |
msgstr "テキストメッセージ"
|
509 |
|
510 |
+
#: plugins/call_to_action/class.call_to_action.php:201
|
511 |
+
#: plugins/call_to_action/widget.call_to_action.php:62
|
512 |
msgid "CTA setting"
|
513 |
msgstr "CTA設定"
|
514 |
|
515 |
+
#: plugins/call_to_action/view.adminsetting.php:14
|
516 |
msgid "How to use"
|
517 |
msgstr "使い方"
|
518 |
|
519 |
+
#: plugins/call_to_action/view.adminsetting.php:17
|
520 |
msgid ""
|
521 |
"You register the contents on \"CTA\" that you want to display to bottom of "
|
522 |
"the content."
|
523 |
msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
|
524 |
|
525 |
+
#: plugins/call_to_action/view.adminsetting.php:18
|
526 |
msgid "Choose the CTA to be displayed from the following."
|
527 |
msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
|
528 |
|
529 |
+
#: plugins/call_to_action/view.adminsetting.php:19
|
530 |
msgid ""
|
531 |
"If you want to switch the CTA to be displayed on each post, please set in "
|
532 |
"the details page of such posting."
|
534 |
"投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してくださ"
|
535 |
"い。"
|
536 |
|
537 |
+
#: plugins/call_to_action/view.adminsetting.php:32
|
538 |
msgid "Show index page"
|
539 |
msgstr "一覧ページを表示する"
|
540 |
|
541 |
+
#: plugins/call_to_action/widget.call_to_action.php:13
|
542 |
#, fuzzy
|
543 |
msgid "CTA"
|
544 |
msgstr "CTAの新規作成"
|
545 |
|
546 |
+
#: plugins/call_to_action/widget.call_to_action.php:19
|
547 |
msgid "Select CTA and display it."
|
548 |
msgstr "CTAを選択して表示します。"
|
549 |
|
550 |
+
#: plugins/call_to_action/widget.call_to_action.php:51
|
551 |
msgid "Please select CTA to display."
|
552 |
msgstr "表示するCTAを選択してください。"
|
553 |
|
554 |
+
#: plugins/child_page_index.php:40 plugins/other_widget/widget-3pr-area.php:182
|
|
|
555 |
msgid "Read more"
|
556 |
msgstr "詳しくはこちら"
|
557 |
|
558 |
+
#: plugins/child_page_index.php:91
|
559 |
msgid "Display a child page index"
|
560 |
msgstr "子ページ一覧の表示"
|
561 |
|
562 |
+
#: plugins/contact_section.php:59 plugins/contact_section.php:89
|
563 |
msgid "Contact Information"
|
564 |
msgstr "お問い合わせ情報"
|
565 |
|
566 |
+
#: plugins/contact_section.php:70 plugins/contact_section.php:100
|
567 |
msgid "Please feel free to inquire."
|
568 |
msgstr "お気軽にお問い合わせください。"
|
569 |
|
570 |
+
#: plugins/contact_section.php:72
|
571 |
msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
|
572 |
msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
|
573 |
|
574 |
+
#: plugins/contact_section.php:76
|
575 |
msgid "Contact us"
|
576 |
msgstr "お問い合わせ"
|
577 |
|
578 |
+
#: plugins/contact_section.php:91
|
579 |
msgid ""
|
580 |
"Contents input here are displayed on an \"Contact Button\" widget and each "
|
581 |
"fixed page."
|
582 |
msgstr ""
|
583 |
"ここに入力された内容がお問い合わせウィジェットと各固定ページに表示されます。"
|
584 |
|
585 |
+
#: plugins/contact_section.php:93
|
586 |
msgid ""
|
587 |
"When I display it on the page, it is necessary to classify a check into "
|
588 |
"\"Display Contact Section\" checkbox with the edit page of each page."
|
590 |
"固定ページに表示する場合は、各固定ページの編集画面で\"お問い合わせ情報の表示"
|
591 |
"\"にチェックを入れる必要があります。"
|
592 |
|
593 |
+
#: plugins/contact_section.php:97
|
594 |
msgid "Message"
|
595 |
msgstr "メッセージ"
|
596 |
|
597 |
+
#: plugins/contact_section.php:100 plugins/contact_section.php:107
|
598 |
+
#: plugins/contact_section.php:114 plugins/contact_section.php:122
|
599 |
+
#: plugins/contact_section.php:130 plugins/contact_section.php:138
|
600 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:31
|
601 |
msgid "ex) "
|
602 |
msgstr "例: "
|
603 |
|
604 |
+
#: plugins/contact_section.php:104
|
605 |
msgid "Phone number"
|
606 |
msgstr "電話番号"
|
607 |
|
608 |
+
#: plugins/contact_section.php:111 plugins/contact_section.php:114
|
609 |
msgid "Office hours"
|
610 |
msgstr "営業時間"
|
611 |
|
612 |
+
#: plugins/contact_section.php:114
|
613 |
msgid "Weekdays except holidays"
|
614 |
msgstr "土日・祝日除く"
|
615 |
|
616 |
+
#: plugins/contact_section.php:119
|
617 |
msgid "The contact page URL"
|
618 |
msgstr "お問い合わせ先URL"
|
619 |
|
620 |
+
#: plugins/contact_section.php:122
|
621 |
msgid "or"
|
622 |
msgstr "もしくは"
|
623 |
|
624 |
+
#: plugins/contact_section.php:123
|
625 |
msgid "* If you fill in the blank, widget's contact button does not appear."
|
626 |
msgstr "※ 未入力の場合、お問い合わせウィジェットには何も表示されません。"
|
627 |
|
628 |
+
#: plugins/contact_section.php:127
|
629 |
msgid "Contact button Text"
|
630 |
msgstr "お問い合わせボタンに表示するテキスト"
|
631 |
|
632 |
+
#: plugins/contact_section.php:130
|
633 |
msgid "Contact Us from email."
|
634 |
msgstr "メールでのお問い合わせはこちら"
|
635 |
|
636 |
+
#: plugins/contact_section.php:135
|
637 |
msgid "Contact button text( sub )"
|
638 |
msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
|
639 |
|
640 |
+
#: plugins/contact_section.php:139
|
641 |
msgid "Email contact form"
|
642 |
msgstr "お気軽にお問い合わせください。"
|
643 |
|
644 |
+
#: plugins/contact_section.php:144
|
645 |
msgid "Contact button short text for side widget"
|
646 |
msgstr "お問い合わせボタンウィジェットに表示するテキスト"
|
647 |
|
648 |
+
#: plugins/contact_section.php:148
|
649 |
msgid "This will used to \"Contact Button\" widget."
|
650 |
msgstr ""
|
651 |
"このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの利"
|
652 |
"用を想定していますので少ない文字数で設定してください。"
|
653 |
|
654 |
+
#: plugins/contact_section.php:152
|
655 |
msgid "Advanced Setting"
|
656 |
msgstr "高度な設定"
|
657 |
|
658 |
+
#: plugins/contact_section.php:155
|
659 |
msgid "Inquiry Banner image"
|
660 |
msgstr "お問い合わせバナー画像"
|
661 |
|
662 |
+
#: plugins/contact_section.php:157
|
663 |
msgid "Select Image"
|
664 |
msgstr "画像を選択"
|
665 |
|
666 |
+
#: plugins/contact_section.php:158
|
667 |
msgid "Display the image instead of the above inquiry information"
|
668 |
msgstr ""
|
669 |
"画像が登録されている場合は標準のお問い合わせ情報ではなく画像が表示されます。"
|
670 |
|
671 |
+
#: plugins/contact_section.php:162
|
672 |
msgid "Display HTML message instead of the standard"
|
673 |
msgstr "お問い合わせ情報として表示するHTML"
|
674 |
|
675 |
+
#: plugins/contact_section.php:164
|
676 |
msgid "HTML takes precedence over image"
|
677 |
msgstr "HTMLが登録されている場合は画像より優先されます。"
|
678 |
|
679 |
+
#: plugins/contact_section.php:187
|
680 |
msgid "Display Contact Section"
|
681 |
msgstr "お問い合わせ情報の表示"
|
682 |
|
683 |
+
#: plugins/contact_section.php:282 plugins/contact_section.php:312
|
684 |
msgid "Edit contact information"
|
685 |
msgstr "Contact情報を編集"
|
686 |
|
687 |
+
#: plugins/contact_section.php:332
|
688 |
msgid "Contact Button"
|
689 |
msgstr "お問い合わせボタン"
|
690 |
|
691 |
+
#: plugins/contact_section.php:338 plugins/contact_section.php:360
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
697 |
"* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
|
698 |
"す。"
|
699 |
|
700 |
+
#: plugins/css_customize/css_customize-edit.php:2
|
701 |
+
#: plugins/css_customize/css_customize.php:28
|
702 |
+
#: plugins/css_customize/css_customize.php:44
|
703 |
+
#: plugins/css_customize/css_customize.php:45
|
704 |
msgid "CSS Customize"
|
705 |
msgstr "CSSカスタマイズ"
|
706 |
|
707 |
+
#: plugins/css_customize/css_customize-edit.php:5
|
708 |
msgid "You can add custom CSS here."
|
709 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
710 |
|
711 |
+
#: plugins/css_customize/css_customize-edit.php:10
|
712 |
msgid "Save CSS"
|
713 |
msgstr "CSSを保存する"
|
714 |
|
715 |
+
#: plugins/css_customize/css_customize.php:102
|
716 |
msgid "Your custom CSS was saved."
|
717 |
msgstr "CSSが保存されました"
|
718 |
|
719 |
+
#: plugins/css_customize/css_customize.php:105
|
720 |
msgid "Error occured. Please try again."
|
721 |
msgstr "何らかのエラー!! また試してみてください"
|
722 |
|
723 |
+
#: plugins/footer_copyright_change.php:6
|
724 |
msgid ""
|
725 |
"<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
|
726 |
"\"//lightning.vektor-inc.co.jp\" target=\"_blank\" title=\"Free WordPress "
|
736 |
"All in One Expansion Unit</a> by <a href=\"http://www.vektor-inc.co.jp\" "
|
737 |
"target=\"_blank\">Vektor,Inc.</a> technology.</p>"
|
738 |
|
739 |
+
#: plugins/google_analytics/ga_admin.php:9
|
740 |
+
#: plugins/google_analytics/ga_admin.php:13
|
741 |
+
#: plugins/google_analytics/google_analytics.php:18
|
742 |
msgid "Google Analytics Settings"
|
743 |
msgstr "Google Analytics設定"
|
744 |
|
745 |
+
#: plugins/google_analytics/ga_admin.php:14
|
746 |
msgid ""
|
747 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
748 |
"the site."
|
749 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
750 |
|
751 |
+
#: plugins/google_analytics/ga_admin.php:19
|
752 |
msgid ""
|
753 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
754 |
"this.)"
|
756 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
757 |
"す )"
|
758 |
|
759 |
+
#: plugins/google_analytics/ga_admin.php:23
|
760 |
msgid "To output the Universal Analytics code (default)"
|
761 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
762 |
|
763 |
+
#: plugins/google_analytics/ga_admin.php:24
|
764 |
msgid "To output only normal code"
|
765 |
msgstr "ノーマルのコードのみを出力します。"
|
766 |
|
767 |
+
#: plugins/google_analytics/ga_admin.php:25
|
768 |
msgid "To output both types"
|
769 |
msgstr "両タイプのコードを出力します。"
|
770 |
|
771 |
+
#: plugins/icons.php:38 plugins/icons.php:68
|
772 |
msgid "icon setting"
|
773 |
msgstr "アイコン設定"
|
774 |
|
775 |
+
#: plugins/icons.php:73
|
776 |
msgid "Favicon Setting"
|
777 |
msgstr "ファビコン設定"
|
778 |
|
779 |
+
#: plugins/icons.php:75
|
780 |
msgid "Choose icon"
|
781 |
msgstr "アイコンを選択"
|
782 |
|
783 |
+
#: plugins/icons.php:76
|
784 |
msgid "Please upload your \".ico\" file"
|
785 |
msgstr "作成したicoファイルをアップロードしてください"
|
786 |
|
787 |
+
#: plugins/insert_ads.php:140
|
788 |
msgid "Insert ads to post."
|
789 |
msgstr "投稿に広告を挿入"
|
790 |
|
791 |
+
#: plugins/insert_ads.php:142
|
792 |
msgid "Insert ads to before content and more tag and after content."
|
793 |
msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
|
794 |
|
795 |
+
#: plugins/insert_ads.php:142
|
796 |
msgid "If you want to separate ads area, you fill two fields."
|
797 |
msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
|
798 |
|
799 |
+
#: plugins/insert_ads.php:144
|
800 |
msgid "insert the ad [ before content ]"
|
801 |
msgstr "広告を挿入 [ 記事の最初 ]"
|
802 |
|
803 |
+
#: plugins/insert_ads.php:152
|
804 |
msgid "insert the ad [ more tag ]"
|
805 |
msgstr "広告を挿入 [ moreタグ ]"
|
806 |
|
807 |
+
#: plugins/insert_ads.php:160
|
808 |
msgid "insert the ad [ after content ]"
|
809 |
msgstr "広告を挿入 [ 記事の最後 ]"
|
810 |
|
811 |
+
#: plugins/meta_description.php:20 plugins/meta_description.php:31
|
812 |
+
#: plugins/meta_description.php:34
|
813 |
msgid "Meta Description"
|
814 |
msgstr "メタディスクリプション"
|
815 |
|
816 |
+
#: plugins/meta_description.php:37
|
817 |
msgid ""
|
818 |
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
819 |
"page will be reflected in the description of the meta tag."
|
821 |
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
822 |
"反映されます"
|
823 |
|
824 |
+
#: plugins/meta_description.php:38
|
825 |
msgid ""
|
826 |
"Description of meta tags in the search results screen of search sites such "
|
827 |
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
832 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
833 |
"内容が反映されます。"
|
834 |
|
835 |
+
#: plugins/meta_description.php:39
|
836 |
msgid ""
|
837 |
"The meta description of the top page is subject to the catchphrase of the "
|
838 |
"site. However, its contents will be reflected if the excerpt is entered in "
|
842 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
843 |
"内容が反映されます。"
|
844 |
|
845 |
+
#: plugins/meta_description.php:40
|
846 |
msgid ""
|
847 |
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
848 |
"each article edit page, and check the expert column display."
|
851 |
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
852 |
"で、チェックして下さい。"
|
853 |
|
854 |
+
#: plugins/meta_keyword.php:40 plugins/meta_keyword.php:91
|
855 |
+
#: plugins/meta_keyword.php:93 plugins/meta_keyword.php:94
|
856 |
+
#: plugins/meta_keyword.php:101
|
857 |
msgid "Meta Keywords"
|
858 |
msgstr "メタキーワード"
|
859 |
|
860 |
+
#: plugins/meta_keyword.php:68
|
861 |
msgid "Meta Keyword"
|
862 |
msgstr "メタキーワード"
|
863 |
|
864 |
+
#: plugins/meta_keyword.php:71
|
865 |
msgid "Common Keywords"
|
866 |
msgstr "共通キーワード設定"
|
867 |
|
868 |
+
#: plugins/meta_keyword.php:72
|
869 |
msgid ""
|
870 |
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
871 |
"if you want multiple keywords, enter with separator of \",\"."
|
873 |
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
874 |
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
875 |
|
876 |
+
#: plugins/meta_keyword.php:75
|
877 |
msgid "This is not seriously, Because the SearchEngine does not care this."
|
878 |
msgstr ""
|
879 |
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
880 |
"クターとはなりません。"
|
881 |
|
882 |
+
#: plugins/meta_keyword.php:76
|
883 |
msgid ""
|
884 |
"For each page individual keyword is enter at the edit screen of each "
|
885 |
"article. 10 keywords maximum, together with a each article keywords is "
|
888 |
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
889 |
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
890 |
|
891 |
+
#: plugins/meta_keyword.php:77
|
892 |
msgid "\",\" separator at end of the last keyword is do not need."
|
893 |
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
894 |
|
895 |
+
#: plugins/meta_keyword.php:78
|
896 |
msgid "Example: WordPress,template,theme,free,GPL"
|
897 |
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
898 |
|
899 |
+
#: plugins/meta_keyword.php:102
|
900 |
msgid ""
|
901 |
"To distinguish between individual keywords, please enter a , delimiter "
|
902 |
"(optional)."
|
903 |
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
904 |
|
905 |
+
#: plugins/meta_keyword.php:104
|
906 |
#, php-format
|
907 |
msgid "* keywords common to the entire site can be set from %s."
|
908 |
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
909 |
|
910 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
911 |
msgid "Displays entries list from a RSS feed link."
|
912 |
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
913 |
|
914 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
915 |
msgid "RSS entries for top"
|
916 |
msgstr "トップのRSSエントリー"
|
917 |
|
918 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
919 |
msgid "Blog entries"
|
920 |
msgstr "ブログエントリー"
|
921 |
|
922 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
923 |
msgid "Heading title"
|
924 |
msgstr "見出しタイトル"
|
925 |
|
926 |
+
#: plugins/other_widget/widget-3pr-area.php:9
|
927 |
+
#: plugins/other_widget/widget-3pr-area.php:148
|
928 |
msgid "3PR area"
|
929 |
msgstr "3PR エリア"
|
930 |
|
931 |
+
#: plugins/other_widget/widget-3pr-area.php:14
|
932 |
msgid "Displays a 3PR area"
|
933 |
msgstr "3PR エリアを表示します。"
|
934 |
|
935 |
+
#: plugins/other_widget/widget-3pr-area.php:21
|
936 |
msgid "3PR area1 title"
|
937 |
msgstr "3PR エリア1 タイトル"
|
938 |
|
939 |
+
#: plugins/other_widget/widget-3pr-area.php:29
|
940 |
msgid "3PR area2 title"
|
941 |
msgstr "3PR エリア2 タイトル"
|
942 |
|
943 |
+
#: plugins/other_widget/widget-3pr-area.php:37
|
944 |
msgid "3PR area3 title"
|
945 |
msgstr "3PR エリア3 タイトル"
|
946 |
|
947 |
+
#: plugins/other_widget/widget-3pr-area.php:56
|
948 |
msgid "3PR area setting"
|
949 |
msgstr "3PR エリア設定"
|
950 |
|
951 |
+
#: plugins/other_widget/widget-3pr-area.php:58
|
952 |
+
#: plugins/other_widget/widget-new-posts.php:179
|
953 |
+
#: plugins/other_widget/widget-pr-blocks.php:89
|
954 |
+
#: plugins/other_widget/widget-profile.php:40
|
955 |
+
#: plugins/sns/function_fbPagePlugin.php:79
|
956 |
msgid "Title:"
|
957 |
msgstr "タイトル"
|
958 |
|
959 |
+
#: plugins/other_widget/widget-3pr-area.php:64
|
960 |
msgid "Select image for PC:"
|
961 |
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
962 |
|
963 |
+
#: plugins/other_widget/widget-3pr-area.php:67
|
964 |
+
#: plugins/other_widget/widget-3pr-area.php:84
|
965 |
+
#: plugins/other_widget/widget-pr-blocks.php:123
|
966 |
+
#: plugins/other_widget/widget-profile.php:48
|
967 |
msgid "Select image"
|
968 |
msgstr "画像を選択"
|
969 |
|
970 |
+
#: plugins/other_widget/widget-3pr-area.php:68
|
971 |
+
#: plugins/other_widget/widget-3pr-area.php:85
|
972 |
+
#: plugins/other_widget/widget-pr-blocks.php:126
|
973 |
+
#: plugins/other_widget/widget-profile.php:49
|
974 |
msgid "Clear image"
|
975 |
msgstr "画像クリア"
|
976 |
|
977 |
+
#: plugins/other_widget/widget-3pr-area.php:78
|
978 |
msgid "Select image for Mobile:"
|
979 |
msgstr ""
|
980 |
"スマホ用(ウィンドウサイズが 768px 以下の場合)に表示される画像を選択(橫 "
|
981 |
"690px 以上推奨。空欄も可)"
|
982 |
|
983 |
+
#: plugins/other_widget/widget-3pr-area.php:94
|
984 |
+
#: plugins/other_widget/widget-pr-blocks.php:137
|
985 |
msgid "Summary Text:"
|
986 |
msgstr "概要となるテキスト"
|
987 |
|
988 |
+
#: plugins/other_widget/widget-3pr-area.php:100
|
989 |
+
#: plugins/other_widget/widget-pr-blocks.php:141
|
990 |
msgid "Link URL:"
|
991 |
msgstr "リンク先ページのURL"
|
992 |
|
993 |
+
#: plugins/other_widget/widget-3pr-area.php:103
|
994 |
+
#: plugins/other_widget/widget-banner.php:87
|
995 |
+
#: plugins/other_widget/widget-pr-blocks.php:145
|
996 |
+
msgid "Open link new tab."
|
997 |
+
msgstr "リンクを別ウィンドウで開く"
|
998 |
+
|
999 |
+
#: plugins/other_widget/widget-archives.php:53
|
1000 |
+
#: plugins/other_widget/widget-archives.php:54
|
1001 |
msgid "Monthly archives"
|
1002 |
msgstr "月別アーカイブ"
|
1003 |
|
1004 |
+
#: plugins/other_widget/widget-archives.php:63
|
1005 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
1006 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
1007 |
msgid "Title"
|
1008 |
msgstr "タイトル"
|
1009 |
|
1010 |
+
#: plugins/other_widget/widget-archives.php:67
|
1011 |
msgid "Post type"
|
1012 |
msgstr "ポストタイプ"
|
1013 |
|
1014 |
+
#: plugins/other_widget/widget-archives.php:77
|
1015 |
msgid "Monthly"
|
1016 |
msgstr "月別"
|
1017 |
|
1018 |
+
#: plugins/other_widget/widget-archives.php:79
|
1019 |
msgid "Yearly"
|
1020 |
msgstr "年別"
|
1021 |
|
1022 |
+
#: plugins/other_widget/widget-archives.php:97
|
1023 |
msgid "archive"
|
1024 |
msgstr "アーカイブ"
|
1025 |
|
1026 |
+
#: plugins/other_widget/widget-banner.php:16
|
1027 |
msgid "Banner"
|
1028 |
msgstr "バナー"
|
1029 |
|
1030 |
+
#: plugins/other_widget/widget-banner.php:22
|
1031 |
msgid ""
|
1032 |
"You can easily set up a banner simply by registering images and link "
|
1033 |
"destinations."
|
1034 |
msgstr "画像とリンク先を登録するだけで簡単にバナーを設定できます。"
|
1035 |
|
1036 |
+
#: plugins/other_widget/widget-banner.php:83
|
1037 |
msgid "Set image"
|
1038 |
msgstr "画像を選択"
|
1039 |
|
1040 |
+
#: plugins/other_widget/widget-banner.php:88
|
1041 |
+
msgid "Alternative text"
|
1042 |
+
msgstr "代替テキスト(alt)"
|
1043 |
+
|
1044 |
+
#: plugins/other_widget/widget-button.php:29
|
1045 |
+
msgid "Button"
|
1046 |
+
msgstr "ボタン"
|
1047 |
+
|
1048 |
+
#: plugins/other_widget/widget-button.php:34
|
1049 |
+
msgid "You can set buttons for arbitrary text."
|
1050 |
+
msgstr "任意のテキストのボタンを設定できます。"
|
1051 |
+
|
1052 |
+
#: plugins/other_widget/widget-button.php:92
|
1053 |
+
msgid "Main text(Required):"
|
1054 |
+
msgstr "ボタンテキスト(必須):"
|
1055 |
+
|
1056 |
+
#: plugins/other_widget/widget-button.php:97
|
1057 |
+
msgid "Class name of the icon font"
|
1058 |
+
msgstr "使用したいアイコンフォント"
|
1059 |
+
|
1060 |
+
#: plugins/other_widget/widget-button.php:98
|
1061 |
+
#: plugins/other_widget/widget-pr-blocks.php:96
|
1062 |
+
msgid "To choose your favorite icon, and enter the class."
|
1063 |
+
msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
|
1064 |
+
|
1065 |
+
#: plugins/other_widget/widget-button.php:99
|
1066 |
+
msgid "Before :"
|
1067 |
+
msgstr "文字の前 :"
|
1068 |
+
|
1069 |
+
#: plugins/other_widget/widget-button.php:101
|
1070 |
+
msgid "After :"
|
1071 |
+
msgstr "文字の後 :"
|
1072 |
+
|
1073 |
+
#: plugins/other_widget/widget-button.php:103
|
1074 |
+
msgid " ex:fa-arrow-circle-o-right"
|
1075 |
+
msgstr "例: fa-arrow-circle-o-right"
|
1076 |
+
|
1077 |
+
#: plugins/other_widget/widget-button.php:107
|
1078 |
+
msgid "Sub text:"
|
1079 |
+
msgstr "サブテキスト:"
|
1080 |
+
|
1081 |
+
#: plugins/other_widget/widget-button.php:111
|
1082 |
+
msgid "Link URL(Required):"
|
1083 |
+
msgstr "リンク先ページのURL(必須):"
|
1084 |
+
|
1085 |
+
#: plugins/other_widget/widget-button.php:116
|
1086 |
+
msgid "Open with new tab"
|
1087 |
msgstr "リンクを別ウィンドウで開く"
|
1088 |
|
1089 |
+
#: plugins/other_widget/widget-button.php:119
|
1090 |
+
msgid "Size"
|
1091 |
+
msgstr "サイズ"
|
1092 |
+
|
1093 |
+
#: plugins/other_widget/widget-button.php:121
|
1094 |
+
msgid "Small"
|
1095 |
+
msgstr "小"
|
1096 |
+
|
1097 |
+
#: plugins/other_widget/widget-button.php:122
|
1098 |
+
msgid "Medium"
|
1099 |
+
msgstr "中"
|
1100 |
+
|
1101 |
+
#: plugins/other_widget/widget-button.php:123
|
1102 |
+
msgid "Large"
|
1103 |
+
msgstr "大"
|
1104 |
+
|
1105 |
+
#: plugins/other_widget/widget-button.php:127
|
1106 |
+
msgid "Button color:"
|
1107 |
+
msgstr "ボタンの色:"
|
1108 |
+
|
1109 |
+
#: plugins/other_widget/widget-button.php:156
|
1110 |
+
msgid "Key Color(.primary)"
|
1111 |
+
msgstr "キーカラー(.primary)"
|
1112 |
+
|
1113 |
+
#: plugins/other_widget/widget-button.php:157
|
1114 |
+
msgid "No paint(.default)"
|
1115 |
+
msgstr "塗りなし(.default)"
|
1116 |
+
|
1117 |
+
#: plugins/other_widget/widget-button.php:158
|
1118 |
+
msgid "Light green(.success)"
|
1119 |
+
msgstr "明るい緑(.success)"
|
1120 |
+
|
1121 |
+
#: plugins/other_widget/widget-button.php:159
|
1122 |
+
msgid "Light blue(.info)"
|
1123 |
+
msgstr "空色(.info)"
|
1124 |
+
|
1125 |
+
#: plugins/other_widget/widget-button.php:160
|
1126 |
+
msgid "Orange(.warning)"
|
1127 |
+
msgstr "オレンジ(.warning)"
|
1128 |
+
|
1129 |
+
#: plugins/other_widget/widget-button.php:161
|
1130 |
+
msgid "Red(.danger)"
|
1131 |
+
msgstr "赤(.danger)"
|
1132 |
+
|
1133 |
+
#: plugins/other_widget/widget-child-page-list.php:10
|
1134 |
msgid "Child Page List"
|
1135 |
msgstr "子ページのリスト"
|
1136 |
|
1137 |
+
#: plugins/other_widget/widget-child-page-list.php:15
|
1138 |
+
#: plugins/other_widget/widget-child-page-list.php:50
|
1139 |
msgid "Display the child pages list from ancestor page."
|
1140 |
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1141 |
|
1142 |
+
#: plugins/other_widget/widget-new-posts.php:11
|
1143 |
+
#: plugins/other_widget/widget-new-posts.php:31
|
1144 |
+
#: plugins/other_widget/widget-new-posts.php:162
|
1145 |
msgid "Recent Posts"
|
1146 |
msgstr "最新記事"
|
1147 |
|
1148 |
+
#: plugins/other_widget/widget-new-posts.php:16
|
1149 |
msgid "Displays a list of your most recent posts"
|
1150 |
msgstr "最新の投稿記事リストを表示します。"
|
1151 |
|
1152 |
+
#: plugins/other_widget/widget-new-posts.php:183
|
1153 |
msgid "Display Format"
|
1154 |
msgstr "表示形式"
|
1155 |
|
1156 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
1157 |
msgid "Thumbnail"
|
1158 |
msgstr "サムネイル画像"
|
1159 |
|
1160 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
1161 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
1162 |
msgid "Date"
|
1163 |
msgstr "日付"
|
1164 |
|
1165 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
1166 |
+
#: plugins/other_widget/widget-taxonomies.php:20
|
1167 |
+
#: plugins/other_widget/widget-taxonomies.php:49
|
1168 |
+
#: plugins/other_widget/widget-taxonomies.php:50
|
1169 |
msgid "Category"
|
1170 |
msgstr "カテゴリー"
|
1171 |
|
1172 |
+
#: plugins/other_widget/widget-new-posts.php:188
|
1173 |
msgid "Order by"
|
1174 |
msgstr "表示順"
|
1175 |
|
1176 |
+
#: plugins/other_widget/widget-new-posts.php:189
|
1177 |
msgid "Publish date"
|
1178 |
msgstr "公開日"
|
1179 |
|
1180 |
+
#: plugins/other_widget/widget-new-posts.php:190
|
1181 |
msgid "Modified date"
|
1182 |
msgstr "最終更新日"
|
1183 |
|
1184 |
+
#: plugins/other_widget/widget-new-posts.php:194
|
1185 |
msgid "Display count"
|
1186 |
msgstr "表示する記事数"
|
1187 |
|
1188 |
+
#: plugins/other_widget/widget-new-posts.php:199
|
1189 |
msgid "Slug for the custom type you want to display"
|
1190 |
msgstr "表示したい記事タイプ"
|
1191 |
|
1192 |
+
#: plugins/other_widget/widget-new-posts.php:204
|
1193 |
msgid "taxonomy ID"
|
1194 |
msgstr "カテゴリー(タクソノミー)ID"
|
1195 |
|
1196 |
+
#: plugins/other_widget/widget-new-posts.php:206
|
1197 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1198 |
msgstr ""
|
1199 |
"特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
|
1200 |
"します。"
|
1201 |
|
1202 |
+
#: plugins/other_widget/widget-new-posts.php:208 plugins/sns/sns_admin.php:88
|
|
|
1203 |
msgid "if empty this area, I will do not filtering."
|
1204 |
msgstr "空欄の場合はフィルタリングは行いません。"
|
1205 |
|
1206 |
+
#: plugins/other_widget/widget-page.php:9
|
1207 |
msgid "page content to widget"
|
1208 |
msgstr "固定ページ本文"
|
1209 |
|
1210 |
+
#: plugins/other_widget/widget-page.php:14
|
1211 |
msgid "Displays a page contents to widget."
|
1212 |
msgstr "選択したページの内容を表示します。"
|
1213 |
|
1214 |
+
#: plugins/other_widget/widget-page.php:40
|
1215 |
+
#: plugins/other_widget/widget-taxonomies.php:62
|
1216 |
msgid "Display page"
|
1217 |
msgstr "ページを表示"
|
1218 |
|
1219 |
+
#: plugins/other_widget/widget-page.php:48
|
1220 |
msgid "display title"
|
1221 |
msgstr "タイトルを表示"
|
1222 |
|
1223 |
+
#: plugins/other_widget/widget-page.php:70
|
1224 |
msgid "Edit"
|
1225 |
msgstr "編集"
|
1226 |
|
1227 |
+
#: plugins/other_widget/widget-pr-blocks.php:9
|
1228 |
msgid "PR Blocks"
|
1229 |
msgstr "PR Blocks"
|
1230 |
|
1231 |
+
#: plugins/other_widget/widget-pr-blocks.php:14
|
1232 |
msgid "Displays a circle image or icon font for pr blocks"
|
1233 |
msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
|
1234 |
|
1235 |
+
#: plugins/other_widget/widget-pr-blocks.php:23
|
1236 |
msgid "Service"
|
1237 |
msgstr "サービス紹介"
|
1238 |
|
1239 |
+
#: plugins/other_widget/widget-pr-blocks.php:33
|
1240 |
msgid "Company"
|
1241 |
msgstr "会社案内"
|
1242 |
|
1243 |
+
#: plugins/other_widget/widget-pr-blocks.php:43
|
1244 |
msgid "Recruit"
|
1245 |
msgstr "採用情報"
|
1246 |
|
1247 |
+
#: plugins/other_widget/widget-pr-blocks.php:53
|
1248 |
msgid "Contact"
|
1249 |
msgstr "Contact"
|
1250 |
|
1251 |
+
#: plugins/other_widget/widget-pr-blocks.php:74
|
1252 |
msgid "The choice of the number of columns:"
|
1253 |
msgstr "列の数"
|
1254 |
|
1255 |
+
#: plugins/other_widget/widget-pr-blocks.php:76
|
1256 |
msgid "3column"
|
1257 |
msgstr "3列"
|
1258 |
|
1259 |
+
#: plugins/other_widget/widget-pr-blocks.php:77
|
1260 |
msgid "4column"
|
1261 |
msgstr "4列"
|
1262 |
|
1263 |
+
#: plugins/other_widget/widget-pr-blocks.php:79
|
1264 |
msgid ""
|
1265 |
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1266 |
"edit page. When restart the edit page, the column input form is increased or "
|
1269 |
"列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
|
1270 |
"す。それから編集画面を再度開くと列の入力フォームが増減します。"
|
1271 |
|
1272 |
+
#: plugins/other_widget/widget-pr-blocks.php:86
|
1273 |
+
#: plugins/other_widget/widget-pr-blocks.php:225
|
1274 |
msgid "PR Block"
|
1275 |
msgstr "PRブロック"
|
1276 |
|
1277 |
+
#: plugins/other_widget/widget-pr-blocks.php:93
|
1278 |
msgid "Class name of the icon font you want to use:"
|
1279 |
msgstr "使用したいアイコンフォントのクラス名:"
|
1280 |
|
1281 |
+
#: plugins/other_widget/widget-pr-blocks.php:96
|
|
|
|
|
|
|
|
|
1282 |
msgid " ex:fa-file-text-o"
|
1283 |
msgstr "例:fa-file-text-o"
|
1284 |
|
1285 |
+
#: plugins/other_widget/widget-pr-blocks.php:100
|
1286 |
msgid "Icon color:"
|
1287 |
msgstr "アイコンの色:"
|
1288 |
|
1289 |
+
#: plugins/other_widget/widget-pr-blocks.php:104
|
1290 |
msgid "Icon Background:"
|
1291 |
msgstr "アイコン背景:"
|
1292 |
|
1293 |
+
#: plugins/other_widget/widget-pr-blocks.php:108
|
1294 |
msgid "Solid color"
|
1295 |
msgstr "塗りつぶし"
|
1296 |
|
1297 |
+
#: plugins/other_widget/widget-pr-blocks.php:112
|
1298 |
msgid "No background"
|
1299 |
msgstr "背景なし"
|
1300 |
|
1301 |
+
#: plugins/other_widget/widget-pr-blocks.php:116
|
1302 |
msgid "Select image:"
|
1303 |
msgstr "画像を選択"
|
1304 |
|
1305 |
+
#: plugins/other_widget/widget-pr-blocks.php:127
|
1306 |
msgid "When you have an image. Image is displayed with priority"
|
1307 |
msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
|
1308 |
|
1309 |
+
#: plugins/other_widget/widget-profile.php:9
|
1310 |
+
#: plugins/other_widget/widget-profile.php:20
|
1311 |
msgid "Profile"
|
1312 |
msgstr "プロフィール"
|
1313 |
|
1314 |
+
#: plugins/other_widget/widget-profile.php:14
|
1315 |
msgid "Displays a your profile"
|
1316 |
msgstr ""
|
1317 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
1318 |
|
1319 |
+
#: plugins/other_widget/widget-profile.php:27
|
1320 |
msgid "Profile Text"
|
1321 |
msgstr "プロフィールテキスト"
|
1322 |
|
1323 |
+
#: plugins/other_widget/widget-profile.php:45
|
1324 |
msgid "Select Profile image:"
|
1325 |
msgstr "プロフィール用画像を選択"
|
1326 |
|
1327 |
+
#: plugins/other_widget/widget-profile.php:58
|
1328 |
msgid "Cut out round the image."
|
1329 |
msgstr "画像を丸く切り抜いて表示する"
|
1330 |
|
1331 |
+
#: plugins/other_widget/widget-profile.php:62
|
1332 |
msgid "Media size (Optional)"
|
1333 |
msgstr "画像の大きさ( 任意 )"
|
1334 |
|
1335 |
+
#: plugins/other_widget/widget-profile.php:67
|
1336 |
msgid "Image align left"
|
1337 |
msgstr "画像を左揃えにする"
|
1338 |
|
1339 |
+
#: plugins/other_widget/widget-profile.php:71
|
1340 |
msgid "Text float to image."
|
1341 |
msgstr "テキストを画像に回りこませる"
|
1342 |
|
1343 |
+
#: plugins/other_widget/widget-profile.php:75
|
1344 |
msgid "Profile Text:"
|
1345 |
msgstr "プロフィールテキスト"
|
1346 |
|
1347 |
+
#: plugins/other_widget/widget-profile.php:79
|
1348 |
msgid "Facebook URL:"
|
1349 |
msgstr "Facebook リンク先ページのURL"
|
1350 |
|
1351 |
+
#: plugins/other_widget/widget-profile.php:84
|
1352 |
msgid "Twitter URL:"
|
1353 |
msgstr "twitterリンク先ページのURL"
|
1354 |
|
1355 |
+
#: plugins/other_widget/widget-profile.php:89
|
1356 |
msgid "Email Address:"
|
1357 |
msgstr "Email リンク先ページのURL"
|
1358 |
|
1359 |
+
#: plugins/other_widget/widget-profile.php:94
|
1360 |
msgid "Youtube URL:"
|
1361 |
msgstr "Youtube リンク先ページのURL"
|
1362 |
|
1363 |
+
#: plugins/other_widget/widget-profile.php:99
|
1364 |
msgid "RSS URL:"
|
1365 |
msgstr "RSS リンク先ページのURL"
|
1366 |
|
1367 |
+
#: plugins/other_widget/widget-profile.php:104
|
1368 |
msgid "instagram URL:"
|
1369 |
msgstr "instagram リンク先ページのURL"
|
1370 |
|
1371 |
+
#: plugins/other_widget/widget-profile.php:108
|
1372 |
msgid "linkedin URL:"
|
1373 |
msgstr "linkedin リンク先ページのURL"
|
1374 |
|
1375 |
+
#: plugins/other_widget/widget-side-child-page-list.php:12
|
1376 |
msgid "child pages list"
|
1377 |
msgstr "子ページのリスト"
|
1378 |
|
1379 |
+
#: plugins/other_widget/widget-side-child-page-list.php:17
|
1380 |
msgid "Displays list of child page for the current page."
|
1381 |
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
1382 |
|
1383 |
+
#: plugins/other_widget/widget-taxonomies.php:9
|
1384 |
msgid "Categories/Custom taxonomies list"
|
1385 |
msgstr "カテゴリー/カスタム分類リスト"
|
1386 |
|
1387 |
+
#: plugins/other_widget/widget-taxonomies.php:14
|
1388 |
msgid "Displays a categories and custom taxonomies list."
|
1389 |
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
1390 |
|
1391 |
+
#: plugins/other_widget/widget-taxonomies.php:58
|
1392 |
msgid "Label to display"
|
1393 |
msgstr "表示するラベル"
|
1394 |
|
1395 |
+
#: plugins/other_widget/widget-taxonomies.php:78
|
1396 |
msgid "Blog"
|
1397 |
msgstr "ブログ"
|
1398 |
|
1399 |
+
#: plugins/pageList_ancestor.php:79
|
1400 |
msgid "Display a page list from ancestor"
|
1401 |
msgstr "現在のページの先祖階層からの子ページリストを表示"
|
1402 |
|
1403 |
+
#: plugins/page_custom_field.php:11
|
1404 |
msgid "Setting of insert items"
|
1405 |
msgstr "挿入アイテムの設定"
|
1406 |
|
1407 |
+
#: plugins/post-type-manager/class.post-type-manager.php:21
|
1408 |
+
#: plugins/post-type-manager/class.post-type-manager.php:22
|
1409 |
+
#: plugins/post-type-manager/class.post-type-manager.php:64
|
1410 |
msgid "Custom Post Type Setting"
|
1411 |
msgstr "カスタム投稿タイプ設定"
|
1412 |
|
1413 |
+
#: plugins/post-type-manager/class.post-type-manager.php:74
|
1414 |
msgid "Post Type ID(Required)"
|
1415 |
msgstr "投稿タイプID(必須)"
|
1416 |
|
1417 |
+
#: plugins/post-type-manager/class.post-type-manager.php:75
|
1418 |
msgid "20 characters or less in alphanumeric"
|
1419 |
msgstr "半角英数字20文字以内で入力ください"
|
1420 |
|
1421 |
+
#: plugins/post-type-manager/class.post-type-manager.php:80
|
1422 |
msgid "title"
|
1423 |
msgstr "タイトル"
|
1424 |
|
1425 |
+
#: plugins/post-type-manager/class.post-type-manager.php:81
|
1426 |
msgid "editor"
|
1427 |
msgstr "本文"
|
1428 |
|
1429 |
+
#: plugins/post-type-manager/class.post-type-manager.php:82
|
1430 |
msgid "author"
|
1431 |
msgstr "投稿者"
|
1432 |
|
1433 |
+
#: plugins/post-type-manager/class.post-type-manager.php:83
|
1434 |
msgid "thumbnail"
|
1435 |
msgstr "アイキャッチ画像"
|
1436 |
|
1437 |
+
#: plugins/post-type-manager/class.post-type-manager.php:84
|
1438 |
msgid "excerpt"
|
1439 |
msgstr "抜粋"
|
1440 |
|
1441 |
+
#: plugins/post-type-manager/class.post-type-manager.php:85
|
1442 |
msgid "comments"
|
1443 |
msgstr "コメント"
|
1444 |
|
1445 |
+
#: plugins/post-type-manager/class.post-type-manager.php:86
|
1446 |
msgid "revisions"
|
1447 |
msgstr "リビジョン"
|
1448 |
|
1449 |
+
#: plugins/post-type-manager/class.post-type-manager.php:90
|
1450 |
msgid "Supports(Required)"
|
1451 |
msgstr "有効にする項目(必須)"
|
1452 |
|
1453 |
+
#: plugins/post-type-manager/class.post-type-manager.php:102
|
1454 |
msgid "Menu position(optional)"
|
1455 |
msgstr "メニューの位置( 任意 )"
|
1456 |
|
1457 |
+
#: plugins/post-type-manager/class.post-type-manager.php:103
|
1458 |
msgid "Please enter a number."
|
1459 |
msgstr "数字を入力してください。数字が小さいほど上に表示されます。"
|
1460 |
|
1461 |
+
#: plugins/post-type-manager/class.post-type-manager.php:109
|
1462 |
msgid "Custom taxonomies(optional)"
|
1463 |
msgstr "カスタム分類(任意)"
|
1464 |
|
1465 |
+
#: plugins/post-type-manager/class.post-type-manager.php:114
|
1466 |
msgid "Custon taxonomy name(slug)"
|
1467 |
msgstr "カスタム分類名(スラッグ)"
|
1468 |
|
1469 |
+
#: plugins/post-type-manager/class.post-type-manager.php:115
|
1470 |
msgid "Custon taxonomy label"
|
1471 |
msgstr "カスタム分類名(表示名)"
|
1472 |
|
1473 |
+
#: plugins/post-type-manager/class.post-type-manager.php:185
|
1474 |
#, php-format
|
1475 |
msgid ""
|
1476 |
"Please save a <a href=\"%s\">permanent link configuration</a> After updating "
|
1478 |
msgstr ""
|
1479 |
"設定を更新したら<a href=\"%s\">パーマリンク設定</a>を保存してください。"
|
1480 |
|
1481 |
+
#: plugins/sitemap_page/sitemap_admin.php:9
|
1482 |
msgid "HTML Sitemap Settings"
|
1483 |
msgstr "HTMLサイトマップ設定"
|
1484 |
|
1485 |
+
#: plugins/sitemap_page/sitemap_admin.php:13
|
1486 |
msgid "Exclude page Settings"
|
1487 |
msgstr "除外ページ設定"
|
1488 |
|
1489 |
+
#: plugins/sitemap_page/sitemap_admin.php:15
|
1490 |
msgid "Input you want to exclude page id."
|
1491 |
msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
|
1492 |
|
1493 |
+
#: plugins/sitemap_page/sitemap_admin.php:17
|
1494 |
msgid ""
|
1495 |
"* Please enter separated by \",\"(commas) if there is more than one page ID "
|
1496 |
"that you want to exclude."
|
1497 |
msgstr "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
|
1498 |
|
1499 |
+
#: plugins/sitemap_page/sitemap_page.php:31
|
1500 |
msgid "HTML Sitemap"
|
1501 |
msgstr "HTMLサイトマップ"
|
1502 |
|
1503 |
+
#: plugins/sitemap_page/sitemap_page.php:238
|
1504 |
msgid "Display a HTML sitemap"
|
1505 |
msgstr "HTMLサイトマップの表示"
|
1506 |
|
1507 |
+
#: plugins/sns/function_fbPagePlugin.php:13
|
1508 |
msgid "Displays a Facebook Page Plugin"
|
1509 |
msgstr "Facebook ページプラグインを表示します。"
|
1510 |
|
1511 |
+
#: plugins/sns/function_fbPagePlugin.php:89
|
1512 |
msgid "Height"
|
1513 |
msgstr "高さ"
|
1514 |
|
1515 |
+
#: plugins/sns/function_fbPagePlugin.php:94
|
1516 |
msgid "Show Friend's Faces"
|
1517 |
msgstr "アイコンを表示する"
|
1518 |
|
1519 |
+
#: plugins/sns/function_fbPagePlugin.php:99
|
1520 |
msgid "Hide Cover Photo"
|
1521 |
msgstr "カバー画像を表示しない"
|
1522 |
|
1523 |
+
#: plugins/sns/function_fbPagePlugin.php:104
|
1524 |
msgid "Show Page Posts"
|
1525 |
msgstr "タイムラインを表示"
|
1526 |
|
1527 |
+
#: plugins/sns/function_follow.php:16
|
1528 |
msgid "Follow me"
|
1529 |
msgstr "このサイトをフォローする"
|
1530 |
|
1531 |
+
#: plugins/sns/function_meta_box.php:28
|
1532 |
msgid "Sns Title"
|
1533 |
msgstr "OGPタイトル"
|
1534 |
|
1535 |
+
#: plugins/sns/function_meta_box.php:39
|
1536 |
msgid "if filled this area then override title of OGP and Twitter Card"
|
1537 |
msgstr ""
|
1538 |
"このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
|
1539 |
"るタイトルを上書きすることができます"
|
1540 |
|
1541 |
+
#: plugins/sns/sns.php:17
|
1542 |
msgid "SNS"
|
1543 |
msgstr "SNS"
|
1544 |
|
1545 |
+
#: plugins/sns/sns_admin.php:1
|
1546 |
msgid "SNS Settings"
|
1547 |
msgstr "SNS設定"
|
1548 |
|
1549 |
+
#: plugins/sns/sns_admin.php:13
|
1550 |
msgid "facebook application ID"
|
1551 |
msgstr "facebookアプリケーションID"
|
1552 |
|
1553 |
+
#: plugins/sns/sns_admin.php:15
|
1554 |
msgid "I will check and get the application ID"
|
1555 |
msgstr "アプリケーションIDを確認・取得する "
|
1556 |
|
1557 |
+
#: plugins/sns/sns_admin.php:16
|
1558 |
msgid ""
|
1559 |
"* If an application ID is not specified, neither a Like button nor the "
|
1560 |
"comment field displays and operates correctly."
|
1562 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
1563 |
"ん。"
|
1564 |
|
1565 |
+
#: plugins/sns/sns_admin.php:17
|
1566 |
msgid ""
|
1567 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
1568 |
"much about how to get application ID for Facebook."
|
1570 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
1571 |
"アプリケーションID 取得」などで検索して下さい。"
|
1572 |
|
1573 |
+
#: plugins/sns/sns_admin.php:21
|
1574 |
msgid "facebook page URL"
|
1575 |
msgstr "FacebookページURL"
|
1576 |
|
1577 |
+
#: plugins/sns/sns_admin.php:26
|
1578 |
msgid "OG default image"
|
1579 |
msgstr "デフォルトのOGPイメージ"
|
1580 |
|
1581 |
+
#: plugins/sns/sns_admin.php:27
|
1582 |
msgid ""
|
1583 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
1584 |
"image that appears on the Facebook timeline."
|
1586 |
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
1587 |
"ムラインに表示されます。"
|
1588 |
|
1589 |
+
#: plugins/sns/sns_admin.php:28
|
1590 |
msgid "If a featured image is specified for the page, it takes precedence."
|
1591 |
msgstr ""
|
1592 |
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
1593 |
"す。"
|
1594 |
|
1595 |
+
#: plugins/sns/sns_admin.php:30
|
1596 |
msgid "Select an image"
|
1597 |
msgstr "画像を選択"
|
1598 |
|
1599 |
+
#: plugins/sns/sns_admin.php:32
|
1600 |
msgid ""
|
1601 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
1602 |
"recommended."
|
1603 |
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
1604 |
|
1605 |
+
#: plugins/sns/sns_admin.php:36
|
1606 |
msgid "twitter ID"
|
1607 |
msgstr "twitterアカウント"
|
1608 |
|
1609 |
+
#: plugins/sns/sns_admin.php:41
|
1610 |
msgid "OG tags"
|
1611 |
msgstr "OGタグ"
|
1612 |
|
1613 |
+
#: plugins/sns/sns_admin.php:43
|
1614 |
msgid "Print the OG tags"
|
1615 |
msgstr "OGタグを出力する"
|
1616 |
|
1617 |
+
#: plugins/sns/sns_admin.php:44
|
1618 |
msgid ""
|
1619 |
"If other plug-ins are used for the OG, do not output the OG using this "
|
1620 |
"plugin."
|
1622 |
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
1623 |
"る場合は、このプラグインでの出力は必要ありません。"
|
1624 |
|
1625 |
+
#: plugins/sns/sns_admin.php:49
|
1626 |
msgid "Twitter Card tags"
|
1627 |
msgstr "Twitterカードタグ"
|
1628 |
|
1629 |
+
#: plugins/sns/sns_admin.php:51
|
1630 |
msgid "Print the Twitter Card tags"
|
1631 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
1632 |
|
1633 |
+
#: plugins/sns/sns_admin.php:56
|
1634 |
msgid "Social bookmark buttons"
|
1635 |
msgstr "ソーシャルボタン"
|
1636 |
|
1637 |
+
#: plugins/sns/sns_admin.php:57
|
1638 |
msgid "Print the social bookmark buttons"
|
1639 |
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
1640 |
|
1641 |
+
#: plugins/sns/sns_admin.php:60
|
1642 |
msgid "Exclude Post Types"
|
1643 |
msgstr "シェアボタンを表示しない投稿タイプ"
|
1644 |
|
1645 |
+
#: plugins/sns/sns_admin.php:82
|
1646 |
msgid "Exclude Post ID"
|
1647 |
msgstr "シェアボタンを表示しない投稿のID"
|
1648 |
|
1649 |
+
#: plugins/sns/sns_admin.php:86
|
1650 |
msgid ""
|
1651 |
"if you need filtering by post_ID, add the ignore post_ID separate by \",\"."
|
1652 |
msgstr ""
|
1653 |
"特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを入"
|
1654 |
"力します。"
|
1655 |
|
1656 |
+
#: plugins/sns/sns_admin.php:90
|
1657 |
msgid "example"
|
1658 |
msgstr "例"
|
1659 |
|
1660 |
+
#: plugins/sns/sns_admin.php:98
|
1661 |
msgid "Follow me box"
|
1662 |
msgstr "Follow me box"
|
1663 |
|
1664 |
+
#: plugins/sns/sns_admin.php:99
|
1665 |
msgid "Print the Follow me box"
|
1666 |
msgstr "Follow me ユニットを本文の下に表示する"
|
1667 |
|
1668 |
+
#: plugins/sns/sns_admin.php:101
|
1669 |
msgid "Follow me box title"
|
1670 |
msgstr "Follow me box の見出しテキスト"
|
1671 |
|
1672 |
+
#: plugins/wp_title.php:47
|
1673 |
#, php-format
|
1674 |
msgid "Search Results for : %s"
|
1675 |
msgstr "検索結果 : %s"
|
1676 |
|
1677 |
+
#: plugins/wp_title.php:50
|
1678 |
msgid "Not found"
|
1679 |
msgstr "見つかりません"
|
1680 |
|
1681 |
+
#: plugins/wp_title.php:71 plugins/wp_title.php:83 plugins/wp_title.php:87
|
|
|
1682 |
msgid "<title> tag of homepage"
|
1683 |
msgstr "トップページの<title>タグ"
|
1684 |
|
1685 |
+
#: plugins/wp_title.php:91
|
1686 |
msgid "title of the site"
|
1687 |
msgstr "サイトのタイトル"
|
1688 |
|
1689 |
+
#: plugins/wp_title.php:92
|
1690 |
#, php-format
|
1691 |
msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
|
1692 |
msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
|
1693 |
|
1694 |
+
#: plugins/wp_title.php:93
|
1695 |
#, php-format
|
1696 |
msgid ""
|
1697 |
"For example, it appears in the form of <br /><title>page title | "
|
1700 |
"例えば固定ページであれば<br><title>固定ページ名 | %1$s</title>"
|
1701 |
"<br>というような形式で出力されます。"
|
1702 |
|
1703 |
+
#: plugins/wp_title.php:95
|
1704 |
#, php-format
|
1705 |
msgid ""
|
1706 |
"However, it might have negative impact on search engine rankings if the <"
|
1712 |
"くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短くまとめる"
|
1713 |
"事が望ましいです。"
|
1714 |
|
1715 |
+
#: plugins/wp_title.php:97
|
1716 |
msgid "Tagline"
|
1717 |
msgstr "キャッチフレーズ"
|
1718 |
|
1719 |
+
#: plugins/wp_title.php:98
|
1720 |
#, php-format
|
1721 |
msgid ""
|
1722 |
"In the top page will be output usually in the form of <br /><title>"
|
1725 |
"トップページでは<br><title>%1$s | %2$s</title><br>というような形"
|
1726 |
"式で出力されます。"
|
1727 |
|
1728 |
+
#: plugins/wp_title.php:99
|
1729 |
msgid ""
|
1730 |
"However, it may be too long in the above format. If the input to the input "
|
1731 |
"field of the following, its contents will be reflected."
|
1733 |
"しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に入"
|
1734 |
"力すれば、その内容が反映されます。"
|
1735 |
|
1736 |
+
#: plugins_admin/dashboard_info_widget.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1737 |
msgid "News from VK All in One Expansion Unit"
|
1738 |
msgstr "VK All in One Expansion Unit からのお知らせ"
|
1739 |
|
1740 |
+
#: plugins_admin/disable_guide.php:17
|
1741 |
+
msgid "Edit Guide"
|
1742 |
+
msgstr "編集ガイド"
|
1743 |
+
|
1744 |
+
#: plugins_admin/vk-admin/class.vk-admin.php:98
|
1745 |
msgid "Sorry, there is no post"
|
1746 |
msgstr "お知らせはありません。"
|
1747 |
|
1748 |
+
#: vkExUnit_admin.php:3
|
1749 |
msgid "Enable setting"
|
1750 |
msgstr "有効化設定"
|
1751 |
|
1752 |
+
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1753 |
msgid "Select all"
|
1754 |
msgstr "全てを選択"
|
1755 |
|
1756 |
+
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1757 |
msgid "Function"
|
1758 |
msgstr "有効化"
|
1759 |
|
1760 |
+
#: vkExUnit_admin.php:16 vkExUnit_admin.php:74
|
1761 |
msgid "Description"
|
1762 |
msgstr "説明"
|
1763 |
|
1764 |
+
#: vkExUnit_admin.php:80
|
1765 |
msgid "Extension Setting"
|
1766 |
msgstr "拡張設定"
|
1767 |
|
1768 |
+
#: vkExUnit_admin.php:83
|
1769 |
#, fuzzy
|
1770 |
msgid "extention contents"
|
1771 |
msgstr "記事に広告を挿入します"
|
1772 |
|
1773 |
+
#: vkExUnit_admin.php:84
|
1774 |
msgid "set extension contents to loop_end hook"
|
1775 |
msgstr "ループ終了時にコンテンツを追加する"
|
1776 |
|
1777 |
+
#: vkExUnit_admin.php:87
|
1778 |
msgid "Plugin setting options"
|
1779 |
msgstr "プラグイン設定オプション"
|
1780 |
|
1781 |
+
#: vkExUnit_admin.php:89
|
1782 |
msgid "Delete myOptions when deactivate me."
|
1783 |
msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
|
1784 |
|
1785 |
+
#, fuzzy
|
1786 |
+
#~ msgid "Color:"
|
1787 |
+
#~ msgstr "色"
|
1788 |
+
|
1789 |
+
#, fuzzy
|
1790 |
+
#~ msgid "Type"
|
1791 |
+
#~ msgstr "タイプ"
|
1792 |
+
|
1793 |
#~ msgid "* If you fill in the blank, contact button does not appear."
|
1794 |
#~ msgstr "未入力の場合はお問い合わせボタンは表示されません。"
|
1795 |
|
2013 |
#~ msgid "PR Block4 title"
|
2014 |
#~ msgstr "PR ブロック4 タイトル"
|
2015 |
|
|
|
|
|
|
|
2016 |
#~ msgid "if checked you will display a sitemap"
|
2017 |
#~ msgstr "チェックを入れるとHTMLサイトマップを表示します。"
|
2018 |
|
languages/vkexunit.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
-
"POT-Creation-Date: 2016-12-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
@@ -23,6 +23,10 @@ msgstr ""
|
|
23 |
msgid "Activated Packages is noting. please activate some package."
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
26 |
#: common_helpers.php:109
|
27 |
#, php-format
|
28 |
msgid "Author: %s"
|
@@ -364,94 +368,94 @@ msgstr ""
|
|
364 |
msgid "Do not set eyecatch image automatic."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
368 |
#: plugins/call_to_action/view.actionbox.php:39
|
369 |
msgid "Edit CTA"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
373 |
msgid "Add new CTA"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
377 |
msgid "New CTA"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
381 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
382 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
383 |
msgid "Call to Action setting"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
387 |
msgid "CTA Contents"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
391 |
msgid "Follow common setting"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
395 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
396 |
msgid "Disable display"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
400 |
msgid "CTA common setting"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
404 |
#: plugins/call_to_action/view.adminsetting.php:22
|
405 |
-
#: plugins/call_to_action/widget.call_to_action.php:
|
406 |
msgid "Show CTA index page"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
410 |
msgid "CTA image"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
414 |
msgid "Add image"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
418 |
msgid "Change image"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
422 |
msgid "Remove image"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
426 |
msgid "CTA image position"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
430 |
msgid "right"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
434 |
msgid "center"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
438 |
msgid "left"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
442 |
msgid "Button text"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
446 |
msgid "Button link url"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
450 |
msgid "Text message"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
454 |
-
#: plugins/call_to_action/widget.call_to_action.php:
|
455 |
msgid "CTA setting"
|
456 |
msgstr ""
|
457 |
|
@@ -479,23 +483,23 @@ msgstr ""
|
|
479 |
msgid "Show index page"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: plugins/call_to_action/widget.call_to_action.php:
|
483 |
msgid "CTA"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: plugins/call_to_action/widget.call_to_action.php:
|
487 |
msgid "Select CTA and display it."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: plugins/call_to_action/widget.call_to_action.php:
|
491 |
msgid "Please select CTA to display."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: plugins/child_page_index.php:40 plugins/other_widget/widget-3pr-area.php:
|
495 |
msgid "Read more"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: plugins/child_page_index.php:
|
499 |
msgid "Display a child page index"
|
500 |
msgstr ""
|
501 |
|
@@ -831,7 +835,7 @@ msgid "Heading title"
|
|
831 |
msgstr ""
|
832 |
|
833 |
#: plugins/other_widget/widget-3pr-area.php:9
|
834 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
835 |
msgid "3PR area"
|
836 |
msgstr ""
|
837 |
|
@@ -839,70 +843,76 @@ msgstr ""
|
|
839 |
msgid "Displays a 3PR area"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
843 |
msgid "3PR area1 title"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
847 |
msgid "3PR area2 title"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
851 |
msgid "3PR area3 title"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
855 |
msgid "3PR area setting"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
859 |
-
#: plugins/other_widget/widget-new-posts.php:
|
860 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
861 |
#: plugins/other_widget/widget-profile.php:40
|
862 |
#: plugins/sns/function_fbPagePlugin.php:79
|
863 |
msgid "Title:"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
867 |
msgid "Select image for PC:"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
871 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
872 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
873 |
#: plugins/other_widget/widget-profile.php:48
|
874 |
msgid "Select image"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
878 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
879 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
880 |
#: plugins/other_widget/widget-profile.php:49
|
881 |
msgid "Clear image"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
885 |
msgid "Select image for Mobile:"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
889 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
890 |
msgid "Summary Text:"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
894 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
895 |
msgid "Link URL:"
|
896 |
msgstr ""
|
897 |
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
#: plugins/other_widget/widget-archives.php:53
|
899 |
#: plugins/other_widget/widget-archives.php:54
|
900 |
msgid "Monthly archives"
|
901 |
msgstr ""
|
902 |
|
903 |
#: plugins/other_widget/widget-archives.php:63
|
904 |
-
#: plugins/other_widget/widget-new-posts.php:
|
905 |
-
#: plugins/other_widget/widget-new-posts.php:
|
906 |
msgid "Title"
|
907 |
msgstr ""
|
908 |
|
@@ -922,6 +932,109 @@ msgstr ""
|
|
922 |
msgid "archive"
|
923 |
msgstr ""
|
924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
#: plugins/other_widget/widget-child-page-list.php:10
|
926 |
msgid "Child Page List"
|
927 |
msgstr ""
|
@@ -932,8 +1045,8 @@ msgid "Display the child pages list from ancestor page."
|
|
932 |
msgstr ""
|
933 |
|
934 |
#: plugins/other_widget/widget-new-posts.php:11
|
935 |
-
#: plugins/other_widget/widget-new-posts.php:
|
936 |
-
#: plugins/other_widget/widget-new-posts.php:
|
937 |
msgid "Recent Posts"
|
938 |
msgstr ""
|
939 |
|
@@ -941,43 +1054,55 @@ msgstr ""
|
|
941 |
msgid "Displays a list of your most recent posts"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: plugins/other_widget/widget-new-posts.php:
|
945 |
msgid "Display Format"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: plugins/other_widget/widget-new-posts.php:
|
949 |
msgid "Thumbnail"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: plugins/other_widget/widget-new-posts.php:
|
953 |
-
#: plugins/other_widget/widget-new-posts.php:
|
954 |
msgid "Date"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: plugins/other_widget/widget-new-posts.php:
|
958 |
#: plugins/other_widget/widget-taxonomies.php:20
|
959 |
#: plugins/other_widget/widget-taxonomies.php:49
|
960 |
#: plugins/other_widget/widget-taxonomies.php:50
|
961 |
msgid "Category"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: plugins/other_widget/widget-new-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
965 |
msgid "Display count"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: plugins/other_widget/widget-new-posts.php:
|
969 |
msgid "Slug for the custom type you want to display"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: plugins/other_widget/widget-new-posts.php:
|
973 |
msgid "taxonomy ID"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: plugins/other_widget/widget-new-posts.php:
|
977 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: plugins/other_widget/widget-new-posts.php:
|
981 |
msgid "if empty this area, I will do not filtering."
|
982 |
msgstr ""
|
983 |
|
@@ -1010,79 +1135,75 @@ msgstr ""
|
|
1010 |
msgid "Displays a circle image or icon font for pr blocks"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1014 |
msgid "Service"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1018 |
msgid "Company"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1022 |
msgid "Recruit"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1026 |
msgid "Contact"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1030 |
msgid "The choice of the number of columns:"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1034 |
msgid "3column"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1038 |
msgid "4column"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1042 |
msgid ""
|
1043 |
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1044 |
"edit page. When restart the edit page, the column input form is increased or "
|
1045 |
"decreased."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1049 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1050 |
msgid "PR Block"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1054 |
msgid "Class name of the icon font you want to use:"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1058 |
-
msgid "To choose your favorite icon, and enter the class."
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: plugins/other_widget/widget-pr-blocks.php:85
|
1062 |
msgid " ex:fa-file-text-o"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1066 |
msgid "Icon color:"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1070 |
msgid "Icon Background:"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1074 |
msgid "Solid color"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1078 |
msgid "No background"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1082 |
msgid "Select image:"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: plugins/other_widget/widget-pr-blocks.php:
|
1086 |
msgid "When you have an image. Image is displayed with priority"
|
1087 |
msgstr ""
|
1088 |
|
@@ -1175,7 +1296,7 @@ msgstr ""
|
|
1175 |
msgid "Blog"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: plugins/pageList_ancestor.php:
|
1179 |
msgid "Display a page list from ancestor"
|
1180 |
msgstr ""
|
1181 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-22 16:02+0900\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
23 |
msgid "Activated Packages is noting. please activate some package."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin_wrapper.php:89
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
#: common_helpers.php:109
|
31 |
#, php-format
|
32 |
msgid "Author: %s"
|
368 |
msgid "Do not set eyecatch image automatic."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: plugins/call_to_action/class.call_to_action.php:46
|
372 |
#: plugins/call_to_action/view.actionbox.php:39
|
373 |
msgid "Edit CTA"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: plugins/call_to_action/class.call_to_action.php:47
|
377 |
msgid "Add new CTA"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: plugins/call_to_action/class.call_to_action.php:48
|
381 |
msgid "New CTA"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: plugins/call_to_action/class.call_to_action.php:75
|
385 |
+
#: plugins/call_to_action/class.call_to_action.php:77
|
386 |
+
#: plugins/call_to_action/class.call_to_action.php:78
|
387 |
msgid "Call to Action setting"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: plugins/call_to_action/class.call_to_action.php:80
|
391 |
msgid "CTA Contents"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: plugins/call_to_action/class.call_to_action.php:89
|
395 |
msgid "Follow common setting"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: plugins/call_to_action/class.call_to_action.php:90
|
399 |
+
#: plugins/call_to_action/class.call_to_action.php:417
|
400 |
msgid "Disable display"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: plugins/call_to_action/class.call_to_action.php:101
|
404 |
msgid "CTA common setting"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: plugins/call_to_action/class.call_to_action.php:102
|
408 |
#: plugins/call_to_action/view.adminsetting.php:22
|
409 |
+
#: plugins/call_to_action/widget.call_to_action.php:61
|
410 |
msgid "Show CTA index page"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: plugins/call_to_action/class.call_to_action.php:167
|
414 |
msgid "CTA image"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: plugins/call_to_action/class.call_to_action.php:173
|
418 |
msgid "Add image"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: plugins/call_to_action/class.call_to_action.php:174
|
422 |
msgid "Change image"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: plugins/call_to_action/class.call_to_action.php:175
|
426 |
msgid "Remove image"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: plugins/call_to_action/class.call_to_action.php:180
|
430 |
msgid "CTA image position"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: plugins/call_to_action/class.call_to_action.php:183
|
434 |
msgid "right"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: plugins/call_to_action/class.call_to_action.php:184
|
438 |
msgid "center"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: plugins/call_to_action/class.call_to_action.php:185
|
442 |
msgid "left"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: plugins/call_to_action/class.call_to_action.php:189
|
446 |
msgid "Button text"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: plugins/call_to_action/class.call_to_action.php:192
|
450 |
msgid "Button link url"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: plugins/call_to_action/class.call_to_action.php:195
|
454 |
msgid "Text message"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: plugins/call_to_action/class.call_to_action.php:201
|
458 |
+
#: plugins/call_to_action/widget.call_to_action.php:62
|
459 |
msgid "CTA setting"
|
460 |
msgstr ""
|
461 |
|
483 |
msgid "Show index page"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: plugins/call_to_action/widget.call_to_action.php:13
|
487 |
msgid "CTA"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: plugins/call_to_action/widget.call_to_action.php:19
|
491 |
msgid "Select CTA and display it."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: plugins/call_to_action/widget.call_to_action.php:51
|
495 |
msgid "Please select CTA to display."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: plugins/child_page_index.php:40 plugins/other_widget/widget-3pr-area.php:182
|
499 |
msgid "Read more"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: plugins/child_page_index.php:91
|
503 |
msgid "Display a child page index"
|
504 |
msgstr ""
|
505 |
|
835 |
msgstr ""
|
836 |
|
837 |
#: plugins/other_widget/widget-3pr-area.php:9
|
838 |
+
#: plugins/other_widget/widget-3pr-area.php:148
|
839 |
msgid "3PR area"
|
840 |
msgstr ""
|
841 |
|
843 |
msgid "Displays a 3PR area"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: plugins/other_widget/widget-3pr-area.php:21
|
847 |
msgid "3PR area1 title"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: plugins/other_widget/widget-3pr-area.php:29
|
851 |
msgid "3PR area2 title"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: plugins/other_widget/widget-3pr-area.php:37
|
855 |
msgid "3PR area3 title"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: plugins/other_widget/widget-3pr-area.php:56
|
859 |
msgid "3PR area setting"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: plugins/other_widget/widget-3pr-area.php:58
|
863 |
+
#: plugins/other_widget/widget-new-posts.php:179
|
864 |
+
#: plugins/other_widget/widget-pr-blocks.php:89
|
865 |
#: plugins/other_widget/widget-profile.php:40
|
866 |
#: plugins/sns/function_fbPagePlugin.php:79
|
867 |
msgid "Title:"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: plugins/other_widget/widget-3pr-area.php:64
|
871 |
msgid "Select image for PC:"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: plugins/other_widget/widget-3pr-area.php:67
|
875 |
+
#: plugins/other_widget/widget-3pr-area.php:84
|
876 |
+
#: plugins/other_widget/widget-pr-blocks.php:123
|
877 |
#: plugins/other_widget/widget-profile.php:48
|
878 |
msgid "Select image"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: plugins/other_widget/widget-3pr-area.php:68
|
882 |
+
#: plugins/other_widget/widget-3pr-area.php:85
|
883 |
+
#: plugins/other_widget/widget-pr-blocks.php:126
|
884 |
#: plugins/other_widget/widget-profile.php:49
|
885 |
msgid "Clear image"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: plugins/other_widget/widget-3pr-area.php:78
|
889 |
msgid "Select image for Mobile:"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: plugins/other_widget/widget-3pr-area.php:94
|
893 |
+
#: plugins/other_widget/widget-pr-blocks.php:137
|
894 |
msgid "Summary Text:"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: plugins/other_widget/widget-3pr-area.php:100
|
898 |
+
#: plugins/other_widget/widget-pr-blocks.php:141
|
899 |
msgid "Link URL:"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: plugins/other_widget/widget-3pr-area.php:103
|
903 |
+
#: plugins/other_widget/widget-banner.php:84
|
904 |
+
#: plugins/other_widget/widget-pr-blocks.php:145
|
905 |
+
msgid "Open link new tab."
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
#: plugins/other_widget/widget-archives.php:53
|
909 |
#: plugins/other_widget/widget-archives.php:54
|
910 |
msgid "Monthly archives"
|
911 |
msgstr ""
|
912 |
|
913 |
#: plugins/other_widget/widget-archives.php:63
|
914 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
915 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
916 |
msgid "Title"
|
917 |
msgstr ""
|
918 |
|
932 |
msgid "archive"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: plugins/other_widget/widget-banner.php:16
|
936 |
+
msgid "Banner"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: plugins/other_widget/widget-banner.php:22
|
940 |
+
msgid ""
|
941 |
+
"You can easily set up a banner simply by registering images and link "
|
942 |
+
"destinations."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: plugins/other_widget/widget-banner.php:80
|
946 |
+
msgid "Set image"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: plugins/other_widget/widget-button.php:29
|
950 |
+
msgid "Button"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: plugins/other_widget/widget-button.php:34
|
954 |
+
msgid "You can set buttons for arbitrary text."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: plugins/other_widget/widget-button.php:92
|
958 |
+
msgid "Main text(Required):"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: plugins/other_widget/widget-button.php:97
|
962 |
+
msgid "Class name of the icon font"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: plugins/other_widget/widget-button.php:98
|
966 |
+
#: plugins/other_widget/widget-pr-blocks.php:96
|
967 |
+
msgid "To choose your favorite icon, and enter the class."
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: plugins/other_widget/widget-button.php:99
|
971 |
+
msgid "Before :"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: plugins/other_widget/widget-button.php:101
|
975 |
+
msgid "After :"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: plugins/other_widget/widget-button.php:103
|
979 |
+
msgid " ex:fa-arrow-circle-o-right"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: plugins/other_widget/widget-button.php:107
|
983 |
+
msgid "Sub text:"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: plugins/other_widget/widget-button.php:111
|
987 |
+
msgid "Link URL(Required):"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: plugins/other_widget/widget-button.php:116
|
991 |
+
msgid "Open with new tab"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: plugins/other_widget/widget-button.php:119
|
995 |
+
msgid "Size"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: plugins/other_widget/widget-button.php:121
|
999 |
+
msgid "Small"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: plugins/other_widget/widget-button.php:122
|
1003 |
+
msgid "Medium"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: plugins/other_widget/widget-button.php:123
|
1007 |
+
msgid "Large"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: plugins/other_widget/widget-button.php:127
|
1011 |
+
msgid "Button color:"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: plugins/other_widget/widget-button.php:156
|
1015 |
+
msgid "Key Color(.primary)"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: plugins/other_widget/widget-button.php:157
|
1019 |
+
msgid "No paint(.default)"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: plugins/other_widget/widget-button.php:158
|
1023 |
+
msgid "Light green(.success)"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: plugins/other_widget/widget-button.php:159
|
1027 |
+
msgid "Light blue(.info)"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: plugins/other_widget/widget-button.php:160
|
1031 |
+
msgid "Orange(.warning)"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: plugins/other_widget/widget-button.php:161
|
1035 |
+
msgid "Red(.danger)"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
#: plugins/other_widget/widget-child-page-list.php:10
|
1039 |
msgid "Child Page List"
|
1040 |
msgstr ""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
#: plugins/other_widget/widget-new-posts.php:11
|
1048 |
+
#: plugins/other_widget/widget-new-posts.php:31
|
1049 |
+
#: plugins/other_widget/widget-new-posts.php:162
|
1050 |
msgid "Recent Posts"
|
1051 |
msgstr ""
|
1052 |
|
1054 |
msgid "Displays a list of your most recent posts"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: plugins/other_widget/widget-new-posts.php:183
|
1058 |
msgid "Display Format"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
1062 |
msgid "Thumbnail"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: plugins/other_widget/widget-new-posts.php:184
|
1066 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
1067 |
msgid "Date"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: plugins/other_widget/widget-new-posts.php:185
|
1071 |
#: plugins/other_widget/widget-taxonomies.php:20
|
1072 |
#: plugins/other_widget/widget-taxonomies.php:49
|
1073 |
#: plugins/other_widget/widget-taxonomies.php:50
|
1074 |
msgid "Category"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: plugins/other_widget/widget-new-posts.php:188
|
1078 |
+
msgid "Order by"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: plugins/other_widget/widget-new-posts.php:189
|
1082 |
+
msgid "Publish date"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: plugins/other_widget/widget-new-posts.php:190
|
1086 |
+
msgid "Modified date"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: plugins/other_widget/widget-new-posts.php:194
|
1090 |
msgid "Display count"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: plugins/other_widget/widget-new-posts.php:199
|
1094 |
msgid "Slug for the custom type you want to display"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: plugins/other_widget/widget-new-posts.php:204
|
1098 |
msgid "taxonomy ID"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: plugins/other_widget/widget-new-posts.php:206
|
1102 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: plugins/other_widget/widget-new-posts.php:208 plugins/sns/sns_admin.php:88
|
1106 |
msgid "if empty this area, I will do not filtering."
|
1107 |
msgstr ""
|
1108 |
|
1135 |
msgid "Displays a circle image or icon font for pr blocks"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: plugins/other_widget/widget-pr-blocks.php:23
|
1139 |
msgid "Service"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: plugins/other_widget/widget-pr-blocks.php:33
|
1143 |
msgid "Company"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: plugins/other_widget/widget-pr-blocks.php:43
|
1147 |
msgid "Recruit"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: plugins/other_widget/widget-pr-blocks.php:53
|
1151 |
msgid "Contact"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: plugins/other_widget/widget-pr-blocks.php:74
|
1155 |
msgid "The choice of the number of columns:"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: plugins/other_widget/widget-pr-blocks.php:76
|
1159 |
msgid "3column"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: plugins/other_widget/widget-pr-blocks.php:77
|
1163 |
msgid "4column"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: plugins/other_widget/widget-pr-blocks.php:79
|
1167 |
msgid ""
|
1168 |
"If you change the number of columns, click to \"Save\" botton and exit the "
|
1169 |
"edit page. When restart the edit page, the column input form is increased or "
|
1170 |
"decreased."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: plugins/other_widget/widget-pr-blocks.php:86
|
1174 |
+
#: plugins/other_widget/widget-pr-blocks.php:225
|
1175 |
msgid "PR Block"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: plugins/other_widget/widget-pr-blocks.php:93
|
1179 |
msgid "Class name of the icon font you want to use:"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: plugins/other_widget/widget-pr-blocks.php:96
|
|
|
|
|
|
|
|
|
1183 |
msgid " ex:fa-file-text-o"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: plugins/other_widget/widget-pr-blocks.php:100
|
1187 |
msgid "Icon color:"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: plugins/other_widget/widget-pr-blocks.php:104
|
1191 |
msgid "Icon Background:"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: plugins/other_widget/widget-pr-blocks.php:108
|
1195 |
msgid "Solid color"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: plugins/other_widget/widget-pr-blocks.php:112
|
1199 |
msgid "No background"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: plugins/other_widget/widget-pr-blocks.php:116
|
1203 |
msgid "Select image:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: plugins/other_widget/widget-pr-blocks.php:127
|
1207 |
msgid "When you have an image. Image is displayed with priority"
|
1208 |
msgstr ""
|
1209 |
|
1296 |
msgid "Blog"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: plugins/pageList_ancestor.php:79
|
1300 |
msgid "Display a page list from ancestor"
|
1301 |
msgstr ""
|
1302 |
|
packages.php
CHANGED
@@ -389,6 +389,15 @@ $required_packages[] = array(
|
|
389 |
'include' => 'tiny_mce_style_tags.php',
|
390 |
);
|
391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
/*-------------------------------------------*/
|
393 |
/* post_type_manager
|
394 |
/*-------------------------------------------*/
|
389 |
'include' => 'tiny_mce_style_tags.php',
|
390 |
);
|
391 |
|
392 |
+
|
393 |
+
$required_packages[] = array(
|
394 |
+
'name' => 'admin_bar',
|
395 |
+
'title' => __( 'Admin bar manu', 'vkExUnit' ),
|
396 |
+
'description' => __( 'Add ExUnit menu to admin bar.', 'vkExUnit' ),
|
397 |
+
'default' => true,
|
398 |
+
'include' => '../plugins_admin/admin_bar.php',
|
399 |
+
);
|
400 |
+
|
401 |
/*-------------------------------------------*/
|
402 |
/* post_type_manager
|
403 |
/*-------------------------------------------*/
|
plugins/other_widget/other_widget.php
CHANGED
@@ -7,6 +7,7 @@ require vkExUnit_get_directory() . '/plugins/other_widget/widget-taxonomies.php'
|
|
7 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-archives.php';
|
8 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-pr-blocks.php';
|
9 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-side-child-page-list.php';
|
|
|
10 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-banner.php';
|
11 |
// require vkExUnit_get_directory() . '/plugins/other_widget/widget-child-page-list.php';
|
12 |
|
7 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-archives.php';
|
8 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-pr-blocks.php';
|
9 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-side-child-page-list.php';
|
10 |
+
require vkExUnit_get_directory() . '/plugins/other_widget/widget-button.php';
|
11 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-banner.php';
|
12 |
// require vkExUnit_get_directory() . '/plugins/other_widget/widget-child-page-list.php';
|
13 |
|
plugins/other_widget/widget-3pr-area.php
CHANGED
@@ -15,7 +15,8 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
15 |
);
|
16 |
}
|
17 |
|
18 |
-
function
|
|
|
19 |
$defaults = array(
|
20 |
'label_1' => __( '3PR area1 title', 'vkExUnit' ),
|
21 |
'media_3pr_image_1' => '',
|
@@ -24,6 +25,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
24 |
'media_3pr_alt_sp_1' => '',
|
25 |
'summary_1' => '',
|
26 |
'linkurl_1' => '',
|
|
|
27 |
'label_2' => __( '3PR area2 title', 'vkExUnit' ),
|
28 |
'media_3pr_image_2' => '',
|
29 |
'media_3pr_alt_2' => '',
|
@@ -31,6 +33,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
31 |
'media_3pr_alt_sp_2' => '',
|
32 |
'summary_2' => '',
|
33 |
'linkurl_2' => '',
|
|
|
34 |
'label_3' => __( '3PR area3 title', 'vkExUnit' ),
|
35 |
'media_3pr_image_3' => '',
|
36 |
'media_3pr_alt_3' => '',
|
@@ -38,8 +41,15 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
38 |
'media_3pr_alt_sp_3' => '',
|
39 |
'summary_3' => '',
|
40 |
'linkurl_3' => '',
|
|
|
41 |
);
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
for ( $i = 1; $i <= 3 ;) { ?>
|
45 |
|
@@ -88,7 +98,9 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
88 |
|
89 |
<?php // リンク先_URL ?>
|
90 |
<p><label for="<?php echo $this->get_field_id( 'linkurl_'.$i ); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
|
91 |
-
<input type="text" id="<?php echo $this->get_field_id( 'linkurl_'.$i ); ?>_title" class="pr_input" name="<?php echo $this->get_field_name( 'linkurl_'.$i ); ?>" value="<?php echo $instance['linkurl_'.$i]; ?>" />
|
|
|
|
|
92 |
</p>
|
93 |
|
94 |
<hr />
|
@@ -112,6 +124,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
112 |
$instance['media_3pr_alt_sp_'.$i] = $new_instance['media_3pr_alt_sp_'.$i];
|
113 |
$instance['summary_'.$i] = $new_instance['summary_'.$i];
|
114 |
$instance['linkurl_'.$i] = $new_instance['linkurl_'.$i];
|
|
|
115 |
$i++;
|
116 |
}
|
117 |
|
@@ -120,6 +133,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
120 |
|
121 |
|
122 |
function widget( $args, $instance ) {
|
|
|
123 |
echo $args['before_widget'];
|
124 |
echo '<div class="veu_3prArea row">';
|
125 |
for ( $i = 1; $i <= 3 ;) {
|
@@ -135,13 +149,14 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
135 |
}
|
136 |
echo '</h1>';
|
137 |
|
138 |
-
if ( isset( $instance['media_3pr_image_'.$i], $instance['media_3pr_image_sp_'.$i] ) ) {
|
139 |
|
140 |
// media_pr は現在不使用 近日削除
|
141 |
echo '<div class="media_pr veu_3prArea_image">';
|
142 |
|
143 |
if ( ! empty( $instance['linkurl_'.$i] ) ) {
|
144 |
-
|
|
|
145 |
}
|
146 |
|
147 |
if ( ! empty( $instance['media_3pr_image_'.$i] ) ) {
|
@@ -158,7 +173,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
158 |
}
|
159 |
|
160 |
echo '</div>';
|
161 |
-
}
|
162 |
|
163 |
if ( ! empty( $instance['summary_'.$i] ) ) {
|
164 |
echo '<p class="summary">'.nl2br( esc_attr( $instance['summary_'.$i] ) ).'</p>';
|
@@ -201,6 +216,9 @@ function style_3PR() {
|
|
201 |
.pr_input{
|
202 |
width: 100%;
|
203 |
}
|
|
|
|
|
|
|
204 |
.pr_input.textarea{
|
205 |
margin-top: -1em;
|
206 |
}
|
15 |
);
|
16 |
}
|
17 |
|
18 |
+
public static function default_options( $args=array() )
|
19 |
+
{
|
20 |
$defaults = array(
|
21 |
'label_1' => __( '3PR area1 title', 'vkExUnit' ),
|
22 |
'media_3pr_image_1' => '',
|
25 |
'media_3pr_alt_sp_1' => '',
|
26 |
'summary_1' => '',
|
27 |
'linkurl_1' => '',
|
28 |
+
'blank_1' => false,
|
29 |
'label_2' => __( '3PR area2 title', 'vkExUnit' ),
|
30 |
'media_3pr_image_2' => '',
|
31 |
'media_3pr_alt_2' => '',
|
33 |
'media_3pr_alt_sp_2' => '',
|
34 |
'summary_2' => '',
|
35 |
'linkurl_2' => '',
|
36 |
+
'blank_2' => false,
|
37 |
'label_3' => __( '3PR area3 title', 'vkExUnit' ),
|
38 |
'media_3pr_image_3' => '',
|
39 |
'media_3pr_alt_3' => '',
|
41 |
'media_3pr_alt_sp_3' => '',
|
42 |
'summary_3' => '',
|
43 |
'linkurl_3' => '',
|
44 |
+
'blank_3' => false,
|
45 |
);
|
46 |
+
return wp_parse_args( (array) $args, $defaults );
|
47 |
+
}
|
48 |
+
|
49 |
+
|
50 |
+
function form( $instance )
|
51 |
+
{
|
52 |
+
$instance = self::default_options( $instance );
|
53 |
|
54 |
for ( $i = 1; $i <= 3 ;) { ?>
|
55 |
|
98 |
|
99 |
<?php // リンク先_URL ?>
|
100 |
<p><label for="<?php echo $this->get_field_id( 'linkurl_'.$i ); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
|
101 |
+
<input type="text" id="<?php echo $this->get_field_id( 'linkurl_'.$i ); ?>_title" class="pr_input text" name="<?php echo $this->get_field_name( 'linkurl_'.$i ); ?>" value="<?php echo $instance['linkurl_'.$i]; ?>" style="margin-bottom:0.5em;" /><br/>
|
102 |
+
<input type="checkbox" id="<?php echo $this->get_field_id( 'blank_'.$i ); ?>" class="pr_input checkbox" name="<?php echo $this->get_field_name( 'blank_'.$i ); ?>" <?php if ($instance['blank_'.$i]) echo 'checked'; ?> value="true" />
|
103 |
+
<label for="<?php echo $this->get_field_id( 'blank_'.$i ); ?>"><?php _e('Open link new tab.', 'vkExUnit'); ?></label>
|
104 |
</p>
|
105 |
|
106 |
<hr />
|
124 |
$instance['media_3pr_alt_sp_'.$i] = $new_instance['media_3pr_alt_sp_'.$i];
|
125 |
$instance['summary_'.$i] = $new_instance['summary_'.$i];
|
126 |
$instance['linkurl_'.$i] = $new_instance['linkurl_'.$i];
|
127 |
+
$instance['blank_'.$i] = (isset($new_instance['blank_'.$i]) && $new_instance['blank_'.$i] == 'true');
|
128 |
$i++;
|
129 |
}
|
130 |
|
133 |
|
134 |
|
135 |
function widget( $args, $instance ) {
|
136 |
+
$instance = self::default_options($instance);
|
137 |
echo $args['before_widget'];
|
138 |
echo '<div class="veu_3prArea row">';
|
139 |
for ( $i = 1; $i <= 3 ;) {
|
149 |
}
|
150 |
echo '</h1>';
|
151 |
|
152 |
+
if ( isset( $instance['media_3pr_image_'.$i], $instance['media_3pr_image_sp_'.$i] ) && $instance['media_3pr_image_'.$i]) {
|
153 |
|
154 |
// media_pr は現在不使用 近日削除
|
155 |
echo '<div class="media_pr veu_3prArea_image">';
|
156 |
|
157 |
if ( ! empty( $instance['linkurl_'.$i] ) ) {
|
158 |
+
$blank = $instance['blank_'.$i]? ' target="_blank" ':'';
|
159 |
+
echo '<a href="'.esc_url( $instance['linkurl_'.$i] ).'" class="veu_3prArea_image_link" '.$blank.'>';
|
160 |
}
|
161 |
|
162 |
if ( ! empty( $instance['media_3pr_image_'.$i] ) ) {
|
173 |
}
|
174 |
|
175 |
echo '</div>';
|
176 |
+
}
|
177 |
|
178 |
if ( ! empty( $instance['summary_'.$i] ) ) {
|
179 |
echo '<p class="summary">'.nl2br( esc_attr( $instance['summary_'.$i] ) ).'</p>';
|
216 |
.pr_input{
|
217 |
width: 100%;
|
218 |
}
|
219 |
+
.pr_input.text{
|
220 |
+
margin-bottom: 0.5em;
|
221 |
+
}
|
222 |
.pr_input.textarea{
|
223 |
margin-top: -1em;
|
224 |
}
|
plugins/other_widget/widget-banner.php
CHANGED
@@ -31,13 +31,14 @@ class WidgetBanner extends \WP_Widget
|
|
31 |
$image = null;
|
32 |
if (is_numeric($instance['id'])) {
|
33 |
$image = wp_get_attachment_image_src( $instance['id'], 'full' );
|
|
|
34 |
}
|
35 |
if (!$image) return;
|
36 |
echo $args['before_widget'];
|
37 |
-
if ($instance['href']) echo '<a href="'. esc_url( $instance['href'] ) .'"
|
38 |
-
echo '<img src="'.$image[0].'" />';
|
39 |
if ($instance['href']) echo '</a>';
|
40 |
-
echo $args['
|
41 |
|
42 |
return;
|
43 |
}
|
@@ -47,6 +48,7 @@ class WidgetBanner extends \WP_Widget
|
|
47 |
{
|
48 |
$instance['id'] = $new_instance['id'];
|
49 |
$instance['href'] = $new_instance['href'];
|
|
|
50 |
$instance['blank'] = (isset($new_instance['blank']) && $new_instance['blank'] == 'true');
|
51 |
return $new_instance;
|
52 |
}
|
@@ -57,7 +59,8 @@ class WidgetBanner extends \WP_Widget
|
|
57 |
$defaults = array(
|
58 |
'id' => Null,
|
59 |
'href' => '',
|
60 |
-
'blank' => false
|
|
|
61 |
);
|
62 |
return wp_parse_args( $instance, $defaults );
|
63 |
}
|
@@ -81,7 +84,8 @@ class WidgetBanner extends \WP_Widget
|
|
81 |
<div class="_form" style="line-height: 2em">
|
82 |
<input type="hidden" class="__id" name="<?php echo $this->get_field_name( 'id' ); ?>" value="<?php echo $instance['id']; ?>" />
|
83 |
<label>URL : <input type="text" name="<?php echo $this->get_field_name( 'href' ); ?>" style="width: 100%" value="<?php echo $instance['href'] ?>" /></label><br/>
|
84 |
-
<label><input type="checkbox" name="<?php echo $this->get_field_name( 'blank' ); ?>" value="true" <?php if ($instance['blank']) echo 'checked'; ?> name="" /> <?php _e('Open link new tab.', 'vkExUnit'); ?></label
|
|
|
85 |
</div>
|
86 |
</div>
|
87 |
<script type="text/javascript">
|
31 |
$image = null;
|
32 |
if (is_numeric($instance['id'])) {
|
33 |
$image = wp_get_attachment_image_src( $instance['id'], 'full' );
|
34 |
+
$alt = ( $instance['alt'] ) ? esc_html($instance['alt']):'';
|
35 |
}
|
36 |
if (!$image) return;
|
37 |
echo $args['before_widget'];
|
38 |
+
if ($instance['href']) echo '<a href="'. esc_url( $instance['href'] ) .'"'. (($instance['blank'])? ' target="_blank"' : '') .' >';
|
39 |
+
echo '<img src="'.$image[0].'" alt="'.$alt.'" />';
|
40 |
if ($instance['href']) echo '</a>';
|
41 |
+
echo $args['after_widget'];
|
42 |
|
43 |
return;
|
44 |
}
|
48 |
{
|
49 |
$instance['id'] = $new_instance['id'];
|
50 |
$instance['href'] = $new_instance['href'];
|
51 |
+
$instance['alt'] = $new_instance['alt'];
|
52 |
$instance['blank'] = (isset($new_instance['blank']) && $new_instance['blank'] == 'true');
|
53 |
return $new_instance;
|
54 |
}
|
59 |
$defaults = array(
|
60 |
'id' => Null,
|
61 |
'href' => '',
|
62 |
+
'blank' => false,
|
63 |
+
'alt' => ''
|
64 |
);
|
65 |
return wp_parse_args( $instance, $defaults );
|
66 |
}
|
84 |
<div class="_form" style="line-height: 2em">
|
85 |
<input type="hidden" class="__id" name="<?php echo $this->get_field_name( 'id' ); ?>" value="<?php echo $instance['id']; ?>" />
|
86 |
<label>URL : <input type="text" name="<?php echo $this->get_field_name( 'href' ); ?>" style="width: 100%" value="<?php echo $instance['href'] ?>" /></label><br/>
|
87 |
+
<label><input type="checkbox" name="<?php echo $this->get_field_name( 'blank' ); ?>" value="true" <?php if ($instance['blank']) echo 'checked'; ?> name="" /> <?php _e('Open link new tab.', 'vkExUnit'); ?></label><br/>
|
88 |
+
<label><?php _e('Alternative text', 'vkExUnit'); ?> : <input type="text" name="<?php echo $this->get_field_name( 'alt' ); ?>" style="width: 100%" value="<?php echo $instance['alt'] ?>" /></label><br/>
|
89 |
</div>
|
90 |
</div>
|
91 |
<script type="text/javascript">
|
plugins/other_widget/widget-button.php
ADDED
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* Button Widget
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
class WP_Widget_Button extends WP_Widget {
|
7 |
+
|
8 |
+
static $button_otherlabels = array(
|
9 |
+
'primary' => 'Key Color(.primary)',
|
10 |
+
'default' => 'No paint(.default)',
|
11 |
+
'success' => 'Light green(.success)',
|
12 |
+
'info' => 'Light blue(.info)',
|
13 |
+
'warning' => 'Orange(.warning)',
|
14 |
+
'danger' => 'Red(.danger)',
|
15 |
+
);
|
16 |
+
|
17 |
+
static $default = array(
|
18 |
+
'maintext' => '',
|
19 |
+
'icon_before' => '',
|
20 |
+
'icon_after' => '',
|
21 |
+
'subtext' => '',
|
22 |
+
'linkurl' => '',
|
23 |
+
'blank' => false,
|
24 |
+
'size' => '',
|
25 |
+
'color' => 'primary'
|
26 |
+
);
|
27 |
+
|
28 |
+
function __construct() {
|
29 |
+
$widget_name = 'VK_' . __( 'Button', 'vkExUnit' );
|
30 |
+
|
31 |
+
parent::__construct(
|
32 |
+
'vkExUnit_button',
|
33 |
+
$widget_name,
|
34 |
+
array( 'description' => __( 'You can set buttons for arbitrary text.' , 'vkExUnit' ) )
|
35 |
+
);
|
36 |
+
}
|
37 |
+
|
38 |
+
|
39 |
+
function widget( $args, $instance )
|
40 |
+
{
|
41 |
+
$options = self::default_options( $instance );
|
42 |
+
|
43 |
+
$classes = array(
|
44 |
+
'btn',
|
45 |
+
'btn-block'
|
46 |
+
);
|
47 |
+
$classes[] = 'btn-' . $options['color'];
|
48 |
+
if (in_array($options['size'], array('sm', 'lg')))
|
49 |
+
$classes[] = 'btn-' . $options['size'];
|
50 |
+
?>
|
51 |
+
<?php echo $args['before_widget']; ?>
|
52 |
+
<?php if ( $options['linkurl'] && $options['maintext'] ): ?>
|
53 |
+
<div class="veu_button">
|
54 |
+
<a type="button" class="<?php echo implode(' ', $classes); ?>" href="<?php echo $options['linkurl']; ?>" <?php if($options['blank']) echo 'target="_blank"'; ?> >
|
55 |
+
<span class="button_mainText">
|
56 |
+
|
57 |
+
<?php
|
58 |
+
if ( isset( $instance[ 'icon_before' ] ) && $instance[ 'icon_before' ] ) {
|
59 |
+
echo '<i class="fa '.esc_attr( $instance[ 'icon_before' ] ).' font_icon"></i>';
|
60 |
+
}
|
61 |
+
|
62 |
+
echo esc_html($options['maintext']);
|
63 |
+
|
64 |
+
if ( isset( $instance[ 'icon_after' ] ) && $instance[ 'icon_after' ] ) {
|
65 |
+
echo '<i class="fa '.esc_attr( $instance[ 'icon_after' ] ).' font_icon"></i>';
|
66 |
+
}
|
67 |
+
?>
|
68 |
+
|
69 |
+
</span>
|
70 |
+
<?php if ($options['subtext']): ?>
|
71 |
+
<span class="veu_caption button_subText"><?php echo htmlspecialchars($options['subtext']); ?></span>
|
72 |
+
<?php endif; ?>
|
73 |
+
</a>
|
74 |
+
</div>
|
75 |
+
<?php endif; ?>
|
76 |
+
<?php echo $args['after_widget']; ?>
|
77 |
+
<?php
|
78 |
+
}
|
79 |
+
|
80 |
+
public static function default_options( $option=array() )
|
81 |
+
{
|
82 |
+
return wp_parse_args( $option, static::$default );
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
function form( $instance ) {
|
87 |
+
$instance = self::default_options($instance);
|
88 |
+
|
89 |
+
?>
|
90 |
+
<div class="warp" style="padding: 1em 0;line-height: 2.5em;">
|
91 |
+
|
92 |
+
<?php _e('Main text(Required):', 'vkExUnit'); ?>
|
93 |
+
<input type="text" id="<?php echo $this->get_field_id('maintext'); ?>" name="<?php echo $this->get_field_name('maintext') ?>" style="width:100%; margin-bottom: 0.5em;" value="<?php echo $instance['maintext']; ?>">
|
94 |
+
|
95 |
+
<?php
|
96 |
+
// icon font class input
|
97 |
+
echo '<p>'.__( 'Class name of the icon font', 'vkExUnit' ).'</label><br/>';
|
98 |
+
echo __( 'To choose your favorite icon, and enter the class.', 'vkExUnit' ).'<br>';
|
99 |
+
echo '<label for="'.$this->get_field_id( 'icon_before' ).'">'.__('Before :','vkExUnit' );
|
100 |
+
echo '<input type="text" id="'.$this->get_field_id( 'icon_before' ).'-font" class="font_class" name="'.$this->get_field_name( 'icon_before' ).'" value="'.$instance[ 'icon_before' ].'" /><br>';
|
101 |
+
echo '<label for="'.$this->get_field_id( 'icon_after' ).'">'.__('After :','vkExUnit' );
|
102 |
+
echo '<input type="text" id="'.$this->get_field_id( 'icon_after' ).'-font" class="font_class" name="'.$this->get_field_name( 'icon_after' ).'" value="'.$instance[ 'icon_after' ].'" />';
|
103 |
+
echo __( ' ex:fa-arrow-circle-o-right', 'vkExUnit' ).'<br>';
|
104 |
+
echo '[ <a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank">Font Awesome Icons</a> ]<br>';
|
105 |
+
echo '</p>';
|
106 |
+
?>
|
107 |
+
<?php _e('Sub text:', 'vkExUnit'); ?>
|
108 |
+
<input type="text" id="<?php echo $this->get_field_id('subtext'); ?>" name="<?php echo $this->get_field_name('subtext') ?>" style="width:100%; margin-bottom: 0.5em;" value="<?php echo $instance['subtext']; ?>">
|
109 |
+
|
110 |
+
<br/>
|
111 |
+
<?php _e('Link URL(Required):', 'vkExUnit'); ?>
|
112 |
+
<input type="text" id="<?php echo $this->get_field_id('linkurl'); ?>" name="<?php echo $this->get_field_name('linkurl') ?>" value="<?php echo $instance['linkurl']; ?>" style="width: 100%" />
|
113 |
+
|
114 |
+
<br/>
|
115 |
+
<input type="checkbox" id="<?php echo $this->get_field_id('blank'); ?>" name="<?php echo $this->get_field_name('blank') ?>" value="true" <?php if($instance['blank']) echo 'checked'; ?> />
|
116 |
+
<label for="<?php echo $this->get_field_id('blank'); ?>"><?php _e('Open with new tab', 'vkExUnit'); ?></label>
|
117 |
+
|
118 |
+
<br/>
|
119 |
+
<label for="<?php echo $this->get_field_id('size'); ?>"><?php _e('Size', 'vkExUnit'); ?> :</label>
|
120 |
+
<select id="<?php echo $this->get_field_id('size'); ?>" name="<?php echo $this->get_field_name('size') ?>">
|
121 |
+
<option value="sm" <?php if($instance['size'] == 'sm') echo 'selected'; ?> ><?php _e('Small', 'vkExUnit'); ?></option>
|
122 |
+
<option value="md" <?php if(!in_array($instance['size'], ['sm', 'lg'])) echo 'selected'; ?> ><?php _e('Medium', 'vkExUnit'); ?></option>
|
123 |
+
<option value="lg" <?php if($instance['size'] == 'lg') echo 'selected'; ?> ><?php _e('Large', 'vkExUnit'); ?></option>
|
124 |
+
</select>
|
125 |
+
|
126 |
+
<br/>
|
127 |
+
<label for="<?php echo $this->get_field_id('size'); ?>"><?php _e('Button color:', 'vkExUnit');?> </label>
|
128 |
+
<select id="<?php echo $this->get_field_id('color'); ?>" name="<?php echo $this->get_field_name('color'); ?>">
|
129 |
+
<?php
|
130 |
+
if ( !isset($instance['color']) || !$instance['color'] ) $instance['color'] = $default['color'];
|
131 |
+
foreach( static::$button_otherlabels as $key => $label ): ?>
|
132 |
+
<option value="<?php echo $key; ?>" <?php if ( $instance['color'] == $key ) echo 'selected'; ?> >
|
133 |
+
<?php _e($label, 'vkExUnit'); ?>
|
134 |
+
</option>
|
135 |
+
<?php endforeach; ?>
|
136 |
+
</select>
|
137 |
+
</div>
|
138 |
+
<?php
|
139 |
+
}
|
140 |
+
|
141 |
+
|
142 |
+
function update( $new_instance, $old_instance ) {
|
143 |
+
$opt = array();
|
144 |
+
$opt['maintext'] = $new_instance['maintext'];
|
145 |
+
$opt['icon_before'] = $new_instance['icon_before'];
|
146 |
+
$opt['icon_after'] = $new_instance['icon_after'];
|
147 |
+
$opt['subtext'] = $new_instance['subtext'];
|
148 |
+
$opt['linkurl'] = $new_instance['linkurl'];
|
149 |
+
$opt['blank'] = (isset($new_instance['blank']) && $new_instance['blank'] == 'true');
|
150 |
+
$opt['size'] = in_array($new_instance['size'], array('sm', 'lg'))? $new_instance['size'] : 'md';
|
151 |
+
$opt['color'] = in_array($new_instance['color'], array_keys(self::$button_otherlabels))? $new_instance['color'] : static::$button_default;
|
152 |
+
return $opt;
|
153 |
+
}
|
154 |
+
|
155 |
+
public static function dummy(){
|
156 |
+
__( 'Key Color(.primary)', 'vkExUnit' );
|
157 |
+
__( 'No paint(.default)', 'vkExUnit' );
|
158 |
+
__( 'Light green(.success)', 'vkExUnit' );
|
159 |
+
__( 'Light blue(.info)', 'vkExUnit' );
|
160 |
+
__( 'Orange(.warning)', 'vkExUnit' );
|
161 |
+
__( 'Red(.danger)', 'vkExUnit' );
|
162 |
+
}
|
163 |
+
}
|
164 |
+
|
165 |
+
add_action('widgets_init', 'vkExUnit_widget_button');
|
166 |
+
function vkExUnit_widget_button(){
|
167 |
+
return register_widget("WP_Widget_Button");
|
168 |
+
}
|
plugins/other_widget/widget-new-posts.php
CHANGED
@@ -18,7 +18,7 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
|
18 |
}
|
19 |
|
20 |
function widget( $args, $instance ) {
|
21 |
-
$instance = static::default_options($instance);
|
22 |
|
23 |
if ( ! isset( $instance['format'] ) ) { $instance['format'] = 0; }
|
24 |
|
@@ -34,14 +34,15 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
|
34 |
|
35 |
$count = ( isset( $instance['count'] ) && $instance['count'] ) ? $instance['count'] : 10;
|
36 |
$post_type = ( isset( $instance['post_type'] ) && $instance['post_type'] ) ? $instance['post_type'] : 'post';
|
37 |
-
$is_modified = ($instance['orderby'] == 'modified');
|
|
|
38 |
|
39 |
if ( $instance['format'] ) { $this->_taxonomy_init( $post_type ); }
|
40 |
|
41 |
$p_args = array(
|
42 |
'post_type' => $post_type,
|
43 |
'posts_per_page' => $count,
|
44 |
-
'orderby' => $
|
45 |
'paged' => 1,
|
46 |
);
|
47 |
|
@@ -156,7 +157,7 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
|
156 |
return '';
|
157 |
}
|
158 |
|
159 |
-
static function default_options( $instance=array() ) {
|
160 |
$defaults = array(
|
161 |
'count' => 10,
|
162 |
'label' => __( 'Recent Posts', 'vkExUnit' ),
|
@@ -171,8 +172,7 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
|
|
171 |
|
172 |
|
173 |
function form( $instance ) {
|
174 |
-
$instance = static::default_options($instance);
|
175 |
-
|
176 |
?>
|
177 |
<br />
|
178 |
<?php //タイトル ?>
|
18 |
}
|
19 |
|
20 |
function widget( $args, $instance ) {
|
21 |
+
// $instance = static::default_options($instance);
|
22 |
|
23 |
if ( ! isset( $instance['format'] ) ) { $instance['format'] = 0; }
|
24 |
|
34 |
|
35 |
$count = ( isset( $instance['count'] ) && $instance['count'] ) ? $instance['count'] : 10;
|
36 |
$post_type = ( isset( $instance['post_type'] ) && $instance['post_type'] ) ? $instance['post_type'] : 'post';
|
37 |
+
$is_modified = ( isset( $instance['orderby'] ) && $instance['orderby'] == 'modified');
|
38 |
+
$orderby = ( isset( $instance['orderby'] ) ) ? $instance['orderby'] : 'date';
|
39 |
|
40 |
if ( $instance['format'] ) { $this->_taxonomy_init( $post_type ); }
|
41 |
|
42 |
$p_args = array(
|
43 |
'post_type' => $post_type,
|
44 |
'posts_per_page' => $count,
|
45 |
+
'orderby' => $orderby,
|
46 |
'paged' => 1,
|
47 |
);
|
48 |
|
157 |
return '';
|
158 |
}
|
159 |
|
160 |
+
static function default_options( $instance = array() ) {
|
161 |
$defaults = array(
|
162 |
'count' => 10,
|
163 |
'label' => __( 'Recent Posts', 'vkExUnit' ),
|
172 |
|
173 |
|
174 |
function form( $instance ) {
|
175 |
+
// $instance = static::default_options($instance);
|
|
|
176 |
?>
|
177 |
<br />
|
178 |
<?php //タイトル ?>
|
plugins/other_widget/widget-pr-blocks.php
CHANGED
@@ -15,7 +15,8 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
15 |
);
|
16 |
}
|
17 |
|
18 |
-
function
|
|
|
19 |
$defaults = array(
|
20 |
'block_count' => 3,
|
21 |
|
@@ -27,6 +28,7 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
27 |
'iconFont_bgType_1' => '',
|
28 |
'summary_1' => '',
|
29 |
'linkurl_1' => '',
|
|
|
30 |
|
31 |
'label_2' => __( 'Company', 'vkExUnit' ),
|
32 |
'media_image_2' => '',
|
@@ -36,6 +38,7 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
36 |
'iconFont_bgType_2' => '',
|
37 |
'summary_2' => '',
|
38 |
'linkurl_2' => '',
|
|
|
39 |
|
40 |
'label_3' => __( 'Recruit', 'vkExUnit' ),
|
41 |
'media_image_3' => '',
|
@@ -45,6 +48,7 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
45 |
'iconFont_bgType_3' => '',
|
46 |
'summary_3' => '',
|
47 |
'linkurl_3' => '',
|
|
|
48 |
|
49 |
'label_4' => __( 'Contact', 'vkExUnit' ),
|
50 |
'media_image_4' => '',
|
@@ -54,8 +58,15 @@ class WP_Widget_vkExUnit_PR_Blocks extends WP_Widget {
|
|
54 |
'iconFont_bgType_4' => '',
|
55 |
'summary_4' => '',
|
56 |
'linkurl_4' => '',
|
|
|
57 |
);
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
?>
|
60 |
|
61 |
<?php // select Block count ?>
|
@@ -128,14 +139,19 @@ for ( $i = 1; $i <= intval( $instance['block_count'] ); ) {
|
|
128 |
|
129 |
// link_URL
|
130 |
echo '<p><label for="'.$this->get_field_id( 'linkurl_'.$i ).'">'.__( 'Link URL:', 'vkExUnit' ).'</label><br/>'.
|
131 |
-
'<input type="text" id="'.$this->get_field_id( 'linkurl_'.$i ).'_title" class="pr_input" name="'.$this->get_field_name( 'linkurl_'.$i ).'" value="'.$instance[ 'linkurl_'.$i ].'"
|
|
|
|
|
|
|
|
|
132 |
|
133 |
$i++;
|
134 |
}
|
135 |
}
|
136 |
|
137 |
|
138 |
-
function update( $new_instance, $old_instance )
|
|
|
139 |
$instance = $old_instance;
|
140 |
|
141 |
$instance['block_count'] = $new_instance['block_count'];
|
@@ -149,29 +165,33 @@ for ( $i = 1; $i <= intval( $instance['block_count'] ); ) {
|
|
149 |
$instance[ 'iconFont_bgType_'.$i ] = $new_instance[ 'iconFont_bgType_'.$i ];
|
150 |
$instance[ 'summary_'.$i ] = $new_instance[ 'summary_'.$i ];
|
151 |
$instance[ 'linkurl_'.$i ] = $new_instance[ 'linkurl_'.$i ];
|
|
|
152 |
$i++;
|
153 |
}
|
154 |
return $instance;
|
155 |
}
|
156 |
|
157 |
|
158 |
-
function widget( $args, $instance )
|
|
|
|
|
159 |
echo $args['before_widget'];
|
160 |
echo PHP_EOL.'<div class="veu_prBlocks prBlocks row">'.PHP_EOL;
|
161 |
|
162 |
$widget_block_count = ( isset( $instance['block_count'] )) ? intval( $instance['block_count'] ) : 3;
|
163 |
-
|
164 |
$col_class = 'col-sm-4';
|
165 |
if( $widget_block_count == 4 ){
|
166 |
$col_class = 'col-sm-3';
|
167 |
-
}
|
168 |
-
|
169 |
// Print widget area
|
170 |
for ( $i = 1; $i <= $widget_block_count; ) {
|
171 |
if ( isset( $instance[ 'label_'.$i ] ) && $instance[ 'label_'.$i ] ) {
|
172 |
echo '<article class="prBlock '.$col_class.'">'.PHP_EOL;
|
173 |
if ( ! empty( $instance[ 'linkurl_'.$i ] ) ) {
|
174 |
-
|
|
|
175 |
}
|
176 |
// icon font display
|
177 |
if ( empty( $instance[ 'media_image_'.$i ] ) && ! empty( $instance[ 'iconFont_class_'.$i ] ) ) {
|
@@ -189,7 +209,7 @@ for ( $i = 1; $i <= intval( $instance['block_count'] ); ) {
|
|
189 |
} else {
|
190 |
$icon_styles = ' style="color:#fff;"';
|
191 |
}
|
192 |
-
|
193 |
echo '<i class="fa '.esc_attr( $instance[ 'iconFont_class_'.$i ] ).' font_icon prBlock_icon"'.$icon_styles.'></i></div>'.PHP_EOL;
|
194 |
|
195 |
// image display
|
15 |
);
|
16 |
}
|
17 |
|
18 |
+
public static function default_options( $args=array() )
|
19 |
+
{
|
20 |
$defaults = array(
|
21 |
'block_count' => 3,
|
22 |
|
28 |
'iconFont_bgType_1' => '',
|
29 |
'summary_1' => '',
|
30 |
'linkurl_1' => '',
|
31 |
+
'blank_1' => '',
|
32 |
|
33 |
'label_2' => __( 'Company', 'vkExUnit' ),
|
34 |
'media_image_2' => '',
|
38 |
'iconFont_bgType_2' => '',
|
39 |
'summary_2' => '',
|
40 |
'linkurl_2' => '',
|
41 |
+
'blank_1' => '',
|
42 |
|
43 |
'label_3' => __( 'Recruit', 'vkExUnit' ),
|
44 |
'media_image_3' => '',
|
48 |
'iconFont_bgType_3' => '',
|
49 |
'summary_3' => '',
|
50 |
'linkurl_3' => '',
|
51 |
+
'blank_1' => '',
|
52 |
|
53 |
'label_4' => __( 'Contact', 'vkExUnit' ),
|
54 |
'media_image_4' => '',
|
58 |
'iconFont_bgType_4' => '',
|
59 |
'summary_4' => '',
|
60 |
'linkurl_4' => '',
|
61 |
+
'blank_1' => '',
|
62 |
);
|
63 |
+
return wp_parse_args( (array) $args, $defaults );
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
+
public function form( $instance )
|
68 |
+
{
|
69 |
+
$instance = self::default_options($instance);
|
70 |
?>
|
71 |
|
72 |
<?php // select Block count ?>
|
139 |
|
140 |
// link_URL
|
141 |
echo '<p><label for="'.$this->get_field_id( 'linkurl_'.$i ).'">'.__( 'Link URL:', 'vkExUnit' ).'</label><br/>'.
|
142 |
+
'<input type="text" id="'.$this->get_field_id( 'linkurl_'.$i ).'_title" class="pr_input" name="'.$this->get_field_name( 'linkurl_'.$i ).'" value="'.$instance[ 'linkurl_'.$i ].'" style="margin-bottom:0.5em" />';
|
143 |
+
$checked = ( isset( $instance['blank_'.$i] ) && $instance['blank_'.$i] ) ? ' checked':'';
|
144 |
+
echo '<input type="checkbox" value="true" id="'.$this->get_field_id('blank_'.$i).'" name="'.$this->get_field_name('blank_'.$i).'"'.$checked.' />';
|
145 |
+
echo '<label for="'.$this->get_field_id('blank_'.$i).'">'.__('Open link new tab.', 'vkExUnit').'</label>';
|
146 |
+
echo '</p>';
|
147 |
|
148 |
$i++;
|
149 |
}
|
150 |
}
|
151 |
|
152 |
|
153 |
+
public function update( $new_instance, $old_instance )
|
154 |
+
{
|
155 |
$instance = $old_instance;
|
156 |
|
157 |
$instance['block_count'] = $new_instance['block_count'];
|
165 |
$instance[ 'iconFont_bgType_'.$i ] = $new_instance[ 'iconFont_bgType_'.$i ];
|
166 |
$instance[ 'summary_'.$i ] = $new_instance[ 'summary_'.$i ];
|
167 |
$instance[ 'linkurl_'.$i ] = $new_instance[ 'linkurl_'.$i ];
|
168 |
+
$instance[ 'blank_'.$i ] = (isset($new_instance[ 'blank_'.$i ]) && $new_instance[ 'blank_'.$i ] == 'true');
|
169 |
$i++;
|
170 |
}
|
171 |
return $instance;
|
172 |
}
|
173 |
|
174 |
|
175 |
+
public function widget( $args, $instance )
|
176 |
+
{
|
177 |
+
$instance = self::default_options($instance);
|
178 |
echo $args['before_widget'];
|
179 |
echo PHP_EOL.'<div class="veu_prBlocks prBlocks row">'.PHP_EOL;
|
180 |
|
181 |
$widget_block_count = ( isset( $instance['block_count'] )) ? intval( $instance['block_count'] ) : 3;
|
182 |
+
|
183 |
$col_class = 'col-sm-4';
|
184 |
if( $widget_block_count == 4 ){
|
185 |
$col_class = 'col-sm-3';
|
186 |
+
}
|
187 |
+
|
188 |
// Print widget area
|
189 |
for ( $i = 1; $i <= $widget_block_count; ) {
|
190 |
if ( isset( $instance[ 'label_'.$i ] ) && $instance[ 'label_'.$i ] ) {
|
191 |
echo '<article class="prBlock '.$col_class.'">'.PHP_EOL;
|
192 |
if ( ! empty( $instance[ 'linkurl_'.$i ] ) ) {
|
193 |
+
$blank = ( isset( $instance['blank_'.$i] ) && $instance['blank_'.$i] ) ? 'target="_blank"':'';
|
194 |
+
echo '<a href="'.esc_url( $instance[ 'linkurl_'.$i ] ).'" '.$blank.'>'.PHP_EOL ;
|
195 |
}
|
196 |
// icon font display
|
197 |
if ( empty( $instance[ 'media_image_'.$i ] ) && ! empty( $instance[ 'iconFont_class_'.$i ] ) ) {
|
209 |
} else {
|
210 |
$icon_styles = ' style="color:#fff;"';
|
211 |
}
|
212 |
+
|
213 |
echo '<i class="fa '.esc_attr( $instance[ 'iconFont_class_'.$i ] ).' font_icon prBlock_icon"'.$icon_styles.'></i></div>'.PHP_EOL;
|
214 |
|
215 |
// image display
|
plugins_admin/admin_bar.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* VkExUnit
|
4 |
-
*
|
5 |
*
|
6 |
* @package VkExUnit
|
7 |
* @author shoji imamura<imamura@vektor-inc.co.jp>
|
@@ -9,63 +9,34 @@
|
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
add_action( 'admin_bar_menu', 'vkExUnit_adminbar_disable', 999 );
|
13 |
-
function vkExUnit_adminbar_disable( $wp_admin_bar ) {
|
14 |
-
if ( is_user_logged_in() && ! is_admin() && current_user_can( 'administrator' ) || current_user_can( 'editor' ) ) {
|
15 |
-
$args = array(
|
16 |
-
'id' => 'veu_disable_admin_edit',
|
17 |
-
'title' => __( 'Edit Guide', 'vkExUnit' ).' : <span class="_show">SHOW</span><span class="_hide">HIDE</span>',
|
18 |
-
'meta' => array( 'class' => 'veu_admin_bar_disable_button' , 'onClick' => 'javascript:void(0);' ),
|
19 |
-
);
|
20 |
-
$wp_admin_bar->add_node( $args );
|
21 |
-
}
|
22 |
-
}
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
add_action( 'wp_head','vkExUnit_adminbar_edit_header' );
|
27 |
-
function vkExUnit_adminbar_edit_header() {
|
28 |
-
if ( is_user_logged_in() && ! is_admin() && current_user_can( 'administrator' ) || current_user_can( 'editor' ) ) { ?>
|
29 |
-
<style>#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item { background-color: #0085C8; cursor: pointer; }
|
30 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item ._hide { display: none; }
|
31 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active { background-color: #17A686; color: #555; }
|
32 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active ._show { display: none; }
|
33 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active ._hide { display: inline; }
|
34 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item:hover { background-color: #17A686; color: #555; }
|
35 |
-
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active:hover { background-color: #0085C8; color: #fff; }</style>
|
36 |
-
<?php }
|
37 |
-
}
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
add_action( 'admin_bar_menu', 'vkExUnit_adminbar_link', 40 );
|
42 |
function vkExUnit_adminbar_link( $wp_admin_bar ) {
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
+
* VkExUnit admin_bar.php
|
4 |
+
* admin_bar button.
|
5 |
*
|
6 |
* @package VkExUnit
|
7 |
* @author shoji imamura<imamura@vektor-inc.co.jp>
|
9 |
*/
|
10 |
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
add_action( 'admin_bar_menu', 'vkExUnit_adminbar_link', 40 );
|
13 |
function vkExUnit_adminbar_link( $wp_admin_bar ) {
|
14 |
|
15 |
+
if ( ! current_user_can( 'activate_plugins' ) ) { return; }
|
16 |
+
|
17 |
+
$args = array(
|
18 |
+
'id' => 'veu_adminlink',
|
19 |
+
'title' => vkExUnit_get_little_short_name(),
|
20 |
+
'href' => admin_url() . 'admin.php?page=vkExUnit_main_setting',
|
21 |
+
'meta' => array(),
|
22 |
+
);
|
23 |
+
$wp_admin_bar->add_node( $args );
|
24 |
+
$wp_admin_bar->add_node(
|
25 |
+
array(
|
26 |
+
'parent' => 'veu_adminlink',
|
27 |
+
'id' => 'veu_adminlink_active',
|
28 |
+
'title' => __( 'Active Setting','vkExUnit' ),
|
29 |
+
'href' => admin_url() . 'admin.php?page=vkExUnit_setting_page',
|
30 |
+
)
|
31 |
+
);
|
32 |
+
$wp_admin_bar->add_node(
|
33 |
+
array(
|
34 |
+
'parent' => 'veu_adminlink',
|
35 |
+
'id' => 'veu_adminlink_main',
|
36 |
+
'title' => __( 'Main Setting', 'vkExUnit' ),
|
37 |
+
'href' => admin_url() . 'admin.php?page=vkExUnit_main_setting',
|
38 |
+
)
|
39 |
+
);
|
40 |
+
|
41 |
+
do_action( 'vkExUnit_action_adminbar', $wp_admin_bar );
|
42 |
}
|
plugins_admin/disable_guide.php
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* VkExUnit disable_guide.php
|
4 |
+
* hide admin button.
|
5 |
+
*
|
6 |
+
* @package VkExUnit
|
7 |
+
* @author shoji imamura<imamura@vektor-inc.co.jp>
|
8 |
+
* @since 28/Aug/2015
|
9 |
+
*/
|
10 |
+
|
11 |
+
|
12 |
+
add_action( 'admin_bar_menu', 'vkExUnit_adminbar_disable', 999 );
|
13 |
+
function vkExUnit_adminbar_disable( $wp_admin_bar ) {
|
14 |
+
if ( is_user_logged_in() && ! is_admin() && current_user_can( 'administrator' ) || current_user_can( 'editor' ) ) {
|
15 |
+
$args = array(
|
16 |
+
'id' => 'veu_disable_admin_edit',
|
17 |
+
'title' => __( 'Edit Guide', 'vkExUnit' ).' : <span class="_show">SHOW</span><span class="_hide">HIDE</span>',
|
18 |
+
'meta' => array( 'class' => 'veu_admin_bar_disable_button' , 'onClick' => 'javascript:void(0);' ),
|
19 |
+
);
|
20 |
+
$wp_admin_bar->add_node( $args );
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
add_action( 'wp_head','vkExUnit_adminbar_edit_header' );
|
27 |
+
function vkExUnit_adminbar_edit_header() {
|
28 |
+
if ( is_user_logged_in() && ! is_admin() && current_user_can( 'administrator' ) || current_user_can( 'editor' ) ) { ?>
|
29 |
+
<style>#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item { background-color: #0085C8; cursor: pointer; }
|
30 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item ._hide { display: none; }
|
31 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active { background-color: #17A686; color: #555; }
|
32 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active ._show { display: none; }
|
33 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active ._hide { display: inline; }
|
34 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item:hover { background-color: #17A686; color: #555; }
|
35 |
+
#wpadminbar #wp-admin-bar-veu_disable_admin_edit .ab-item.active:hover { background-color: #0085C8; color: #fff; }</style>
|
36 |
+
<?php }
|
37 |
+
}
|
plugins_admin/vk-admin/_scss/vk_admin.scss
CHANGED
@@ -72,4 +72,7 @@
|
|
72 |
}
|
73 |
}
|
74 |
}
|
|
|
|
|
|
|
75 |
}
|
72 |
}
|
73 |
}
|
74 |
}
|
75 |
+
// DO NOT REMOVE THIS
|
76 |
+
// THIS IS IN USED
|
77 |
+
&.debug_mode tr.dev_object{ display: table-row; }
|
78 |
}
|
plugins_admin/vk-admin/css/vk_admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.wp-core-ui .button-block{display:block;width:100%;text-align:center}.logo_exUnit{display:block;overflow:hidden;text-align:center;margin-bottom:10px;border-bottom:1px solid #ccc}.logo_exUnit img{width:150px;max-width:100%}.vk_option_nav{display:block !important;overflow:hidden}.vk_option_nav ul{display:block;overflow:hidden;margin:0;padding:0}.vk_option_nav ul li{display:block;border:1px solid #ccc;margin-bottom:0;border-bottom:none;background-color:#fff}.vk_option_nav ul li:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.vk_option_nav ul li:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom:1px solid #ccc}.vk_option_nav ul li:hover{background-color:#666}.vk_option_nav ul li a{display:block;overflow:hidden;padding:0.5em;text-decoration:none;color:#666;font-size:12px}.vk_option_nav ul li:hover a{color:#fff;border:none}.vk_option_nav ul li.current{background-color:#333;color:#fff}.vk_option_nav ul li.current a{color:#fff}.vk_admin_page{padding-top:1em}.vk_admin_page h2.page_title{font-size:16px;text-align:center;line-height:140%;margin:10px 0 20px}.vk_admin_page h3{background-color:#333;color:#fff;padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000}.vk_admin_page input[type=text]{width:50%}.vk_admin_page select{width:50%}.vk_admin_page dl dt{font-weight:bold;margin-bottom:5px}.vk_admin_page dl dd{margin-left:0}.vk_admin_page tr.dev_object{display:none}.vk_admin_page .pageLogo{text-align:center}.vk_admin_page .pageLogo img{max-width:150px;margin:0 auto}.vk_admin_page .adminMain{display:block;overflow:hidden;width:74%;float:left}.vk_admin_page .adminMain #adminContent_sub{display:block;overflow:hidden;width:23%;float:left;padding-bottom:10px}.vk_admin_page .adminMain #adminContent_main{display:block;overflow:hidden;width:74%;float:right}.vk_admin_page .adminMain #adminContent_main .form_horizontal_item{margin-right:1em}.vk_admin_page .adminMain.column_2 #adminContent_main{width:100%}.vk_admin_page .adminSub{display:block;overflow:hidden;width:24%;float:right;padding-bottom:10px}.vk_admin_page .adminSub .infoBox{display:block;overflow:hidden;padding:1em;margin-right:1em;background-color:#fff}.vk_admin_page .adminSub .adminBnr_section{display:block;overflow:hidden;margin-right:1em;margin-top:1em}.vk_admin_page .adminSub .adminBnr_section a{display:block}.vk_admin_page .adminSub .adminBnr_section a.admin_banner{margin-bottom:1em;border:1px solid #ccc;box-shadow:inset 0px 0px 0px 1px #fff}.vk_admin_page .adminSub .adminBnr_section img{max-width:100%;height:auto;display:block}.vk_admin_page .adminSub .adminBnr_section img:hover{opacity:0.7}.vk_admin_page .adminSub .adminBnr_section .vektor_logo{margin-top:1em}.vk_admin_page .adminSub .adminBnr_section .vektor_logo img{width:150px;float:right}.vk_admin_page .adminSub .adminSub_title{background-color:#ccc;width:auto;padding:5px 10px;border-radius:3px;margin-top:0;margin-bottom:15px}@media (max-width: 991px){.vk_admin_page .adminSub .adminMain table.form-table th,.vk_admin_page .adminSub .adminMain table.form-table td{display:block}.vk_admin_page .adminSub .adminMain table.form-table th{background-color:#ccc;width:auto;padding:10px;border-radius:3px}}
|
1 |
+
.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.wp-core-ui .button-block{display:block;width:100%;text-align:center}.logo_exUnit{display:block;overflow:hidden;text-align:center;margin-bottom:10px;border-bottom:1px solid #ccc}.logo_exUnit img{width:150px;max-width:100%}.vk_option_nav{display:block !important;overflow:hidden}.vk_option_nav ul{display:block;overflow:hidden;margin:0;padding:0}.vk_option_nav ul li{display:block;border:1px solid #ccc;margin-bottom:0;border-bottom:none;background-color:#fff}.vk_option_nav ul li:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.vk_option_nav ul li:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom:1px solid #ccc}.vk_option_nav ul li:hover{background-color:#666}.vk_option_nav ul li a{display:block;overflow:hidden;padding:0.5em;text-decoration:none;color:#666;font-size:12px}.vk_option_nav ul li:hover a{color:#fff;border:none}.vk_option_nav ul li.current{background-color:#333;color:#fff}.vk_option_nav ul li.current a{color:#fff}.vk_admin_page{padding-top:1em}.vk_admin_page h2.page_title{font-size:16px;text-align:center;line-height:140%;margin:10px 0 20px}.vk_admin_page h3{background-color:#333;color:#fff;padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000}.vk_admin_page input[type=text]{width:50%}.vk_admin_page select{width:50%}.vk_admin_page dl dt{font-weight:bold;margin-bottom:5px}.vk_admin_page dl dd{margin-left:0}.vk_admin_page tr.dev_object{display:none}.vk_admin_page .pageLogo{text-align:center}.vk_admin_page .pageLogo img{max-width:150px;margin:0 auto}.vk_admin_page .adminMain{display:block;overflow:hidden;width:74%;float:left}.vk_admin_page .adminMain #adminContent_sub{display:block;overflow:hidden;width:23%;float:left;padding-bottom:10px}.vk_admin_page .adminMain #adminContent_main{display:block;overflow:hidden;width:74%;float:right}.vk_admin_page .adminMain #adminContent_main .form_horizontal_item{margin-right:1em}.vk_admin_page .adminMain.column_2 #adminContent_main{width:100%}.vk_admin_page .adminSub{display:block;overflow:hidden;width:24%;float:right;padding-bottom:10px}.vk_admin_page .adminSub .infoBox{display:block;overflow:hidden;padding:1em;margin-right:1em;background-color:#fff}.vk_admin_page .adminSub .adminBnr_section{display:block;overflow:hidden;margin-right:1em;margin-top:1em}.vk_admin_page .adminSub .adminBnr_section a{display:block}.vk_admin_page .adminSub .adminBnr_section a.admin_banner{margin-bottom:1em;border:1px solid #ccc;box-shadow:inset 0px 0px 0px 1px #fff}.vk_admin_page .adminSub .adminBnr_section img{max-width:100%;height:auto;display:block}.vk_admin_page .adminSub .adminBnr_section img:hover{opacity:0.7}.vk_admin_page .adminSub .adminBnr_section .vektor_logo{margin-top:1em}.vk_admin_page .adminSub .adminBnr_section .vektor_logo img{width:150px;float:right}.vk_admin_page .adminSub .adminSub_title{background-color:#ccc;width:auto;padding:5px 10px;border-radius:3px;margin-top:0;margin-bottom:15px}@media (max-width: 991px){.vk_admin_page .adminSub .adminMain table.form-table th,.vk_admin_page .adminSub .adminMain table.form-table td{display:block}.vk_admin_page .adminSub .adminMain table.form-table th{background-color:#ccc;width:auto;padding:10px;border-radius:3px}}.vk_admin_page.debug_mode tr.dev_object{display:table-row}
|
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: 4.2
|
6 |
Tested up to: 4.7.0
|
7 |
-
Stable tag: 5.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -26,8 +26,10 @@ Many features can be stopped individually.
|
|
26 |
* PR Blocks - display the PR Blocks.
|
27 |
* Categories/tags list - Displays a categories, tags or format list.
|
28 |
* Archive list - Displays a list of archives. You can choose the post type and also to display archives by month or by year.
|
29 |
-
* Facebook Page Plugin widget
|
30 |
-
*
|
|
|
|
|
31 |
|
32 |
[ Social media ]
|
33 |
|
@@ -72,6 +74,10 @@ e.g.
|
|
72 |
|
73 |
== Changelog ==
|
74 |
|
|
|
|
|
|
|
|
|
75 |
= 5.0.0 =
|
76 |
* [ Add Function ][ New Post Widget ] The display in the update date order is now available.
|
77 |
* [ Add Function ][ Banner Widget ] Banner widget is now available!!
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.7.0
|
7 |
+
Stable tag: 5.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
26 |
* PR Blocks - display the PR Blocks.
|
27 |
* Categories/tags list - Displays a categories, tags or format list.
|
28 |
* Archive list - Displays a list of archives. You can choose the post type and also to display archives by month or by year.
|
29 |
+
* Facebook Page Plugin widget
|
30 |
+
* Image Banner widget
|
31 |
+
* Text Button widget
|
32 |
+
* Contact Button widget
|
33 |
|
34 |
[ Social media ]
|
35 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 5.1.0 =
|
78 |
+
* [ Add Function ][ Button Widget ] Button widget is now available!!
|
79 |
+
* [ Bug fix ][ Page Widget ] New Posts Widget PHP error fix
|
80 |
+
|
81 |
= 5.0.0 =
|
82 |
* [ Add Function ][ New Post Widget ] The display in the update date order is now available.
|
83 |
* [ Add Function ][ Banner Widget ] Banner widget is now available!!
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 5.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vkExUnit
|
9 |
* Domain Path: /languages
|
@@ -96,7 +96,7 @@ require vkExUnit_get_directory() . '/common_helpers.php';
|
|
96 |
|
97 |
require vkExUnit_get_directory() . '/plugins_admin/dashboard_info_widget.php';
|
98 |
|
99 |
-
require vkExUnit_get_directory() . '/plugins_admin/
|
100 |
|
101 |
require vkExUnit_get_directory() . '/plugins/footer_copyright_change.php';
|
102 |
require vkExUnit_get_directory() . '/plugins/page_custom_field.php';
|
@@ -201,6 +201,7 @@ function ltg_charm_1_2_fix_function(){
|
|
201 |
if ( $skin == 'charm' && $theme == 'Lightning' ){
|
202 |
|
203 |
$charm_custom_css = "
|
|
|
204 |
.mainSection .veu_postList.pt_0 .postList.postList_miniThumb { padding:0;margin-left:0;margin-right:0; }
|
205 |
.mainSection .veu_postList.pt_0 .postList.postList_miniThumb postList_body { display:table-cell; }
|
206 |
@media (max-width: 991px) {
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 5.1.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vkExUnit
|
9 |
* Domain Path: /languages
|
96 |
|
97 |
require vkExUnit_get_directory() . '/plugins_admin/dashboard_info_widget.php';
|
98 |
|
99 |
+
require vkExUnit_get_directory() . '/plugins_admin/disable_guide.php';
|
100 |
|
101 |
require vkExUnit_get_directory() . '/plugins/footer_copyright_change.php';
|
102 |
require vkExUnit_get_directory() . '/plugins/page_custom_field.php';
|
201 |
if ( $skin == 'charm' && $theme == 'Lightning' ){
|
202 |
|
203 |
$charm_custom_css = "
|
204 |
+
.veu_postList .postList .postList_item:first-child { border-top:none; }
|
205 |
.mainSection .veu_postList.pt_0 .postList.postList_miniThumb { padding:0;margin-left:0;margin-right:0; }
|
206 |
.mainSection .veu_postList.pt_0 .postList.postList_miniThumb postList_body { display:table-cell; }
|
207 |
@media (max-width: 991px) {
|