Collapse-O-Matic - Version 1.6.3

Version Description

  • added shortcode and html support for the title, swaptitle, startwrap, enwrap and excerpt attributes using placeholders
  • added wpex_clean_shortcodes filter to strip unwanted p and br tags from the shortcode
  • added the ability to set trigclass, targtag and targclass attribute values in the plugin options page
Download this release

Release Info

Developer baden03
Plugin Icon 128x128 Collapse-O-Matic
Version 1.6.3
Comparing to
See all releases

Code changes from version 1.6.2 to 1.6.3

collapse-o-matic.php CHANGED
@@ -5,7 +5,7 @@ Text Domain: colomat
5
  Domain Path: /languages
6
  Plugin URI: http://plugins.twinpictures.de/plugins/collapse-o-matic/
7
  Description: Collapse-O-Matic adds an [expand] shortcode that wraps content into a lovely, jQuery collapsible div.
8
- Version: 1.6.2
9
  Author: twinpictures, baden03
10
  Author URI: http://twinpictures.de/
11
  License: GPL2
@@ -23,7 +23,7 @@ class WP_Collapse_O_Matic {
23
  * Current version
24
  * @var string
25
  */
26
- var $version = '1.6.2';
27
 
28
  /**
29
  * Used as prefix for options entry
@@ -44,6 +44,9 @@ class WP_Collapse_O_Matic {
44
  'style' => 'light',
45
  'cid' => '',
46
  'tag' => 'span',
 
 
 
47
  'duration' => 'fast',
48
  'slideEffect' => 'slideFade',
49
  'custom_css' => '',
@@ -156,9 +159,9 @@ class WP_Collapse_O_Matic {
156
  'notitle' => '',
157
  'id' => 'id'.$ran,
158
  'tag' => $options['tag'],
159
- 'trigclass' => '',
160
- 'targtag' => 'div',
161
- 'targclass' => '',
162
  'targpos' => '',
163
  'trigpos' => 'above',
164
  'rel' => '',
@@ -196,6 +199,9 @@ class WP_Collapse_O_Matic {
196
  ${substr($key, 9)} = $value[0];
197
  }
198
  }
 
 
 
199
  if(!empty($highlander) && !empty($rel)){
200
  $rel .= '-highlander';
201
  }
@@ -205,6 +211,29 @@ class WP_Collapse_O_Matic {
205
 
206
  $ewo = '';
207
  $ewc = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  if($elwraptag){
209
  $ewclass = '';
210
  if($elwrapclass){
@@ -224,8 +253,10 @@ class WP_Collapse_O_Matic {
224
  }
225
  $eDiv = '<'.$targtag.' id="target-'.$id.'" class="'.$collapse_class.$inline_class.$targclass.'">'.do_shortcode($content).'</'.$targtag.'>';
226
  }
227
-
228
  if($excerpt){
 
 
229
  if($targpos == 'inline'){
230
  $excerpt .= $eDiv;
231
  $eDiv = '';
@@ -238,6 +269,7 @@ class WP_Collapse_O_Matic {
238
  }
239
  //swapexcerpt
240
  if($swapexcerpt !== false){
 
241
  $nibble .= '<'.$excerpttag.' id="swapexcerpt-'.$id.'" style="display:none;">'.$swapexcerpt.'</'.$excerpttag.'>';
242
  }
243
  }
@@ -402,6 +434,27 @@ class WP_Collapse_O_Matic {
402
  </td>
403
  </tr>
404
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  <tr>
406
  <?php
407
  if(empty($options['duration'])){
@@ -512,6 +565,7 @@ class WP_Collapse_O_Matic {
512
  <li><?php printf( __('If this plugin %s, please consider %sreviewing it at WordPress.org%s to help others.', 'colomat'), $like_it, '<a href="http://wordpress.org/support/view/plugin-reviews/jquery-collapse-o-matic" target="_blank">', '</a>' ) ?></li>
513
  <li><a href="http://wordpress.org/extend/plugins/jquery-collapse-o-matic/" target="_blank">WordPress.org</a> | <a href="http://plugins.twinpictures.de/plugins/collapse-o-matic/" target="_blank">Twinpictues Plugin Oven</a></li>
514
  </ul>
 
515
  </div>
516
  </div>
517
  </div>
@@ -584,4 +638,19 @@ class WP_Collapse_O_Matic {
584
  */
585
  $WP_Collapse_O_Matic = new WP_Collapse_O_Matic;
586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  ?>
5
  Domain Path: /languages
6
  Plugin URI: http://plugins.twinpictures.de/plugins/collapse-o-matic/
7
  Description: Collapse-O-Matic adds an [expand] shortcode that wraps content into a lovely, jQuery collapsible div.
8
+ Version: 1.6.3
9
  Author: twinpictures, baden03
10
  Author URI: http://twinpictures.de/
11
  License: GPL2
23
  * Current version
24
  * @var string
25
  */
26
+ var $version = '1.6.3';
27
 
28
  /**
29
  * Used as prefix for options entry
44
  'style' => 'light',
45
  'cid' => '',
46
  'tag' => 'span',
47
+ 'trigclass' => '',
48
+ 'targtag' => 'div',
49
+ 'targclass' => '',
50
  'duration' => 'fast',
51
  'slideEffect' => 'slideFade',
52
  'custom_css' => '',
159
  'notitle' => '',
160
  'id' => 'id'.$ran,
161
  'tag' => $options['tag'],
162
+ 'trigclass' => $options['trigclass'],
163
+ 'targtag' => $options['targtag'],
164
+ 'targclass' => $options['targclass'],
165
  'targpos' => '',
166
  'trigpos' => 'above',
167
  'rel' => '',
199
  ${substr($key, 9)} = $value[0];
200
  }
201
  }
202
+ if(!empty($triggertext)){
203
+ $title = $triggertext;
204
+ }
205
  if(!empty($highlander) && !empty($rel)){
206
  $rel .= '-highlander';
207
  }
211
 
212
  $ewo = '';
213
  $ewc = '';
214
+
215
+ //id does not allow spaces
216
+ $id = preg_replace('/\s+/', '_', $id);
217
+
218
+ //placeholders
219
+ $placeholder_arr = array('%(%', '%)%', '%{%', '%}%');
220
+ $swapout_arr = array('<', '>', '[', ']');
221
+
222
+ $title = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $title));
223
+ if($swaptitle){
224
+ $swaptitle = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $swaptitle));
225
+ }
226
+ if($startwrap){
227
+ $startwrap = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $startwrap));
228
+ }
229
+ if($endwrap){
230
+ $endwrap = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $endwrap));
231
+ }
232
+ //need to check for a few versions, because of new option setting. can be removed after a few revisiosn.
233
+ if(empty($targtag)){
234
+ $targtag = 'div';
235
+ }
236
+
237
  if($elwraptag){
238
  $ewclass = '';
239
  if($elwrapclass){
253
  }
254
  $eDiv = '<'.$targtag.' id="target-'.$id.'" class="'.$collapse_class.$inline_class.$targclass.'">'.do_shortcode($content).'</'.$targtag.'>';
255
  }
256
+
257
  if($excerpt){
258
+ $excerpt = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $excerpt));
259
+
260
  if($targpos == 'inline'){
261
  $excerpt .= $eDiv;
262
  $eDiv = '';
269
  }
270
  //swapexcerpt
271
  if($swapexcerpt !== false){
272
+ $swapexcerpt = do_shortcode(str_replace($placeholder_arr, $swapout_arr, $swapexcerpt));
273
  $nibble .= '<'.$excerpttag.' id="swapexcerpt-'.$id.'" style="display:none;">'.$swapexcerpt.'</'.$excerpttag.'>';
274
  }
275
  }
434
  </td>
435
  </tr>
436
 
437
+ <tr>
438
+ <th><?php _e( 'Trigclass Attribute', 'colomat' ) ?>:</th>
439
+ <td><label><input type="text" id="<?php echo $this->options_name ?>[trigclass]" name="<?php echo $this->options_name ?>[trigclass]" value="<?php echo $options['trigclass']; ?>" />
440
+ <br /><span class="description"><?php printf(__('Default class assigned to the trigger element. See %sTrigclass Attribute%s in the documentation for more info.', 'colomat'), '<a href="http://plugins.twinpictures.de/plugins/collapse-o-matic/documentation/#trigclass" target="_blank">', '</a>'); ?></span></label>
441
+ </td>
442
+ </tr>
443
+
444
+ <tr>
445
+ <th><?php _e( 'Targtag Attribute', 'colomat' ) ?>:</th>
446
+ <td><label><input type="text" id="<?php echo $this->options_name ?>[targtag]" name="<?php echo $this->options_name ?>[targtag]" value="<?php echo $options['targtag']; ?>" />
447
+ <br /><span class="description"><?php printf(__('HTML tag use for the target element. See %sTargtag Attribute%s in the documentation for more info.', 'colomat'), '<a href="http://plugins.twinpictures.de/plugins/collapse-o-matic/documentation/#targtag" target="_blank">', '</a>'); ?></span></label>
448
+ </td>
449
+ </tr>
450
+
451
+ <tr>
452
+ <th><?php _e( 'Targclass Attribute', 'colomat' ) ?>:</th>
453
+ <td><label><input type="text" id="<?php echo $this->options_name ?>[targclass]" name="<?php echo $this->options_name ?>[targclass]" value="<?php echo $options['targclass']; ?>" />
454
+ <br /><span class="description"><?php printf(__('Default class assigned to the target element. See %sTargclass Attribute%s in the documentation for more info.', 'colomat'), '<a href="http://plugins.twinpictures.de/plugins/collapse-o-matic/documentation/#targclass" target="_blank">', '</a>'); ?></span></label>
455
+ </td>
456
+ </tr>
457
+
458
  <tr>
459
  <?php
460
  if(empty($options['duration'])){
565
  <li><?php printf( __('If this plugin %s, please consider %sreviewing it at WordPress.org%s to help others.', 'colomat'), $like_it, '<a href="http://wordpress.org/support/view/plugin-reviews/jquery-collapse-o-matic" target="_blank">', '</a>' ) ?></li>
566
  <li><a href="http://wordpress.org/extend/plugins/jquery-collapse-o-matic/" target="_blank">WordPress.org</a> | <a href="http://plugins.twinpictures.de/plugins/collapse-o-matic/" target="_blank">Twinpictues Plugin Oven</a></li>
567
  </ul>
568
+ <p style="padding: 5px; border: 1px dashed #cccc66; background: #EEE;"><strong>Limited Offer:</strong> <a href="http://plugins.twinpictures.de/premium-plugins/collapse-pro-matic/">Upgrade to Collapse-Pro-Matic</a> or add on <a href="http://plugins.twinpictures.de/premium-plugins/collapse-commander/">Collapse Commander</a> before January 1, 2015 and receive a lifetime unlimited licence. Starting in 2015, all Plugin Oven pro plugins will introduce new pricing and licensing tiers.</p>
569
  </div>
570
  </div>
571
  </div>
638
  */
639
  $WP_Collapse_O_Matic = new WP_Collapse_O_Matic;
640
 
641
+ //clean unwanted p and br tags from shortcodes
642
+ //http://www.wpexplorer.com/clean-up-wordpress-shortcode-formatting
643
+ if (!function_exists('wpex_clean_shortcodes')) {
644
+ function wpex_clean_shortcodes($content){
645
+ $array = array (
646
+ '<p>[' => '[',
647
+ ']</p>' => ']',
648
+ ']<br />' => ']'
649
+ );
650
+ $content = strtr($content, $array);
651
+ return $content;
652
+ }
653
+ add_filter('the_content', 'wpex_clean_shortcodes');
654
+ }
655
+
656
  ?>
languages/colomat.pot CHANGED
@@ -1,10 +1,10 @@
1
- # Copyright (C) 2014
2
- # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: \n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/colomat\n"
7
- "POT-Creation-Date: 2014-01-16 10:31:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,131 +12,281 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: collapse-o-matic.php:277
16
  msgid "Settings"
17
  msgstr ""
18
 
19
- #: collapse-o-matic.php:297 collapse-o-matic.php:409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Click to toggle"
21
  msgstr ""
22
 
23
- #: collapse-o-matic.php:298
24
  msgid "Default Collapse-O-Matic Settings"
25
  msgstr ""
26
 
27
- #: collapse-o-matic.php:309
28
  msgid "Style"
29
  msgstr ""
30
 
31
- #: collapse-o-matic.php:316
32
  msgid "Light"
33
  msgstr ""
34
 
35
- #: collapse-o-matic.php:317
36
  msgid "Dark"
37
  msgstr ""
38
 
39
- #: collapse-o-matic.php:328
40
- msgid ""
41
- "Select Light for sites with lighter backgrounds. Select Dark for sites with "
42
- "darker backgrounds."
43
  msgstr ""
44
 
45
- #: collapse-o-matic.php:333
 
 
 
 
 
 
 
 
46
  msgid "Tag Attribute"
47
  msgstr ""
48
 
49
- #: collapse-o-matic.php:335
50
- msgid ""
51
- "HTML tag use to wrap the trigger text. See %sTag Attribute%s in the "
52
- "documentation for more info."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  msgstr ""
54
 
55
- #: collapse-o-matic.php:345
 
 
 
 
 
 
 
 
56
  msgid "Collapse/Expand Duration"
57
  msgstr ""
58
 
59
- #: collapse-o-matic.php:347
60
- msgid ""
61
- "A string or number determining how long the animation will run. See %"
62
- "sDuration%s in the documentation for more info."
63
  msgstr ""
64
 
65
- #: collapse-o-matic.php:352
66
  msgid "Animation Effect"
67
  msgstr ""
68
 
69
- #: collapse-o-matic.php:359
70
  msgid "Slide Only"
71
  msgstr ""
72
 
73
- #: collapse-o-matic.php:360
74
  msgid "Slide & Fade"
75
  msgstr ""
76
 
77
- #: collapse-o-matic.php:371
78
- msgid ""
79
- "Animation effect to use while collapsing and expanding. See %sAnimation "
80
- "Effect%s in the documentation for more info."
81
  msgstr ""
82
 
83
- #: collapse-o-matic.php:376
84
  msgid "Custom Style"
85
  msgstr ""
86
 
87
- #: collapse-o-matic.php:378
88
  msgid "Custom CSS style for <em>ultimate flexibility</em>"
89
  msgstr ""
90
 
91
- #: collapse-o-matic.php:383
92
  msgid "Shortcode Loads Scripts"
93
  msgstr ""
94
 
95
- #: collapse-o-matic.php:384
96
  msgid "Only load scripts with shortcode."
97
  msgstr ""
98
 
99
- #: collapse-o-matic.php:385
100
  msgid "Only load Collapse-O-Matic scripts if [expand] shortcode is used."
101
  msgstr ""
102
 
103
- #: collapse-o-matic.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  msgid "Level Up!"
105
  msgstr ""
106
 
107
- #: collapse-o-matic.php:391
108
- msgid ""
109
- "%sCollapse-Pro-Matic%s is our preimum plugin that offers additional "
110
- "attributes and features for <i>ultimate</i> flexibility."
111
  msgstr ""
112
 
113
- #: collapse-o-matic.php:398
114
  msgid "Save Changes"
115
  msgstr ""
116
 
117
- #: collapse-o-matic.php:410
118
  msgid "About"
119
  msgstr ""
120
 
121
- #: collapse-o-matic.php:413
122
- msgid ""
123
- "Remove clutter, save space. Display and hide additional content in a SEO "
124
- "friendly way. Wrap any content&mdash;including other shortcodes&mdash;into a "
125
- "lovely jQuery expanding and collapsing element."
126
  msgstr ""
127
 
128
- #: collapse-o-matic.php:415
129
- msgid ""
130
- "%sDetailed documentation%s, complete with working demonstrations of all "
131
- "shortcode attributes, is available for your instructional enjoyment."
132
  msgstr ""
133
 
134
- #: collapse-o-matic.php:416
135
- msgid "%sFree%s Opensource Support"
136
  msgstr ""
137
 
138
- #: collapse-o-matic.php:417
139
- msgid ""
140
- "If this plugin %s, please consider %sreviewing it at WordPress.org%s to help "
141
- "others."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgstr ""
1
+ # Copyright (C) 2014 Collapse-O-Matic
2
+ # This file is distributed under the same license as the Collapse-O-Matic package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Collapse-O-Matic 1.6.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/colomat\n"
7
+ "POT-Creation-Date: 2014-12-02 08:32:08+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: collapse-o-matic.php:349
16
  msgid "Settings"
17
  msgstr ""
18
 
19
+ #: collapse-o-matic.php:358
20
+ msgid "really tied the room together"
21
+ msgstr ""
22
+
23
+ #: collapse-o-matic.php:359
24
+ msgid "made you feel all warm and fuzzy on the inside"
25
+ msgstr ""
26
+
27
+ #: collapse-o-matic.php:360
28
+ msgid "restored your faith in humanity... even if only for a fleeting second"
29
+ msgstr ""
30
+
31
+ #: collapse-o-matic.php:361
32
+ msgid "rocked your world"
33
+ msgstr ""
34
+
35
+ #: collapse-o-matic.php:362
36
+ msgid "inspired you to commit a random act of kindness"
37
+ msgstr ""
38
+
39
+ #: collapse-o-matic.php:363
40
+ msgid "encouraged more regular flossing of the teeth"
41
+ msgstr ""
42
+
43
+ #: collapse-o-matic.php:364
44
+ msgid "helped organize your life in the small ways that matter"
45
+ msgstr ""
46
+
47
+ #: collapse-o-matic.php:365
48
+ msgid "saved your minutes--if not tens of minutes--writing your own solution"
49
+ msgstr ""
50
+
51
+ #: collapse-o-matic.php:366
52
+ msgid "brightened your day... or darkened if if you are trying to sleep in"
53
+ msgstr ""
54
+
55
+ #: collapse-o-matic.php:367
56
+ msgid "caused you to dance a little jig of joy and joyousness"
57
+ msgstr ""
58
+
59
+ #: collapse-o-matic.php:368
60
+ msgid "inspired you to tweet a little @twinpictues social love"
61
+ msgstr ""
62
+
63
+ #: collapse-o-matic.php:369
64
+ msgid "tasted great, while also being less filling"
65
+ msgstr ""
66
+
67
+ #: collapse-o-matic.php:370
68
+ msgid "caused you to shout: \"everybody spread love, give me some mo!\""
69
+ msgstr ""
70
+
71
+ #: collapse-o-matic.php:371
72
+ msgid "helped you keep the funk alive"
73
+ msgstr ""
74
+
75
+ #: collapse-o-matic.php:372
76
+ msgid "<a href=\"http://www.youtube.com/watch?v=dvQ28F5fOdU\" target=\"_blank\">soften hands while you do dishes</a>"
77
+ msgstr ""
78
+
79
+ #: collapse-o-matic.php:373
80
+ msgid "helped that little old lady <a href=\"http://www.youtube.com/watch?v=Ug75diEyiA0\" target=\"_blank\">find the beef</a>"
81
+ msgstr ""
82
+
83
+ #: collapse-o-matic.php:386 collapse-o-matic.php:557
84
  msgid "Click to toggle"
85
  msgstr ""
86
 
87
+ #: collapse-o-matic.php:387
88
  msgid "Default Collapse-O-Matic Settings"
89
  msgstr ""
90
 
91
+ #: collapse-o-matic.php:398
92
  msgid "Style"
93
  msgstr ""
94
 
95
+ #: collapse-o-matic.php:405
96
  msgid "Light"
97
  msgstr ""
98
 
99
+ #: collapse-o-matic.php:406
100
  msgid "Dark"
101
  msgstr ""
102
 
103
+ #: collapse-o-matic.php:417
104
+ msgid "Select Light for sites with lighter backgrounds. Select Dark for sites with darker backgrounds."
 
 
105
  msgstr ""
106
 
107
+ #: collapse-o-matic.php:423
108
+ msgid "CID Attribute"
109
+ msgstr ""
110
+
111
+ #: collapse-o-matic.php:425
112
+ msgid "Default %sCollapse Commander%s ID"
113
+ msgstr ""
114
+
115
+ #: collapse-o-matic.php:431
116
  msgid "Tag Attribute"
117
  msgstr ""
118
 
119
+ #: collapse-o-matic.php:433
120
+ msgid "HTML tag use to wrap the trigger text. See %sTag Attribute%s in the documentation for more info."
121
+ msgstr ""
122
+
123
+ #: collapse-o-matic.php:438
124
+ msgid "Trigclass Attribute"
125
+ msgstr ""
126
+
127
+ #: collapse-o-matic.php:440
128
+ msgid "Default class assigned to the trigger element. See %sTrigclass Attribute%s in the documentation for more info."
129
+ msgstr ""
130
+
131
+ #: collapse-o-matic.php:445
132
+ msgid "Targtag Attribute"
133
+ msgstr ""
134
+
135
+ #: collapse-o-matic.php:447
136
+ msgid "HTML tag use for the target element. See %sTargtag Attribute%s in the documentation for more info."
137
  msgstr ""
138
 
139
+ #: collapse-o-matic.php:452
140
+ msgid "Targclass Attribute"
141
+ msgstr ""
142
+
143
+ #: collapse-o-matic.php:454
144
+ msgid "Default class assigned to the target element. See %sTargclass Attribute%s in the documentation for more info."
145
+ msgstr ""
146
+
147
+ #: collapse-o-matic.php:464
148
  msgid "Collapse/Expand Duration"
149
  msgstr ""
150
 
151
+ #: collapse-o-matic.php:466
152
+ msgid "A string or number determining how long the animation will run. See %sDuration%s in the documentation for more info."
 
 
153
  msgstr ""
154
 
155
+ #: collapse-o-matic.php:471
156
  msgid "Animation Effect"
157
  msgstr ""
158
 
159
+ #: collapse-o-matic.php:478
160
  msgid "Slide Only"
161
  msgstr ""
162
 
163
+ #: collapse-o-matic.php:479
164
  msgid "Slide & Fade"
165
  msgstr ""
166
 
167
+ #: collapse-o-matic.php:490
168
+ msgid "Animation effect to use while collapsing and expanding. See %sAnimation Effect%s in the documentation for more info."
 
 
169
  msgstr ""
170
 
171
+ #: collapse-o-matic.php:495
172
  msgid "Custom Style"
173
  msgstr ""
174
 
175
+ #: collapse-o-matic.php:497
176
  msgid "Custom CSS style for <em>ultimate flexibility</em>"
177
  msgstr ""
178
 
179
+ #: collapse-o-matic.php:502
180
  msgid "Shortcode Loads Scripts"
181
  msgstr ""
182
 
183
+ #: collapse-o-matic.php:503
184
  msgid "Only load scripts with shortcode."
185
  msgstr ""
186
 
187
+ #: collapse-o-matic.php:504
188
  msgid "Only load Collapse-O-Matic scripts if [expand] shortcode is used."
189
  msgstr ""
190
 
191
+ #: collapse-o-matic.php:509
192
+ msgid "Script Load Location"
193
+ msgstr ""
194
+
195
+ #: collapse-o-matic.php:516
196
+ msgid "Header"
197
+ msgstr ""
198
+
199
+ #: collapse-o-matic.php:517
200
+ msgid "Footer"
201
+ msgstr ""
202
+
203
+ #: collapse-o-matic.php:528
204
+ msgid "Where should the script be loaded, in the Header or the Footer?"
205
+ msgstr ""
206
+
207
+ #: collapse-o-matic.php:533
208
+ msgid "Take Command!"
209
+ msgstr ""
210
+
211
+ #: collapse-o-matic.php:534
212
+ msgid "%sCollapse Commander%s is an add-on plugin that introduces an advanced management interface to better organize expand elements and simplify expand shortcodes."
213
+ msgstr ""
214
+
215
+ #: collapse-o-matic.php:539
216
  msgid "Level Up!"
217
  msgstr ""
218
 
219
+ #: collapse-o-matic.php:540
220
+ msgid "%sCollapse-Pro-Matic%s is our premium plugin that offers additional attributes and features for <i>ultimate</i> flexibility."
 
 
221
  msgstr ""
222
 
223
+ #: collapse-o-matic.php:547
224
  msgid "Save Changes"
225
  msgstr ""
226
 
227
+ #: collapse-o-matic.php:558
228
  msgid "About"
229
  msgstr ""
230
 
231
+ #: collapse-o-matic.php:561
232
+ msgid "Remove clutter, save space. Display and hide additional content in a SEO friendly way. Wrap any content&mdash;including other shortcodes&mdash;into a lovely jQuery expanding and collapsing element."
 
 
 
233
  msgstr ""
234
 
235
+ #: collapse-o-matic.php:563
236
+ msgid "%sDetailed documentation%s, complete with working demonstrations of all shortcode attributes, is available for your instructional enjoyment."
 
 
237
  msgstr ""
238
 
239
+ #: collapse-o-matic.php:564
240
+ msgid "%sFree Opensource Support%s"
241
  msgstr ""
242
 
243
+ #: collapse-o-matic.php:565
244
+ msgid "If this plugin %s, please consider %sreviewing it at WordPress.org%s to help others."
245
+ msgstr ""
246
+
247
+ #: collapse-o-matic.php:580
248
+ msgid "Register Collapse Commander"
249
+ msgstr ""
250
+
251
+ #: collapse-o-matic.php:582
252
+ msgid "To receive plugin updates you must register your plugin. Enter your Receipt ID and email address used to purchase the plugin below."
253
+ msgstr ""
254
+
255
+ #: collapse-o-matic.php:586
256
+ msgid "Receipt ID"
257
+ msgstr ""
258
+
259
+ #: collapse-o-matic.php:588
260
+ msgid "Receipt ID is found in the Collapse Commander Purchase Receipt"
261
+ msgstr ""
262
+
263
+ #: collapse-o-matic.php:593
264
+ msgid "Email"
265
+ msgstr ""
266
+
267
+ #: collapse-o-matic.php:595
268
+ msgid "Email address used to purchase Collapse Commander"
269
+ msgstr ""
270
+
271
+ #: collapse-o-matic.php:601
272
+ msgid "Register"
273
+ msgstr ""
274
+ #. Plugin Name of the plugin/theme
275
+ msgid "Collapse-O-Matic"
276
+ msgstr ""
277
+
278
+ #. Plugin URI of the plugin/theme
279
+ msgid "http://plugins.twinpictures.de/plugins/collapse-o-matic/"
280
+ msgstr ""
281
+
282
+ #. Description of the plugin/theme
283
+ msgid "Collapse-O-Matic adds an [expand] shortcode that wraps content into a lovely, jQuery collapsible div."
284
+ msgstr ""
285
+
286
+ #. Author of the plugin/theme
287
+ msgid "twinpictures, baden03"
288
+ msgstr ""
289
+
290
+ #. Author URI of the plugin/theme
291
+ msgid "http://twinpictures.de/"
292
  msgstr ""
languages/colomat_de.mo CHANGED
Binary file
languages/colomat_de.po CHANGED
@@ -2,51 +2,260 @@
2
  # This file is distributed under the same license as the Collapse-O-Matic package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-11-19 08:15+0100\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.5.7\n"
11
  "Project-Id-Version: Collapse-O-Matic\n"
12
  "POT-Creation-Date: \n"
13
- "Last-Translator: astroBro <baden@twinpictures.de>\n"
14
  "Language-Team: Twinpictures <info@twinpictures.de>\n"
15
- "Language: German\n"
16
 
17
- #: colomat.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Style"
19
  msgstr "Erscheinungsbild"
20
 
21
- #: colomat.php:294
22
  msgid "Light"
23
  msgstr "Hell"
24
 
25
- #: colomat.php:295
26
  msgid "Dark"
27
  msgstr "Dunkel"
28
 
29
- #: colomat.php:306
30
- msgid ""
31
- "Select Light for sites with lighter backgroudns. Select Dark for sites with "
32
- "darker backgrounds."
33
- msgstr ""
34
- "Wählen Sie \"Hell\" für Websiten mit hellem Hintergrund und \"Dunkel\" für "
35
- "Seiten mit dunklem Hintergrund"
36
-
37
- #: colomat.php:275 colomat.php:373
38
  msgid "Click to toggle"
39
  msgstr "Klicken Sie zum Ein-/Ausklappen."
40
 
41
- #: colomat.php:276
42
  msgid "Default Collapse-O-Matic Settings"
43
  msgstr "Standardeinstellungen von Collapse-O-Matic"
44
 
45
- #: colomat.php:311
46
  msgid "Tag Attribute"
47
  msgstr "Tag Attribut"
48
 
49
- #: colomat.php:313
50
  msgid ""
51
  "HTML tag use to wrap the trigger text. See %sTag Attribute%s in the "
52
  "documentation for more info."
@@ -54,11 +263,11 @@ msgstr ""
54
  "HTML Tag, welcher um den Aktivierungstext gelegt wird. Suchen Sie nach %sTag "
55
  "Attribute%s in der Dokumentation für weitere Informationen (Englisch)."
56
 
57
- #: colomat.php:323
58
  msgid "Collapse/Expand Duration"
59
  msgstr "Zeit des Öffnens/Schließens"
60
 
61
- #: colomat.php:325
62
  msgid ""
63
  "A string or number determining how long the animation will run. See "
64
  "%sDuration%s in the documentation for more info."
@@ -67,19 +276,19 @@ msgstr ""
67
  "wird. Suchen Sie nach %sAnimation%s in der englischsprachigen Dokumentation "
68
  "für mehr Informationen."
69
 
70
- #: colomat.php:330
71
  msgid "Animation Effect"
72
  msgstr "Animationseffekt"
73
 
74
- #: colomat.php:337
75
  msgid "Slide Only"
76
  msgstr "Nur gleiten"
77
 
78
- #: colomat.php:338
79
  msgid "Slide & Fade"
80
  msgstr "Gleiten & Ausblenden"
81
 
82
- #: colomat.php:349
83
  msgid ""
84
  "Animation effect to use while collapsing and expanding. See %sAnimation "
85
  "Effect%s in the documentation for more info."
@@ -88,29 +297,19 @@ msgstr ""
88
  "Weitere Informationen finden Sie unter %sAnimation Effect%s in der "
89
  "englischen Dokumentation."
90
 
91
- #: colomat.php:354
92
  msgid "Level Up!"
93
  msgstr "Verbessern Sie Ihre Programmversion!"
94
 
95
- #: colomat.php:355
96
- msgid ""
97
- "<em>Comming Soon: Collapse-Pro-Matic</em> our preimum plugin that offers "
98
- "additional attributes and the ability to set default attribute settings for "
99
- "all attributes."
100
- msgstr ""
101
- "<em>Bald erhältlich: Collapse-Pro-Matic</em>, unser Premium-Plug-In welches "
102
- "Ihnen mehr Einstellungsmöglichkeiten bieten wird sowie die Option, "
103
- "Standardattribute für alle Attribute festzulegen."
104
-
105
- #: colomat.php:362
106
  msgid "Save Changes"
107
  msgstr "Speichere die vorgenommenen Änderungen"
108
 
109
- #: colomat.php:374
110
  msgid "About"
111
  msgstr "Über"
112
 
113
- #: colomat.php:377
114
  msgid ""
115
  "Remove clutter, save space. Display and hide additional content in a SEO "
116
  "friendly way. Wrap any content&mdash;including other shortcodes&mdash;into a "
@@ -121,7 +320,7 @@ msgstr ""
121
  "suchmaschinenfreundlich! Verpacke jedmöglichen Inhalt sowie andere "
122
  "Shortcodes in ein tolles jQuery Element."
123
 
124
- #: colomat.php:379
125
  msgid ""
126
  "%sDetailed documentation%s, complete with working demonstrations of all "
127
  "shortcode attributes, is available for your instructional enjoyment."
@@ -129,21 +328,6 @@ msgstr ""
129
  "Zum besseren Verständnis sind %sDetailed documentation%s verfügbar mit "
130
  "Demonstration aller Shortcodes und Attributen."
131
 
132
- #: colomat.php:380
133
- msgid "%sFree%s & %sPremimum%s Support"
134
- msgstr "%sFree%s & %sPremium%s Hilfe (Support)"
135
-
136
- #: colomat.php:381
137
- msgid ""
138
- "If you like this plugin, please consider %sreviewing it at WordPress.org%s "
139
- "to help others."
140
- msgstr ""
141
- "Wenn Sie dieses Plug-In mögen bitten wir sie es auf %sreviewing it at "
142
- "WordPress.org%s zu bewerten."
143
-
144
- msgid "jQuery Collapse-O-Matic"
145
- msgstr "jQuery Collapse-O-Matic"
146
-
147
  msgid "http://plugins.twinpictures.de/plugins/collapse-o-matic/"
148
  msgstr "http://plugins.twinpictures.de/plugins/collapse-o-matic/"
149
 
2
  # This file is distributed under the same license as the Collapse-O-Matic package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-12-02 09:55+0100\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: Poedit 1.6.10\n"
11
  "Project-Id-Version: Collapse-O-Matic\n"
12
  "POT-Creation-Date: \n"
13
+ "Last-Translator: Twinpictues <info@twinpictures.de>\n"
14
  "Language-Team: Twinpictures <info@twinpictures.de>\n"
15
+ "Language: de\n"
16
 
17
+ #: collapse-o-matic.php:358
18
+ msgid "really tied the room together"
19
+ msgstr "wirklich hielt den Raum zusammen"
20
+
21
+ #: collapse-o-matic.php:359
22
+ msgid "made you feel all warm and fuzzy on the inside"
23
+ msgstr "für ein warmes, kuscheliges Gefühl in deinem Inneren gesorgt hat"
24
+
25
+ #: collapse-o-matic.php:360
26
+ msgid "restored your faith in humanity... even if only for a fleeting second"
27
+ msgstr ""
28
+ "dein Vertrauen in die Menschheit wieder hergestellt hat... wenn auch nur für "
29
+ "eine Sekunde"
30
+
31
+ #: collapse-o-matic.php:361
32
+ msgid "rocked your world"
33
+ msgstr "deine Welt auf Kopf gestellt"
34
+
35
+ #: collapse-o-matic.php:362
36
+ msgid "inspired you to commit a random act of kindness"
37
+ msgstr "hat dich inspiriert, einen wahllosen Akt der Güte zu vollbringen"
38
+
39
+ #: collapse-o-matic.php:363
40
+ msgid "encouraged more regular flossing of the teeth"
41
+ msgstr ""
42
+ "hat dich motiviert, dir regelmäßig die Zähne mit Zahnseide zu bearbeiten"
43
+
44
+ #: collapse-o-matic.php:364
45
+ msgid "helped organize your life in the small ways that matter"
46
+ msgstr ""
47
+ "hat dir geholfen dein Leben in den Kleinigkeiten die zählen besser zu "
48
+ "organisieren"
49
+
50
+ #: collapse-o-matic.php:365
51
+ msgid "saved your minutes--if not tens of minutes--writing your own solution"
52
+ msgstr ""
53
+
54
+ #: collapse-o-matic.php:366
55
+ msgid "brightened your day... or darkened if if you are trying to sleep in"
56
+ msgstr ""
57
+
58
+ #: collapse-o-matic.php:367
59
+ msgid "caused you to dance a little jig of joy and joyousness"
60
+ msgstr ""
61
+
62
+ #: collapse-o-matic.php:368
63
+ msgid "inspired you to tweet a little @twinpictues social love"
64
+ msgstr ""
65
+
66
+ #: collapse-o-matic.php:369
67
+ msgid "tasted great, while also being less filling"
68
+ msgstr ""
69
+
70
+ #: collapse-o-matic.php:370
71
+ msgid "caused you to shout: \"everybody spread love, give me some mo!\""
72
+ msgstr ""
73
+
74
+ #: collapse-o-matic.php:371
75
+ msgid "helped you keep the funk alive"
76
+ msgstr "Helfe mit den Fuk am Leben zu halten"
77
+
78
+ #: collapse-o-matic.php:372
79
+ msgid ""
80
+ "<a href=\"http://www.youtube.com/watch?v=dvQ28F5fOdU\" target=\"_blank"
81
+ "\">soften hands while you do dishes</a>"
82
+ msgstr ""
83
+
84
+ #: collapse-o-matic.php:373
85
+ msgid ""
86
+ "helped that little old lady <a href=\"http://www.youtube.com/watch?"
87
+ "v=Ug75diEyiA0\" target=\"_blank\">find the beef</a>"
88
+ msgstr ""
89
+
90
+ #: collapse-o-matic.php:423
91
+ msgid "CID Attribute"
92
+ msgstr ""
93
+
94
+ #: collapse-o-matic.php:425
95
+ msgid "Default %sCollapse Commander%s ID"
96
+ msgstr ""
97
+
98
+ #: collapse-o-matic.php:438
99
+ msgid "Trigclass Attribute"
100
+ msgstr ""
101
+
102
+ #: collapse-o-matic.php:440
103
+ msgid ""
104
+ "Default class assigned to the trigger element. See %sTrigclass Attribute%s "
105
+ "in the documentation for more info."
106
+ msgstr ""
107
+
108
+ #: collapse-o-matic.php:452
109
+ msgid "Targclass Attribute"
110
+ msgstr ""
111
+
112
+ #: collapse-o-matic.php:454
113
+ msgid ""
114
+ "Default class assigned to the target element. See %sTargclass Attribute%s in "
115
+ "the documentation for more info."
116
+ msgstr ""
117
+
118
+ #: collapse-o-matic.php:509
119
+ msgid "Script Load Location"
120
+ msgstr ""
121
+
122
+ #: collapse-o-matic.php:516
123
+ msgid "Header"
124
+ msgstr ""
125
+
126
+ #: collapse-o-matic.php:517
127
+ msgid "Footer"
128
+ msgstr ""
129
+
130
+ #: collapse-o-matic.php:528
131
+ msgid "Where should the script be loaded, in the Header or the Footer?"
132
+ msgstr ""
133
+
134
+ #: collapse-o-matic.php:533
135
+ msgid "Take Command!"
136
+ msgstr ""
137
+
138
+ #: collapse-o-matic.php:534
139
+ msgid ""
140
+ "%sCollapse Commander%s is an add-on plugin that introduces an advanced "
141
+ "management interface to better organize expand elements and simplify expand "
142
+ "shortcodes."
143
+ msgstr ""
144
+
145
+ #: collapse-o-matic.php:540
146
+ msgid ""
147
+ "%sCollapse-Pro-Matic%s is our premium plugin that offers additional "
148
+ "attributes and features for <i>ultimate</i> flexibility."
149
+ msgstr ""
150
+
151
+ #: collapse-o-matic.php:564
152
+ msgid "%sFree Opensource Support%s"
153
+ msgstr ""
154
+
155
+ #: collapse-o-matic.php:580
156
+ msgid "Register Collapse Commander"
157
+ msgstr ""
158
+
159
+ #: collapse-o-matic.php:582
160
+ msgid ""
161
+ "To receive plugin updates you must register your plugin. Enter your Receipt "
162
+ "ID and email address used to purchase the plugin below."
163
+ msgstr ""
164
+
165
+ #: collapse-o-matic.php:588
166
+ msgid "Receipt ID is found in the Collapse Commander Purchase Receipt"
167
+ msgstr ""
168
+
169
+ #: collapse-o-matic.php:595
170
+ msgid "Email address used to purchase Collapse Commander"
171
+ msgstr ""
172
+
173
+ msgid "Collapse-O-Matic"
174
+ msgstr ""
175
+
176
+ #: collapse-o-matic.php:502
177
+ msgid "Shortcode Loads Scripts"
178
+ msgstr ""
179
+
180
+ #: collapse-o-matic.php:503
181
+ msgid "Only load scripts with shortcode."
182
+ msgstr ""
183
+
184
+ #: collapse-o-matic.php:504
185
+ msgid "Only load Collapse-O-Matic scripts if [expand] shortcode is used."
186
+ msgstr ""
187
+
188
+ #: collapse-o-matic.php:565
189
+ msgid ""
190
+ "If this plugin %s, please consider %sreviewing it at WordPress.org%s to help "
191
+ "others."
192
+ msgstr ""
193
+
194
+ #: collapse-o-matic.php:349
195
+ msgid "Settings"
196
+ msgstr ""
197
+
198
+ #: collapse-o-matic.php:417
199
+ msgid ""
200
+ "Select Light for sites with lighter backgrounds. Select Dark for sites with "
201
+ "darker backgrounds."
202
+ msgstr ""
203
+
204
+ #: collapse-o-matic.php:445
205
+ msgid "Targtag Attribute"
206
+ msgstr ""
207
+
208
+ #: collapse-o-matic.php:447
209
+ msgid ""
210
+ "HTML tag use for the target element. See %sTargtag Attribute%s in the "
211
+ "documentation for more info."
212
+ msgstr ""
213
+
214
+ #: collapse-o-matic.php:495
215
+ msgid "Custom Style"
216
+ msgstr ""
217
+
218
+ #: collapse-o-matic.php:497
219
+ msgid "Custom CSS style for <em>ultimate flexibility</em>"
220
+ msgstr ""
221
+
222
+ #: collapse-o-matic.php:586
223
+ msgid "Receipt ID"
224
+ msgstr ""
225
+
226
+ #: collapse-o-matic.php:593
227
+ msgid "Email"
228
+ msgstr ""
229
+
230
+ #: collapse-o-matic.php:601
231
+ msgid "Register"
232
+ msgstr ""
233
+
234
+ #: collapse-o-matic.php:398
235
  msgid "Style"
236
  msgstr "Erscheinungsbild"
237
 
238
+ #: collapse-o-matic.php:405
239
  msgid "Light"
240
  msgstr "Hell"
241
 
242
+ #: collapse-o-matic.php:406
243
  msgid "Dark"
244
  msgstr "Dunkel"
245
 
246
+ #: collapse-o-matic.php:386 collapse-o-matic.php:557
 
 
 
 
 
 
 
 
247
  msgid "Click to toggle"
248
  msgstr "Klicken Sie zum Ein-/Ausklappen."
249
 
250
+ #: collapse-o-matic.php:387
251
  msgid "Default Collapse-O-Matic Settings"
252
  msgstr "Standardeinstellungen von Collapse-O-Matic"
253
 
254
+ #: collapse-o-matic.php:431
255
  msgid "Tag Attribute"
256
  msgstr "Tag Attribut"
257
 
258
+ #: collapse-o-matic.php:433
259
  msgid ""
260
  "HTML tag use to wrap the trigger text. See %sTag Attribute%s in the "
261
  "documentation for more info."
263
  "HTML Tag, welcher um den Aktivierungstext gelegt wird. Suchen Sie nach %sTag "
264
  "Attribute%s in der Dokumentation für weitere Informationen (Englisch)."
265
 
266
+ #: collapse-o-matic.php:464
267
  msgid "Collapse/Expand Duration"
268
  msgstr "Zeit des Öffnens/Schließens"
269
 
270
+ #: collapse-o-matic.php:466
271
  msgid ""
272
  "A string or number determining how long the animation will run. See "
273
  "%sDuration%s in the documentation for more info."
276
  "wird. Suchen Sie nach %sAnimation%s in der englischsprachigen Dokumentation "
277
  "für mehr Informationen."
278
 
279
+ #: collapse-o-matic.php:471
280
  msgid "Animation Effect"
281
  msgstr "Animationseffekt"
282
 
283
+ #: collapse-o-matic.php:478
284
  msgid "Slide Only"
285
  msgstr "Nur gleiten"
286
 
287
+ #: collapse-o-matic.php:479
288
  msgid "Slide & Fade"
289
  msgstr "Gleiten & Ausblenden"
290
 
291
+ #: collapse-o-matic.php:490
292
  msgid ""
293
  "Animation effect to use while collapsing and expanding. See %sAnimation "
294
  "Effect%s in the documentation for more info."
297
  "Weitere Informationen finden Sie unter %sAnimation Effect%s in der "
298
  "englischen Dokumentation."
299
 
300
+ #: collapse-o-matic.php:539
301
  msgid "Level Up!"
302
  msgstr "Verbessern Sie Ihre Programmversion!"
303
 
304
+ #: collapse-o-matic.php:547
 
 
 
 
 
 
 
 
 
 
305
  msgid "Save Changes"
306
  msgstr "Speichere die vorgenommenen Änderungen"
307
 
308
+ #: collapse-o-matic.php:558
309
  msgid "About"
310
  msgstr "Über"
311
 
312
+ #: collapse-o-matic.php:561
313
  msgid ""
314
  "Remove clutter, save space. Display and hide additional content in a SEO "
315
  "friendly way. Wrap any content&mdash;including other shortcodes&mdash;into a "
320
  "suchmaschinenfreundlich! Verpacke jedmöglichen Inhalt sowie andere "
321
  "Shortcodes in ein tolles jQuery Element."
322
 
323
+ #: collapse-o-matic.php:563
324
  msgid ""
325
  "%sDetailed documentation%s, complete with working demonstrations of all "
326
  "shortcode attributes, is available for your instructional enjoyment."
328
  "Zum besseren Verständnis sind %sDetailed documentation%s verfügbar mit "
329
  "Demonstration aller Shortcodes und Attributen."
330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  msgid "http://plugins.twinpictures.de/plugins/collapse-o-matic/"
332
  msgstr "http://plugins.twinpictures.de/plugins/collapse-o-matic/"
333
 
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: twinpictures, baden03
4
  Donate link: http://plugins.twinpictures.de/plugins/collapse-o-matic/
5
  Tags: collapse, expand, collapsible, expandable, expandable content, collapsable content, shortcode, hidden, hide, display, accordion, accordion, jQuery, javascript, roll-your-own, twinpictures, read me, read more, more, plugin oven
6
  Requires at least: 3.5
7
- Tested up to: 4.0
8
- Stable tag: 1.6.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -50,6 +50,11 @@ No. Not even close.
50
 
51
  == Changelog ==
52
 
 
 
 
 
 
53
  = 1.6.2 =
54
  * added colomat-swap class to the swaptitle element
55
  * added optional cid default to the shortcode
@@ -258,6 +263,11 @@ Fixed auto-expand of urls with id-anchors
258
 
259
  == Upgrade Notice ==
260
 
 
 
 
 
 
261
  = 1.6.2 =
262
  * added colomat-swap class to the swaptitle element
263
  * added optional cid default to the shortcode
4
  Donate link: http://plugins.twinpictures.de/plugins/collapse-o-matic/
5
  Tags: collapse, expand, collapsible, expandable, expandable content, collapsable content, shortcode, hidden, hide, display, accordion, accordion, jQuery, javascript, roll-your-own, twinpictures, read me, read more, more, plugin oven
6
  Requires at least: 3.5
7
+ Tested up to: 4.1
8
+ Stable tag: 1.6.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
50
 
51
  == Changelog ==
52
 
53
+ = 1.6.3 =
54
+ * added shortcode and html support for the title, swaptitle, startwrap, enwrap and excerpt attributes using placeholders
55
+ * added wpex_clean_shortcodes filter to strip unwanted p and br tags from the shortcode
56
+ * added the ability to set trigclass, targtag and targclass attribute values in the plugin options page
57
+
58
  = 1.6.2 =
59
  * added colomat-swap class to the swaptitle element
60
  * added optional cid default to the shortcode
263
 
264
  == Upgrade Notice ==
265
 
266
+ = 1.6.3 =
267
+ * added shortcode support for the excerpt attribute
268
+ * added wpex_clean_shortcodes filter to strip unwanted p and br tags from the shortcode
269
+ * added the ability to set trigclass, targtag and targclass attribute values in the plugin options page
270
+
271
  = 1.6.2 =
272
  * added colomat-swap class to the swaptitle element
273
  * added optional cid default to the shortcode