Version Description
- Added missing text domain
- Renamed language files to xx_XX.mo and xx_XX.po
- Fixed a typo
Download this release
Release Info
Developer | baden03 |
Plugin | T(-) Countdown |
Version | 2.3.6 |
Comparing to | |
See all releases |
Code changes from version 2.3.5 to 2.3.6
- countdown-timer.php +13 -3
- languages/{jquery-t-countdown-widget-ca.mo → ca_CA.mo} +0 -0
- languages/{jquery-t-countdown-widget-ca.po → ca_CA.po} +0 -0
- languages/{jquery-t-countdown-widget-cs.mo → cs_CS.mo} +0 -0
- languages/{jquery-t-countdown-widget-cs.po → cs_CS.po} +0 -0
- languages/{jquery-t-countdown-widget-de.mo → de_DE.mo} +0 -0
- languages/{jquery-t-countdown-widget-de.po → de_DE.po} +0 -0
- languages/{jquery-t-countdown-widget-es.mo → es_ES.mo} +0 -0
- languages/{jquery-t-countdown-widget-es.po → es_ES.po} +0 -0
- languages/{jquery-t-countdown-widget-fa.mo → fa_FA.mo} +0 -0
- languages/{jquery-t-countdown-widget-fa.po → fa_FA.po} +0 -0
- languages/{jquery-t-countdown-widget-fr.mo → fr_FR.mo} +0 -0
- languages/{jquery-t-countdown-widget-fr.po → fr_FR.po} +0 -0
- languages/{jquery-t-countdown-widget-it_IT.mo → it_IT.mo} +0 -0
- languages/{jquery-t-countdown-widget-it_IT.po → it_IT.po} +0 -0
- languages/jquery-t-countdown-widget.pot +243 -65
- languages/{jquery-t-countdown-widget-lt_LT.mo → lt_LT.mo} +0 -0
- languages/{jquery-t-countdown-widget-lt_LT.po → lt_LT.po} +0 -0
- languages/{jquery-t-countdown-widget-nl.mo → nl_NL.mo} +0 -0
- languages/{jquery-t-countdown-widget-nl.po → nl_NL.po} +0 -0
- languages/{jquery-t-countdown-widget-pt.mo → pt_PT.mo} +0 -0
- languages/{jquery-t-countdown-widget-pt.po → pt_PT.po} +0 -0
- languages/{jquery-t-countdown-widget-ru.mo → ru_RU.mo} +0 -0
- languages/{jquery-t-countdown-widget-ru.po → ru_RU.po} +0 -0
- languages/{jquery-t-countdown-widget-sk.mo → sk_SK.mo} +0 -0
- languages/{jquery-t-countdown-widget-sk.po → sk_SK.po} +0 -0
- readme.txt +7 -19
countdown-timer.php
CHANGED
@@ -5,7 +5,7 @@ Text Domain: jquery-t-countdown-widget
|
|
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.3.
|
9 |
Author: twinpictures, baden03
|
10 |
Author URI: http://www.twinpictures.de/
|
11 |
License: GPL2
|
@@ -13,7 +13,7 @@ License: GPL2
|
|
13 |
|
14 |
class WP_TMinusCD {
|
15 |
var $plugin_name = 'T(-) Countdown';
|
16 |
-
var $version = '2.3.
|
17 |
var $domain = 'tminus';
|
18 |
var $plguin_options_page_title = 'T(-) Countdown Options';
|
19 |
var $plugin_options_menue_title = 'T(-) Countdown';
|
@@ -47,6 +47,7 @@ class WP_TMinusCD {
|
|
47 |
add_action( 'admin_init', array( $this, 'admin_init' ) );
|
48 |
add_action( 'wp_head', array( $this, 'plugin_head_inject' ) );
|
49 |
add_action( 'wp_enqueue_scripts', array( $this, 'countdown_scripts' ) );
|
|
|
50 |
}
|
51 |
|
52 |
/**
|
@@ -69,6 +70,15 @@ class WP_TMinusCD {
|
|
69 |
}
|
70 |
}
|
71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
// Add link to options page from plugin list
|
73 |
function plugin_actions($links) {
|
74 |
$new_links = array();
|
@@ -245,7 +255,7 @@ class WP_TMinusCD {
|
|
245 |
<h4><?php echo $this->plugin_name; ?> <?php _e('Version', 'jquery-t-countdown-widget'); ?> <?php echo $this->version; ?></h4>
|
246 |
<p><?php _e( 'T(-) Countdown is a highly customizable, HTML5 countdown timer that can be displayed as a sidebar widget or in a post or page using a shortcode.', 'jquery-t-countdown-widget') ?></p>
|
247 |
<ul>
|
248 |
-
<li><?php printf( __( '%sDetailed documentation%s, complete with working demonstrations of all shortcode attributes, is
|
249 |
<li><?php printf( __( 'A %sCommunity translation%s tool has been set up that allows anyone to assist in translating T(-) Countdown. All are %swelcome to participate%s.', 'jquery-t-countdown-widget'), '<a href="http://translate.twinpictures.de/projects/t-countdown" target="_blank">', '</a>', '<a href="http://translate.twinpictures.de/wordpress/wp-login.php?action=register" target="_blank">', '</a>' ); ?></li>
|
250 |
<li><?php printf( __( 'If this plugin %s, please consider %ssharing your story%s with others.', 'jquery-t-countdown-widget'), $like_it, '<a href="'.$share_it.'" target="_blank">', '</a>' ) ?></li>
|
251 |
<li><a href="https://wordpress.org/plugins/jquery-t-countdown-widget/" target="_blank">WordPress.org</a> | <a href="http://plugins.twinpictures.de/plugins/t-minus-countdown/" target="_blank">Twinpictues Plugin Oven</a></li>
|
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.3.6
|
9 |
Author: twinpictures, baden03
|
10 |
Author URI: http://www.twinpictures.de/
|
11 |
License: GPL2
|
13 |
|
14 |
class WP_TMinusCD {
|
15 |
var $plugin_name = 'T(-) Countdown';
|
16 |
+
var $version = '2.3.6';
|
17 |
var $domain = 'tminus';
|
18 |
var $plguin_options_page_title = 'T(-) Countdown Options';
|
19 |
var $plugin_options_menue_title = 'T(-) Countdown';
|
47 |
add_action( 'admin_init', array( $this, 'admin_init' ) );
|
48 |
add_action( 'wp_head', array( $this, 'plugin_head_inject' ) );
|
49 |
add_action( 'wp_enqueue_scripts', array( $this, 'countdown_scripts' ) );
|
50 |
+
add_action( 'plugins_loaded', array( $this, 'myplugin_load_textdomain' ) );
|
51 |
}
|
52 |
|
53 |
/**
|
70 |
}
|
71 |
}
|
72 |
|
73 |
+
/**
|
74 |
+
* Load textdomain.
|
75 |
+
*
|
76 |
+
* @since 2.5.6
|
77 |
+
*/
|
78 |
+
function tminus_load_textdomain() {
|
79 |
+
load_plugin_textdomain( 'jquery-t-countdown-widget', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
80 |
+
}
|
81 |
+
|
82 |
// Add link to options page from plugin list
|
83 |
function plugin_actions($links) {
|
84 |
$new_links = array();
|
255 |
<h4><?php echo $this->plugin_name; ?> <?php _e('Version', 'jquery-t-countdown-widget'); ?> <?php echo $this->version; ?></h4>
|
256 |
<p><?php _e( 'T(-) Countdown is a highly customizable, HTML5 countdown timer that can be displayed as a sidebar widget or in a post or page using a shortcode.', 'jquery-t-countdown-widget') ?></p>
|
257 |
<ul>
|
258 |
+
<li><?php printf( __( '%sDetailed documentation%s, complete with working demonstrations of all shortcode attributes, is available for your instructional enjoyment.', 'jquery-t-countdown-widget'), '<a href="http://plugins.twinpictures.de/plugins/t-minus-countdown/documentation/" target="_blank">', '</a>'); ?></li>
|
259 |
<li><?php printf( __( 'A %sCommunity translation%s tool has been set up that allows anyone to assist in translating T(-) Countdown. All are %swelcome to participate%s.', 'jquery-t-countdown-widget'), '<a href="http://translate.twinpictures.de/projects/t-countdown" target="_blank">', '</a>', '<a href="http://translate.twinpictures.de/wordpress/wp-login.php?action=register" target="_blank">', '</a>' ); ?></li>
|
260 |
<li><?php printf( __( 'If this plugin %s, please consider %ssharing your story%s with others.', 'jquery-t-countdown-widget'), $like_it, '<a href="'.$share_it.'" target="_blank">', '</a>' ) ?></li>
|
261 |
<li><a href="https://wordpress.org/plugins/jquery-t-countdown-widget/" target="_blank">WordPress.org</a> | <a href="http://plugins.twinpictures.de/plugins/t-minus-countdown/" target="_blank">Twinpictues Plugin Oven</a></li>
|
languages/{jquery-t-countdown-widget-ca.mo → ca_CA.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-ca.po → ca_CA.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-cs.mo → cs_CS.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-cs.po → cs_CS.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-de.mo → de_DE.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-de.po → de_DE.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-es.mo → es_ES.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-es.po → es_ES.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-fa.mo → fa_FA.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-fa.po → fa_FA.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-fr.mo → fr_FR.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-fr.po → fr_FR.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-it_IT.mo → it_IT.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-it_IT.po → it_IT.po}
RENAMED
File without changes
|
languages/jquery-t-countdown-widget.pot
CHANGED
@@ -1,160 +1,340 @@
|
|
1 |
-
# Copyright (C)
|
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.
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/
|
7 |
-
"POT-Creation-Date:
|
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:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#:
|
16 |
-
msgid "
|
17 |
msgstr ""
|
18 |
|
19 |
-
#:
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#:
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#:
|
32 |
-
msgid "
|
33 |
msgstr ""
|
34 |
|
35 |
-
#:
|
36 |
-
msgid "
|
37 |
msgstr ""
|
38 |
|
39 |
-
#:
|
40 |
-
msgid "
|
41 |
msgstr ""
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
msgid "
|
49 |
msgstr ""
|
50 |
|
51 |
-
#:
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#:
|
56 |
-
msgid "
|
57 |
msgstr ""
|
58 |
|
59 |
-
#:
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
-
#:
|
64 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgstr ""
|
66 |
|
67 |
-
#:
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#:
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#:
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#:
|
80 |
msgid "Rockstar Features"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
msgid "Above Countdown"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#:
|
92 |
msgid "Top HTML:"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
msgid "Below Countdown"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#:
|
100 |
msgid "Bottom HTML:"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
msgid "When Countdown Reaches Zero"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#:
|
108 |
msgid "Launch Event HTML:"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#:
|
112 |
msgid "Launch Target:"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: countdown-timer.php:
|
116 |
-
msgid "Entire
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: countdown-timer.php:
|
120 |
msgid "Count Up"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#:
|
124 |
msgid "Digit Titles"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
msgid "How do you spell \"weeks\"?:"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
msgid "How do you spell \"days\"?:"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#:
|
136 |
msgid "How do you spell \"hours\"?:"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#:
|
140 |
msgid "How do you spell \"minutes\"?:"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#:
|
144 |
msgid "And \"seconds\" are spelled:"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Schedule Recurring Countdown"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#:
|
152 |
-
msgid ""
|
153 |
-
"%sT(-) Countdown Control%s is a premium countdown plugin that includes the "
|
154 |
-
"ability to schedule and manage mulitple recurring T(-) Countdowns... the "
|
155 |
-
"Jedi way."
|
156 |
msgstr ""
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
#. Plugin Name of the plugin/theme
|
159 |
msgid "T(-) Countdown"
|
160 |
msgstr ""
|
@@ -164,9 +344,7 @@ msgid "http://plugins.twinpictures.de/plugins/t-minus-countdown/"
|
|
164 |
msgstr ""
|
165 |
|
166 |
#. Description of the plugin/theme
|
167 |
-
msgid ""
|
168 |
-
"Display and configure multiple T(-) Countdown timers using a shortcode or "
|
169 |
-
"sidebar widget."
|
170 |
msgstr ""
|
171 |
|
172 |
#. Author of the plugin/theme
|
1 |
+
# Copyright (C) 2015 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.3.6\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/jquery-t-countdown-widget\n"
|
7 |
+
"POT-Creation-Date: 2015-10-05 10:51:20+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: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: countdown-timer.php:85
|
16 |
+
msgid "Settings"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: countdown-timer.php:159
|
20 |
+
msgid "made you feel all warm and fuzzy on the inside"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: countdown-timer.php:160
|
24 |
+
msgid "restored your faith in humanity... even if only for a fleeting second"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: countdown-timer.php:161
|
28 |
+
msgid "rocked your world"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: countdown-timer.php:162
|
32 |
+
msgid "inspired you to commit a random act of kindness"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: countdown-timer.php:163
|
36 |
+
msgid "encouraged more regular flossing of the teeth"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: countdown-timer.php:164
|
40 |
+
msgid "helped organize your life in the small ways that matter"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: countdown-timer.php:165
|
44 |
+
msgid "saved your minutes--if not tens of minutes--writing your own solution"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: countdown-timer.php:166
|
48 |
+
msgid "brightened your day... or darkened it if sleeping in"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: countdown-timer.php:167
|
52 |
+
msgid "caused you to dance a little jig of joy and joyousness"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: countdown-timer.php:168
|
56 |
+
msgid "inspired you to tweet a little @twinpictues social love"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: countdown-timer.php:169
|
60 |
+
msgid "tasted great, while also being less filling"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: countdown-timer.php:170
|
64 |
+
msgid "caused you to shout: \"everybody spread love, give me some mo!\""
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: countdown-timer.php:171
|
68 |
+
msgid "really tied the room together, Dude"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: countdown-timer.php:172
|
72 |
+
msgid "helped you keep the funk alive"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: countdown-timer.php:173
|
76 |
+
msgid "<a href=\"http://www.youtube.com/watch?v=dvQ28F5fOdU\" target=\"_blank\">soften hands while you do dishes</a>"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: countdown-timer.php:174
|
80 |
+
msgid "helped that little old lady <a href=\"http://www.youtube.com/watch?v=Ug75diEyiA0\" target=\"_blank\">find the beef</a>"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: countdown-timer.php:196 countdown-timer.php:272 countdown-timer.php:344
|
84 |
+
msgid "Click to toggle"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: countdown-timer.php:197
|
88 |
+
msgid "T(-) Countdown Settings"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: countdown-timer.php:207 countdown-timer.php:622
|
92 |
msgid "Rockstar Features"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: countdown-timer.php:208
|
96 |
+
msgid "Enable"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: countdown-timer.php:209
|
100 |
+
msgid "Enable rockstar features."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: countdown-timer.php:215
|
104 |
+
msgid "Force Load CSS"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: countdown-timer.php:230
|
108 |
+
msgid "Force a css style to load in the header"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: countdown-timer.php:235
|
112 |
+
msgid "Custom CSS"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: countdown-timer.php:237
|
116 |
+
msgid "Custom CSS style for <em>ultimate flexibility</em>"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: countdown-timer.php:242
|
120 |
+
msgid "Save Changes"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: countdown-timer.php:253
|
124 |
+
msgid "About"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: countdown-timer.php:255
|
128 |
+
msgid "Version"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: countdown-timer.php:256
|
132 |
+
msgid "T(-) Countdown is a highly customizable, HTML5 countdown timer that can be displayed as a sidebar widget or in a post or page using a shortcode."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: countdown-timer.php:258
|
136 |
+
msgid "%sDetailed documentation%s, complete with working demonstrations of all shortcode attributes, is available for your instructional enjoyment."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: countdown-timer.php:259
|
140 |
+
msgid "A %sCommunity translation%s tool has been set up that allows anyone to assist in translating T(-) Countdown. All are %swelcome to participate%s."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: countdown-timer.php:260
|
144 |
+
msgid "If this plugin %s, please consider %ssharing your story%s with others."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: countdown-timer.php:273
|
148 |
+
msgid "T(-) Countdown Control"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: countdown-timer.php:275
|
152 |
+
msgid "%sT(-) Countdown Control%s is our premium plugin that manages and schedules multiple recurring countdown timers for repeating events."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: countdown-timer.php:276
|
156 |
+
msgid "Reasons To Go Pro"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: countdown-timer.php:278
|
160 |
+
msgid "Schedule and manage multiple recurring countdowns"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: countdown-timer.php:279
|
164 |
+
msgid "Highly responsive professional support"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: countdown-timer.php:280
|
168 |
+
msgid "%sT(-) Countdown Control Testimonials%s"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: countdown-timer.php:293
|
172 |
+
msgid "Register T(-) Countdown Events"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: countdown-timer.php:295
|
176 |
+
msgid "To receive plugin updates you must register your plugin. Enter your T(-) Countdown Events licence key below. Licence keys may be viewed and managed by logging into %syour account%s."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: countdown-timer.php:306
|
180 |
+
msgid "License Key"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: countdown-timer.php:308
|
184 |
+
msgid "Enter your license key"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: countdown-timer.php:315
|
188 |
+
msgid "License Status"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: countdown-timer.php:318
|
192 |
+
msgid "active"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: countdown-timer.php:319
|
196 |
+
msgid "Deactivate License"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: countdown-timer.php:326
|
200 |
+
msgid "Activate License"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: countdown-timer.php:334
|
204 |
+
msgid "Register"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: countdown-timer.php:347
|
208 |
+
msgid "%sT(-) Countdown Events%s is a new add-on plugin for T(-) Countdown Control that adds multiple event scheduling. Trigger events, such as changing content or firing a javascript function at specific times while the countdown is running."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: countdown-timer.php:397
|
212 |
+
msgid "A highly customizable jQuery countdown timer by Twinpictures"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: countdown-timer.php:400
|
216 |
+
msgid "T(-) Countdown"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: countdown-timer.php:578
|
220 |
+
msgid "Title:"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: countdown-timer.php:580
|
224 |
+
msgid "Target:"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: countdown-timer.php:584
|
228 |
+
msgid "Select Event"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: countdown-timer.php:604
|
232 |
+
msgid "Style:"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: countdown-timer.php:617
|
236 |
+
msgid "Omit weeks from timer."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: countdown-timer.php:619
|
240 |
+
msgid "Inject JavaScript Inline."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: countdown-timer.php:625 countdown-timer.php:641
|
244 |
msgid "Above Countdown"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: countdown-timer.php:627
|
248 |
msgid "Top HTML:"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: countdown-timer.php:630 countdown-timer.php:642
|
252 |
msgid "Below Countdown"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: countdown-timer.php:632
|
256 |
msgid "Bottom HTML:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: countdown-timer.php:635
|
260 |
msgid "When Countdown Reaches Zero"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: countdown-timer.php:637
|
264 |
msgid "Launch Event HTML:"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: countdown-timer.php:638
|
268 |
msgid "Launch Target:"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: countdown-timer.php:643
|
272 |
+
msgid "Entire Countdown"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: countdown-timer.php:644
|
276 |
msgid "Count Up"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: countdown-timer.php:657
|
280 |
msgid "Digit Titles"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: countdown-timer.php:659
|
284 |
msgid "How do you spell \"weeks\"?:"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: countdown-timer.php:660
|
288 |
msgid "How do you spell \"days\"?:"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: countdown-timer.php:661
|
292 |
msgid "How do you spell \"hours\"?:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: countdown-timer.php:662
|
296 |
msgid "How do you spell \"minutes\"?:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: countdown-timer.php:663
|
300 |
msgid "And \"seconds\" are spelled:"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: countdown-timer.php:674
|
304 |
+
msgid "T(-) Countdown %s!"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: countdown-timer.php:675
|
308 |
+
msgid "Enable Rockstar Features"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: countdown-timer.php:680
|
312 |
msgid "Schedule Recurring Countdown"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: countdown-timer.php:682
|
316 |
+
msgid "%sT(-) Countdown Control%s is a premium countdown plugin that includes the ability to schedule and manage multiple recurring T(-) Countdowns... the Jedi way."
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: countdown-timer.php:752
|
320 |
+
msgid "weeks"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: countdown-timer.php:753
|
324 |
+
msgid "days"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: countdown-timer.php:754
|
328 |
+
msgid "hours"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: countdown-timer.php:755
|
332 |
+
msgid "minutes"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: countdown-timer.php:756
|
336 |
+
msgid "seconds"
|
337 |
+
msgstr ""
|
338 |
#. Plugin Name of the plugin/theme
|
339 |
msgid "T(-) Countdown"
|
340 |
msgstr ""
|
344 |
msgstr ""
|
345 |
|
346 |
#. Description of the plugin/theme
|
347 |
+
msgid "Display and configure multiple T(-) Countdown timers using a shortcode or sidebar widget."
|
|
|
|
|
348 |
msgstr ""
|
349 |
|
350 |
#. Author of the plugin/theme
|
languages/{jquery-t-countdown-widget-lt_LT.mo → lt_LT.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-lt_LT.po → lt_LT.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-nl.mo → nl_NL.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-nl.po → nl_NL.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-pt.mo → pt_PT.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-pt.po → pt_PT.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-ru.mo → ru_RU.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-ru.po → ru_RU.po}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-sk.mo → sk_SK.mo}
RENAMED
File without changes
|
languages/{jquery-t-countdown-widget-sk.po → sk_SK.po}
RENAMED
File without changes
|
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.9
|
7 |
Tested up to: 4.3.1
|
8 |
-
Stable tag: 2.3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -65,6 +65,11 @@ Ah yes! <a href='http://twitter.com/#!/twinpictures'>@Twinpictures</a> is on the
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
|
|
68 |
= 2.3.5 =
|
69 |
* Modified php constructor
|
70 |
* Adjusted language domain inline with new WordPress Translation tool
|
@@ -248,21 +253,4 @@ Ah yes! <a href='http://twitter.com/#!/twinpictures'>@Twinpictures</a> is on the
|
|
248 |
* The plugin came to be.
|
249 |
|
250 |
== Upgrade Notice ==
|
251 |
-
|
252 |
-
= 2.3.3 =
|
253 |
-
* added IE 10+ gradients to c-3p0 styles
|
254 |
-
* added PHP5 style constructors for the Widget
|
255 |
-
|
256 |
-
= 2.3.2 =
|
257 |
-
* added htmlencoding for html areas above and below countdown.
|
258 |
-
|
259 |
-
= 2.3.1 =
|
260 |
-
* fixed fatal bug when registering events ajax callback
|
261 |
-
* added force load css option for systems that will not dynamically load css
|
262 |
-
* misc cleanup
|
263 |
-
|
264 |
-
= 2.3.0 =
|
265 |
-
* updated method of formatting time in meta-box
|
266 |
-
* error handling if the ajax call is not successful
|
267 |
-
* added plugin options page
|
268 |
-
* new method of handling styles and custom styles
|
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.9
|
7 |
Tested up to: 4.3.1
|
8 |
+
Stable tag: 2.3.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 2.3.6 =
|
69 |
+
* Added missing text domain
|
70 |
+
* Renamed language files to xx_XX.mo and xx_XX.po
|
71 |
+
* Fixed a typo
|
72 |
+
|
73 |
= 2.3.5 =
|
74 |
* Modified php constructor
|
75 |
* Adjusted language domain inline with new WordPress Translation tool
|
253 |
* The plugin came to be.
|
254 |
|
255 |
== Upgrade Notice ==
|
256 |
+
2.3.6: Added missing text domain, renamed language files to xx_XX.mo and xx_XX.po and fixed a typo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|