Plugin Directory

Changeset 908020


Ignore:
Timestamp:
05/05/2014 05:11:46 AM (12 years ago)
Author:
fergbrain
Message:

Tagging version 3.0.6

Location:
countdown-timer/tags/3.0.6
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • countdown-timer/tags/3.0.6 /fergcorp_countdownTimer.php

    r655348 r908020  
    44Plugin URI: http://www.andrewferguson.net/wordpress-plugins/countdown-timer/
    55Description: 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.5
     6Version: 3.0.6
    77Author: Andrew Ferguson
    88Author URI: http://www.andrewferguson.net
    99
    1010Countdown 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-2013 Andrew Ferguson
     11Copyright (c) 2005-2014 Andrew Ferguson
    1212
    1313This program is free software; you can redistribute it and/or
     
    111111        $this->loadSettings();
    112112
    113         if(version_compare($this->version, "3.0.5", "<")){
     113        if(version_compare($this->version, "3.0.6", "<")){
    114114            add_action('admin_init', array( &$this, 'install' ) );
    115115            add_action('admin_init', array( &$this, 'loadSettings' ) );
     
    10151015    public function sanitize($input){
    10161016
     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
    10171021                $event_object_array = array();
    10181022
     
    10901094        $plugin_data = get_plugin_data(__FILE__);
    10911095
    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
    11641129
    11651130        //Update version number...last thing
     
    12511216    public function __construct ($time, $title = NULL, $url = NULL, $timeSince = NULL){
    12521217        $this->setTitle($title);
    1253         $this->setTime($time);
     1218        $this->setTimestamp($time);
    12541219        $this->setURL($url);
    12551220        $this->setTimeSince($timeSince);
     
    12591224
    12601225    public function getTimestamp() {
    1261          return method_exists('DateTime', 'getTimestamp') ? parent::getTimestamp() : $this->time;
     1226        return $this->time; //ugh PHP suuuucks with time manipulation
    12621227    }
    12631228
     
    12661231    }
    12671232
    1268     public function setTime ( $time ) {
     1233    public function setTimestamp ( $time ) {
    12691234        $this->time = $time;
    12701235    }
  • countdown-timer/tags/3.0.6 /lang/fergcorp_countdownTimer-es_ES.po

    r558835 r908020  
    33"Project-Id-Version: Countdown Timer v3.0 Beta 2\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2012-05-15 23:09-0800\n"
    6 "PO-Revision-Date: 2012-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"
    88"Language-Team: \n"
     9"Language: es_ES\n"
    910"MIME-Version: 1.0\n"
    1011"Content-Type: text/plain; charset=UTF-8\n"
    1112"Content-Transfer-Encoding: 8bit\n"
    1213"Plural-Forms: nplurals=2; plural=n != 1;\n"
    13 "X-Poedit-Language: Spanish\n"
    14 "X-Poedit-Country: SPAIN\n"
    1514"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"
    1717"X-Poedit-Basepath: ../\n"
    18 "X-Poedit-Bookmarks: \n"
     18"X-Textdomain-Support: yes\n"
     19"X-Generator: Poedit 1.5.4\n"
    1920"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
     24msgid "Countdown Timer Settings"
     25msgstr "Configuración de Countdown Timer"
     26
     27# @ fergcorp_countdownTimer
     28#: fergcorp_countdownTimer.php:205 fergcorp_countdownTimer.php:1329
     29msgid "Countdown Timer"
     30msgstr ""
     31
     32# @ fergcorp_countdownTimer
     33#: fergcorp_countdownTimer.php:231
    2434msgid "Are you sure you wish to delete"
    2535msgstr "Está seguro de querer borrarlo"
    2636
    27 #: fergcorp_countdownTimer.php:247
    28 #@ fergcorp_countdownTimer
     37# @ fergcorp_countdownTimer
     38#: fergcorp_countdownTimer.php:266
     39msgid "Resources"
     40msgstr "Recursos"
     41
     42# @ fergcorp_countdownTimer
     43#: fergcorp_countdownTimer.php:280
     44#, fuzzy
     45msgid "Installation and Usage Notes"
     46msgstr "Notas de instalación"
     47
     48# @ fergcorp_countdownTimer
     49#: fergcorp_countdownTimer.php:281
     50msgid "One Time Events"
     51msgstr "Eventos"
     52
     53# @ fergcorp_countdownTimer
     54#: fergcorp_countdownTimer.php:282
     55msgid "Management"
     56msgstr "Gestión"
     57
     58# @ fergcorp_countdownTimer
     59#: fergcorp_countdownTimer.php:283
     60msgid "Countdown Time Display"
     61msgstr "Tiempo del Countdown en pantalla"
     62
     63# @ fergcorp_countdownTimer
     64#: fergcorp_countdownTimer.php:284 fergcorp_countdownTimer.php:582
     65msgid "onHover Time Format"
     66msgstr "Formato de tiempo (On Hover)"
     67
     68# @ fergcorp_countdownTimer
     69#: fergcorp_countdownTimer.php:285
     70msgid "Display Format Options"
     71msgstr "Mostrar Opciones del Formato"
     72
     73# @ fergcorp_countdownTimer
     74#: fergcorp_countdownTimer.php:286
     75msgid "Example Display"
     76msgstr "Ejemplo de lo que se mostrará"
     77
     78# @ fergcorp_countdownTimer
     79#: fergcorp_countdownTimer.php:293
     80msgid "Save Changes"
     81msgstr "Guardar cambios"
     82
     83# @ fergcorp_countdownTimer
     84#: fergcorp_countdownTimer.php:318
    2985msgid "Plugin Homepage"
    3086msgstr "Página del Plugin"
    3187
    32 #: fergcorp_countdownTimer.php:248
    33 #@ fergcorp_countdownTimer
     88# @ fergcorp_countdownTimer
     89#: fergcorp_countdownTimer.php:319
    3490msgid "Support Forum"
    3591msgstr "Foro de soporte"
    3692
    37 #: fergcorp_countdownTimer.php:249
    38 #@ fergcorp_countdownTimer
     93# @ fergcorp_countdownTimer
     94#: fergcorp_countdownTimer.php:320
    3995msgid "Amazon Wishlist"
    4096msgstr "Mi lista de deseos Amazon"
    4197
    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
     100msgid ""
     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."
     105msgstr ""
     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
     113msgid "This setting controls what units of time are displayed."
     114msgstr "Estas opciones controlan que unidades de tiempo saldrán en pantalla."
     115
     116# @ fergcorp_countdownTimer
     117#: fergcorp_countdownTimer.php:341
     118msgid "Years:"
     119msgstr "Años:"
     120
     121# @ fergcorp_countdownTimer
     122#: fergcorp_countdownTimer.php:342
     123msgid "Months:"
     124msgstr "Meses:"
     125
     126# @ fergcorp_countdownTimer
     127#: fergcorp_countdownTimer.php:343
     128msgid "Weeks:"
     129msgstr "Semanas:"
     130
     131# @ fergcorp_countdownTimer
     132#: fergcorp_countdownTimer.php:344
     133msgid "Days:"
     134msgstr "Días:"
     135
     136# @ fergcorp_countdownTimer
     137#: fergcorp_countdownTimer.php:345
     138msgid "Hours:"
     139msgstr "Horas:"
     140
     141# @ fergcorp_countdownTimer
     142#: fergcorp_countdownTimer.php:346
     143msgid "Minutes:"
     144msgstr "Minutos:"
     145
     146# @ fergcorp_countdownTimer
     147#: fergcorp_countdownTimer.php:347 fergcorp_countdownTimer.php:536
     148msgid "Seconds:"
     149msgstr "Segundos:"
     150
     151# @ fergcorp_countdownTimer
     152#: fergcorp_countdownTimer.php:348
     153msgid "Strip non-significant zeros:"
     154msgstr "Evitar ceros no significativos:"
     155
     156# @ fergcorp_countdownTimer
     157#: fergcorp_countdownTimer.php:367
     158msgid "Delete"
     159msgstr "Eliminar"
     160
     161# @ fergcorp_countdownTimer
     162#: fergcorp_countdownTimer.php:368
     163msgid "Event Date"
     164msgstr "Fecha del Evento"
     165
     166# @ fergcorp_countdownTimer
     167#: fergcorp_countdownTimer.php:369
     168msgid "Event Title"
     169msgstr "Título del Evento"
     170
     171# @ fergcorp_countdownTimer
     172#: fergcorp_countdownTimer.php:370
     173msgid "Link"
     174msgstr "Enlace"
     175
     176# @ fergcorp_countdownTimer
     177#: fergcorp_countdownTimer.php:371
     178msgid "Display \"Time since\""
     179msgstr "Mostrar \"Tiempo desde\""
     180
     181# @ fergcorp_countdownTimer
     182#: fergcorp_countdownTimer.php:460
     183msgid "Automatically delete 'One Time Events' after they have occured?"
     184msgstr "Eliminar automáticamente los 'Eventos' después de su finalización?"
     185
     186# @ fergcorp_countdownTimer
     187#: fergcorp_countdownTimer.php:469 fergcorp_countdownTimer.php:1228
     188msgid "Yes"
     189msgstr "Sí"
     190
     191# @ fergcorp_countdownTimer
     192#: fergcorp_countdownTimer.php:479 fergcorp_countdownTimer.php:1238
     193msgid "No"
     194msgstr "No"
     195
     196# @ fergcorp_countdownTimer
     197#: fergcorp_countdownTimer.php:494
     198#, php-format
     199msgid ""
     200"Countdown timer uses <a %s>PHP's strtotime function</a> and will parse about "
     201"any English textual datetime description."
     202msgstr ""
     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
    60208msgid "Examples of some (but not all) valid dates"
    61209msgstr "Ejemplos de algunas (no todas) fechas válidas"
    62210
    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
     214msgid ""
     215"To insert the Countdown Timer into your sidebar, you can use the <a "
     216"%s>Countdown Timer Widget</a>."
     217msgstr ""
     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
     225msgid ""
     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:"
     229msgstr ""
     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
    76236#, 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
     237msgid ""
     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."
     242msgstr ""
     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
    82250#, 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
     251msgid ""
     252"Where <em>##</em> is maximum number of results to be displayed - ordered by "
     253"date."
     254msgstr ""
     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
     260msgid ""
     261"If you want to insert individual countdown timers, such as in posts or on "
     262"pages, you can use the following shortcode:"
     263msgstr ""
     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
    94269msgid "Time until my birthday:"
    95270msgstr "Tiempo que falta para mi cumpleaños:"
    96271
    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
     275msgid ""
     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."
     278msgstr ""
     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
    104284#, 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
     285msgid ""
     286"How long the timer remain visable if \"Display 'Time Since'\" is ticked:"
     287msgstr ""
     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
    157293#, fuzzy
    158 #@ fergcorp_countdownTimer
    159 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:520
    163 #, fuzzy
    164 #@ fergcorp_countdownTimer
    165294msgid "(0 = infinite; 86400 seconds = 1 day; 604800 seconds = 1 week)"
    166295msgstr "(0 = infinito; 86.400 segundos = 1 día; 604800 segundos = 1 semana)"
    167296
    168 #: fergcorp_countdownTimer.php:522
    169 #@ fergcorp_countdownTimer
     297# @ fergcorp_countdownTimer
     298#: fergcorp_countdownTimer.php:547
    170299msgid "Enable JavaScript countdown:"
    171300msgstr "Habilitar JavaScript countdown:"
    172301
    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
     304msgid ""
     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."
     309msgstr ""
     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
    180317msgid "Enable shortcodes in the_excerpt:"
    181318msgstr "Habilitar códigos cortos en the_excerpt:"
    182319
    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
     323msgid ""
     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>."
     327msgstr ""
     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
    242334msgid "Examples"
    243335msgstr "Ejemplos"
    244336
    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
    248339msgid "goes to"
    249340msgstr "equivale a"
    250341
    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
     344msgid ""
     345"This setting allows you to customize how each event is styled and wrapped."
     346msgstr ""
     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
     352msgid ""
     353"<strong>Title Suffix</strong> sets the content that appears immediately "
     354"after title and before the timer."
     355msgstr ""
     356"<strong>Mostrar Estilo</strong> establece el atributo de estilo CSS para "
     357"cada temporizador."
     358
     359# @ fergcorp_countdownTimer
     360#: fergcorp_countdownTimer.php:609
    269361msgid "Examples/Defaults"
    270362msgstr "Ejemplos/Predeterminados"
    271363
    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
    275366msgid "Title Suffix"
    276367msgstr "Sufijo"
    277368
    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
    295371msgid "No dates present"
    296372msgstr "No hay fechas presentes"
    297373
    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
    302377msgid "%s ago"
    303 msgstr "Hace%s"
    304 
    305 #: fergcorp_countdownTimer.php:721
    306 #: fergcorp_countdownTimer.php:1045
    307 #, php-format
    308 #@ fergcorp_countdownTimer
     378msgstr "Hace %s"
     379
     380# @ fergcorp_countdownTimer
     381#: fergcorp_countdownTimer.php:756 fergcorp_countdownTimer.php:1075
     382#, php-format
    309383msgid "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
     384msgstr "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
    350390msgid "%d year,"
    351391msgid_plural "%d years,"
     
    353393msgstr[1] "%d años,"
    354394
    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
    362399msgid "%d month,"
    363400msgid_plural "%d months,"
     
    365402msgstr[1] "%d meses,"
    366403
    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
    374408msgid "%d week,"
    375409msgid_plural "%d weeks,"
     
    377411msgstr[1] "%d semanas,"
    378412
    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
    386417msgid "%d day,"
    387418msgid_plural "%d days,"
     
    389420msgstr[1] "%d días,"
    390421
    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
    398426msgid "%d hour,"
    399427msgid_plural "%d hours,"
     
    401429msgstr[1] "%d horas,"
    402430
    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
    410435msgid "%d minute,"
    411436msgid_plural "%d minutes,"
     
    413438msgstr[1] "%d minutos,"
    414439
    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
    421444msgid "%d second,"
    422445msgid_plural "%d seconds,"
     
    424447msgstr[1] "%d segundos,"
    425448
    426 #: fergcorp_countdownTimer.php:1289
    427 #@ fergcorp_countdownTimer
     449# @ fergcorp_countdownTimer
     450#: fergcorp_countdownTimer.php:1318
     451msgid "Adds the Countdown Timer"
     452msgstr "Agrega el temporizador de cuenta regresiva"
     453
     454# @ fergcorp_countdownTimer
     455#: fergcorp_countdownTimer.php:1334
    428456msgid "Title:"
    429457msgstr "Título:"
    430458
    431 #: fergcorp_countdownTimer.php:309
    432 #@ fergcorp_countdownTimer
    433 msgid "Weeks:"
    434 msgstr "Semanas:"
    435 
     459# @ fergcorp_countdownTimer
     460#: fergcorp_countdownTimer.php:1336
     461msgid "Maximum # of events to show:"
     462msgstr "Máximo # de eventos a mostrar:"
     463
     464# @ fergcorp_countdownTimer
     465#: fergcorp_countdownTimer.php:1338
     466msgid "Notes:"
     467msgstr "Notas:"
     468
     469# @ fergcorp_countdownTimer
     470#: fergcorp_countdownTimer.php:1338
     471msgid "Set 'Maximum # of events' to '-1' if you want no limit."
     472msgstr "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  
    2323#@ fergcorp_countdownTimer
    2424msgid "Are you sure you wish to delete"
    25 msgstr "Sei sicuro che vuoi cancellare?"
     25msgstr "Sei sicuro di voler cancellare?"
    2626
    2727#: fergcorp_countdownTimer.php:247
     
    4343#@ fergcorp_countdownTimer
    4444msgid "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 codificato 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&#39;amore di essa. Se volete continuare a vedere gli aggiornamenti, perche donare sopra."
     45msgstr "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."
    4646
    4747#: fergcorp_countdownTimer.php:256
     
    5555#@ fergcorp_countdownTimer
    5656msgid "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."
     57msgstr "Countdown timer usa <a%s>la funzione PHP strtotime</a> ed è in grado di leggere qualunque stesura testuale di date in formato inglese."
    5858
    5959#: fergcorp_countdownTimer.php:470
     
    6666#@ fergcorp_countdownTimer
    6767msgid "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)."
     68msgstr "Per inserire Countdown Timer nella tua sidebar, puoi usare il <a %s>widget di Countdown Timer</a>."
    6969
    7070#: fergcorp_countdownTimer.php:481
     
    7272#@ fergcorp_countdownTimer
    7373msgid "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:"
     74msgstr "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:"
    7575
    7676#: fergcorp_countdownTimer.php:481
    7777#@ fergcorp_countdownTimer
    7878msgid "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."
     79msgstr "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."
    8080
    8181#: fergcorp_countdownTimer.php:488
    8282#@ fergcorp_countdownTimer
    8383msgid "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."
     84msgstr "Dove <em>##</em> è il numero massimo di risultati da visualizzare - ordinati per data."
    8585
    8686#: fergcorp_countdownTimer.php:489
     
    8888#@ fergcorp_countdownTimer
    8989msgid "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:"
     90msgstr "Se vuoi inserire singoli timer nei post o nelle pagine, puoi usare il seguente codice breve:"
    9191
    9292#: fergcorp_countdownTimer.php:491
     
    9999#@ fergcorp_countdownTimer
    100100msgid "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."
     101msgstr "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."
    102102
    103103#: fergcorp_countdownTimer.php:270
     
    105105#@ fergcorp_countdownTimer
    106106msgid "Installation and Usage Notes"
    107 msgstr "Note d'installazione"
     107msgstr "Note d'installazione e utilizzo"
    108108
    109109#: fergcorp_countdownTimer.php:333
     
    130130#@ fergcorp_countdownTimer
    131131msgid "Display \"Time since\""
    132 msgstr "Mostra \"Da quando\""
     132msgstr "Mostra \"Tempo trascorso\""
    133133
    134134#: fergcorp_countdownTimer.php:435
     
    157157#@ fergcorp_countdownTimer
    158158msgid "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:"
     159msgstr "Per quanto tempo il timer resta visibile se \"Mostra 'Tempo Trascorso'\" è selezionato:"
    160160
    161161#: fergcorp_countdownTimer.php:520
     
    172172#@ fergcorp_countdownTimer
    173173msgid "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 per estratti. Se si desidera attivare questa funzionalità, potete farlo qui. Si noti che questo permetterà l&#39;analisi di <em>tutti i</em> codici brevi in estratto, non solo quelle associate a Countdown Timer."
     174msgstr "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&#39;analisi di <em>tutti</em> i codici brevi negli estratti, non solo quelli associati a Countdown Timer."
    175175
    176176#: fergcorp_countdownTimer.php:530
     
    223223#@ fergcorp_countdownTimer
    224224msgid "Strip non-significant zeros:"
    225 msgstr "Arrotonda le cifre non significative:"
     225msgstr "Togli le cifre non significative:"
    226226
    227227#: fergcorp_countdownTimer.php:273
    228228#@ fergcorp_countdownTimer
    229229msgid "Countdown Time Display"
    230 msgstr "Unità di tempo di Countdown visualizzate"
     230msgstr "Unità di tempo da visualizzare"
    231231
    232232#: fergcorp_countdownTimer.php:551
     
    234234#@ fergcorp_countdownTimer
    235235msgid "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:"
     236msgstr "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>."
    237237
    238238#: fergcorp_countdownTimer.php:552
     
    245245#@ fergcorp_countdownTimer
    246246msgid "goes to"
    247 msgstr "visualizza"
     247msgstr "diventa"
    248248
    249249#: fergcorp_countdownTimer.php:274
     
    266266#@ fergcorp_countdownTimer
    267267msgid "Examples/Defaults"
    268 msgstr "Esempi/Defaults"
     268msgstr "Esempi/Impostazioni predefinite"
    269269
    270270#: fergcorp_countdownTimer.php:586
     
    327327#@ fergcorp_countdownTimer
    328328msgid "Adds the Countdown Timer"
    329 msgstr "Unità di tempo di Countdown visualizzate"
     329msgstr "Aggiunge Countdown Timer"
    330330
    331331#: fergcorp_countdownTimer.php:174
    332332#@ fergcorp_countdownTimer
    333333msgid "Countdown Timer Settings"
    334 msgstr ""
     334msgstr "Impostazioni di Contdown Timer"
    335335
    336336#: fergcorp_countdownTimer.php:174
     
    338338#@ fergcorp_countdownTimer
    339339msgid "Countdown Timer"
    340 msgstr ""
     340msgstr "Countdown Timer"
    341341
    342342#. gettext fix: duplicate plural forms found, that may be ambiguous! Please check the code!
     
    410410msgid_plural "%d minutes,"
    411411msgstr[0] "%d minuto,"
    412 msgstr[1] "%d minute,"
     412msgstr[1] "%d minuti,"
    413413
    414414#: fergcorp_countdownTimer.php:869
     
    432432msgid "Weeks:"
    433433msgstr "Settimane:"
    434 
  • countdown-timer/tags/3.0.6 /readme.txt

    r655348 r908020  
    33Donate link: http://www.andrewferguson.net/2007/03/08/general-note/
    44Tags: countdown, timer, count, date, event, widget, countup, age, fun, time, international, i18n, countdown timer, wedding, localization, i18n
    5 Requires at least: 3.5
    6 Tested up to: 3.5
    7 Stable tag: 3.0.5
     5Requires at least: 3.7
     6Tested up to: 3.9
     7Stable tag: 3.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    176176
    177177== 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 activation
     178= 3.0.6 =
     179A couple of major bug fixes that resolve issues with using PHP 5.2 or higher and scope of object during activation.
    180180
    181181== Changelog ==
     182
     183= 3.0.6 =
     184Relase date: 5/4/2014
     185
     186*   Bug fix: resolved "white screen of death" issue for PHP > 5.2
    182187
    183188= 3.0.5 =
Note: See TracChangeset for help on using the changeset viewer.