VK All in One Expansion Unit - Version 0.1.2.0

Version Description

  • Add Japanese transration
Download this release

Release Info

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

Code changes from version 0.1.1.1 to 0.1.2.0

_scss/style.scss CHANGED
@@ -127,6 +127,8 @@
127
  font-size: 20px;
128
  &:hover{
129
  opacity: 0.8;
 
 
130
  }
131
  }
132
  .fa{
127
  font-size: 20px;
128
  &:hover{
129
  opacity: 0.8;
130
+ color: #fff;
131
+ text-decoration: none;
132
  }
133
  }
134
  .fa{
_scss/vkexunit_admin.scss ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "utf-8";
2
+ @import "compass";
3
+
4
+ .optionNav { display:block !important; overflow:hidden; }
5
+ .optionNav ul { display:block; overflow:hidden;margin:0;padding:0 5px; }
6
+ .optionNav ul li { display: block; float:left;border-radius: 3px 3px 0 0;border:1px solid #ccc; border-bottom:none;margin-right:2px; margin-bottom:0;}
7
+ .optionNav ul li:hover { background-color: #666; }
8
+ .optionNav ul li a { display:block; overflow:hidden;padding:0.5em; text-decoration: none;color:#666;font-size:12px; }
9
+ .optionNav ul li:hover a { color: #fff;border:none; }
10
+ .optionNav ul li.current { background-color: #333;color:#fff;
11
+ a { color:#fff; }
12
+ }
13
+
14
+ .vkExUnit_admin_page.wrap h3 { background-color:#333; color:#fff; padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;}
admin_wrapper.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function vkExUnit_add_main_setting() {
4
+ $capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
5
+ $custom_page = add_submenu_page(
6
+ 'vkExUnit_setting_page', // parent
7
+ __('Main setting','vkExUnit'), // Name of page
8
+ __('Main setting','vkExUnit'), // Label in menu
9
+ // $capability_required,
10
+ 'activate_plugins', // Capability
11
+ 'vkExUnit_main_setting', // ユニークなこのサブメニューページの識別子
12
+ 'vkExUnit_render_main_config' // メニューページのコンテンツを出力する関数
13
+ );
14
+ if ( ! $custom_page ) return;
15
+ }
16
+ add_action( 'admin_menu', 'vkExUnit_add_main_setting' );
17
+
18
+
19
+
20
+ function vkExUnit_render_main_config(){
21
+
22
+ vkExUnit_save_main_config();
23
+ ?>
24
+ <div class="wrap vkExUnit_admin_page">
25
+ <form method="post" action="">
26
+
27
+ <?php
28
+ wp_nonce_field( 'standing_on_the_shoulder_of_giants', '_nonce_vkExUnit' );
29
+
30
+ global $vkExUnit_options;
31
+ foreach($vkExUnit_options as $vkoption){
32
+ if(!isset($vkoption['render_page'])){ continue; }
33
+
34
+ echo '<section id="'. $vkoption['option_name'] .'" class="sectionBox">';
35
+
36
+ vkExUnit_render_menu($vkExUnit_options, $vkoption['tab_label']);
37
+
38
+ if( is_array($vkoption['render_page'])){
39
+ $vkoption['render_page'][0]->$vkoption['render_page'][1]();
40
+ }else{
41
+ $vkoption['render_page']();
42
+ }
43
+ echo '</section>';
44
+ }
45
+ ?>
46
+
47
+ <?php submit_button(); ?>
48
+ </form>
49
+ </div>
50
+ <?php
51
+ }
52
+
53
+
54
+
55
+ function vkExUnit_register_setting( $tab_label="tab_label", $option_name, $sanitize_callback, $render_page ){
56
+ global $vkExUnit_options;
57
+ $vkExUnit_options[] =
58
+ array(
59
+ 'option_name'=>$option_name,
60
+ 'callback'=>$sanitize_callback,
61
+ 'tab_label'=>$tab_label,
62
+ 'render_page'=>$render_page
63
+ );
64
+ }
65
+
66
+
67
+ function vkExUnit_main_config_sanitaize($post){
68
+ global $vkExUnit_options;
69
+
70
+ if(!empty($vkExUnit_options)){
71
+ foreach($vkExUnit_options as $opt){
72
+ if(!function_exists($opt['callback'])){ continue; }
73
+
74
+ $before = (isset($post[$opt['option_name']])? $post[$opt['option_name']]: null);
75
+ $option = $opt['callback']($before);
76
+ update_option($opt['option_name'], $option);
77
+ }
78
+ }
79
+ }
80
+
81
+
82
+ function vkExUnit_save_main_config(){
83
+
84
+ // nonce
85
+ if(!isset($_POST['_nonce_vkExUnit'])){
86
+ return ;
87
+ }
88
+ if(!wp_verify_nonce($_POST['_nonce_vkExUnit'], 'standing_on_the_shoulder_of_giants')){
89
+ return ;
90
+ }
91
+
92
+ vkExUnit_main_config_sanitaize($_POST);
93
+ }
94
+
95
+ function vkExUnit_render_menu( $sections, $current_tab=null ){
96
+ echo '<div class="optionNav"><ul>';
97
+ foreach($sections as $section){
98
+ $tab_class = ( $section['tab_label'] == $current_tab )? 'current' : '';
99
+
100
+ echo '<li id="btn_"'. $section['option_name']. '" class="'.$tab_class.'"><a href="#'. $section['option_name'] .'">';
101
+ echo $section['tab_label'];
102
+ echo '</a></li>';
103
+ }
104
+ echo "</ul></div>";
105
+ }
common_init.php CHANGED
@@ -26,6 +26,7 @@ function vkExUnit_get_common_options() {
26
  function vkExUnit_get_common_options_default() {
27
  $default_options = array(
28
  'active_bootstrap' => false,
 
29
  'active_metaDescription' => true,
30
  'active_sns' => true,
31
  'active_ga' => true,
@@ -44,6 +45,7 @@ function vkExUnit_get_common_options_default() {
44
  function vkExUnit_common_options_validate( $input ) {
45
  $output = $defaults = vkExUnit_get_common_options_default();
46
  $output['active_bootstrap'] = (isset($input['active_bootstrap'])) ? true:false;
 
47
  $output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
48
  $output['active_sns'] = (isset($input['active_sns'])) ? true:false;
49
  $output['active_ga'] = (isset($input['active_ga'])) ? true:false;
26
  function vkExUnit_get_common_options_default() {
27
  $default_options = array(
28
  'active_bootstrap' => false,
29
+ 'active_fontawesome' => false,
30
  'active_metaDescription' => true,
31
  'active_sns' => true,
32
  'active_ga' => true,
45
  function vkExUnit_common_options_validate( $input ) {
46
  $output = $defaults = vkExUnit_get_common_options_default();
47
  $output['active_bootstrap'] = (isset($input['active_bootstrap'])) ? true:false;
48
+ $output['active_fontawesome'] = (isset($input['active_fontawesome'])) ? true:false;
49
  $output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
50
  $output['active_sns'] = (isset($input['active_sns'])) ? true:false;
51
  $output['active_ga'] = (isset($input['active_ga'])) ? true:false;
css/style.css CHANGED
@@ -78,7 +78,7 @@
78
  .sns-btns { margin: 0; padding: 0; width: 100%; }
79
  .sns-btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
80
  .sns-btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
81
- .sns-btns a:hover { opacity: 0.8; }
82
  .sns-btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
83
  .sns-btns .facebook-btn a { background: #3b5998; }
84
  .sns-btns .twitter-btn a { background: #55acee; }
78
  .sns-btns { margin: 0; padding: 0; width: 100%; }
79
  .sns-btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
80
  .sns-btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
81
+ .sns-btns a:hover { opacity: 0.8; color: #fff; text-decoration: none; }
82
  .sns-btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
83
  .sns-btns .facebook-btn a { background: #3b5998; }
84
  .sns-btns .twitter-btn a { background: #55acee; }
css/style_in_bs.css CHANGED
@@ -2619,7 +2619,7 @@ button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background
2619
  .sns-btns { margin: 0; padding: 0; width: 100%; }
2620
  .sns-btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
2621
  .sns-btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
2622
- .sns-btns a:hover { opacity: 0.8; }
2623
  .sns-btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
2624
  .sns-btns .facebook-btn a { background: #3b5998; }
2625
  .sns-btns .twitter-btn a { background: #55acee; }
2619
  .sns-btns { margin: 0; padding: 0; width: 100%; }
2620
  .sns-btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
2621
  .sns-btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
2622
+ .sns-btns a:hover { opacity: 0.8; color: #fff; text-decoration: none; }
2623
  .sns-btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
2624
  .sns-btns .facebook-btn a { background: #3b5998; }
2625
  .sns-btns .twitter-btn a { background: #55acee; }
css/vkexunit_admin.css ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .optionNav { display: block !important; overflow: hidden; }
2
+
3
+ .optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
4
+
5
+ .optionNav ul li { display: block; float: left; border-radius: 3px 3px 0 0; border: 1px solid #ccc; border-bottom: none; margin-right: 2px; margin-bottom: 0; }
6
+
7
+ .optionNav ul li:hover { background-color: #666; }
8
+
9
+ .optionNav ul li a { display: block; overflow: hidden; padding: 0.5em; text-decoration: none; color: #666; font-size: 12px; }
10
+
11
+ .optionNav ul li:hover a { color: #fff; border: none; }
12
+
13
+ .optionNav ul li.current { background-color: #333; color: #fff; }
14
+ .optionNav ul li.current a { color: #fff; }
15
+
16
+ .vkExUnit_admin_page.wrap h3 { background-color: #333; color: #fff; padding: 10px 15px; font-size: 150%; margin-top: 0; border-left: 5px solid #e50000; }
gulpfile.js ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var gulp = require('gulp');
2
+
3
+ var cssmin = require('gulp-cssmin');
4
+ // ファイルリネーム(.min作成用)
5
+ var rename = require('gulp-rename');
6
+ // ファイル結合
7
+ var concat = require('gulp-concat');
8
+ // js最小化
9
+ var jsmin = require('gulp-jsmin');
10
+ // エラーでも監視を続行させる
11
+ var plumber = require('gulp-plumber');
12
+ // sudo npm install gulp.spritesmith --save-dev
13
+ var spritesmith = require('gulp.spritesmith');
14
+ // http://blog.e-riverstyle.com/2014/02/gulpspritesmithcss-spritegulp.html
15
+
16
+ // // Task
17
+ // gulp.task('cssmin', function () {
18
+ // gulp.src('css/**/*.css')
19
+ // .pipe(plumber()) // エラーでも監視を続行
20
+ // .pipe(cssmin())
21
+ // .pipe(rename({suffix: '.min'}))
22
+ // .pipe(gulp.dest('css'));
23
+ // });
24
+
25
+ gulp.task( 'copy', function() {
26
+ // bootstrapのcssをscssディレクトリに複製
27
+ gulp.src( './bootstrap/css/bootstrap.min.css' )
28
+ .pipe(rename({prefix: "_",extname: ".scss"})) // 拡張子をscssに
29
+ .pipe( gulp.dest( './_scss/' ) ); // _scss ディレクトリに保存
30
+ } );
31
+
32
+ // ファイル結合
33
+ gulp.task('scripts', function() {
34
+ return gulp.src(['./js/master.js'])
35
+ .pipe(concat('all.js'))
36
+ .pipe(gulp.dest('./js/'));
37
+ });
38
+ gulp.task('scripts_in_bs', function() {
39
+ // bootstrap use
40
+ return gulp.src(['./bootstrap/js/bootstrap.min.js','./js/master.js'])
41
+ .pipe(concat('all_in_bs.js'))
42
+ .pipe(gulp.dest('./js/'));
43
+ });
44
+
45
+ // js最小化
46
+ gulp.task('jsmin', function () {
47
+ gulp.src(['./js/all.js'])
48
+ .pipe(plumber()) // エラーでも監視を続行
49
+ .pipe(jsmin())
50
+ .pipe(rename({suffix: '.min'}))
51
+ .pipe(gulp.dest('./js'));
52
+ });
53
+
54
+ gulp.task('jsmin_in_bs', function () {
55
+ gulp.src(['./js/all_in_bs.js'])
56
+ .pipe(plumber()) // エラーでも監視を続行
57
+ .pipe(jsmin())
58
+ .pipe(rename({suffix: '.min'}))
59
+ .pipe(gulp.dest('./js'));
60
+ });
61
+
62
+
63
+ // Watch
64
+ gulp.task('watch', function() {
65
+ // gulp.watch('css/*.css', ['cssmin'])
66
+ // gulp.watch('js/*.js', ['scripts']);
67
+ gulp.watch('js/master.js', ['scripts','scripts_in_bs']);
68
+ gulp.watch('js/all.js', ['jsmin']);
69
+ gulp.watch('js/all_in_bs.js', ['jsmin_in_bs']);
70
+ gulp.watch('_scss/style.scss', ['copy']);
71
+ });
72
+
73
+ // gulp.task('default', ['scripts','watch','sprite']);
74
+ gulp.task('default', ['scripts','jsmin','watch']);
languages/vkExUnit-ja.mo CHANGED
Binary file
languages/vkExUnit-ja.po CHANGED
@@ -1,11 +1,8 @@
1
- # WordPress Blank Pot
2
- # Copyright (C) 2014 ...
3
- # This file is distrubuted under the GPL-2.0+
4
  msgid ""
5
  msgstr ""
6
- "Project-Id-Version: vkExUnit\n"
7
  "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
- "POT-Creation-Date: 2015-06-30 16:49+0900\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: \n"
11
  "Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
@@ -13,114 +10,15 @@ msgstr ""
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e;_x;esc_html_e;esc_html__;esc_attr_e;esc_attr__;"
20
- "_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;"
21
- "__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
- "X-Poedit-Basepath: ../\n"
23
- "X-Generator: Poedit 1.5.7\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
27
- msgid "Select all"
28
- msgstr ""
29
-
30
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
31
- msgid "Function"
32
- msgstr ""
33
-
34
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
35
- msgid "Description"
36
- msgstr ""
37
-
38
- #: vkExUnit_admin.php:21
39
- msgid "Choose Print Bootstrap css"
40
- msgstr ""
41
-
42
- #: vkExUnit_admin.php:30
43
- msgid ""
44
- "If your using theme has already including Bootstrap, you deactivate this "
45
- "item."
46
- msgstr ""
47
-
48
- #: vkExUnit_admin.php:39
49
- msgid "Choose Print link fontawesome."
50
- msgstr ""
51
-
52
- #: vkExUnit_admin.php:57
53
- msgid "Choose Print meta description."
54
- msgstr ""
55
-
56
- #: vkExUnit_admin.php:75
57
- msgid "Choose Social media cooperation."
58
- msgstr ""
59
-
60
- #: vkExUnit_admin.php:87 vkExUnit_admin.php:121
61
- msgid "Setting"
62
- msgstr ""
63
-
64
- #: vkExUnit_admin.php:97
65
- msgid "Print og tags to html head."
66
- msgstr ""
67
-
68
- #: vkExUnit_admin.php:98
69
- msgid "Print twitter card tags to html head."
70
- msgstr ""
71
-
72
- #: vkExUnit_admin.php:99
73
- msgid "Print social bookmarks."
74
- msgstr ""
75
-
76
- #: vkExUnit_admin.php:100
77
- msgid "Facebook Page Plugin."
78
- msgstr ""
79
-
80
- #: vkExUnit_admin.php:110
81
- msgid "Choose Print Google Analytics tracking code."
82
- msgstr ""
83
-
84
- #: vkExUnit_admin.php:129
85
- msgid "Print Google Analytics tracking code."
86
- msgstr ""
87
-
88
- #: vkExUnit_admin.php:138
89
- msgid "Choose Related posts."
90
- msgstr ""
91
-
92
- #: vkExUnit_admin.php:143 plugins/related_posts/related_posts.php:34
93
- msgid "Related posts"
94
- msgstr ""
95
-
96
- #: vkExUnit_admin.php:147
97
- msgid "Print Related posts lists to post content bottom."
98
- msgstr ""
99
-
100
- #: vkExUnit_admin.php:156 vkExUnit_admin.php:174
101
- msgid "Choose other widgets."
102
- msgstr ""
103
-
104
- #: vkExUnit_admin.php:161
105
- msgid "Other Widgets"
106
- msgstr ""
107
-
108
- #: vkExUnit_admin.php:165
109
- msgid "You can use various widgets."
110
- msgstr ""
111
-
112
- #: vkExUnit_admin.php:179
113
- msgid "CSS customize"
114
- msgstr ""
115
-
116
- #: vkExUnit_admin.php:183
117
- msgid "You can set Customize CSS."
118
- msgstr ""
119
-
120
  #: common_helpers.php:126
121
  #, php-format
122
  msgid "Search Results for : %s"
123
- msgstr ""
124
 
125
  #: common_helpers.php:129
126
  msgid "Not found"
@@ -129,93 +27,93 @@ msgstr "見つかりません"
129
  #: common_helpers.php:138 common_helpers.php:202
130
  #, php-format
131
  msgid "Page of %s"
132
- msgstr ""
133
 
134
  #: common_helpers.php:162 common_helpers.php:170
135
  #, php-format
136
  msgid "About %s"
137
- msgstr ""
138
 
139
  #: common_helpers.php:174 common_helpers.php:223
140
  msgctxt "yearly archives date format"
141
  msgid "Y"
142
- msgstr ""
143
 
144
  #: common_helpers.php:175
145
  #, php-format
146
  msgctxt "Yearly archive description"
147
  msgid "Article of %s."
148
- msgstr ""
149
 
150
  #: common_helpers.php:178 common_helpers.php:225
151
  msgctxt "monthly archives date format"
152
  msgid "F Y"
153
- msgstr ""
154
 
155
  #: common_helpers.php:179 common_helpers.php:183 common_helpers.php:187
156
  #, php-format
157
  msgctxt "Archive description"
158
  msgid "Article of %s."
159
- msgstr ""
160
 
161
  #: common_helpers.php:221
162
  #, php-format
163
  msgid "Author: %s"
164
- msgstr ""
165
 
166
  #: common_helpers.php:227
167
  msgctxt "daily archives date format"
168
  msgid "F j, Y"
169
- msgstr ""
170
 
171
  #: common_helpers.php:230
172
  msgctxt "post format archive title"
173
  msgid "Asides"
174
- msgstr ""
175
 
176
  #: common_helpers.php:232
177
  msgctxt "post format archive title"
178
  msgid "Galleries"
179
- msgstr ""
180
 
181
  #: common_helpers.php:234
182
  msgctxt "post format archive title"
183
  msgid "Images"
184
- msgstr ""
185
 
186
  #: common_helpers.php:236
187
  msgctxt "post format archive title"
188
  msgid "Videos"
189
- msgstr ""
190
 
191
  #: common_helpers.php:238
192
  msgctxt "post format archive title"
193
  msgid "Quotes"
194
- msgstr ""
195
 
196
  #: common_helpers.php:240
197
  msgctxt "post format archive title"
198
  msgid "Links"
199
- msgstr ""
200
 
201
  #: common_helpers.php:242
202
  msgctxt "post format archive title"
203
  msgid "Statuses"
204
- msgstr ""
205
 
206
  #: common_helpers.php:244
207
  msgctxt "post format archive title"
208
  msgid "Audio"
209
- msgstr ""
210
 
211
  #: common_helpers.php:246
212
  msgctxt "post format archive title"
213
  msgid "Chats"
214
- msgstr ""
215
 
216
  #: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
217
  msgid "Archives"
218
- msgstr ""
219
 
220
  #: plugins/css_customize/css_customize-edit.php:2
221
  #: plugins/css_customize/css_customize.php:35
@@ -239,176 +137,438 @@ msgstr "CSSが保存されました"
239
  msgid "Error occured. Please try again."
240
  msgstr "何らかのエラー!! また試してみてください"
241
 
242
- #: plugins/sns/sns_admin.php:1
243
- msgid "SNS Settings"
244
- msgstr "SNS設定"
 
245
 
246
- #: plugins/sns/sns_admin.php:13
247
- msgid "Do not output the OG"
248
- msgstr "出力設定"
 
 
249
 
250
- #: plugins/sns/sns_admin.php:15
 
 
 
 
 
 
 
251
  msgid ""
252
- "If other plug-ins are used for the OG, do not output the OG using this "
253
- "plugin."
254
  msgstr ""
255
- "もし他のプラグインやテーマで既にOGタグを出力している場合、このプラグインでの"
256
- "出力は必要ありません。"
257
 
258
- #: plugins/sns/sns_admin.php:19
259
- msgid "Output OG tags(default)"
260
- msgstr "OGタグを出力する"
261
 
262
- #: plugins/sns/sns_admin.php:20
263
- msgid "Do not output OG tags"
264
- msgstr "OGタグを出力しない"
265
 
266
- #: plugins/sns/sns_admin.php:32 plugins/sns/old/sns_admin.php:26
267
- msgid "facebook application ID"
268
- msgstr "facebookアプリケーションID"
269
 
270
- #: plugins/sns/sns_admin.php:34 plugins/sns/old/sns_admin.php:28
271
- msgid "I will check and get the application ID"
272
- msgstr "アプリケーションIDを確認・取得する "
 
 
273
 
274
- #: plugins/sns/sns_admin.php:35 plugins/sns/old/sns_admin.php:29
275
  msgid ""
276
- "* If an application ID is not specified, neither a Like button nor the "
277
- "comment field displays and operates correctly."
278
- msgstr ""
279
- "※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
280
- "ん。"
281
 
282
- #: plugins/sns/sns_admin.php:36 plugins/sns/old/sns_admin.php:30
 
283
  msgid ""
284
- "Please search for terms as [get Facebook application ID] If you do not know "
285
- "much about how to get application ID for Facebook."
286
- msgstr ""
287
- "facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
288
- "アプリケーションID 取得」などで検索して下さい。"
289
-
290
- #: plugins/sns/sns_admin.php:40
291
- msgid "facebook page URL"
292
- msgstr "FacebookページURL"
293
 
294
- #: plugins/sns/sns_admin.php:45
295
- msgid "OG default image"
296
- msgstr "デフォルトのOGPイメージ"
 
297
 
298
- #: plugins/sns/sns_admin.php:46 plugins/sns/old/sns_admin.php:57
299
  msgid ""
300
- "If, for example someone pressed the Facebook [Like] button, this is the "
301
- "image that appears on the Facebook timeline."
302
  msgstr ""
 
 
303
 
304
- #: plugins/sns/sns_admin.php:47 plugins/sns/old/sns_admin.php:58
305
- msgid "If a featured image is specified for the page, it takes precedence."
306
- msgstr ""
307
 
308
- #: plugins/sns/sns_admin.php:49 plugins/sns/old/sns_admin.php:60
309
- msgid "Select an image"
310
- msgstr ""
 
311
 
312
- #: plugins/sns/sns_admin.php:50 plugins/sns/old/sns_admin.php:20
313
- #: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
314
- #: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
315
- #: plugins/google_analytics/ga_admin.php:16
316
- msgid "ex) "
317
- msgstr "例: "
318
 
319
- #: plugins/sns/sns_admin.php:51 plugins/sns/old/sns_admin.php:62
320
- msgid ""
321
- "* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
322
- "recommended."
323
- msgstr ""
324
 
325
- #: plugins/sns/sns_admin.php:55
326
- msgid "twitter ID"
327
- msgstr "twitterアカウント"
328
 
329
- #: plugins/sns/function_follow.php:11
330
- msgid "Follow me!"
331
- msgstr ""
332
 
333
- #: plugins/sns/function_fbPagePlugin.php:10
334
- msgid "Displays a Facebook Page Plugin"
335
- msgstr ""
336
 
337
- #: plugins/sns/function_fbPagePlugin.php:75
338
- #: plugins/other_widget/widget-3pr-area.php:49
339
- #: plugins/other_widget/widget-3pr-area.php:101
340
- #: plugins/other_widget/widget-3pr-area.php:154
341
- #: plugins/other_widget/widget-profile.php:35
342
- #: plugins/other_widget/widget-new-posts.php:75
343
- msgid "Title:"
344
- msgstr ""
345
 
346
- #: plugins/sns/function_fbPagePlugin.php:85
347
- msgid "Height"
348
- msgstr ""
 
349
 
350
- #: plugins/sns/function_fbPagePlugin.php:90
351
- msgid "Show Friend's Faces"
352
- msgstr ""
353
 
354
- #: plugins/sns/function_fbPagePlugin.php:95
355
- msgid "Hide Cover Photo"
356
- msgstr ""
357
 
358
- #: plugins/sns/function_fbPagePlugin.php:100
359
- msgid "Show Page Posts"
360
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
 
362
  #: plugins/sns/old/sns_admin.php:12
363
  msgid "Social media"
364
- msgstr ""
365
 
366
  #: plugins/sns/old/sns_admin.php:13
367
  msgid "If you are unsure, you can leave for later."
368
- msgstr ""
369
 
370
  #: plugins/sns/old/sns_admin.php:18
371
  msgid ""
372
  "If you wish to link to a personal account or a Facebook page banner will be "
373
  "displayed if you enter the URL."
374
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
 
376
  #: plugins/sns/old/sns_admin.php:35
377
  msgid "Facebook user ID (optional)"
378
- msgstr ""
379
 
380
  #: plugins/sns/old/sns_admin.php:36
381
  msgid "Please enter the Facebook user ID of the administrator."
382
- msgstr ""
383
 
384
  #: plugins/sns/old/sns_admin.php:38
385
  msgid "* It is not the application ID of the Facebook page."
386
- msgstr ""
387
 
388
  #: plugins/sns/old/sns_admin.php:39
389
  msgid ""
390
  "You can see the personal Facebook ID when you access the following url "
391
  "http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
392
  msgstr ""
 
 
393
 
394
  #: plugins/sns/old/sns_admin.php:40
395
  msgid ""
396
  "Please search for terms as [find facebook user ID] if you are still not sure."
397
  msgstr ""
 
 
398
 
399
  #: plugins/sns/old/sns_admin.php:45
400
  msgid "twitter account"
401
- msgstr ""
402
 
403
  #: plugins/sns/old/sns_admin.php:46
404
  msgid ""
405
  "If you would like to link to a Twitter account, banner will be displayed if "
406
  "you enter the account name."
407
  msgstr ""
 
408
 
409
  #: plugins/sns/old/sns_admin.php:48
410
  msgid "widget"
411
- msgstr ""
412
 
413
  #: plugins/sns/old/sns_admin.php:49
414
  #, php-format
@@ -416,35 +576,61 @@ msgid ""
416
  "* If you prefer to use Twitter widgets etc, this can be left blank, paste "
417
  "the source code into a [text] %s here."
418
  msgstr ""
 
 
419
 
420
  #: plugins/sns/old/sns_admin.php:56
421
  msgid "OGP default image"
 
 
 
 
 
 
 
 
 
 
 
 
422
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
423
 
424
  #: plugins/sns/old/sns_admin.php:67
425
  msgid "Social buttons"
426
- msgstr ""
427
 
428
  #: plugins/sns/old/sns_admin.php:68
429
  msgid "Please check the type of page that displays the social button."
430
- msgstr ""
431
 
432
  #: plugins/sns/old/sns_admin.php:71 plugins/sns/old/sns_admin.php:88
433
  #: plugins/sns/old/sns_admin.php:108
434
  msgctxt "sns display"
435
  msgid "Home page"
436
- msgstr ""
437
 
438
  #: plugins/sns/old/sns_admin.php:73 plugins/sns/old/sns_admin.php:90
439
  msgctxt "sns display"
440
  msgid "Page"
441
- msgstr ""
442
 
443
  #: plugins/sns/old/sns_admin.php:75 plugins/sns/old/sns_admin.php:92
444
  #: plugins/sns/old/sns_admin.php:94
445
  msgctxt "sns display"
446
  msgid "Post"
447
- msgstr ""
448
 
449
  #: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
450
  msgid ""
@@ -452,354 +638,244 @@ msgid ""
452
  "do not wish to display, enter the Page ID. If multiple pages, please "
453
  "separate by commas."
454
  msgstr ""
 
 
455
 
456
  #: plugins/sns/old/sns_admin.php:84
457
  msgid "facebook comments box"
458
- msgstr ""
459
 
460
  #: plugins/sns/old/sns_admin.php:85
461
  msgid "Please check the type of the page to display Facebook comments."
462
- msgstr ""
463
 
464
  #: plugins/sns/old/sns_admin.php:104
465
  msgid "If you wish to use Facebook LikeBox, please check the location."
466
- msgstr ""
467
 
468
  #: plugins/sns/old/sns_admin.php:105
469
  msgid "* Please be sure to set Facebook application ID."
470
- msgstr ""
471
 
472
  #: plugins/sns/old/sns_admin.php:110
473
  msgctxt "sns display"
474
  msgid "Side bar"
475
- msgstr ""
476
 
477
  #: plugins/sns/old/sns_admin.php:113
478
  msgid "URL of the Facebook page."
479
- msgstr ""
480
 
481
  #: plugins/sns/old/sns_admin.php:116
482
  msgid "Display stream"
483
- msgstr ""
484
 
485
  #: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
486
  msgid "Display"
487
- msgstr ""
488
 
489
  #: plugins/sns/old/sns_admin.php:118
490
  msgid "Display faces"
491
- msgstr ""
492
 
493
  #: plugins/sns/old/sns_admin.php:120
494
  msgid "Height of LikeBox"
495
- msgstr ""
496
 
497
  #: plugins/sns/old/sns_admin.php:128
498
  msgid "Do not output the OGP"
499
- msgstr ""
500
 
501
  #: plugins/sns/old/sns_admin.php:130
502
  msgid ""
503
  "If other plug-ins are used for the OGP, do not output the OGP using "
504
  "BizVektor."
505
  msgstr ""
 
506
 
507
  #: plugins/sns/old/sns_admin.php:133
508
  msgid "I want to output the OGP tags using BizVektor"
509
- msgstr ""
510
 
511
  #: plugins/sns/old/sns_admin.php:134
512
  msgid "Do not output OGP tags using BizVektor"
513
- msgstr ""
514
 
515
  #: plugins/sns/old/sns_admin.php:149
516
  msgid "Page top"
517
- msgstr ""
518
-
519
- #: plugins/sns/old/sns.php:378
520
- msgid "* It is necessary to set the Theme options page."
521
- msgstr ""
522
-
523
- #: plugins/other_widget/widget-3pr-area.php:11
524
- msgid "Displays a 3PR area"
525
- msgstr "3PR エリアを表示します。"
526
 
527
- #: plugins/other_widget/widget-3pr-area.php:13
528
- #: plugins/other_widget/widget-3pr-area.php:247
529
- #: plugins/other_widget/widget-3pr-area.php:295
530
- #: plugins/other_widget/widget-3pr-area.php:345
531
- msgid "3PR area"
532
- msgstr "3PR エリア"
533
 
534
- #: plugins/other_widget/widget-3pr-area.php:18
535
- msgid "3PR area Title-1"
536
- msgstr "3PR エリア1 タイトル"
537
 
538
- #: plugins/other_widget/widget-3pr-area.php:26
539
- msgid "3PR area Title-2"
540
- msgstr "3PR エリア2 タイトル"
 
 
 
 
541
 
542
- #: plugins/other_widget/widget-3pr-area.php:34
543
- msgid "3PR area Title-3"
544
- msgstr "3PR エリア3 タイトル"
545
 
546
- #: plugins/other_widget/widget-3pr-area.php:47
547
- msgid "3PR Box1 Setting"
548
- msgstr "3PR ボックス1 設定"
549
 
550
- #: plugins/other_widget/widget-3pr-area.php:55
551
- #: plugins/other_widget/widget-3pr-area.php:107
552
- #: plugins/other_widget/widget-3pr-area.php:160
553
- msgid "Select image for PC:"
554
- msgstr "PC 用画像を選択"
555
 
556
- #: plugins/other_widget/widget-3pr-area.php:61
557
- #: plugins/other_widget/widget-3pr-area.php:78
558
- #: plugins/other_widget/widget-3pr-area.php:113
559
- #: plugins/other_widget/widget-3pr-area.php:131
560
- #: plugins/other_widget/widget-3pr-area.php:166
561
- #: plugins/other_widget/widget-3pr-area.php:183
562
- #, fuzzy
563
- msgid "Select image"
564
  msgstr "デフォルトのOGPイメージ"
565
 
566
- #: plugins/other_widget/widget-3pr-area.php:62
567
- #: plugins/other_widget/widget-3pr-area.php:79
568
- #: plugins/other_widget/widget-3pr-area.php:114
569
- #: plugins/other_widget/widget-3pr-area.php:132
570
- #: plugins/other_widget/widget-3pr-area.php:167
571
- #: plugins/other_widget/widget-3pr-area.php:184
572
- msgid "Clear image"
573
- msgstr "画像クリア"
574
-
575
- #: plugins/other_widget/widget-3pr-area.php:72
576
- #: plugins/other_widget/widget-3pr-area.php:125
577
- #: plugins/other_widget/widget-3pr-area.php:177
578
- msgid "Select image for Mobile:"
579
- msgstr "モバイル用画像を選択"
580
-
581
- #: plugins/other_widget/widget-3pr-area.php:88
582
- #: plugins/other_widget/widget-3pr-area.php:141
583
- #: plugins/other_widget/widget-3pr-area.php:194
584
- msgid "Summary Text:"
585
- msgstr "概要テキスト"
586
-
587
- #: plugins/other_widget/widget-3pr-area.php:93
588
- #: plugins/other_widget/widget-3pr-area.php:146
589
- #: plugins/other_widget/widget-3pr-area.php:199
590
- msgid "Link URL:"
591
- msgstr "リンク先ページのURL"
592
-
593
- #: plugins/other_widget/widget-3pr-area.php:99
594
- msgid "3PR Box2 Setting"
595
- msgstr "3PR ボックス2 設定"
596
-
597
- #: plugins/other_widget/widget-3pr-area.php:152
598
- msgid "3PR Box3 Setting"
599
- msgstr "3PR ボックス3 設定"
600
-
601
- #: plugins/other_widget/widget-profile.php:11
602
- msgid "Displays a your site's profile"
603
- msgstr "サイトのプロフィールを表示します。"
604
-
605
- #: plugins/other_widget/widget-profile.php:13
606
- #: plugins/other_widget/widget-profile.php:19
607
- #: plugins/other_widget/widget-profile.php:121
608
- msgid "Site's Profile"
609
- msgstr "サイトの紹介"
610
-
611
- #: plugins/other_widget/widget-profile.php:22
612
- msgid "Site's Profile Text"
613
- msgstr "サイトの紹介テキスト"
614
-
615
- #: plugins/other_widget/widget-profile.php:40
616
- msgid "Select Profile image:"
617
- msgstr "プロフィール用画像を選択"
618
-
619
- #: plugins/other_widget/widget-profile.php:57
620
- msgid "Profile Text:"
621
- msgstr "紹介テキスト"
622
-
623
- #: plugins/other_widget/widget-profile.php:62
624
- msgid "Facebook URL:"
625
- msgstr "Facebook リンク先ページアドレス"
626
-
627
- #: plugins/other_widget/widget-profile.php:67
628
- msgid "Twitter URL:"
629
- msgstr "twitterリンク先ページアドレス"
630
-
631
- #: plugins/other_widget/widget-profile.php:72
632
- msgid "Email Address:"
633
- msgstr "Email リンク先ページアドレス"
634
-
635
- #: plugins/other_widget/widget-profile.php:77
636
- msgid "Youtube URL:"
637
- msgstr "Youtube リンク先ページアドレス"
638
-
639
- #: plugins/other_widget/widget-profile.php:82
640
- msgid "RSS URL:"
641
- msgstr "RSS リンク先ページアドレス"
642
 
643
- #: plugins/other_widget/widget-profile.php:87
644
- msgid "instagram URL:"
645
- msgstr "instagram リンク先ページアドレス"
646
 
647
- #: plugins/other_widget/widget-profile.php:91
648
- msgid "linkedin URL:"
649
- msgstr "linkedin リンク先ページアドレス"
650
 
651
- #: plugins/other_widget/widget-new-posts.php:11
652
- msgid "Displays a list of your most recent posts"
653
- msgstr ""
654
 
655
- #: plugins/other_widget/widget-new-posts.php:13
656
- #: plugins/other_widget/widget-new-posts.php:23
657
- #: plugins/other_widget/widget-new-posts.php:66
658
- msgid "Recent Posts"
659
- msgstr ""
660
 
661
- #: plugins/other_widget/widget-new-posts.php:80
662
- msgid "Display count"
663
- msgstr ""
664
 
665
- #: plugins/other_widget/widget-new-posts.php:85
666
- msgid "Slug for the custom type you want to display"
 
 
667
  msgstr ""
 
 
668
 
669
- #: plugins/other_widget/old/widget-taxonomy-list.php:11
670
- msgid "Displays a categories, tags or format list."
671
- msgstr ""
672
 
673
- #: plugins/other_widget/old/widget-taxonomy-list.php:17
674
- msgid "categories/tags list"
675
- msgstr ""
676
 
677
- #: plugins/other_widget/old/widget-taxonomy-list.php:48
678
- #: plugins/other_widget/old/widget-taxonomy-list.php:49
679
- msgid "Category"
680
- msgstr "カテゴリー"
681
 
682
- #: plugins/other_widget/old/widget-taxonomy-list.php:57
683
- msgid "Label to display"
684
- msgstr ""
685
-
686
- #: plugins/other_widget/old/widget-taxonomy-list.php:61
687
- #: plugins/other_widget/old/widget-page-content.php:30
688
- msgid "Display page"
689
- msgstr ""
690
 
691
- #: plugins/other_widget/old/widget-taxonomy-list.php:76
692
- msgid "Blog"
693
- msgstr "ブログ"
694
 
695
- #: plugins/other_widget/old/widget-rss-widget.php:9
696
- msgid "Displays entries list from a RSS feed link."
697
- msgstr ""
698
 
699
- #: plugins/other_widget/old/widget-rss-widget.php:11
700
- msgid "RSS entries for top"
701
- msgstr ""
702
 
703
- #: plugins/other_widget/old/widget-rss-widget.php:25
704
- msgid "Blog entries"
705
- msgstr ""
706
 
707
- #: plugins/other_widget/old/widget-rss-widget.php:30
708
- msgid "Heading title"
709
- msgstr ""
710
 
711
- #: plugins/other_widget/old/widget-page-content.php:10
712
- msgid "Displays the content of a chosen page."
713
- msgstr ""
714
 
715
- #: plugins/other_widget/old/widget-page-content.php:12
716
- msgid "page content for top"
717
- msgstr ""
718
 
719
- #: plugins/other_widget/old/widget-page-content.php:38
720
- msgid "display title"
721
- msgstr ""
722
 
723
- #: plugins/other_widget/old/widget-page-content.php:61
724
- msgid "Edit"
725
- msgstr "編集"
726
 
727
- #: plugins/other_widget/old/widget-child-page-list.php:9
728
- msgid "Displays list of child page for the current page."
729
- msgstr ""
730
 
731
- #: plugins/other_widget/old/widget-child-page-list.php:11
732
- msgid "child pages list"
733
- msgstr ""
734
 
735
- #: plugins/other_widget/old/widget-archive-list.php:12
736
- msgid ""
737
- "Displays a list of archives. You can choose the post type and also to "
738
- "display archives by month or by year."
739
- msgstr ""
740
 
741
- #: plugins/other_widget/old/widget-archive-list.php:14
742
- msgid "archive list"
743
- msgstr "アーカイブリスト"
744
 
745
- #: plugins/other_widget/old/widget-archive-list.php:49
746
- #: plugins/other_widget/old/widget-archive-list.php:50
747
- msgid "Monthly archives"
748
- msgstr ""
749
 
750
- #: plugins/other_widget/old/widget-archive-list.php:59
751
- msgid "Title"
752
- msgstr "タイトル"
753
 
754
- #: plugins/other_widget/old/widget-archive-list.php:63
755
- msgid "Post type"
756
- msgstr "ポストタイプ"
757
 
758
- #: plugins/meta_description/meta_description-post.php:9
759
- #: plugins/meta_description/meta_description-post.php:10
760
- #: plugins/meta_description/meta_description-post.php:17
761
- msgid "Meta Keywords"
762
- msgstr ""
763
 
764
- #: plugins/meta_description/meta_description-post.php:18
765
- msgid ""
766
- "To distinguish between individual keywords, please enter a , delimiter "
767
- "(optional)."
768
- msgstr ""
769
 
770
- #: plugins/meta_description/meta_description-post.php:20
771
- #, php-format
772
- msgid "* keywords common to the entire site can be set from %s."
773
- msgstr ""
774
 
775
- #: plugins/google_analytics/ga_admin.php:9
776
- #: plugins/google_analytics/ga_admin.php:13
777
- msgid "Google Analytics Settings"
778
- msgstr "Google Analytics設定"
779
 
780
- #: plugins/google_analytics/ga_admin.php:14
781
- msgid ""
782
- "Please fill in the Google Analytics ID from the Analytics embed code used in "
783
- "the site."
784
- msgstr ""
785
 
786
- #: plugins/google_analytics/ga_admin.php:19
787
- msgid ""
788
- "Please select the type of Analytics code . (If you are unsure you can skip "
789
- "this.)"
790
- msgstr ""
791
 
792
- #: plugins/google_analytics/ga_admin.php:23
793
- msgid "To output the Universal Analytics code (default)"
794
- msgstr ""
795
 
796
- #: plugins/google_analytics/ga_admin.php:24
797
- msgid "To output only normal code"
798
- msgstr ""
799
 
800
- #: plugins/google_analytics/ga_admin.php:25
801
- msgid "To output both types"
802
- msgstr ""
803
 
804
  #~ msgid "VK Ex Unit"
805
  #~ msgstr "VK Ex Unit"
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
5
+ "POT-Creation-Date: 2015-07-03 12:10+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: ..\n"
 
 
 
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  #: common_helpers.php:126
19
  #, php-format
20
  msgid "Search Results for : %s"
21
+ msgstr "検索結果 : %s"
22
 
23
  #: common_helpers.php:129
24
  msgid "Not found"
27
  #: common_helpers.php:138 common_helpers.php:202
28
  #, php-format
29
  msgid "Page of %s"
30
+ msgstr "%s のページ"
31
 
32
  #: common_helpers.php:162 common_helpers.php:170
33
  #, php-format
34
  msgid "About %s"
35
+ msgstr "%s について"
36
 
37
  #: common_helpers.php:174 common_helpers.php:223
38
  msgctxt "yearly archives date format"
39
  msgid "Y"
40
+ msgstr ""
41
 
42
  #: common_helpers.php:175
43
  #, php-format
44
  msgctxt "Yearly archive description"
45
  msgid "Article of %s."
46
+ msgstr "%s の記事"
47
 
48
  #: common_helpers.php:178 common_helpers.php:225
49
  msgctxt "monthly archives date format"
50
  msgid "F Y"
51
+ msgstr "年月"
52
 
53
  #: common_helpers.php:179 common_helpers.php:183 common_helpers.php:187
54
  #, php-format
55
  msgctxt "Archive description"
56
  msgid "Article of %s."
57
+ msgstr "%s の記事"
58
 
59
  #: common_helpers.php:221
60
  #, php-format
61
  msgid "Author: %s"
62
+ msgstr "著者: %s"
63
 
64
  #: common_helpers.php:227
65
  msgctxt "daily archives date format"
66
  msgid "F j, Y"
67
+ msgstr "月日, 年"
68
 
69
  #: common_helpers.php:230
70
  msgctxt "post format archive title"
71
  msgid "Asides"
72
+ msgstr "サイド"
73
 
74
  #: common_helpers.php:232
75
  msgctxt "post format archive title"
76
  msgid "Galleries"
77
+ msgstr "ギャラリー"
78
 
79
  #: common_helpers.php:234
80
  msgctxt "post format archive title"
81
  msgid "Images"
82
+ msgstr "画像"
83
 
84
  #: common_helpers.php:236
85
  msgctxt "post format archive title"
86
  msgid "Videos"
87
+ msgstr "ビデオ"
88
 
89
  #: common_helpers.php:238
90
  msgctxt "post format archive title"
91
  msgid "Quotes"
92
+ msgstr "引用"
93
 
94
  #: common_helpers.php:240
95
  msgctxt "post format archive title"
96
  msgid "Links"
97
+ msgstr "リンク"
98
 
99
  #: common_helpers.php:242
100
  msgctxt "post format archive title"
101
  msgid "Statuses"
102
+ msgstr "ステータス"
103
 
104
  #: common_helpers.php:244
105
  msgctxt "post format archive title"
106
  msgid "Audio"
107
+ msgstr "オーディオ"
108
 
109
  #: common_helpers.php:246
110
  msgctxt "post format archive title"
111
  msgid "Chats"
112
+ msgstr "チャット"
113
 
114
  #: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
115
  msgid "Archives"
116
+ msgstr "アーカイブ"
117
 
118
  #: plugins/css_customize/css_customize-edit.php:2
119
  #: plugins/css_customize/css_customize.php:35
137
  msgid "Error occured. Please try again."
138
  msgstr "何らかのエラー!! また試してみてください"
139
 
140
+ #: plugins/google_analytics/ga_admin.php:9
141
+ #: plugins/google_analytics/ga_admin.php:13
142
+ msgid "Google Analytics Settings"
143
+ msgstr "Google Analytics設定"
144
 
145
+ #: plugins/google_analytics/ga_admin.php:14
146
+ msgid ""
147
+ "Please fill in the Google Analytics ID from the Analytics embed code used in "
148
+ "the site."
149
+ msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
150
 
151
+ #: plugins/google_analytics/ga_admin.php:16 plugins/sns/old/sns_admin.php:20
152
+ #: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
153
+ #: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
154
+ #: plugins/sns/sns_admin.php:50
155
+ msgid "ex) "
156
+ msgstr "例: "
157
+
158
+ #: plugins/google_analytics/ga_admin.php:19
159
  msgid ""
160
+ "Please select the type of Analytics code . (If you are unsure you can skip "
161
+ "this.)"
162
  msgstr ""
163
+ "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
164
+ "す )"
165
 
166
+ #: plugins/google_analytics/ga_admin.php:23
167
+ msgid "To output the Universal Analytics code (default)"
168
+ msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
169
 
170
+ #: plugins/google_analytics/ga_admin.php:24
171
+ msgid "To output only normal code"
172
+ msgstr "ノーマルのコードのみを出力します。"
173
 
174
+ #: plugins/google_analytics/ga_admin.php:25
175
+ msgid "To output both types"
176
+ msgstr "両タイプのコードを出力します。"
177
 
178
+ #: plugins/meta_description/meta_description-post.php:9
179
+ #: plugins/meta_description/meta_description-post.php:10
180
+ #: plugins/meta_description/meta_description-post.php:17
181
+ msgid "Meta Keywords"
182
+ msgstr "Meta キーワード"
183
 
184
+ #: plugins/meta_description/meta_description-post.php:18
185
  msgid ""
186
+ "To distinguish between individual keywords, please enter a , delimiter "
187
+ "(optional)."
188
+ msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
 
 
189
 
190
+ #: plugins/meta_description/meta_description-post.php:19
191
+ msgctxt "link to seo setting"
192
  msgid ""
193
+ msgstr "SEO 設定のリンク"
 
 
 
 
 
 
 
 
194
 
195
+ #: plugins/meta_description/meta_description-post.php:20
196
+ #, php-format
197
+ msgid "* keywords common to the entire site can be set from %s."
198
+ msgstr "サイト全体のキーワードは %s より設定することができます。"
199
 
200
+ #: plugins/other_widget/old/widget-archive-list.php:12
201
  msgid ""
202
+ "Displays a list of archives. You can choose the post type and also to "
203
+ "display archives by month or by year."
204
  msgstr ""
205
+ "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
206
+ "プを選択できます。"
207
 
208
+ #: plugins/other_widget/old/widget-archive-list.php:14
209
+ msgid "archive list"
210
+ msgstr "アーカイブリスト"
211
 
212
+ #: plugins/other_widget/old/widget-archive-list.php:49
213
+ #: plugins/other_widget/old/widget-archive-list.php:50
214
+ msgid "Monthly archives"
215
+ msgstr "月別アーカイブ"
216
 
217
+ #: plugins/other_widget/old/widget-archive-list.php:59
218
+ msgid "Title"
219
+ msgstr "タイトル"
 
 
 
220
 
221
+ #: plugins/other_widget/old/widget-archive-list.php:63
222
+ msgid "Post type"
223
+ msgstr "ポストタイプ"
 
 
224
 
225
+ #: plugins/other_widget/old/widget-child-page-list.php:9
226
+ msgid "Displays list of child page for the current page."
227
+ msgstr "現在のページの子ページのリストを表示します。"
228
 
229
+ #: plugins/other_widget/old/widget-child-page-list.php:11
230
+ msgid "child pages list"
231
+ msgstr "子ページのリスト"
232
 
233
+ #: plugins/other_widget/old/widget-page-content.php:10
234
+ msgid "Displays the content of a chosen page."
235
+ msgstr "選択したページの内容を表示します。"
236
 
237
+ #: plugins/other_widget/old/widget-page-content.php:12
238
+ msgid "page content for top"
239
+ msgstr "トップのページコンテンツ"
 
 
 
 
 
240
 
241
+ #: plugins/other_widget/old/widget-page-content.php:30
242
+ #: plugins/other_widget/old/widget-taxonomy-list.php:61
243
+ msgid "Display page"
244
+ msgstr "ページを表示"
245
 
246
+ #: plugins/other_widget/old/widget-page-content.php:38
247
+ msgid "display title"
248
+ msgstr "タイトルを表示"
249
 
250
+ #: plugins/other_widget/old/widget-page-content.php:61
251
+ msgid "Edit"
252
+ msgstr "編集"
253
 
254
+ #: plugins/other_widget/old/widget-rss-widget.php:9
255
+ msgid "Displays entries list from a RSS feed link."
256
+ msgstr "RSSフィードリンクからエントリーリストを表示します。"
257
+
258
+ #: plugins/other_widget/old/widget-rss-widget.php:11
259
+ msgid "RSS entries for top"
260
+ msgstr "トップのRSSエントリー"
261
+
262
+ #: plugins/other_widget/old/widget-rss-widget.php:25
263
+ msgid "Blog entries"
264
+ msgstr "ブログエントリー"
265
+
266
+ #: plugins/other_widget/old/widget-rss-widget.php:30
267
+ msgid "Heading title"
268
+ msgstr "見出しタイトル"
269
+
270
+ #: plugins/other_widget/old/widget-taxonomy-list.php:11
271
+ msgid "Displays a categories, tags or format list."
272
+ msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
273
+
274
+ #: plugins/other_widget/old/widget-taxonomy-list.php:17
275
+ msgid "categories/tags list"
276
+ msgstr "カテゴリー/タグ リスト"
277
+
278
+ #: plugins/other_widget/old/widget-taxonomy-list.php:48
279
+ #: plugins/other_widget/old/widget-taxonomy-list.php:49
280
+ msgid "Category"
281
+ msgstr "カテゴリー"
282
+
283
+ #: plugins/other_widget/old/widget-taxonomy-list.php:57
284
+ msgid "Label to display"
285
+ msgstr "表示するラベル"
286
+
287
+ #: plugins/other_widget/old/widget-taxonomy-list.php:76
288
+ msgid "Blog"
289
+ msgstr "ブログ"
290
+
291
+ #: plugins/other_widget/widget-3pr-area.php:11
292
+ msgid "Displays a 3PR area"
293
+ msgstr "3PR エリアを表示します。"
294
+
295
+ #: plugins/other_widget/widget-3pr-area.php:13
296
+ #: plugins/other_widget/widget-3pr-area.php:247
297
+ #: plugins/other_widget/widget-3pr-area.php:295
298
+ #: plugins/other_widget/widget-3pr-area.php:345
299
+ msgid "3PR area"
300
+ msgstr "3PR エリア"
301
+
302
+ #: plugins/other_widget/widget-3pr-area.php:18
303
+ msgid "3PR area1 title"
304
+ msgstr "3PR エリア1 タイトル"
305
+
306
+ #: plugins/other_widget/widget-3pr-area.php:26
307
+ msgid "3PR area2 title"
308
+ msgstr "3PR エリア2 タイトル"
309
+
310
+ #: plugins/other_widget/widget-3pr-area.php:34
311
+ msgid "3PR area3 title"
312
+ msgstr "3PR エリア3 タイトル"
313
+
314
+ #: plugins/other_widget/widget-3pr-area.php:47
315
+ msgid "3PR area1 setting"
316
+ msgstr "3PR エリア1 設定"
317
+
318
+ #: plugins/other_widget/widget-3pr-area.php:49
319
+ #: plugins/other_widget/widget-3pr-area.php:101
320
+ #: plugins/other_widget/widget-3pr-area.php:154
321
+ #: plugins/other_widget/widget-new-posts.php:75
322
+ #: plugins/other_widget/widget-profile.php:35
323
+ #: plugins/sns/function_fbPagePlugin.php:75
324
+ msgid "Title:"
325
+ msgstr "タイトル"
326
+
327
+ #: plugins/other_widget/widget-3pr-area.php:55
328
+ #: plugins/other_widget/widget-3pr-area.php:107
329
+ #: plugins/other_widget/widget-3pr-area.php:160
330
+ msgid "Select image for PC:"
331
+ msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
332
+
333
+ #: plugins/other_widget/widget-3pr-area.php:61
334
+ #: plugins/other_widget/widget-3pr-area.php:78
335
+ #: plugins/other_widget/widget-3pr-area.php:113
336
+ #: plugins/other_widget/widget-3pr-area.php:131
337
+ #: plugins/other_widget/widget-3pr-area.php:166
338
+ #: plugins/other_widget/widget-3pr-area.php:183
339
+ #: plugins/other_widget/widget-profile.php:46
340
+ msgid "Select image"
341
+ msgstr "画像を選択"
342
+
343
+ #: plugins/other_widget/widget-3pr-area.php:62
344
+ #: plugins/other_widget/widget-3pr-area.php:79
345
+ #: plugins/other_widget/widget-3pr-area.php:114
346
+ #: plugins/other_widget/widget-3pr-area.php:132
347
+ #: plugins/other_widget/widget-3pr-area.php:167
348
+ #: plugins/other_widget/widget-3pr-area.php:184
349
+ #: plugins/other_widget/widget-profile.php:47
350
+ msgid "Clear image"
351
+ msgstr "画像クリア"
352
+
353
+ #: plugins/other_widget/widget-3pr-area.php:72
354
+ #: plugins/other_widget/widget-3pr-area.php:125
355
+ #: plugins/other_widget/widget-3pr-area.php:177
356
+ msgid "Select image for Mobile:"
357
+ msgstr ""
358
+ "スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
359
+ "690px 以上推奨。空欄も可)"
360
+
361
+ #: plugins/other_widget/widget-3pr-area.php:88
362
+ #: plugins/other_widget/widget-3pr-area.php:141
363
+ #: plugins/other_widget/widget-3pr-area.php:194
364
+ msgid "Summary Text:"
365
+ msgstr "概要となるテキスト"
366
+
367
+ #: plugins/other_widget/widget-3pr-area.php:93
368
+ #: plugins/other_widget/widget-3pr-area.php:146
369
+ #: plugins/other_widget/widget-3pr-area.php:199
370
+ msgid "Link URL:"
371
+ msgstr "リンク先ページのURL"
372
+
373
+ #: plugins/other_widget/widget-3pr-area.php:99
374
+ msgid "3PR area2 setting"
375
+ msgstr "3PR エリア2 設定"
376
+
377
+ #: plugins/other_widget/widget-3pr-area.php:152
378
+ msgid "3PR area3 setting"
379
+ msgstr "3PR エリア3 設定"
380
+
381
+ #: plugins/other_widget/widget-3pr-area.php:281
382
+ #: plugins/other_widget/widget-3pr-area.php:331
383
+ #: plugins/other_widget/widget-3pr-area.php:381
384
+ msgid "Read more"
385
+ msgstr "詳しくはこちら"
386
+
387
+ #: plugins/other_widget/widget-new-posts.php:11
388
+ msgid "Displays a list of your most recent posts"
389
+ msgstr "最新の投稿記事リストを表示します。"
390
+
391
+ #: plugins/other_widget/widget-new-posts.php:13
392
+ #: plugins/other_widget/widget-new-posts.php:23
393
+ #: plugins/other_widget/widget-new-posts.php:66
394
+ msgid "Recent Posts"
395
+ msgstr "最新記事"
396
+
397
+ #: plugins/other_widget/widget-new-posts.php:80
398
+ msgid "Display count"
399
+ msgstr "表示する記事数"
400
+
401
+ #: plugins/other_widget/widget-new-posts.php:85
402
+ msgid "Slug for the custom type you want to display"
403
+ msgstr "表示したい記事タイプ"
404
+
405
+ #: plugins/other_widget/widget-profile.php:11
406
+ msgid "Displays a your profile"
407
+ msgstr ""
408
+ "ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
409
+
410
+ #: plugins/other_widget/widget-profile.php:13
411
+ #: plugins/other_widget/widget-profile.php:19
412
+ msgid "Profile"
413
+ msgstr "プロフィール"
414
+
415
+ #: plugins/other_widget/widget-profile.php:22
416
+ msgid "Profile Text"
417
+ msgstr "プロフィールテキスト"
418
+
419
+ #: plugins/other_widget/widget-profile.php:40
420
+ msgid "Select Profile image:"
421
+ msgstr "プロフィール用画像を選択"
422
+
423
+ #: plugins/other_widget/widget-profile.php:57
424
+ msgid "Profile Text:"
425
+ msgstr "プロフィールテキスト"
426
+
427
+ #: plugins/other_widget/widget-profile.php:65
428
+ msgid "Facebook URL:"
429
+ msgstr "Facebook リンク先ページのURL"
430
+
431
+ #: plugins/other_widget/widget-profile.php:70
432
+ msgid "Twitter URL:"
433
+ msgstr "twitterリンク先ページのURL"
434
+
435
+ #: plugins/other_widget/widget-profile.php:75
436
+ msgid "Email Address:"
437
+ msgstr "Email リンク先ページのURL"
438
+
439
+ #: plugins/other_widget/widget-profile.php:80
440
+ msgid "Youtube URL:"
441
+ msgstr "Youtube リンク先ページのURL"
442
+
443
+ #: plugins/other_widget/widget-profile.php:85
444
+ msgid "RSS URL:"
445
+ msgstr "RSS リンク先ページのURL"
446
+
447
+ #: plugins/other_widget/widget-profile.php:90
448
+ msgid "instagram URL:"
449
+ msgstr "instagram リンク先ページのURL"
450
+
451
+ #: plugins/other_widget/widget-profile.php:94
452
+ msgid "linkedin URL:"
453
+ msgstr "linkedin リンク先ページのURL"
454
+
455
+ #: plugins/other_widget/widget-profile.php:124
456
+ msgid "Site's Profile"
457
+ msgstr "プロフィール"
458
+
459
+ #: plugins/related_posts/related_posts.php:34 vkExUnit_admin.php:143
460
+ msgid "Related posts"
461
+ msgstr "関連記事"
462
+
463
+ #: plugins/sns/function_fbPagePlugin.php:10
464
+ msgid "Displays a Facebook Page Plugin"
465
+ msgstr "Facebook ページプラグインを表示します。"
466
+
467
+ #: plugins/sns/function_fbPagePlugin.php:85
468
+ msgid "Height"
469
+ msgstr "高さ"
470
+
471
+ #: plugins/sns/function_fbPagePlugin.php:90
472
+ msgid "Show Friend's Faces"
473
+ msgstr "アイコンを表示する"
474
+
475
+ #: plugins/sns/function_fbPagePlugin.php:95
476
+ msgid "Hide Cover Photo"
477
+ msgstr "カバー画像を表示しない"
478
+
479
+ #: plugins/sns/function_fbPagePlugin.php:100
480
+ msgid "Show Page Posts"
481
+ msgstr "タイムラインを表示"
482
+
483
+ #: plugins/sns/function_follow.php:11
484
+ msgid "Follow me!"
485
+ msgstr "フォローして下さい!"
486
+
487
+ #: plugins/sns/old/sns.php:378
488
+ msgid "* It is necessary to set the Theme options page."
489
+ msgstr "* テーマオプションページで設定する必要があります。"
490
 
491
  #: plugins/sns/old/sns_admin.php:12
492
  msgid "Social media"
493
+ msgstr "ソーシャルメディア"
494
 
495
  #: plugins/sns/old/sns_admin.php:13
496
  msgid "If you are unsure, you can leave for later."
497
+ msgstr "不明な場合は後で設定することができます。"
498
 
499
  #: plugins/sns/old/sns_admin.php:18
500
  msgid ""
501
  "If you wish to link to a personal account or a Facebook page banner will be "
502
  "displayed if you enter the URL."
503
  msgstr ""
504
+ "個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して下さ"
505
+ "い。"
506
+
507
+ #: plugins/sns/old/sns_admin.php:26 plugins/sns/sns_admin.php:32
508
+ msgid "facebook application ID"
509
+ msgstr "facebookアプリケーションID"
510
+
511
+ #: plugins/sns/old/sns_admin.php:28 plugins/sns/sns_admin.php:34
512
+ msgid "I will check and get the application ID"
513
+ msgstr "アプリケーションIDを確認・取得する "
514
+
515
+ #: plugins/sns/old/sns_admin.php:29 plugins/sns/sns_admin.php:35
516
+ msgid ""
517
+ "* If an application ID is not specified, neither a Like button nor the "
518
+ "comment field displays and operates correctly."
519
+ msgstr ""
520
+ "※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
521
+ "ん。"
522
+
523
+ #: plugins/sns/old/sns_admin.php:30 plugins/sns/sns_admin.php:36
524
+ msgid ""
525
+ "Please search for terms as [get Facebook application ID] If you do not know "
526
+ "much about how to get application ID for Facebook."
527
+ msgstr ""
528
+ "facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
529
+ "アプリケーションID 取得」などで検索して下さい。"
530
 
531
  #: plugins/sns/old/sns_admin.php:35
532
  msgid "Facebook user ID (optional)"
533
+ msgstr "Facebook ユーザーID( オプション )"
534
 
535
  #: plugins/sns/old/sns_admin.php:36
536
  msgid "Please enter the Facebook user ID of the administrator."
537
+ msgstr "管理者のFacebookユーザーIDを入力してください。"
538
 
539
  #: plugins/sns/old/sns_admin.php:38
540
  msgid "* It is not the application ID of the Facebook page."
541
+ msgstr "* FacebookページのアプリケーションIDではありません。"
542
 
543
  #: plugins/sns/old/sns_admin.php:39
544
  msgid ""
545
  "You can see the personal Facebook ID when you access the following url "
546
  "http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
547
  msgstr ""
548
+ "このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
549
+ "ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
550
 
551
  #: plugins/sns/old/sns_admin.php:40
552
  msgid ""
553
  "Please search for terms as [find facebook user ID] if you are still not sure."
554
  msgstr ""
555
+ "まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
556
+ "さい。"
557
 
558
  #: plugins/sns/old/sns_admin.php:45
559
  msgid "twitter account"
560
+ msgstr "Twitter アカウント"
561
 
562
  #: plugins/sns/old/sns_admin.php:46
563
  msgid ""
564
  "If you would like to link to a Twitter account, banner will be displayed if "
565
  "you enter the account name."
566
  msgstr ""
567
+ "Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
568
 
569
  #: plugins/sns/old/sns_admin.php:48
570
  msgid "widget"
571
+ msgstr "ウィジェット"
572
 
573
  #: plugins/sns/old/sns_admin.php:49
574
  #, php-format
576
  "* If you prefer to use Twitter widgets etc, this can be left blank, paste "
577
  "the source code into a [text] %s here."
578
  msgstr ""
579
+ "Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
580
+ "を貼り付けます。"
581
 
582
  #: plugins/sns/old/sns_admin.php:56
583
  msgid "OGP default image"
584
+ msgstr "OGP デフォルト画像"
585
+
586
+ #: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:46
587
+ msgid ""
588
+ "If, for example someone pressed the Facebook [Like] button, this is the "
589
+ "image that appears on the Facebook timeline."
590
+ msgstr ""
591
+ "Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
592
+ "ムラインに表示されます。"
593
+
594
+ #: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:47
595
+ msgid "If a featured image is specified for the page, it takes precedence."
596
  msgstr ""
597
+ "ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
598
+ "す。"
599
+
600
+ #: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:49
601
+ msgid "Select an image"
602
+ msgstr "画像を選択"
603
+
604
+ #: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:51
605
+ msgid ""
606
+ "* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
607
+ "recommended."
608
+ msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
609
 
610
  #: plugins/sns/old/sns_admin.php:67
611
  msgid "Social buttons"
612
+ msgstr "ソーシャルボタン"
613
 
614
  #: plugins/sns/old/sns_admin.php:68
615
  msgid "Please check the type of page that displays the social button."
616
+ msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
617
 
618
  #: plugins/sns/old/sns_admin.php:71 plugins/sns/old/sns_admin.php:88
619
  #: plugins/sns/old/sns_admin.php:108
620
  msgctxt "sns display"
621
  msgid "Home page"
622
+ msgstr "ホームページ"
623
 
624
  #: plugins/sns/old/sns_admin.php:73 plugins/sns/old/sns_admin.php:90
625
  msgctxt "sns display"
626
  msgid "Page"
627
+ msgstr "ページ"
628
 
629
  #: plugins/sns/old/sns_admin.php:75 plugins/sns/old/sns_admin.php:92
630
  #: plugins/sns/old/sns_admin.php:94
631
  msgctxt "sns display"
632
  msgid "Post"
633
+ msgstr "投稿"
634
 
635
  #: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
636
  msgid ""
638
  "do not wish to display, enter the Page ID. If multiple pages, please "
639
  "separate by commas."
640
  msgstr ""
641
+ "表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
642
+ "ジがある場合は、カンマで区切って入力して下さい。"
643
 
644
  #: plugins/sns/old/sns_admin.php:84
645
  msgid "facebook comments box"
646
+ msgstr "Facebookのコメントボックス"
647
 
648
  #: plugins/sns/old/sns_admin.php:85
649
  msgid "Please check the type of the page to display Facebook comments."
650
+ msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
651
 
652
  #: plugins/sns/old/sns_admin.php:104
653
  msgid "If you wish to use Facebook LikeBox, please check the location."
654
+ msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
655
 
656
  #: plugins/sns/old/sns_admin.php:105
657
  msgid "* Please be sure to set Facebook application ID."
658
+ msgstr "Facebook のアプリケーションIDを設定してください。"
659
 
660
  #: plugins/sns/old/sns_admin.php:110
661
  msgctxt "sns display"
662
  msgid "Side bar"
663
+ msgstr "サイドバー"
664
 
665
  #: plugins/sns/old/sns_admin.php:113
666
  msgid "URL of the Facebook page."
667
+ msgstr "Facebook ページの URL"
668
 
669
  #: plugins/sns/old/sns_admin.php:116
670
  msgid "Display stream"
671
+ msgstr "タイムラインを表示する"
672
 
673
  #: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
674
  msgid "Display"
675
+ msgstr "表示"
676
 
677
  #: plugins/sns/old/sns_admin.php:118
678
  msgid "Display faces"
679
+ msgstr "アイコンを表示する"
680
 
681
  #: plugins/sns/old/sns_admin.php:120
682
  msgid "Height of LikeBox"
683
+ msgstr "いいねボックスの高さ"
684
 
685
  #: plugins/sns/old/sns_admin.php:128
686
  msgid "Do not output the OGP"
687
+ msgstr "OGP を出力しません"
688
 
689
  #: plugins/sns/old/sns_admin.php:130
690
  msgid ""
691
  "If other plug-ins are used for the OGP, do not output the OGP using "
692
  "BizVektor."
693
  msgstr ""
694
+ "他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
695
 
696
  #: plugins/sns/old/sns_admin.php:133
697
  msgid "I want to output the OGP tags using BizVektor"
698
+ msgstr "BizVektor を使用して OGP タグを出力したい。"
699
 
700
  #: plugins/sns/old/sns_admin.php:134
701
  msgid "Do not output OGP tags using BizVektor"
702
+ msgstr "BizVektor を使用して OGP タグを出力しない。"
703
 
704
  #: plugins/sns/old/sns_admin.php:149
705
  msgid "Page top"
706
+ msgstr "ページ先頭へ"
 
 
 
 
 
 
 
 
707
 
708
+ #: plugins/sns/sns_admin.php:1
709
+ msgid "SNS Settings"
710
+ msgstr "SNS設定"
 
 
 
711
 
712
+ #: plugins/sns/sns_admin.php:13
713
+ msgid "Do not output the OG"
714
+ msgstr "出力設定"
715
 
716
+ #: plugins/sns/sns_admin.php:15
717
+ msgid ""
718
+ "If other plug-ins are used for the OG, do not output the OG using this "
719
+ "plugin."
720
+ msgstr ""
721
+ "もし他のプラグインやテーマで既にOGタグを出力している場合、このプラグインでの"
722
+ "出力は必要ありません。"
723
 
724
+ #: plugins/sns/sns_admin.php:19
725
+ msgid "Output OG tags(default)"
726
+ msgstr "OGタグを出力する"
727
 
728
+ #: plugins/sns/sns_admin.php:20
729
+ msgid "Do not output OG tags"
730
+ msgstr "OGタグを出力しない"
731
 
732
+ #: plugins/sns/sns_admin.php:40
733
+ msgid "facebook page URL"
734
+ msgstr "FacebookページURL"
 
 
735
 
736
+ #: plugins/sns/sns_admin.php:45
737
+ msgid "OG default image"
 
 
 
 
 
 
738
  msgstr "デフォルトのOGPイメージ"
739
 
740
+ #: plugins/sns/sns_admin.php:55
741
+ msgid "twitter ID"
742
+ msgstr "twitterアカウント"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
743
 
744
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
745
+ msgid "Select all"
746
+ msgstr "全てを選択"
747
 
748
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
749
+ msgid "Function"
750
+ msgstr "有効化"
751
 
752
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
753
+ msgid "Description"
754
+ msgstr "説明"
755
 
756
+ #: vkExUnit_admin.php:21
757
+ msgid "Choose Print Bootstrap css"
758
+ msgstr "Bootstrap の CSS を出力するか選択"
 
 
759
 
760
+ #: vkExUnit_admin.php:26
761
+ msgid "Print Bootstrap css and js"
762
+ msgstr "Bootstrap の CSS と js を出力"
763
 
764
+ #: vkExUnit_admin.php:30
765
+ msgid ""
766
+ "If your using theme has already including Bootstrap, you deactivate this "
767
+ "item."
768
  msgstr ""
769
+ "使用中のテーマで Bootstrap を既に読み込んでいる場合はプラグイン側の読み込みを"
770
+ "無効にできます。"
771
 
772
+ #: vkExUnit_admin.php:39
773
+ msgid "Choose Print link fontawesome."
774
+ msgstr "出力する fontawesome link を選択して下さい。"
775
 
776
+ #: vkExUnit_admin.php:44
777
+ msgid "Print link fontawesome."
778
+ msgstr "fontawesome link タグを出力"
779
 
780
+ #: vkExUnit_admin.php:48
781
+ msgid "Print fontawesome link tag to html head."
782
+ msgstr "fontawesome を読み込む為の link タグを html head 内へ出力します。"
 
783
 
784
+ #: vkExUnit_admin.php:57
785
+ msgid "Choose Print meta description."
786
+ msgstr "出力する meta description を選択して下さい。"
 
 
 
 
 
787
 
788
+ #: vkExUnit_admin.php:62
789
+ msgid "Print meta description"
790
+ msgstr "meta description タグを出力"
791
 
792
+ #: vkExUnit_admin.php:66
793
+ msgid "Print meta description to html head."
794
+ msgstr "description の meta タグを html head 内へ出力します。"
795
 
796
+ #: vkExUnit_admin.php:75
797
+ msgid "Choose Social media cooperation."
798
+ msgstr "連携するソーシャルメディアを選択します。"
799
 
800
+ #: vkExUnit_admin.php:87 vkExUnit_admin.php:121
801
+ msgid "Setting"
802
+ msgstr "設定"
803
 
804
+ #: vkExUnit_admin.php:97
805
+ msgid "Print og tags to html head."
806
+ msgstr "OG タグを html head 内へ出力します。"
807
 
808
+ #: vkExUnit_admin.php:98
809
+ msgid "Print twitter card tags to html head."
810
+ msgstr "Twitter カードタグを html head 内へ出力します。"
811
 
812
+ #: vkExUnit_admin.php:99
813
+ msgid "Print social bookmarks."
814
+ msgstr "ソーシャルブックマークを表示します。"
815
 
816
+ #: vkExUnit_admin.php:100
817
+ msgid "Facebook Page Plugin."
818
+ msgstr "Facebookページプラグインを表示します。"
819
 
820
+ #: vkExUnit_admin.php:110
821
+ msgid "Choose Print Google Analytics tracking code."
822
+ msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
823
 
824
+ #: vkExUnit_admin.php:129
825
+ msgid "Print Google Analytics tracking code."
826
+ msgstr "Google アナリティクスのトラッキングコードを出力します。"
827
 
828
+ #: vkExUnit_admin.php:138
829
+ msgid "Choose Related posts."
830
+ msgstr "関連記事を選択"
831
 
832
+ #: vkExUnit_admin.php:147
833
+ msgid "Print Related posts lists to post content bottom."
834
+ msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
 
 
835
 
836
+ #: vkExUnit_admin.php:156 vkExUnit_admin.php:174
837
+ msgid "Choose other widgets."
838
+ msgstr "Other ウィジェットを選択"
839
 
840
+ #: vkExUnit_admin.php:161
841
+ msgid "Other Widgets"
842
+ msgstr "Other ウィジェット"
 
843
 
844
+ #: vkExUnit_admin.php:165
845
+ msgid "You can use various widgets."
846
+ msgstr "さまざまな機能のウィジェットを使用できるようになります。"
847
 
848
+ #: vkExUnit_admin.php:179
849
+ msgid "CSS customize"
850
+ msgstr "CSSカスタマイズ"
851
 
852
+ #: vkExUnit_admin.php:183
853
+ msgid "You can set Customize CSS."
854
+ msgstr "独自にカスタマイズした CSS を設定できます。"
 
 
855
 
856
+ #~ msgid "Displays a your site's profile"
857
+ #~ msgstr "サイトのプロフィールを表示します"
 
 
 
858
 
859
+ #~ msgid "Site's Profile Text"
860
+ #~ msgstr "Site's Profile Text"
 
 
861
 
862
+ #~ msgid "3PR area Title-1"
863
+ #~ msgstr "3PR エリア1 タイトル"
 
 
864
 
865
+ #~ msgid "3PR area Title-2"
866
+ #~ msgstr "3PR エリア2 タイトル"
 
 
 
867
 
868
+ #~ msgid "3PR area Title-3"
869
+ #~ msgstr "3PR エリア3 タイトル"
 
 
 
870
 
871
+ #~ msgid "3PR Box1 Setting"
872
+ #~ msgstr "3PR ボックス1 設定"
 
873
 
874
+ #~ msgid "3PR Box2 Setting"
875
+ #~ msgstr "3PR ボックス2 設定"
 
876
 
877
+ #~ msgid "3PR Box3 Setting"
878
+ #~ msgstr "3PR ボックス3 設定"
 
879
 
880
  #~ msgid "VK Ex Unit"
881
  #~ msgstr "VK Ex Unit"
languages/vkexunit.pot CHANGED
@@ -1,11 +1,12 @@
1
  # WordPress Blank Pot
2
  # Copyright (C) 2014 ...
3
  # This file is distrubuted under the GPL-2.0+
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: vkExUnit\n"
7
  "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
- "POT-Creation-Date: 2015-02-16 13:33+0900\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: \n"
11
  "Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
@@ -19,6 +20,813 @@ msgstr ""
19
  "X-Poedit-KeywordsList: __;_e;_x;esc_html_e;esc_html__;esc_attr_e;esc_attr__;"
20
  "_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;"
21
  "__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
- "X-Poedit-Basepath: ../\n"
23
- "X-Generator: Poedit 1.5.7\n"
24
  "X-Poedit-SearchPath-0: .\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # WordPress Blank Pot
2
  # Copyright (C) 2014 ...
3
  # This file is distrubuted under the GPL-2.0+
4
+ #, fuzzy
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: vkExUnit\n"
8
  "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
9
+ "POT-Creation-Date: 2015-07-03 12:10+0900\n"
10
  "PO-Revision-Date: \n"
11
  "Last-Translator: \n"
12
  "Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
20
  "X-Poedit-KeywordsList: __;_e;_x;esc_html_e;esc_html__;esc_attr_e;esc_attr__;"
21
  "_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;"
22
  "__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
23
+ "X-Poedit-Basepath: ..\n"
24
+ "X-Generator: Poedit 1.8.2\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
+
27
+ #: common_helpers.php:126
28
+ #, php-format
29
+ msgid "Search Results for : %s"
30
+ msgstr ""
31
+
32
+ #: common_helpers.php:129
33
+ msgid "Not found"
34
+ msgstr ""
35
+
36
+ #: common_helpers.php:138 common_helpers.php:202
37
+ #, php-format
38
+ msgid "Page of %s"
39
+ msgstr ""
40
+
41
+ #: common_helpers.php:162 common_helpers.php:170
42
+ #, php-format
43
+ msgid "About %s"
44
+ msgstr ""
45
+
46
+ #: common_helpers.php:174 common_helpers.php:223
47
+ msgctxt "yearly archives date format"
48
+ msgid "Y"
49
+ msgstr ""
50
+
51
+ #: common_helpers.php:175
52
+ #, php-format
53
+ msgctxt "Yearly archive description"
54
+ msgid "Article of %s."
55
+ msgstr ""
56
+
57
+ #: common_helpers.php:178 common_helpers.php:225
58
+ msgctxt "monthly archives date format"
59
+ msgid "F Y"
60
+ msgstr ""
61
+
62
+ #: common_helpers.php:179 common_helpers.php:183 common_helpers.php:187
63
+ #, php-format
64
+ msgctxt "Archive description"
65
+ msgid "Article of %s."
66
+ msgstr ""
67
+
68
+ #: common_helpers.php:221
69
+ #, php-format
70
+ msgid "Author: %s"
71
+ msgstr ""
72
+
73
+ #: common_helpers.php:227
74
+ msgctxt "daily archives date format"
75
+ msgid "F j, Y"
76
+ msgstr ""
77
+
78
+ #: common_helpers.php:230
79
+ msgctxt "post format archive title"
80
+ msgid "Asides"
81
+ msgstr ""
82
+
83
+ #: common_helpers.php:232
84
+ msgctxt "post format archive title"
85
+ msgid "Galleries"
86
+ msgstr ""
87
+
88
+ #: common_helpers.php:234
89
+ msgctxt "post format archive title"
90
+ msgid "Images"
91
+ msgstr ""
92
+
93
+ #: common_helpers.php:236
94
+ msgctxt "post format archive title"
95
+ msgid "Videos"
96
+ msgstr ""
97
+
98
+ #: common_helpers.php:238
99
+ msgctxt "post format archive title"
100
+ msgid "Quotes"
101
+ msgstr ""
102
+
103
+ #: common_helpers.php:240
104
+ msgctxt "post format archive title"
105
+ msgid "Links"
106
+ msgstr ""
107
+
108
+ #: common_helpers.php:242
109
+ msgctxt "post format archive title"
110
+ msgid "Statuses"
111
+ msgstr ""
112
+
113
+ #: common_helpers.php:244
114
+ msgctxt "post format archive title"
115
+ msgid "Audio"
116
+ msgstr ""
117
+
118
+ #: common_helpers.php:246
119
+ msgctxt "post format archive title"
120
+ msgid "Chats"
121
+ msgstr ""
122
+
123
+ #: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
124
+ msgid "Archives"
125
+ msgstr ""
126
+
127
+ #: plugins/css_customize/css_customize-edit.php:2
128
+ #: plugins/css_customize/css_customize.php:35
129
+ #: plugins/css_customize/css_customize.php:36
130
+ msgid "CSS Customize"
131
+ msgstr ""
132
+
133
+ #: plugins/css_customize/css_customize-edit.php:5
134
+ msgid "You can add custom CSS here."
135
+ msgstr ""
136
+
137
+ #: plugins/css_customize/css_customize-edit.php:10
138
+ msgid "Save CSS"
139
+ msgstr ""
140
+
141
+ #: plugins/css_customize/css_customize.php:94
142
+ msgid "Your custom CSS was saved."
143
+ msgstr ""
144
+
145
+ #: plugins/css_customize/css_customize.php:99
146
+ msgid "Error occured. Please try again."
147
+ msgstr ""
148
+
149
+ #: plugins/google_analytics/ga_admin.php:9
150
+ #: plugins/google_analytics/ga_admin.php:13
151
+ msgid "Google Analytics Settings"
152
+ msgstr ""
153
+
154
+ #: plugins/google_analytics/ga_admin.php:14
155
+ msgid ""
156
+ "Please fill in the Google Analytics ID from the Analytics embed code used in "
157
+ "the site."
158
+ msgstr ""
159
+
160
+ #: plugins/google_analytics/ga_admin.php:16 plugins/sns/old/sns_admin.php:20
161
+ #: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
162
+ #: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
163
+ #: plugins/sns/sns_admin.php:50
164
+ msgid "ex) "
165
+ msgstr ""
166
+
167
+ #: plugins/google_analytics/ga_admin.php:19
168
+ msgid ""
169
+ "Please select the type of Analytics code . (If you are unsure you can skip "
170
+ "this.)"
171
+ msgstr ""
172
+
173
+ #: plugins/google_analytics/ga_admin.php:23
174
+ msgid "To output the Universal Analytics code (default)"
175
+ msgstr ""
176
+
177
+ #: plugins/google_analytics/ga_admin.php:24
178
+ msgid "To output only normal code"
179
+ msgstr ""
180
+
181
+ #: plugins/google_analytics/ga_admin.php:25
182
+ msgid "To output both types"
183
+ msgstr ""
184
+
185
+ #: plugins/meta_description/meta_description-post.php:9
186
+ #: plugins/meta_description/meta_description-post.php:10
187
+ #: plugins/meta_description/meta_description-post.php:17
188
+ msgid "Meta Keywords"
189
+ msgstr ""
190
+
191
+ #: plugins/meta_description/meta_description-post.php:18
192
+ msgid ""
193
+ "To distinguish between individual keywords, please enter a , delimiter "
194
+ "(optional)."
195
+ msgstr ""
196
+
197
+ #: plugins/meta_description/meta_description-post.php:19
198
+ msgctxt "link to seo setting"
199
+ msgid ""
200
+ msgstr ""
201
+
202
+ #: plugins/meta_description/meta_description-post.php:20
203
+ #, php-format
204
+ msgid "* keywords common to the entire site can be set from %s."
205
+ msgstr ""
206
+
207
+ #: plugins/other_widget/old/widget-archive-list.php:12
208
+ msgid ""
209
+ "Displays a list of archives. You can choose the post type and also to "
210
+ "display archives by month or by year."
211
+ msgstr ""
212
+
213
+ #: plugins/other_widget/old/widget-archive-list.php:14
214
+ msgid "archive list"
215
+ msgstr ""
216
+
217
+ #: plugins/other_widget/old/widget-archive-list.php:49
218
+ #: plugins/other_widget/old/widget-archive-list.php:50
219
+ msgid "Monthly archives"
220
+ msgstr ""
221
+
222
+ #: plugins/other_widget/old/widget-archive-list.php:59
223
+ msgid "Title"
224
+ msgstr ""
225
+
226
+ #: plugins/other_widget/old/widget-archive-list.php:63
227
+ msgid "Post type"
228
+ msgstr ""
229
+
230
+ #: plugins/other_widget/old/widget-child-page-list.php:9
231
+ msgid "Displays list of child page for the current page."
232
+ msgstr ""
233
+
234
+ #: plugins/other_widget/old/widget-child-page-list.php:11
235
+ msgid "child pages list"
236
+ msgstr ""
237
+
238
+ #: plugins/other_widget/old/widget-page-content.php:10
239
+ msgid "Displays the content of a chosen page."
240
+ msgstr ""
241
+
242
+ #: plugins/other_widget/old/widget-page-content.php:12
243
+ msgid "page content for top"
244
+ msgstr ""
245
+
246
+ #: plugins/other_widget/old/widget-page-content.php:30
247
+ #: plugins/other_widget/old/widget-taxonomy-list.php:61
248
+ msgid "Display page"
249
+ msgstr ""
250
+
251
+ #: plugins/other_widget/old/widget-page-content.php:38
252
+ msgid "display title"
253
+ msgstr ""
254
+
255
+ #: plugins/other_widget/old/widget-page-content.php:61
256
+ msgid "Edit"
257
+ msgstr ""
258
+
259
+ #: plugins/other_widget/old/widget-rss-widget.php:9
260
+ msgid "Displays entries list from a RSS feed link."
261
+ msgstr ""
262
+
263
+ #: plugins/other_widget/old/widget-rss-widget.php:11
264
+ msgid "RSS entries for top"
265
+ msgstr ""
266
+
267
+ #: plugins/other_widget/old/widget-rss-widget.php:25
268
+ msgid "Blog entries"
269
+ msgstr ""
270
+
271
+ #: plugins/other_widget/old/widget-rss-widget.php:30
272
+ msgid "Heading title"
273
+ msgstr ""
274
+
275
+ #: plugins/other_widget/old/widget-taxonomy-list.php:11
276
+ msgid "Displays a categories, tags or format list."
277
+ msgstr ""
278
+
279
+ #: plugins/other_widget/old/widget-taxonomy-list.php:17
280
+ msgid "categories/tags list"
281
+ msgstr ""
282
+
283
+ #: plugins/other_widget/old/widget-taxonomy-list.php:48
284
+ #: plugins/other_widget/old/widget-taxonomy-list.php:49
285
+ msgid "Category"
286
+ msgstr ""
287
+
288
+ #: plugins/other_widget/old/widget-taxonomy-list.php:57
289
+ msgid "Label to display"
290
+ msgstr ""
291
+
292
+ #: plugins/other_widget/old/widget-taxonomy-list.php:76
293
+ msgid "Blog"
294
+ msgstr ""
295
+
296
+ #: plugins/other_widget/widget-3pr-area.php:11
297
+ msgid "Displays a 3PR area"
298
+ msgstr ""
299
+
300
+ #: plugins/other_widget/widget-3pr-area.php:13
301
+ #: plugins/other_widget/widget-3pr-area.php:247
302
+ #: plugins/other_widget/widget-3pr-area.php:295
303
+ #: plugins/other_widget/widget-3pr-area.php:345
304
+ msgid "3PR area"
305
+ msgstr ""
306
+
307
+ #: plugins/other_widget/widget-3pr-area.php:18
308
+ msgid "3PR area1 title"
309
+ msgstr ""
310
+
311
+ #: plugins/other_widget/widget-3pr-area.php:26
312
+ msgid "3PR area2 title"
313
+ msgstr ""
314
+
315
+ #: plugins/other_widget/widget-3pr-area.php:34
316
+ msgid "3PR area3 title"
317
+ msgstr ""
318
+
319
+ #: plugins/other_widget/widget-3pr-area.php:47
320
+ msgid "3PR area1 setting"
321
+ msgstr ""
322
+
323
+ #: plugins/other_widget/widget-3pr-area.php:49
324
+ #: plugins/other_widget/widget-3pr-area.php:101
325
+ #: plugins/other_widget/widget-3pr-area.php:154
326
+ #: plugins/other_widget/widget-new-posts.php:75
327
+ #: plugins/other_widget/widget-profile.php:35
328
+ #: plugins/sns/function_fbPagePlugin.php:75
329
+ msgid "Title:"
330
+ msgstr ""
331
+
332
+ #: plugins/other_widget/widget-3pr-area.php:55
333
+ #: plugins/other_widget/widget-3pr-area.php:107
334
+ #: plugins/other_widget/widget-3pr-area.php:160
335
+ msgid "Select image for PC:"
336
+ msgstr ""
337
+
338
+ #: plugins/other_widget/widget-3pr-area.php:61
339
+ #: plugins/other_widget/widget-3pr-area.php:78
340
+ #: plugins/other_widget/widget-3pr-area.php:113
341
+ #: plugins/other_widget/widget-3pr-area.php:131
342
+ #: plugins/other_widget/widget-3pr-area.php:166
343
+ #: plugins/other_widget/widget-3pr-area.php:183
344
+ #: plugins/other_widget/widget-profile.php:46
345
+ msgid "Select image"
346
+ msgstr ""
347
+
348
+ #: plugins/other_widget/widget-3pr-area.php:62
349
+ #: plugins/other_widget/widget-3pr-area.php:79
350
+ #: plugins/other_widget/widget-3pr-area.php:114
351
+ #: plugins/other_widget/widget-3pr-area.php:132
352
+ #: plugins/other_widget/widget-3pr-area.php:167
353
+ #: plugins/other_widget/widget-3pr-area.php:184
354
+ #: plugins/other_widget/widget-profile.php:47
355
+ msgid "Clear image"
356
+ msgstr ""
357
+
358
+ #: plugins/other_widget/widget-3pr-area.php:72
359
+ #: plugins/other_widget/widget-3pr-area.php:125
360
+ #: plugins/other_widget/widget-3pr-area.php:177
361
+ msgid "Select image for Mobile:"
362
+ msgstr ""
363
+
364
+ #: plugins/other_widget/widget-3pr-area.php:88
365
+ #: plugins/other_widget/widget-3pr-area.php:141
366
+ #: plugins/other_widget/widget-3pr-area.php:194
367
+ msgid "Summary Text:"
368
+ msgstr ""
369
+
370
+ #: plugins/other_widget/widget-3pr-area.php:93
371
+ #: plugins/other_widget/widget-3pr-area.php:146
372
+ #: plugins/other_widget/widget-3pr-area.php:199
373
+ msgid "Link URL:"
374
+ msgstr ""
375
+
376
+ #: plugins/other_widget/widget-3pr-area.php:99
377
+ msgid "3PR area2 setting"
378
+ msgstr ""
379
+
380
+ #: plugins/other_widget/widget-3pr-area.php:152
381
+ msgid "3PR area3 setting"
382
+ msgstr ""
383
+
384
+ #: plugins/other_widget/widget-3pr-area.php:281
385
+ #: plugins/other_widget/widget-3pr-area.php:331
386
+ #: plugins/other_widget/widget-3pr-area.php:381
387
+ msgid "Read more"
388
+ msgstr ""
389
+
390
+ #: plugins/other_widget/widget-new-posts.php:11
391
+ msgid "Displays a list of your most recent posts"
392
+ msgstr ""
393
+
394
+ #: plugins/other_widget/widget-new-posts.php:13
395
+ #: plugins/other_widget/widget-new-posts.php:23
396
+ #: plugins/other_widget/widget-new-posts.php:66
397
+ msgid "Recent Posts"
398
+ msgstr ""
399
+
400
+ #: plugins/other_widget/widget-new-posts.php:80
401
+ msgid "Display count"
402
+ msgstr ""
403
+
404
+ #: plugins/other_widget/widget-new-posts.php:85
405
+ msgid "Slug for the custom type you want to display"
406
+ msgstr ""
407
+
408
+ #: plugins/other_widget/widget-profile.php:11
409
+ msgid "Displays a your profile"
410
+ msgstr ""
411
+
412
+ #: plugins/other_widget/widget-profile.php:13
413
+ #: plugins/other_widget/widget-profile.php:19
414
+ msgid "Profile"
415
+ msgstr ""
416
+
417
+ #: plugins/other_widget/widget-profile.php:22
418
+ msgid "Profile Text"
419
+ msgstr ""
420
+
421
+ #: plugins/other_widget/widget-profile.php:40
422
+ msgid "Select Profile image:"
423
+ msgstr ""
424
+
425
+ #: plugins/other_widget/widget-profile.php:57
426
+ msgid "Profile Text:"
427
+ msgstr ""
428
+
429
+ #: plugins/other_widget/widget-profile.php:65
430
+ msgid "Facebook URL:"
431
+ msgstr ""
432
+
433
+ #: plugins/other_widget/widget-profile.php:70
434
+ msgid "Twitter URL:"
435
+ msgstr ""
436
+
437
+ #: plugins/other_widget/widget-profile.php:75
438
+ msgid "Email Address:"
439
+ msgstr ""
440
+
441
+ #: plugins/other_widget/widget-profile.php:80
442
+ msgid "Youtube URL:"
443
+ msgstr ""
444
+
445
+ #: plugins/other_widget/widget-profile.php:85
446
+ msgid "RSS URL:"
447
+ msgstr ""
448
+
449
+ #: plugins/other_widget/widget-profile.php:90
450
+ msgid "instagram URL:"
451
+ msgstr ""
452
+
453
+ #: plugins/other_widget/widget-profile.php:94
454
+ msgid "linkedin URL:"
455
+ msgstr ""
456
+
457
+ #: plugins/other_widget/widget-profile.php:124
458
+ msgid "Site's Profile"
459
+ msgstr ""
460
+
461
+ #: plugins/related_posts/related_posts.php:34 vkExUnit_admin.php:143
462
+ msgid "Related posts"
463
+ msgstr ""
464
+
465
+ #: plugins/sns/function_fbPagePlugin.php:10
466
+ msgid "Displays a Facebook Page Plugin"
467
+ msgstr ""
468
+
469
+ #: plugins/sns/function_fbPagePlugin.php:85
470
+ msgid "Height"
471
+ msgstr ""
472
+
473
+ #: plugins/sns/function_fbPagePlugin.php:90
474
+ msgid "Show Friend's Faces"
475
+ msgstr ""
476
+
477
+ #: plugins/sns/function_fbPagePlugin.php:95
478
+ msgid "Hide Cover Photo"
479
+ msgstr ""
480
+
481
+ #: plugins/sns/function_fbPagePlugin.php:100
482
+ msgid "Show Page Posts"
483
+ msgstr ""
484
+
485
+ #: plugins/sns/function_follow.php:11
486
+ msgid "Follow me!"
487
+ msgstr ""
488
+
489
+ #: plugins/sns/old/sns.php:378
490
+ msgid "* It is necessary to set the Theme options page."
491
+ msgstr ""
492
+
493
+ #: plugins/sns/old/sns_admin.php:12
494
+ msgid "Social media"
495
+ msgstr ""
496
+
497
+ #: plugins/sns/old/sns_admin.php:13
498
+ msgid "If you are unsure, you can leave for later."
499
+ msgstr ""
500
+
501
+ #: plugins/sns/old/sns_admin.php:18
502
+ msgid ""
503
+ "If you wish to link to a personal account or a Facebook page banner will be "
504
+ "displayed if you enter the URL."
505
+ msgstr ""
506
+
507
+ #: plugins/sns/old/sns_admin.php:26 plugins/sns/sns_admin.php:32
508
+ msgid "facebook application ID"
509
+ msgstr ""
510
+
511
+ #: plugins/sns/old/sns_admin.php:28 plugins/sns/sns_admin.php:34
512
+ msgid "I will check and get the application ID"
513
+ msgstr ""
514
+
515
+ #: plugins/sns/old/sns_admin.php:29 plugins/sns/sns_admin.php:35
516
+ msgid ""
517
+ "* If an application ID is not specified, neither a Like button nor the "
518
+ "comment field displays and operates correctly."
519
+ msgstr ""
520
+
521
+ #: plugins/sns/old/sns_admin.php:30 plugins/sns/sns_admin.php:36
522
+ msgid ""
523
+ "Please search for terms as [get Facebook application ID] If you do not know "
524
+ "much about how to get application ID for Facebook."
525
+ msgstr ""
526
+
527
+ #: plugins/sns/old/sns_admin.php:35
528
+ msgid "Facebook user ID (optional)"
529
+ msgstr ""
530
+
531
+ #: plugins/sns/old/sns_admin.php:36
532
+ msgid "Please enter the Facebook user ID of the administrator."
533
+ msgstr ""
534
+
535
+ #: plugins/sns/old/sns_admin.php:38
536
+ msgid "* It is not the application ID of the Facebook page."
537
+ msgstr ""
538
+
539
+ #: plugins/sns/old/sns_admin.php:39
540
+ msgid ""
541
+ "You can see the personal Facebook ID when you access the following url "
542
+ "http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
543
+ msgstr ""
544
+
545
+ #: plugins/sns/old/sns_admin.php:40
546
+ msgid ""
547
+ "Please search for terms as [find facebook user ID] if you are still not sure."
548
+ msgstr ""
549
+
550
+ #: plugins/sns/old/sns_admin.php:45
551
+ msgid "twitter account"
552
+ msgstr ""
553
+
554
+ #: plugins/sns/old/sns_admin.php:46
555
+ msgid ""
556
+ "If you would like to link to a Twitter account, banner will be displayed if "
557
+ "you enter the account name."
558
+ msgstr ""
559
+
560
+ #: plugins/sns/old/sns_admin.php:48
561
+ msgid "widget"
562
+ msgstr ""
563
+
564
+ #: plugins/sns/old/sns_admin.php:49
565
+ #, php-format
566
+ msgid ""
567
+ "* If you prefer to use Twitter widgets etc, this can be left blank, paste "
568
+ "the source code into a [text] %s here."
569
+ msgstr ""
570
+
571
+ #: plugins/sns/old/sns_admin.php:56
572
+ msgid "OGP default image"
573
+ msgstr ""
574
+
575
+ #: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:46
576
+ msgid ""
577
+ "If, for example someone pressed the Facebook [Like] button, this is the "
578
+ "image that appears on the Facebook timeline."
579
+ msgstr ""
580
+
581
+ #: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:47
582
+ msgid "If a featured image is specified for the page, it takes precedence."
583
+ msgstr ""
584
+
585
+ #: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:49
586
+ msgid "Select an image"
587
+ msgstr ""
588
+
589
+ #: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:51
590
+ msgid ""
591
+ "* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
592
+ "recommended."
593
+ msgstr ""
594
+
595
+ #: plugins/sns/old/sns_admin.php:67
596
+ msgid "Social buttons"
597
+ msgstr ""
598
+
599
+ #: plugins/sns/old/sns_admin.php:68
600
+ msgid "Please check the type of page that displays the social button."
601
+ msgstr ""
602
+
603
+ #: plugins/sns/old/sns_admin.php:71 plugins/sns/old/sns_admin.php:88
604
+ #: plugins/sns/old/sns_admin.php:108
605
+ msgctxt "sns display"
606
+ msgid "Home page"
607
+ msgstr ""
608
+
609
+ #: plugins/sns/old/sns_admin.php:73 plugins/sns/old/sns_admin.php:90
610
+ msgctxt "sns display"
611
+ msgid "Page"
612
+ msgstr ""
613
+
614
+ #: plugins/sns/old/sns_admin.php:75 plugins/sns/old/sns_admin.php:92
615
+ #: plugins/sns/old/sns_admin.php:94
616
+ msgctxt "sns display"
617
+ msgid "Post"
618
+ msgstr ""
619
+
620
+ #: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
621
+ msgid ""
622
+ "Within the type of page that is checked, if there is a particular page you "
623
+ "do not wish to display, enter the Page ID. If multiple pages, please "
624
+ "separate by commas."
625
+ msgstr ""
626
+
627
+ #: plugins/sns/old/sns_admin.php:84
628
+ msgid "facebook comments box"
629
+ msgstr ""
630
+
631
+ #: plugins/sns/old/sns_admin.php:85
632
+ msgid "Please check the type of the page to display Facebook comments."
633
+ msgstr ""
634
+
635
+ #: plugins/sns/old/sns_admin.php:104
636
+ msgid "If you wish to use Facebook LikeBox, please check the location."
637
+ msgstr ""
638
+
639
+ #: plugins/sns/old/sns_admin.php:105
640
+ msgid "* Please be sure to set Facebook application ID."
641
+ msgstr ""
642
+
643
+ #: plugins/sns/old/sns_admin.php:110
644
+ msgctxt "sns display"
645
+ msgid "Side bar"
646
+ msgstr ""
647
+
648
+ #: plugins/sns/old/sns_admin.php:113
649
+ msgid "URL of the Facebook page."
650
+ msgstr ""
651
+
652
+ #: plugins/sns/old/sns_admin.php:116
653
+ msgid "Display stream"
654
+ msgstr ""
655
+
656
+ #: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
657
+ msgid "Display"
658
+ msgstr ""
659
+
660
+ #: plugins/sns/old/sns_admin.php:118
661
+ msgid "Display faces"
662
+ msgstr ""
663
+
664
+ #: plugins/sns/old/sns_admin.php:120
665
+ msgid "Height of LikeBox"
666
+ msgstr ""
667
+
668
+ #: plugins/sns/old/sns_admin.php:128
669
+ msgid "Do not output the OGP"
670
+ msgstr ""
671
+
672
+ #: plugins/sns/old/sns_admin.php:130
673
+ msgid ""
674
+ "If other plug-ins are used for the OGP, do not output the OGP using "
675
+ "BizVektor."
676
+ msgstr ""
677
+
678
+ #: plugins/sns/old/sns_admin.php:133
679
+ msgid "I want to output the OGP tags using BizVektor"
680
+ msgstr ""
681
+
682
+ #: plugins/sns/old/sns_admin.php:134
683
+ msgid "Do not output OGP tags using BizVektor"
684
+ msgstr ""
685
+
686
+ #: plugins/sns/old/sns_admin.php:149
687
+ msgid "Page top"
688
+ msgstr ""
689
+
690
+ #: plugins/sns/sns_admin.php:1
691
+ msgid "SNS Settings"
692
+ msgstr ""
693
+
694
+ #: plugins/sns/sns_admin.php:13
695
+ msgid "Do not output the OG"
696
+ msgstr ""
697
+
698
+ #: plugins/sns/sns_admin.php:15
699
+ msgid ""
700
+ "If other plug-ins are used for the OG, do not output the OG using this "
701
+ "plugin."
702
+ msgstr ""
703
+
704
+ #: plugins/sns/sns_admin.php:19
705
+ msgid "Output OG tags(default)"
706
+ msgstr ""
707
+
708
+ #: plugins/sns/sns_admin.php:20
709
+ msgid "Do not output OG tags"
710
+ msgstr ""
711
+
712
+ #: plugins/sns/sns_admin.php:40
713
+ msgid "facebook page URL"
714
+ msgstr ""
715
+
716
+ #: plugins/sns/sns_admin.php:45
717
+ msgid "OG default image"
718
+ msgstr ""
719
+
720
+ #: plugins/sns/sns_admin.php:55
721
+ msgid "twitter ID"
722
+ msgstr ""
723
+
724
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
725
+ msgid "Select all"
726
+ msgstr ""
727
+
728
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
729
+ msgid "Function"
730
+ msgstr ""
731
+
732
+ #: vkExUnit_admin.php:12 vkExUnit_admin.php:191
733
+ msgid "Description"
734
+ msgstr ""
735
+
736
+ #: vkExUnit_admin.php:21
737
+ msgid "Choose Print Bootstrap css"
738
+ msgstr ""
739
+
740
+ #: vkExUnit_admin.php:26
741
+ msgid "Print Bootstrap css and js"
742
+ msgstr ""
743
+
744
+ #: vkExUnit_admin.php:30
745
+ msgid ""
746
+ "If your using theme has already including Bootstrap, you deactivate this "
747
+ "item."
748
+ msgstr ""
749
+
750
+ #: vkExUnit_admin.php:39
751
+ msgid "Choose Print link fontawesome."
752
+ msgstr ""
753
+
754
+ #: vkExUnit_admin.php:44
755
+ msgid "Print link fontawesome."
756
+ msgstr ""
757
+
758
+ #: vkExUnit_admin.php:48
759
+ msgid "Print fontawesome link tag to html head."
760
+ msgstr ""
761
+
762
+ #: vkExUnit_admin.php:57
763
+ msgid "Choose Print meta description."
764
+ msgstr ""
765
+
766
+ #: vkExUnit_admin.php:62
767
+ msgid "Print meta description"
768
+ msgstr ""
769
+
770
+ #: vkExUnit_admin.php:66
771
+ msgid "Print meta description to html head."
772
+ msgstr ""
773
+
774
+ #: vkExUnit_admin.php:75
775
+ msgid "Choose Social media cooperation."
776
+ msgstr ""
777
+
778
+ #: vkExUnit_admin.php:87 vkExUnit_admin.php:121
779
+ msgid "Setting"
780
+ msgstr ""
781
+
782
+ #: vkExUnit_admin.php:97
783
+ msgid "Print og tags to html head."
784
+ msgstr ""
785
+
786
+ #: vkExUnit_admin.php:98
787
+ msgid "Print twitter card tags to html head."
788
+ msgstr ""
789
+
790
+ #: vkExUnit_admin.php:99
791
+ msgid "Print social bookmarks."
792
+ msgstr ""
793
+
794
+ #: vkExUnit_admin.php:100
795
+ msgid "Facebook Page Plugin."
796
+ msgstr ""
797
+
798
+ #: vkExUnit_admin.php:110
799
+ msgid "Choose Print Google Analytics tracking code."
800
+ msgstr ""
801
+
802
+ #: vkExUnit_admin.php:129
803
+ msgid "Print Google Analytics tracking code."
804
+ msgstr ""
805
+
806
+ #: vkExUnit_admin.php:138
807
+ msgid "Choose Related posts."
808
+ msgstr ""
809
+
810
+ #: vkExUnit_admin.php:147
811
+ msgid "Print Related posts lists to post content bottom."
812
+ msgstr ""
813
+
814
+ #: vkExUnit_admin.php:156 vkExUnit_admin.php:174
815
+ msgid "Choose other widgets."
816
+ msgstr ""
817
+
818
+ #: vkExUnit_admin.php:161
819
+ msgid "Other Widgets"
820
+ msgstr ""
821
+
822
+ #: vkExUnit_admin.php:165
823
+ msgid "You can use various widgets."
824
+ msgstr ""
825
+
826
+ #: vkExUnit_admin.php:179
827
+ msgid "CSS customize"
828
+ msgstr ""
829
+
830
+ #: vkExUnit_admin.php:183
831
+ msgid "You can set Customize CSS."
832
+ msgstr ""
plugins/css_customize/css_customize.php CHANGED
@@ -32,8 +32,8 @@ class biz_vektor_css_customize{
32
  $capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
33
  add_submenu_page(
34
  'vkExUnit_setting_page',
35
- __( 'CSS Customize', 'biz-vektor' ),
36
- __( 'CSS Customize', 'biz-vektor' ),
37
  // $capability_required,
38
  'activate_plugins',
39
  'vkExUnit_css_customize',
32
  $capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
33
  add_submenu_page(
34
  'vkExUnit_setting_page',
35
+ __( 'CSS Customize', 'vkExUnit' ),
36
+ __( 'CSS Customize', 'vkExUnit' ),
37
  // $capability_required,
38
  'activate_plugins',
39
  'vkExUnit_css_customize',
plugins/dashboard_info_widget/dashboard-info-widget.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*--------------------------------------------------*/
3
+ /* Display a Ex_unit information on the dashboard
4
+ /*--------------------------------------------------*/
5
+
6
+ add_filter('ex_unit_is_plugin_dashboard_info_widget', 'ex_unit_dash_beacon', 10, 1 );
7
+ function ex_unit_dash_beacon($flag){
8
+ $flag = true;
9
+ return $flag;
10
+ }
11
+
12
+ //displays dashboard widget only for Japanese version
13
+ if ( 'ja' == get_locale() ) {
14
+ add_action( 'wp_dashboard_setup', 'ex_unit_dashboard_widget' );
15
+ }
16
+
17
+ function ex_unit_dashboard_widget()
18
+ {
19
+ wp_add_dashboard_widget(
20
+ 'ex_unit_dashboard_widget',
21
+ 'Ex-unit ニュース',
22
+ 'ex_unit_dashboard_widget_function'
23
+ );
24
+ }
25
+
26
+ function ex_unit_dashboard_widget_function()
27
+ {
28
+
29
+ include_once(ABSPATH . WPINC . '/feed.php');
30
+
31
+ $my_feeds = array(
32
+ array('feed_url' => 'http://ex-unit.bizvektor.com/?feed?'.date('his'))
33
+ );
34
+
35
+
36
+ foreach ( $my_feeds as $feed )
37
+ {
38
+ $rss = fetch_feed( $feed["feed_url"] );
39
+
40
+ if ( !is_wp_error($rss) )
41
+ {
42
+ $output = '';
43
+
44
+ $maxitems = $rss->get_item_quantity( 5 ); //number of news to display (maximum)
45
+ $rss_items = $rss->get_items( 0, $maxitems );
46
+
47
+ $output .= '<div class="rss-widget">';
48
+ $output .= '<ul>';
49
+
50
+ if ( $maxitems == 0 )
51
+ {
52
+ $output .= '<li>';
53
+ $output .= '表示するニュースがありません。';
54
+ $output .= '</li>';
55
+ }
56
+ else
57
+ {
58
+ foreach ( $rss_items as $item )
59
+ {
60
+ $test_date = $item->get_local_date();
61
+ $content = $item->get_content();
62
+
63
+ if( isset($test_date) && !is_null($test_date) )
64
+ $item_date = $item->get_date( get_option('date_format') ) . '<br />';
65
+ else
66
+ $item_date = '';
67
+
68
+ $output .= '<li style="color:#777;">';
69
+ $output .= $item_date;
70
+ $output .= '<a href="' . esc_url( $item->get_permalink() ) . '" title="' . $item_date . '">';
71
+ $output .= esc_html( $item->get_title() );
72
+ $output .= '</a>';
73
+ $output .= '</li>';
74
+ }
75
+ }
76
+
77
+ $output .= '</ul>';
78
+ $output .= '</div>';
79
+
80
+ echo $output;
81
+ }
82
+ }
83
+ }
plugins/google_analytics/google_analytics.php CHANGED
@@ -15,9 +15,10 @@ function vkExUnit_ga_options_init() {
15
  add_option( 'vkExUnit_ga_options', vkExUnit_get_ga_options_default() );
16
 
17
  vkExUnit_register_setting(
18
- 'vkExUnit_ga_options_fields', // Immediately following form tag of edit page.
19
  'vkExUnit_ga_options', // name attr
20
- 'vkExUnit_ga_options_validate'
 
21
  );
22
  }
23
  add_action( 'admin_init', 'vkExUnit_ga_options_init' );
@@ -99,6 +100,3 @@ ga('send', 'pageview');
99
  }
100
  }
101
  }
102
-
103
-
104
- add_action( 'vkExUnit_main_config' , 'vkExUnit_add_ga_options_page' );
15
  add_option( 'vkExUnit_ga_options', vkExUnit_get_ga_options_default() );
16
 
17
  vkExUnit_register_setting(
18
+ __('Google Analytics Settings', 'vkExUnit'), // Immediately following form tag of edit page.
19
  'vkExUnit_ga_options', // name attr
20
+ 'vkExUnit_ga_options_validate',
21
+ 'vkExUnit_add_ga_options_page'
22
  );
23
  }
24
  add_action( 'admin_init', 'vkExUnit_ga_options_init' );
100
  }
101
  }
102
  }
 
 
 
plugins/other_widget/widget-3pr-area.php CHANGED
@@ -15,7 +15,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
15
  }
16
  function form($instance){
17
  $defaults = array(
18
- 'label-1' => __( '3PR area Title-1', 'vkExUnit' ),
19
  'media-3pr-image-1' => '',
20
  'media-3pr-alt-1' => '',
21
  'media-3pr-image-sp-1' => '',
@@ -23,7 +23,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
23
  'summary-1' => '',
24
  'linkurl-1' => '',
25
 
26
- 'label-2' => __( '3PR area Title-2', 'vkExUnit' ),
27
  'media-3pr-image-2' => '',
28
  'media-3pr-alt-2' => '',
29
  'media-3pr-image-sp-2' => '',
@@ -31,7 +31,7 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
31
  'summary-2' => '',
32
  'linkurl-2' => '',
33
 
34
- 'label-3' => __( '3PR area Title-3', 'vkExUnit' ),
35
  'media-3pr-image-3' => '',
36
  'media-3pr-alt-3' => '',
37
  'media-3pr-image-sp-3' => '',
@@ -44,10 +44,10 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
44
 
45
  <?php // 3PR area 1 =========================================================== ?>
46
  <?php // 3PR area 1 タイトル ?>
47
- <h5 class="pr-sub-title"><?php _e( '3PR Box1 Setting', 'vkExUnit' ); ?></h5>
48
  <p>
49
  <label for="<?php echo $this->get_field_id('label-1'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
50
- <input type="text" id="<?php echo $this->get_field_id('label-1'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('label-1'); ?>" value="<?php echo $instance['label-1']; ?>" />
51
  </p>
52
 
53
  <?php // 3PR area 1 メディアアップローダー PC ?>
@@ -86,20 +86,21 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
86
 
87
  <?php // 概要テキスト ?>
88
  <p><label for="<?php echo $this->get_field_id('summary-1'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label><br/>
89
- <input type="text" id="<?php echo $this->get_field_id('summary-1'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('summary-1'); ?>" value="<?php echo $instance['summary-1']; ?>" />
90
  </p>
91
 
 
 
92
  <?php // リンク先_URL ?>
93
  <p><label for="<?php echo $this->get_field_id('linkurl-1'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
94
- <input type="text" id="<?php echo $this->get_field_id('linkurl-1'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('linkurl-1'); ?>" value="<?php echo $instance['linkurl-1']; ?>" />
95
  </p>
96
 
97
  <hr /><?php // 3PR area 2 =================================================?>
98
  <?php // 3PR area 2 タイトル ?>
99
- <h5 class="pr-sub-title"><?php _e( '3PR Box2 Setting', 'vkExUnit' ); ?></h5>
100
  <p>
101
  <label for="<?php echo $this->get_field_id('label-2'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
102
- <input type="text" id="<?php echo $this->get_field_id('label-2'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('label-2'); ?>" value="<?php echo $instance['label-2']; ?>" />
103
  </p>
104
 
105
  <?php // 3PR area 1 メディアアップローダー PC ?>
@@ -138,21 +139,20 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
138
  </div>
139
 
140
  <?php //概要テキスト ?>
141
- <p><label for="<?php echo $this->get_field_id('summary-2'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label><br/>
142
- <input type="text" id="<?php echo $this->get_field_id('summary-2'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('summary-2'); ?>" value="<?php echo $instance['summary-2']; ?>" />
143
- </p>
144
 
145
  <?php //リンク先_URL ?>
146
  <p><label for="<?php echo $this->get_field_id('linkurl-2'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
147
- <input type="text" id="<?php echo $this->get_field_id('linkurl-2'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('linkurl-2'); ?>" value="<?php echo $instance['linkurl-2']; ?>" />
148
  </p>
149
 
150
  <hr /><?php // 3PR area 3 =================================================?>
151
  <?php // 3PR area 3 タイトル ?>
152
- <h5 class="pr-sub-title"><?php _e( '3PR Box3 Setting', 'vkExUnit' ); ?></h5>
153
  <p>
154
  <label for="<?php echo $this->get_field_id('label-3'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
155
- <input type="text" id="<?php echo $this->get_field_id('label-3'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('label-3'); ?>" value="<?php echo $instance['label-3']; ?>" />
156
  </p>
157
 
158
  <?php // 3PR area 1 メディアアップローダー PC ?>
@@ -191,13 +191,13 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
191
  </div>
192
 
193
  <?php //概要テキスト ?>
194
- <p><label for="<?php echo $this->get_field_id('summary-3'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label><br/>
195
- <input type="text" id="<?php echo $this->get_field_id('summary-3'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('summary-3'); ?>" value="<?php echo $instance['summary-3']; ?>" />
196
  </p>
 
197
 
198
  <?php //リンク先_URL ?>
199
  <p><label for="<?php echo $this->get_field_id('linkurl-3'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
200
- <input type="text" id="<?php echo $this->get_field_id('linkurl-3'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('linkurl-3'); ?>" value="<?php echo $instance['linkurl-3']; ?>" />
201
  </p>
202
 
203
  <?php }
@@ -275,10 +275,10 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
275
  <!--//.media-pr -->
276
  <?php endif; ?>
277
  <?php if( !empty($instance['summary-1']) ){
278
- echo '<p class="summary">'.esc_attr($instance['summary-1']).'</p>';
279
  }
280
  if( !empty($instance['linkurl-1']) ){
281
- echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-1']).'">詳しくはこちら</a></p>';
282
  }
283
  ?>
284
  </div>
@@ -324,11 +324,11 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
324
 
325
  <?php
326
  if( !empty($instance['summary-2']) ){
327
- echo '<p class="summary">'.esc_attr($instance['summary-2']).'</p>';
328
  }
329
 
330
  if( !empty($instance['linkurl-2']) ){
331
- echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-2']).'">詳しくはこちら</a></p>';
332
  }
333
  ?>
334
  </div>
@@ -375,10 +375,10 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
375
 
376
  <?php
377
  if( !empty($instance['summary-3']) ){
378
- echo '<p class="summary">'.esc_attr($instance['summary-3']).'</p>';
379
  }
380
  if( !empty($instance['linkurl-3']) ){
381
- echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-3']).'">詳しくはこちら</a></p>';
382
  }
383
  ?>
384
  </div>
@@ -410,6 +410,12 @@ echo '<style>
410
  background: #EDEDED;
411
  font-size: 1em;
412
  }
 
 
 
 
 
 
413
  </style>'.PHP_EOL;
414
  }
415
  add_action("admin_print_styles-widgets.php", "style_3PR");
15
  }
16
  function form($instance){
17
  $defaults = array(
18
+ 'label-1' => __( '3PR area1 title', 'vkExUnit' ),
19
  'media-3pr-image-1' => '',
20
  'media-3pr-alt-1' => '',
21
  'media-3pr-image-sp-1' => '',
23
  'summary-1' => '',
24
  'linkurl-1' => '',
25
 
26
+ 'label-2' => __( '3PR area2 title', 'vkExUnit' ),
27
  'media-3pr-image-2' => '',
28
  'media-3pr-alt-2' => '',
29
  'media-3pr-image-sp-2' => '',
31
  'summary-2' => '',
32
  'linkurl-2' => '',
33
 
34
+ 'label-3' => __( '3PR area3 title', 'vkExUnit' ),
35
  'media-3pr-image-3' => '',
36
  'media-3pr-alt-3' => '',
37
  'media-3pr-image-sp-3' => '',
44
 
45
  <?php // 3PR area 1 =========================================================== ?>
46
  <?php // 3PR area 1 タイトル ?>
47
+ <h5 class="pr-sub-title"><?php _e( '3PR area1 setting', 'vkExUnit' ); ?></h5>
48
  <p>
49
  <label for="<?php echo $this->get_field_id('label-1'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
50
+ <input type="text" id="<?php echo $this->get_field_id('label-1'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('label-1'); ?>" value="<?php echo $instance['label-1']; ?>" />
51
  </p>
52
 
53
  <?php // 3PR area 1 メディアアップローダー PC ?>
86
 
87
  <?php // 概要テキスト ?>
88
  <p><label for="<?php echo $this->get_field_id('summary-1'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label><br/>
 
89
  </p>
90
 
91
+ <textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary-1'); ?>-text" class="pr-input textarea" name="<?php echo $this->get_field_name('summary-1'); ?>"><?php echo $instance['summary-1']; ?></textarea>
92
+
93
  <?php // リンク先_URL ?>
94
  <p><label for="<?php echo $this->get_field_id('linkurl-1'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
95
+ <input type="text" id="<?php echo $this->get_field_id('linkurl-1'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('linkurl-1'); ?>" value="<?php echo $instance['linkurl-1']; ?>" />
96
  </p>
97
 
98
  <hr /><?php // 3PR area 2 =================================================?>
99
  <?php // 3PR area 2 タイトル ?>
100
+ <h5 class="pr-sub-title"><?php _e( '3PR area2 setting', 'vkExUnit' ); ?></h5>
101
  <p>
102
  <label for="<?php echo $this->get_field_id('label-2'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
103
+ <input type="text" id="<?php echo $this->get_field_id('label-2'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('label-2'); ?>" value="<?php echo $instance['label-2']; ?>" />
104
  </p>
105
 
106
  <?php // 3PR area 1 メディアアップローダー PC ?>
139
  </div>
140
 
141
  <?php //概要テキスト ?>
142
+ <p><label for="<?php echo $this->get_field_id('summary-2'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label></p>
143
+ <textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary-2'); ?>-text" class="pr-input textarea" name="<?php echo $this->get_field_name('summary-2'); ?>"><?php echo $instance['summary-2']; ?></textarea>
 
144
 
145
  <?php //リンク先_URL ?>
146
  <p><label for="<?php echo $this->get_field_id('linkurl-2'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
147
+ <input type="text" id="<?php echo $this->get_field_id('linkurl-2'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('linkurl-2'); ?>" value="<?php echo $instance['linkurl-2']; ?>" />
148
  </p>
149
 
150
  <hr /><?php // 3PR area 3 =================================================?>
151
  <?php // 3PR area 3 タイトル ?>
152
+ <h5 class="pr-sub-title"><?php _e( '3PR area3 setting', 'vkExUnit' ); ?></h5>
153
  <p>
154
  <label for="<?php echo $this->get_field_id('label-3'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
155
+ <input type="text" id="<?php echo $this->get_field_id('label-3'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('label-3'); ?>" value="<?php echo $instance['label-3']; ?>" />
156
  </p>
157
 
158
  <?php // 3PR area 1 メディアアップローダー PC ?>
191
  </div>
192
 
193
  <?php //概要テキスト ?>
194
+ <p><label for="<?php echo $this->get_field_id('summary-3'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label>
 
195
  </p>
196
+ <textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary-3'); ?>-text" class="pr-input textarea" name="<?php echo $this->get_field_name('summary-3'); ?>"><?php echo $instance['summary-3']; ?></textarea>
197
 
198
  <?php //リンク先_URL ?>
199
  <p><label for="<?php echo $this->get_field_id('linkurl-3'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
200
+ <input type="text" id="<?php echo $this->get_field_id('linkurl-3'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('linkurl-3'); ?>" value="<?php echo $instance['linkurl-3']; ?>" />
201
  </p>
202
 
203
  <?php }
275
  <!--//.media-pr -->
276
  <?php endif; ?>
277
  <?php if( !empty($instance['summary-1']) ){
278
+ echo '<p class="summary">'.nl2br(esc_attr($instance['summary-1'])).'</p>';
279
  }
280
  if( !empty($instance['linkurl-1']) ){
281
+ echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-1']).'">'.__('Read more', 'vkExUnit' ).'</a></p>';
282
  }
283
  ?>
284
  </div>
324
 
325
  <?php
326
  if( !empty($instance['summary-2']) ){
327
+ echo '<p class="summary">'.nl2br(esc_attr($instance['summary-2'])).'</p>';
328
  }
329
 
330
  if( !empty($instance['linkurl-2']) ){
331
+ echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-2']).'">'.__('Read more', 'vkExUnit' ).'</a></p>';
332
  }
333
  ?>
334
  </div>
375
 
376
  <?php
377
  if( !empty($instance['summary-3']) ){
378
+ echo '<p class="summary">'.nl2br(esc_attr($instance['summary-3'])).'</p>';
379
  }
380
  if( !empty($instance['linkurl-3']) ){
381
+ echo '<p class="linkurl btn btn-default"><a href="'.esc_attr($instance['linkurl-3']).'">'.__('Read more', 'vkExUnit' ).'</a></p>';
382
  }
383
  ?>
384
  </div>
410
  background: #EDEDED;
411
  font-size: 1em;
412
  }
413
+ .pr-input{
414
+ width: 100%;
415
+ }
416
+ .pr-input.textarea{
417
+ margin-top: -1em;
418
+ }
419
  </style>'.PHP_EOL;
420
  }
421
  add_action("admin_print_styles-widgets.php", "style_3PR");
plugins/other_widget/widget-new-posts.php CHANGED
@@ -85,7 +85,6 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
85
  <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Slug for the custom type you want to display', 'vkExUnit') ?>:</label><br />
86
  <input type="text" id="<?php echo $this->get_field_id('post_type'); ?>" name="<?php echo $this->get_field_name('post_type'); ?>" value="<?php echo esc_attr($instance['post_type']) ?>" />
87
 
88
- <?php var_dump($this); ?>
89
  <?php
90
  }
91
 
85
  <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Slug for the custom type you want to display', 'vkExUnit') ?>:</label><br />
86
  <input type="text" id="<?php echo $this->get_field_id('post_type'); ?>" name="<?php echo $this->get_field_name('post_type'); ?>" value="<?php echo esc_attr($instance['post_type']) ?>" />
87
 
 
88
  <?php
89
  }
90
 
plugins/other_widget/widget-profile.php CHANGED
@@ -8,18 +8,18 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
8
  function WP_Widget_vkExUnit_profile() {
9
  $widget_ops = array(
10
  'classname' => 'WP_Widget_vkExUnit_profile',
11
- 'description' => __( "Displays a your site's profile", 'vkExUnit' ),
12
  );
13
- $widget_name = vkExUnit_get_short_name(). '_' . __( "Site's Profile", 'vkExUnit' );
14
  $this->WP_Widget('WP_Widget_vkExUnit_profile', $widget_name, $widget_ops);
15
  }
16
 
17
  function form($instance){
18
  $defaults = array(
19
- 'label' => __("Site's Profile", 'vkExUnit' ),
20
  'mediafile' => '',
21
  'mediaalt' => '',
22
- 'profile' => __("Site's Profile Text", 'vkExUnit' ),
23
  'facebook' => '',
24
  'twitter' => '',
25
  'mail' => '',
@@ -32,19 +32,19 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
32
  ?>
33
 
34
  <?php //タイトル ?>
35
- <p><label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:'); ?></label><br/>
36
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
37
  </p>
38
 
39
  <?php //メディアアップローダー ?>
40
- <p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Select Profile image:'); ?></label><br/>
41
 
42
- <input type="hidden" class="media-url" id="<?php echo $this->get_field_id('mediafile'); ?>-title" name="<?php echo $this->get_field_name('mediafile'); ?>" value="<?php echo esc_attr($instance['mediafile']); ?>" />
43
 
44
- <input type="hidden" class="media-alt" id="<?php echo $this->get_field_id('mediaalt'); ?>-title" name="<?php echo $this->get_field_name('mediaalt'); ?>" value="<?php echo esc_attr($instance['mediaalt']); ?>" />
45
 
46
- <input type="button" class="media-select" value="画像を選択" onclick="clickSelect();" />
47
- <input type="button" class="media-clear" value="画像をクリア" onclick="clickClear();" />
48
  </p>
49
 
50
  <div class="media">
@@ -54,42 +54,42 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
54
  </div>
55
 
56
  <?php //profileテキスト ?>
57
- <p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Profile Text:'); ?></label><br/>
58
- <input type="text" id="<?php echo $this->get_field_id('profile'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('profile'); ?>" value="<?php echo $instance['profile']; ?>" />
59
- </p>
60
 
61
  <?php //facebook_URL ?>
62
- <p><label for="<?php echo $this->get_field_id('facebook'); ?>"><?php _e('Facebook URL:'); ?></label><br/>
63
- <input type="text" id="<?php echo $this->get_field_id('facebook'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('facebook'); ?>" value="<?php echo $instance['facebook']; ?>" />
64
  </p>
65
 
66
  <?php //twitter_URL ?>
67
- <p><label for="<?php echo $this->get_field_id('twitter'); ?>"><?php _e('Twitter URL:'); ?></label><br/>
68
- <input type="text" id="<?php echo $this->get_field_id('twitter'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('twitter'); ?>" value="<?php echo $instance['twitter']; ?>" />
69
  </p>
70
 
71
  <?php //mail_URL ?>
72
- <p><label for="<?php echo $this->get_field_id('mail'); ?>"><?php _e('Email Address:'); ?></label><br/>
73
- <input type="text" id="<?php echo $this->get_field_id('mail'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('mail'); ?>" value="<?php echo $instance['mail']; ?>" />
74
  </p>
75
 
76
  <?php //youtube_URL ?>
77
- <p><label for="<?php echo $this->get_field_id('youtube'); ?>"><?php _e('Youtube URL:'); ?></label><br/>
78
- <input type="text" id="<?php echo $this->get_field_id('youtube'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('youtube'); ?>" value="<?php echo $instance['youtube']; ?>" />
79
  </p>
80
 
81
  <?php //rss_URL ?>
82
- <p><label for="<?php echo $this->get_field_id('rss'); ?>"><?php _e('RSS URL:'); ?></label><br/>
83
- <input type="text" id="<?php echo $this->get_field_id('rss'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('rss'); ?>" value="<?php echo $instance['rss']; ?>" />
84
  </p>
85
 
86
  <?php //instagram_URL ?>
87
- <p><label for="<?php echo $this->get_field_id('instagram'); ?>"><?php _e('instagram URL:'); ?></label><br/>
88
- <input type="text" id="<?php echo $this->get_field_id('instagram'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('instagram'); ?>" value="<?php echo $instance['instagram']; ?>" /></p>
89
 
90
  <?php //linkedin_URL ?>
91
- <p><label for="<?php echo $this->get_field_id('linkedin'); ?>"><?php _e('linkedin URL:'); ?></label><br/>
92
- <input type="text" id="<?php echo $this->get_field_id('linkedin'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('linkedin'); ?>" value="<?php echo $instance['linkedin']; ?>" /></p>
93
 
94
  <?php }
95
 
@@ -112,8 +112,8 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
112
  }
113
 
114
  function widget($args, $instance) {
115
- // ここからサイドバーに表示される部分
116
- echo '<aside class="widget">';
117
  echo '<h1 class="widget-title subSection-title">';
118
  if ( isset($instance['label']) && $instance['label'] ) {
119
  echo $instance['label'];
@@ -122,89 +122,51 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
122
  }
123
  echo '</h1>'; ?>
124
 
125
- <div class="site-profile">
126
- <?php
127
- // プロフィール画像表示
128
- if( !empty($instance['mediafile']) ){
129
- echo '<img class="profile-media" src="'.esc_url($instance['mediafile']).'" alt="'.esc_attr($instance['mediaalt']).'" />';
130
- }
131
-
132
- // プロフィールテキスト表示
133
- if( !empty($instance['profile']) ){
134
- echo '<p class="profile-text">'.esc_attr($instance['profile']).'</p>';
135
- }
136
-
137
- // sns リンクボタン表示する
138
  if( isset($instance['facebook'], $instance['twitter'], $instance['mail'], $instance['youtube'], $instance['rss'], $instance['instagram'], $instance['linkedin'] ) ): ?>
139
- <ul class="sns-btns">
140
-
141
- <?php // facebook ボタン表示
142
- if( !empty($instance['facebook']) ): ?>
143
- <li class="facebook-btn">
144
- <a href="<?php echo esc_url($instance['facebook']); ?>" target="_blank">
145
- <i class="fa fa-facebook"></i>
146
- </a>
147
- </li>
148
- <?php endif; ?>
149
-
150
- <?php // twitter ボタン表示
151
- if( !empty($instance['twitter']) ): ?>
152
- <li class="twitter-btn">
153
- <a href="<?php echo esc_url($instance['twitter']); ?>" target="_blank">
154
- <i class="fa fa-twitter"></i>
155
- </a>
156
- </li>
157
- <?php endif; ?>
158
-
159
- <?php // mail ボタン表示
160
- if( !empty($instance['mail']) ): ?>
161
- <li class="mail-btn">
162
- <a href="<?php echo esc_url($instance['mail']); ?>" target="_blank">
163
- <i class="fa fa-envelope-o"></i>
164
- </a>
165
- </li>
166
- <?php endif; ?>
167
-
168
- <?php // youtube ボタン表示
169
- if( !empty($instance['youtube']) ): ?>
170
- <li class="youtube-btn">
171
- <a href="<?php echo esc_url($instance['youtube']); ?>" target="_blank">
172
- <i class="fa fa-youtube"></i>
173
- </a>
174
- </li>
175
- <?php endif; ?>
176
-
177
- <?php // RSS ボタン表示
178
- if( !empty($instance['rss']) ): ?>
179
- <li class="rss-btn">
180
- <a href="<?php echo esc_url($instance['rss']); ?>" target="_blank">
181
- <i class="fa fa-rss"></i>
182
- </a>
183
- </li>
184
- <?php endif; ?>
185
-
186
- <?php // instagram ボタン表示
187
- if( !empty($instance['instagram']) ): ?>
188
- <li class="instagram-btn">
189
- <a href="<?php echo esc_url($instance['instagram']); ?>" target="_blank">
190
- <i class="fa fa-instagram"></i>
191
- </a>
192
- </li>
193
- <?php endif; ?>
194
-
195
- <?php // linkedin ボタン表示
196
- if( !empty($instance['linkedin']) ): ?>
197
- <li class="linkedin-btn">
198
- <a href="<?php echo esc_url($instance['linkedin']); ?>" target="_blank">
199
- <i class="fa fa-linkedin"></i>
200
- </a>
201
- </li>
202
- <?php endif; ?>
203
-
204
- </ul>
205
- <?php endif; ?>
206
- </div>
207
- </aside>
208
  <?php }
209
  }
210
  add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_vkExUnit_profile");'));
@@ -264,6 +226,9 @@ echo '<style>
264
  width: 100%;
265
  height: auto;
266
  }
 
 
 
267
  </style>'.PHP_EOL;
268
  }
269
  add_action("admin_print_styles-widgets.php", "my_admin_style");
8
  function WP_Widget_vkExUnit_profile() {
9
  $widget_ops = array(
10
  'classname' => 'WP_Widget_vkExUnit_profile',
11
+ 'description' => __( "Displays a your profile", 'vkExUnit' ),
12
  );
13
+ $widget_name = vkExUnit_get_short_name(). '_' . __( "Profile", 'vkExUnit' );
14
  $this->WP_Widget('WP_Widget_vkExUnit_profile', $widget_name, $widget_ops);
15
  }
16
 
17
  function form($instance){
18
  $defaults = array(
19
+ 'label' => __('Profile', 'vkExUnit' ),
20
  'mediafile' => '',
21
  'mediaalt' => '',
22
+ 'profile' => __('Profile Text', 'vkExUnit' ),
23
  'facebook' => '',
24
  'twitter' => '',
25
  'mail' => '',
32
  ?>
33
 
34
  <?php //タイトル ?>
35
+ <p><label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:', 'vkExUnit'); ?></label><br/>
36
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" class="prof-input" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
37
  </p>
38
 
39
  <?php //メディアアップローダー ?>
40
+ <p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Select Profile image:', 'vkExUnit'); ?></label><br/>
41
 
42
+ <input type="hidden" class="media-url" id="<?php echo $this->get_field_id('mediafile'); ?>-media" name="<?php echo $this->get_field_name('mediafile'); ?>" value="<?php echo esc_attr($instance['mediafile']); ?>" />
43
 
44
+ <input type="hidden" class="media-alt" id="<?php echo $this->get_field_id('mediaalt'); ?>-media" name="<?php echo $this->get_field_name('mediaalt'); ?>" value="<?php echo esc_attr($instance['mediaalt']); ?>" />
45
 
46
+ <input type="button" class="media-select" value="<?php _e('Select image', 'vkExUnit'); ?>" onclick="clickSelect();" />
47
+ <input type="button" class="media-clear" value="<?php _e('Clear image', 'vkExUnit'); ?>" onclick="clickClear();" />
48
  </p>
49
 
50
  <div class="media">
54
  </div>
55
 
56
  <?php //profileテキスト ?>
57
+ <p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Profile Text:', 'vkExUnit'); ?></label></p>
58
+
59
+ <textarea rows="4" cols="40" id="<?php echo $this->get_field_id('profile'); ?>-text" class="prof-input textarea" name="<?php echo $this->get_field_name('profile'); ?>"><?php echo $instance['profile']; ?></textarea>
60
 
61
  <?php //facebook_URL ?>
62
+ <p><label for="<?php echo $this->get_field_id('facebook'); ?>"><?php _e('Facebook URL:', 'vkExUnit'); ?></label><br/>
63
+ <input type="text" id="<?php echo $this->get_field_id('facebook'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('facebook'); ?>" value="<?php echo $instance['facebook']; ?>" />
64
  </p>
65
 
66
  <?php //twitter_URL ?>
67
+ <p><label for="<?php echo $this->get_field_id('twitter'); ?>"><?php _e('Twitter URL:', 'vkExUnit'); ?></label><br/>
68
+ <input type="text" id="<?php echo $this->get_field_id('twitter'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('twitter'); ?>" value="<?php echo $instance['twitter']; ?>" />
69
  </p>
70
 
71
  <?php //mail_URL ?>
72
+ <p><label for="<?php echo $this->get_field_id('mail'); ?>"><?php _e('Email Address:', 'vkExUnit'); ?></label><br/>
73
+ <input type="text" id="<?php echo $this->get_field_id('mail'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('mail'); ?>" value="<?php echo $instance['mail']; ?>" />
74
  </p>
75
 
76
  <?php //youtube_URL ?>
77
+ <p><label for="<?php echo $this->get_field_id('youtube'); ?>"><?php _e('Youtube URL:', 'vkExUnit'); ?></label><br/>
78
+ <input type="text" id="<?php echo $this->get_field_id('youtube'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('youtube'); ?>" value="<?php echo $instance['youtube']; ?>" />
79
  </p>
80
 
81
  <?php //rss_URL ?>
82
+ <p><label for="<?php echo $this->get_field_id('rss'); ?>"><?php _e('RSS URL:', 'vkExUnit'); ?></label><br/>
83
+ <input type="text" id="<?php echo $this->get_field_id('rss'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('rss'); ?>" value="<?php echo $instance['rss']; ?>" />
84
  </p>
85
 
86
  <?php //instagram_URL ?>
87
+ <p><label for="<?php echo $this->get_field_id('instagram'); ?>"><?php _e('instagram URL:', 'vkExUnit'); ?></label><br/>
88
+ <input type="text" id="<?php echo $this->get_field_id('instagram'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('instagram'); ?>" value="<?php echo $instance['instagram']; ?>" /></p>
89
 
90
  <?php //linkedin_URL ?>
91
+ <p><label for="<?php echo $this->get_field_id('linkedin'); ?>"><?php _e('linkedin URL:', 'vkExUnit'); ?></label><br/>
92
+ <input type="text" id="<?php echo $this->get_field_id('linkedin'); ?>-url" class="prof-input" name="<?php echo $this->get_field_name('linkedin'); ?>" value="<?php echo $instance['linkedin']; ?>" /></p>
93
 
94
  <?php }
95
 
112
  }
113
 
114
  function widget($args, $instance) {
115
+ // From here Display a widget
116
+ echo PHP_EOL.'<aside class="widget">'.PHP_EOL;
117
  echo '<h1 class="widget-title subSection-title">';
118
  if ( isset($instance['label']) && $instance['label'] ) {
119
  echo $instance['label'];
122
  }
123
  echo '</h1>'; ?>
124
 
125
+ <div class="site-profile">
126
+ <?php
127
+ // Display a profile image
128
+ if( !empty($instance['mediafile']) ){
129
+ echo '<img class="profile-media" src="'.esc_url($instance['mediafile']).'" alt="'.esc_attr($instance['mediaalt']).'" />'.PHP_EOL;
130
+ }
131
+ // Display a profile text
132
+ if( !empty($instance['profile']) ){
133
+ echo '<p class="profile-text">'.nl2br(esc_attr($instance['profile'])).'</p>'.PHP_EOL;
134
+ }
135
+ // Display a sns botton
 
 
136
  if( isset($instance['facebook'], $instance['twitter'], $instance['mail'], $instance['youtube'], $instance['rss'], $instance['instagram'], $instance['linkedin'] ) ): ?>
137
+ <ul class="sns-btns">
138
+ <?php // Display a facebook botton
139
+ if( !empty($instance['facebook']) ): ?>
140
+ <li class="facebook-btn"><a href="<?php echo esc_url($instance['facebook']); ?>" target="_blank"><i class="fa fa-facebook"></i></a></li>
141
+ <?php endif; ?>
142
+ <?php // Display a twitter botton
143
+ if( !empty($instance['twitter']) ): ?>
144
+ <li class="twitter-btn"><a href="<?php echo esc_url($instance['twitter']); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li>
145
+ <?php endif; ?>
146
+ <?php // Display a mail botton
147
+ if( !empty($instance['mail']) ): ?>
148
+ <li class="mail-btn"><a href="<?php echo esc_url($instance['mail']); ?>" target="_blank"><i class="fa fa-envelope-o"></i></a></li>
149
+ <?php endif; ?>
150
+ <?php // Display a youtube botton
151
+ if( !empty($instance['youtube']) ): ?>
152
+ <li class="youtube-btn"><a href="<?php echo esc_url($instance['youtube']); ?>" target="_blank"><i class="fa fa-youtube"></i></a></li>
153
+ <?php endif; ?>
154
+ <?php // Display a RSS botton
155
+ if( !empty($instance['rss']) ): ?>
156
+ <li class="rss-btn"><a href="<?php echo esc_url($instance['rss']); ?>" target="_blank"><i class="fa fa-rss"></i></a></li>
157
+ <?php endif; ?>
158
+ <?php // Display a instagram botton
159
+ if( !empty($instance['instagram']) ): ?>
160
+ <li class="instagram-btn"><a href="<?php echo esc_url($instance['instagram']); ?>" target="_blank"><i class="fa fa-instagram"></i></a></li>
161
+ <?php endif; ?>
162
+ <?php // Display a linkedin botton
163
+ if( !empty($instance['linkedin']) ): ?>
164
+ <li class="linkedin-btn"><a href="<?php echo esc_url($instance['linkedin']); ?>" target="_blank"><i class="fa fa-linkedin"></i></a></li><?php endif; ?>
165
+ </ul>
166
+ <?php endif; ?>
167
+ </div>
168
+ <!-- / .site-profile -->
169
+ </aside>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <?php }
171
  }
172
  add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_vkExUnit_profile");'));
226
  width: 100%;
227
  height: auto;
228
  }
229
+ .prof-input.textarea{
230
+ margin-top: -1em;
231
+ }
232
  </style>'.PHP_EOL;
233
  }
234
  add_action("admin_print_styles-widgets.php", "my_admin_style");
plugins/sns/function_fbPagePlugin.php CHANGED
@@ -72,7 +72,7 @@ class WP_Widget_vkExUnit_fbPagePlugin extends WP_Widget {
72
  ?>
73
 
74
  <?php //タイトル ?>
75
- <label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:'); ?></label><br/>
76
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
77
  <br/>
78
 
@@ -82,22 +82,22 @@ class WP_Widget_vkExUnit_fbPagePlugin extends WP_Widget {
82
  <br/>
83
 
84
  <?php //Height ?>
85
- <label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('Height'); ?></label><br/>
86
  <input type="text" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" value="<?php echo $instance['height']; ?>" />
87
  <br/>
88
 
89
  <?php //showFaces ?>
90
- <label for="<?php echo $this->get_field_id('showFaces'); ?>"><?php _e("Show Friend's Faces"); ?></label><br/>
91
  <input type="checkbox" name="<?php echo $this->get_field_name('showFaces'); ?>" value="true" <?php echo ($instance['showFaces'] == 'true')? 'checked': '' ; ?> >
92
  <br/>
93
 
94
  <?php //hideCover ?>
95
- <label for="<?php echo $this->get_field_id('hideCover'); ?>"><?php _e('Hide Cover Photo'); ?></label><br/>
96
  <input type="checkbox" name="<?php echo $this->get_field_name('hideCover'); ?>" value="true" <?php echo ($instance['hideCover'] == 'true')? 'checked': '' ; ?> >
97
  <br/>
98
 
99
  <?php //showPosts ?>
100
- <label for="<?php echo $this->get_field_id('showPosts'); ?>"><?php _e('Show Page Posts'); ?></label><br/>
101
  <input type="checkbox" name="<?php echo $this->get_field_name('showPosts'); ?>" value="true" <?php echo ($instance['showPosts'] == 'true')? 'checked': '' ; ?> >
102
  <br/>
103
 
72
  ?>
73
 
74
  <?php //タイトル ?>
75
+ <label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:', 'vkExUnit'); ?></label><br/>
76
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
77
  <br/>
78
 
82
  <br/>
83
 
84
  <?php //Height ?>
85
+ <label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('Height', 'vkExUnit'); ?></label><br/>
86
  <input type="text" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" value="<?php echo $instance['height']; ?>" />
87
  <br/>
88
 
89
  <?php //showFaces ?>
90
+ <label for="<?php echo $this->get_field_id('showFaces'); ?>"><?php _e("Show Friend's Faces", 'vkExUnit'); ?></label><br/>
91
  <input type="checkbox" name="<?php echo $this->get_field_name('showFaces'); ?>" value="true" <?php echo ($instance['showFaces'] == 'true')? 'checked': '' ; ?> >
92
  <br/>
93
 
94
  <?php //hideCover ?>
95
+ <label for="<?php echo $this->get_field_id('hideCover'); ?>"><?php _e('Hide Cover Photo', 'vkExUnit'); ?></label><br/>
96
  <input type="checkbox" name="<?php echo $this->get_field_name('hideCover'); ?>" value="true" <?php echo ($instance['hideCover'] == 'true')? 'checked': '' ; ?> >
97
  <br/>
98
 
99
  <?php //showPosts ?>
100
+ <label for="<?php echo $this->get_field_id('showPosts'); ?>"><?php _e('Show Page Posts', 'vkExUnit'); ?></label><br/>
101
  <input type="checkbox" name="<?php echo $this->get_field_name('showPosts'); ?>" value="true" <?php echo ($instance['showPosts'] == 'true')? 'checked': '' ; ?> >
102
  <br/>
103
 
plugins/sns/sns.php CHANGED
@@ -16,9 +16,10 @@ function vkExUnit_sns_options_init() {
16
  if ( false === vkExUnit_get_sns_options() )
17
  add_option( 'vkExUnit_sns_options', vkExUnit_get_sns_options_default() );
18
  vkExUnit_register_setting(
19
- 'vkExUnit_sns_options_fields', // Immediately following form tag of edit page.
20
  'vkExUnit_sns_options', // name attr
21
- 'vkExUnit_sns_options_validate'
 
22
  );
23
  }
24
  add_action( 'admin_init', 'vkExUnit_sns_options_init' );
@@ -105,5 +106,3 @@ function vkExUnit_add_sns_options_page(){
105
  ?>
106
  <?php
107
  }
108
-
109
- add_action( 'vkExUnit_main_config' , 'vkExUnit_add_sns_options_page' );
16
  if ( false === vkExUnit_get_sns_options() )
17
  add_option( 'vkExUnit_sns_options', vkExUnit_get_sns_options_default() );
18
  vkExUnit_register_setting(
19
+ __('SNS', 'vkExUnit'), // tab label.
20
  'vkExUnit_sns_options', // name attr
21
+ 'vkExUnit_sns_options_validate', // sanitaise function name
22
+ 'vkExUnit_add_sns_options_page' // setting_page function name
23
  );
24
  }
25
  add_action( 'admin_init', 'vkExUnit_sns_options_init' );
106
  ?>
107
  <?php
108
  }
 
 
plugins/sns/sns_admin.php CHANGED
@@ -1,4 +1,4 @@
1
- <h2><?php echo __('SNS Settings');?></h2>
2
  <?php
3
  $options = vkExUnit_get_sns_options();
4
  /*-------------------------------------------*/
1
+ <h3><?php echo __('SNS Settings');?></h3>
2
  <?php
3
  $options = vkExUnit_get_sns_options();
4
  /*-------------------------------------------*/
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.2
7
- Stable tag: 0.1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -45,6 +45,9 @@ e.g.
45
 
46
  == Changelog ==
47
 
 
 
 
48
  = 0.1.1.1 =
49
  * Setting page url bug fix
50
 
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.2
7
+ Stable tag: 0.1.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
45
 
46
  == Changelog ==
47
 
48
+ = 0.1.2.0 =
49
+ * Add Japanese transration
50
+
51
  = 0.1.1.1 =
52
  * Setting page url bug fix
53
 
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
5
  Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. 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: 0.1.1.1
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2
@@ -71,7 +71,7 @@ function vkExUnit_add_setting_page(){
71
  require dirname( __FILE__ ) . '/vkExUnit_admin.php';
72
  }
73
 
74
-
75
 
76
  /*-------------------------------------------*/
77
  /* Load modules
@@ -82,6 +82,7 @@ $options = vkExUnit_get_common_options();
82
  require vkExUnit_get_directory() . '/common_helpers.php';
83
 
84
  require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
 
85
 
86
  if ( isset($options['active_sns']) && $options['active_sns'] )
87
  require vkExUnit_get_directory() . '/plugins/sns/sns.php';
@@ -139,8 +140,6 @@ function vkExUnit_admin_add_js( $hook_suffix ) {
139
  wp_enqueue_script( 'vkExUnit_admin_js' );
140
  }
141
 
142
- require_once( 'admin_warpper.php' );
143
-
144
  /*-------------------------------------------*/
145
  /* Add fontawesome
146
  /*-------------------------------------------*/
@@ -151,3 +150,8 @@ function vkExUnit_addfontawesome(){
151
  echo '<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">'.PHP_EOL;
152
  }
153
  }
 
 
 
 
 
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
5
  Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. 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: 0.1.2.0
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2
71
  require dirname( __FILE__ ) . '/vkExUnit_admin.php';
72
  }
73
 
74
+ require_once( 'admin_wrapper.php' );
75
 
76
  /*-------------------------------------------*/
77
  /* Load modules
82
  require vkExUnit_get_directory() . '/common_helpers.php';
83
 
84
  require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
85
+ require vkExUnit_get_directory() . '/plugins/dashboard_info_widget/dashboard-info-widget.php';
86
 
87
  if ( isset($options['active_sns']) && $options['active_sns'] )
88
  require vkExUnit_get_directory() . '/plugins/sns/sns.php';
140
  wp_enqueue_script( 'vkExUnit_admin_js' );
141
  }
142
 
 
 
143
  /*-------------------------------------------*/
144
  /* Add fontawesome
145
  /*-------------------------------------------*/
150
  echo '<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">'.PHP_EOL;
151
  }
152
  }
153
+
154
+ add_action( 'admin_print_styles-vk-ex-unit_page_vkExUnit_main_setting', 'vkExUnit_admin_enq');
155
+ function vkExUnit_admin_enq(){
156
+ wp_enqueue_style('vkexunit-css-admin', plugins_url('/css/vkExUnit_admin.css', __FILE__));
157
+ }
vkExUnit_admin.php CHANGED
@@ -9,7 +9,7 @@
9
  <table class="wp-list-table widefat plugins" style="width:auto;">
10
  <thead>
11
  <tr>
12
- <th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-1" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e('Function');?></th><th scope='col' id='description' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
13
  </thead>
14
 
15
  <tbody id="the-list">
@@ -23,7 +23,7 @@
23
  <input type="checkbox" name="vkExUnit_common_options[active_bootstrap]" id="checkbox_active_bootstrap" value="true" <?php echo (isset($options['active_bootstrap']) && $options['active_bootstrap'])? 'checked': ''; ?> />
24
  </th>
25
  <td class='plugin-title'>
26
- <strong>Print Bootstrap css and js</strong>
27
  </td>
28
  <td class='column-description desc'>
29
  <div class='plugin-description'>
@@ -41,11 +41,11 @@
41
  <input type="checkbox" name="vkExUnit_common_options[active_fontawesome]" id="checkbox_active_fontawesome" value="true" <?php echo (isset($options['active_fontawesome']) && $options['active_fontawesome'])? 'checked': ''; ?> />
42
  </th>
43
  <td class='plugin-title'>
44
- <strong>Print link fontawesome</strong>
45
  </td>
46
  <td class='column-description desc'>
47
  <div class='plugin-description'>
48
- <p>Print fontawesome link tag to html head.</p>
49
  </div><!-- [ /.plugin-description ] -->
50
  </td>
51
  </tr>
@@ -59,11 +59,11 @@
59
  <input type="checkbox" name="vkExUnit_common_options[active_metaDescription]" id="checkbox_active_metaDescription" value="true" <?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? 'checked': ''; ?> />
60
  </th>
61
  <td class='plugin-title'>
62
- <strong>Print meta description</strong>
63
  </td>
64
  <td class='column-description desc'>
65
  <div class='plugin-description'>
66
- <p>Print meta description to html head.</p>
67
  </div><!-- [ /.plugin-description ] -->
68
  </td>
69
  </tr>
@@ -188,7 +188,7 @@
188
 
189
  <tfoot>
190
  <tr>
191
- <th scope='col' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-2"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-2" type="checkbox" /></th><th scope='col' class='manage-column column-name'><?php _e('Function');?></th><th scope='col' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
192
  </tfoot>
193
 
194
  </table>
9
  <table class="wp-list-table widefat plugins" style="width:auto;">
10
  <thead>
11
  <tr>
12
+ <th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-1" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e('Function','vkExUnit');?></th><th scope='col' id='description' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
13
  </thead>
14
 
15
  <tbody id="the-list">
23
  <input type="checkbox" name="vkExUnit_common_options[active_bootstrap]" id="checkbox_active_bootstrap" value="true" <?php echo (isset($options['active_bootstrap']) && $options['active_bootstrap'])? 'checked': ''; ?> />
24
  </th>
25
  <td class='plugin-title'>
26
+ <strong><?php _e('Print Bootstrap css and js', 'vkExUnit'); ?></strong>
27
  </td>
28
  <td class='column-description desc'>
29
  <div class='plugin-description'>
41
  <input type="checkbox" name="vkExUnit_common_options[active_fontawesome]" id="checkbox_active_fontawesome" value="true" <?php echo (isset($options['active_fontawesome']) && $options['active_fontawesome'])? 'checked': ''; ?> />
42
  </th>
43
  <td class='plugin-title'>
44
+ <strong><?php _e('Print link fontawesome.', 'vkExUnit'); ?></strong>
45
  </td>
46
  <td class='column-description desc'>
47
  <div class='plugin-description'>
48
+ <p><?php _e('Print fontawesome link tag to html head.', 'vkExUnit'); ?></p>
49
  </div><!-- [ /.plugin-description ] -->
50
  </td>
51
  </tr>
59
  <input type="checkbox" name="vkExUnit_common_options[active_metaDescription]" id="checkbox_active_metaDescription" value="true" <?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? 'checked': ''; ?> />
60
  </th>
61
  <td class='plugin-title'>
62
+ <strong><?php _e('Print meta description', 'vkExUnit'); ?></strong>
63
  </td>
64
  <td class='column-description desc'>
65
  <div class='plugin-description'>
66
+ <p><?php _e('Print meta description to html head.', 'vkExUnit'); ?></p>
67
  </div><!-- [ /.plugin-description ] -->
68
  </td>
69
  </tr>
188
 
189
  <tfoot>
190
  <tr>
191
+ <th scope='col' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-2"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-2" type="checkbox" /></th><th scope='col' class='manage-column column-name'><?php _e('Function', 'vkExUnit');?></th><th scope='col' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
192
  </tfoot>
193
 
194
  </table>