Changeset 908020
- Timestamp:
- 05/05/2014 05:11:46 AM (12 years ago)
- Location:
- countdown-timer/tags/3.0.6
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from countdown-timer/trunk)
-
fergcorp_countdownTimer.php (modified) (7 diffs)
-
lang/fergcorp_countdownTimer-es_ES.po (modified) (8 diffs)
-
lang/fergcorp_countdownTimer-it_IT.po (modified) (19 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
countdown-timer/tags/3.0.6 /fergcorp_countdownTimer.php
r655348 r908020 4 4 Plugin URI: http://www.andrewferguson.net/wordpress-plugins/countdown-timer/ 5 5 Description: Use shortcodes and a widget to count down or up to the years, months, weeks, days, hours, minutes, and/or seconds to a particular event. 6 Version: 3.0. 56 Version: 3.0.6 7 7 Author: Andrew Ferguson 8 8 Author URI: http://www.andrewferguson.net 9 9 10 10 Countdown Timer - Use shortcodes and a widget to count down the years, months, weeks, days, hours, and minutes to a particular event 11 Copyright (c) 2005-201 3Andrew Ferguson11 Copyright (c) 2005-2014 Andrew Ferguson 12 12 13 13 This program is free software; you can redistribute it and/or … … 111 111 $this->loadSettings(); 112 112 113 if(version_compare($this->version, "3.0. 5", "<")){113 if(version_compare($this->version, "3.0.6", "<")){ 114 114 add_action('admin_init', array( &$this, 'install' ) ); 115 115 add_action('admin_init', array( &$this, 'loadSettings' ) ); … … 1015 1015 public function sanitize($input){ 1016 1016 1017 if(is_object($input[0])){ //Sanitize is being called twice, not sure why but the second time (when dates have been transformed into objects) should not be run...this effective skips it 1018 return $input; 1019 } 1020 1017 1021 $event_object_array = array(); 1018 1022 … … 1090 1094 $plugin_data = get_plugin_data(__FILE__); 1091 1095 1092 //Move widget details from old option to new option only if the new option does not exist 1093 if( ( $oldWidget = get_option( "widget_fergcorp_countdown" ) ) && (!get_option( "widget_fergcorp_countdown_timer_widget" ) ) ) { 1094 update_option("widget_fergcorp_countdown_timer_widget", array( "title" => $oldWidget["title"], 1095 "countLimit" => $oldWidget["count"], 1096 ) 1097 ); 1098 delete_option("widget_fergcorp_countdown"); 1099 1100 global $sidebars_widgets; 1101 //check to see if the old widget is being used 1102 $i=0; 1103 $j=0; 1104 foreach($sidebars_widgets as $sidebar => $widgets){ 1105 $thisSidebar = $sidebar; 1106 if( 'wp_inactive_widgets' == $sidebar ) 1107 continue; 1108 1109 if ( is_array($widgets) ) { 1110 foreach ( $widgets as $widget ) { 1111 if( "fergcorp_countdowntimer" == $widget ){ 1112 $sidebars_widgets[$thisSidebar][$j] = "fergcorp_countdown_timer_widget-2"; //not sure why the ID has to be 2, but it does 1113 } 1114 $j++; 1115 } 1116 } 1117 } 1118 wp_set_sidebars_widgets($sidebars_widgets); 1119 wp_get_sidebars_widgets(); 1120 1121 1122 1123 } 1124 //If the old option exist and the new option exists (becuase of the above logic test), don't update the new option and just remove the old option 1125 elseif( $oldWidget ){ 1126 delete_option("widget_fergcorp_countdown"); 1127 } 1128 1129 //Move timeFormat data from old option to new option only if the new option does not exist 1130 if( ( $timeOffset = get_option( "fergcorp_countdownTimer_timeOffset" ) ) && (!get_option( "fergcorp_countdownTimer_timeFormat" ) ) ) { 1131 update_option( 'fergcorp_countdownTimer_timeFormat', $timeOffset); 1132 delete_option("fergcorp_countdownTimer_timeOffset"); 1133 } 1134 //If the old option exist and the new option exists (becuase of the above logic test), don't update the new option and just remove the old option 1135 elseif( $timeOffset ){ 1136 delete_option("fergcorp_countdownTimer_timeOffset"); 1137 } 1138 1139 $oneTimeEvent = get_option("fergcorp_countdownTimer_oneTimeEvent"); 1140 if( ( $oneTimeEvent ) && ( gettype($oneTimeEvent[0]) == "array") ) { 1141 $event_object_array = array(); 1142 foreach( $oneTimeEvent as $event ) { 1143 array_push($event_object_array, new Fergcorp_Countdown_Timer_Event($event["date"], $event["text"], $event["link"], $event["timeSince"])); 1144 } 1145 update_option("fergcorp_countdownTimer_oneTimeEvent", $event_object_array); 1146 } 1147 1148 //Install the defaults 1149 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'deleteOneTimeEvents', '0'); 1150 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'timeFormat', 'F jS, Y, g:i a'); 1151 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showYear', '1'); 1152 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showMonth', '1'); 1153 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showWeek', '0'); 1154 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showDay', '1'); 1155 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showHour', '1'); 1156 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showMinute', '1'); 1157 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'showSecond', '0'); 1158 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'stripZero', '1'); 1159 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'enableJS', '1'); 1160 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'timeSinceTime', '0'); 1161 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'titleSuffix', ':<br />'); 1162 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'enableShortcodeExcerpt', '0'); 1163 Fergcorp_Countdown_Timer::install_option('fergcorp_countdownTimer_', 'oneTimeEvent', '0'); 1096 if(version_compare(get_option("fergcorp_countdownTimer_version"), "3", ">")){ 1097 global $wpdb; 1098 $option_name="fergcorp_countdownTimer_oneTimeEvent"; 1099 $oneTimeEvent_original = $wpdb->get_row($wpdb->prepare("SELECT option_value from $wpdb->options WHERE option_name = %s", $option_name), ARRAY_A); 1100 1101 $oneTimeEvent_original_1 = preg_replace('/(s:35:"\0Fergcorp_Countdown_Timer_Event\0UID";s:33:"x[0-9a-z]{32}";)}/', '$1s:4:"date";s:0:"";s:13:"timezone_type";i:1;s:8:"timezone";s:6:"+00:00";}', $oneTimeEvent_original["option_value"]); 1102 $oneTimeEvent_original_2 = preg_replace('/(O:30:"Fergcorp_Countdown_Timer_Event":5:{)/', 'O:30:"Fergcorp_Countdown_Timer_Event":8:{', $oneTimeEvent_original_1); 1103 1104 $wpdb->update($wpdb->options, array('option_value'=>$oneTimeEvent_original_2), array('option_name'=>'fergcorp_countdownTimer_oneTimeEvent')); 1105 $wpdb->flush(); 1106 } 1107 else{ 1108 1109 //Install the defaults 1110 $defaults = new Fergcorp_Countdown_Timer(); 1111 $defaults->install_option('fergcorp_countdownTimer_', 'deleteOneTimeEvents', '0'); 1112 $defaults->install_option('fergcorp_countdownTimer_', 'timeFormat', 'F jS, Y, g:i a'); 1113 $defaults->install_option('fergcorp_countdownTimer_', 'showYear', '1'); 1114 $defaults->install_option('fergcorp_countdownTimer_', 'showMonth', '1'); 1115 $defaults->install_option('fergcorp_countdownTimer_', 'showWeek', '0'); 1116 $defaults->install_option('fergcorp_countdownTimer_', 'showDay', '1'); 1117 $defaults->install_option('fergcorp_countdownTimer_', 'showHour', '1'); 1118 $defaults->install_option('fergcorp_countdownTimer_', 'showMinute', '1'); 1119 $defaults->install_option('fergcorp_countdownTimer_', 'showSecond', '0'); 1120 $defaults->install_option('fergcorp_countdownTimer_', 'stripZero', '1'); 1121 $defaults->install_option('fergcorp_countdownTimer_', 'enableJS', '1'); 1122 $defaults->install_option('fergcorp_countdownTimer_', 'timeSinceTime', '0'); 1123 $defaults->install_option('fergcorp_countdownTimer_', 'titleSuffix', ':<br />'); 1124 $defaults->install_option('fergcorp_countdownTimer_', 'enableShortcodeExcerpt', '0'); 1125 $defaults->install_option('fergcorp_countdownTimer_', 'oneTimeEvent', '0'); 1126 unset($defaults); 1127 } 1128 1164 1129 1165 1130 //Update version number...last thing … … 1251 1216 public function __construct ($time, $title = NULL, $url = NULL, $timeSince = NULL){ 1252 1217 $this->setTitle($title); 1253 $this->setTime ($time);1218 $this->setTimestamp($time); 1254 1219 $this->setURL($url); 1255 1220 $this->setTimeSince($timeSince); … … 1259 1224 1260 1225 public function getTimestamp() { 1261 return method_exists('DateTime', 'getTimestamp') ? parent::getTimestamp() : $this->time; 1226 return $this->time; //ugh PHP suuuucks with time manipulation 1262 1227 } 1263 1228 … … 1266 1231 } 1267 1232 1268 public function setTime ( $time ) {1233 public function setTimestamp ( $time ) { 1269 1234 $this->time = $time; 1270 1235 } -
countdown-timer/tags/3.0.6 /lang/fergcorp_countdownTimer-es_ES.po
r558835 r908020 3 3 "Project-Id-Version: Countdown Timer v3.0 Beta 2\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 2-05-15 23:09-0800\n"6 "PO-Revision-Date: 201 2-06-15 05:30:17+0000\n"7 "Last-Translator: Andrew Ferguson <andrew@fergcorp.com>\n"5 "POT-Creation-Date: 2013-01-27 19:40-0300\n" 6 "PO-Revision-Date: 2013-01-27 19:45-0300\n" 7 "Last-Translator: Francisco Hirsch <fhgaturro@gmail.com>\n" 8 8 "Language-Team: \n" 9 "Language: es_ES\n" 9 10 "MIME-Version: 1.0\n" 10 11 "Content-Type: text/plain; charset=UTF-8\n" 11 12 "Content-Transfer-Encoding: 8bit\n" 12 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 "X-Poedit-Language: Spanish\n"14 "X-Poedit-Country: SPAIN\n"15 14 "X-Poedit-SourceCharset: utf-8\n" 16 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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" 15 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 16 "_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" 17 17 "X-Poedit-Basepath: ../\n" 18 "X-Poedit-Bookmarks: \n" 18 "X-Textdomain-Support: yes\n" 19 "X-Generator: Poedit 1.5.4\n" 19 20 "X-Poedit-SearchPath-0: .\n" 20 "X-Textdomain-Support: yes" 21 22 #: fergcorp_countdownTimer.php:200 23 #@ fergcorp_countdownTimer 21 22 # @ fergcorp_countdownTimer 23 #: fergcorp_countdownTimer.php:205 24 msgid "Countdown Timer Settings" 25 msgstr "Configuración de Countdown Timer" 26 27 # @ fergcorp_countdownTimer 28 #: fergcorp_countdownTimer.php:205 fergcorp_countdownTimer.php:1329 29 msgid "Countdown Timer" 30 msgstr "" 31 32 # @ fergcorp_countdownTimer 33 #: fergcorp_countdownTimer.php:231 24 34 msgid "Are you sure you wish to delete" 25 35 msgstr "Está seguro de querer borrarlo" 26 36 27 #: fergcorp_countdownTimer.php:247 28 #@ fergcorp_countdownTimer 37 # @ fergcorp_countdownTimer 38 #: fergcorp_countdownTimer.php:266 39 msgid "Resources" 40 msgstr "Recursos" 41 42 # @ fergcorp_countdownTimer 43 #: fergcorp_countdownTimer.php:280 44 #, fuzzy 45 msgid "Installation and Usage Notes" 46 msgstr "Notas de instalación" 47 48 # @ fergcorp_countdownTimer 49 #: fergcorp_countdownTimer.php:281 50 msgid "One Time Events" 51 msgstr "Eventos" 52 53 # @ fergcorp_countdownTimer 54 #: fergcorp_countdownTimer.php:282 55 msgid "Management" 56 msgstr "Gestión" 57 58 # @ fergcorp_countdownTimer 59 #: fergcorp_countdownTimer.php:283 60 msgid "Countdown Time Display" 61 msgstr "Tiempo del Countdown en pantalla" 62 63 # @ fergcorp_countdownTimer 64 #: fergcorp_countdownTimer.php:284 fergcorp_countdownTimer.php:582 65 msgid "onHover Time Format" 66 msgstr "Formato de tiempo (On Hover)" 67 68 # @ fergcorp_countdownTimer 69 #: fergcorp_countdownTimer.php:285 70 msgid "Display Format Options" 71 msgstr "Mostrar Opciones del Formato" 72 73 # @ fergcorp_countdownTimer 74 #: fergcorp_countdownTimer.php:286 75 msgid "Example Display" 76 msgstr "Ejemplo de lo que se mostrará" 77 78 # @ fergcorp_countdownTimer 79 #: fergcorp_countdownTimer.php:293 80 msgid "Save Changes" 81 msgstr "Guardar cambios" 82 83 # @ fergcorp_countdownTimer 84 #: fergcorp_countdownTimer.php:318 29 85 msgid "Plugin Homepage" 30 86 msgstr "Página del Plugin" 31 87 32 # : fergcorp_countdownTimer.php:24833 # @ fergcorp_countdownTimer88 # @ fergcorp_countdownTimer 89 #: fergcorp_countdownTimer.php:319 34 90 msgid "Support Forum" 35 91 msgstr "Foro de soporte" 36 92 37 # : fergcorp_countdownTimer.php:24938 # @ fergcorp_countdownTimer93 # @ fergcorp_countdownTimer 94 #: fergcorp_countdownTimer.php:320 39 95 msgid "Amazon Wishlist" 40 96 msgstr "Mi lista de deseos Amazon" 41 97 42 #: fergcorp_countdownTimer.php:253 43 #@ fergcorp_countdownTimer 44 msgid "I've coded and supported this plugin for several years now, however I am a full-time engineer with a real, full-time job and really only do this programming thing on the side for the love of it. If you would like to continue to see updates, please consider donating above." 45 msgstr "He codificado y el apoyo que este plugin desde hace varios años, sin embargo yo soy un ingeniero de tiempo completo con un trabajo de verdad, a tiempo completo y realmente hago esto por que la programación en el lado por el amor de ella. Si a usted le gustaría continuar para ver las novedades, por favor considere hacer una donación anterior." 46 47 #: fergcorp_countdownTimer.php:256 48 #@ fergcorp_countdownTimer 49 msgid "Resources" 50 msgstr "Recursos" 51 52 #: fergcorp_countdownTimer.php:469 53 #, php-format 54 #@ fergcorp_countdownTimer 55 msgid "Countdown timer uses <a %s>PHP's strtotime function</a> and will parse about any English textual datetime description." 56 msgstr "Countdown timer usa la <a %s>función strtotime de PHP</a> y parsea cualquier descripción textual de fecha-tiempo (datetime)." 57 58 #: fergcorp_countdownTimer.php:470 59 #@ fergcorp_countdownTimer 98 # @ fergcorp_countdownTimer 99 #: fergcorp_countdownTimer.php:324 100 msgid "" 101 "I've coded and supported this plugin for several years now, however I am a " 102 "full-time engineer with a real, full-time job and really only do this " 103 "programming thing on the side for the love of it. If you would like to " 104 "continue to see updates, please consider donating above." 105 msgstr "" 106 "He codificado y dado soporte a este plugin desde hace varios años, sin embargo " 107 "yo soy un ingeniero de tiempo completo con un trabajo de verdad, a tiempo " 108 "completo y realmente hago esta programación por amor al arte. Si a usted le gustaría que continue dando soporte, por " 109 "favor considere hacer una donación." 110 111 # @ fergcorp_countdownTimer 112 #: fergcorp_countdownTimer.php:339 113 msgid "This setting controls what units of time are displayed." 114 msgstr "Estas opciones controlan que unidades de tiempo saldrán en pantalla." 115 116 # @ fergcorp_countdownTimer 117 #: fergcorp_countdownTimer.php:341 118 msgid "Years:" 119 msgstr "Años:" 120 121 # @ fergcorp_countdownTimer 122 #: fergcorp_countdownTimer.php:342 123 msgid "Months:" 124 msgstr "Meses:" 125 126 # @ fergcorp_countdownTimer 127 #: fergcorp_countdownTimer.php:343 128 msgid "Weeks:" 129 msgstr "Semanas:" 130 131 # @ fergcorp_countdownTimer 132 #: fergcorp_countdownTimer.php:344 133 msgid "Days:" 134 msgstr "Días:" 135 136 # @ fergcorp_countdownTimer 137 #: fergcorp_countdownTimer.php:345 138 msgid "Hours:" 139 msgstr "Horas:" 140 141 # @ fergcorp_countdownTimer 142 #: fergcorp_countdownTimer.php:346 143 msgid "Minutes:" 144 msgstr "Minutos:" 145 146 # @ fergcorp_countdownTimer 147 #: fergcorp_countdownTimer.php:347 fergcorp_countdownTimer.php:536 148 msgid "Seconds:" 149 msgstr "Segundos:" 150 151 # @ fergcorp_countdownTimer 152 #: fergcorp_countdownTimer.php:348 153 msgid "Strip non-significant zeros:" 154 msgstr "Evitar ceros no significativos:" 155 156 # @ fergcorp_countdownTimer 157 #: fergcorp_countdownTimer.php:367 158 msgid "Delete" 159 msgstr "Eliminar" 160 161 # @ fergcorp_countdownTimer 162 #: fergcorp_countdownTimer.php:368 163 msgid "Event Date" 164 msgstr "Fecha del Evento" 165 166 # @ fergcorp_countdownTimer 167 #: fergcorp_countdownTimer.php:369 168 msgid "Event Title" 169 msgstr "Título del Evento" 170 171 # @ fergcorp_countdownTimer 172 #: fergcorp_countdownTimer.php:370 173 msgid "Link" 174 msgstr "Enlace" 175 176 # @ fergcorp_countdownTimer 177 #: fergcorp_countdownTimer.php:371 178 msgid "Display \"Time since\"" 179 msgstr "Mostrar \"Tiempo desde\"" 180 181 # @ fergcorp_countdownTimer 182 #: fergcorp_countdownTimer.php:460 183 msgid "Automatically delete 'One Time Events' after they have occured?" 184 msgstr "Eliminar automáticamente los 'Eventos' después de su finalización?" 185 186 # @ fergcorp_countdownTimer 187 #: fergcorp_countdownTimer.php:469 fergcorp_countdownTimer.php:1228 188 msgid "Yes" 189 msgstr "Sí" 190 191 # @ fergcorp_countdownTimer 192 #: fergcorp_countdownTimer.php:479 fergcorp_countdownTimer.php:1238 193 msgid "No" 194 msgstr "No" 195 196 # @ fergcorp_countdownTimer 197 #: fergcorp_countdownTimer.php:494 198 #, php-format 199 msgid "" 200 "Countdown timer uses <a %s>PHP's strtotime function</a> and will parse about " 201 "any English textual datetime description." 202 msgstr "" 203 "Countdown timer usa la <a %s>función strtotime de PHP</a> y parsea cualquier " 204 "descripción textual de fecha-tiempo (datetime)." 205 206 # @ fergcorp_countdownTimer 207 #: fergcorp_countdownTimer.php:495 60 208 msgid "Examples of some (but not all) valid dates" 61 209 msgstr "Ejemplos de algunas (no todas) fechas válidas" 62 210 63 #: fergcorp_countdownTimer.php:479 64 #, fuzzy, php-format, php-format, php-format 65 #@ fergcorp_countdownTimer 66 msgid "To insert the Countdown Timer into your sidebar, you can use the <a %s>Countdown Timer Widget</a>." 67 msgstr "Usted ha hecho hasta aquí, estás casi allí. Para insertar el temporizador de cuenta atrás en tu barra lateral, puede utilizar el <a %s>Countdown Timer Widget </a>." 68 69 #: fergcorp_countdownTimer.php:481 70 #, fuzzy, php-format, php-format, php-format 71 #@ fergcorp_countdownTimer 72 msgid "If you want to insert the Countdown Timer into a page or post, you can use the following <abbr %s %s>shortcodes</abbr> to return all or a limited number of Countdown Timers, respectively:" 73 msgstr "Si desea insertar el temporizador de cuenta atrás en una página o correo, puede usar el siguiente <abbr %s %s>shortcodes</abbr> para devolver todos o un número limitado de temporizadores de cuenta, respectivamente:" 74 75 #: fergcorp_countdownTimer.php:481 211 # @ fergcorp_countdownTimer 212 #: fergcorp_countdownTimer.php:504 213 #, fuzzy, php-format 214 msgid "" 215 "To insert the Countdown Timer into your sidebar, you can use the <a " 216 "%s>Countdown Timer Widget</a>." 217 msgstr "" 218 "Usted ha hecho hasta aquí, estás casi allí. Para insertar el temporizador de " 219 "cuenta atrás en tu barra lateral, puede utilizar el <a %s>Countdown Timer " 220 "Widget </a>." 221 222 # @ fergcorp_countdownTimer 223 #: fergcorp_countdownTimer.php:506 224 #, fuzzy, php-format 225 msgid "" 226 "If you want to insert the Countdown Timer into a page or post, you can use " 227 "the following <abbr %s %s>shortcodes</abbr> to return all or a limited " 228 "number of Countdown Timers, respectively:" 229 msgstr "" 230 "Si desea insertar el temporizador de cuenta atrás en una página o correo, " 231 "puede usar el siguiente <abbr %s %s>shortcodes</abbr> para devolver todos o " 232 "un número limitado de temporizadores de cuenta, respectivamente:" 233 234 # @ fergcorp_countdownTimer 235 #: fergcorp_countdownTimer.php:506 76 236 #, fuzzy 77 #@ fergcorp_countdownTimer 78 msgid "A shortcode is a WordPress-specific code that lets you do nifty things with very little effort. Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut." 79 msgstr "A shortcode WordPress es un código específico que le permite hacer las cosas elegante con muy poco esfuerzo. Shortcodes puede incrustar archivos o crear objetos que normalmente requieren un montón de complicado, feo código en sólo una línea. Shortcode = acceso directo." 80 81 #: fergcorp_countdownTimer.php:488 237 msgid "" 238 "A shortcode is a WordPress-specific code that lets you do nifty things with " 239 "very little effort. Shortcodes can embed files or create objects that would " 240 "normally require lots of complicated, ugly code in just one line. Shortcode " 241 "= shortcut." 242 msgstr "" 243 "A shortcode WordPress es un código específico que le permite hacer las cosas " 244 "elegante con muy poco esfuerzo. Shortcodes puede incrustar archivos o crear " 245 "objetos que normalmente requieren un montón de complicado, feo código en " 246 "sólo una línea. Shortcode = acceso directo." 247 248 # @ fergcorp_countdownTimer 249 #: fergcorp_countdownTimer.php:513 82 250 #, fuzzy 83 #@ fergcorp_countdownTimer 84 msgid "Where <em>##</em> is maximum number of results to be displayed - ordered by date." 85 msgstr "Cuando <em> # # </em> es el número máximo de resultados que se mostrará - ordenado por fecha." 86 87 #: fergcorp_countdownTimer.php:489 88 #@ fergcorp_countdownTimer 89 msgid "If you want to insert individual countdown timers, such as in posts or on pages, you can use the following shortcode:" 90 msgstr "Si deseas gestionar individualmente los countdown timers en entradas o páginas, puedes utilizar el siguiente código:" 91 92 #: fergcorp_countdownTimer.php:491 93 #@ fergcorp_countdownTimer 251 msgid "" 252 "Where <em>##</em> is maximum number of results to be displayed - ordered by " 253 "date." 254 msgstr "" 255 "Cuando <em> # # </em> es el número máximo de resultados que se mostrará - " 256 "ordenado por fecha." 257 258 # @ fergcorp_countdownTimer 259 #: fergcorp_countdownTimer.php:514 260 msgid "" 261 "If you want to insert individual countdown timers, such as in posts or on " 262 "pages, you can use the following shortcode:" 263 msgstr "" 264 "Si deseas gestionar individualmente los countdown timers en entradas o " 265 "páginas, puedes utilizar el siguiente código:" 266 267 # @ fergcorp_countdownTimer 268 #: fergcorp_countdownTimer.php:516 94 269 msgid "Time until my birthday:" 95 270 msgstr "Tiempo que falta para mi cumpleaños:" 96 271 97 #: fergcorp_countdownTimer.php:495 98 #, fuzzy, php-format, php-format, php-format 99 #@ fergcorp_countdownTimer 100 msgid "Where <em>ENTER_DATE_HERE</em> uses <a %s>PHP's strtotime function</a> and will parse about any English textual datetime description." 101 msgstr "Cuando <em>\"ENTER_DATE_HERE \"</ em> usa <a %s> PHPla función strtotime </a> y analizar acerca de cualquier Inglés datetime descripción textual." 102 103 #: fergcorp_countdownTimer.php:270 272 # @ fergcorp_countdownTimer 273 #: fergcorp_countdownTimer.php:520 274 #, fuzzy, php-format 275 msgid "" 276 "Where <em>ENTER_DATE_HERE</em> uses <a %s>PHP's strtotime function</a> and " 277 "will parse about any English textual datetime description." 278 msgstr "" 279 "Cuando <em>\"ENTER_DATE_HERE \"</ em> usa <a %s> PHPla función strtotime </" 280 "a> y analizar acerca de cualquier Inglés datetime descripción textual." 281 282 # @ fergcorp_countdownTimer 283 #: fergcorp_countdownTimer.php:535 104 284 #, fuzzy 105 #@ fergcorp_countdownTimer 106 msgid "Installation and Usage Notes" 107 msgstr "Notas de instalación" 108 109 #: fergcorp_countdownTimer.php:333 110 #@ fergcorp_countdownTimer 111 msgid "Delete" 112 msgstr "Eliminar" 113 114 #: fergcorp_countdownTimer.php:334 115 #@ fergcorp_countdownTimer 116 msgid "Event Date" 117 msgstr "Fecha del Evento" 118 119 #: fergcorp_countdownTimer.php:335 120 #@ fergcorp_countdownTimer 121 msgid "Event Title" 122 msgstr "Título del Evento" 123 124 #: fergcorp_countdownTimer.php:336 125 #@ fergcorp_countdownTimer 126 msgid "Link" 127 msgstr "Enlace" 128 129 #: fergcorp_countdownTimer.php:337 130 #@ fergcorp_countdownTimer 131 msgid "Display \"Time since\"" 132 msgstr "Mostrar \"Tiempo desde\"" 133 134 #: fergcorp_countdownTimer.php:435 135 #@ fergcorp_countdownTimer 136 msgid "Automatically delete 'One Time Events' after they have occured?" 137 msgstr "Eliminar automáticamente los 'Eventos' después de su finalización?" 138 139 #: fergcorp_countdownTimer.php:444 140 #: fergcorp_countdownTimer.php:1163 141 #@ fergcorp_countdownTimer 142 msgid "Yes" 143 msgstr "Sí" 144 145 #: fergcorp_countdownTimer.php:454 146 #: fergcorp_countdownTimer.php:1173 147 #@ fergcorp_countdownTimer 148 msgid "No" 149 msgstr "No" 150 151 #: fergcorp_countdownTimer.php:271 152 #@ fergcorp_countdownTimer 153 msgid "One Time Events" 154 msgstr "Eventos" 155 156 #: fergcorp_countdownTimer.php:510 285 msgid "" 286 "How long the timer remain visable if \"Display 'Time Since'\" is ticked:" 287 msgstr "" 288 "¿Cuánto tiempo permanecerá el temporizador visible si \"'DisplayTiempo' " 289 "transcurrido desde la\" está marcada:" 290 291 # @ fergcorp_countdownTimer 292 #: fergcorp_countdownTimer.php:545 157 293 #, fuzzy 158 #@ fergcorp_countdownTimer159 msgid "How long the timer remain visable if \"Display 'Time Since'\" is ticked:"160 msgstr "¿Cuánto tiempo permanecerá el temporizador visible si \"'DisplayTiempo' transcurrido desde la\" está marcada:"161 162 #: fergcorp_countdownTimer.php:520163 #, fuzzy164 #@ fergcorp_countdownTimer165 294 msgid "(0 = infinite; 86400 seconds = 1 day; 604800 seconds = 1 week)" 166 295 msgstr "(0 = infinito; 86.400 segundos = 1 día; 604800 segundos = 1 semana)" 167 296 168 # : fergcorp_countdownTimer.php:522169 # @ fergcorp_countdownTimer297 # @ fergcorp_countdownTimer 298 #: fergcorp_countdownTimer.php:547 170 299 msgid "Enable JavaScript countdown:" 171 300 msgstr "Habilitar JavaScript countdown:" 172 301 173 #: fergcorp_countdownTimer.php:529 174 #@ fergcorp_countdownTimer 175 msgid "By default, WordPress does not parse shortcodes that are in excerpts. If you want to enable this functionality, you can do so here. Note that this will enable the parsing of <em>all</em> shortcodes in the excerpt, not just the ones associated with Countdown Timer." 176 msgstr "Por defecto, WordPress no analiza códigos cortos que se encuentran en extractos. Si desea habilitar esta funcionalidad, puede hacerlo aquí. Tenga en cuenta que esto permitirá el análisis de <em>todos</em> códigos cortos en el extracto, no sólo los relacionados con temporizador de cuenta regresiva." 177 178 #: fergcorp_countdownTimer.php:530 179 #@ fergcorp_countdownTimer 302 # @ fergcorp_countdownTimer 303 #: fergcorp_countdownTimer.php:554 304 msgid "" 305 "By default, WordPress does not parse shortcodes that are in excerpts. If you " 306 "want to enable this functionality, you can do so here. Note that this will " 307 "enable the parsing of <em>all</em> shortcodes in the excerpt, not just the " 308 "ones associated with Countdown Timer." 309 msgstr "" 310 "Por defecto, WordPress no analiza códigos cortos que se encuentran en " 311 "extractos. Si desea habilitar esta funcionalidad, puede hacerlo aquí. Tenga " 312 "en cuenta que esto permitirá el análisis de <em>todos</em> códigos cortos en " 313 "el extracto, no sólo los relacionados con temporizador de cuenta regresiva." 314 315 # @ fergcorp_countdownTimer 316 #: fergcorp_countdownTimer.php:555 180 317 msgid "Enable shortcodes in the_excerpt:" 181 318 msgstr "Habilitar códigos cortos en the_excerpt:" 182 319 183 #: fergcorp_countdownTimer.php:272 184 #@ fergcorp_countdownTimer 185 msgid "Management" 186 msgstr "Gestión" 187 188 #: fergcorp_countdownTimer.php:305 189 #@ fergcorp_countdownTimer 190 msgid "This setting controls what units of time are displayed." 191 msgstr "Estas opciones controlan que unidades de tiempo saldrán en pantalla." 192 193 #: fergcorp_countdownTimer.php:307 194 #@ fergcorp_countdownTimer 195 msgid "Years:" 196 msgstr "Años:" 197 198 #: fergcorp_countdownTimer.php:308 199 #@ fergcorp_countdownTimer 200 msgid "Months:" 201 msgstr "Meses:" 202 203 #: fergcorp_countdownTimer.php:310 204 #@ fergcorp_countdownTimer 205 msgid "Days:" 206 msgstr "Días:" 207 208 #: fergcorp_countdownTimer.php:311 209 #@ fergcorp_countdownTimer 210 msgid "Hours:" 211 msgstr "Horas:" 212 213 #: fergcorp_countdownTimer.php:312 214 #@ fergcorp_countdownTimer 215 msgid "Minutes:" 216 msgstr "Minutos:" 217 218 #: fergcorp_countdownTimer.php:313 219 #: fergcorp_countdownTimer.php:511 220 #@ fergcorp_countdownTimer 221 msgid "Seconds:" 222 msgstr "Segundos:" 223 224 #: fergcorp_countdownTimer.php:314 225 #@ fergcorp_countdownTimer 226 msgid "Strip non-significant zeros:" 227 msgstr "Evitar ceros no significativos:" 228 229 #: fergcorp_countdownTimer.php:273 230 #@ fergcorp_countdownTimer 231 msgid "Countdown Time Display" 232 msgstr "Tiempo del Countdown en pantalla" 233 234 #: fergcorp_countdownTimer.php:551 235 #, fuzzy, php-format, php-format, php-format 236 #@ fergcorp_countdownTimer 237 msgid "If you set 'onHover Time Format', hovering over the time left will show the user what the date of the event is. onHover Time Format uses <a %s>PHP's Date() function</a>." 238 msgstr "Si establece \"onHover Formato de hora\", flotando sobre el tiempo restante se muestran al usuario lo que la fecha del evento es. Tiempo onHover formato utiliza <a %s>Fecha de PHP () la función</a>." 239 240 #: fergcorp_countdownTimer.php:552 241 #@ fergcorp_countdownTimer 320 # @ fergcorp_countdownTimer 321 #: fergcorp_countdownTimer.php:576 322 #, fuzzy, php-format 323 msgid "" 324 "If you set 'onHover Time Format', hovering over the time left will show the " 325 "user what the date of the event is. onHover Time Format uses <a %s>PHP's Date" 326 "() function</a>." 327 msgstr "" 328 "Si establece \"onHover Formato de hora\", flotando sobre el tiempo restante " 329 "se muestran al usuario lo que la fecha del evento es. Tiempo onHover formato " 330 "utiliza <a %s>Fecha de PHP () la función</a>." 331 332 # @ fergcorp_countdownTimer 333 #: fergcorp_countdownTimer.php:577 242 334 msgid "Examples" 243 335 msgstr "Ejemplos" 244 336 245 #: fergcorp_countdownTimer.php:554 246 #: fergcorp_countdownTimer.php:555 247 #@ fergcorp_countdownTimer 337 # @ fergcorp_countdownTimer 338 #: fergcorp_countdownTimer.php:579 fergcorp_countdownTimer.php:580 248 339 msgid "goes to" 249 340 msgstr "equivale a" 250 341 251 #: fergcorp_countdownTimer.php:274 252 #: fergcorp_countdownTimer.php:557 253 #@ fergcorp_countdownTimer 254 msgid "onHover Time Format" 255 msgstr "Formato de tiempo (On Hover)" 256 257 #: fergcorp_countdownTimer.php:582 258 #@ fergcorp_countdownTimer 259 msgid "This setting allows you to customize how each event is styled and wrapped." 260 msgstr "Esta configuración le permite personalizar la forma en que se mostrará cada evento (<strong>estilo CSS</strong>)." 261 262 #: fergcorp_countdownTimer.php:583 263 #@ fergcorp_countdownTimer 264 msgid "<strong>Title Suffix</strong> sets the content that appears immediately after title and before the timer." 265 msgstr "<strong>Mostrar Estilo</strong> establece el atributo de estilo CSS para cada temporizador." 266 267 #: fergcorp_countdownTimer.php:584 268 #@ fergcorp_countdownTimer 342 # @ fergcorp_countdownTimer 343 #: fergcorp_countdownTimer.php:607 344 msgid "" 345 "This setting allows you to customize how each event is styled and wrapped." 346 msgstr "" 347 "Esta configuración le permite personalizar la forma en que se mostrará cada " 348 "evento (<strong>estilo CSS</strong>)." 349 350 # @ fergcorp_countdownTimer 351 #: fergcorp_countdownTimer.php:608 352 msgid "" 353 "<strong>Title Suffix</strong> sets the content that appears immediately " 354 "after title and before the timer." 355 msgstr "" 356 "<strong>Mostrar Estilo</strong> establece el atributo de estilo CSS para " 357 "cada temporizador." 358 359 # @ fergcorp_countdownTimer 360 #: fergcorp_countdownTimer.php:609 269 361 msgid "Examples/Defaults" 270 362 msgstr "Ejemplos/Predeterminados" 271 363 272 #: fergcorp_countdownTimer.php:586 273 #: fergcorp_countdownTimer.php:588 274 #@ fergcorp_countdownTimer 364 # @ fergcorp_countdownTimer 365 #: fergcorp_countdownTimer.php:611 fergcorp_countdownTimer.php:613 275 366 msgid "Title Suffix" 276 367 msgstr "Sufijo" 277 368 278 #: fergcorp_countdownTimer.php:275 279 #@ fergcorp_countdownTimer 280 msgid "Display Format Options" 281 msgstr "Mostrar Opciones del Formato" 282 283 #: fergcorp_countdownTimer.php:276 284 #@ fergcorp_countdownTimer 285 msgid "Example Display" 286 msgstr "Ejemplo de lo que se mostrará" 287 288 #: fergcorp_countdownTimer.php:283 289 #@ fergcorp_countdownTimer 290 msgid "Save Changes" 291 msgstr "Guardar cambios" 292 293 #: fergcorp_countdownTimer.php:668 294 #@ fergcorp_countdownTimer 369 # @ fergcorp_countdownTimer 370 #: fergcorp_countdownTimer.php:695 295 371 msgid "No dates present" 296 372 msgstr "No hay fechas presentes" 297 373 298 #: fergcorp_countdownTimer.php:713 299 #: fergcorp_countdownTimer.php:1044 300 #, php-format 301 #@ fergcorp_countdownTimer 374 # @ fergcorp_countdownTimer 375 #: fergcorp_countdownTimer.php:748 fergcorp_countdownTimer.php:1074 376 #, php-format 302 377 msgid "%s ago" 303 msgstr "Hace%s" 304 305 #: fergcorp_countdownTimer.php:721 306 #: fergcorp_countdownTimer.php:1045 307 #, php-format 308 #@ fergcorp_countdownTimer 378 msgstr "Hace %s" 379 380 # @ fergcorp_countdownTimer 381 #: fergcorp_countdownTimer.php:756 fergcorp_countdownTimer.php:1075 382 #, php-format 309 383 msgid "in %s" 310 msgstr "en%s" 311 312 #: fergcorp_countdownTimer.php:1291 313 #@ fergcorp_countdownTimer 314 msgid "Maximum # of events to show:" 315 msgstr "Máximo # de eventos a mostrar:" 316 317 #: fergcorp_countdownTimer.php:1293 318 #@ fergcorp_countdownTimer 319 msgid "Notes:" 320 msgstr "Notas:" 321 322 #: fergcorp_countdownTimer.php:1293 323 #@ fergcorp_countdownTimer 324 msgid "Set 'Maximum # of events' to '-1' if you want no limit." 325 msgstr "Marca el 'Máximo # de eventos' a '-1' si no quiere límites." 326 327 #: fergcorp_countdownTimer.php:1273 328 #@ fergcorp_countdownTimer 329 msgid "Adds the Countdown Timer" 330 msgstr "Agrega el temporizador de cuenta regresiva" 331 332 #: fergcorp_countdownTimer.php:174 333 #@ fergcorp_countdownTimer 334 msgid "Countdown Timer Settings" 335 msgstr "" 336 337 #: fergcorp_countdownTimer.php:174 338 #: fergcorp_countdownTimer.php:1284 339 #@ fergcorp_countdownTimer 340 msgid "Countdown Timer" 341 msgstr "" 342 343 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 344 #: fergcorp_countdownTimer.php:781 345 #: fergcorp_countdownTimer.php:1022 346 #: fergcorp_countdownTimer.php:1023 347 #: fergcorp_countdownTimer.php:893 348 #, php-format 349 #@ fergcorp_countdownTimer 384 msgstr "en %s" 385 386 # @ fergcorp_countdownTimer 387 #: fergcorp_countdownTimer.php:816 fergcorp_countdownTimer.php:930 388 #: fergcorp_countdownTimer.php:1052 fergcorp_countdownTimer.php:1053 389 #, php-format 350 390 msgid "%d year," 351 391 msgid_plural "%d years," … … 353 393 msgstr[1] "%d años," 354 394 355 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 356 #: fergcorp_countdownTimer.php:793 357 #: fergcorp_countdownTimer.php:1025 358 #: fergcorp_countdownTimer.php:1026 359 #: fergcorp_countdownTimer.php:890 360 #, php-format 361 #@ fergcorp_countdownTimer 395 # @ fergcorp_countdownTimer 396 #: fergcorp_countdownTimer.php:828 fergcorp_countdownTimer.php:926 397 #: fergcorp_countdownTimer.php:1055 fergcorp_countdownTimer.php:1056 398 #, php-format 362 399 msgid "%d month," 363 400 msgid_plural "%d months," … … 365 402 msgstr[1] "%d meses," 366 403 367 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 368 #: fergcorp_countdownTimer.php:820 369 #: fergcorp_countdownTimer.php:1028 370 #: fergcorp_countdownTimer.php:1029 371 #: fergcorp_countdownTimer.php:887 372 #, php-format 373 #@ fergcorp_countdownTimer 404 # @ fergcorp_countdownTimer 405 #: fergcorp_countdownTimer.php:855 fergcorp_countdownTimer.php:923 406 #: fergcorp_countdownTimer.php:1058 fergcorp_countdownTimer.php:1059 407 #, php-format 374 408 msgid "%d week," 375 409 msgid_plural "%d weeks," … … 377 411 msgstr[1] "%d semanas," 378 412 379 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 380 #: fergcorp_countdownTimer.php:831 381 #: fergcorp_countdownTimer.php:1031 382 #: fergcorp_countdownTimer.php:1032 383 #: fergcorp_countdownTimer.php:884 384 #, php-format 385 #@ fergcorp_countdownTimer 413 # @ fergcorp_countdownTimer 414 #: fergcorp_countdownTimer.php:866 fergcorp_countdownTimer.php:920 415 #: fergcorp_countdownTimer.php:1061 fergcorp_countdownTimer.php:1062 416 #, php-format 386 417 msgid "%d day," 387 418 msgid_plural "%d days," … … 389 420 msgstr[1] "%d días," 390 421 391 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 392 #: fergcorp_countdownTimer.php:844 393 #: fergcorp_countdownTimer.php:1034 394 #: fergcorp_countdownTimer.php:1035 395 #: fergcorp_countdownTimer.php:881 396 #, php-format 397 #@ fergcorp_countdownTimer 422 # @ fergcorp_countdownTimer 423 #: fergcorp_countdownTimer.php:879 fergcorp_countdownTimer.php:917 424 #: fergcorp_countdownTimer.php:1064 fergcorp_countdownTimer.php:1065 425 #, php-format 398 426 msgid "%d hour," 399 427 msgid_plural "%d hours," … … 401 429 msgstr[1] "%d horas," 402 430 403 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! 404 #: fergcorp_countdownTimer.php:857 405 #: fergcorp_countdownTimer.php:1037 406 #: fergcorp_countdownTimer.php:1038 407 #: fergcorp_countdownTimer.php:878 408 #, php-format 409 #@ fergcorp_countdownTimer 431 # @ fergcorp_countdownTimer 432 #: fergcorp_countdownTimer.php:892 fergcorp_countdownTimer.php:914 433 #: fergcorp_countdownTimer.php:1067 fergcorp_countdownTimer.php:1068 434 #, php-format 410 435 msgid "%d minute," 411 436 msgid_plural "%d minutes," … … 413 438 msgstr[1] "%d minutos," 414 439 415 #: fergcorp_countdownTimer.php:869 416 #: fergcorp_countdownTimer.php:875 417 #: fergcorp_countdownTimer.php:1040 418 #: fergcorp_countdownTimer.php:1041 419 #, php-format 420 #@ fergcorp_countdownTimer 440 # @ fergcorp_countdownTimer 441 #: fergcorp_countdownTimer.php:904 fergcorp_countdownTimer.php:911 442 #: fergcorp_countdownTimer.php:1070 fergcorp_countdownTimer.php:1071 443 #, php-format 421 444 msgid "%d second," 422 445 msgid_plural "%d seconds," … … 424 447 msgstr[1] "%d segundos," 425 448 426 #: fergcorp_countdownTimer.php:1289 427 #@ fergcorp_countdownTimer 449 # @ fergcorp_countdownTimer 450 #: fergcorp_countdownTimer.php:1318 451 msgid "Adds the Countdown Timer" 452 msgstr "Agrega el temporizador de cuenta regresiva" 453 454 # @ fergcorp_countdownTimer 455 #: fergcorp_countdownTimer.php:1334 428 456 msgid "Title:" 429 457 msgstr "Título:" 430 458 431 #: fergcorp_countdownTimer.php:309 432 #@ fergcorp_countdownTimer 433 msgid "Weeks:" 434 msgstr "Semanas:" 435 459 # @ fergcorp_countdownTimer 460 #: fergcorp_countdownTimer.php:1336 461 msgid "Maximum # of events to show:" 462 msgstr "Máximo # de eventos a mostrar:" 463 464 # @ fergcorp_countdownTimer 465 #: fergcorp_countdownTimer.php:1338 466 msgid "Notes:" 467 msgstr "Notas:" 468 469 # @ fergcorp_countdownTimer 470 #: fergcorp_countdownTimer.php:1338 471 msgid "Set 'Maximum # of events' to '-1' if you want no limit." 472 msgstr "Marca el 'Máximo # de eventos' a '-1' si no quiere límites." -
countdown-timer/tags/3.0.6 /lang/fergcorp_countdownTimer-it_IT.po
r558835 r908020 23 23 #@ fergcorp_countdownTimer 24 24 msgid "Are you sure you wish to delete" 25 msgstr "Sei sicuro che vuoicancellare?"25 msgstr "Sei sicuro di voler cancellare?" 26 26 27 27 #: fergcorp_countdownTimer.php:247 … … 43 43 #@ fergcorp_countdownTimer 44 44 msgid "I've coded and supported this plugin for several years now, however I am a full-time engineer with a real, full-time job and really only do this programming thing on the side for the love of it. If you would like to continue to see updates, please consider donating above." 45 msgstr "Ho c odificato e sostenuto questo plugin per diversi anni, però io sono un ingegnere a tempo pieno con un vero e proprio, lavoro a tempo pieno e in realtà solo fare questa cosa di programmazione sul lato per l'amore di essa. Se volete continuare a vedere gli aggiornamenti, perche donare sopra."45 msgstr "Ho creato e mantenuto questo plugin per diversi anni, sono però un ingegnere con un lavoro a tempo pieno ed ho creato questo plugin solo per il gusto di farlo. Se volete aiutarmi a continuare gli aggiornamenti, perfavore considerate una donazione tramite il link in alto." 46 46 47 47 #: fergcorp_countdownTimer.php:256 … … 55 55 #@ fergcorp_countdownTimer 56 56 msgid "Countdown timer uses <a %s>PHP's strtotime function</a> and will parse about any English textual datetime description." 57 msgstr "Countdown timer usa <a%s>la funzione PHP strtotime</a> e farà un parse di ogni descrizione testuale di date o orari."57 msgstr "Countdown timer usa <a%s>la funzione PHP strtotime</a> ed è in grado di leggere qualunque stesura testuale di date in formato inglese." 58 58 59 59 #: fergcorp_countdownTimer.php:470 … … 66 66 #@ fergcorp_countdownTimer 67 67 msgid "To insert the Countdown Timer into your sidebar, you can use the <a %s>Countdown Timer Widget</a>." 68 msgstr " Sei arrivato fino a qui, ti manca poco. Per inserire il Countdown Timer nella tua sidebar, puoi usare il widget del Countdown Timer, se hai i widgets attivi (o la possibilità di attivarli)."68 msgstr "Per inserire Countdown Timer nella tua sidebar, puoi usare il <a %s>widget di Countdown Timer</a>." 69 69 70 70 #: fergcorp_countdownTimer.php:481 … … 72 72 #@ fergcorp_countdownTimer 73 73 msgid "If you want to insert the Countdown Timer into a page or post, you can use the following <abbr %s %s>shortcodes</abbr> to return all or a limited number of Countdown Timers, respectively:" 74 msgstr "Se si desidera inserire il conteggio alla rovescia in una pagina o un post, è possibile utilizzare i seguenti <abbr %s %s>codici brevi</abbr> per restituire in tutto o in un numero limitato di Countdown Timer, rispettivamente:"74 msgstr "Se vuoi inserire Countdown Timer in una pagina o un post, puoi utilizzare i seguenti <abbr %s %s>codici brevi</abbr> per visualizzare tutti o in un numero predefinito di timer, rispettivamente:" 75 75 76 76 #: fergcorp_countdownTimer.php:481 77 77 #@ fergcorp_countdownTimer 78 78 msgid "A shortcode is a WordPress-specific code that lets you do nifty things with very little effort. Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut." 79 msgstr "Un shortcode è un codice specifico per WordPress che permette di fare le cose elegante con il minimo sforzo. Codici brevi possibile incorporare i file o creare oggetti che normalmente richiedono molto complicato, il codice di brutto in una sola riga. Shortcode = scelta rapida."79 msgstr "Un codice breve è un codice specifico di WordPress che permette di fare grandi cose col minimo sforzo. Con una sola linea di testo, i codici brevi possono incorporare file o creare oggetti che normalmente richiedono un sacco di codice brutto e complicato." 80 80 81 81 #: fergcorp_countdownTimer.php:488 82 82 #@ fergcorp_countdownTimer 83 83 msgid "Where <em>##</em> is maximum number of results to be displayed - ordered by date." 84 msgstr "Dove <em># #</em> è il numero massimo di risultati da visualizzare - ordinati per data."84 msgstr "Dove <em>##</em> è il numero massimo di risultati da visualizzare - ordinati per data." 85 85 86 86 #: fergcorp_countdownTimer.php:489 … … 88 88 #@ fergcorp_countdownTimer 89 89 msgid "If you want to insert individual countdown timers, such as in posts or on pages, you can use the following shortcode:" 90 msgstr "Se vuoi organizzarti i timer del countdown nei post o nelle pagine, puoi usare il codice seguente:"90 msgstr "Se vuoi inserire singoli timer nei post o nelle pagine, puoi usare il seguente codice breve:" 91 91 92 92 #: fergcorp_countdownTimer.php:491 … … 99 99 #@ fergcorp_countdownTimer 100 100 msgid "Where <em>ENTER_DATE_HERE</em> uses <a %s>PHP's strtotime function</a> and will parse about any English textual datetime description." 101 msgstr " Countdown timer usa <a %s>la funzione PHP strtotime</a> e farà un parse di ogni descrizione testuale di date o orari."101 msgstr "Dove <em>ENTER_DATE_HERE</em> usa <a%s>la funzione PHP strtotime</a> ed è in grado di leggere qualunque stesura testuale di date in formato inglese." 102 102 103 103 #: fergcorp_countdownTimer.php:270 … … 105 105 #@ fergcorp_countdownTimer 106 106 msgid "Installation and Usage Notes" 107 msgstr "Note d'installazione "107 msgstr "Note d'installazione e utilizzo" 108 108 109 109 #: fergcorp_countdownTimer.php:333 … … 130 130 #@ fergcorp_countdownTimer 131 131 msgid "Display \"Time since\"" 132 msgstr "Mostra \" Da quando\""132 msgstr "Mostra \"Tempo trascorso\"" 133 133 134 134 #: fergcorp_countdownTimer.php:435 … … 157 157 #@ fergcorp_countdownTimer 158 158 msgid "How long the timer remain visable if \"Display 'Time Since'\" is ticked:" 159 msgstr "Per quanto tempo il timer resta visibile se \"Mostra ' Da Quando'\" è selezionato:"159 msgstr "Per quanto tempo il timer resta visibile se \"Mostra 'Tempo Trascorso'\" è selezionato:" 160 160 161 161 #: fergcorp_countdownTimer.php:520 … … 172 172 #@ fergcorp_countdownTimer 173 173 msgid "By default, WordPress does not parse shortcodes that are in excerpts. If you want to enable this functionality, you can do so here. Note that this will enable the parsing of <em>all</em> shortcodes in the excerpt, not just the ones associated with Countdown Timer." 174 msgstr "Per impostazione predefinita, WordPress non analizzare codici brevi che sono p er estratti. Se si desidera attivare questa funzionalità, potete farlo qui. Si noti che questo permetterà l'analisi di <em>tutti i</em> codici brevi in estratto, non solo quelle associatea Countdown Timer."174 msgstr "Per impostazione predefinita, WordPress non analizzare codici brevi che sono presenti negli estratti. Se vuoi attivare questa funzionalità, puoi farlo qui. Tieni presente che questo permetterà l'analisi di <em>tutti</em> i codici brevi negli estratti, non solo quelli associati a Countdown Timer." 175 175 176 176 #: fergcorp_countdownTimer.php:530 … … 223 223 #@ fergcorp_countdownTimer 224 224 msgid "Strip non-significant zeros:" 225 msgstr " Arrotondale cifre non significative:"225 msgstr "Togli le cifre non significative:" 226 226 227 227 #: fergcorp_countdownTimer.php:273 228 228 #@ fergcorp_countdownTimer 229 229 msgid "Countdown Time Display" 230 msgstr "Unità di tempo d i Countdown visualizzate"230 msgstr "Unità di tempo da visualizzare" 231 231 232 232 #: fergcorp_countdownTimer.php:551 … … 234 234 #@ fergcorp_countdownTimer 235 235 msgid "If you set 'onHover Time Format', hovering over the time left will show the user what the date of the event is. onHover Time Format uses <a %s>PHP's Date() function</a>." 236 msgstr "Se imposti 'onHover Time Format', passando sopra il mouse su tempo visualizzato mostrerà all'utente qual è la data dell'evento. onHover Time Format utilizza:"236 msgstr "Se imposti 'onHover Time Format', passando il cursore sopra il tempo rimanente verrà mostrato all'utente qual è la data dell'evento. onHover Time Format utilizza <a %s>la funzione Date() di PHP</a>." 237 237 238 238 #: fergcorp_countdownTimer.php:552 … … 245 245 #@ fergcorp_countdownTimer 246 246 msgid "goes to" 247 msgstr " visualizza"247 msgstr "diventa" 248 248 249 249 #: fergcorp_countdownTimer.php:274 … … 266 266 #@ fergcorp_countdownTimer 267 267 msgid "Examples/Defaults" 268 msgstr "Esempi/ Defaults"268 msgstr "Esempi/Impostazioni predefinite" 269 269 270 270 #: fergcorp_countdownTimer.php:586 … … 327 327 #@ fergcorp_countdownTimer 328 328 msgid "Adds the Countdown Timer" 329 msgstr " Unità di tempo di Countdown visualizzate"329 msgstr "Aggiunge Countdown Timer" 330 330 331 331 #: fergcorp_countdownTimer.php:174 332 332 #@ fergcorp_countdownTimer 333 333 msgid "Countdown Timer Settings" 334 msgstr " "334 msgstr "Impostazioni di Contdown Timer" 335 335 336 336 #: fergcorp_countdownTimer.php:174 … … 338 338 #@ fergcorp_countdownTimer 339 339 msgid "Countdown Timer" 340 msgstr " "340 msgstr "Countdown Timer" 341 341 342 342 #. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code! … … 410 410 msgid_plural "%d minutes," 411 411 msgstr[0] "%d minuto," 412 msgstr[1] "%d minut e,"412 msgstr[1] "%d minuti," 413 413 414 414 #: fergcorp_countdownTimer.php:869 … … 432 432 msgid "Weeks:" 433 433 msgstr "Settimane:" 434 -
countdown-timer/tags/3.0.6 /readme.txt
r655348 r908020 3 3 Donate link: http://www.andrewferguson.net/2007/03/08/general-note/ 4 4 Tags: countdown, timer, count, date, event, widget, countup, age, fun, time, international, i18n, countdown timer, wedding, localization, i18n 5 Requires at least: 3. 56 Tested up to: 3. 57 Stable tag: 3.0. 55 Requires at least: 3.7 6 Tested up to: 3.9 7 Stable tag: 3.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 176 176 177 177 == Upgrade Notice == 178 = 3.0. 5=179 A couple of major bug fixes that deal resolve issues with using PHP < 5.3 and scope of object during activation178 = 3.0.6 = 179 A couple of major bug fixes that resolve issues with using PHP 5.2 or higher and scope of object during activation. 180 180 181 181 == Changelog == 182 183 = 3.0.6 = 184 Relase date: 5/4/2014 185 186 * Bug fix: resolved "white screen of death" issue for PHP > 5.2 182 187 183 188 = 3.0.5 =
Note: See TracChangeset
for help on using the changeset viewer.