Accordion - Version 2.0.19

Version Description

  • 16/10/2017 - add - Translation ready.

    • 31/05/2017 - add - Added filter hook for default minus icon.
    • 31/05/2017 - update - adding icon method updated.
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Accordion
Version 2.0.19
Comparing to
See all releases

Code changes from version 2.0.18 to 2.0.19

accordions.php CHANGED
@@ -2,10 +2,11 @@
2
  /*
3
  Plugin Name: Accordions
4
  Plugin URI: http://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/
5
- Description: Fully responsive and mobile ready accordion grid for wordpress.
6
- Version: 2.0.18
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
 
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
  */
@@ -31,8 +32,6 @@ class Accordions{
31
  define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
32
  define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
33
 
34
- define('accordions_textdomain', 'accordions' );
35
-
36
  require_once( plugin_dir_path( __FILE__ ) . 'includes/meta.php');
37
  require_once( plugin_dir_path( __FILE__ ) . 'includes/functions.php');
38
 
@@ -56,7 +55,7 @@ class Accordions{
56
 
57
 
58
  public function accordions_load_textdomain() {
59
- load_plugin_textdomain( accordions_textdomain, false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
60
  }
61
 
62
 
@@ -99,7 +98,7 @@ class Accordions{
99
  wp_enqueue_script('jquery-ui-sortable');
100
  wp_enqueue_script('accordions_admin_js', plugins_url( 'assets/admin/js/scripts.js' , __FILE__ ) , array( 'jquery' ));
101
  wp_localize_script( 'accordions_admin_js', 'L10n_accordions', array(
102
- 'confirm_text' => __( 'Confirm', accordions_textdomain )
103
  ));
104
 
105
 
@@ -124,7 +123,7 @@ class Accordions{
124
 
125
  return array_merge(
126
  array(
127
- 'get_premium' => '<a target="_blank" class="" style=" font-weight:bold;color:#f00;" href="https://www.pickplugins.com/product/accordions/?ref=wordpress.org">Buy Premium!</a>'
128
  ),
129
  $links
130
  );
2
  /*
3
  Plugin Name: Accordions
4
  Plugin URI: http://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/
5
+ Description: Fully responsive and mobile ready accordion grid for WordPress.
6
+ Version: 2.0.19
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
+ Text Domain: accordions
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
32
  define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
33
  define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
34
 
 
 
35
  require_once( plugin_dir_path( __FILE__ ) . 'includes/meta.php');
36
  require_once( plugin_dir_path( __FILE__ ) . 'includes/functions.php');
37
 
55
 
56
 
57
  public function accordions_load_textdomain() {
58
+ load_plugin_textdomain( 'accordions', false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
59
  }
60
 
61
 
98
  wp_enqueue_script('jquery-ui-sortable');
99
  wp_enqueue_script('accordions_admin_js', plugins_url( 'assets/admin/js/scripts.js' , __FILE__ ) , array( 'jquery' ));
100
  wp_localize_script( 'accordions_admin_js', 'L10n_accordions', array(
101
+ 'confirm_text' => __( 'Confirm', 'accordions' )
102
  ));
103
 
104
 
123
 
124
  return array_merge(
125
  array(
126
+ 'get_premium' => '<a target="_blank" class="" style=" font-weight:bold;color:#f00;" href="https://www.pickplugins.com/product/accordions/?ref=dashboard">'.__('Buy Premium!', 'accordions').'</a>'
127
  ),
128
  $links
129
  );
includes/meta.php CHANGED
@@ -10,16 +10,16 @@ if ( ! defined('ABSPATH')) exit; // if direct access
10
  function accordions_posttype_register() {
11
 
12
  $labels = array(
13
- 'name' => _x('Accordions', 'accordions'),
14
- 'singular_name' => _x('Accordions', 'accordions'),
15
- 'add_new' => _x('New Accordions', 'accordions'),
16
- 'add_new_item' => __('New Accordions'),
17
- 'edit_item' => __('Edit Accordions'),
18
- 'new_item' => __('New Accordions'),
19
- 'view_item' => __('View Accordions'),
20
- 'search_items' => __('Search Accordions'),
21
- 'not_found' => __('Nothing found'),
22
- 'not_found_in_trash' => __('Nothing found in Trash'),
23
  'parent_item_colon' => ''
24
  );
25
 
@@ -187,7 +187,7 @@ function meta_boxes_accordions_input( $post ) {
187
 
188
 
189
  <div class="option-box">
190
- <p class="option-title"><?php _e('heightStyle','accordions'); ?></p>
191
  <p class="option-info"></p>
192
  <select class="accordions_heightStyle" name="accordions_heightStyle" >
193
  <option value="content" <?php if($accordions_heightStyle=="content") echo "selected"; ?>><?php _e('Content','accordions'); ?></option>
@@ -213,7 +213,7 @@ function meta_boxes_accordions_input( $post ) {
213
  <li style="display: none;" class="box3 tab-box ">
214
 
215
  <div class="option-box">
216
- <p class="option-title"><?php _e('Themes','accordions'); ?></p>
217
  <p class="option-info"></p>
218
 
219
  <?php
@@ -428,7 +428,7 @@ function meta_boxes_accordions_input( $post ) {
428
  <?php if(!empty($accordions_title)) echo $accordions_title; ?>
429
  </div>
430
 
431
- <span class="removeaccordions"><?php _e('Remove', accordions_textdomain); ?></span>
432
 
433
  <?php
434
 
@@ -505,7 +505,7 @@ function meta_boxes_accordions_input( $post ) {
505
 
506
  var unique_key = $.now();
507
 
508
- $("#accordions_metabox .accordions-content").append('<div class="items" valign="top"><div class="section-header"><span class="move"><i class="fa fa-bars"></i></span><span class="expand-compress"><i class="fa fa-expand"></i><i class="fa fa-compress"></i></span><div class="accordions-title-preview">Demo Title #'+unique_key+'</div><span class="removeaccordions">Remove</span><label class="switch"><input type="checkbox" value="1" name="accordions_hide['+unique_key+']">Hide on Frontend</label></div><div class="section-panel"><strong><?php _e('Header',accordions_textdomain); ?></strong> <br><input style="width:80%" placeholder="<?php echo __('Accordion header', accordions_textdomain); ?>" type="text" name="accordions_content_title['+unique_key+']" value="" /><br> <br /><strong><?php _e('Content', accordions_textdomain); ?></strong> <br><textarea class="accordion-content-textarea" id="content-'+unique_key+'" placeholder="Accordion content" name="accordions_content_body['+unique_key+']" ></textarea></div></div>');
509
 
510
  tinyMCE.execCommand('mceAddEditor', false, 'content-'+unique_key);
511
 
10
  function accordions_posttype_register() {
11
 
12
  $labels = array(
13
+ 'name' => __('Accordions', 'accordions'),
14
+ 'singular_name' => __('Accordions', 'accordions'),
15
+ 'add_new' => __('New Accordions', 'accordions'),
16
+ 'add_new_item' => __('New Accordions', 'accordions'),
17
+ 'edit_item' => __('Edit Accordions', 'accordions'),
18
+ 'new_item' => __('New Accordions', 'accordions'),
19
+ 'view_item' => __('View Accordions', 'accordions'),
20
+ 'search_items' => __('Search Accordions', 'accordions'),
21
+ 'not_found' => __('Nothing found', 'accordions'),
22
+ 'not_found_in_trash' => __('Nothing found in Trash', 'accordions'),
23
  'parent_item_colon' => ''
24
  );
25
 
187
 
188
 
189
  <div class="option-box">
190
+ <p class="option-title"><?php _e('Height Style','accordions'); ?></p>
191
  <p class="option-info"></p>
192
  <select class="accordions_heightStyle" name="accordions_heightStyle" >
193
  <option value="content" <?php if($accordions_heightStyle=="content") echo "selected"; ?>><?php _e('Content','accordions'); ?></option>
213
  <li style="display: none;" class="box3 tab-box ">
214
 
215
  <div class="option-box">
216
+ <p class="option-title"><?php _e('Themes', 'accordions'); ?></p>
217
  <p class="option-info"></p>
218
 
219
  <?php
428
  <?php if(!empty($accordions_title)) echo $accordions_title; ?>
429
  </div>
430
 
431
+ <span class="removeaccordions"><?php _e('Remove', 'accordions'); ?></span>
432
 
433
  <?php
434
 
505
 
506
  var unique_key = $.now();
507
 
508
+ $("#accordions_metabox .accordions-content").append('<div class="items" valign="top"><div class="section-header"><span class="move"><i class="fa fa-bars"></i></span><span class="expand-compress"><i class="fa fa-expand"></i><i class="fa fa-compress"></i></span><div class="accordions-title-preview">Demo Title #'+unique_key+'</div><span class="removeaccordions">Remove</span><label class="switch"><input type="checkbox" value="1" name="accordions_hide['+unique_key+']">Hide on Frontend</label></div><div class="section-panel"><strong><?php _e('Header','accordions'); ?></strong> <br><input style="width:80%" placeholder="<?php echo __('Accordion header', 'accordions'); ?>" type="text" name="accordions_content_title['+unique_key+']" value="" /><br> <br /><strong><?php _e('Content', 'accordions'); ?></strong> <br><textarea class="accordion-content-textarea" id="content-'+unique_key+'" placeholder="Accordion content" name="accordions_content_body['+unique_key+']" ></textarea></div></div>');
509
 
510
  tinyMCE.execCommand('mceAddEditor', false, 'content-'+unique_key);
511
 
languages/accordions-bn_BD.mo CHANGED
Binary file
languages/accordions-bn_BD.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: accordions\n"
4
- "POT-Creation-Date: 2016-05-06 07:55+0600\n"
5
- "PO-Revision-Date: 2016-05-06 07:55+0600\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bn_BD\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.8.7\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -22,7 +22,7 @@ msgstr ""
22
  msgid "Help & Contact"
23
  msgstr "সাহায্য"
24
 
25
- #: includes/functions.php:15 includes/meta.php:137
26
  msgid "Shortcode"
27
  msgstr "সর্টকোড"
28
 
@@ -34,44 +34,56 @@ msgstr "সাহায্য"
34
  msgid "Help & Support"
35
  msgstr "সাহায্য"
36
 
37
- #: includes/menu/help.php:31
 
 
 
 
38
  msgid "Need Help ?"
39
  msgstr "সাহায্য দরকার ?"
40
 
41
- #: includes/menu/help.php:32
42
  msgid ""
43
  "Feel free to contact with any issue for this plugin, Ask any question via "
44
  "forum"
45
  msgstr ""
46
 
47
- #: includes/menu/help.php:69
 
 
 
 
48
  msgid "Submit Reviews."
49
  msgstr "রিভিউ সাবমিট করুন"
50
 
51
- #: includes/menu/help.php:70
52
  msgid ""
53
  "We are working hard to build some awesome plugins for you and spend thousand "
54
  "hour for plugins. we wish your three(3) minute by submitting five star "
55
  "reviews at wordpress.org. if you have any issue please submit at forum."
56
  msgstr ""
57
 
58
- #: includes/menu/help.php:79
59
- msgid "Please Share"
60
  msgstr ""
61
 
62
- #: includes/menu/help.php:80
63
- msgid "If you like this plugin please share with your social share network."
64
  msgstr ""
65
 
66
- #: includes/menu/help.php:90
67
- msgid "Video Tutorial"
68
  msgstr ""
69
 
70
- #: includes/menu/help.php:91
71
- msgid "Please watch this video tutorial."
72
  msgstr ""
73
 
74
- #: includes/meta.php:16 includes/meta.php:18
 
 
 
 
75
  msgid "New Accordions"
76
  msgstr ""
77
 
@@ -103,8 +115,8 @@ msgstr ""
103
  msgid "Style"
104
  msgstr "স্টাইল"
105
 
106
- #: includes/meta.php:140 includes/meta.php:185 includes/meta.php:387
107
- #: includes/meta.php:449
108
  msgid "Content"
109
  msgstr ""
110
 
@@ -126,168 +138,176 @@ msgid ""
126
  "accordions, Use PHP code to your themes file to display accordions."
127
  msgstr ""
128
 
129
- #: includes/meta.php:160
130
  msgid "Tabs Shortcode"
131
  msgstr ""
132
 
133
- #: includes/meta.php:171 includes/meta.php:523
134
  msgid "Collapsible"
135
  msgstr ""
136
 
137
- #: includes/meta.php:174 includes/meta.php:526
138
  msgid "True"
139
  msgstr "সত্য"
140
 
141
- #: includes/meta.php:175 includes/meta.php:527
142
  msgid "False"
143
  msgstr "মিথ্যা"
144
 
145
- #: includes/meta.php:182
146
- msgid "heightStyle"
147
  msgstr ""
148
 
149
- #: includes/meta.php:186
150
  msgid "Fill"
151
  msgstr ""
152
 
153
- #: includes/meta.php:193
154
  msgid "Activate event"
155
  msgstr ""
156
 
157
- #: includes/meta.php:196
158
  msgid "Click"
159
  msgstr ""
160
 
161
- #: includes/meta.php:197
162
  msgid "Mouseover"
163
  msgstr ""
164
 
165
- #: includes/meta.php:208
166
  msgid "Themes"
167
  msgstr "থিম"
168
 
169
- #: includes/meta.php:263
170
  msgid "Container options"
171
  msgstr ""
172
 
173
- #: includes/meta.php:267
174
  msgid "Text Align:"
175
  msgstr ""
176
 
177
- #: includes/meta.php:269
178
  msgid "Left"
179
  msgstr "বাম"
180
 
181
- #: includes/meta.php:270
182
  msgid "Center"
183
  msgstr "কেন্দ্র"
184
 
185
- #: includes/meta.php:271
186
  msgid "Right"
187
  msgstr "ডান"
188
 
189
- #: includes/meta.php:274
190
  msgid "Padding: (ex: 10px)"
191
  msgstr ""
192
 
193
- #: includes/meta.php:278
194
  msgid "Background color:"
195
  msgstr ""
196
 
197
- #: includes/meta.php:281
198
  msgid "Background image:"
199
  msgstr ""
200
 
201
- #: includes/meta.php:286
202
  msgid "Clear"
203
  msgstr ""
204
 
205
- #: includes/meta.php:320
206
  msgid "Icon set"
207
  msgstr ""
208
 
209
- #: includes/meta.php:321
210
  msgid ""
211
  "Please use font awesome icon id. ex: <b>fa-chevron-up</b>, please visit to "
212
  "see more <a href=\"https://fortawesome.github.io/Font-Awesome/icons/"
213
  "\">https://fortawesome.github.io/Font-Awesome/icons/</a>"
214
  msgstr ""
215
 
216
- #: includes/meta.php:324
217
  msgid "Plus Icon."
218
  msgstr ""
219
 
220
- #: includes/meta.php:329
221
  msgid "Minus Icon."
222
  msgstr ""
223
 
224
- #: includes/meta.php:335
225
  msgid "Icon color."
226
  msgstr "আইকন রঙ"
227
 
228
- #: includes/meta.php:339
229
  msgid "Icon font size."
230
  msgstr ""
231
 
232
- #: includes/meta.php:349
233
  msgid "Accordions Header."
234
  msgstr ""
235
 
236
- #: includes/meta.php:351
237
  msgid "Default Background Color."
238
  msgstr ""
239
 
240
- #: includes/meta.php:355
241
  msgid "Active Background Color."
242
  msgstr ""
243
 
244
- #: includes/meta.php:359
245
  msgid "Accordions Header Font Color."
246
  msgstr ""
247
 
248
- #: includes/meta.php:362
249
  msgid "Accordions Header Font Size."
250
  msgstr ""
251
 
252
- #: includes/meta.php:369
253
  msgid "Accordions Content."
254
  msgstr ""
255
 
256
- #: includes/meta.php:370
257
  msgid "Accordions Content Font Color."
258
  msgstr ""
259
 
260
- #: includes/meta.php:373
261
  msgid "Accordions Content Font Size."
262
  msgstr ""
263
 
264
- #: includes/meta.php:376
265
  msgid "Accordions Content Background Color."
266
  msgstr ""
267
 
268
- #: includes/meta.php:388
269
  msgid ""
270
  "You can sorting accordion by dragging each title, click to expand title and "
271
  "see the input."
272
  msgstr ""
273
 
274
- #: includes/meta.php:391
275
  msgid "Add"
276
  msgstr "যোগ করুন"
277
 
278
- #: includes/meta.php:439
 
 
 
 
279
  msgid "Hide on Frontend"
280
- msgstr "ফ্রন্টএন্ড এ লুকান "
281
 
282
- #: includes/meta.php:445
283
  msgid "Header"
284
  msgstr "শিরোলেখ"
285
 
286
- #: includes/meta.php:492
 
 
 
 
287
  msgid "Custom CSS for this Accordions"
288
  msgstr ""
289
 
290
- #: includes/meta.php:493
291
  msgid ""
292
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
293
  "sometime you need use \"!important\" to overrid."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: accordions\n"
4
+ "POT-Creation-Date: 2017-10-16 15:16+0600\n"
5
+ "PO-Revision-Date: 2017-10-16 15:16+0600\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bn_BD\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 2.0.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
22
  msgid "Help & Contact"
23
  msgstr "সাহায্য"
24
 
25
+ #: includes/functions.php:19 includes/meta.php:137
26
  msgid "Shortcode"
27
  msgstr "সর্টকোড"
28
 
34
  msgid "Help & Support"
35
  msgstr "সাহায্য"
36
 
37
+ #: includes/menu/help.php:25
38
+ msgid "Our Plugins"
39
+ msgstr ""
40
+
41
+ #: includes/menu/help.php:32
42
  msgid "Need Help ?"
43
  msgstr "সাহায্য দরকার ?"
44
 
45
+ #: includes/menu/help.php:33
46
  msgid ""
47
  "Feel free to contact with any issue for this plugin, Ask any question via "
48
  "forum"
49
  msgstr ""
50
 
51
+ #: includes/menu/help.php:47
52
+ msgid "Try Premium"
53
+ msgstr ""
54
+
55
+ #: includes/menu/help.php:74
56
  msgid "Submit Reviews."
57
  msgstr "রিভিউ সাবমিট করুন"
58
 
59
+ #: includes/menu/help.php:75
60
  msgid ""
61
  "We are working hard to build some awesome plugins for you and spend thousand "
62
  "hour for plugins. we wish your three(3) minute by submitting five star "
63
  "reviews at wordpress.org. if you have any issue please submit at forum."
64
  msgstr ""
65
 
66
+ #: includes/menu/help.php:86
67
+ msgid "Documentation."
68
  msgstr ""
69
 
70
+ #: includes/menu/help.php:87
71
+ msgid "Please go following link for documentation"
72
  msgstr ""
73
 
74
+ #: includes/menu/help.php:98
75
+ msgid "Please Share"
76
  msgstr ""
77
 
78
+ #: includes/menu/help.php:99
79
+ msgid "If you like this plugin please share with your social share network."
80
  msgstr ""
81
 
82
+ #: includes/meta.php:13 includes/meta.php:14
83
+ msgid "Accordions"
84
+ msgstr ""
85
+
86
+ #: includes/meta.php:15 includes/meta.php:16 includes/meta.php:18
87
  msgid "New Accordions"
88
  msgstr ""
89
 
115
  msgid "Style"
116
  msgstr "স্টাইল"
117
 
118
+ #: includes/meta.php:140 includes/meta.php:193 includes/meta.php:393
119
+ #: includes/meta.php:457 includes/meta.php:508
120
  msgid "Content"
121
  msgstr ""
122
 
138
  "accordions, Use PHP code to your themes file to display accordions."
139
  msgstr ""
140
 
141
+ #: includes/meta.php:165
142
  msgid "Tabs Shortcode"
143
  msgstr ""
144
 
145
+ #: includes/meta.php:179 includes/meta.php:559
146
  msgid "Collapsible"
147
  msgstr ""
148
 
149
+ #: includes/meta.php:182 includes/meta.php:562
150
  msgid "True"
151
  msgstr "সত্য"
152
 
153
+ #: includes/meta.php:183 includes/meta.php:563
154
  msgid "False"
155
  msgstr "মিথ্যা"
156
 
157
+ #: includes/meta.php:190
158
+ msgid "Height Style"
159
  msgstr ""
160
 
161
+ #: includes/meta.php:194
162
  msgid "Fill"
163
  msgstr ""
164
 
165
+ #: includes/meta.php:201
166
  msgid "Activate event"
167
  msgstr ""
168
 
169
+ #: includes/meta.php:204
170
  msgid "Click"
171
  msgstr ""
172
 
173
+ #: includes/meta.php:205
174
  msgid "Mouseover"
175
  msgstr ""
176
 
177
+ #: includes/meta.php:216
178
  msgid "Themes"
179
  msgstr "থিম"
180
 
181
+ #: includes/meta.php:271
182
  msgid "Container options"
183
  msgstr ""
184
 
185
+ #: includes/meta.php:275
186
  msgid "Text Align:"
187
  msgstr ""
188
 
189
+ #: includes/meta.php:277
190
  msgid "Left"
191
  msgstr "বাম"
192
 
193
+ #: includes/meta.php:278
194
  msgid "Center"
195
  msgstr "কেন্দ্র"
196
 
197
+ #: includes/meta.php:279
198
  msgid "Right"
199
  msgstr "ডান"
200
 
201
+ #: includes/meta.php:282
202
  msgid "Padding: (ex: 10px)"
203
  msgstr ""
204
 
205
+ #: includes/meta.php:286
206
  msgid "Background color:"
207
  msgstr ""
208
 
209
+ #: includes/meta.php:289
210
  msgid "Background image:"
211
  msgstr ""
212
 
213
+ #: includes/meta.php:294
214
  msgid "Clear"
215
  msgstr ""
216
 
217
+ #: includes/meta.php:328
218
  msgid "Icon set"
219
  msgstr ""
220
 
221
+ #: includes/meta.php:329
222
  msgid ""
223
  "Please use font awesome icon id. ex: <b>fa-chevron-up</b>, please visit to "
224
  "see more <a href=\"https://fortawesome.github.io/Font-Awesome/icons/"
225
  "\">https://fortawesome.github.io/Font-Awesome/icons/</a>"
226
  msgstr ""
227
 
228
+ #: includes/meta.php:332
229
  msgid "Plus Icon."
230
  msgstr ""
231
 
232
+ #: includes/meta.php:336
233
  msgid "Minus Icon."
234
  msgstr ""
235
 
236
+ #: includes/meta.php:341
237
  msgid "Icon color."
238
  msgstr "আইকন রঙ"
239
 
240
+ #: includes/meta.php:345
241
  msgid "Icon font size."
242
  msgstr ""
243
 
244
+ #: includes/meta.php:355
245
  msgid "Accordions Header."
246
  msgstr ""
247
 
248
+ #: includes/meta.php:357
249
  msgid "Default Background Color."
250
  msgstr ""
251
 
252
+ #: includes/meta.php:361
253
  msgid "Active Background Color."
254
  msgstr ""
255
 
256
+ #: includes/meta.php:365
257
  msgid "Accordions Header Font Color."
258
  msgstr ""
259
 
260
+ #: includes/meta.php:368
261
  msgid "Accordions Header Font Size."
262
  msgstr ""
263
 
264
+ #: includes/meta.php:375
265
  msgid "Accordions Content."
266
  msgstr ""
267
 
268
+ #: includes/meta.php:376
269
  msgid "Accordions Content Font Color."
270
  msgstr ""
271
 
272
+ #: includes/meta.php:379
273
  msgid "Accordions Content Font Size."
274
  msgstr ""
275
 
276
+ #: includes/meta.php:382
277
  msgid "Accordions Content Background Color."
278
  msgstr ""
279
 
280
+ #: includes/meta.php:394
281
  msgid ""
282
  "You can sorting accordion by dragging each title, click to expand title and "
283
  "see the input."
284
  msgstr ""
285
 
286
+ #: includes/meta.php:397
287
  msgid "Add"
288
  msgstr "যোগ করুন"
289
 
290
+ #: includes/meta.php:431
291
+ msgid "Remove"
292
+ msgstr ""
293
+
294
+ #: includes/meta.php:447
295
  msgid "Hide on Frontend"
296
+ msgstr "ফ্রন্টএন্ড এ লুকান"
297
 
298
+ #: includes/meta.php:453 includes/meta.php:508
299
  msgid "Header"
300
  msgstr "শিরোলেখ"
301
 
302
+ #: includes/meta.php:508
303
+ msgid "Accordion header"
304
+ msgstr ""
305
+
306
+ #: includes/meta.php:528
307
  msgid "Custom CSS for this Accordions"
308
  msgstr ""
309
 
310
+ #: includes/meta.php:529
311
  msgid ""
312
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
313
  "sometime you need use \"!important\" to overrid."
languages/accordions.mo CHANGED
Binary file
languages/accordions.po CHANGED
@@ -1,18 +1,18 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: accordions\n"
4
- "POT-Creation-Date: 2016-05-06 07:54+0600\n"
5
- "PO-Revision-Date: 2017-04-05 18:09+0600\n"
6
  "Last-Translator: \n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: en\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.8.12\n"
13
  "X-Poedit-Basepath: ../includes\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: menu\n"
18
 
@@ -20,7 +20,7 @@ msgstr ""
20
  msgid "Help & Contact"
21
  msgstr ""
22
 
23
- #: functions.php:15 meta.php:137
24
  msgid "Shortcode"
25
  msgstr ""
26
 
@@ -32,44 +32,56 @@ msgstr ""
32
  msgid "Help & Support"
33
  msgstr ""
34
 
35
- #: menu/help.php:31
36
- msgid "Need Help ?"
37
  msgstr ""
38
 
39
  #: menu/help.php:32
 
 
 
 
40
  msgid ""
41
  "Feel free to contact with any issue for this plugin, Ask any question via "
42
  "forum"
43
  msgstr ""
44
 
45
- #: menu/help.php:69
 
 
 
 
46
  msgid "Submit Reviews."
47
  msgstr ""
48
 
49
- #: menu/help.php:70
50
  msgid ""
51
  "We are working hard to build some awesome plugins for you and spend thousand "
52
  "hour for plugins. we wish your three(3) minute by submitting five star "
53
  "reviews at wordpress.org. if you have any issue please submit at forum."
54
  msgstr ""
55
 
56
- #: menu/help.php:79
57
- msgid "Please Share"
58
  msgstr ""
59
 
60
- #: menu/help.php:80
61
- msgid "If you like this plugin please share with your social share network."
62
  msgstr ""
63
 
64
- #: menu/help.php:90
65
- msgid "Video Tutorial"
66
  msgstr ""
67
 
68
- #: menu/help.php:91
69
- msgid "Please watch this video tutorial."
70
  msgstr ""
71
 
72
- #: meta.php:16 meta.php:18
 
 
 
 
73
  msgid "New Accordions"
74
  msgstr ""
75
 
@@ -101,7 +113,7 @@ msgstr ""
101
  msgid "Style"
102
  msgstr ""
103
 
104
- #: meta.php:140 meta.php:185 meta.php:387 meta.php:449
105
  msgid "Content"
106
  msgstr ""
107
 
@@ -123,168 +135,176 @@ msgid ""
123
  "accordions, Use PHP code to your themes file to display accordions."
124
  msgstr ""
125
 
126
- #: meta.php:160
127
  msgid "Tabs Shortcode"
128
  msgstr ""
129
 
130
- #: meta.php:171 meta.php:523
131
  msgid "Collapsible"
132
  msgstr ""
133
 
134
- #: meta.php:174 meta.php:526
135
  msgid "True"
136
  msgstr ""
137
 
138
- #: meta.php:175 meta.php:527
139
  msgid "False"
140
  msgstr ""
141
 
142
- #: meta.php:182
143
- msgid "heightStyle"
144
  msgstr ""
145
 
146
- #: meta.php:186
147
  msgid "Fill"
148
  msgstr ""
149
 
150
- #: meta.php:193
151
  msgid "Activate event"
152
  msgstr ""
153
 
154
- #: meta.php:196
155
  msgid "Click"
156
  msgstr ""
157
 
158
- #: meta.php:197
159
  msgid "Mouseover"
160
  msgstr ""
161
 
162
- #: meta.php:208
163
  msgid "Themes"
164
  msgstr ""
165
 
166
- #: meta.php:263
167
  msgid "Container options"
168
  msgstr ""
169
 
170
- #: meta.php:267
171
  msgid "Text Align:"
172
  msgstr ""
173
 
174
- #: meta.php:269
175
  msgid "Left"
176
  msgstr ""
177
 
178
- #: meta.php:270
179
  msgid "Center"
180
  msgstr ""
181
 
182
- #: meta.php:271
183
  msgid "Right"
184
  msgstr ""
185
 
186
- #: meta.php:274
187
  msgid "Padding: (ex: 10px)"
188
  msgstr ""
189
 
190
- #: meta.php:278
191
  msgid "Background color:"
192
  msgstr ""
193
 
194
- #: meta.php:281
195
  msgid "Background image:"
196
  msgstr ""
197
 
198
- #: meta.php:286
199
  msgid "Clear"
200
  msgstr ""
201
 
202
- #: meta.php:320
203
  msgid "Icon set"
204
  msgstr ""
205
 
206
- #: meta.php:321
207
  msgid ""
208
  "Please use font awesome icon id. ex: <b>fa-chevron-up</b>, please visit to "
209
  "see more <a href=\"https://fortawesome.github.io/Font-Awesome/icons/"
210
  "\">https://fortawesome.github.io/Font-Awesome/icons/</a>"
211
  msgstr ""
212
 
213
- #: meta.php:324
214
  msgid "Plus Icon."
215
  msgstr ""
216
 
217
- #: meta.php:329
218
  msgid "Minus Icon."
219
  msgstr ""
220
 
221
- #: meta.php:335
222
  msgid "Icon color."
223
  msgstr ""
224
 
225
- #: meta.php:339
226
  msgid "Icon font size."
227
  msgstr ""
228
 
229
- #: meta.php:349
230
  msgid "Accordions Header."
231
  msgstr ""
232
 
233
- #: meta.php:351
234
  msgid "Default Background Color."
235
  msgstr ""
236
 
237
- #: meta.php:355
238
  msgid "Active Background Color."
239
  msgstr ""
240
 
241
- #: meta.php:359
242
  msgid "Accordions Header Font Color."
243
  msgstr ""
244
 
245
- #: meta.php:362
246
  msgid "Accordions Header Font Size."
247
  msgstr ""
248
 
249
- #: meta.php:369
250
  msgid "Accordions Content."
251
  msgstr ""
252
 
253
- #: meta.php:370
254
  msgid "Accordions Content Font Color."
255
  msgstr ""
256
 
257
- #: meta.php:373
258
  msgid "Accordions Content Font Size."
259
  msgstr ""
260
 
261
- #: meta.php:376
262
  msgid "Accordions Content Background Color."
263
  msgstr ""
264
 
265
- #: meta.php:388
266
  msgid ""
267
  "You can sorting accordion by dragging each title, click to expand title and "
268
  "see the input."
269
  msgstr ""
270
 
271
- #: meta.php:391
272
  msgid "Add"
273
  msgstr ""
274
 
275
- #: meta.php:439
 
 
 
 
276
  msgid "Hide on Frontend"
277
  msgstr ""
278
 
279
- #: meta.php:445
280
  msgid "Header"
281
  msgstr ""
282
 
283
- #: meta.php:492
 
 
 
 
284
  msgid "Custom CSS for this Accordions"
285
  msgstr ""
286
 
287
- #: meta.php:493
288
  msgid ""
289
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
290
  "sometime you need use \"!important\" to overrid."
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Accordions\n"
4
+ "POT-Creation-Date: 2017-10-16 15:15+0600\n"
5
+ "PO-Revision-Date: 2017-10-16 15:15+0600\n"
6
  "Last-Translator: \n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: en\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 2.0.3\n"
13
  "X-Poedit-Basepath: ../includes\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e;_x\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: menu\n"
18
 
20
  msgid "Help & Contact"
21
  msgstr ""
22
 
23
+ #: functions.php:19 meta.php:137
24
  msgid "Shortcode"
25
  msgstr ""
26
 
32
  msgid "Help & Support"
33
  msgstr ""
34
 
35
+ #: menu/help.php:25
36
+ msgid "Our Plugins"
37
  msgstr ""
38
 
39
  #: menu/help.php:32
40
+ msgid "Need Help ?"
41
+ msgstr ""
42
+
43
+ #: menu/help.php:33
44
  msgid ""
45
  "Feel free to contact with any issue for this plugin, Ask any question via "
46
  "forum"
47
  msgstr ""
48
 
49
+ #: menu/help.php:47
50
+ msgid "Try Premium"
51
+ msgstr ""
52
+
53
+ #: menu/help.php:74
54
  msgid "Submit Reviews."
55
  msgstr ""
56
 
57
+ #: menu/help.php:75
58
  msgid ""
59
  "We are working hard to build some awesome plugins for you and spend thousand "
60
  "hour for plugins. we wish your three(3) minute by submitting five star "
61
  "reviews at wordpress.org. if you have any issue please submit at forum."
62
  msgstr ""
63
 
64
+ #: menu/help.php:86
65
+ msgid "Documentation."
66
  msgstr ""
67
 
68
+ #: menu/help.php:87
69
+ msgid "Please go following link for documentation"
70
  msgstr ""
71
 
72
+ #: menu/help.php:98
73
+ msgid "Please Share"
74
  msgstr ""
75
 
76
+ #: menu/help.php:99
77
+ msgid "If you like this plugin please share with your social share network."
78
  msgstr ""
79
 
80
+ #: meta.php:13 meta.php:14
81
+ msgid "Accordions"
82
+ msgstr ""
83
+
84
+ #: meta.php:15 meta.php:16 meta.php:18
85
  msgid "New Accordions"
86
  msgstr ""
87
 
113
  msgid "Style"
114
  msgstr ""
115
 
116
+ #: meta.php:140 meta.php:193 meta.php:393 meta.php:457 meta.php:508
117
  msgid "Content"
118
  msgstr ""
119
 
135
  "accordions, Use PHP code to your themes file to display accordions."
136
  msgstr ""
137
 
138
+ #: meta.php:165
139
  msgid "Tabs Shortcode"
140
  msgstr ""
141
 
142
+ #: meta.php:179 meta.php:559
143
  msgid "Collapsible"
144
  msgstr ""
145
 
146
+ #: meta.php:182 meta.php:562
147
  msgid "True"
148
  msgstr ""
149
 
150
+ #: meta.php:183 meta.php:563
151
  msgid "False"
152
  msgstr ""
153
 
154
+ #: meta.php:190
155
+ msgid "Height Style"
156
  msgstr ""
157
 
158
+ #: meta.php:194
159
  msgid "Fill"
160
  msgstr ""
161
 
162
+ #: meta.php:201
163
  msgid "Activate event"
164
  msgstr ""
165
 
166
+ #: meta.php:204
167
  msgid "Click"
168
  msgstr ""
169
 
170
+ #: meta.php:205
171
  msgid "Mouseover"
172
  msgstr ""
173
 
174
+ #: meta.php:216
175
  msgid "Themes"
176
  msgstr ""
177
 
178
+ #: meta.php:271
179
  msgid "Container options"
180
  msgstr ""
181
 
182
+ #: meta.php:275
183
  msgid "Text Align:"
184
  msgstr ""
185
 
186
+ #: meta.php:277
187
  msgid "Left"
188
  msgstr ""
189
 
190
+ #: meta.php:278
191
  msgid "Center"
192
  msgstr ""
193
 
194
+ #: meta.php:279
195
  msgid "Right"
196
  msgstr ""
197
 
198
+ #: meta.php:282
199
  msgid "Padding: (ex: 10px)"
200
  msgstr ""
201
 
202
+ #: meta.php:286
203
  msgid "Background color:"
204
  msgstr ""
205
 
206
+ #: meta.php:289
207
  msgid "Background image:"
208
  msgstr ""
209
 
210
+ #: meta.php:294
211
  msgid "Clear"
212
  msgstr ""
213
 
214
+ #: meta.php:328
215
  msgid "Icon set"
216
  msgstr ""
217
 
218
+ #: meta.php:329
219
  msgid ""
220
  "Please use font awesome icon id. ex: <b>fa-chevron-up</b>, please visit to "
221
  "see more <a href=\"https://fortawesome.github.io/Font-Awesome/icons/"
222
  "\">https://fortawesome.github.io/Font-Awesome/icons/</a>"
223
  msgstr ""
224
 
225
+ #: meta.php:332
226
  msgid "Plus Icon."
227
  msgstr ""
228
 
229
+ #: meta.php:336
230
  msgid "Minus Icon."
231
  msgstr ""
232
 
233
+ #: meta.php:341
234
  msgid "Icon color."
235
  msgstr ""
236
 
237
+ #: meta.php:345
238
  msgid "Icon font size."
239
  msgstr ""
240
 
241
+ #: meta.php:355
242
  msgid "Accordions Header."
243
  msgstr ""
244
 
245
+ #: meta.php:357
246
  msgid "Default Background Color."
247
  msgstr ""
248
 
249
+ #: meta.php:361
250
  msgid "Active Background Color."
251
  msgstr ""
252
 
253
+ #: meta.php:365
254
  msgid "Accordions Header Font Color."
255
  msgstr ""
256
 
257
+ #: meta.php:368
258
  msgid "Accordions Header Font Size."
259
  msgstr ""
260
 
261
+ #: meta.php:375
262
  msgid "Accordions Content."
263
  msgstr ""
264
 
265
+ #: meta.php:376
266
  msgid "Accordions Content Font Color."
267
  msgstr ""
268
 
269
+ #: meta.php:379
270
  msgid "Accordions Content Font Size."
271
  msgstr ""
272
 
273
+ #: meta.php:382
274
  msgid "Accordions Content Background Color."
275
  msgstr ""
276
 
277
+ #: meta.php:394
278
  msgid ""
279
  "You can sorting accordion by dragging each title, click to expand title and "
280
  "see the input."
281
  msgstr ""
282
 
283
+ #: meta.php:397
284
  msgid "Add"
285
  msgstr ""
286
 
287
+ #: meta.php:431
288
+ msgid "Remove"
289
+ msgstr ""
290
+
291
+ #: meta.php:447
292
  msgid "Hide on Frontend"
293
  msgstr ""
294
 
295
+ #: meta.php:453 meta.php:508
296
  msgid "Header"
297
  msgstr ""
298
 
299
+ #: meta.php:508
300
+ msgid "Accordion header"
301
+ msgstr ""
302
+
303
+ #: meta.php:528
304
  msgid "Custom CSS for this Accordions"
305
  msgstr ""
306
 
307
+ #: meta.php:529
308
  msgid ""
309
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
310
  "sometime you need use \"!important\" to overrid."
readme.txt CHANGED
@@ -4,7 +4,7 @@
4
  Tags: accordion, accordions, Responsive accordions, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
- Stable tag: 2.0.18
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -91,8 +91,11 @@ then paste this shortcode anywhere in your page to display accordions<br />
91
 
92
  == Changelog ==
93
 
94
- = 2.0.18 =
95
- * 31/05/2017 - add - Added filter hook for default plus icon.
 
 
 
96
  * 31/05/2017 - add - Added filter hook for default minus icon.
97
  * 31/05/2017 - update - adding icon method updated.
98
 
4
  Tags: accordion, accordions, Responsive accordions, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
+ Stable tag: 2.0.19
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
91
 
92
  == Changelog ==
93
 
94
+
95
+ = 2.0.19 =
96
+ * 16/10/2017 - add - Translation ready.
97
+
98
+
99
  * 31/05/2017 - add - Added filter hook for default minus icon.
100
  * 31/05/2017 - update - adding icon method updated.
101