Lightning Advanced Unit - Version 1.2.0

Version Description

Download this release

Release Info

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

Code changes from version 1.1.0 to 1.2.0

css/lightning_adv_admin.css ADDED
File without changes
css/lightning_adv_style.css ADDED
@@ -0,0 +1 @@
 
1
+ body{color:red !important}
gulpfile.js CHANGED
@@ -38,11 +38,11 @@ var spritesmith = require('gulp.spritesmith');
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
@@ -50,7 +50,7 @@ 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']);
38
 
39
  // js最小化
40
  gulp.task('jsmin', function () {
41
+ gulp.src(['./inc/navigation/js/navigation.js'])
42
  .pipe(plumber()) // エラーでも監視を続行
43
  .pipe(jsmin())
44
  .pipe(rename({suffix: '.min'}))
45
+ .pipe(gulp.dest('./inc/navigation/js'));
46
  });
47
 
48
  // Watch
50
  // gulp.watch('css/*.css', ['cssmin'])
51
  // gulp.watch('js/*.js', ['scripts']);
52
  // gulp.watch('_scss/style.scss', ['copy']);
53
+ gulp.watch('./inc/navigation/js/navigation.js', ['jsmin']);
54
  });
55
 
56
  // gulp.task('default', ['scripts','watch','sprite']);
{plugins → inc}/menu-btn-position.php RENAMED
File without changes
{plugins → inc}/navigation/_scss/navigation.scss RENAMED
File without changes
{plugins → inc}/navigation/config.rb RENAMED
File without changes
{plugins → inc}/navigation/css/navigation.css RENAMED
File without changes
{plugins → inc}/navigation/js/navigation.js RENAMED
@@ -40,6 +40,7 @@ function slide_menu_open(menuPosition){
40
 
41
  var menu_width = wrap_width - 60 + 'px';
42
 
 
43
  jQuery('#gMenu_outer').appendTo('#navSection');
44
 
45
  if ( menuPosition == 'right' ){
@@ -100,8 +101,9 @@ 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
  jQuery('#bodyInner').css({"width":""});
106
  jQuery('#wrap').css({"width":""});
107
  }
40
 
41
  var menu_width = wrap_width - 60 + 'px';
42
 
43
+ jQuery('#headerTop').appendTo('#navSection');
44
  jQuery('#gMenu_outer').appendTo('#navSection');
45
 
46
  if ( menuPosition == 'right' ){
101
  // アニメーションが終わってから実行
102
  jQuery('#navSection').removeClass('navSection_open_right');
103
  jQuery('#navSection').removeClass('navSection_open_left');
104
+ jQuery('#navSection').css({ "right":"", "left":"", "display":"" });
105
+ jQuery('#headerTop').prependTo('header.siteHeader');
106
  jQuery('#gMenu_outer').insertAfter('.navbar-header');
 
107
  jQuery('#bodyInner').css({"width":""});
108
  jQuery('#wrap').css({"width":""});
109
  }
{plugins → inc}/navigation/js/navigation.min.js RENAMED
@@ -1,8 +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":""});jQuery('#bodyInner').css({"width":""});jQuery('#wrap').css({"width":""});}
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();}}
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('#headerTop').appendTo('#navSection');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('#headerTop').prependTo('header.siteHeader');jQuery('#gMenu_outer').insertAfter('.navbar-header');jQuery('#navSection').css({"right":"","left":""});jQuery('#bodyInner').css({"width":""});jQuery('#wrap').css({"width":""});jQuery('#navSection').css({"display":""});}
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 → inc}/navigation/navigation.php RENAMED
@@ -38,12 +38,12 @@ function ltg_adv_is_slide_menu(){
38
  /*-------------------------------------------*/
39
  /* Load js & CSS
40
  /*-------------------------------------------*/
41
- add_action( 'wp_enqueue_scripts','ltg_adv_nav_add_script' );
42
  function ltg_adv_nav_add_script() {
43
  if ( ltg_adv_is_slide_menu() ) {
44
- wp_register_script( 'ltg_adv_nav_js' , LIGHTNING_ADVANCED_URL.'plugins/navigation/js/navigation.min.js', array( 'jquery','lightning-js' ), LIGHTNING_ADVANCED_VERSION );
45
  wp_enqueue_script( 'ltg_adv_nav_js' );
46
- wp_enqueue_style( 'ltg_adv_nav_style_css', LIGHTNING_ADVANCED_URL.'plugins/navigation/css/navigation.css', array('lightning-theme-style'), LIGHTNING_ADVANCED_VERSION, 'all' );
47
  }
48
  }
49
 
38
  /*-------------------------------------------*/
39
  /* Load js & CSS
40
  /*-------------------------------------------*/
41
+ add_action( 'wp_enqueue_scripts','ltg_adv_nav_add_script',100 );
42
  function ltg_adv_nav_add_script() {
43
  if ( ltg_adv_is_slide_menu() ) {
44
+ wp_register_script( 'ltg_adv_nav_js' , LIGHTNING_ADVANCED_URL.'inc/navigation/js/navigation.min.js', array( 'jquery','lightning-js' ), LIGHTNING_ADVANCED_VERSION );
45
  wp_enqueue_script( 'ltg_adv_nav_js' );
46
+ wp_enqueue_style( 'ltg_adv_nav_style_css', LIGHTNING_ADVANCED_URL.'inc/navigation/css/navigation.css', array( 'lightning-design-style' ), LIGHTNING_ADVANCED_VERSION, 'all' );
47
  }
48
  }
49
 
{plugins → inc}/widgets/widget-new-posts.php RENAMED
File without changes
languages/lightning-adv-unit-ja.po CHANGED
@@ -15,114 +15,114 @@ msgstr ""
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
 
15
  "X-Poedit-KeywordsList: __;_x;_e;_ex\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../inc/menu-btn-position.php:14
19
  msgid "Menu button position ( Mobile mode )"
20
  msgstr "メニューボタンの位置(モバイル端末時)"
21
 
22
+ #: ../inc/menu-btn-position.php:19
23
  msgid "Left"
24
  msgstr "左"
25
 
26
+ #: ../inc/menu-btn-position.php:20
27
  msgid "Right"
28
  msgstr "右"
29
 
30
+ #: ../inc/navigation/navigation.php:15
31
  msgid "Menu Type ( Mobile mode )"
32
  msgstr "メニュータイプ(モバイル端末時)"
33
 
34
+ #: ../inc/navigation/navigation.php:20
35
  msgid "Side Slide"
36
  msgstr "横スライド"
37
 
38
+ #: ../inc/navigation/navigation.php:21
39
  msgid "Vertical Show Hide (Lightning default)"
40
  msgstr "縦展開(Ligthning標準)"
41
 
42
+ #: ../inc/widgets/widget-new-posts.php:12
43
  msgid "Content Area Posts Widget"
44
  msgstr "コンテンツエリア投稿リスト"
45
 
46
+ #: ../inc/widgets/widget-new-posts.php:17
47
  msgid "Displays a list of your most recent posts"
48
  msgstr "最新の投稿記事リストを表示します。"
49
 
50
+ #: ../inc/widgets/widget-new-posts.php:108
51
  msgid "Last updated"
52
  msgstr "最終更新日"
53
 
54
+ #: ../inc/widgets/widget-new-posts.php:132
55
+ #: ../inc/widgets/widget-new-posts.php:156
56
  msgid "Read more"
57
  msgstr "詳しくはこちら"
58
 
59
+ #: ../inc/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
+ #: ../inc/widgets/widget-new-posts.php:196
64
  msgid "Tags"
65
  msgstr "タグ"
66
 
67
+ #: ../inc/widgets/widget-new-posts.php:229
68
  msgid "Recent Posts"
69
  msgstr "最新記事"
70
 
71
+ #: ../inc/widgets/widget-new-posts.php:238
72
  msgid "Display Format"
73
  msgstr "表示形式"
74
 
75
+ #: ../inc/widgets/widget-new-posts.php:240
76
+ #: ../inc/widgets/widget-new-posts.php:242
77
  msgid "Thumbnail"
78
  msgstr "サムネイル画像"
79
 
80
+ #: ../inc/widgets/widget-new-posts.php:240
81
+ #: ../inc/widgets/widget-new-posts.php:242
82
  msgid "Date"
83
  msgstr "日付"
84
 
85
+ #: ../inc/widgets/widget-new-posts.php:240
86
+ #: ../inc/widgets/widget-new-posts.php:242
87
  msgid "Category"
88
  msgstr "カテゴリー"
89
 
90
+ #: ../inc/widgets/widget-new-posts.php:240
91
+ #: ../inc/widgets/widget-new-posts.php:242
92
  msgid "Title"
93
  msgstr "タイトル"
94
 
95
+ #: ../inc/widgets/widget-new-posts.php:240
96
  msgid "Excerpt"
97
  msgstr "抜粋"
98
 
99
+ #: ../inc/widgets/widget-new-posts.php:242
100
  msgid "Content"
101
  msgstr "本文"
102
 
103
+ #: ../inc/widgets/widget-new-posts.php:246
104
  msgid "Title:"
105
  msgstr "タイトル"
106
 
107
+ #: ../inc/widgets/widget-new-posts.php:251
108
  msgid "Display count"
109
  msgstr "表示する記事数"
110
 
111
+ #: ../inc/widgets/widget-new-posts.php:256
112
  msgid "Slug for the custom type you want to display"
113
  msgstr "表示したい記事タイプ"
114
 
115
+ #: ../inc/widgets/widget-new-posts.php:261
116
  msgid "taxonomy ID"
117
  msgstr "カテゴリー(タクソノミー)ID"
118
 
119
+ #: ../inc/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
+ #: ../inc/widgets/widget-new-posts.php:265
126
  msgid "if empty this area, I will do not filtering."
127
  msgstr "空欄の場合はフィルタリングは行いません。"
128
 
languages/lightning-adv-unit.pot CHANGED
@@ -14,111 +14,111 @@ msgstr ""
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 ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-PoeditTearchPath-0: .\n"
16
 
17
+ #: inc/menu-btn-position.php:14
18
  msgid "Menu button position ( Mobile mode )"
19
  msgstr ""
20
 
21
+ #: inc/menu-btn-position.php:19
22
  msgid "Left"
23
  msgstr ""
24
 
25
+ #: inc/menu-btn-position.php:20
26
  msgid "Right"
27
  msgstr ""
28
 
29
+ #: inc/navigation/navigation.php:15
30
  msgid "Menu Type ( Mobile mode )"
31
  msgstr ""
32
 
33
+ #: inc/navigation/navigation.php:20
34
  msgid "Side Slide"
35
  msgstr ""
36
 
37
+ #: inc/navigation/navigation.php:21
38
  msgid "Vertical Show Hide (Lightning default)"
39
  msgstr ""
40
 
41
+ #: inc/widgets/widget-new-posts.php:12
42
  msgid "Content Area Posts Widget"
43
  msgstr ""
44
 
45
+ #: inc/widgets/widget-new-posts.php:17
46
  msgid "Displays a list of your most recent posts"
47
  msgstr ""
48
 
49
+ #: inc/widgets/widget-new-posts.php:108
50
  msgid "Last updated"
51
  msgstr ""
52
 
53
+ #: inc/widgets/widget-new-posts.php:132
54
+ #: inc/widgets/widget-new-posts.php:156
55
  msgid "Read more"
56
  msgstr ""
57
 
58
+ #: inc/widgets/widget-new-posts.php:176
59
  msgid "<dl><dt>%s</dt><dd>%l</dd></dl>"
60
  msgstr ""
61
 
62
+ #: inc/widgets/widget-new-posts.php:196
63
  msgid "Tags"
64
  msgstr ""
65
 
66
+ #: inc/widgets/widget-new-posts.php:229
67
  msgid "Recent Posts"
68
  msgstr ""
69
 
70
+ #: inc/widgets/widget-new-posts.php:238
71
  msgid "Display Format"
72
  msgstr ""
73
 
74
+ #: inc/widgets/widget-new-posts.php:240
75
+ #: inc/widgets/widget-new-posts.php:242
76
  msgid "Thumbnail"
77
  msgstr ""
78
 
79
+ #: inc/widgets/widget-new-posts.php:240
80
+ #: inc/widgets/widget-new-posts.php:242
81
  msgid "Date"
82
  msgstr ""
83
 
84
+ #: inc/widgets/widget-new-posts.php:240
85
+ #: inc/widgets/widget-new-posts.php:242
86
  msgid "Category"
87
  msgstr ""
88
 
89
+ #: inc/widgets/widget-new-posts.php:240
90
+ #: inc/widgets/widget-new-posts.php:242
91
  msgid "Title"
92
  msgstr ""
93
 
94
+ #: inc/widgets/widget-new-posts.php:240
95
  msgid "Excerpt"
96
  msgstr ""
97
 
98
+ #: inc/widgets/widget-new-posts.php:242
99
  msgid "Content"
100
  msgstr ""
101
 
102
+ #: inc/widgets/widget-new-posts.php:246
103
  msgid "Title:"
104
  msgstr ""
105
 
106
+ #: inc/widgets/widget-new-posts.php:251
107
  msgid "Display count"
108
  msgstr ""
109
 
110
+ #: inc/widgets/widget-new-posts.php:256
111
  msgid "Slug for the custom type you want to display"
112
  msgstr ""
113
 
114
+ #: inc/widgets/widget-new-posts.php:261
115
  msgid "taxonomy ID"
116
  msgstr ""
117
 
118
+ #: inc/widgets/widget-new-posts.php:263
119
  msgid "if you need filtering by term, add the term ID separate by \",\"."
120
  msgstr ""
121
 
122
+ #: inc/widgets/widget-new-posts.php:265
123
  msgid "if empty this area, I will do not filtering."
124
  msgstr ""
lightning_advanced_unit.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Lightning Advanced Unit
4
  * Plugin URI: http://lightning.vektor-inc.co.jp/
5
- * Version: 1.1.0
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".
@@ -20,9 +20,10 @@ 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( LIGHTNING_ADVANCED_DIR . 'plugins/navigation/navigation.php' );
24
- require_once( LIGHTNING_ADVANCED_DIR . 'plugins/widgets/widget-new-posts.php' );
25
- require_once( LIGHTNING_ADVANCED_DIR . 'plugins/menu-btn-position.php' );
 
26
 
27
  /*-------------------------------------------*/
28
  /* translations
2
  /**
3
  * Plugin Name: Lightning Advanced Unit
4
  * Plugin URI: http://lightning.vektor-inc.co.jp/
5
+ * Version: 1.2.0
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".
20
  define( 'LIGHTNING_ADVANCED_DIR', plugin_dir_path( __FILE__ ) );
21
  define( 'LIGHTNING_ADVANCED_SHORT_NAME', 'LTG' );
22
 
23
+ require_once( LIGHTNING_ADVANCED_DIR . 'inc/navigation/navigation.php' );
24
+ require_once( LIGHTNING_ADVANCED_DIR . 'inc/widgets/widget-new-posts.php' );
25
+ require_once( LIGHTNING_ADVANCED_DIR . 'inc/menu-btn-position.php' );
26
+ // require_once( LIGHTNING_ADVANCED_DIR . 'inc/header-top/header-top.php' );
27
 
28
  /*-------------------------------------------*/
29
  /* translations
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Lightning,
5
  Requires at least: 4.2
6
  Tested up to: 4.5.2
7
- Stable tag: 1.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: Lightning,
5
  Requires at least: 4.2
6
  Tested up to: 4.5.2
7
+ Stable tag: 1.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10