Column Shortcodes - Version 0.6.3

Version Description

  • updated languages
Download this release

Release Info

Developer tschutter
Plugin Icon 128x128 Column Shortcodes
Version 0.6.3
Comparing to
See all releases

Code changes from version 0.6.1 to 0.6.3

column-shortcodes.php CHANGED
@@ -2,11 +2,11 @@
2
 
3
  /*
4
  Plugin Name: Column Shortcodes
5
- Version: 0.6.1
6
  Description: Adds shortcodes to easily create columns in your posts or pages
7
  Author: Codepress
8
- Author URI: http://www.codepress.nl
9
- Plugin URI: http://www.codepress.nl/plugins/
10
  Text Domain: column-shortcodes
11
  Domain Path: /languages
12
  License: GPLv2
@@ -27,7 +27,7 @@ along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
- define( 'CPSH_VERSION', '0.6' );
31
  define( 'CPSH_URL', plugins_url( '', __FILE__ ) );
32
  define( 'CPSH_TEXTDOMAIN', 'column-shortcodes' );
33
 
@@ -41,12 +41,20 @@ define( 'CPSH_TEXTDOMAIN', 'column-shortcodes' );
41
  */
42
  class Codepress_Column_Shortcodes {
43
 
 
 
 
 
 
 
 
44
  /**
45
  * Constructor
46
  *
47
  * @since 0.1
48
  */
49
  function __construct() {
 
50
  add_action( 'wp_loaded', array( $this, 'init') );
51
  }
52
 
@@ -56,7 +64,8 @@ class Codepress_Column_Shortcodes {
56
  * @since 0.1
57
  */
58
  public function init() {
59
- $this->add_shortcodes();
 
60
 
61
  add_action( 'admin_init', array( $this, 'add_editor_buttons' ) );
62
  add_action( 'admin_footer', array( $this, 'popup' ) );
@@ -70,6 +79,8 @@ class Codepress_Column_Shortcodes {
70
 
71
  // translations
72
  load_plugin_textdomain( CPSH_TEXTDOMAIN, false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
 
 
73
  }
74
 
75
  /**
@@ -113,7 +124,6 @@ class Codepress_Column_Shortcodes {
113
  } else {
114
  wp_enqueue_style( 'cpsh-shortcodes-rtl', CPSH_URL.'/assets/css/shortcodes-rtl.css', array(), CPSH_VERSION, 'all' );
115
  }
116
-
117
  }
118
 
119
  /**
@@ -173,12 +183,19 @@ class Codepress_Column_Shortcodes {
173
  $content = '<div style="' . esc_attr( $padding ) . '">' . $content . '</div>';
174
  }
175
 
 
176
  $pos = strpos( $name, '_last' );
177
 
178
  if ( false !== $pos ) {
179
  $name = str_replace( '_last', ' last_column', $name );
180
  }
181
 
 
 
 
 
 
 
182
  $output = "<div{$id} class='{$name}{$class}'>{$content}</div>";
183
 
184
  if ( false !== $pos ) {
@@ -313,6 +330,8 @@ class Codepress_Column_Shortcodes {
313
  </div><!--cpsh-generator-header-->
314
 
315
  </div><!--cpsh-generator-shell-->
 
 
316
  </div>
317
  </div>
318
 
@@ -351,7 +370,7 @@ class Codepress_Column_Shortcodes {
351
  foreach ( $column_shortcodes as $short => $options ) {
352
 
353
  // add prefix
354
- $shortcode = trim( apply_filters( 'cpsh_prefix', '' ) ) . $short;
355
 
356
  $shortcodes[] = array(
357
  'name' => $shortcode,
@@ -425,8 +444,7 @@ class Codepress_Column_Shortcodes {
425
  * @param bool $br_tag Filter br-tags
426
  * @return string Shortcode
427
  */
428
- function content_helper( $content, $paragraph_tag = false, $br_tag = false )
429
- {
430
  $content = preg_replace( '#^<\/p>|^<br \/>|<p>$#', '', $content );
431
 
432
  if ( $br_tag ) {
2
 
3
  /*
4
  Plugin Name: Column Shortcodes
5
+ Version: 0.6.3
6
  Description: Adds shortcodes to easily create columns in your posts or pages
7
  Author: Codepress
8
+ Author URI: http://www.codepresshq.com/
9
+ Plugin URI: http://www.codepresshq.com/wordpress-plugins/shortcode-columns/
10
  Text Domain: column-shortcodes
11
  Domain Path: /languages
12
  License: GPLv2
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
+ define( 'CPSH_VERSION', '0.6.3' );
31
  define( 'CPSH_URL', plugins_url( '', __FILE__ ) );
32
  define( 'CPSH_TEXTDOMAIN', 'column-shortcodes' );
33
 
41
  */
42
  class Codepress_Column_Shortcodes {
43
 
44
+ /**
45
+ * Prefix
46
+ *
47
+ * @since 0.6.3
48
+ */
49
+ private $prefix;
50
+
51
  /**
52
  * Constructor
53
  *
54
  * @since 0.1
55
  */
56
  function __construct() {
57
+
58
  add_action( 'wp_loaded', array( $this, 'init') );
59
  }
60
 
64
  * @since 0.1
65
  */
66
  public function init() {
67
+
68
+ $this->prefix = trim( apply_filters( 'cpsh_prefix', '' ) );
69
 
70
  add_action( 'admin_init', array( $this, 'add_editor_buttons' ) );
71
  add_action( 'admin_footer', array( $this, 'popup' ) );
79
 
80
  // translations
81
  load_plugin_textdomain( CPSH_TEXTDOMAIN, false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
82
+
83
+ $this->add_shortcodes();
84
  }
85
 
86
  /**
124
  } else {
125
  wp_enqueue_style( 'cpsh-shortcodes-rtl', CPSH_URL.'/assets/css/shortcodes-rtl.css', array(), CPSH_VERSION, 'all' );
126
  }
 
127
  }
128
 
129
  /**
183
  $content = '<div style="' . esc_attr( $padding ) . '">' . $content . '</div>';
184
  }
185
 
186
+ // last class
187
  $pos = strpos( $name, '_last' );
188
 
189
  if ( false !== $pos ) {
190
  $name = str_replace( '_last', ' last_column', $name );
191
  }
192
 
193
+ // remove prefix from classname
194
+ // @todo: prefix css instead of removing the prefix from class attr
195
+ if ( $this->prefix ) {
196
+ $name = str_replace( $this->prefix, '', $name );
197
+ }
198
+
199
  $output = "<div{$id} class='{$name}{$class}'>{$content}</div>";
200
 
201
  if ( false !== $pos ) {
330
  </div><!--cpsh-generator-header-->
331
 
332
  </div><!--cpsh-generator-shell-->
333
+
334
+ <p class='description'>This is a <a href="http://www.codepresshq.com">Codepress</a> plugin.</p>
335
  </div>
336
  </div>
337
 
370
  foreach ( $column_shortcodes as $short => $options ) {
371
 
372
  // add prefix
373
+ $shortcode = $this->prefix . $short;
374
 
375
  $shortcodes[] = array(
376
  'name' => $shortcode,
444
  * @param bool $br_tag Filter br-tags
445
  * @return string Shortcode
446
  */
447
+ function content_helper( $content, $paragraph_tag = false, $br_tag = false ) {
 
448
  $content = preg_replace( '#^<\/p>|^<br \/>|<p>$#', '', $content );
449
 
450
  if ( $br_tag ) {
languages/column-shortcodes-cs_CZ.mo ADDED
Binary file
languages/column-shortcodes-cs_CZ.po ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Column Shortcodes\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
+ "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
11
+ "column-shortcodes/language/cs_CZ/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: cs_CZ\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+
24
+ #: ../column-shortcodes.php:246
25
+ msgid "Select shortcode"
26
+ msgstr "Vyberte značku šířky sloupce"
27
+
28
+ #: ../column-shortcodes.php:282
29
+ msgid "Column shortcodes"
30
+ msgstr "Značka šířky sloupce"
31
+
32
+ #: ../column-shortcodes.php:289
33
+ msgid "Column padding ( optional )"
34
+ msgstr "Odsazení sloupce ( volitelné )"
35
+
36
+ #: ../column-shortcodes.php:291
37
+ msgid ""
38
+ "Use the input fields below to customize the padding of your column shortcode."
39
+ msgstr "Použijte vstupní pole níže pro úpravu odsazení sloupců."
40
+
41
+ #: ../column-shortcodes.php:292
42
+ msgid "Enter padding first, then select your column shortcode."
43
+ msgstr "Nejdříve zadejte odsazení sloupce, poté vyberte značku šířky sloupce."
44
+
45
+ #: ../column-shortcodes.php:307
46
+ msgid "reset"
47
+ msgstr "vymazat"
48
+
49
+ #: ../column-shortcodes.php:335
50
+ msgid "full width"
51
+ msgstr "celá šířka"
52
+
53
+ #: ../column-shortcodes.php:336
54
+ msgid "one half"
55
+ msgstr "jedna polovina"
56
+
57
+ #: ../column-shortcodes.php:337
58
+ msgid "one third"
59
+ msgstr "jedna třetina"
60
+
61
+ #: ../column-shortcodes.php:338
62
+ msgid "one fourth"
63
+ msgstr "jedna čtvrtina"
64
+
65
+ #: ../column-shortcodes.php:339
66
+ msgid "two third"
67
+ msgstr "dvě třetiny"
68
+
69
+ #: ../column-shortcodes.php:340
70
+ msgid "three fourth"
71
+ msgstr "tři čtvrtiny"
72
+
73
+ #: ../column-shortcodes.php:341
74
+ msgid "one fifth"
75
+ msgstr "jedna pětina"
76
+
77
+ #: ../column-shortcodes.php:342
78
+ msgid "two fifth"
79
+ msgstr "dvě pětiny"
80
+
81
+ #: ../column-shortcodes.php:343
82
+ msgid "three fifth"
83
+ msgstr "tři pětiny"
84
+
85
+ #: ../column-shortcodes.php:344
86
+ msgid "four fifth"
87
+ msgstr "čtyři pětiny"
88
+
89
+ #: ../column-shortcodes.php:345
90
+ msgid "one sixth"
91
+ msgstr "jedna šestina"
92
+
93
+ #: ../column-shortcodes.php:373
94
+ msgid "last"
95
+ msgstr "poslední"
languages/column-shortcodes-da_DK.mo ADDED
Binary file
languages/{column-shortcodes_dk_DA.po → column-shortcodes-da_DK.po} RENAMED
@@ -1,18 +1,24 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:35+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
 
 
13
  "X-Poedit-Basepath: .\n"
 
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
@@ -24,67 +30,69 @@ msgstr "Vælg shortcode"
24
  msgid "Column shortcodes"
25
  msgstr "Kolonne shortcodes"
26
 
27
- #: ../column-shortcodes.php:287
28
  msgid "Column padding ( optional )"
29
- msgstr ""
30
 
31
- #: ../column-shortcodes.php:289
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
 
 
35
 
36
- #: ../column-shortcodes.php:290
37
  msgid "Enter padding first, then select your column shortcode."
38
- msgstr ""
39
 
40
- #: ../column-shortcodes.php:303
41
  msgid "reset"
42
- msgstr ""
43
 
44
- #: ../column-shortcodes.php:329
45
  msgid "full width"
46
- msgstr ""
47
 
48
- #: ../column-shortcodes.php:330
49
  msgid "one half"
50
  msgstr "en halv"
51
 
52
- #: ../column-shortcodes.php:331
53
  msgid "one third"
54
  msgstr "en tredjedel"
55
 
56
- #: ../column-shortcodes.php:332
57
  msgid "one fourth"
58
  msgstr "en fjerdedel"
59
 
60
- #: ../column-shortcodes.php:333
61
  msgid "two third"
62
  msgstr "to tredjedele"
63
 
64
- #: ../column-shortcodes.php:334
65
  msgid "three fourth"
66
  msgstr "tre fjerdedele"
67
 
68
- #: ../column-shortcodes.php:335
69
  msgid "one fifth"
70
  msgstr "en femtedel"
71
 
72
- #: ../column-shortcodes.php:336
73
  msgid "two fifth"
74
  msgstr "to femtedele"
75
 
76
- #: ../column-shortcodes.php:337
77
  msgid "three fifth"
78
  msgstr "tre femtedele"
79
 
80
- #: ../column-shortcodes.php:338
81
  msgid "four fifth"
82
  msgstr "fire femtedele"
83
 
84
- #: ../column-shortcodes.php:339
85
  msgid "one sixth"
86
  msgstr "en sjetedel"
87
 
88
- #: ../column-shortcodes.php:364
89
  msgid "last"
90
  msgstr "sidst"
1
+ #
2
+ # Translators:
3
+ # iosoftgame <support@iosoftgame.com>, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Column Shortcodes\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/column-"
12
+ "shortcodes/language/da_DK/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: da_DK\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
30
  msgid "Column shortcodes"
31
  msgstr "Kolonne shortcodes"
32
 
33
+ #: ../column-shortcodes.php:289
34
  msgid "Column padding ( optional )"
35
+ msgstr "Kolonne mellemrum ( valgfri )"
36
 
37
+ #: ../column-shortcodes.php:291
38
  msgid ""
39
  "Use the input fields below to customize the padding of your column shortcode."
40
  msgstr ""
41
+ "Brug inputfelterne nedenunder til at tilpasse mellemrummet for din kolonne "
42
+ "shortcode."
43
 
44
+ #: ../column-shortcodes.php:292
45
  msgid "Enter padding first, then select your column shortcode."
46
+ msgstr "Indtast mellemrum først, og derefter vælg din kolonne shortcode."
47
 
48
+ #: ../column-shortcodes.php:307
49
  msgid "reset"
50
+ msgstr "nulstil"
51
 
52
+ #: ../column-shortcodes.php:335
53
  msgid "full width"
54
+ msgstr "fuld bredde"
55
 
56
+ #: ../column-shortcodes.php:336
57
  msgid "one half"
58
  msgstr "en halv"
59
 
60
+ #: ../column-shortcodes.php:337
61
  msgid "one third"
62
  msgstr "en tredjedel"
63
 
64
+ #: ../column-shortcodes.php:338
65
  msgid "one fourth"
66
  msgstr "en fjerdedel"
67
 
68
+ #: ../column-shortcodes.php:339
69
  msgid "two third"
70
  msgstr "to tredjedele"
71
 
72
+ #: ../column-shortcodes.php:340
73
  msgid "three fourth"
74
  msgstr "tre fjerdedele"
75
 
76
+ #: ../column-shortcodes.php:341
77
  msgid "one fifth"
78
  msgstr "en femtedel"
79
 
80
+ #: ../column-shortcodes.php:342
81
  msgid "two fifth"
82
  msgstr "to femtedele"
83
 
84
+ #: ../column-shortcodes.php:343
85
  msgid "three fifth"
86
  msgstr "tre femtedele"
87
 
88
+ #: ../column-shortcodes.php:344
89
  msgid "four fifth"
90
  msgstr "fire femtedele"
91
 
92
+ #: ../column-shortcodes.php:345
93
  msgid "one sixth"
94
  msgstr "en sjetedel"
95
 
96
+ #: ../column-shortcodes.php:373
97
  msgid "last"
98
  msgstr "sidst"
languages/column-shortcodes-es_ES.mo CHANGED
Binary file
languages/column-shortcodes-es_ES.po CHANGED
@@ -1,18 +1,23 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:35+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
 
 
13
  "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
@@ -24,67 +29,67 @@ msgstr "Seleccione códigos abreviados"
24
  msgid "Column shortcodes"
25
  msgstr "Códigos disponibles"
26
 
27
- #: ../column-shortcodes.php:287
28
  msgid "Column padding ( optional )"
29
  msgstr ""
30
 
31
- #: ../column-shortcodes.php:289
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
35
 
36
- #: ../column-shortcodes.php:290
37
  msgid "Enter padding first, then select your column shortcode."
38
  msgstr ""
39
 
40
- #: ../column-shortcodes.php:303
41
  msgid "reset"
42
  msgstr ""
43
 
44
- #: ../column-shortcodes.php:329
45
  msgid "full width"
46
  msgstr ""
47
 
48
- #: ../column-shortcodes.php:330
49
  msgid "one half"
50
  msgstr "la mitad"
51
 
52
- #: ../column-shortcodes.php:331
53
  msgid "one third"
54
  msgstr "un tercio"
55
 
56
- #: ../column-shortcodes.php:332
57
  msgid "one fourth"
58
  msgstr "un cuarto"
59
 
60
- #: ../column-shortcodes.php:333
61
  msgid "two third"
62
  msgstr "dos tercios"
63
 
64
- #: ../column-shortcodes.php:334
65
  msgid "three fourth"
66
  msgstr "tres cuartos"
67
 
68
- #: ../column-shortcodes.php:335
69
  msgid "one fifth"
70
  msgstr "un quinto"
71
 
72
- #: ../column-shortcodes.php:336
73
  msgid "two fifth"
74
  msgstr "dos quintos"
75
 
76
- #: ../column-shortcodes.php:337
77
  msgid "three fifth"
78
  msgstr "tres quintos"
79
 
80
- #: ../column-shortcodes.php:338
81
  msgid "four fifth"
82
  msgstr "cuatro quintos"
83
 
84
- #: ../column-shortcodes.php:339
85
  msgid "one sixth"
86
  msgstr "un sexto"
87
 
88
- #: ../column-shortcodes.php:364
89
  msgid "last"
90
  msgstr "final"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Column Shortcodes\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/column-"
11
+ "shortcodes/language/es_ES/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_ES\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
29
  msgid "Column shortcodes"
30
  msgstr "Códigos disponibles"
31
 
32
+ #: ../column-shortcodes.php:289
33
  msgid "Column padding ( optional )"
34
  msgstr ""
35
 
36
+ #: ../column-shortcodes.php:291
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr ""
40
 
41
+ #: ../column-shortcodes.php:292
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr ""
44
 
45
+ #: ../column-shortcodes.php:307
46
  msgid "reset"
47
  msgstr ""
48
 
49
+ #: ../column-shortcodes.php:335
50
  msgid "full width"
51
  msgstr ""
52
 
53
+ #: ../column-shortcodes.php:336
54
  msgid "one half"
55
  msgstr "la mitad"
56
 
57
+ #: ../column-shortcodes.php:337
58
  msgid "one third"
59
  msgstr "un tercio"
60
 
61
+ #: ../column-shortcodes.php:338
62
  msgid "one fourth"
63
  msgstr "un cuarto"
64
 
65
+ #: ../column-shortcodes.php:339
66
  msgid "two third"
67
  msgstr "dos tercios"
68
 
69
+ #: ../column-shortcodes.php:340
70
  msgid "three fourth"
71
  msgstr "tres cuartos"
72
 
73
+ #: ../column-shortcodes.php:341
74
  msgid "one fifth"
75
  msgstr "un quinto"
76
 
77
+ #: ../column-shortcodes.php:342
78
  msgid "two fifth"
79
  msgstr "dos quintos"
80
 
81
+ #: ../column-shortcodes.php:343
82
  msgid "three fifth"
83
  msgstr "tres quintos"
84
 
85
+ #: ../column-shortcodes.php:344
86
  msgid "four fifth"
87
  msgstr "cuatro quintos"
88
 
89
+ #: ../column-shortcodes.php:345
90
  msgid "one sixth"
91
  msgstr "un sexto"
92
 
93
+ #: ../column-shortcodes.php:373
94
  msgid "last"
95
  msgstr "final"
languages/column-shortcodes-fr_FR.mo CHANGED
Binary file
languages/column-shortcodes-fr_FR.po CHANGED
@@ -1,18 +1,23 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:35+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
 
 
13
  "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
@@ -24,68 +29,67 @@ msgstr "Choisissez votre code abrégé"
24
  msgid "Column shortcodes"
25
  msgstr "Codes abrégés de colonnes"
26
 
27
- #: ../column-shortcodes.php:287
28
  msgid "Column padding ( optional )"
29
  msgstr ""
30
 
31
- #: ../column-shortcodes.php:289
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
35
 
36
- #: ../column-shortcodes.php:290
37
  msgid "Enter padding first, then select your column shortcode."
38
  msgstr ""
39
 
40
- #: ../column-shortcodes.php:303
41
  msgid "reset"
42
  msgstr ""
43
 
44
- #: ../column-shortcodes.php:329
45
  msgid "full width"
46
  msgstr ""
47
 
48
- #: ../column-shortcodes.php:330
49
  msgid "one half"
50
  msgstr "la moitié"
51
 
52
- #: ../column-shortcodes.php:331
53
  msgid "one third"
54
  msgstr "un tiers"
55
 
56
- #: ../column-shortcodes.php:332
57
  msgid "one fourth"
58
  msgstr "un quart"
59
 
60
- #: ../column-shortcodes.php:333
61
  msgid "two third"
62
  msgstr "deux tiers"
63
 
64
- #: ../column-shortcodes.php:334
65
  msgid "three fourth"
66
  msgstr "trois quarts"
67
 
68
- #: ../column-shortcodes.php:335
69
  msgid "one fifth"
70
  msgstr "un cinquième"
71
 
72
- #: ../column-shortcodes.php:336
73
  msgid "two fifth"
74
  msgstr "deux cinquièmes"
75
 
76
- #: ../column-shortcodes.php:337
77
  msgid "three fifth"
78
  msgstr "trois cinquièmes"
79
 
80
- #: ../column-shortcodes.php:338
81
- #, fuzzy
82
  msgid "four fifth"
83
- msgstr "un cinquième"
84
 
85
- #: ../column-shortcodes.php:339
86
  msgid "one sixth"
87
  msgstr "un sixième"
88
 
89
- #: ../column-shortcodes.php:364
90
  msgid "last"
91
  msgstr "final"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Column Shortcodes\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/column-"
11
+ "shortcodes/language/fr_FR/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: fr_FR\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
29
  msgid "Column shortcodes"
30
  msgstr "Codes abrégés de colonnes"
31
 
32
+ #: ../column-shortcodes.php:289
33
  msgid "Column padding ( optional )"
34
  msgstr ""
35
 
36
+ #: ../column-shortcodes.php:291
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr ""
40
 
41
+ #: ../column-shortcodes.php:292
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr ""
44
 
45
+ #: ../column-shortcodes.php:307
46
  msgid "reset"
47
  msgstr ""
48
 
49
+ #: ../column-shortcodes.php:335
50
  msgid "full width"
51
  msgstr ""
52
 
53
+ #: ../column-shortcodes.php:336
54
  msgid "one half"
55
  msgstr "la moitié"
56
 
57
+ #: ../column-shortcodes.php:337
58
  msgid "one third"
59
  msgstr "un tiers"
60
 
61
+ #: ../column-shortcodes.php:338
62
  msgid "one fourth"
63
  msgstr "un quart"
64
 
65
+ #: ../column-shortcodes.php:339
66
  msgid "two third"
67
  msgstr "deux tiers"
68
 
69
+ #: ../column-shortcodes.php:340
70
  msgid "three fourth"
71
  msgstr "trois quarts"
72
 
73
+ #: ../column-shortcodes.php:341
74
  msgid "one fifth"
75
  msgstr "un cinquième"
76
 
77
+ #: ../column-shortcodes.php:342
78
  msgid "two fifth"
79
  msgstr "deux cinquièmes"
80
 
81
+ #: ../column-shortcodes.php:343
82
  msgid "three fifth"
83
  msgstr "trois cinquièmes"
84
 
85
+ #: ../column-shortcodes.php:344
 
86
  msgid "four fifth"
87
+ msgstr ""
88
 
89
+ #: ../column-shortcodes.php:345
90
  msgid "one sixth"
91
  msgstr "un sixième"
92
 
93
+ #: ../column-shortcodes.php:373
94
  msgid "last"
95
  msgstr "final"
languages/column-shortcodes-he_IL.mo CHANGED
Binary file
languages/column-shortcodes-he_IL.po CHANGED
@@ -1,19 +1,23 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:35+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Rami Y (wp-tricks.co.il) <r_a_m_i@hotmail.com>\n"
9
- "Language: Hebrew\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
 
 
14
  "X-Poedit-Basepath: .\n"
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
@@ -25,67 +29,67 @@ msgstr "בחר פקודת מקרו"
25
  msgid "Column shortcodes"
26
  msgstr "טור פקודות מקרו"
27
 
28
- #: ../column-shortcodes.php:287
29
  msgid "Column padding ( optional )"
30
  msgstr ""
31
 
32
- #: ../column-shortcodes.php:289
33
  msgid ""
34
  "Use the input fields below to customize the padding of your column shortcode."
35
  msgstr ""
36
 
37
- #: ../column-shortcodes.php:290
38
  msgid "Enter padding first, then select your column shortcode."
39
  msgstr ""
40
 
41
- #: ../column-shortcodes.php:303
42
  msgid "reset"
43
  msgstr ""
44
 
45
- #: ../column-shortcodes.php:329
46
  msgid "full width"
47
  msgstr ""
48
 
49
- #: ../column-shortcodes.php:330
50
  msgid "one half"
51
  msgstr "חצי"
52
 
53
- #: ../column-shortcodes.php:331
54
  msgid "one third"
55
  msgstr "שליש"
56
 
57
- #: ../column-shortcodes.php:332
58
  msgid "one fourth"
59
  msgstr "רבע"
60
 
61
- #: ../column-shortcodes.php:333
62
  msgid "two third"
63
  msgstr "שני שליש"
64
 
65
- #: ../column-shortcodes.php:334
66
  msgid "three fourth"
67
  msgstr "שלוש רבעים"
68
 
69
- #: ../column-shortcodes.php:335
70
  msgid "one fifth"
71
  msgstr "חמישית"
72
 
73
- #: ../column-shortcodes.php:336
74
  msgid "two fifth"
75
  msgstr "שתי חמישיות"
76
 
77
- #: ../column-shortcodes.php:337
78
  msgid "three fifth"
79
  msgstr "שלוש חמישיות"
80
 
81
- #: ../column-shortcodes.php:338
82
  msgid "four fifth"
83
  msgstr "חמישיות"
84
 
85
- #: ../column-shortcodes.php:339
86
  msgid "one sixth"
87
  msgstr "שישית"
88
 
89
- #: ../column-shortcodes.php:364
90
  msgid "last"
91
  msgstr "אחרון"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Column Shortcodes\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/column-"
11
+ "shortcodes/language/he_IL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: he_IL\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
 
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
29
  msgid "Column shortcodes"
30
  msgstr "טור פקודות מקרו"
31
 
32
+ #: ../column-shortcodes.php:289
33
  msgid "Column padding ( optional )"
34
  msgstr ""
35
 
36
+ #: ../column-shortcodes.php:291
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr ""
40
 
41
+ #: ../column-shortcodes.php:292
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr ""
44
 
45
+ #: ../column-shortcodes.php:307
46
  msgid "reset"
47
  msgstr ""
48
 
49
+ #: ../column-shortcodes.php:335
50
  msgid "full width"
51
  msgstr ""
52
 
53
+ #: ../column-shortcodes.php:336
54
  msgid "one half"
55
  msgstr "חצי"
56
 
57
+ #: ../column-shortcodes.php:337
58
  msgid "one third"
59
  msgstr "שליש"
60
 
61
+ #: ../column-shortcodes.php:338
62
  msgid "one fourth"
63
  msgstr "רבע"
64
 
65
+ #: ../column-shortcodes.php:339
66
  msgid "two third"
67
  msgstr "שני שליש"
68
 
69
+ #: ../column-shortcodes.php:340
70
  msgid "three fourth"
71
  msgstr "שלוש רבעים"
72
 
73
+ #: ../column-shortcodes.php:341
74
  msgid "one fifth"
75
  msgstr "חמישית"
76
 
77
+ #: ../column-shortcodes.php:342
78
  msgid "two fifth"
79
  msgstr "שתי חמישיות"
80
 
81
+ #: ../column-shortcodes.php:343
82
  msgid "three fifth"
83
  msgstr "שלוש חמישיות"
84
 
85
+ #: ../column-shortcodes.php:344
86
  msgid "four fifth"
87
  msgstr "חמישיות"
88
 
89
+ #: ../column-shortcodes.php:345
90
  msgid "one sixth"
91
  msgstr "שישית"
92
 
93
+ #: ../column-shortcodes.php:373
94
  msgid "last"
95
  msgstr "אחרון"
languages/column-shortcodes-it_IT.mo ADDED
Binary file
languages/column-shortcodes-it_IT.po ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Column Shortcodes\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
+ "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/column-"
11
+ "shortcodes/language/it_IT/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: it_IT\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+
24
+ #: ../column-shortcodes.php:246
25
+ msgid "Select shortcode"
26
+ msgstr "Scegli shortcode"
27
+
28
+ #: ../column-shortcodes.php:282
29
+ msgid "Column shortcodes"
30
+ msgstr "Shortcode Colonne"
31
+
32
+ #: ../column-shortcodes.php:289
33
+ msgid "Column padding ( optional )"
34
+ msgstr "padding delle colonne (opzionale)"
35
+
36
+ #: ../column-shortcodes.php:291
37
+ msgid ""
38
+ "Use the input fields below to customize the padding of your column shortcode."
39
+ msgstr ""
40
+ "Usa i campi di testo sottostanti per personalizzare il padding della tua "
41
+ "colonna."
42
+
43
+ #: ../column-shortcodes.php:292
44
+ msgid "Enter padding first, then select your column shortcode."
45
+ msgstr "metti prima il padding, e quindi scegli il tuo shortcode di colonna."
46
+
47
+ #: ../column-shortcodes.php:307
48
+ msgid "reset"
49
+ msgstr "reimposta"
50
+
51
+ #: ../column-shortcodes.php:335
52
+ msgid "full width"
53
+ msgstr "tutta larghezza"
54
+
55
+ #: ../column-shortcodes.php:336
56
+ msgid "one half"
57
+ msgstr "metà"
58
+
59
+ #: ../column-shortcodes.php:337
60
+ msgid "one third"
61
+ msgstr "un terzo"
62
+
63
+ #: ../column-shortcodes.php:338
64
+ msgid "one fourth"
65
+ msgstr "un quarto"
66
+
67
+ #: ../column-shortcodes.php:339
68
+ msgid "two third"
69
+ msgstr "due terzi"
70
+
71
+ #: ../column-shortcodes.php:340
72
+ msgid "three fourth"
73
+ msgstr "tre quarti"
74
+
75
+ #: ../column-shortcodes.php:341
76
+ msgid "one fifth"
77
+ msgstr "un quinto"
78
+
79
+ #: ../column-shortcodes.php:342
80
+ msgid "two fifth"
81
+ msgstr "due quinti"
82
+
83
+ #: ../column-shortcodes.php:343
84
+ msgid "three fifth"
85
+ msgstr "tre quinti"
86
+
87
+ #: ../column-shortcodes.php:344
88
+ msgid "four fifth"
89
+ msgstr "quattro quinti"
90
+
91
+ #: ../column-shortcodes.php:345
92
+ msgid "one sixth"
93
+ msgstr "un sesto"
94
+
95
+ #: ../column-shortcodes.php:373
96
+ msgid "last"
97
+ msgstr "ultimo"
languages/column-shortcodes-nl_NL.mo CHANGED
Binary file
languages/column-shortcodes-nl_NL.po CHANGED
@@ -1,106 +1,95 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:36+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPath-1: ..\n"
21
 
22
- # @ column-shortcodes
23
  #: ../column-shortcodes.php:246
24
  msgid "Select shortcode"
25
  msgstr "Selecteer shortcode "
26
 
27
- # @ column-shortcodes
28
  #: ../column-shortcodes.php:282
29
  msgid "Column shortcodes"
30
  msgstr "Kolom shortcodes"
31
 
32
- #: ../column-shortcodes.php:287
33
  msgid "Column padding ( optional )"
34
  msgstr "Kolom padding ( optioneel )"
35
 
36
- #: ../column-shortcodes.php:289
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr "Vul onderstaande velden in om de padding van de columns aan te passen."
40
 
41
- #: ../column-shortcodes.php:290
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr "Vul eerste de padding in, selecteer daarna je kolom shortcode."
44
 
45
- #: ../column-shortcodes.php:303
46
  msgid "reset"
47
  msgstr "herstel"
48
 
49
- #: ../column-shortcodes.php:329
50
  msgid "full width"
51
  msgstr "volledige breedte"
52
 
53
- # @ column-shortcodes
54
- #: ../column-shortcodes.php:330
55
  msgid "one half"
56
  msgstr "half"
57
 
58
- # @ column-shortcodes
59
- #: ../column-shortcodes.php:331
60
  msgid "one third"
61
  msgstr "een derde"
62
 
63
- # @ column-shortcodes
64
- #: ../column-shortcodes.php:332
65
  msgid "one fourth"
66
  msgstr "een vierde"
67
 
68
- # @ column-shortcodes
69
- #: ../column-shortcodes.php:333
70
  msgid "two third"
71
  msgstr "tweederde"
72
 
73
- # @ column-shortcodes
74
- #: ../column-shortcodes.php:334
75
  msgid "three fourth"
76
  msgstr "drie vierde"
77
 
78
- # @ column-shortcodes
79
- #: ../column-shortcodes.php:335
80
  msgid "one fifth"
81
  msgstr "een vijfde"
82
 
83
- # @ column-shortcodes
84
- #: ../column-shortcodes.php:336
85
  msgid "two fifth"
86
  msgstr "twee vijfde"
87
 
88
- # @ column-shortcodes
89
- #: ../column-shortcodes.php:337
90
  msgid "three fifth"
91
  msgstr "drie vijfde"
92
 
93
- # @ column-shortcodes
94
- #: ../column-shortcodes.php:338
95
  msgid "four fifth"
96
  msgstr "vier vijfde"
97
 
98
- # @ column-shortcodes
99
- #: ../column-shortcodes.php:339
100
  msgid "one sixth"
101
  msgstr "een zesde"
102
 
103
- # @ column-shortcodes
104
- #: ../column-shortcodes.php:364
105
  msgid "last"
106
  msgstr "laatste"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Column Shortcodes\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
11
+ "column-shortcodes/language/nl_NL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: nl_NL\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
 
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
 
24
  #: ../column-shortcodes.php:246
25
  msgid "Select shortcode"
26
  msgstr "Selecteer shortcode "
27
 
 
28
  #: ../column-shortcodes.php:282
29
  msgid "Column shortcodes"
30
  msgstr "Kolom shortcodes"
31
 
32
+ #: ../column-shortcodes.php:289
33
  msgid "Column padding ( optional )"
34
  msgstr "Kolom padding ( optioneel )"
35
 
36
+ #: ../column-shortcodes.php:291
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr "Vul onderstaande velden in om de padding van de columns aan te passen."
40
 
41
+ #: ../column-shortcodes.php:292
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr "Vul eerste de padding in, selecteer daarna je kolom shortcode."
44
 
45
+ #: ../column-shortcodes.php:307
46
  msgid "reset"
47
  msgstr "herstel"
48
 
49
+ #: ../column-shortcodes.php:335
50
  msgid "full width"
51
  msgstr "volledige breedte"
52
 
53
+ #: ../column-shortcodes.php:336
 
54
  msgid "one half"
55
  msgstr "half"
56
 
57
+ #: ../column-shortcodes.php:337
 
58
  msgid "one third"
59
  msgstr "een derde"
60
 
61
+ #: ../column-shortcodes.php:338
 
62
  msgid "one fourth"
63
  msgstr "een vierde"
64
 
65
+ #: ../column-shortcodes.php:339
 
66
  msgid "two third"
67
  msgstr "tweederde"
68
 
69
+ #: ../column-shortcodes.php:340
 
70
  msgid "three fourth"
71
  msgstr "drie vierde"
72
 
73
+ #: ../column-shortcodes.php:341
 
74
  msgid "one fifth"
75
  msgstr "een vijfde"
76
 
77
+ #: ../column-shortcodes.php:342
 
78
  msgid "two fifth"
79
  msgstr "twee vijfde"
80
 
81
+ #: ../column-shortcodes.php:343
 
82
  msgid "three fifth"
83
  msgstr "drie vijfde"
84
 
85
+ #: ../column-shortcodes.php:344
 
86
  msgid "four fifth"
87
  msgstr "vier vijfde"
88
 
89
+ #: ../column-shortcodes.php:345
 
90
  msgid "one sixth"
91
  msgstr "een zesde"
92
 
93
+ #: ../column-shortcodes.php:373
 
94
  msgid "last"
95
  msgstr "laatste"
languages/{column-shortcodes_sk_SK.mo → column-shortcodes-sk_SK.mo} RENAMED
Binary file
languages/{column-shortcodes_sk_SK.po → column-shortcodes-sk_SK.po} RENAMED
@@ -1,18 +1,23 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:35+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:35+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
 
 
13
  "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
@@ -24,68 +29,67 @@ msgstr "Zvoľte krátky"
24
  msgid "Column shortcodes"
25
  msgstr "Stĺpec shortcodes"
26
 
27
- #: ../column-shortcodes.php:287
28
  msgid "Column padding ( optional )"
29
  msgstr ""
30
 
31
- #: ../column-shortcodes.php:289
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
35
 
36
- #: ../column-shortcodes.php:290
37
  msgid "Enter padding first, then select your column shortcode."
38
  msgstr ""
39
 
40
- #: ../column-shortcodes.php:303
41
  msgid "reset"
42
  msgstr ""
43
 
44
- #: ../column-shortcodes.php:329
45
  msgid "full width"
46
  msgstr ""
47
 
48
- #: ../column-shortcodes.php:330
49
  msgid "one half"
50
  msgstr "jedna polovica"
51
 
52
- #: ../column-shortcodes.php:331
53
  msgid "one third"
54
  msgstr "jedna tretina"
55
 
56
- #: ../column-shortcodes.php:332
57
  msgid "one fourth"
58
  msgstr "štvrtina"
59
 
60
- #: ../column-shortcodes.php:333
61
  msgid "two third"
62
  msgstr "dve tretiny"
63
 
64
- #: ../column-shortcodes.php:334
65
  msgid "three fourth"
66
  msgstr "tri štvrtý"
67
 
68
- #: ../column-shortcodes.php:335
69
  msgid "one fifth"
70
  msgstr "jedna pätina"
71
 
72
- #: ../column-shortcodes.php:336
73
  msgid "two fifth"
74
  msgstr "dve piaty"
75
 
76
- #: ../column-shortcodes.php:337
77
  msgid "three fifth"
78
  msgstr "tromi pätina"
79
 
80
- #: ../column-shortcodes.php:338
81
- #, fuzzy
82
  msgid "four fifth"
83
- msgstr "jedna pätina"
84
 
85
- #: ../column-shortcodes.php:339
86
  msgid "one sixth"
87
  msgstr "jedna šestina"
88
 
89
- #: ../column-shortcodes.php:364
90
  msgid "last"
91
  msgstr "posledný"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Column Shortcodes\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/column-"
11
+ "shortcodes/language/sk_SK/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: sk_SK\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
29
  msgid "Column shortcodes"
30
  msgstr "Stĺpec shortcodes"
31
 
32
+ #: ../column-shortcodes.php:289
33
  msgid "Column padding ( optional )"
34
  msgstr ""
35
 
36
+ #: ../column-shortcodes.php:291
37
  msgid ""
38
  "Use the input fields below to customize the padding of your column shortcode."
39
  msgstr ""
40
 
41
+ #: ../column-shortcodes.php:292
42
  msgid "Enter padding first, then select your column shortcode."
43
  msgstr ""
44
 
45
+ #: ../column-shortcodes.php:307
46
  msgid "reset"
47
  msgstr ""
48
 
49
+ #: ../column-shortcodes.php:335
50
  msgid "full width"
51
  msgstr ""
52
 
53
+ #: ../column-shortcodes.php:336
54
  msgid "one half"
55
  msgstr "jedna polovica"
56
 
57
+ #: ../column-shortcodes.php:337
58
  msgid "one third"
59
  msgstr "jedna tretina"
60
 
61
+ #: ../column-shortcodes.php:338
62
  msgid "one fourth"
63
  msgstr "štvrtina"
64
 
65
+ #: ../column-shortcodes.php:339
66
  msgid "two third"
67
  msgstr "dve tretiny"
68
 
69
+ #: ../column-shortcodes.php:340
70
  msgid "three fourth"
71
  msgstr "tri štvrtý"
72
 
73
+ #: ../column-shortcodes.php:341
74
  msgid "one fifth"
75
  msgstr "jedna pätina"
76
 
77
+ #: ../column-shortcodes.php:342
78
  msgid "two fifth"
79
  msgstr "dve piaty"
80
 
81
+ #: ../column-shortcodes.php:343
82
  msgid "three fifth"
83
  msgstr "tromi pätina"
84
 
85
+ #: ../column-shortcodes.php:344
 
86
  msgid "four fifth"
87
+ msgstr ""
88
 
89
+ #: ../column-shortcodes.php:345
90
  msgid "one sixth"
91
  msgstr "jedna šestina"
92
 
93
+ #: ../column-shortcodes.php:373
94
  msgid "last"
95
  msgstr "posledný"
languages/column-shortcodes-sv_SE.mo ADDED
Binary file
languages/column-shortcodes-sv_SE.po ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # fanderzzon <fidde.andersson@telia.com>, 2013
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Column Shortcodes\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-07-19 10:04+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 16:53+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/column-"
12
+ "shortcodes/language/sv_SE/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: sv_SE\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.5.7\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPath-1: ..\n"
24
+
25
+ #: ../column-shortcodes.php:246
26
+ msgid "Select shortcode"
27
+ msgstr "Välj shortcode"
28
+
29
+ #: ../column-shortcodes.php:282
30
+ msgid "Column shortcodes"
31
+ msgstr "Kolumn shortcodes"
32
+
33
+ #: ../column-shortcodes.php:289
34
+ msgid "Column padding ( optional )"
35
+ msgstr "Kolumn padding ( valfritt )"
36
+
37
+ #: ../column-shortcodes.php:291
38
+ msgid ""
39
+ "Use the input fields below to customize the padding of your column shortcode."
40
+ msgstr ""
41
+ "Använd inläggfältet nedan för att anpassa padding av din kolumn shortcode."
42
+
43
+ #: ../column-shortcodes.php:292
44
+ msgid "Enter padding first, then select your column shortcode."
45
+ msgstr "Ange padding först, sedan välj din kolumn shortcode."
46
+
47
+ #: ../column-shortcodes.php:307
48
+ msgid "reset"
49
+ msgstr "återställ"
50
+
51
+ #: ../column-shortcodes.php:335
52
+ msgid "full width"
53
+ msgstr "full bredd"
54
+
55
+ #: ../column-shortcodes.php:336
56
+ msgid "one half"
57
+ msgstr "en halv"
58
+
59
+ #: ../column-shortcodes.php:337
60
+ msgid "one third"
61
+ msgstr "en tredjedel"
62
+
63
+ #: ../column-shortcodes.php:338
64
+ msgid "one fourth"
65
+ msgstr "en fjärdedel"
66
+
67
+ #: ../column-shortcodes.php:339
68
+ msgid "two third"
69
+ msgstr "två tredjedelar"
70
+
71
+ #: ../column-shortcodes.php:340
72
+ msgid "three fourth"
73
+ msgstr "tre fjärdedelar"
74
+
75
+ #: ../column-shortcodes.php:341
76
+ msgid "one fifth"
77
+ msgstr "en femtedel"
78
+
79
+ #: ../column-shortcodes.php:342
80
+ msgid "two fifth"
81
+ msgstr "två femtedelar"
82
+
83
+ #: ../column-shortcodes.php:343
84
+ msgid "three fifth"
85
+ msgstr "tre femtedelar"
86
+
87
+ #: ../column-shortcodes.php:344
88
+ msgid "four fifth"
89
+ msgstr "fyra femtedelar"
90
+
91
+ #: ../column-shortcodes.php:345
92
+ msgid "one sixth"
93
+ msgstr "en sjättedel"
94
+
95
+ #: ../column-shortcodes.php:373
96
+ msgid "last"
97
+ msgstr "sista"
languages/column-shortcodes.mo ADDED
Binary file
languages/column-shortcodes.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-07 14:29+0100\n"
6
- "PO-Revision-Date: 2013-05-07 14:29+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
9
  "MIME-Version: 1.0\n"
@@ -12,79 +12,79 @@ msgstr ""
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
- #: ../column-shortcodes.php:246
20
  msgid "Select shortcode"
21
  msgstr ""
22
 
23
- #: ../column-shortcodes.php:282
24
  msgid "Column shortcodes"
25
  msgstr ""
26
 
27
- #: ../column-shortcodes.php:287
28
  msgid "Column padding ( optional )"
29
  msgstr ""
30
 
31
- #: ../column-shortcodes.php:289
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
35
 
36
- #: ../column-shortcodes.php:290
37
  msgid "Enter padding first, then select your column shortcode."
38
  msgstr ""
39
 
40
- #: ../column-shortcodes.php:303
41
  msgid "reset"
42
  msgstr ""
43
 
44
- #: ../column-shortcodes.php:329
45
  msgid "full width"
46
  msgstr ""
47
 
48
- #: ../column-shortcodes.php:330
49
  msgid "one half"
50
  msgstr ""
51
 
52
- #: ../column-shortcodes.php:331
53
  msgid "one third"
54
  msgstr ""
55
 
56
- #: ../column-shortcodes.php:332
57
  msgid "one fourth"
58
  msgstr ""
59
 
60
- #: ../column-shortcodes.php:333
61
  msgid "two third"
62
  msgstr ""
63
 
64
- #: ../column-shortcodes.php:334
65
  msgid "three fourth"
66
  msgstr ""
67
 
68
- #: ../column-shortcodes.php:335
69
  msgid "one fifth"
70
  msgstr ""
71
 
72
- #: ../column-shortcodes.php:336
73
  msgid "two fifth"
74
  msgstr ""
75
 
76
- #: ../column-shortcodes.php:337
77
  msgid "three fifth"
78
  msgstr ""
79
 
80
- #: ../column-shortcodes.php:338
81
  msgid "four fifth"
82
  msgstr ""
83
 
84
- #: ../column-shortcodes.php:339
85
  msgid "one sixth"
86
  msgstr ""
87
 
88
- #: ../column-shortcodes.php:364
89
  msgid "last"
90
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Column Shortcodes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-14 16:55+0100\n"
6
+ "PO-Revision-Date: 2013-11-14 16:55+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
9
  "MIME-Version: 1.0\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
+ #: ../column-shortcodes.php:263
20
  msgid "Select shortcode"
21
  msgstr ""
22
 
23
+ #: ../column-shortcodes.php:299
24
  msgid "Column shortcodes"
25
  msgstr ""
26
 
27
+ #: ../column-shortcodes.php:306
28
  msgid "Column padding ( optional )"
29
  msgstr ""
30
 
31
+ #: ../column-shortcodes.php:308
32
  msgid ""
33
  "Use the input fields below to customize the padding of your column shortcode."
34
  msgstr ""
35
 
36
+ #: ../column-shortcodes.php:309
37
  msgid "Enter padding first, then select your column shortcode."
38
  msgstr ""
39
 
40
+ #: ../column-shortcodes.php:324
41
  msgid "reset"
42
  msgstr ""
43
 
44
+ #: ../column-shortcodes.php:352
45
  msgid "full width"
46
  msgstr ""
47
 
48
+ #: ../column-shortcodes.php:353
49
  msgid "one half"
50
  msgstr ""
51
 
52
+ #: ../column-shortcodes.php:354
53
  msgid "one third"
54
  msgstr ""
55
 
56
+ #: ../column-shortcodes.php:355
57
  msgid "one fourth"
58
  msgstr ""
59
 
60
+ #: ../column-shortcodes.php:356
61
  msgid "two third"
62
  msgstr ""
63
 
64
+ #: ../column-shortcodes.php:357
65
  msgid "three fourth"
66
  msgstr ""
67
 
68
+ #: ../column-shortcodes.php:358
69
  msgid "one fifth"
70
  msgstr ""
71
 
72
+ #: ../column-shortcodes.php:359
73
  msgid "two fifth"
74
  msgstr ""
75
 
76
+ #: ../column-shortcodes.php:360
77
  msgid "three fifth"
78
  msgstr ""
79
 
80
+ #: ../column-shortcodes.php:361
81
  msgid "four fifth"
82
  msgstr ""
83
 
84
+ #: ../column-shortcodes.php:362
85
  msgid "one sixth"
86
  msgstr ""
87
 
88
+ #: ../column-shortcodes.php:390
89
  msgid "last"
90
  msgstr ""
languages/column-shortcodes_dk_DA.mo DELETED
Binary file
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: codepress, tschutter, davidmosterd
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
4
  Tags: columns, column, shortcodes, shortcode, divider, layout, posts, editor, wp-admin, admin, codepress, wordpress
5
  Requires at least: 3.1
6
- Tested up to: 3.5
7
- Stable tag: 0.6.1
8
 
9
  Adds shortcodes to easily create columns in your posts or pages.
10
 
@@ -32,7 +32,7 @@ A preset stylesheet is included, which you can also overwrite to you liking in y
32
 
33
  **Related Links:**
34
 
35
- * http://www.codepress.nl/
36
 
37
  == Installation ==
38
 
@@ -123,7 +123,7 @@ If you would like to hide certain column from the menu; place the following in y
123
  `
124
  function hide_column_shortcodes( $shortcodes ) {
125
 
126
- /* uncommented ( remove the '//' ) any of the following to renove its shortcode from menu */
127
 
128
  // unset( $shortcodes['full_width'] );
129
  // unset( $shortcodes['one_half'] );
@@ -247,6 +247,13 @@ You will find a .po file in the languages folder which you can use. You can send
247
 
248
  == Changelog ==
249
 
 
 
 
 
 
 
 
250
  = 0.6.1 =
251
  * fixed jquery.cookie.js issue where in some cases the server would reject it
252
  * added filter for hiding certain column shortcodes from view.
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
4
  Tags: columns, column, shortcodes, shortcode, divider, layout, posts, editor, wp-admin, admin, codepress, wordpress
5
  Requires at least: 3.1
6
+ Tested up to: 3.7.1
7
+ Stable tag: 0.6.3
8
 
9
  Adds shortcodes to easily create columns in your posts or pages.
10
 
32
 
33
  **Related Links:**
34
 
35
+ * http://www.codepresshq.com/
36
 
37
  == Installation ==
38
 
123
  `
124
  function hide_column_shortcodes( $shortcodes ) {
125
 
126
+ /* uncomment ( remove the '//' ) any of the following to remove it's shortcode from menu */
127
 
128
  // unset( $shortcodes['full_width'] );
129
  // unset( $shortcodes['one_half'] );
247
 
248
  == Changelog ==
249
 
250
+ = 0.6.3 =
251
+ * updated languages
252
+
253
+ = 0.6.2 =
254
+ * added Italian language ( thanks to Nicola )
255
+ * added Czech language and bug fix ( thanks to Michal Ratajsky )
256
+
257
  = 0.6.1 =
258
  * fixed jquery.cookie.js issue where in some cases the server would reject it
259
  * added filter for hiding certain column shortcodes from view.
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file