Lightning Advanced Unit - Version 0.0.1

Version Description

  • Hellow world

=

Download this release

Release Info

Developer kurudrive
Plugin Icon wp plugin Lightning Advanced Unit
Version 0.0.1
Comparing to
See all releases

Version 0.0.1

README.md ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ # lightning-advanced-unit
2
+
3
+ Lightning 専用の機能拡張プラグイン
4
+
5
+ Lightning 以外でも使うようなものは ExUnitに実装する
_scss/lightning_adv_admin.scss ADDED
@@ -0,0 +1,2 @@
 
 
1
+ @charset "utf-8";
2
+ @import "compass";
_scss/lightning_adv_style.scss ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @charset "utf-8";
2
+ @import "compass";
3
+
4
+ body { color:red !important ; }
config.rb ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ http_path = "/"
2
+ css_dir = "css"
3
+ sass_dir = "_scss"
4
+ images_dir = "images"
5
+ javascripts_dir = "js"
6
+ # output_style = :compact
7
+ output_style = :compressed
8
+ line_comments = false
9
+ cache = false
10
+ # sass_options = {:debug_info => false}
css/lightning_adv_admin.css ADDED
File without changes
css/lightning_adv_style.css ADDED
@@ -0,0 +1 @@
 
1
+ body{color:red !important}
css/pluginName_admin.css ADDED
File without changes
css/pluginName_style.css ADDED
@@ -0,0 +1 @@
 
1
+
gulpfile.js ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/jquery.flatheights.js','./js/master.js'])
35
+ // .pipe(concat('all.js'))
36
+ // .pipe(gulp.dest('./js/'));
37
+ // });
38
+
39
+ // js最小化
40
+ gulp.task('jsmin', function () {
41
+ gulp.src(['./plugins/navigation/js/navigation.js'])
42
+ .pipe(plumber()) // エラーでも監視を続行
43
+ .pipe(jsmin())
44
+ .pipe(rename({suffix: '.min'}))
45
+ .pipe(gulp.dest('./plugins/navigation/js'));
46
+ });
47
+
48
+ // Watch
49
+ gulp.task('watch', function() {
50
+ // gulp.watch('css/*.css', ['cssmin'])
51
+ // gulp.watch('js/*.js', ['scripts']);
52
+ // gulp.watch('_scss/style.scss', ['copy']);
53
+ gulp.watch('./plugins/navigation/js/navigation.js', ['jsmin']);
54
+ });
55
+
56
+ // gulp.task('default', ['scripts','watch','sprite']);
57
+ gulp.task('default', ['watch']);
js/lightning_adv.js ADDED
File without changes
js/lightning_adv_admin.js ADDED
File without changes
languages/lightning-adv-unit-ja.mo ADDED
Binary file
languages/lightning-adv-unit-ja.po ADDED
@@ -0,0 +1,1497 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2016-06-11 02:06+0900\n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
+ "Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
8
+ "Language: ja\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.7\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_x;_e;_ex\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../plugins/menu-btn-position.php:14
19
+ msgid "Menu button position ( Mobile mode )"
20
+ msgstr "メニューボタンの位置(モバイル端末時)"
21
+
22
+ #: ../plugins/menu-btn-position.php:19
23
+ msgid "Left"
24
+ msgstr "左"
25
+
26
+ #: ../plugins/menu-btn-position.php:20
27
+ msgid "Right"
28
+ msgstr "右"
29
+
30
+ #: ../plugins/navigation/navigation.php:15
31
+ msgid "Menu Type ( Mobile mode )"
32
+ msgstr "メニュータイプ(モバイル端末時)"
33
+
34
+ #: ../plugins/navigation/navigation.php:20
35
+ msgid "Side Slide"
36
+ msgstr "横スライド"
37
+
38
+ #: ../plugins/navigation/navigation.php:21
39
+ msgid "Vertical Show Hide (Lightning default)"
40
+ msgstr "縦展開(Ligthning標準)"
41
+
42
+ #: ../plugins/widgets/widget-new-posts.php:12
43
+ msgid "Content Area Posts Widget"
44
+ msgstr "コンテンツエリア投稿リスト"
45
+
46
+ #: ../plugins/widgets/widget-new-posts.php:17
47
+ msgid "Displays a list of your most recent posts"
48
+ msgstr "最新の投稿記事リストを表示します。"
49
+
50
+ #: ../plugins/widgets/widget-new-posts.php:108
51
+ msgid "Last updated"
52
+ msgstr "最終更新日"
53
+
54
+ #: ../plugins/widgets/widget-new-posts.php:132
55
+ #: ../plugins/widgets/widget-new-posts.php:156
56
+ msgid "Read more"
57
+ msgstr "詳しくはこちら"
58
+
59
+ #: ../plugins/widgets/widget-new-posts.php:176
60
+ msgid "<dl><dt>%s</dt><dd>%l</dd></dl>"
61
+ msgstr "<dl><dt>%s</dt><dd>%l</dd></dl>"
62
+
63
+ #: ../plugins/widgets/widget-new-posts.php:196
64
+ msgid "Tags"
65
+ msgstr "タグ"
66
+
67
+ #: ../plugins/widgets/widget-new-posts.php:229
68
+ msgid "Recent Posts"
69
+ msgstr "最新記事"
70
+
71
+ #: ../plugins/widgets/widget-new-posts.php:238
72
+ msgid "Display Format"
73
+ msgstr "表示形式"
74
+
75
+ #: ../plugins/widgets/widget-new-posts.php:240
76
+ #: ../plugins/widgets/widget-new-posts.php:242
77
+ msgid "Thumbnail"
78
+ msgstr "サムネイル画像"
79
+
80
+ #: ../plugins/widgets/widget-new-posts.php:240
81
+ #: ../plugins/widgets/widget-new-posts.php:242
82
+ msgid "Date"
83
+ msgstr "日付"
84
+
85
+ #: ../plugins/widgets/widget-new-posts.php:240
86
+ #: ../plugins/widgets/widget-new-posts.php:242
87
+ msgid "Category"
88
+ msgstr "カテゴリー"
89
+
90
+ #: ../plugins/widgets/widget-new-posts.php:240
91
+ #: ../plugins/widgets/widget-new-posts.php:242
92
+ msgid "Title"
93
+ msgstr "タイトル"
94
+
95
+ #: ../plugins/widgets/widget-new-posts.php:240
96
+ msgid "Excerpt"
97
+ msgstr "抜粋"
98
+
99
+ #: ../plugins/widgets/widget-new-posts.php:242
100
+ msgid "Content"
101
+ msgstr "本文"
102
+
103
+ #: ../plugins/widgets/widget-new-posts.php:246
104
+ msgid "Title:"
105
+ msgstr "タイトル"
106
+
107
+ #: ../plugins/widgets/widget-new-posts.php:251
108
+ msgid "Display count"
109
+ msgstr "表示する記事数"
110
+
111
+ #: ../plugins/widgets/widget-new-posts.php:256
112
+ msgid "Slug for the custom type you want to display"
113
+ msgstr "表示したい記事タイプ"
114
+
115
+ #: ../plugins/widgets/widget-new-posts.php:261
116
+ msgid "taxonomy ID"
117
+ msgstr "カテゴリー(タクソノミー)ID"
118
+
119
+ #: ../plugins/widgets/widget-new-posts.php:263
120
+ msgid "if you need filtering by term, add the term ID separate by \",\"."
121
+ msgstr ""
122
+ "特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
123
+ "します。"
124
+
125
+ #: ../plugins/widgets/widget-new-posts.php:265
126
+ msgid "if empty this area, I will do not filtering."
127
+ msgstr "空欄の場合はフィルタリングは行いません。"
128
+
129
+ #~ msgid "Main setting"
130
+ #~ msgstr "メイン設定"
131
+
132
+ #~ msgid "Activated Packages is noting. please activate some package."
133
+ #~ msgstr ""
134
+ #~ "有効化されているパッケージがありません。何かの機能を有効化してください。"
135
+
136
+ #~ msgid "Author: %s"
137
+ #~ msgstr "著者: %s"
138
+
139
+ #~ msgid "Y"
140
+ #~ msgstr "年"
141
+
142
+ #~ msgid "F Y"
143
+ #~ msgstr "年月"
144
+
145
+ #~ msgid "F j, Y"
146
+ #~ msgstr "月日, 年"
147
+
148
+ #~ msgid "Asides"
149
+ #~ msgstr "サイド"
150
+
151
+ #~ msgid "Galleries"
152
+ #~ msgstr "ギャラリー"
153
+
154
+ #~ msgid "Images"
155
+ #~ msgstr "画像"
156
+
157
+ #~ msgid "Videos"
158
+ #~ msgstr "ビデオ"
159
+
160
+ #~ msgid "Quotes"
161
+ #~ msgstr "引用"
162
+
163
+ #~ msgid "Links"
164
+ #~ msgstr "リンク"
165
+
166
+ #~ msgid "Statuses"
167
+ #~ msgstr "ステータス"
168
+
169
+ #~ msgid "Audio"
170
+ #~ msgstr "オーディオ"
171
+
172
+ #~ msgid "Chats"
173
+ #~ msgstr "チャット"
174
+
175
+ #~ msgid "Archives"
176
+ #~ msgstr "アーカイブ"
177
+
178
+ #~ msgid "About %s"
179
+ #~ msgstr "%s について"
180
+
181
+ #~ msgid "Article of %s."
182
+ #~ msgstr "%s の記事"
183
+
184
+ #~ msgid "Page of %s"
185
+ #~ msgstr "%sページ目"
186
+
187
+ #~ msgid "Print Bootstrap css and js"
188
+ #~ msgstr "Bootstrap の CSS と js を出力"
189
+
190
+ #~ msgid ""
191
+ #~ "If your using theme has already including Bootstrap, you deactivate this "
192
+ #~ "item."
193
+ #~ msgstr ""
194
+ #~ "Bootstrap の CSS と js を読み込むためのタグを html head 内へ出力します。使"
195
+ #~ "用中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを"
196
+ #~ "外して下さい。"
197
+
198
+ #~ msgid "Print link fontawesome"
199
+ #~ msgstr "fontawesome link タグを出力"
200
+
201
+ #~ msgid "Print fontawesome link tag to html head."
202
+ #~ msgstr ""
203
+ #~ "fontawesome を読み込むための link タグを html head 内へ出力します。使用中"
204
+ #~ "のテーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外"
205
+ #~ "して下さい。"
206
+
207
+ #~ msgid "Favicon setting"
208
+ #~ msgstr "ファビコン設定"
209
+
210
+ #~ msgid "About favicon."
211
+ #~ msgstr ""
212
+ #~ "ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコ"
213
+ #~ "ン(ファビコン)を設定します。"
214
+
215
+ #~ msgid "Rewrite the title tag"
216
+ #~ msgstr "タイトルタグの書き換え"
217
+
218
+ #~ msgid "Print is rewritten by its own rules to html head."
219
+ #~ msgstr ""
220
+ #~ "head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 "
221
+ #~ "( VK EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中の"
222
+ #~ "テーマやプラグインで title タグの内容を出力する場合はチェックを外して下さ"
223
+ #~ "い。"
224
+
225
+ #~ msgid "Setting"
226
+ #~ msgstr "設定"
227
+
228
+ #~ msgid "Print meta Keyword"
229
+ #~ msgstr "メタキーワードを出力"
230
+
231
+ #~ msgid "Print meta Keyword to html head."
232
+ #~ msgstr "ヘッダーにメタキーワードを出力します。"
233
+
234
+ #~ msgid "Print meta description"
235
+ #~ msgstr "メタディスクリプションタグを出力"
236
+
237
+ #~ msgid "Print meta description to html head."
238
+ #~ msgstr ""
239
+ #~ "投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
240
+ #~ "head 内へ出力します。使用中のテーマやプラグインで meta description タグを"
241
+ #~ "出力している場合はチェックを外して下さい。"
242
+
243
+ #~ msgid "Main setting page"
244
+ #~ msgstr "メイン設定画面"
245
+
246
+ #~ msgid "Print og tags to html head."
247
+ #~ msgstr "OG タグを html head 内へ出力します。"
248
+
249
+ #~ msgid "Print twitter card tags to html head."
250
+ #~ msgstr "Twitter カードタグを html head 内へ出力します。"
251
+
252
+ #~ msgid "Print social bookmark buttons."
253
+ #~ msgstr "ソーシャルブックマークボタンを表示します。"
254
+
255
+ #~ msgid "Facebook Page Plugin widget."
256
+ #~ msgstr "Facebookページプラグインウィジェット"
257
+
258
+ #~ msgid "Print Follow me box to content bottom."
259
+ #~ msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
260
+
261
+ #~ msgid "* You can stop the function separately from the %s."
262
+ #~ msgstr "%s から個別に機能を停止する事ができます。"
263
+
264
+ #~ msgid "Social media cooperation"
265
+ #~ msgstr "ソーシャルメディア連携"
266
+
267
+ #~ msgid "Print Google Analytics tracking code."
268
+ #~ msgstr ""
269
+ #~ "Google アナリティクスのトラッキングコードを出力します。有効化した後「設"
270
+ #~ "定」のリンクより設定画面へすすみ Google アナリティクス ID を入力して下さ"
271
+ #~ "い。使用中のテーマやプラグインで Google アナリティクスのトラッキングコード"
272
+ #~ "を埋め込む場合はチェックを外して下さい。"
273
+
274
+ #~ msgid "You can use various widgets."
275
+ #~ msgstr ""
276
+ #~ "以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
277
+ #~ "→「ウィジェット」の設定画面より行って下さい。"
278
+
279
+ #~ msgid ""
280
+ #~ "VK_Recent Posts - display the link text and the date of the latest "
281
+ #~ "article title."
282
+ #~ msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
283
+
284
+ #~ msgid ""
285
+ #~ "VK_Page content to widget - display the contents of the page to the "
286
+ #~ "widgets."
287
+ #~ msgstr ""
288
+ #~ "VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
289
+
290
+ #~ msgid "VK_Profile - display the profile entered in the widget."
291
+ #~ msgstr ""
292
+ #~ "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
293
+
294
+ #~ msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
295
+ #~ msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
296
+
297
+ #~ msgid "VK_3PR area - display the 3PR area."
298
+ #~ msgstr "VK_3PR エリア - 3PR エリアを表示します。"
299
+
300
+ #~ msgid "categories/tags list"
301
+ #~ msgstr "カテゴリー/タグ リスト"
302
+
303
+ #~ msgid "Displays a categories, tags or format list."
304
+ #~ msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
305
+
306
+ #~ msgid "archive list"
307
+ #~ msgstr "アーカイブリスト"
308
+
309
+ #~ msgid ""
310
+ #~ "Displays a list of archives. You can choose the post type and also to "
311
+ #~ "display archives by month or by year."
312
+ #~ msgstr ""
313
+ #~ "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタ"
314
+ #~ "イプを選択できます。"
315
+
316
+ #~ msgid "Widgets"
317
+ #~ msgstr "ウィジェット"
318
+
319
+ #~ msgid "CSS customize"
320
+ #~ msgstr "CSSカスタマイズ"
321
+
322
+ #~ msgid "You can set Customize CSS."
323
+ #~ msgstr ""
324
+ #~ "テーマデザインをカスタマイズする CSS を管理画面より追加できるようになりま"
325
+ #~ "す。追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力"
326
+ #~ "して下さい。"
327
+
328
+ #~ msgid "Child page index"
329
+ #~ msgstr "子ページの一覧表示"
330
+
331
+ #~ msgid ""
332
+ #~ "At the bottom of the specified page, it will display a list of the child "
333
+ #~ "page."
334
+ #~ msgstr ""
335
+ #~ "指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイト"
336
+ #~ "ル / サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示しま"
337
+ #~ "す。"
338
+
339
+ #~ msgid "Page list from ancestor"
340
+ #~ msgstr "先祖階層からの子ページリスト表示"
341
+
342
+ #~ msgid "Display Page list from ancestor at after content."
343
+ #~ msgstr ""
344
+ #~ "現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
345
+
346
+ #~ msgid "Contact Section"
347
+ #~ msgstr "お問い合わせ"
348
+
349
+ #~ msgid "Display Contact Section at after content."
350
+ #~ msgstr "お問い合わせ情報を本文の下に表示する"
351
+
352
+ #~ msgid "Display HTML Site Map"
353
+ #~ msgstr "HTMLサイトマップの表示"
354
+
355
+ #~ msgid "It displays a HTML Site Map to the specified page."
356
+ #~ msgstr "指定した固定ページにHTMLサイトマップを表示します。"
357
+
358
+ #~ msgid "Display the CTA at the end of the post content."
359
+ #~ msgstr "投稿内容の最後にCTAを表示します。"
360
+
361
+ #~ msgid ""
362
+ #~ "The CTA stands for \"Call to action\" and this is the area that prompts "
363
+ #~ "the user behavior."
364
+ #~ msgstr ""
365
+ #~ "CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するた"
366
+ #~ "めの情報を表示します。"
367
+
368
+ #~ msgid ""
369
+ #~ "As an example, text message and a link button for induction to the free "
370
+ #~ "sample download page."
371
+ #~ msgstr ""
372
+ #~ "例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボ"
373
+ #~ "タンなどです。"
374
+
375
+ #~ msgid "Call To Action"
376
+ #~ msgstr "Call To Action"
377
+
378
+ #~ msgid "Contents setting"
379
+ #~ msgstr "CTA表示内容設定"
380
+
381
+ #~ msgid "Insert ads"
382
+ #~ msgstr "広告の挿入"
383
+
384
+ #~ msgid "Insert ads to content."
385
+ #~ msgstr "記事に広告を挿入します"
386
+
387
+ #~ msgid "Related posts"
388
+ #~ msgstr "関連記事を表示"
389
+
390
+ #~ msgid "Print Related posts lists to post content bottom."
391
+ #~ msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
392
+
393
+ #~ msgid "Automatic Eye Catch insert"
394
+ #~ msgstr "アイキャッチ画像自動挿入"
395
+
396
+ #~ msgid "Display Eye Catch image at before content."
397
+ #~ msgstr ""
398
+ #~ "アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
399
+ #~ "す。"
400
+
401
+ #~ msgid "Disable ping back"
402
+ #~ msgstr "ping backを停止"
403
+
404
+ #~ msgid "Disable xmlrpc ping back."
405
+ #~ msgstr "xmlrpcを停止"
406
+
407
+ #~ msgid "Disable dashbord"
408
+ #~ msgstr "ダッシュボードに最新情報を表示しない"
409
+
410
+ #~ msgid "Enable setting"
411
+ #~ msgstr "有効化設定"
412
+
413
+ #~ msgid "Select all"
414
+ #~ msgstr "全てを選択"
415
+
416
+ #~ msgid "Function"
417
+ #~ msgstr "有効化"
418
+
419
+ #~ msgid "Description"
420
+ #~ msgstr "説明"
421
+
422
+ #~ msgid "Extension Setting"
423
+ #~ msgstr "拡張設定"
424
+
425
+ #~ msgid "Plugin setting options"
426
+ #~ msgstr "プラグイン設定オプション"
427
+
428
+ #~ msgid "Delete myOptions when deactivate me."
429
+ #~ msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
430
+
431
+ #~ msgid "Automatic EyeCatch"
432
+ #~ msgstr "アイキャッチ自動挿入"
433
+
434
+ #~ msgid "Do not set eyecatch image automatic."
435
+ #~ msgstr "アイキャッチ画像を自動挿入しない"
436
+
437
+ #~ msgid "Display a child page index"
438
+ #~ msgstr "子ページ一覧の表示"
439
+
440
+ #~ msgid "Contact Information"
441
+ #~ msgstr "お問い合わせ情報"
442
+
443
+ #~ msgid "Please feel free to inquire."
444
+ #~ msgstr "お気軽にお問い合わせください。"
445
+
446
+ #~ msgid "Office hours 9:00 - 18:00 [ Weekdays except holidays ]"
447
+ #~ msgstr "受付時間 9:00-18:00 [ 土・日・祝日除く ]"
448
+
449
+ #~ msgid "Contact us"
450
+ #~ msgstr "お問い合わせ"
451
+
452
+ #~ msgid "Message"
453
+ #~ msgstr "メッセージ"
454
+
455
+ #~ msgid "ex) "
456
+ #~ msgstr "例: "
457
+
458
+ #~ msgid "Phone number"
459
+ #~ msgstr "電話番号"
460
+
461
+ #~ msgid "Office hours"
462
+ #~ msgstr "営業時間"
463
+
464
+ #~ msgid "Weekdays except holidays"
465
+ #~ msgstr "土日・祝日除く"
466
+
467
+ #~ msgid "The contact page URL"
468
+ #~ msgstr "お問い合わせ先URL"
469
+
470
+ #~ msgid "or"
471
+ #~ msgstr "もしくは"
472
+
473
+ #~ msgid "* If you fill in the blank, contact button does not appear."
474
+ #~ msgstr "未入力の場合はお問い合わせボタンは表示されません。"
475
+
476
+ #~ msgid "Contact button Text"
477
+ #~ msgstr "お問い合わせボタンに表示するテキスト"
478
+
479
+ #~ msgid "Contact Us from email."
480
+ #~ msgstr "メールでのお問い合わせはこちら"
481
+
482
+ #~ msgid "Contact button text( sub )"
483
+ #~ msgstr "お問い合わせボタンに表示するテキスト2(オプション)"
484
+
485
+ #~ msgid "Email contact form"
486
+ #~ msgstr "お気軽にお問い合わせください。"
487
+
488
+ #~ msgid "Contact button short text for side widget"
489
+ #~ msgstr "お問い合わせボタンウィジェットに表示するテキスト"
490
+
491
+ #~ msgid "This will used to \"Contact Button\" widget."
492
+ #~ msgstr ""
493
+ #~ "このテキストはお問い合わせボタンウィジェットで使用されます。サイドバーでの"
494
+ #~ "利用を想定していますので少ない文字数で設定してください。"
495
+
496
+ #~ msgid "Display Contact Section"
497
+ #~ msgstr "お問い合わせ情報の表示"
498
+
499
+ #~ msgid "Edit contact information"
500
+ #~ msgstr "Contact情報を編集"
501
+
502
+ #~ msgid "Contact Button"
503
+ #~ msgstr "お問い合わせボタン"
504
+
505
+ #~ msgid ""
506
+ #~ "*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
507
+ #~ "\"Main setting\" page."
508
+ #~ msgstr ""
509
+ #~ "* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
510
+ #~ "す。"
511
+
512
+ #~ msgid ""
513
+ #~ "<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a "
514
+ #~ "href=\"//lightning.vektor-inc.co.jp\" target=\"_blank\" title=\"Free "
515
+ #~ "WordPress Theme Lightning\"> Lightning Theme</a> &amp; <a href=\"http://"
516
+ #~ "ex-unit.vektor-inc.co.jp/\" target=\"_blank\">VK All in One Expansion "
517
+ #~ "Unit</a> by <a href=\"http://www.vektor-inc.co.jp\" target=\"_blank"
518
+ #~ "\">Vektor,Inc.</a> technology.</p>"
519
+ #~ msgstr ""
520
+ #~ "<p>Powered by <a href=\"https://ja.wordpress.org/\" target=\"_blank"
521
+ #~ "\">WordPress</a> with <a href=\"//lightning.vektor-inc.co.jp/ja/\" target="
522
+ #~ "\"_blank\" title=\"Free WordPress Theme Lightning\"> Lightning Theme</a> "
523
+ #~ "&amp; <a href=\"http://ex-unit.vektor-inc.co.jp/ja/\" target=\"_blank"
524
+ #~ "\">VK All in One Expansion Unit</a> by <a href=\"http://www.vektor-inc.co."
525
+ #~ "jp\" target=\"_blank\">Vektor,Inc.</a> technology.</p>"
526
+
527
+ #~ msgid "icon setting"
528
+ #~ msgstr "アイコン設定"
529
+
530
+ #~ msgid "Favicon Setting"
531
+ #~ msgstr "ファビコン設定"
532
+
533
+ #~ msgid "Choose icon"
534
+ #~ msgstr "アイコンを選択"
535
+
536
+ #~ msgid "Please upload your \".ico\" file"
537
+ #~ msgstr "作成したicoファイルをアップロードしてください"
538
+
539
+ #~ msgid "Insert ads to post."
540
+ #~ msgstr "投稿に広告を挿入"
541
+
542
+ #~ msgid "Insert ads to before content and more tag and after content."
543
+ #~ msgstr "記事の直前 / moreタグの直後 / 記事の最後に広告を挿入できます。"
544
+
545
+ #~ msgid "If you want to separate ads area, you fill two fields."
546
+ #~ msgstr ""
547
+ #~ "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
548
+
549
+ #~ msgid "insert the ad [ before content ]"
550
+ #~ msgstr "広告を挿入 [ 記事の最初 ]"
551
+
552
+ #~ msgid "insert the ad [ more tag ]"
553
+ #~ msgstr "広告を挿入 [ moreタグ ]"
554
+
555
+ #~ msgid "insert the ad [ after content ]"
556
+ #~ msgstr "広告を挿入 [ 記事の最後 ]"
557
+
558
+ #~ msgid "Meta Description"
559
+ #~ msgstr "メタディスクリプション"
560
+
561
+ #~ msgid ""
562
+ #~ "What you have to complete the \"excerpt\" column of the edit screen of "
563
+ #~ "each page will be reflected in the description of the meta tag."
564
+ #~ msgstr ""
565
+ #~ "各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプション"
566
+ #~ "に反映されます"
567
+
568
+ #~ msgid ""
569
+ #~ "Description of meta tags in the search results screen of search sites "
570
+ #~ "such as Google, will be Displayed, such as the bottom of the site title. "
571
+ #~ "If the excerpt column is blank, is 240 characters than text beginning of "
572
+ #~ "a sentence has become a specification that is applied as a description."
573
+ #~ msgstr ""
574
+ #~ "トップページのメタディスクリプションにはサイトのキャッチフレーズが適用され"
575
+ #~ "ます。しかし、トップページに設定した固定ページに抜粋が記入されている場合は"
576
+ #~ "その内容が反映されます。"
577
+
578
+ #~ msgid ""
579
+ #~ "The meta description of the top page is subject to the catchphrase of the "
580
+ #~ "site. However, its contents will be reflected if the excerpt is entered "
581
+ #~ "in fixed page that was set on the top page."
582
+ #~ msgstr ""
583
+ #~ "トップページのメタディスクリプションにはサイトのキャッチフレーズが適用され"
584
+ #~ "ます。しかし、トップページに設定した固定ページに抜粋が記入されている場合は"
585
+ #~ "その内容が反映されます。"
586
+
587
+ #~ msgid ""
588
+ #~ "If \"excerpt\" column is not found, Click \"Display Option\" of page top "
589
+ #~ "at each article edit page, and check the expert column display."
590
+ #~ msgstr ""
591
+ #~ "抜粋欄が表示されていない場合は、編集画面の右上に「表示」というタブがありま"
592
+ #~ "すので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきま"
593
+ #~ "すので、チェックして下さい。"
594
+
595
+ #~ msgid "Meta Keywords"
596
+ #~ msgstr "メタキーワード"
597
+
598
+ #~ msgid "Meta Keyword"
599
+ #~ msgstr "メタキーワード"
600
+
601
+ #~ msgid "Common Keywords"
602
+ #~ msgstr "共通キーワード設定"
603
+
604
+ #~ msgid ""
605
+ #~ "Keywords for meta tag. This words will set Meta Keyword with post "
606
+ #~ "keywords. if you want multiple keywords, enter with separator of \",\"."
607
+ #~ msgstr ""
608
+ #~ "メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共"
609
+ #~ "通のキーワードを設定します。複数ある場合は「,」で区切ってください。"
610
+
611
+ #~ msgid "This is not seriously, Because the SearchEngine does not care this."
612
+ #~ msgstr ""
613
+ #~ "あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要な"
614
+ #~ "ファクターとはなりません。"
615
+
616
+ #~ msgid ""
617
+ #~ "For each page individual keyword is enter at the edit screen of each "
618
+ #~ "article. 10 keywords maximum, together with a each article keywords is "
619
+ #~ "desirable."
620
+ #~ msgstr ""
621
+ #~ "個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加し"
622
+ #~ "てください。それらと合わせて10個程度のキーワード数であることが望ましいで"
623
+ #~ "す。"
624
+
625
+ #~ msgid "\",\" separator at end of the last keyword is do not need."
626
+ #~ msgstr "最後のキーワードの後ろに「,」は必要ありません。"
627
+
628
+ #~ msgid "Example: WordPress,template,theme,free,GPL"
629
+ #~ msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
630
+
631
+ #~ msgid ""
632
+ #~ "To distinguish between individual keywords, please enter a , delimiter "
633
+ #~ "(optional)."
634
+ #~ msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
635
+
636
+ #~ msgid "* keywords common to the entire site can be set from %s."
637
+ #~ msgstr "サイト全体のキーワードは %s より設定することができます。"
638
+
639
+ #~ msgid "Setting of insert items"
640
+ #~ msgstr "挿入アイテムの設定"
641
+
642
+ #~ msgid "Display a page list from ancestor"
643
+ #~ msgstr "現在のページの先祖階層からの子ページリストを表示"
644
+
645
+ #~ msgid "Search Results for : %s"
646
+ #~ msgstr "検索結果 : %s"
647
+
648
+ #~ msgid "Not found"
649
+ #~ msgstr "見つかりません"
650
+
651
+ #~ msgid "&lt;title&gt; tag of homepage"
652
+ #~ msgstr "トップページの&lt;title&gt;タグ"
653
+
654
+ #~ msgid "title of the site"
655
+ #~ msgstr "サイトのタイトル"
656
+
657
+ #~ msgid "Normally \"%1$s\" is placed in the title tags of all the pages."
658
+ #~ msgstr "通常「%1$s」が全ページのタイトルタグに入ります。"
659
+
660
+ #~ msgid ""
661
+ #~ "For example, it appears in the form of <br />&lt;title&gt;page title | "
662
+ #~ "%1$s&lt;/title&gt;<br /> if using a static page."
663
+ #~ msgstr ""
664
+ #~ "例えば固定ページであれば<br>&lt;title&gt;固定ページ名 | %1$s&lt;/title&gt;"
665
+ #~ "<br>というような形式で出力されます。"
666
+
667
+ #~ msgid ""
668
+ #~ "However, it might have negative impact on search engine rankings if the "
669
+ #~ "&lt;title&gt; is too long, <strong>therefore please include the most "
670
+ #~ "popular keywords in a summarized manner, keeping the %s as short as "
671
+ #~ "possible.</strong>"
672
+ #~ msgstr ""
673
+ #~ "しかし、&lt;title&gt;の文字数が長くなりすぎると検索エンジンからの評価が逆"
674
+ #~ "に悪くなるので、%s は一番検索されたいキーワードを盛り込みつつなるべく短く"
675
+ #~ "まとめる事が望ましいです。"
676
+
677
+ #~ msgid "Tagline"
678
+ #~ msgstr "キャッチフレーズ"
679
+
680
+ #~ msgid ""
681
+ #~ "In the top page will be output usually in the form of <br />&lt;title&gt;"
682
+ #~ "%1$s | %2$s&lt;/title&gt;"
683
+ #~ msgstr ""
684
+ #~ "トップページでは<br>&lt;title&gt;%1$s | %2$s&lt;/title&gt;<br>というような"
685
+ #~ "形式で出力されます。"
686
+
687
+ #~ msgid ""
688
+ #~ "However, it may be too long in the above format. If the input to the "
689
+ #~ "input field of the following, its contents will be reflected."
690
+ #~ msgstr ""
691
+ #~ "しかし、上記の形式では長くなりすぎる事があります。その場合は下記の入力欄に"
692
+ #~ "入力すれば、その内容が反映されます。"
693
+
694
+ #~ msgid "Edit CTA"
695
+ #~ msgstr "CTAの編集"
696
+
697
+ #~ msgid "Add new CTA"
698
+ #~ msgstr "CTAの新規作成"
699
+
700
+ #~ msgid "New CTA"
701
+ #~ msgstr "CTA 新規作成"
702
+
703
+ #~ msgid "Call to Action setting"
704
+ #~ msgstr "CTA設定"
705
+
706
+ #~ msgid "Follow common setting"
707
+ #~ msgstr "共通設定を使用"
708
+
709
+ #~ msgid "Disable display"
710
+ #~ msgstr "表示しない"
711
+
712
+ #~ msgid "CTA common setting"
713
+ #~ msgstr "CTA共通設定"
714
+
715
+ #~ msgid "Show CTA index page"
716
+ #~ msgstr "CTAの一覧を表示"
717
+
718
+ #~ msgid "CTA image"
719
+ #~ msgstr "CTA画像"
720
+
721
+ #~ msgid "Add image"
722
+ #~ msgstr "画像を追加"
723
+
724
+ #~ msgid "Change image"
725
+ #~ msgstr "画像を変更"
726
+
727
+ #~ msgid "Remove image"
728
+ #~ msgstr "画像を削除"
729
+
730
+ #~ msgid "CTA image position"
731
+ #~ msgstr "CTA画像の位置"
732
+
733
+ #~ msgid "center"
734
+ #~ msgstr "中央"
735
+
736
+ #~ msgid "left"
737
+ #~ msgstr "左寄せ"
738
+
739
+ #~ msgid "Button text"
740
+ #~ msgstr "ボタンの表記文言"
741
+
742
+ #~ msgid "Button link url"
743
+ #~ msgstr "ボタンのリンク先URL"
744
+
745
+ #~ msgid "Text message"
746
+ #~ msgstr "テキストメッセージ"
747
+
748
+ #~ msgid "CTA setting"
749
+ #~ msgstr "CTA設定"
750
+
751
+ #~ msgid "How to use"
752
+ #~ msgstr "使い方"
753
+
754
+ #~ msgid ""
755
+ #~ "You register the contents on \"CTA\" that you want to display to bottom "
756
+ #~ "of the content."
757
+ #~ msgstr "まずは投稿タイプCTAで、本文の最後に表示させたい内容を登録します。"
758
+
759
+ #~ msgid "Choose the CTA to be displayed from the following."
760
+ #~ msgstr "下記のプルダウンで、投稿タイプ別に表示するCTAを選択して保存します。"
761
+
762
+ #~ msgid ""
763
+ #~ "If you want to switch the CTA to be displayed on each post, please set in "
764
+ #~ "the details page of such posting."
765
+ #~ msgstr ""
766
+ #~ "投稿毎に表示するCTAを切り替えたい場合は、投稿などの詳細ページで設定してく"
767
+ #~ "ださい。"
768
+
769
+ #~ msgid "Show index page"
770
+ #~ msgstr "一覧ページを表示する"
771
+
772
+ #~ msgid "CSS Customize"
773
+ #~ msgstr "CSSカスタマイズ"
774
+
775
+ #~ msgid "You can add custom CSS here."
776
+ #~ msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
777
+
778
+ #~ msgid "Save CSS"
779
+ #~ msgstr "CSSを保存する"
780
+
781
+ #~ msgid "Your custom CSS was saved."
782
+ #~ msgstr "CSSが保存されました"
783
+
784
+ #~ msgid "Error occured. Please try again."
785
+ #~ msgstr "何らかのエラー!! また試してみてください"
786
+
787
+ #~ msgid "Google Analytics Settings"
788
+ #~ msgstr "Google Analytics設定"
789
+
790
+ #~ msgid ""
791
+ #~ "Please fill in the Google Analytics ID from the Analytics embed code used "
792
+ #~ "in the site."
793
+ #~ msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
794
+
795
+ #~ msgid ""
796
+ #~ "Please select the type of Analytics code . (If you are unsure you can "
797
+ #~ "skip this.)"
798
+ #~ msgstr ""
799
+ #~ "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略でき"
800
+ #~ "ます )"
801
+
802
+ #~ msgid "To output the Universal Analytics code (default)"
803
+ #~ msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
804
+
805
+ #~ msgid "To output only normal code"
806
+ #~ msgstr "ノーマルのコードのみを出力します。"
807
+
808
+ #~ msgid "To output both types"
809
+ #~ msgstr "両タイプのコードを出力します。"
810
+
811
+ #~ msgid "3PR area"
812
+ #~ msgstr "3PR エリア"
813
+
814
+ #~ msgid "Displays a 3PR area"
815
+ #~ msgstr "3PR エリアを表示します。"
816
+
817
+ #~ msgid "3PR area1 title"
818
+ #~ msgstr "3PR エリア1 タイトル"
819
+
820
+ #~ msgid "3PR area2 title"
821
+ #~ msgstr "3PR エリア2 タイトル"
822
+
823
+ #~ msgid "3PR area3 title"
824
+ #~ msgstr "3PR エリア3 タイトル"
825
+
826
+ #~ msgid "3PR area1 setting"
827
+ #~ msgstr "3PR エリア1 設定"
828
+
829
+ #~ msgid "Select image for PC:"
830
+ #~ msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
831
+
832
+ #~ msgid "Select image"
833
+ #~ msgstr "画像を選択"
834
+
835
+ #~ msgid "Clear image"
836
+ #~ msgstr "画像クリア"
837
+
838
+ #~ msgid "Select image for Mobile:"
839
+ #~ msgstr ""
840
+ #~ "スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
841
+ #~ "690px 以上推奨。空欄も可)"
842
+
843
+ #~ msgid "Summary Text:"
844
+ #~ msgstr "概要となるテキスト"
845
+
846
+ #~ msgid "Link URL:"
847
+ #~ msgstr "リンク先ページのURL"
848
+
849
+ #~ msgid "3PR area2 setting"
850
+ #~ msgstr "3PR エリア2 設定"
851
+
852
+ #~ msgid "3PR area3 setting"
853
+ #~ msgstr "3PR エリア3 設定"
854
+
855
+ #~ msgid "Monthly archives"
856
+ #~ msgstr "月別アーカイブ"
857
+
858
+ #~ msgid "Post type"
859
+ #~ msgstr "ポストタイプ"
860
+
861
+ #~ msgid "Monthly"
862
+ #~ msgstr "月別"
863
+
864
+ #~ msgid "Yearly"
865
+ #~ msgstr "年別"
866
+
867
+ #~ msgid "archive"
868
+ #~ msgstr "アーカイブ"
869
+
870
+ #~ msgid "Child Page List"
871
+ #~ msgstr "子ページのリスト"
872
+
873
+ #~ msgid "Display the child pages list from ancestor page."
874
+ #~ msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
875
+
876
+ #~ msgid "page content to widget"
877
+ #~ msgstr "固定ページ本文"
878
+
879
+ #~ msgid "Displays a page contents to widget."
880
+ #~ msgstr "選択したページの内容を表示します。"
881
+
882
+ #~ msgid "Display page"
883
+ #~ msgstr "ページを表示"
884
+
885
+ #~ msgid "display title"
886
+ #~ msgstr "タイトルを表示"
887
+
888
+ #~ msgid "Edit"
889
+ #~ msgstr "編集"
890
+
891
+ #~ msgid "PR Blocks"
892
+ #~ msgstr "PR Blocks"
893
+
894
+ #~ msgid "Displays a circle image or icon font for pr blocks"
895
+ #~ msgstr "丸抜きの画像やアイコンフォントをPRブロックに表示"
896
+
897
+ #~ msgid "Service"
898
+ #~ msgstr "サービス紹介"
899
+
900
+ #~ msgid "Company"
901
+ #~ msgstr "会社案内"
902
+
903
+ #~ msgid "Recruit"
904
+ #~ msgstr "採用情報"
905
+
906
+ #~ msgid "Contact"
907
+ #~ msgstr "Contact"
908
+
909
+ #~ msgid "The choice of the number of columns:"
910
+ #~ msgstr "列の数"
911
+
912
+ #~ msgid "3column"
913
+ #~ msgstr "3列"
914
+
915
+ #~ msgid "4column"
916
+ #~ msgstr "4列"
917
+
918
+ #~ msgid ""
919
+ #~ "If you change the number of columns, click to \"Save\" botton and exit "
920
+ #~ "the edit page. When restart the edit page, the column input form is "
921
+ #~ "increased or decreased."
922
+ #~ msgstr ""
923
+ #~ "列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了し"
924
+ #~ "ます。それから編集画面を再度開くと列の入力フォームが増減します。"
925
+
926
+ #~ msgid "PR Block"
927
+ #~ msgstr "PRブロック"
928
+
929
+ #~ msgid "Class name of the icon font you want to use:"
930
+ #~ msgstr "使用したいアイコンフォントのクラス名:"
931
+
932
+ #~ msgid "To choose your favorite icon, and enter the class."
933
+ #~ msgstr "アイコンフォントを選んでそのクラス名を入力してください。"
934
+
935
+ #~ msgid " ex:fa-file-text-o"
936
+ #~ msgstr "例:fa-file-text-o"
937
+
938
+ #~ msgid "Icon bg-color:"
939
+ #~ msgstr "アイコン背景色:"
940
+
941
+ #~ msgid "Select image:"
942
+ #~ msgstr "画像を選択"
943
+
944
+ #~ msgid "When you have an image. Image is displayed with priority"
945
+ #~ msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
946
+
947
+ #~ msgid "Profile"
948
+ #~ msgstr "プロフィール"
949
+
950
+ #~ msgid "Displays a your profile"
951
+ #~ msgstr ""
952
+ #~ "ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示しま"
953
+ #~ "す。"
954
+
955
+ #~ msgid "Profile Text"
956
+ #~ msgstr "プロフィールテキスト"
957
+
958
+ #~ msgid "Select Profile image:"
959
+ #~ msgstr "プロフィール用画像を選択"
960
+
961
+ #~ msgid "Cut out round the image."
962
+ #~ msgstr "画像を丸く切り抜いて表示する"
963
+
964
+ #~ msgid "Media size (Optional)"
965
+ #~ msgstr "画像の大きさ( 任意 )"
966
+
967
+ #~ msgid "Image align left"
968
+ #~ msgstr "画像を左揃えにする"
969
+
970
+ #~ msgid "Text float to image."
971
+ #~ msgstr "テキストを画像に回りこませる"
972
+
973
+ #~ msgid "Profile Text:"
974
+ #~ msgstr "プロフィールテキスト"
975
+
976
+ #~ msgid "Facebook URL:"
977
+ #~ msgstr "Facebook リンク先ページのURL"
978
+
979
+ #~ msgid "Twitter URL:"
980
+ #~ msgstr "twitterリンク先ページのURL"
981
+
982
+ #~ msgid "Email Address:"
983
+ #~ msgstr "Email リンク先ページのURL"
984
+
985
+ #~ msgid "Youtube URL:"
986
+ #~ msgstr "Youtube リンク先ページのURL"
987
+
988
+ #~ msgid "RSS URL:"
989
+ #~ msgstr "RSS リンク先ページのURL"
990
+
991
+ #~ msgid "instagram URL:"
992
+ #~ msgstr "instagram リンク先ページのURL"
993
+
994
+ #~ msgid "linkedin URL:"
995
+ #~ msgstr "linkedin リンク先ページのURL"
996
+
997
+ #~ msgid "Categories/Custom taxonomies list"
998
+ #~ msgstr "カテゴリー/カスタム分類リスト"
999
+
1000
+ #~ msgid "Displays a categories and custom taxonomies list."
1001
+ #~ msgstr "カテゴリーやカスタム分類のリストを表示します。"
1002
+
1003
+ #~ msgid "Label to display"
1004
+ #~ msgstr "表示するラベル"
1005
+
1006
+ #~ msgid "Blog"
1007
+ #~ msgstr "ブログ"
1008
+
1009
+ #~ msgid "Displays entries list from a RSS feed link."
1010
+ #~ msgstr "RSSフィードリンクからエントリーリストを表示します。"
1011
+
1012
+ #~ msgid "RSS entries for top"
1013
+ #~ msgstr "トップのRSSエントリー"
1014
+
1015
+ #~ msgid "Blog entries"
1016
+ #~ msgstr "ブログエントリー"
1017
+
1018
+ #~ msgid "Heading title"
1019
+ #~ msgstr "見出しタイトル"
1020
+
1021
+ #~ msgid "HTML Sitemap Settings"
1022
+ #~ msgstr "HTMLサイトマップ設定"
1023
+
1024
+ #~ msgid "Exclude page Settings"
1025
+ #~ msgstr "除外ページ設定"
1026
+
1027
+ #~ msgid "Input you want to exclude page id."
1028
+ #~ msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
1029
+
1030
+ #~ msgid ""
1031
+ #~ "* Please enter separated by \",\"(commas) if there is more than one page "
1032
+ #~ "ID that you want to exclude."
1033
+ #~ msgstr ""
1034
+ #~ "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
1035
+
1036
+ #~ msgid "HTML Sitemap"
1037
+ #~ msgstr "HTMLサイトマップ"
1038
+
1039
+ #~ msgid "Display a HTML sitemap"
1040
+ #~ msgstr "HTMLサイトマップの表示"
1041
+
1042
+ #~ msgid "Displays a Facebook Page Plugin"
1043
+ #~ msgstr "Facebook ページプラグインを表示します。"
1044
+
1045
+ #~ msgid "Height"
1046
+ #~ msgstr "高さ"
1047
+
1048
+ #~ msgid "Show Friend's Faces"
1049
+ #~ msgstr "アイコンを表示する"
1050
+
1051
+ #~ msgid "Hide Cover Photo"
1052
+ #~ msgstr "カバー画像を表示しない"
1053
+
1054
+ #~ msgid "Show Page Posts"
1055
+ #~ msgstr "タイムラインを表示"
1056
+
1057
+ #~ msgid "Follow me"
1058
+ #~ msgstr "このサイトをフォローする"
1059
+
1060
+ #~ msgid "Sns Title"
1061
+ #~ msgstr "OGPタイトル"
1062
+
1063
+ #~ msgid "if filled this area then override title of OGP and Twitter Card"
1064
+ #~ msgstr ""
1065
+ #~ "このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力さ"
1066
+ #~ "れるタイトルを上書きすることができます"
1067
+
1068
+ #~ msgid "SNS"
1069
+ #~ msgstr "SNS"
1070
+
1071
+ #~ msgid "SNS Settings"
1072
+ #~ msgstr "SNS設定"
1073
+
1074
+ #~ msgid "facebook application ID"
1075
+ #~ msgstr "facebookアプリケーションID"
1076
+
1077
+ #~ msgid "I will check and get the application ID"
1078
+ #~ msgstr "アプリケーションIDを確認・取得する "
1079
+
1080
+ #~ msgid ""
1081
+ #~ "* If an application ID is not specified, neither a Like button nor the "
1082
+ #~ "comment field displays and operates correctly."
1083
+ #~ msgstr ""
1084
+ #~ "※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しま"
1085
+ #~ "せん。"
1086
+
1087
+ #~ msgid ""
1088
+ #~ "Please search for terms as [get Facebook application ID] If you do not "
1089
+ #~ "know much about how to get application ID for Facebook."
1090
+ #~ msgstr ""
1091
+ #~ "facebookのアプリケーションIDの取得方法についてよくわからない場合は"
1092
+ #~ "「facebook アプリケーションID 取得」などで検索して下さい。"
1093
+
1094
+ #~ msgid "facebook page URL"
1095
+ #~ msgstr "FacebookページURL"
1096
+
1097
+ #~ msgid "OG default image"
1098
+ #~ msgstr "デフォルトのOGPイメージ"
1099
+
1100
+ #~ msgid ""
1101
+ #~ "If, for example someone pressed the Facebook [Like] button, this is the "
1102
+ #~ "image that appears on the Facebook timeline."
1103
+ #~ msgstr ""
1104
+ #~ "Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタ"
1105
+ #~ "イムラインに表示されます。"
1106
+
1107
+ #~ msgid "If a featured image is specified for the page, it takes precedence."
1108
+ #~ msgstr ""
1109
+ #~ "ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先され"
1110
+ #~ "ます。"
1111
+
1112
+ #~ msgid "Select an image"
1113
+ #~ msgstr "画像を選択"
1114
+
1115
+ #~ msgid ""
1116
+ #~ "* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
1117
+ #~ "recommended."
1118
+ #~ msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
1119
+
1120
+ #~ msgid "twitter ID"
1121
+ #~ msgstr "twitterアカウント"
1122
+
1123
+ #~ msgid "OG tags"
1124
+ #~ msgstr "OGタグ"
1125
+
1126
+ #~ msgid "Print the OG tags"
1127
+ #~ msgstr "OGタグを出力する"
1128
+
1129
+ #~ msgid ""
1130
+ #~ "If other plug-ins are used for the OG, do not output the OG using this "
1131
+ #~ "plugin."
1132
+ #~ msgstr ""
1133
+ #~ "OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力して"
1134
+ #~ "いる場合は、このプラグインでの出力は必要ありません。"
1135
+
1136
+ #~ msgid "Twitter Card tags"
1137
+ #~ msgstr "Twitterカードタグ"
1138
+
1139
+ #~ msgid "Print the Twitter Card tags"
1140
+ #~ msgstr "Twitter カードタグを html head 内へ出力します。"
1141
+
1142
+ #~ msgid "Social bookmark buttons"
1143
+ #~ msgstr "ソーシャルボタン"
1144
+
1145
+ #~ msgid "Print the social bookmark buttons"
1146
+ #~ msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
1147
+
1148
+ #~ msgid "ignore postID for SNS buttons"
1149
+ #~ msgstr "SNSボタンの非表示設定"
1150
+
1151
+ #~ msgid ""
1152
+ #~ "if you need filtering by post_ID, add the ignore post_ID separate by \","
1153
+ #~ "\"."
1154
+ #~ msgstr ""
1155
+ #~ "特定のポストのみSNSボタンを表示したくない場合、カンマ(,)区切りでポストIDを"
1156
+ #~ "入力します。"
1157
+
1158
+ #~ msgid "example"
1159
+ #~ msgstr "例"
1160
+
1161
+ #~ msgid "Follow me box"
1162
+ #~ msgstr "Follow me box"
1163
+
1164
+ #~ msgid "Print the Follow me box"
1165
+ #~ msgstr "Follow me ユニットを本文の下に表示する"
1166
+
1167
+ #~ msgid "Follow me box title"
1168
+ #~ msgstr "Follow me box の見出しテキスト"
1169
+
1170
+ #~ msgid "Edit Guide"
1171
+ #~ msgstr "編集ガイド"
1172
+
1173
+ #~ msgid "Active Setting"
1174
+ #~ msgstr "有効化設定"
1175
+
1176
+ #~ msgid "Main Setting"
1177
+ #~ msgstr "メイン設定"
1178
+
1179
+ #~ msgid "News from VK All in One Expansion Unit"
1180
+ #~ msgstr "VK All in One Expansion Unit からのお知らせ"
1181
+
1182
+ #~ msgid "Sorry, there is no post"
1183
+ #~ msgstr "お知らせはありません。"
1184
+
1185
+ #~ msgid "Normally, I will include the %1$s in the title tag."
1186
+ #~ msgstr "通常 %1$s が全ページのタイトルタグに入ります。"
1187
+
1188
+ #~ msgid ""
1189
+ #~ "However, in the home page, as described above, other title will not be "
1190
+ #~ "added, it is possible to make the &lt;title&gt; little longer, which can "
1191
+ #~ "be set separately here."
1192
+ #~ msgstr ""
1193
+ #~ "ただ、トップページにおいては上記のように他のタイトルと連結されないので、も"
1194
+ #~ "う少し長めの&lt;title&gt;をつける事が出来るために、ここで別途設定する事が"
1195
+ #~ "出来るようになっています。"
1196
+
1197
+ #~ msgid "* It is necessary to set the Theme options page."
1198
+ #~ msgstr "* テーマオプションページで設定する必要があります。"
1199
+
1200
+ #~ msgid "Social media"
1201
+ #~ msgstr "ソーシャルメディア"
1202
+
1203
+ #~ msgid "If you are unsure, you can leave for later."
1204
+ #~ msgstr "不明な場合は後で設定することができます。"
1205
+
1206
+ #~ msgid ""
1207
+ #~ "If you wish to link to a personal account or a Facebook page banner will "
1208
+ #~ "be displayed if you enter the URL."
1209
+ #~ msgstr ""
1210
+ #~ "個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して"
1211
+ #~ "下さい。"
1212
+
1213
+ #~ msgid "Facebook user ID (optional)"
1214
+ #~ msgstr "Facebook ユーザーID( オプション )"
1215
+
1216
+ #~ msgid "Please enter the Facebook user ID of the administrator."
1217
+ #~ msgstr "管理者のFacebookユーザーIDを入力してください。"
1218
+
1219
+ #~ msgid "* It is not the application ID of the Facebook page."
1220
+ #~ msgstr "* FacebookページのアプリケーションIDではありません。"
1221
+
1222
+ #~ msgid ""
1223
+ #~ "You can see the personal Facebook ID when you access the following url "
1224
+ #~ "http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
1225
+ #~ msgstr ""
1226
+ #~ "このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
1227
+ #~ "ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
1228
+
1229
+ #~ msgid ""
1230
+ #~ "Please search for terms as [find facebook user ID] if you are still not "
1231
+ #~ "sure."
1232
+ #~ msgstr ""
1233
+ #~ "まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索し"
1234
+ #~ "て下さい。"
1235
+
1236
+ #~ msgid "twitter account"
1237
+ #~ msgstr "Twitter アカウント"
1238
+
1239
+ #~ msgid ""
1240
+ #~ "If you would like to link to a Twitter account, banner will be displayed "
1241
+ #~ "if you enter the account name."
1242
+ #~ msgstr ""
1243
+ #~ "Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さ"
1244
+ #~ "い。"
1245
+
1246
+ #~ msgid "widget"
1247
+ #~ msgstr "ウィジェット"
1248
+
1249
+ #~ msgid ""
1250
+ #~ "* If you prefer to use Twitter widgets etc, this can be left blank, paste "
1251
+ #~ "the source code into a [text] %s here."
1252
+ #~ msgstr ""
1253
+ #~ "Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソース"
1254
+ #~ "コードを貼り付けます。"
1255
+
1256
+ #~ msgid "OGP default image"
1257
+ #~ msgstr "OGP デフォルト画像"
1258
+
1259
+ #~ msgid "Social buttons"
1260
+ #~ msgstr "ソーシャルボタン"
1261
+
1262
+ #~ msgid "Please check the type of page that displays the social button."
1263
+ #~ msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
1264
+
1265
+ #~ msgid "Home page"
1266
+ #~ msgstr "トップページ"
1267
+
1268
+ #~ msgid "Page"
1269
+ #~ msgstr "ページ"
1270
+
1271
+ #~ msgid "Post"
1272
+ #~ msgstr "投稿"
1273
+
1274
+ #~ msgid ""
1275
+ #~ "Within the type of page that is checked, if there is a particular page "
1276
+ #~ "you do not wish to display, enter the Page ID. If multiple pages, please "
1277
+ #~ "separate by commas."
1278
+ #~ msgstr ""
1279
+ #~ "表示したくない特定のページが有る場合にページ ID を入力して下さい。複数の"
1280
+ #~ "ページがある場合は、カンマで区切って入力して下さい。"
1281
+
1282
+ #~ msgid "facebook comments box"
1283
+ #~ msgstr "Facebookのコメントボックス"
1284
+
1285
+ #~ msgid "Please check the type of the page to display Facebook comments."
1286
+ #~ msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
1287
+
1288
+ #~ msgid "If you wish to use Facebook LikeBox, please check the location."
1289
+ #~ msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
1290
+
1291
+ #~ msgid "* Please be sure to set Facebook application ID."
1292
+ #~ msgstr "Facebook のアプリケーションIDを設定してください。"
1293
+
1294
+ #~ msgid "Side bar"
1295
+ #~ msgstr "サイドバー"
1296
+
1297
+ #~ msgid "URL of the Facebook page."
1298
+ #~ msgstr "Facebook ページの URL"
1299
+
1300
+ #~ msgid "Display stream"
1301
+ #~ msgstr "タイムラインを表示する"
1302
+
1303
+ #~ msgid "Display"
1304
+ #~ msgstr "表示"
1305
+
1306
+ #~ msgid "Display faces"
1307
+ #~ msgstr "アイコンを表示する"
1308
+
1309
+ #~ msgid "Height of LikeBox"
1310
+ #~ msgstr "いいねボックスの高さ"
1311
+
1312
+ #~ msgid "Do not output the OGP"
1313
+ #~ msgstr "OGP を出力しません"
1314
+
1315
+ #~ msgid ""
1316
+ #~ "If other plug-ins are used for the OGP, do not output the OGP using "
1317
+ #~ "BizVektor."
1318
+ #~ msgstr ""
1319
+ #~ "他の OGP プラグインを使用している場合は、BizVektor を使用して出力しませ"
1320
+ #~ "ん。"
1321
+
1322
+ #~ msgid "I want to output the OGP tags using BizVektor"
1323
+ #~ msgstr "BizVektor を使用して OGP タグを出力したい。"
1324
+
1325
+ #~ msgid "Do not output OGP tags using BizVektor"
1326
+ #~ msgstr "BizVektor を使用して OGP タグを出力しない。"
1327
+
1328
+ #~ msgid "Page top"
1329
+ #~ msgstr "ページ先頭へ"
1330
+
1331
+ #~ msgid ""
1332
+ #~ "*It is necessary to set the \"%s\" -> \"Contact\" section in \"Main "
1333
+ #~ "setting\" page."
1334
+ #~ msgstr ""
1335
+ #~ "* 「%s」→ 「メイン設定」ページで『お問い合わせ情報』を設定する必要がありま"
1336
+ #~ "す。"
1337
+
1338
+ #~ msgid "Choose Print Bootstrap css"
1339
+ #~ msgstr "Bootstrap の CSS を出力するか選択"
1340
+
1341
+ #~ msgid "Choose Print link fontawesome."
1342
+ #~ msgstr "出力する fontawesome link を選択して下さい。"
1343
+
1344
+ #~ msgid "Choose Print meta description."
1345
+ #~ msgstr "出力する meta description を選択して下さい。"
1346
+
1347
+ #~ msgid "Choose Rewrite the title tag"
1348
+ #~ msgstr "タイトルタグの書き換えを選択する"
1349
+
1350
+ #~ msgid "Choose Print meta Keyword."
1351
+ #~ msgstr "メタキーワードを選んでください。"
1352
+
1353
+ #~ msgid "Choose Social media cooperation."
1354
+ #~ msgstr "連携するソーシャルメディアを選択します。"
1355
+
1356
+ #~ msgid "Choose Print Google Analytics tracking code."
1357
+ #~ msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
1358
+
1359
+ #~ msgid "Choose Related posts."
1360
+ #~ msgstr "関連記事を選択"
1361
+
1362
+ #~ msgid "Choose display a child page index"
1363
+ #~ msgstr "子ページの一覧を表示するか選択"
1364
+
1365
+ #~ msgid "Displays the content of a chosen page."
1366
+ #~ msgstr "選択したページの内容を表示します。"
1367
+
1368
+ #~ msgid "page content for top"
1369
+ #~ msgstr "固定ページ本文"
1370
+
1371
+ #~ msgid "if checked you will display a child page index "
1372
+ #~ msgstr ""
1373
+ #~ "チェックを入れると個別ページ下へ同じ親ページをもつ子ページ一覧を表示しま"
1374
+ #~ "す。"
1375
+
1376
+ #~ msgid "PR Block1 title"
1377
+ #~ msgstr "PR ブロック1 タイトル"
1378
+
1379
+ #~ msgid "PR Block2 title"
1380
+ #~ msgstr "PR ブロック2 タイトル"
1381
+
1382
+ #~ msgid "PR Block3 title"
1383
+ #~ msgstr "PR ブロック3 タイトル"
1384
+
1385
+ #~ msgid "PR Block4 title"
1386
+ #~ msgstr "PR ブロック4 タイトル"
1387
+
1388
+ #~ msgid " ex:fa-rocket"
1389
+ #~ msgstr "例: fa-rocket"
1390
+
1391
+ #~ msgid "if checked you will display a sitemap"
1392
+ #~ msgstr "チェックを入れるとHTMLサイトマップを表示します。"
1393
+
1394
+ #, fuzzy
1395
+ #~ msgid "Post each setting."
1396
+ #~ msgstr "3PR エリア1 設定"
1397
+
1398
+ #~ msgid ""
1399
+ #~ "To choose your favorite icon, and enter the class. For example, the use "
1400
+ #~ "of 「fa-rocket」"
1401
+ #~ msgstr "気に入ったアイコンフォントのクラス名を入力します。"
1402
+
1403
+ #~ msgid "Class of IconFont:"
1404
+ #~ msgstr "アイコンフォントの"
1405
+
1406
+ #~ msgid ""
1407
+ #~ "Select the column. You click \"Save\" or \"Apply\". The column input "
1408
+ #~ "field is increased or decreased."
1409
+ #~ msgstr "列を選択したら一度保存して、"
1410
+
1411
+ #~ msgid "You can select a block column:"
1412
+ #~ msgstr "PRブロックの列"
1413
+
1414
+ #~ msgid "Choose display a child page index to posts."
1415
+ #~ msgstr "子ページの一覧を表示するか選択"
1416
+
1417
+ #~ msgid "Insert Site Map"
1418
+ #~ msgstr "サイトマップを挿入する"
1419
+
1420
+ #~ msgid "Choose other widgets."
1421
+ #~ msgstr "Other ウィジェットを選択"
1422
+
1423
+ #, fuzzy
1424
+ #~ msgid "http://ex-unit.bizvektor.com/ja/?feed"
1425
+ #~ msgstr "http://ex-unit.bizvektor.com/ja/?feed"
1426
+
1427
+ #~ msgid "http://ex-unit.bizvektor.com/?feed"
1428
+ #~ msgstr "http://ex-unit.bizvektor.com/ja/?feed"
1429
+
1430
+ #~ msgid "AdWords"
1431
+ #~ msgstr "広告の挿入"
1432
+
1433
+ #, fuzzy
1434
+ #~ msgid "acebook application ID"
1435
+ #~ msgstr "facebookアプリケーションID"
1436
+
1437
+ #~ msgid "Site's Profile"
1438
+ #~ msgstr "プロフィール"
1439
+
1440
+ #~ msgid "Media round setting:"
1441
+ #~ msgstr "画像を丸く切り抜くか:"
1442
+
1443
+ #, fuzzy
1444
+ #~ msgid "Media float setting:"
1445
+ #~ msgstr "メイン設定"
1446
+
1447
+ #~ msgid "Other Widgets"
1448
+ #~ msgstr "Other ウィジェット"
1449
+
1450
+ #~ msgid "Do not output the OG"
1451
+ #~ msgstr "OGタグ出力設定"
1452
+
1453
+ #~ msgid "Output OG tags(default)"
1454
+ #~ msgstr "OGタグを出力する"
1455
+
1456
+ #~ msgctxt "Archive description"
1457
+ #~ msgid "Article of %s."
1458
+ #~ msgstr "%s の記事"
1459
+
1460
+ #~ msgid "WebClip Setting"
1461
+ #~ msgstr "ウェブクリップ設定"
1462
+
1463
+ #~ msgid ""
1464
+ #~ "Description of meta tags in the search results screen of search sites "
1465
+ #~ "such as Google, will be Displayed, such as the bottom of the site title.\n"
1466
+ #~ "If the excerpt column is blank, is 240 characters than text beginning of "
1467
+ #~ "a sentence has become a specification that is applied as a description."
1468
+ #~ msgstr ""
1469
+ #~ "メタタグのディスクリプションはGoogleなどの検索サイトの検索結果画面で、サイ"
1470
+ #~ "トタイトルの下などに表示されます。"
1471
+
1472
+ #~ msgid "Displays a your site's profile"
1473
+ #~ msgstr "サイトのプロフィールを表示します"
1474
+
1475
+ #~ msgid "Site's Profile Text"
1476
+ #~ msgstr "Site's Profile Text"
1477
+
1478
+ #~ msgid "3PR area Title-1"
1479
+ #~ msgstr "3PR エリア1 タイトル"
1480
+
1481
+ #~ msgid "3PR area Title-2"
1482
+ #~ msgstr "3PR エリア2 タイトル"
1483
+
1484
+ #~ msgid "3PR area Title-3"
1485
+ #~ msgstr "3PR エリア3 タイトル"
1486
+
1487
+ #~ msgid "3PR Box1 Setting"
1488
+ #~ msgstr "3PR ボックス1 設定"
1489
+
1490
+ #~ msgid "3PR Box2 Setting"
1491
+ #~ msgstr "3PR ボックス2 設定"
1492
+
1493
+ #~ msgid "3PR Box3 Setting"
1494
+ #~ msgstr "3PR ボックス3 設定"
1495
+
1496
+ #~ msgid "VK Ex Unit"
1497
+ #~ msgstr "VK Ex Unit"
languages/lightning-adv-unit.mo ADDED
Binary file
languages/lightning-adv-unit.pot ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2016-06-11 02:05+0900\n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
+ "Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.7\n"
12
+ "X-Poedit-SourceCharset: UTF-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;_x\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-PoeditTearchPath-0: .\n"
16
+
17
+ #: plugins/menu-btn-position.php:14
18
+ msgid "Menu button position ( Mobile mode )"
19
+ msgstr ""
20
+
21
+ #: plugins/menu-btn-position.php:19
22
+ msgid "Left"
23
+ msgstr ""
24
+
25
+ #: plugins/menu-btn-position.php:20
26
+ msgid "Right"
27
+ msgstr ""
28
+
29
+ #: plugins/navigation/navigation.php:15
30
+ msgid "Menu Type ( Mobile mode )"
31
+ msgstr ""
32
+
33
+ #: plugins/navigation/navigation.php:20
34
+ msgid "Side Slide"
35
+ msgstr ""
36
+
37
+ #: plugins/navigation/navigation.php:21
38
+ msgid "Vertical Show Hide (Lightning default)"
39
+ msgstr ""
40
+
41
+ #: plugins/widgets/widget-new-posts.php:12
42
+ msgid "Content Area Posts Widget"
43
+ msgstr ""
44
+
45
+ #: plugins/widgets/widget-new-posts.php:17
46
+ msgid "Displays a list of your most recent posts"
47
+ msgstr ""
48
+
49
+ #: plugins/widgets/widget-new-posts.php:108
50
+ msgid "Last updated"
51
+ msgstr ""
52
+
53
+ #: plugins/widgets/widget-new-posts.php:132
54
+ #: plugins/widgets/widget-new-posts.php:156
55
+ msgid "Read more"
56
+ msgstr ""
57
+
58
+ #: plugins/widgets/widget-new-posts.php:176
59
+ msgid "<dl><dt>%s</dt><dd>%l</dd></dl>"
60
+ msgstr ""
61
+
62
+ #: plugins/widgets/widget-new-posts.php:196
63
+ msgid "Tags"
64
+ msgstr ""
65
+
66
+ #: plugins/widgets/widget-new-posts.php:229
67
+ msgid "Recent Posts"
68
+ msgstr ""
69
+
70
+ #: plugins/widgets/widget-new-posts.php:238
71
+ msgid "Display Format"
72
+ msgstr ""
73
+
74
+ #: plugins/widgets/widget-new-posts.php:240
75
+ #: plugins/widgets/widget-new-posts.php:242
76
+ msgid "Thumbnail"
77
+ msgstr ""
78
+
79
+ #: plugins/widgets/widget-new-posts.php:240
80
+ #: plugins/widgets/widget-new-posts.php:242
81
+ msgid "Date"
82
+ msgstr ""
83
+
84
+ #: plugins/widgets/widget-new-posts.php:240
85
+ #: plugins/widgets/widget-new-posts.php:242
86
+ msgid "Category"
87
+ msgstr ""
88
+
89
+ #: plugins/widgets/widget-new-posts.php:240
90
+ #: plugins/widgets/widget-new-posts.php:242
91
+ msgid "Title"
92
+ msgstr ""
93
+
94
+ #: plugins/widgets/widget-new-posts.php:240
95
+ msgid "Excerpt"
96
+ msgstr ""
97
+
98
+ #: plugins/widgets/widget-new-posts.php:242
99
+ msgid "Content"
100
+ msgstr ""
101
+
102
+ #: plugins/widgets/widget-new-posts.php:246
103
+ msgid "Title:"
104
+ msgstr ""
105
+
106
+ #: plugins/widgets/widget-new-posts.php:251
107
+ msgid "Display count"
108
+ msgstr ""
109
+
110
+ #: plugins/widgets/widget-new-posts.php:256
111
+ msgid "Slug for the custom type you want to display"
112
+ msgstr ""
113
+
114
+ #: plugins/widgets/widget-new-posts.php:261
115
+ msgid "taxonomy ID"
116
+ msgstr ""
117
+
118
+ #: plugins/widgets/widget-new-posts.php:263
119
+ msgid "if you need filtering by term, add the term ID separate by \",\"."
120
+ msgstr ""
121
+
122
+ #: plugins/widgets/widget-new-posts.php:265
123
+ msgid "if empty this area, I will do not filtering."
124
+ msgstr ""
lightning_advanced_unit.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Plugin Name: Lightning Advanced Unit
4
+ * Plugin URI: http://lightning.vektor-inc.co.jp/
5
+ * Version: 0.0.1
6
+ * Author: Vektor,Inc.
7
+ * Author URI: http://www.vektor-inc.co.jp
8
+ * Description: This is a plug-ins that extend the functionality of the theme "Lightning".
9
+ * Text Domain: lightning-adv-unit
10
+ * Domain Path: /languages
11
+ * License: GPL2
12
+ * License URI: https://www.gnu.org/licenses/gpl-2.0.html
13
+ */
14
+
15
+ $data = get_file_data( __FILE__, array( 'version' => 'Version','textdomain' => 'Text Domain' ) );
16
+ define( 'LIGHTNING_ADVANCED_VERSION', $data['version'] );
17
+ define( 'LIGHTNING_ADVANCED_TEXTDOMAIN', $data['textdomain'] );
18
+ define( 'LIGHTNING_ADVANCED_BASENAME', plugin_basename( __FILE__ ) );
19
+ define( 'LIGHTNING_ADVANCED_URL', plugin_dir_url( __FILE__ ) );
20
+ define( 'LIGHTNING_ADVANCED_DIR', plugin_dir_path( __FILE__ ) );
21
+ define( 'LIGHTNING_ADVANCED_SHORT_NAME', 'LTG' );
22
+
23
+ // require_once( ltg_adv_DIR . 'class.lightning_adv-common.php' );
24
+
25
+ require_once( LIGHTNING_ADVANCED_DIR . 'plugins/navigation/navigation.php' );
26
+ require_once( LIGHTNING_ADVANCED_DIR . 'plugins/widgets/widget-new-posts.php' );
27
+ require_once( LIGHTNING_ADVANCED_DIR . 'plugins/menu-btn-position.php' );
28
+
29
+ /*-------------------------------------------*/
30
+ /* translations
31
+ /*-------------------------------------------*/
32
+ function lightning_adv_unit_textdomain() {
33
+ load_plugin_textdomain( LIGHTNING_ADVANCED_TEXTDOMAIN, false, dirname(plugin_basename(__FILE__)).'/languages/' );
34
+ }
35
+ add_action( 'plugins_loaded', 'lightning_adv_unit_textdomain' );
36
+
37
+
38
+ /*-------------------------------------------*/
39
+ /* Load lightning_adv js
40
+ /*-------------------------------------------*/
41
+ // add_action( 'wp_head','ltg_adv_addJs' );
42
+ // function ltg_adv_addJs() {
43
+ // wp_register_script( 'ltg_adv_js' , LIGHTNING_ADVANCED_URL.'js/lightning_adv.min.js', array( 'jquery' ), LIGHTNING_ADVANCED_VERSION );
44
+ // wp_enqueue_script( 'ltg_adv_js' );
45
+ // }
46
+
47
+ /*-------------------------------------------*/
48
+ /* Load lightning_adv admin js
49
+ /*-------------------------------------------*/
50
+ // add_action( 'admin_print_scripts-ltg_adv_****', 'ltg_adv_admin_add_js' );
51
+ // function ltg_adv_admin_add_js( $hook_suffix ) {
52
+ // wp_register_script( 'ltg_adv_admin_js', LIGHTNING_ADVANCED_URL.'js/ltg_adv_admin.min.js', array( 'jquery' ), LIGHTNING_ADVANCED_VERSION );
53
+ // wp_enqueue_script( 'ltg_adv_admin_js' );
54
+ // }
55
+
56
+ /*-------------------------------------------*/
57
+ /* Load lightning_adv css
58
+ /*-------------------------------------------*/
59
+ // add_action( 'wp_enqueue_scripts', 'ltg_adv_style_enq' );
60
+ // function ltg_adv_style_enq() {
61
+ // wp_enqueue_style( 'ltg_adv_style_css', LIGHTNING_ADVANCED_URL.'css/ltg_adv_style.css', array(), LIGHTNING_ADVANCED_VERSION, 'all' );
62
+ // }
63
+
64
+ /*-------------------------------------------*/
65
+ /* Load lightning_adv admin css
66
+ /*-------------------------------------------*/
67
+ // add_action( 'admin_print_styles-ltg_adv_****', 'ltg_adv_style_admin_enq' );
68
+ // function ltg_adv_style_admin_enq() {
69
+ // wp_enqueue_style( 'ltg_adv_admin_css', LIGHTNING_ADVANCED_URL.'css/ltg_adv_admin.css', array(), LIGHTNING_ADVANCED_VERSION, 'all' );
70
+ // }
plugins/menu-btn-position.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*-------------------------------------------*/
3
+ /* Customizer
4
+ /*-------------------------------------------*/
5
+ add_action( 'customize_register', 'lightning_adv_unit_customize_register_menu_btn_position' );
6
+ function lightning_adv_unit_customize_register_menu_btn_position($wp_customize) {
7
+ $wp_customize->add_setting( 'lightning_theme_options[menu_btn_position]', array(
8
+ 'default' => 'left',
9
+ 'type' => 'option',
10
+ 'capability' => 'edit_theme_options',
11
+ 'sanitize_callback' => 'lightning_sanitize_radio',
12
+ ));
13
+ $wp_customize->add_control( 'lightning_theme_options[menu_btn_position]',array(
14
+ 'label' => __('Menu button position ( Mobile mode )', LIGHTNING_ADVANCED_TEXTDOMAIN),
15
+ 'section' => 'lightning_design',
16
+ 'settings' => 'lightning_theme_options[menu_btn_position]',
17
+ 'type' => 'radio',
18
+ 'choices' => array(
19
+ 'left' => __('Left', LIGHTNING_ADVANCED_TEXTDOMAIN),
20
+ 'right' => __('Right', LIGHTNING_ADVANCED_TEXTDOMAIN),
21
+ ),
22
+ 'priority' => 501,
23
+ ));
24
+ }
25
+
26
+ /*-------------------------------------------*/
27
+ /* Position Change
28
+ /*-------------------------------------------*/
29
+ add_filter( 'lightning_menu_btn_position', 'lightning_adv_unit_menu_btn_position_custom' );
30
+ function lightning_adv_unit_menu_btn_position_custom($menu_btn_position){
31
+ $options = get_option('lightning_theme_options');
32
+ if (isset($options['menu_btn_position']) && $options['menu_btn_position']){
33
+ $menu_btn_position = $options['menu_btn_position'];
34
+ }
35
+ return $menu_btn_position;
36
+ }
plugins/navigation/_scss/navigation.scss ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "utf-8";
2
+ @import "compass";
3
+
4
+ $border_primary : 1px solid #e5e5e5;
5
+ $color_font_default : #464646;
6
+ $color_key : #337ab7;
7
+
8
+ body { overflow-x:hidden; }
9
+ #bodyInner { display:block; overflow:hidden; }
10
+ #wrap { z-index: auto; }
11
+
12
+ /*-------------------------------------------*/
13
+ /* .navSection
14
+ /*-------------------------------------------*/
15
+ .navSection .searchform { display: none; }
16
+
17
+ @media (max-width: 767px){
18
+ .menuBtn { position: fixed;top:inherit; }
19
+ .navSection { overflow:scroll; display: none;position: fixed;height:100%;
20
+ .searchform { margin:10px;overflow:hidden;padding: 0 3em;
21
+ input#s { width:65%; }
22
+ input[type=submit] { width:30%; }
23
+ }
24
+ &.navSection_open_left .searchform,
25
+ &.navSection_open_right .searchform { display: block; }
26
+ }
27
+ .navSection_open_left { border-right:$border_primary; }
28
+ // .navSection_open_left .searchform { padding-left:4em }
29
+ .navSection_open_right { border-left:$border_primary; }
30
+ // .navSection_open_right .searchform { padding-right:4em }
31
+ } // @media (max-width: 767px){
32
+
plugins/navigation/config.rb ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ http_path = "/"
2
+ css_dir = "css"
3
+ sass_dir = "_scss"
4
+ images_dir = "images"
5
+ javascripts_dir = "js"
6
+ # output_style = :compact
7
+ output_style = :compressed
8
+ line_comments = false
9
+ cache = false
10
+ # sass_options = {:debug_info => false}
plugins/navigation/css/navigation.css ADDED
@@ -0,0 +1 @@
 
1
+ body{overflow-x:hidden}#bodyInner{display:block;overflow:hidden}#wrap{z-index:auto}.navSection .searchform{display:none}@media (max-width: 767px){.menuBtn{position:fixed;top:inherit}.navSection{overflow:scroll;display:none;position:fixed;height:100%}.navSection .searchform{margin:10px;overflow:hidden;padding:0 3em}.navSection .searchform input#s{width:65%}.navSection .searchform input[type=submit]{width:30%}.navSection.navSection_open_left .searchform,.navSection.navSection_open_right .searchform{display:block}.navSection_open_left{border-right:1px solid #e5e5e5}.navSection_open_right{border-left:1px solid #e5e5e5}}
plugins/navigation/js/navigation.js ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function(){
2
+ run_slide_menu_control();
3
+ });
4
+ jQuery(window).resize(function(){
5
+ run_menuResize();
6
+ });
7
+ /*-------------------------------------------*/
8
+ /* メニューの開閉
9
+ /* <div id="menu" onclick="showHide('menu');" class="itemOpen">MENU</div>
10
+ /* * header.siteHeader を left で制御しているのは Safariでは
11
+ /* position:fixed しているとウィンドウにfixしてしまってwrapを横にずらしてもついて来ないため
12
+ /*-------------------------------------------*/
13
+
14
+ function run_slide_menu_control(){
15
+ jQuery('.menuBtn').prependTo('#bodyInner');
16
+ jQuery('.menuBtn').each(function(){
17
+ jQuery(this).click(function(){
18
+ if ( jQuery(this).hasClass('menuBtn_left') ){
19
+ var menuPosition = 'left';
20
+ } else {
21
+ var menuPosition = 'right';
22
+ }
23
+ // ※ この時点でLightning本体のmaster.jsによって既に menuOpenに新しく切り替わっている
24
+ if ( jQuery(this).hasClass('menuOpen') ) {
25
+ slide_menu_open(menuPosition);
26
+ } else {
27
+ slide_menu_close(menuPosition);
28
+ }
29
+ });
30
+ });
31
+ }
32
+
33
+ function slide_menu_open(menuPosition){
34
+ var navSection_open_position = 'navSection_open_' + menuPosition;
35
+ jQuery('#navSection').addClass(navSection_open_position);
36
+
37
+ var wrap_width = jQuery('body').width();
38
+ jQuery('#bodyInner').css({"width":wrap_width});
39
+ jQuery('#wrap').css({"width":wrap_width});
40
+
41
+ var menu_width = wrap_width - 60 + 'px';
42
+
43
+ jQuery('#gMenu_outer').appendTo('#navSection');
44
+
45
+ if ( menuPosition == 'right' ){
46
+ jQuery('#wrap').stop().animate({
47
+ // 右にメニューを表示するために左に逃げる
48
+ "margin-left": "-" + menu_width,
49
+ },200);
50
+ jQuery('header.siteHeader').stop().animate({
51
+ "left":"-"+menu_width,
52
+ },200);
53
+ jQuery('#navSection').css({"display":"block","width":menu_width, "right" :"-"+menu_width }).stop().animate({
54
+ "right":0,
55
+ },200);
56
+
57
+ } else if ( menuPosition == 'left' ){
58
+ jQuery('#wrap').stop().animate({
59
+ "margin-left":menu_width,
60
+ },200);
61
+ jQuery('header.siteHeader').stop().animate({
62
+ "left":menu_width,
63
+ },200);
64
+ jQuery('#navSection').css({"display":"block","width":menu_width, "left" :"-"+menu_width }).stop().animate({
65
+ "left":0,
66
+ },200,function(){
67
+ });
68
+ }
69
+ }
70
+ function slide_menu_close(menuPosition){
71
+
72
+ if ( !menuPosition ){
73
+ if ( jQuery('#navSection').hasClass('navSection_open_right') ){
74
+ menuPosition = 'right';
75
+ } else {
76
+ menuPosition = 'left';
77
+ }
78
+ }
79
+
80
+ var wrap_width = jQuery('body').width();
81
+ jQuery('#bodyInner').css({"width":wrap_width});
82
+ jQuery('#wrap').css({"width":wrap_width});
83
+
84
+ var menu_width = wrap_width - 60 + 'px';
85
+
86
+ jQuery('#wrap').stop().animate({ "margin-left":"0" },200);
87
+ jQuery('header.siteHeader').stop().animate({ "left":"0" },200);
88
+
89
+ if ( menuPosition == 'right' ) {jQuery('header.siteHeader').stop().animate({ "left":"0" },200);
90
+ jQuery('#navSection').stop().animate({ "right":"-"+menu_width },200,function(){
91
+ menuClose_common();
92
+ });
93
+ } else if ( menuPosition == 'left' ){
94
+ jQuery('#navSection').stop().animate({ "left":"-"+menu_width },200,function(){
95
+ menuClose_common();
96
+ });
97
+ }
98
+ }
99
+ function menuClose_common(){
100
+ // アニメーションが終わってから実行
101
+ jQuery('#navSection').removeClass('navSection_open_right');
102
+ jQuery('#navSection').removeClass('navSection_open_left');
103
+ jQuery('#gMenu_outer').insertAfter('.navbar-header');
104
+ jQuery('#navSection').css({"right":"","left":""});
105
+ }
106
+ function run_menuResize(){
107
+ var wrap_width = jQuery('body').width();
108
+ jQuery('#bodyInner').css({"width":wrap_width});
109
+ // jQuery('#wrap').css({"width":wrap_width,"margin-left":"","margin-right":""});
110
+ // menuClose_common();
111
+ var headerHeight = jQuery('header.siteHeader').height;
112
+ jQuery('#top__fullcarousel').css({"margin-top":headerHeight});
113
+ if ( wrap_width > 767 ) {
114
+ slide_menu_close();
115
+ }
116
+ }
plugins/navigation/js/navigation.min.js ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+
2
+ jQuery(document).ready(function(){run_slide_menu_control();});jQuery(window).resize(function(){run_menuResize();});function run_slide_menu_control(){jQuery('.menuBtn').prependTo('#bodyInner');jQuery('.menuBtn').each(function(){jQuery(this).click(function(){if(jQuery(this).hasClass('menuBtn_left')){var menuPosition='left';}else{var menuPosition='right';}
3
+ if(jQuery(this).hasClass('menuOpen')){slide_menu_open(menuPosition);}else{slide_menu_close(menuPosition);}});});}
4
+ function slide_menu_open(menuPosition){var navSection_open_position='navSection_open_'+menuPosition;jQuery('#navSection').addClass(navSection_open_position);var wrap_width=jQuery('body').width();jQuery('#bodyInner').css({"width":wrap_width});jQuery('#wrap').css({"width":wrap_width});var menu_width=wrap_width-60+'px';jQuery('#gMenu_outer').appendTo('#navSection');if(menuPosition=='right'){jQuery('#wrap').stop().animate({"margin-left":"-"+menu_width,},200);jQuery('header.siteHeader').stop().animate({"left":"-"+menu_width,},200);jQuery('#navSection').css({"display":"block","width":menu_width,"right":"-"+menu_width}).stop().animate({"right":0,},200);}else if(menuPosition=='left'){jQuery('#wrap').stop().animate({"margin-left":menu_width,},200);jQuery('header.siteHeader').stop().animate({"left":menu_width,},200);jQuery('#navSection').css({"display":"block","width":menu_width,"left":"-"+menu_width}).stop().animate({"left":0,},200,function(){});}}
5
+ function slide_menu_close(menuPosition){if(!menuPosition){if(jQuery('#navSection').hasClass('navSection_open_right')){menuPosition='right';}else{menuPosition='left';}}
6
+ var wrap_width=jQuery('body').width();jQuery('#bodyInner').css({"width":wrap_width});jQuery('#wrap').css({"width":wrap_width});var menu_width=wrap_width-60+'px';jQuery('#wrap').stop().animate({"margin-left":"0"},200);jQuery('header.siteHeader').stop().animate({"left":"0"},200);if(menuPosition=='right'){jQuery('header.siteHeader').stop().animate({"left":"0"},200);jQuery('#navSection').stop().animate({"right":"-"+menu_width},200,function(){menuClose_common();});}else if(menuPosition=='left'){jQuery('#navSection').stop().animate({"left":"-"+menu_width},200,function(){menuClose_common();});}}
7
+ function menuClose_common(){jQuery('#navSection').removeClass('navSection_open_right');jQuery('#navSection').removeClass('navSection_open_left');jQuery('#gMenu_outer').insertAfter('.navbar-header');jQuery('#navSection').css({"right":"","left":""});}
8
+ function run_menuResize(){var wrap_width=jQuery('body').width();jQuery('#bodyInner').css({"width":wrap_width});var headerHeight=jQuery('header.siteHeader').height;jQuery('#top__fullcarousel').css({"margin-top":headerHeight});if(wrap_width>767){slide_menu_close();}}
plugins/navigation/navigation.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*-------------------------------------------*/
4
+ /* Customizer
5
+ /*-------------------------------------------*/
6
+ add_action( 'customize_register', 'lightning_adv_unit_customize_register_menu_type' );
7
+ function lightning_adv_unit_customize_register_menu_type($wp_customize) {
8
+ $wp_customize->add_setting( 'lightning_theme_options[menu_type]', array(
9
+ 'default' => 'side_slide',
10
+ 'type' => 'option',
11
+ 'capability' => 'edit_theme_options',
12
+ 'sanitize_callback' => 'lightning_sanitize_radio',
13
+ ));
14
+ $wp_customize->add_control( 'lightning_theme_options[menu_type]',array(
15
+ 'label' => __('Menu Type ( Mobile mode )', LIGHTNING_ADVANCED_TEXTDOMAIN),
16
+ 'section' => 'lightning_design',
17
+ 'settings' => 'lightning_theme_options[menu_type]',
18
+ 'type' => 'radio',
19
+ 'choices' => array(
20
+ 'side_slide' => __('Side Slide', LIGHTNING_ADVANCED_TEXTDOMAIN),
21
+ 'vertical_show_hide' => __('Vertical Show Hide (Lightning default)', LIGHTNING_ADVANCED_TEXTDOMAIN),
22
+ ),
23
+ 'priority' => 300,
24
+ ));
25
+ }
26
+
27
+ function ltg_adv_is_slide_menu(){
28
+ $options = get_option('lightning_theme_options');
29
+ if ( !isset( $options['menu_type'] ) || $options['menu_type'] != 'vertical_show_hide' ){
30
+ return true;
31
+ } else {
32
+ return false;
33
+ }
34
+ }
35
+
36
+ /*-------------------------------------------*/
37
+ /* Load js & CSS
38
+ /*-------------------------------------------*/
39
+ add_action( 'wp_enqueue_scripts','ltg_adv_nav_add_script' );
40
+ function ltg_adv_nav_add_script() {
41
+ if ( ltg_adv_is_slide_menu() ) {
42
+ wp_register_script( 'ltg_adv_nav_js' , LIGHTNING_ADVANCED_URL.'plugins/navigation/js/navigation.min.js', array( 'jquery','lightning-js' ), LIGHTNING_ADVANCED_VERSION );
43
+ wp_enqueue_script( 'ltg_adv_nav_js' );
44
+ wp_enqueue_style( 'ltg_adv_nav_style_css', LIGHTNING_ADVANCED_URL.'plugins/navigation/css/navigation.css', array('lightning-theme-style'), LIGHTNING_ADVANCED_VERSION, 'all' );
45
+ }
46
+ }
47
+
48
+ /*-------------------------------------------*/
49
+ /* insert_header_before_html
50
+ /*-------------------------------------------*/
51
+ add_action( 'lightning_header_before', 'ltg_adv_insert_header_before_html' );
52
+ function ltg_adv_insert_header_before_html(){
53
+ if ( ltg_adv_is_slide_menu() ) {
54
+ echo '<div id="bodyInner">';
55
+ echo '<section id="navSection" class="navSection">';
56
+ echo get_search_form();
57
+ echo '</section>';
58
+ echo '<div id="wrap">';
59
+ }
60
+ }
61
+
62
+ /*-------------------------------------------*/
63
+ /* insert_footer_after_html
64
+ /*-------------------------------------------*/
65
+ add_action( 'lightning_footer_after', 'ltg_adv_insert_footer_after_html' );
66
+ function ltg_adv_insert_footer_after_html(){
67
+ if ( ltg_adv_is_slide_menu() ) {
68
+ echo '</div><!-- [ /#wrap ] -->';
69
+ echo '</div><!-- [ /#bodyInner ] -->';
70
+ }
71
+ }
plugins/widgets/widget-new-posts.php ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*-------------------------------------------*/
4
+ /* Side Post list widget
5
+ /*-------------------------------------------*/
6
+ class WP_Widget_ltg_adv_post_list extends WP_Widget {
7
+
8
+ public $taxonomies = array( 'category' );
9
+
10
+ function __construct() {
11
+
12
+ $widget_name = LIGHTNING_ADVANCED_SHORT_NAME. ' ' . __( 'Content Area Posts Widget', LIGHTNING_ADVANCED_TEXTDOMAIN );
13
+
14
+ parent::__construct(
15
+ 'ltg_adv_post_list',
16
+ $widget_name,
17
+ array( 'description' => __( 'Displays a list of your most recent posts', LIGHTNING_ADVANCED_TEXTDOMAIN ) )
18
+ );
19
+ }
20
+
21
+ function widget( $args, $instance ) {
22
+ if ( ! isset( $instance['format'] ) ) { $instance['format'] = 0; }
23
+
24
+ echo $args['before_widget'];
25
+ echo '<div class="pt_'.$instance['format'].'">';
26
+ if ( isset( $instance['label'] ) && $instance['label'] ) {
27
+ echo $args['before_title'];
28
+ echo $instance['label'];
29
+ echo $args['after_title'];
30
+ }
31
+
32
+ $count = ( isset( $instance['count'] ) && $instance['count'] ) ? $instance['count'] : 10;
33
+ $post_type = ( isset( $instance['post_type'] ) && $instance['post_type'] ) ? $instance['post_type'] : 'post';
34
+
35
+ if ( $instance['format'] ) {
36
+ $this->_taxonomy_init( $post_type );
37
+ }
38
+
39
+ $p_args = array(
40
+ 'post_type' => $post_type,
41
+ 'posts_per_page' => $count,
42
+ 'paged' => 1,
43
+ );
44
+
45
+ if ( isset( $instance['terms'] ) && $instance['terms'] ) {
46
+ $taxonomies = get_taxonomies( array() );
47
+ $p_args['tax_query'] = array(
48
+ 'relation' => 'OR',
49
+ );
50
+ $terms_array = explode( ',', $instance['terms'] );
51
+ foreach ( $taxonomies as $taxonomy ) {
52
+ $p_args['tax_query'][] = array(
53
+ 'taxonomy' => $taxonomy,
54
+ 'field' => 'id',
55
+ 'terms' => $terms_array,
56
+ );
57
+ }
58
+ }
59
+
60
+ $post_loop = new WP_Query( $p_args );
61
+
62
+ if ( $post_loop->have_posts() ) :
63
+ if ( ! $instance['format'] ) {
64
+ while ( $post_loop->have_posts() ) : $post_loop->the_post();
65
+ $this->display_pattern_0();
66
+ endwhile;
67
+ } else if ( $instance['format'] == 1 ) {
68
+ while ( $post_loop->have_posts() ) : $post_loop->the_post();
69
+ $this->display_pattern_1();
70
+ endwhile;
71
+ }
72
+
73
+ endif;
74
+ echo '</div>';
75
+ echo $args['after_widget'];
76
+
77
+ wp_reset_postdata();
78
+ wp_reset_query();
79
+
80
+ } // widget($args, $instance)
81
+
82
+ /*-------------------------------------------*/
83
+ /* display_pattern_0
84
+ /*-------------------------------------------*/
85
+ function display_pattern_0() { ?>
86
+ <article class="media">
87
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
88
+ <?php if ( has_post_thumbnail()) :?>
89
+ <div class="media-left postList_thumbnail">
90
+ <a href="<?php the_permalink(); ?>">
91
+ <?php
92
+ $attr = array('class' => "media-object");
93
+ the_post_thumbnail('thumbnail',$attr); ?>
94
+ </a>
95
+ </div>
96
+ <?php endif; ?>
97
+ <div class="media-body">
98
+
99
+ <div class="entry-meta">
100
+ <span class="published entry-meta_items"><?php echo esc_html( get_the_date() ); ?></span>
101
+
102
+ <?php global $lightning_theme_options; ?>
103
+
104
+ <?php
105
+ // Post update
106
+ $meta_hidden_update = ( isset($lightning_theme_options['postUpdate_hidden']) && $lightning_theme_options['postUpdate_hidden'] ) ? ' entry-meta_hidden' : ''; ?>
107
+
108
+ <span class="entry-meta_items entry-meta_updated<?php echo $meta_hidden_update;?>">/ <?php _e('Last updated','lightning'); ?> : <span class="updated"><?php the_modified_date('') ?></span></span>
109
+
110
+ <?php
111
+ // Post author
112
+ $meta_hidden_author = ( isset($lightning_theme_options['postAuthor_hidden']) && $lightning_theme_options['postAuthor_hidden'] ) ? ' entry-meta_hidden' : ''; ?>
113
+
114
+ <span class="vcard author entry-meta_items entry-meta_items_author<?php echo $meta_hidden_author;?>"><span class="fn"><?php the_author(); ?></span></span>
115
+
116
+ <?php
117
+ $taxonomies = get_the_taxonomies();
118
+ if ($taxonomies):
119
+ // get $taxonomy name
120
+ $taxonomy = key( $taxonomies );
121
+ $terms = get_the_terms( get_the_ID(),$taxonomy );
122
+ $term_url = esc_url(get_term_link( $terms[0]->term_id,$taxonomy));
123
+ $term_name = esc_html($terms[0]->name);
124
+ echo '<span class="entry-meta_items entry-meta_items_term"><a href="'.$term_url.'" class="btn btn-xs btn-primary">'.$term_name.'</a></span>';
125
+ endif;
126
+ ?>
127
+
128
+ </div>
129
+ <h1 class="media-heading entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
130
+ <a href="<?php the_permalink(); ?>" class="media-body_excerpt"><?php the_excerpt(); ?></a>
131
+ <!--
132
+ <div><a href="<?php the_permalink(); ?>" class="btn btn-default btn-sm"><?php _e('Read more', 'lightning'); ?></a></div>
133
+ -->
134
+ </div>
135
+ </div>
136
+ </article><?php
137
+ }
138
+
139
+
140
+ /*-------------------------------------------*/
141
+ /* display_pattern_1
142
+ /*-------------------------------------------*/
143
+ function display_pattern_1() {
144
+ global $post;
145
+ ?>
146
+
147
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
148
+ <header>
149
+ <?php get_template_part('module_loop_post_meta');?>
150
+ <h1 class="entry-title"><?php the_title(); ?></h1>
151
+ </header>
152
+
153
+ <div class="entry-body">
154
+
155
+ <?php
156
+ $lightning_adv_more_btn_txt = '<span class="btn btn-default btn-block">'. __('Read more', LIGHTNING_ADVANCED_TEXTDOMAIN ). '</span>';
157
+ $more_btn = apply_filters( 'lightning-adv-more-btn-txt' ,$lightning_adv_more_btn_txt);
158
+ the_content( $more_btn );?>
159
+ </div><!-- [ /.entry-body ] -->
160
+
161
+ <div class="entry-footer">
162
+ <?php
163
+ $args = array(
164
+ 'before' => '<nav class="page-link"><dl><dt>Pages :</dt><dd>',
165
+ 'after' => '</dd></dl></nav>',
166
+ 'link_before' => '<span class="page-numbers">',
167
+ 'link_after' => '</span>',
168
+ 'echo' => 1 );
169
+ wp_link_pages( $args ); ?>
170
+
171
+ <?php
172
+ /*-------------------------------------------*/
173
+ /* Category and tax data
174
+ /*-------------------------------------------*/
175
+ $args = array(
176
+ 'template' => __( '<dl><dt>%s</dt><dd>%l</dd></dl>','lightning' ),
177
+ 'term_template' => '<a href="%1$s">%2$s</a>',
178
+ );
179
+ $taxonomies = get_the_taxonomies($post->ID,$args);
180
+ $taxnomiesHtml = '';
181
+ if ($taxonomies) {
182
+ foreach ($taxonomies as $key => $value) {
183
+ if ( $key != 'post_tag' ) {
184
+ $taxnomiesHtml .= '<div class="entry-meta-dataList">'.$value.'</div>';
185
+ }
186
+ } // foreach
187
+ } // if ($taxonomies)
188
+ $taxnomiesHtml = apply_filters( 'lightning_taxnomiesHtml', $taxnomiesHtml );
189
+ echo $taxnomiesHtml;
190
+ ?>
191
+
192
+ <?php $tags_list = get_the_tag_list();
193
+ if ( $tags_list ): ?>
194
+ <div class="entry-meta-dataList entry-tag">
195
+ <dl>
196
+ <dt><?php _e('Tags','lightning') ;?></dt>
197
+ <dd class="tagCloud"><?php echo $tags_list; ?></dd>
198
+ </dl>
199
+ </div><!-- [ /.entry-tag ] -->
200
+ <?php endif; ?>
201
+ </div><!-- [ /.entry-footer ] -->
202
+
203
+ </article>
204
+
205
+ <?php }
206
+
207
+ function _taxonomy_init( $post_type ) {
208
+ if ( $post_type == 'post' ) { return; }
209
+ $this->taxonomies = get_object_taxonomies( $post_type );
210
+ }
211
+
212
+ function taxonomy_list( $post_id = 0, $before = ' ', $sep = ',', $after = '' ) {
213
+ if ( ! $post_id ) { $post_id = get_the_ID(); }
214
+
215
+ $taxo_catelist = array();
216
+
217
+ foreach ( $this->taxonomies as $taxonomy ) {
218
+ $terms = get_the_term_list( $post_id, $taxonomy, $before, $sep , $after );
219
+ if ( $terms ) { $taxo_catelist[] = $terms; }
220
+ }
221
+
222
+ if ( count( $taxo_catelist ) ) { return join( $taxo_catelist, $sep ); }
223
+ return '';
224
+ }
225
+
226
+ function form( $instance ) {
227
+ $defaults = array(
228
+ 'count' => 10,
229
+ 'label' => __( 'Recent Posts', LIGHTNING_ADVANCED_TEXTDOMAIN ),
230
+ 'post_type' => 'post',
231
+ 'terms' => '',
232
+ 'format' => '0',
233
+ );
234
+
235
+ $instance = wp_parse_args( (array) $instance, $defaults );
236
+ //タイトル ?>
237
+ <br/>
238
+ <?php echo _e( 'Display Format', LIGHTNING_ADVANCED_TEXTDOMAIN ); ?>:<br/>
239
+ <ul>
240
+ <li><label><input type="radio" name="<?php echo $this->get_field_name( 'format' ); ?>" value="0" <?php if ( $instance['format'] == 0 ) { echo 'checked'; } ?>/><?php echo __( 'Thumbnail', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Date', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Category', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Title', LIGHTNING_ADVANCED_TEXTDOMAIN ).'/'. __( 'Excerpt', LIGHTNING_ADVANCED_TEXTDOMAIN ); ?></label>
241
+ </li>
242
+ <li><label><input type="radio" name="<?php echo $this->get_field_name( 'format' ); ?>" value="1" <?php if ( $instance['format'] == 1 ) { echo 'checked'; } ?>/><?php echo __( 'Thumbnail', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Date', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Category', LIGHTNING_ADVANCED_TEXTDOMAIN ) .'/'. __( 'Title', LIGHTNING_ADVANCED_TEXTDOMAIN ).'/'. __( 'Content', LIGHTNING_ADVANCED_TEXTDOMAIN ); ?></label>
243
+ </li>
244
+ </ul>
245
+ <br/>
246
+ <label for="<?php echo $this->get_field_id( 'label' ); ?>"><?php _e( 'Title:' ); ?></label><br/>
247
+ <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']; ?>" />
248
+ <br/><br />
249
+
250
+ <?php //表示件数 ?>
251
+ <label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Display count',LIGHTNING_ADVANCED_TEXTDOMAIN ); ?>:</label><br/>
252
+ <input type="text" id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" value="<?php echo $instance['count']; ?>" />
253
+ <br /><br />
254
+
255
+ <?php //投稿タイプ ?>
256
+ <label for="<?php echo $this->get_field_id( 'post_type' ); ?>"><?php _e( 'Slug for the custom type you want to display', LIGHTNING_ADVANCED_TEXTDOMAIN ) ?>:</label><br />
257
+ <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'] ) ?>" />
258
+ <br/><br/>
259
+
260
+ <?php // Terms ?>
261
+ <label for="<?php echo $this->get_field_id( 'terms' ); ?>"><?php _e( 'taxonomy ID', LIGHTNING_ADVANCED_TEXTDOMAIN ) ?>:</label><br />
262
+ <input type="text" id="<?php echo $this->get_field_id( 'terms' ); ?>" name="<?php echo $this->get_field_name( 'terms' ); ?>" value="<?php echo esc_attr( $instance['terms'] ) ?>" /><br />
263
+ <?php _e( 'if you need filtering by term, add the term ID separate by ",".', LIGHTNING_ADVANCED_TEXTDOMAIN );
264
+ echo '<br/>';
265
+ _e( 'if empty this area, I will do not filtering.', LIGHTNING_ADVANCED_TEXTDOMAIN );
266
+ echo '<br/><br/>';
267
+ }
268
+
269
+ function update( $new_instance, $old_instance ) {
270
+ $instance = $old_instance;
271
+ $instance['format'] = $new_instance['format'];
272
+ $instance['count'] = $new_instance['count'];
273
+ $instance['label'] = $new_instance['label'];
274
+ $instance['post_type'] = ! empty( $new_instance['post_type'] ) ? strip_tags( $new_instance['post_type'] ) : 'post';
275
+ $instance['terms'] = preg_replace( '/([^0-9,]+)/', '', $new_instance['terms'] );
276
+ return $instance;
277
+ }
278
+ }
279
+ add_action( 'widgets_init', create_function( '', 'return register_widget("WP_Widget_ltg_adv_post_list");' ) );
readme.txt ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Plugin Name ===
2
+ Contributors: vektor-inc,bizvektor,kurudrive
3
+ Donate link:
4
+ Tags: Lightning,
5
+ Requires at least: 4.2
6
+ Tested up to: 4.5.2
7
+ Stable tag: 0.0.1
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ This is a plug-ins that extend the functionality of the theme "Lightning".
12
+
13
+ == Description ==
14
+
15
+ This is a plug-ins that extend the functionality of the theme "Lightning".
16
+
17
+ [ Powerful Widgets ]
18
+
19
+ * Content area widget - Thumbnail / Date / Category / Excerpt
20
+ * Content area widget - Thumbnail / Date / Category / Content
21
+
22
+ [ SlideMenu ]
23
+
24
+ * You can choice menu type
25
+
26
+ == Installation ==
27
+
28
+ This section describes how to install the plugin and get it working.
29
+
30
+ e.g.
31
+
32
+ 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
33
+ 1. Activate the plugin through the 'Plugins' menu in WordPress
34
+ 1. Set to customizer
35
+
36
+ == Frequently Asked Questions ==
37
+
38
+
39
+
40
+ == Screenshots ==
41
+
42
+
43
+
44
+ == Changelog ==
45
+
46
+
47
+
48
+ = 0.0.1 =
49
+ * Hellow world
50
+
51
+ == Upgrade Notice ==
52
+
53
+ Nothing.