T(-) Countdown - Version 2.2.16

Version Description

  • fixed TIE-Fighter style to deal with box-sizing and will now adjust width automatically
  • updated the enqueue_scripts to be called using the proper hooks
  • only load the widget admin scripts on the widget page
  • datepicker now works when widget is first dropped on a sidebar
Download this release

Release Info

Developer baden03
Plugin Icon 128x128 T(-) Countdown
Version 2.2.16
Comparing to
See all releases

Code changes from version 2.2.15 to 2.2.16

countdown-timer.php CHANGED
@@ -5,72 +5,66 @@ Text Domain: tminus
5
  Domain Path: /languages
6
  Plugin URI: http://plugins.twinpictures.de/plugins/t-minus-countdown/
7
  Description: Display and configure multiple T(-) Countdown timers using a shortcode or sidebar widget.
8
- Version: 2.2.15
9
  Author: twinpictures, baden03
10
  Author URI: http://www.twinpictures.de/
11
  License: GPL2
12
  */
13
 
14
- /* Copyright 2014 Twinpictures (www.twinpictures.de)
15
-
16
- This program is free software; you can redistribute it and/or modify
17
- it under the terms of the GNU General Public License, version 2, as
18
- published by the Free Software Foundation.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- 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
- //widget scripts
31
- function countdown_scripts(){
32
- $current_version = '2.2.14';
33
  $installed_version = get_option('t-minus_version');
34
 
35
  if($current_version != $installed_version){
36
- //delete the old style system
37
- delete_option( 't-minus_styles' );
38
- //add version check
39
- update_option('t-minus_version', '2.2.15');
40
 
 
 
 
 
41
  //reset rockstar option
42
- delete_option( 'rockstar' );
43
- add_option('rockstar', '');
44
  }
45
- $styles_arr = array("hoth","TIE-fighter","c-3po","c-3po-mini","carbonite","carbonite-responsive","carbonlite","cloud-city","darth","jedi", "sith");
46
- add_option('t-minus_styles', $styles_arr);
47
- $plugin_url = plugins_url() .'/'. dirname( plugin_basename(__FILE__) );
48
- //wp_enqueue_script('jquery');
49
- if ( is_admin() ){
50
- //jquery admin stuff
51
- wp_register_script('tminus-admin-script', $plugin_url.'/js/jquery.collapse.js', array ('jquery'), '1.2' );
52
- wp_enqueue_script('tminus-admin-script');
53
-
54
- wp_register_style('colapse-admin-css', $plugin_url.'/admin/collapse-style.css', array (), '1.0' );
55
- wp_enqueue_style('colapse-admin-css');
56
-
57
  wp_enqueue_script( 'jquery-ui-datepicker' );
58
- wp_register_style('jquery-ui-css', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css', array (), '1.10.4' );
59
  wp_enqueue_style('jquery-ui-css');
60
- }
61
- else{
62
- //lwtCountdown script
63
- wp_register_script('countdown-script', $plugin_url.'/js/jquery.t-countdown.js', array ('jquery'), '1.5.1' );
64
- wp_enqueue_script('countdown-script');
65
 
66
- //register all countdown styles for enqueue-as-needed
67
- $styles_arr = get_option('t-minus_styles');
68
- foreach($styles_arr as $style_name){
69
- wp_register_style( 'countdown-'.$style_name.'-css', $plugin_url.'/css/'.$style_name.'/style.css', array(), '1.3' );
70
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  }
72
  }
73
- add_action( 'init', 'countdown_scripts' );
74
 
75
  //style folders array
76
  function folder_array($path, $exclude = ".|..") {
@@ -102,7 +96,7 @@ class CountDownTimer extends WP_Widget {
102
  /** Widget */
103
  function widget($args, $instance) {
104
  global $add_my_script;
105
- extract( $args );
106
  //insert some style into your life
107
  $style = empty($instance['style']) ? 'jedi' : apply_filters('widget_style', $instance['style']);
108
  wp_enqueue_style( 'countdown-'.$style.'-css' );
5
  Domain Path: /languages
6
  Plugin URI: http://plugins.twinpictures.de/plugins/t-minus-countdown/
7
  Description: Display and configure multiple T(-) Countdown timers using a shortcode or sidebar widget.
8
+ Version: 2.2.16
9
  Author: twinpictures, baden03
10
  Author URI: http://www.twinpictures.de/
11
  License: GPL2
12
  */
13
 
14
+ //plugin init scripts
15
+ add_action( 'init', 'countdown_init_scripts' );
16
+ function countdown_init_scripts(){
17
+ $current_version = '2.2.16';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  $installed_version = get_option('t-minus_version');
19
 
20
  if($current_version != $installed_version){
21
+ //add or update version
22
+ update_option('t-minus_version', $current_version);
 
 
23
 
24
+ //add or update styles
25
+ $styles_arr = array("hoth","TIE-fighter","c-3po","c-3po-mini","carbonite","carbonite-responsive","carbonlite","cloud-city","darth","jedi", "sith");
26
+ update_option('t-minus_styles', $styles_arr);
27
+
28
  //reset rockstar option
29
+ update_option('rockstar', '');
 
30
  }
31
+ }
32
+
33
+ //load scripts on the widget admin page
34
+ add_action( 'admin_enqueue_scripts', 'admin_scripts');
35
+ function admin_scripts($hook){
36
+ if( $hook == 'widgets.php' ){
37
+ //jquery datepicker
 
 
 
 
 
38
  wp_enqueue_script( 'jquery-ui-datepicker' );
39
+ wp_register_style('jquery-ui-css', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/themes/smoothness/jquery-ui.css', array (), '1.10.4' );
40
  wp_enqueue_style('jquery-ui-css');
41
+
42
+ $plugin_url = plugins_url() .'/'. dirname( plugin_basename(__FILE__) );
 
 
 
43
 
44
+ //jquery widget scripts
45
+ wp_register_script('tminus-admin-script', $plugin_url.'/js/jquery.collapse.js', array ('jquery'), '1.2.1' );
46
+ wp_enqueue_script('tminus-admin-script');
47
+
48
+ wp_register_style('colapse-admin-css', $plugin_url.'/admin/collapse-style.css', array (), '1.0' );
49
+ wp_enqueue_style('colapse-admin-css');
50
+ }
51
+ }
52
+
53
+ //load front-end countdown scripts
54
+ add_action('wp_enqueue_scripts', 'countdown_scripts' );
55
+ function countdown_scripts(){
56
+ $plugin_url = plugins_url() .'/'. dirname( plugin_basename(__FILE__) );
57
+
58
+ //lwtCountdown script
59
+ wp_register_script('countdown-script', $plugin_url.'/js/jquery.t-countdown.js', array ('jquery'), '1.5.1' );
60
+ wp_enqueue_script('countdown-script');
61
+
62
+ //register all countdown styles for enqueue-as-needed
63
+ $styles_arr = get_option('t-minus_styles');
64
+ foreach($styles_arr as $style_name){
65
+ wp_register_style( 'countdown-'.$style_name.'-css', $plugin_url.'/css/'.$style_name.'/style.css', array(), '1.3' );
66
  }
67
  }
 
68
 
69
  //style folders array
70
  function folder_array($path, $exclude = ".|..") {
96
  /** Widget */
97
  function widget($args, $instance) {
98
  global $add_my_script;
99
+ extract( $args );
100
  //insert some style into your life
101
  $style = empty($instance['style']) ? 'jedi' : apply_filters('widget_style', $instance['style']);
102
  wp_enqueue_style( 'countdown-'.$style.'-css' );
css/TIE-fighter/style.css CHANGED
@@ -9,10 +9,11 @@
9
  /*above the dashboard*/
10
  .TIE-fighter-dashboard {
11
  height: 27px;
12
- width: 237px;
 
13
  margin: auto;
14
  background: transparent;
15
- padding: 7px 4px 4px 0;
16
  border: 2px solid #222;
17
  background: #DDD; /* old browsers */
18
  background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* firefox */
@@ -24,6 +25,10 @@
24
  -webkit-box-shadow: 3px 3px 4px #000;
25
  -moz-box-shadow: 3px 3px 4px #000;
26
  box-shadow: 3px 3px 4px #000;
 
 
 
 
27
  }
28
 
29
  .TIE-fighter-dash {
@@ -41,6 +46,9 @@
41
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(52%,#D6D6D6), color-stop(57%,#C9C9C9), color-stop(100%,#E5E5E5)); /* webkit */
42
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#E5E5E5',GradientType=0 ); /* ie */
43
  -webkit-box-shadow: 2px 2px 5px #000; -moz-box-shadow: 2px 2px 5px #000;box-shadow: 2px 2px 5px #000;
 
 
 
44
  }
45
 
46
  .TIE-fighter-tripdash {
@@ -58,6 +66,9 @@
58
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(52%,#D6D6D6), color-stop(57%,#C9C9C9), color-stop(100%,#E5E5E5)); /* webkit */
59
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#E5E5E5',GradientType=0 ); /* ie */
60
  -webkit-box-shadow: 2px 2px 5px #000; -moz-box-shadow: 2px 2px 5px #000;box-shadow: 2px 2px 5px #000;
 
 
 
61
  }
62
 
63
  .TIE-fighter-digit {
9
  /*above the dashboard*/
10
  .TIE-fighter-dashboard {
11
  height: 27px;
12
+ /*width: 237px;*/
13
+ display: inline-block;
14
  margin: auto;
15
  background: transparent;
16
+ padding: 7px 12px 4px 4px;
17
  border: 2px solid #222;
18
  background: #DDD; /* old browsers */
19
  background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* firefox */
25
  -webkit-box-shadow: 3px 3px 4px #000;
26
  -moz-box-shadow: 3px 3px 4px #000;
27
  box-shadow: 3px 3px 4px #000;
28
+ -webkit-box-sizing: content-box;
29
+ -moz-box-sizing: content-box;
30
+ box-sizing: content-box;
31
+
32
  }
33
 
34
  .TIE-fighter-dash {
46
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(52%,#D6D6D6), color-stop(57%,#C9C9C9), color-stop(100%,#E5E5E5)); /* webkit */
47
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#E5E5E5',GradientType=0 ); /* ie */
48
  -webkit-box-shadow: 2px 2px 5px #000; -moz-box-shadow: 2px 2px 5px #000;box-shadow: 2px 2px 5px #000;
49
+ -webkit-box-sizing: content-box;
50
+ -moz-box-sizing: content-box;
51
+ box-sizing: content-box;
52
  }
53
 
54
  .TIE-fighter-tripdash {
66
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(52%,#D6D6D6), color-stop(57%,#C9C9C9), color-stop(100%,#E5E5E5)); /* webkit */
67
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#E5E5E5',GradientType=0 ); /* ie */
68
  -webkit-box-shadow: 2px 2px 5px #000; -moz-box-shadow: 2px 2px 5px #000;box-shadow: 2px 2px 5px #000;
69
+ -webkit-box-sizing: content-box;
70
+ -moz-box-sizing: content-box;
71
+ box-sizing: content-box;
72
  }
73
 
74
  .TIE-fighter-digit {
js/jquery.collapse.js CHANGED
@@ -1,5 +1,5 @@
1
  /*!
2
- * jQuery Collapse-O-Matic for T-Minus v1.2
3
  * http://www.twinpictures.de/
4
  *
5
  * Copyright 2014, Twinpictures
@@ -25,14 +25,15 @@
25
  */
26
 
27
  jQuery(document).ready(function() {
28
- jQuery('.t-datepicker').datepicker({
29
- dateFormat : 'yy-mm-dd'
 
30
  });
31
 
32
  jQuery('.collapseomatic:not(.colomat-close)').each(function(index) {
33
- var thisid = jQuery(this).attr('id');
34
- jQuery('#target-'+thisid).css('display', 'none');
35
- });
36
 
37
  jQuery(document).on('click', '.collapseomatic', function(event) {
38
  //alert('phones ringin dude');
1
  /*!
2
+ * jQuery Collapse-O-Matic for T-Minus v1.2.1
3
  * http://www.twinpictures.de/
4
  *
5
  * Copyright 2014, Twinpictures
25
  */
26
 
27
  jQuery(document).ready(function() {
28
+
29
+ jQuery(document).on('click', '.t-datepicker', function(event) {
30
+ jQuery(this).datepicker('destroy').datepicker({dateFormat : 'yy-mm-dd'}).focus();
31
  });
32
 
33
  jQuery('.collapseomatic:not(.colomat-close)').each(function(index) {
34
+ var thisid = jQuery(this).attr('id');
35
+ jQuery('#target-'+thisid).css('display', 'none');
36
+ });
37
 
38
  jQuery(document).on('click', '.collapseomatic', function(event) {
39
  //alert('phones ringin dude');
languages/tminus-en_EN.mo DELETED
Binary file
languages/tminus-es_ES.mo ADDED
Binary file
languages/tminus-es_ES.po ADDED
@@ -0,0 +1,531 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of T(-) Countdown Control in Spanish (Spain)
2
+ # This file is distributed under the same license as the T(-) Countdown Control package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-06-23 00:08+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.5\n"
11
+ "Project-Id-Version: T(-) Countdown Control\n"
12
+ "POT-Creation-Date: \n"
13
+ "Last-Translator: Twinpictues <info@twinpictures.de>\n"
14
+ "Language-Team: Twinpictures <info@twinpictures.de>\n"
15
+ "Language: es_ES\n"
16
+
17
+ #: t-countdown-control.php:932
18
+ msgid ""
19
+ "A %sCommunity translation%s tool has been set up that allows anyone to "
20
+ "assist in translating T(-) Countdown Control. All are %swelcome to "
21
+ "participate%s."
22
+ msgstr ""
23
+
24
+ #: t-countdown-control.php:908
25
+ msgid "Default T(-) Countdown Settings"
26
+ msgstr ""
27
+
28
+ #: t-countdown-control.php:928
29
+ msgid "T(-) Countdown Control Version"
30
+ msgstr ""
31
+
32
+ #: t-countdown-control.php:929
33
+ msgid "Schedule and display multiple countdowns the jedi way."
34
+ msgstr ""
35
+
36
+ #: t-countdown-control.php:946
37
+ msgid ""
38
+ "To recieve plugin updates you must register your plugin. Enter your Receipt "
39
+ "ID and email address used to purchase the plugin below."
40
+ msgstr ""
41
+
42
+ #: config-meta-boxes.php:10
43
+ msgid "Countdown Launch"
44
+ msgstr ""
45
+
46
+ #: config-meta-boxes.php:17
47
+ msgid "Launch Date"
48
+ msgstr ""
49
+
50
+ #: config-meta-boxes.php:18
51
+ msgid "Launch date for this countdown."
52
+ msgstr ""
53
+
54
+ #: config-meta-boxes.php:24
55
+ msgid "Launch Time"
56
+ msgstr ""
57
+
58
+ #: config-meta-boxes.php:25
59
+ msgid "Launch time for this countdown."
60
+ msgstr ""
61
+
62
+ #: config-meta-boxes.php:31
63
+ msgid "Launch Strtotime"
64
+ msgstr ""
65
+
66
+ #: config-meta-boxes.php:32
67
+ msgid ""
68
+ "<a href=\"http://php.net/manual/en/function.strtotime.php\" target=\"_blank"
69
+ "\" title=\"PHP strtotime - Manual\">PHP strtotime</a> launch for this "
70
+ "countdown."
71
+ msgstr ""
72
+
73
+ #: config-meta-boxes.php:37
74
+ msgid "Launch Target"
75
+ msgstr ""
76
+
77
+ #: config-meta-boxes.php:38
78
+ msgid "Content target area once countdown reaches zero."
79
+ msgstr ""
80
+
81
+ #: config-meta-boxes.php:43 config-meta-boxes.php:76
82
+ msgid "Above Countdown"
83
+ msgstr ""
84
+
85
+ #: config-meta-boxes.php:44 config-meta-boxes.php:94
86
+ msgid "Below Countdown"
87
+ msgstr ""
88
+
89
+ #: config-meta-boxes.php:45
90
+ msgid "Entire Countdown"
91
+ msgstr ""
92
+
93
+ #: config-meta-boxes.php:46
94
+ msgid "Page Redirect"
95
+ msgstr ""
96
+
97
+ #: config-meta-boxes.php:47
98
+ msgid "Count Up"
99
+ msgstr ""
100
+
101
+ #: config-meta-boxes.php:51
102
+ msgid "Redirect URL"
103
+ msgstr ""
104
+
105
+ #: config-meta-boxes.php:52
106
+ msgid "Target URL to redirect entire page to on launch."
107
+ msgstr ""
108
+
109
+ #: config-meta-boxes.php:58
110
+ msgid "Countdown Type"
111
+ msgstr ""
112
+
113
+ #: config-meta-boxes.php:62
114
+ msgid "Single Shot"
115
+ msgstr ""
116
+
117
+ #: config-meta-boxes.php:63
118
+ msgid "Recurring"
119
+ msgstr ""
120
+
121
+ #: config-meta-boxes.php:83
122
+ msgid "HTML to display above countdown."
123
+ msgstr ""
124
+
125
+ #: config-meta-boxes.php:101
126
+ msgid "HTML to display below countdown."
127
+ msgstr ""
128
+
129
+ #: config-meta-boxes.php:112
130
+ msgid "Countdown Cycle"
131
+ msgstr ""
132
+
133
+ #: config-meta-boxes.php:119
134
+ msgid "Cycle Unit Value"
135
+ msgstr ""
136
+
137
+ #: config-meta-boxes.php:120
138
+ msgid "Number of time units to wait before next countdown starts."
139
+ msgstr ""
140
+
141
+ #: config-meta-boxes.php:126
142
+ msgid "Time Unit"
143
+ msgstr ""
144
+
145
+ #: config-meta-boxes.php:130 config-meta-boxes.php:176
146
+ msgid "Seconds"
147
+ msgstr "Segundos"
148
+
149
+ #: config-meta-boxes.php:131 config-meta-boxes.php:177
150
+ msgid "Minutes"
151
+ msgstr "Minutos"
152
+
153
+ #: config-meta-boxes.php:132 config-meta-boxes.php:178
154
+ msgid "Hours"
155
+ msgstr "Horas"
156
+
157
+ #: config-meta-boxes.php:133 config-meta-boxes.php:179
158
+ msgid "Days"
159
+ msgstr "Días"
160
+
161
+ #: config-meta-boxes.php:134 config-meta-boxes.php:180
162
+ msgid "Weeks"
163
+ msgstr "Semanas"
164
+
165
+ #: config-meta-boxes.php:143
166
+ msgid "Recurring Launch Schedule"
167
+ msgstr ""
168
+
169
+ #: config-meta-boxes.php:150
170
+ msgid "Schedule Type"
171
+ msgstr ""
172
+
173
+ #: config-meta-boxes.php:154
174
+ msgid "Custom"
175
+ msgstr ""
176
+
177
+ #: config-meta-boxes.php:155
178
+ msgid "Daily"
179
+ msgstr "Diario"
180
+
181
+ #: config-meta-boxes.php:156
182
+ msgid "Monday - Friday"
183
+ msgstr "Lunes - Viernes"
184
+
185
+ #: config-meta-boxes.php:157
186
+ msgid "Mon., Wed. & Fri."
187
+ msgstr "Lun., Mié. y Vie."
188
+
189
+ #: config-meta-boxes.php:158
190
+ msgid "Tue. & Thur."
191
+ msgstr "Mar. y Jue."
192
+
193
+ #: config-meta-boxes.php:159
194
+ msgid "Weekly"
195
+ msgstr "Semanal"
196
+
197
+ #: config-meta-boxes.php:160
198
+ msgid "Monthly"
199
+ msgstr "Mensual"
200
+
201
+ #: config-meta-boxes.php:161
202
+ msgid "Yearly"
203
+ msgstr "Anual"
204
+
205
+ #: config-meta-boxes.php:165
206
+ msgid "Custom Recur Value"
207
+ msgstr ""
208
+
209
+ #: config-meta-boxes.php:166
210
+ msgid "Number of time units between custom recurring launches."
211
+ msgstr ""
212
+
213
+ #: config-meta-boxes.php:172
214
+ msgid "Custom Recur Time Unit"
215
+ msgstr ""
216
+
217
+ #: config-meta-boxes.php:184
218
+ msgid "Schedule Starts"
219
+ msgstr ""
220
+
221
+ #: config-meta-boxes.php:188
222
+ msgid "Now"
223
+ msgstr "Ahora"
224
+
225
+ #: config-meta-boxes.php:189 config-meta-boxes.php:212
226
+ msgid "Schedule"
227
+ msgstr ""
228
+
229
+ #: config-meta-boxes.php:193
230
+ msgid "Start Date"
231
+ msgstr "Fecha Inicio"
232
+
233
+ #: config-meta-boxes.php:194
234
+ msgid "Start date for this recurring launch."
235
+ msgstr ""
236
+
237
+ #: config-meta-boxes.php:200
238
+ msgid "Start Time"
239
+ msgstr "Hora Inicio"
240
+
241
+ #: config-meta-boxes.php:201
242
+ msgid "Start time for this recurring launch."
243
+ msgstr ""
244
+
245
+ #: config-meta-boxes.php:207
246
+ msgid "Schedule Ends"
247
+ msgstr ""
248
+
249
+ #: config-meta-boxes.php:211
250
+ msgid "Never"
251
+ msgstr "Nunca"
252
+
253
+ #: config-meta-boxes.php:216
254
+ msgid "End Date"
255
+ msgstr "Fecha Fin"
256
+
257
+ #: config-meta-boxes.php:217
258
+ msgid "End date for this recurring launch."
259
+ msgstr ""
260
+
261
+ #: config-meta-boxes.php:223
262
+ msgid "End Time"
263
+ msgstr "Hora Fin"
264
+
265
+ #: config-meta-boxes.php:224
266
+ msgid "End time for this recurring launch."
267
+ msgstr ""
268
+
269
+ #: config-meta-boxes.php:230
270
+ msgid "Last Ran"
271
+ msgstr ""
272
+
273
+ #: config-meta-boxes.php:231
274
+ msgid "The last time this countdown launched."
275
+ msgstr ""
276
+
277
+ #: config-meta-boxes.php:238
278
+ msgid "Next Run"
279
+ msgstr ""
280
+
281
+ #: config-meta-boxes.php:239
282
+ msgid "The next time this countdown is scheduled to launched."
283
+ msgstr ""
284
+
285
+ #: t-countdown-control.php:94
286
+ msgctxt "post type general name"
287
+ msgid "T(-) Countdown"
288
+ msgstr "T(-) Countdown"
289
+
290
+ #: t-countdown-control.php:95
291
+ msgctxt "post type singular name"
292
+ msgid "T(-) Countdown"
293
+ msgstr "T(-) Countdown"
294
+
295
+ #: t-countdown-control.php:96
296
+ msgctxt "T(-) Countdown"
297
+ msgid "Add New"
298
+ msgstr "Añadir Nuevo"
299
+
300
+ #: t-countdown-control.php:97
301
+ msgid "Add New T(-) Countdown"
302
+ msgstr "Añadir Nuevo T(-) Countdown"
303
+
304
+ #: t-countdown-control.php:98
305
+ msgid "Edit T(-) Countdown"
306
+ msgstr "Editar T(-) Countdown"
307
+
308
+ #: t-countdown-control.php:99
309
+ msgid "New T(-) Countdown"
310
+ msgstr "Nuevo T(-) Countdown"
311
+
312
+ #: t-countdown-control.php:100
313
+ msgid "View T(-) Countdown"
314
+ msgstr "Ver T(-) Countdown"
315
+
316
+ #: t-countdown-control.php:101
317
+ msgid "Search T(-) Countdowns"
318
+ msgstr "Buscar T(-) Countdown"
319
+
320
+ #: t-countdown-control.php:102
321
+ msgid "No T(-) Countdowns found"
322
+ msgstr "No se ha encontrado T(-) Countdown"
323
+
324
+ #: t-countdown-control.php:103
325
+ msgid "No T(-) Countdowns found in Trash"
326
+ msgstr "No se han encontrado T(-) Countdown en la Papelera"
327
+
328
+ #: t-countdown-control.php:882
329
+ msgid "made you feel all warm and fuzzy on the inside"
330
+ msgstr ""
331
+
332
+ #: t-countdown-control.php:883
333
+ msgid "restored your faith in humanity... even if only for a fleeting second"
334
+ msgstr ""
335
+
336
+ #: t-countdown-control.php:884
337
+ msgid "rocked your world"
338
+ msgstr ""
339
+
340
+ #: t-countdown-control.php:885
341
+ msgid "inspired you to commit a random act of kindness"
342
+ msgstr ""
343
+
344
+ #: t-countdown-control.php:886
345
+ msgid "encouraged more regular flossing of the teeth"
346
+ msgstr ""
347
+
348
+ #: t-countdown-control.php:887
349
+ msgid "helped organize your life in the small ways that matter"
350
+ msgstr ""
351
+
352
+ #: t-countdown-control.php:888
353
+ msgid "saved your minutes--if not tens of minutes--writing your own solution"
354
+ msgstr ""
355
+
356
+ #: t-countdown-control.php:889
357
+ msgid "brightened your day... or darkened if if you are trying to sleep in"
358
+ msgstr ""
359
+
360
+ #: t-countdown-control.php:890
361
+ msgid "caused you to dance a little jig of joy and joyousness"
362
+ msgstr ""
363
+
364
+ #: t-countdown-control.php:891
365
+ msgid "inspired you to tweet a little @twinpictues social love"
366
+ msgstr ""
367
+
368
+ #: t-countdown-control.php:892
369
+ msgid "tasted great, while also being less filling"
370
+ msgstr ""
371
+
372
+ #: t-countdown-control.php:893
373
+ msgid "caused you to shout: \"everybody spread love, give me some mo!\""
374
+ msgstr ""
375
+
376
+ #: t-countdown-control.php:894
377
+ msgid "helped you keep the funk alive"
378
+ msgstr ""
379
+
380
+ #: t-countdown-control.php:895
381
+ msgid ""
382
+ "<a href=\"http://www.youtube.com/watch?v=dvQ28F5fOdU\" target=\"_blank"
383
+ "\">soften hands while you do dishes</a>"
384
+ msgstr ""
385
+
386
+ #: t-countdown-control.php:896
387
+ msgid ""
388
+ "helped that little old lady <a href=\"http://www.youtube.com/watch?"
389
+ "v=Ug75diEyiA0\" target=\"_blank\">find the beef</a>"
390
+ msgstr ""
391
+
392
+ #: t-countdown-control.php:926
393
+ msgid "About"
394
+ msgstr "Acerca de"
395
+
396
+ #: t-countdown-control.php:931
397
+ msgid ""
398
+ "%sDetailed documentation%s, complete with working demonstrations of all "
399
+ "shortcode attributes, is available for your instructional enjoyment."
400
+ msgstr ""
401
+
402
+ #: t-countdown-control.php:933
403
+ msgid "If this plugin %s, please consider %ssharing your story%s with others."
404
+ msgstr ""
405
+
406
+ #: t-countdown-control.php:944
407
+ msgid "Register Plugin"
408
+ msgstr "Registrar"
409
+
410
+ #: t-countdown-control.php:950
411
+ msgid "Receipt ID"
412
+ msgstr ""
413
+
414
+ #: t-countdown-control.php:952
415
+ msgid "Receipt ID is found in the Purchase Receipt"
416
+ msgstr ""
417
+
418
+ #: t-countdown-control.php:957
419
+ msgid "Email"
420
+ msgstr "Email"
421
+
422
+ #: t-countdown-control.php:959
423
+ msgid "Email address used to purchase plugin"
424
+ msgstr "Email usado para registrar el plugin"
425
+
426
+ #: t-countdown-control.php:876 t-countdown-control.php:965
427
+ msgid "Register"
428
+ msgstr "Registrar"
429
+
430
+ #: t-countdown-control.php:147
431
+ msgid "Display a scheduled T(-) Countdown the Jedi way."
432
+ msgstr ""
433
+
434
+ #: t-countdown-control.php:148
435
+ msgid "T(-) Countdown"
436
+ msgstr "T(-) Countdown"
437
+
438
+ #: t-countdown-control.php:180 t-countdown-control.php:425
439
+ #: t-countdown-control.php:601
440
+ msgid "weeks"
441
+ msgstr "semanas"
442
+
443
+ #: t-countdown-control.php:181 t-countdown-control.php:426
444
+ #: t-countdown-control.php:602
445
+ msgid "days"
446
+ msgstr "días"
447
+
448
+ #: t-countdown-control.php:182 t-countdown-control.php:427
449
+ #: t-countdown-control.php:603
450
+ msgid "hours"
451
+ msgstr "horas"
452
+
453
+ #: t-countdown-control.php:183 t-countdown-control.php:428
454
+ #: t-countdown-control.php:604
455
+ msgid "minutes"
456
+ msgstr "minutos"
457
+
458
+ #: t-countdown-control.php:184 t-countdown-control.php:429
459
+ #: t-countdown-control.php:605
460
+ msgid "seconds"
461
+ msgstr "segundos"
462
+
463
+ #: t-countdown-control.php:431
464
+ msgid "Title:"
465
+ msgstr "Título:"
466
+
467
+ #: t-countdown-control.php:433
468
+ msgid "T(-) Countdown Schedule:"
469
+ msgstr ""
470
+
471
+ #: t-countdown-control.php:493
472
+ msgid "Omit Weeks:"
473
+ msgstr "Omitir Semanas:"
474
+
475
+ #: t-countdown-control.php:493 t-countdown-control.php:494
476
+ #: t-countdown-control.php:495
477
+ msgid "No"
478
+ msgstr "No"
479
+
480
+ #: t-countdown-control.php:493 t-countdown-control.php:494
481
+ #: t-countdown-control.php:495
482
+ msgid "Yes"
483
+ msgstr "Sí"
484
+
485
+ #: t-countdown-control.php:494
486
+ msgid "Omit Days:"
487
+ msgstr "Omitir Días:"
488
+
489
+ #: t-countdown-control.php:495
490
+ msgid "Omit Seconds:"
491
+ msgstr "Omitir Segundos:"
492
+
493
+ #: t-countdown-control.php:496
494
+ msgid "Style:"
495
+ msgstr "Estilo:"
496
+
497
+ #: t-countdown-control.php:509
498
+ msgid "Inject Script:"
499
+ msgstr ""
500
+
501
+ #: t-countdown-control.php:509
502
+ msgid "Footer"
503
+ msgstr ""
504
+
505
+ #: t-countdown-control.php:509
506
+ msgid "Inline"
507
+ msgstr ""
508
+
509
+ #: t-countdown-control.php:510
510
+ msgid "Digit Titles"
511
+ msgstr ""
512
+
513
+ #: t-countdown-control.php:512
514
+ msgid "How do you spell \"weeks\"?:"
515
+ msgstr ""
516
+
517
+ #: t-countdown-control.php:513
518
+ msgid "How do you spell \"days\"?:"
519
+ msgstr ""
520
+
521
+ #: t-countdown-control.php:514
522
+ msgid "How do you spell \"hours\"?:"
523
+ msgstr ""
524
+
525
+ #: t-countdown-control.php:515
526
+ msgid "How do you spell \"minutes\"?:"
527
+ msgstr ""
528
+
529
+ #: t-countdown-control.php:516
530
+ msgid "And \"seconds\" are spelled:"
531
+ msgstr ""
languages/tminus-pt_BR.mo ADDED
Binary file
languages/{tminus-en_EN.po → tminus-pt_BR.po} RENAMED
@@ -1,111 +1,139 @@
1
- # Copyright (C) 2012 T(-) Countdown
2
  # This file is distributed under the same license as the T(-) Countdown package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: T(-) Countdown 2.2.7\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/tminus\n"
7
- "POT-Creation-Date: 2012-09-27 14:27:24+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-09-27 17:48+0100\n"
12
- "Last-Translator: Baden Coleman <baden@twinpictures.de>\n"
 
 
 
13
  "Language-Team: Twinpictures <info@twinpictures.de>\n"
14
- "X-Generator: Poedit 1.5.3\n"
15
- "Language: English\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
 
18
- #: countdown-timer.php:107
19
- msgid "A highly customizable jQuery countdown timer by Twinpictures"
 
 
 
20
  msgstr ""
21
 
22
  #: countdown-timer.php:134 countdown-timer.php:376 countdown-timer.php:554
23
  msgid "weeks"
24
- msgstr ""
25
 
26
  #: countdown-timer.php:135 countdown-timer.php:377 countdown-timer.php:555
27
  msgid "days"
28
- msgstr ""
29
 
30
  #: countdown-timer.php:136 countdown-timer.php:378 countdown-timer.php:556
31
  msgid "hours"
32
- msgstr ""
33
 
34
  #: countdown-timer.php:137 countdown-timer.php:379 countdown-timer.php:557
35
  msgid "minutes"
36
- msgstr ""
37
 
38
  #: countdown-timer.php:138 countdown-timer.php:380 countdown-timer.php:558
39
  msgid "seconds"
 
 
 
 
 
 
 
 
 
 
 
 
40
  msgstr ""
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #: countdown-timer.php:392
43
  msgid "Title:"
44
- msgstr ""
45
 
46
  #: countdown-timer.php:393
47
  msgid "Target Date:"
48
- msgstr ""
49
 
50
  #: countdown-timer.php:394
51
  msgid "Target Time (HH:MM:SS):"
52
- msgstr ""
53
 
54
  #: countdown-timer.php:414
55
  msgid "Omit Weeks:"
56
- msgstr ""
57
 
58
  #: countdown-timer.php:414
59
  msgid "No"
60
- msgstr ""
61
 
62
  #: countdown-timer.php:414
63
  msgid "Yes"
64
- msgstr ""
65
 
66
  #: countdown-timer.php:415
67
  msgid "Style:"
68
- msgstr ""
69
 
70
  #: countdown-timer.php:429
71
  msgid "Inject Script:"
72
- msgstr ""
73
 
74
  #: countdown-timer.php:429
75
  msgid "Footer"
76
- msgstr ""
77
 
78
  #: countdown-timer.php:429
79
  msgid "Inline"
80
  msgstr ""
81
 
82
- #: countdown-timer.php:434
83
- msgid "Rockstar Features"
84
- msgstr ""
85
-
86
  #: countdown-timer.php:438
87
  msgid "This is totally worth 3 bucks."
88
- msgstr ""
89
 
90
  #: countdown-timer.php:445
91
  msgid "Above Countdown"
92
- msgstr ""
93
 
94
  #: countdown-timer.php:447
95
  msgid "Top HTML:"
96
- msgstr ""
97
 
98
  #: countdown-timer.php:450
99
  msgid "Below Countdown"
100
- msgstr ""
101
 
102
  #: countdown-timer.php:452
103
  msgid "Bottom HTML:"
104
- msgstr ""
105
 
106
  #: countdown-timer.php:455
107
  msgid "When Countdown Reaches Zero"
108
- msgstr ""
109
 
110
  #: countdown-timer.php:457
111
  msgid "Launch Event HTML:"
@@ -115,67 +143,37 @@ msgstr ""
115
  msgid "Launch Target:"
116
  msgstr ""
117
 
118
- #: countdown-timer.php:462
119
- msgid "Entire Widget"
120
- msgstr ""
121
-
122
- #: countdown-timer.php:462
123
- msgid "Count Up"
124
- msgstr ""
125
-
126
  #: countdown-timer.php:472
127
  msgid "Digit Titles"
128
- msgstr ""
129
 
130
  #: countdown-timer.php:474
131
  msgid "How do you spell \"weeks\"?:"
132
- msgstr ""
133
 
134
  #: countdown-timer.php:475
135
  msgid "How do you spell \"days\"?:"
136
- msgstr ""
137
 
138
  #: countdown-timer.php:476
139
  msgid "How do you spell \"hours\"?:"
140
- msgstr ""
141
 
142
  #: countdown-timer.php:477
143
  msgid "How do you spell \"minutes\"?:"
144
- msgstr ""
145
 
146
  #: countdown-timer.php:478
147
  msgid "And \"seconds\" are spelled:"
148
- msgstr ""
149
 
150
  #: countdown-timer.php:489
151
  msgid "Schedule Recurring Countdown"
152
- msgstr ""
153
 
154
- #: countdown-timer.php:491
155
- msgid ""
156
- "%sT(-) Countdown Control%s is a premium countdown plugin that includes the "
157
- "ability to schedule and manage mulitple recurring T(-) Countdowns... the "
158
- "Jedi way."
159
- msgstr ""
160
-
161
- #. Plugin Name of the plugin/theme
162
- msgid "T(-) Countdown"
163
- msgstr ""
164
-
165
- #. Plugin URI of the plugin/theme
166
- msgid "http://plugins.twinpictures.de/plugins/t-minus-countdown/"
167
- msgstr ""
168
-
169
- #. Description of the plugin/theme
170
  msgid ""
171
  "Display and configure multiple T(-) Countdown timers using a shortcode or "
172
  "sidebar widget."
173
  msgstr ""
174
-
175
- #. Author of the plugin/theme
176
- msgid "twinpictures, baden03"
177
- msgstr ""
178
-
179
- #. Author URI of the plugin/theme
180
- msgid "http://www.twinpictures.de/"
181
- msgstr ""
1
+ # Translation of T(-) Countdown in Portuguese (Brazil)
2
  # This file is distributed under the same license as the T(-) Countdown package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-06-23 00:09+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.5\n"
11
+ "Project-Id-Version: T(-) Countdown\n"
12
+ "POT-Creation-Date: \n"
13
+ "Last-Translator: Twinpictues <info@twinpictures.de>\n"
14
  "Language-Team: Twinpictures <info@twinpictures.de>\n"
15
+ "Language: pt_BR\n"
 
 
16
 
17
+ #: countdown-timer.php:491
18
+ msgid ""
19
+ "%sT(-) Countdown Control%s is a premium countdown plugin that includes the "
20
+ "ability to schedule and manage mulitple recurring T(-) Countdowns... the "
21
+ "Jedi way."
22
  msgstr ""
23
 
24
  #: countdown-timer.php:134 countdown-timer.php:376 countdown-timer.php:554
25
  msgid "weeks"
26
+ msgstr "semanas"
27
 
28
  #: countdown-timer.php:135 countdown-timer.php:377 countdown-timer.php:555
29
  msgid "days"
30
+ msgstr "dias"
31
 
32
  #: countdown-timer.php:136 countdown-timer.php:378 countdown-timer.php:556
33
  msgid "hours"
34
+ msgstr "horas"
35
 
36
  #: countdown-timer.php:137 countdown-timer.php:379 countdown-timer.php:557
37
  msgid "minutes"
38
+ msgstr "minutos"
39
 
40
  #: countdown-timer.php:138 countdown-timer.php:380 countdown-timer.php:558
41
  msgid "seconds"
42
+ msgstr "segundos"
43
+
44
+ #: countdown-timer.php:434
45
+ msgid "Rockstar Features"
46
+ msgstr ""
47
+
48
+ #: countdown-timer.php:462
49
+ msgid "Entire Widget"
50
+ msgstr ""
51
+
52
+ #: countdown-timer.php:462
53
+ msgid "Count Up"
54
  msgstr ""
55
 
56
+ msgid "T(-) Countdown"
57
+ msgstr "T(-) Countdown"
58
+
59
+ msgid "http://plugins.twinpictures.de/plugins/t-minus-countdown/"
60
+ msgstr "http://plugins.twinpictures.de/plugins/t-minus-countdown/"
61
+
62
+ msgid "twinpictures, baden03"
63
+ msgstr "twinpictures, baden03"
64
+
65
+ msgid "http://www.twinpictures.de/"
66
+ msgstr "http://www.twinpictures.de/"
67
+
68
+ #: countdown-timer.php:107
69
+ msgid "A highly customizable jQuery countdown timer by Twinpictures"
70
+ msgstr ""
71
+ "Uma contagem regressiva altamente customizável feito em jQuery por "
72
+ "Twinpicture"
73
+
74
  #: countdown-timer.php:392
75
  msgid "Title:"
76
+ msgstr "Título:"
77
 
78
  #: countdown-timer.php:393
79
  msgid "Target Date:"
80
+ msgstr "Data alvo:"
81
 
82
  #: countdown-timer.php:394
83
  msgid "Target Time (HH:MM:SS):"
84
+ msgstr "Tempo alvo (HH:MM:SS):"
85
 
86
  #: countdown-timer.php:414
87
  msgid "Omit Weeks:"
88
+ msgstr "Omitir Semanas:"
89
 
90
  #: countdown-timer.php:414
91
  msgid "No"
92
+ msgstr "Não"
93
 
94
  #: countdown-timer.php:414
95
  msgid "Yes"
96
+ msgstr "Sim"
97
 
98
  #: countdown-timer.php:415
99
  msgid "Style:"
100
+ msgstr "Estilo"
101
 
102
  #: countdown-timer.php:429
103
  msgid "Inject Script:"
104
+ msgstr "Injetar Script:"
105
 
106
  #: countdown-timer.php:429
107
  msgid "Footer"
108
+ msgstr "Rodapé:"
109
 
110
  #: countdown-timer.php:429
111
  msgid "Inline"
112
  msgstr ""
113
 
 
 
 
 
114
  #: countdown-timer.php:438
115
  msgid "This is totally worth 3 bucks."
116
+ msgstr "Isso com certeza vale 3 pratas."
117
 
118
  #: countdown-timer.php:445
119
  msgid "Above Countdown"
120
+ msgstr "Contagem regressiva acima"
121
 
122
  #: countdown-timer.php:447
123
  msgid "Top HTML:"
124
+ msgstr "HTML encima:"
125
 
126
  #: countdown-timer.php:450
127
  msgid "Below Countdown"
128
+ msgstr "Embaixo da contagem regressiva"
129
 
130
  #: countdown-timer.php:452
131
  msgid "Bottom HTML:"
132
+ msgstr "HTML embaixo:"
133
 
134
  #: countdown-timer.php:455
135
  msgid "When Countdown Reaches Zero"
136
+ msgstr "Quando a contagem regressiva chegar a zero"
137
 
138
  #: countdown-timer.php:457
139
  msgid "Launch Event HTML:"
143
  msgid "Launch Target:"
144
  msgstr ""
145
 
 
 
 
 
 
 
 
 
146
  #: countdown-timer.php:472
147
  msgid "Digit Titles"
148
+ msgstr "Digite os títulos"
149
 
150
  #: countdown-timer.php:474
151
  msgid "How do you spell \"weeks\"?:"
152
+ msgstr "Como você fala \"semanas\"?:"
153
 
154
  #: countdown-timer.php:475
155
  msgid "How do you spell \"days\"?:"
156
+ msgstr "Como você fala \"dias\"?:"
157
 
158
  #: countdown-timer.php:476
159
  msgid "How do you spell \"hours\"?:"
160
+ msgstr "Como você fala \"horas\"?:"
161
 
162
  #: countdown-timer.php:477
163
  msgid "How do you spell \"minutes\"?:"
164
+ msgstr "Como você fala \"minutos\"?:"
165
 
166
  #: countdown-timer.php:478
167
  msgid "And \"seconds\" are spelled:"
168
+ msgstr "E \"segundos\" é falado:"
169
 
170
  #: countdown-timer.php:489
171
  msgid "Schedule Recurring Countdown"
172
+ msgstr "Agendamento de contagem regressiva"
173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  msgid ""
175
  "Display and configure multiple T(-) Countdown timers using a shortcode or "
176
  "sidebar widget."
177
  msgstr ""
178
+ "Mostrar e configurar multiplos cronômetros do T(-) Countdown usando um "
179
+ "atalho ou sidebar widget."
 
 
 
 
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://plugins.twinpictures.de/plugins/t-minus-countdown/
5
  Tags: countdown, timer, clock, ticker, widget, event, counter, count down, twinpictures, t minus, t-minus, plugin-oven, pluginoven, G2, spaceBros, littlewebtings, jQuery, javascript
6
  Requires at least: 3.5
7
  Tested up to: 4.0
8
- Stable tag: 2.2.15
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -63,6 +63,12 @@ The Daily Show with John Stewart
63
 
64
  == Changelog ==
65
 
 
 
 
 
 
 
66
  = 2.2.15 =
67
  * fixed but with omitweeks attribute
68
 
@@ -200,6 +206,12 @@ The Daily Show with John Stewart
200
 
201
  == Upgrade Notice ==
202
 
 
 
 
 
 
 
203
  = 2.2.15 =
204
  * fixed but with omitweeks attribute
205
 
5
  Tags: countdown, timer, clock, ticker, widget, event, counter, count down, twinpictures, t minus, t-minus, plugin-oven, pluginoven, G2, spaceBros, littlewebtings, jQuery, javascript
6
  Requires at least: 3.5
7
  Tested up to: 4.0
8
+ Stable tag: 2.2.16
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
63
 
64
  == Changelog ==
65
 
66
+ = 2.2.16 =
67
+ * fixed TIE-Fighter style to deal with box-sizing and will now adjust width automatically
68
+ * updated the enqueue_scripts to be called using the proper hooks
69
+ * only load the widget admin scripts on the widget page
70
+ * datepicker now works when widget is first dropped on a sidebar
71
+
72
  = 2.2.15 =
73
  * fixed but with omitweeks attribute
74
 
206
 
207
  == Upgrade Notice ==
208
 
209
+ = 2.2.16 =
210
+ * fixed TIE-Fighter style to deal with box-sizing and will now adjust width automatically
211
+ * updated the enqueue_scripts to be called using the proper hooks
212
+ * only load the widget admin scripts on the widget page
213
+ * datepicker now works when widget is first dropped on a sidebar
214
+
215
  = 2.2.15 =
216
  * fixed but with omitweeks attribute
217