Plugin Directory

Changeset 913404


Ignore:
Timestamp:
05/13/2014 04:45:48 PM (12 years ago)
Author:
RightPress
Message:

Minor bug fix

Location:
chimpy-lite
Files:
11 edited
8 copied

Legend:

Unmodified
Added
Removed
  • chimpy-lite/tags/1.0.2/assets/css/style-admin.css

    r887908 r913404  
    237237
    238238.icon32-chimpy {
    239     background-image: url(../img/chimpy.png) !important;
    240     background-size: 32px 32px;
    241     background-position: 4px -1px !important;
    242     margin: 0 10px 0 0;
    243239}
    244240
     
    378374    font-size: 12px !important;
    379375}
    380 
    381 #tiptip_holder {
    382     display: none;
    383     position: absolute;
    384     top: 0;
    385     left: 0;
    386     z-index: 99999;
    387 }
    388 
    389 #tiptip_holder.tip_top {
    390     padding-bottom: 5px;
    391 }
    392 
    393 #tiptip_holder.tip_bottom {
    394     padding-top: 5px;
    395 }
    396 
    397 #tiptip_holder.tip_right {
    398     padding-left: 5px;
    399 }
    400 
    401 #tiptip_holder.tip_left {
    402     padding-right: 5px;
    403 }
    404 
    405 #tiptip_content {
    406     font-size: 11px;
    407     color: #fff;
    408     text-shadow: 0 0 2px #000;
    409     padding: 4px 8px;
    410     border: 1px solid rgba(255,255,255,0.25);
    411     background-color: rgb(25,25,25);
    412     background-color: rgba(25,25,25,0.92);
    413     background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
    414     border-radius: 3px;
    415     -webkit-border-radius: 3px;
    416     -moz-border-radius: 3px;
    417     box-shadow: 0 0 3px #555;
    418     -webkit-box-shadow: 0 0 3px #555;
    419     -moz-box-shadow: 0 0 3px #555;
    420 }
    421 
    422 #tiptip_arrow, #tiptip_arrow_inner {
    423     position: absolute;
    424     border-color: transparent;
    425     border-style: solid;
    426     border-width: 6px;
    427     height: 0;
    428     width: 0;
    429 }
    430 
    431 #tiptip_holder.tip_top #tiptip_arrow {
    432     border-top-color: #fff;
    433     border-top-color: rgba(255,255,255,0.35);
    434 }
    435 
    436 #tiptip_holder.tip_bottom #tiptip_arrow {
    437     border-bottom-color: #fff;
    438     border-bottom-color: rgba(255,255,255,0.35);
    439 }
    440 
    441 #tiptip_holder.tip_right #tiptip_arrow {
    442     border-right-color: #fff;
    443     border-right-color: rgba(255,255,255,0.35);
    444 }
    445 
    446 #tiptip_holder.tip_left #tiptip_arrow {
    447     border-left-color: #fff;
    448     border-left-color: rgba(255,255,255,0.35);
    449 }
    450 
    451 #tiptip_holder.tip_top #tiptip_arrow_inner {
    452     margin-top: -7px;
    453     margin-left: -6px;
    454     border-top-color: rgb(25,25,25);
    455     border-top-color: rgba(25,25,25,0.92);
    456 }
    457 
    458 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    459     margin-top: -5px;
    460     margin-left: -6px;
    461     border-bottom-color: rgb(25,25,25);
    462     border-bottom-color: rgba(25,25,25,0.92);
    463 }
    464 
    465 #tiptip_holder.tip_right #tiptip_arrow_inner {
    466     margin-top: -6px;
    467     margin-left: -5px;
    468     border-right-color: rgb(25,25,25);
    469     border-right-color: rgba(25,25,25,0.92);
    470 }
    471 
    472 #tiptip_holder.tip_left #tiptip_arrow_inner {
    473     margin-top: -6px;
    474     margin-left: -7px;
    475     border-left-color: rgb(25,25,25);
    476     border-left-color: rgba(25,25,25,0.92);
    477 }
    478 
    479 /* Webkit Hacks  */
    480 @media screen and (-webkit-min-device-pixel-ratio:0) { 
    481     #tiptip_content {
    482         padding: 4px 8px 5px 8px;
    483         background-color: rgba(45,45,45,0.88);
    484     }
    485     #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    486         border-bottom-color: rgba(45,45,45,0.88);
    487     }
    488     #tiptip_holder.tip_top #tiptip_arrow_inner {
    489         border-top-color: rgba(20,20,20,0.92);
    490     }
    491 }
  • chimpy-lite/tags/1.0.2/changelog

    r903145 r913404  
     1Version 1.0.2, May 13 2014
     2------------------------------------------------------------------------------------
     3[*] Several minor bug fixes
     4
    15Version 1.0.1, April 25 2014
    26------------------------------------------------------------------------------------
  • chimpy-lite/tags/1.0.2/chimpy-lite.php

    r903145 r913404  
    55 * Plugin URI: http://www.rightpress.net/chimpy-lite
    66 * Description: Chimpy is the best MailChimp plugin. Just enter your MailChimp API key and you are ready to go. It works smoothly and features professional design.
    7  * Version: 1.0.1
     7 * Version: 1.0.2
    88 * Author: RightPress
    99 * Author URI: http://www.rightpress.net
     
    4242define('CHIMPY_LITE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
    4343define('CHIMPY_LITE_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)));
    44 define('CHIMPY_LITE_VERSION', '1.0.1');
     44define('CHIMPY_LITE_VERSION', '1.0.2');
    4545
    4646if (!class_exists('ChimpyLite')) {
  • chimpy-lite/tags/1.0.2/includes/chimpy-lite-form.inc.php

    r887908 r913404  
    2424        require_once CHIMPY_LITE_PLUGIN_PATH . '/includes/chimpy-lite-prepare-form.inc.php';
    2525
    26         $html = chimpy_lite_prepare_form($form, $opt, 'shortcode');
     26        $html = chimpy_lite_prepare_form($form, $opt, 'shortcode', null, true);
    2727
    2828        echo $html;
  • chimpy-lite/tags/1.0.2/includes/chimpy-lite-prepare-form.inc.php

    r887908 r913404  
    1010 */
    1111if (!function_exists('chimpy_lite_prepare_form')) {
    12     function chimpy_lite_prepare_form($form, $opt, $context, $widget_args = null)
     12    function chimpy_lite_prepare_form($form, $opt, $context, $widget_args = null, $is_function = false)
    1313    {
    1414        $chimpy_lite = ChimpyLite::get_instance();
     15
     16        // Enqueue JS/CSS files
     17        if (!$is_function) {
     18            ChimpyLite::enqueue_frontend_scripts_and_styles();
     19        }
     20        else {
     21            add_action('wp_footer', array('ChimpyLite', 'print_frontend_scripts_and_styles'));
     22        }
     23        //add_action('wp_enqueue_scripts', array('ChimpyLite', 'enqueue_frontend_scripts_and_styles'));
    1524
    1625        $global_form_id = $chimpy_lite->get_next_rendered_form_id();
  • chimpy-lite/tags/1.0.2/languages/chimpy-lite.pot

    r887908 r913404  
    22msgstr ""
    33"Project-Id-Version: Chimpy Lite\n"
    4 "POT-Creation-Date: 2014-04-01 01:45+0300\n"
    5 "PO-Revision-Date: 2014-04-01 01:45+0300\n"
     4"POT-Creation-Date: 2014-04-03 15:53+0300\n"
     5"PO-Revision-Date: 2014-04-03 15:53+0300\n"
    66"Last-Translator: \n"
    77"Language-Team: RightPress <info@rightpress.net>\n"
     
    1919"X-Poedit-SearchPath-0: /var/www/latest/wp-content/plugins/chimpy-lite\n"
    2020
    21 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:312
     21#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:324
    2222#, php-format
    2323msgid ""
     
    2727msgstr ""
    2828
    29 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:493
     29#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:505
    3030msgid "How do I display my forms?"
    3131msgstr ""
    3232
    33 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:535
     33#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:547
    3434msgid "<p>Title of the form - will be displayed in a signup form header.</p>"
    3535msgstr ""
    3636
    37 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:536
     37#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:548
    3838msgid "<p>Message to display above form fields.</p>"
    3939msgstr ""
    4040
    41 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:537
     41#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:549
    4242msgid "<p>Message to display below form fields.</p>"
    4343msgstr ""
    4444
    45 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:538
     45#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:550
    4646msgid "<p>Form submit button label.</p>"
    4747msgstr ""
    4848
    49 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:539
     49#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:551
    5050msgid ""
    5151"<p>Select one of the predefined color schemes. You can further customize the "
     
    5454msgstr ""
    5555
    56 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:540
     56#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:552
    5757msgid ""
    5858"<p>Optionaly provide an URL where subscribers should be redirected to after "
     
    6161msgstr ""
    6262
    63 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:541
     63#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:553
    6464msgid ""
    6565"<p>Select one of your MailChimp mailing lists for users to be subscribed to."
     
    6767msgstr ""
    6868
    69 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:542
     69#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:554
    7070msgid ""
    7171"<p>Select interest groups that you want to add automatically or allow users "
     
    7575msgstr ""
    7676
    77 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:543
     77#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:555
    7878msgid ""
    7979"<p>Select how you would like interest groups to work with this form - you "
     
    8282msgstr ""
    8383
    84 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:544
     84#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:556
    8585msgid ""
    8686"<p>Controls on which parts of the website this form will appear (or not "
     
    8888msgstr ""
    8989
    90 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:545
     90#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:557
    9191msgid "<p>List of pages to check current page against.</p>"
    9292msgstr ""
    9393
    94 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:546
     94#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:558
    9595msgid "<p>List of posts to check current post against.</p>"
    9696msgstr ""
    9797
    98 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:547
     98#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:559
    9999msgid "<p>List of post categories to check current post against.</p>"
    100100msgstr ""
    101101
    102 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:548
     102#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:560
    103103msgid "<p>URL fragment to search in the URL of the page.</p>"
    104104msgstr ""
    105105
    106 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:557
     106#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:569
    107107msgid "Still connecting to MailChimp..."
    108108msgstr ""
    109109
    110 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:558
     110#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:570
    111111#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:166
    112112msgid "Mailing list"
    113113msgstr ""
    114114
    115 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:559
     115#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:571
    116116msgid "There are no lists named"
    117117msgstr ""
    118118
    119 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:560
     119#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:572
    120120msgid "Select a mailing list"
    121121msgstr ""
    122122
    123 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:561
     123#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:573
    124124msgid "Selected list does not have groups named"
    125125msgstr ""
    126126
    127 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:562
     127#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:574
    128128msgid "Select some groups (optional)"
    129129msgstr ""
    130130
    131 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:563
     131#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:575
    132132msgid "Interest groups"
    133133msgstr ""
    134134
    135 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:564
     135#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:576
    136136msgid "Field Label"
    137137msgstr ""
    138138
    139 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:565
     139#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:577
    140140msgid "MailChimp Tag"
    141141msgstr ""
    142142
    143 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:566
     143#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:578
    144144msgid "Icon"
    145145msgstr ""
    146146
    147 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:567
     147#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:579
    148148msgid "Add Field"
    149149msgstr ""
    150150
    151 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:568
     151#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:580
    152152msgid "Selected list does not have tags named"
    153153msgstr ""
    154154
    155 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:569
     155#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:581
    156156msgid "Select a tag"
    157157msgstr ""
    158158
    159 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:570
    160 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:896
    161 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:902
     159#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:582
     160#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:908
     161#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:914
    162162msgid "Connecting to MailChimp..."
    163163msgstr ""
    164164
    165 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:571
     165#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:583
    166166msgid "No pages named"
    167167msgstr ""
    168168
    169 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:572
     169#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:584
    170170msgid "Select some pages"
    171171msgstr ""
    172172
    173 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:573
     173#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:585
    174174msgid "No posts named"
    175175msgstr ""
    176176
    177 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:574
     177#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:586
    178178msgid "Select some posts"
    179179msgstr ""
    180180
    181 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:575
     181#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:587
    182182msgid "No post categories named"
    183183msgstr ""
    184184
    185 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:576
     185#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:588
    186186msgid "Select some post categories"
    187187msgstr ""
    188188
    189 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:577
     189#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:589
    190190msgid "No forms named"
    191191msgstr ""
    192192
    193 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:578
     193#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:590
    194194msgid "Select some forms (optional)"
    195195msgstr ""
    196196
    197 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:579
    198 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:857
     197#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:591
     198#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:869
    199199msgid "Signup Form #"
    200200msgstr ""
    201201
    202 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:580
     202#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:592
    203203msgid "Email"
    204204msgstr ""
    205205
    206 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:581
     206#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:593
    207207msgid "Submit"
    208208msgstr ""
    209209
    210 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:583
     210#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:595
    211211#, php-format
    212212msgid ""
     
    215215msgstr ""
    216216
    217 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:584
     217#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:596
    218218msgid "Integration status"
    219219msgstr ""
    220220
    221 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:620
     221#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:632
    222222#, php-format
    223223msgid ""
     
    225225msgstr ""
    226226
    227 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:740
     227#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:752
    228228msgid "Automatically"
    229229msgstr ""
    230230
    231 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:742
     231#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:754
    232232msgid "All groups selected above"
    233233msgstr ""
    234234
    235 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:746
     235#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:758
    236236msgid "Allow users to select (optional)"
    237237msgstr ""
    238238
    239 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:748
     239#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:760
    240240msgid "Checkbox group for each grouping"
    241241msgstr ""
    242242
    243 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:749
    244 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:756
     243#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:761
     244#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:768
    245245msgid "Radio button group for each grouping"
    246246msgstr ""
    247247
    248 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:750
    249 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:757
     248#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:762
     249#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:769
    250250msgid "Select field (dropdown) for each grouping"
    251251msgstr ""
    252252
    253 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:754
     253#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:766
    254254msgid "Require users to select (required)"
    255255msgstr ""
    256256
    257 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:767
     257#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:779
    258258msgid "No condition"
    259259msgstr ""
    260260
    261 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:769
     261#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:781
    262262msgid "Always display this form"
    263263msgstr ""
    264264
    265 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:770
     265#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:782
    266266msgid "Disable this form"
    267267msgstr ""
    268268
    269 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:774
     269#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:786
    270270msgid "Conditions"
    271271msgstr ""
    272272
    273 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:776
     273#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:788
    274274msgid "Front page only"
    275275msgstr ""
    276276
    277 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:777
     277#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:789
    278278msgid "Specific pages"
    279279msgstr ""
    280280
    281 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:778
     281#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:790
    282282msgid "Specific posts"
    283283msgstr ""
    284284
    285 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:779
     285#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:791
    286286msgid "Specific post categories"
    287287msgstr ""
    288288
    289 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:780
     289#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:792
    290290msgid "URL contains"
    291291msgstr ""
    292292
    293 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:784
     293#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:796
    294294msgid "Inversed Conditions"
    295295msgstr ""
    296296
    297 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:786
     297#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:798
    298298msgid "Pages not"
    299299msgstr ""
    300300
    301 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:787
     301#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:799
    302302msgid "Posts not"
    303303msgstr ""
    304304
    305 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:788
     305#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:800
    306306msgid "Post categories not"
    307307msgstr ""
    308308
    309 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:789
     309#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:801
    310310msgid "URL does not contain"
    311311msgstr ""
    312312
    313 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:798
     313#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:810
    314314msgid "Cyan"
    315315msgstr ""
    316316
    317 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:799
     317#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:811
    318318msgid "Red"
    319319msgstr ""
    320320
    321 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:800
     321#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:812
    322322msgid "Orange"
    323323msgstr ""
    324324
    325 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:801
     325#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:813
    326326msgid "Green"
    327327msgstr ""
    328328
    329 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:802
     329#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:814
    330330msgid "Purple"
    331331msgstr ""
    332332
    333 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:803
     333#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:815
    334334msgid "Pink"
    335335msgstr ""
    336336
    337 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:804
     337#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:816
    338338msgid "Yellow"
    339339msgstr ""
    340340
    341 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:805
     341#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:817
    342342msgid "Blue"
    343343msgstr ""
    344344
    345 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:806
     345#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:818
    346346msgid "Black"
    347347msgstr ""
    348348
    349 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:857
     349#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:869
    350350msgid "Remove"
    351351msgstr ""
    352352
    353 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:860
     353#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:872
    354354msgid "Main Settings"
    355355msgstr ""
    356356
    357 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:863
     357#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:875
    358358msgid "Form title"
    359359msgstr ""
    360360
    361 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:867
     361#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:879
    362362msgid "Text above form"
    363363msgstr ""
    364364
    365 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:871
     365#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:883
    366366msgid "Text below form"
    367367msgstr ""
    368368
    369 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:875
     369#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:887
    370370msgid "Submit button label"
    371371msgstr ""
    372372
    373 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:879
     373#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:891
    374374msgid "Color scheme"
    375375msgstr ""
    376376
    377 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:913
     377#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
    378378msgid "Add Form"
    379379msgstr ""
    380380
    381 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:913
     381#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
    382382msgid "Multiple forms are supported in PRO version only."
    383383msgstr ""
    384384
    385 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:924
     385#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:936
    386386msgid "Widget"
    387387msgstr ""
    388388
    389 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
     389#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:937
    390390#, php-format
    391391msgid ""
     
    395395msgstr ""
    396396
    397 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:927
     397#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:939
    398398msgid "Shortcode"
    399399msgstr ""
    400400
    401 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:928
     401#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:940
    402402msgid ""
    403403"Insert a form into individual posts or pages by placing a shortcode anywhere "
     
    405405msgstr ""
    406406
    407 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:930
     407#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:942
    408408msgid "Function"
    409409msgstr ""
    410410
    411 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:931
     411#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:943
    412412msgid ""
    413413"To display a form in nonstandard parts of your website, take advantage of "
    414 "the PHP function <code>chimpy_lite_form()</code>."
    415 msgstr ""
    416 
    417 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1482
     414"the PHP function <code>chimpy_lite_form()</code>.<br />Make sure to include "
     415"it <strong>above</strong> the <code>wp_footer()</code> function in your "
     416"theme."
     417msgstr ""
     418
     419#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1494
    418420msgid "Your settings have been saved."
    419421msgstr ""
    420422
    421 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1488
     423#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1500
    422424msgid "must be numeric"
    423425msgstr ""
    424426
    425 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1489
     427#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1501
    426428msgid "must be either 0 or 1"
    427429msgstr ""
    428430
    429 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1490
     431#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1502
    430432msgid "is not allowed"
    431433msgstr ""
    432434
    433 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1491
     435#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1503
    434436msgid "is not a valid email address"
    435437msgstr ""
    436438
    437 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1492
     439#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1504
    438440msgid "is not a valid URL"
    439441msgstr ""
    440442
    441 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1493
     443#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1505
    442444msgid "is not a valid text string"
    443445msgstr ""
    444446
    445 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1499
     447#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1511
    446448msgid "Reverted to a previous state."
    447449msgstr ""
    448450
    449 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1505
     451#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1517
    450452msgid "Value of"
    451453msgstr ""
    452454
    453 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1531
     455#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1543
    454456msgid " is not valid or something went wrong. More details: "
    455457msgstr ""
    456458
    457 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1670
     459#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1760
    458460#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:19
    459461msgid "Settings"
    460462msgstr ""
    461463
    462 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1771
     464#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1861
    463465msgid "Unable to load lists"
    464466msgstr ""
    465467
    466 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1777
     468#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1867
    467469msgid "No lists found"
    468470msgstr ""
    469471
    470 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1817
     472#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1907
    471473msgid "Unable to load merge vars"
    472474msgstr ""
    473475
    474 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1823
     476#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1913
    475477msgid "No merge vars found"
    476478msgstr ""
    477479
    478 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1869
     480#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1959
    479481msgid "Unable to load groups"
    480482msgstr ""
    481483
    482 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1877
     484#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1967
    483485msgid "No groups found"
    484486msgstr ""
    485487
    486 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1958
     488#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2048
    487489msgid "No API key provided"
    488490msgstr ""
    489491
    490 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1963
     492#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2053
    491493msgid "PHP Curl extension not loaded on your server"
    492494msgstr ""
    493495
    494 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1975
     496#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2065
    495497msgid "Unable to initialize MailChimp class"
    496498msgstr ""
    497499
    498 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1992
     500#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2082
    499501msgid "Something went wrong..."
    500502msgstr ""
    501503
    502 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2051
     504#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2141
    503505msgid "API key not set"
    504506msgstr ""
    505507
    506 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2054
     508#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2144
    507509msgid "Connected to account"
    508510msgstr ""
    509511
    510 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2057
     512#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2147
    511513msgid "Connection to MailChimp failed."
    512514msgstr ""
    513515
    514 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2861
     516#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2951
    515517#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:195
    516518msgid "dd/mm/yyyy"
    517519msgstr ""
    518520
    519 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2867
     521#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2957
    520522#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:196
    521523msgid "dd-mm-yyyy"
    522524msgstr ""
    523525
    524 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2873
     526#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2963
    525527#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:197
    526528msgid "dd.mm.yyyy"
    527529msgstr ""
    528530
    529 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2879
     531#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2969
    530532#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:198
    531533msgid "mm/dd/yyyy"
    532534msgstr ""
    533535
    534 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2885
     536#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2975
    535537#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:199
    536538msgid "mm-dd-yyyy"
    537539msgstr ""
    538540
    539 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2891
     541#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2981
    540542#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:200
    541543msgid "mm.dd.yyyy"
    542544msgstr ""
    543545
    544 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2897
     546#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2987
    545547#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:201
    546548msgid "yyyy/mm/dd"
    547549msgstr ""
    548550
    549 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2903
     551#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2993
    550552#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:202
    551553msgid "yyyy-mm-dd"
    552554msgstr ""
    553555
    554 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2909
     556#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2999
    555557#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:203
    556558msgid "yyyy.mm.dd"
    557559msgstr ""
    558560
    559 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2915
     561#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3005
    560562#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:204
    561563msgid "dd/mm/yy"
    562564msgstr ""
    563565
    564 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2921
     566#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3011
    565567#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:205
    566568msgid "dd-mm-yy"
    567569msgstr ""
    568570
    569 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2927
     571#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3017
    570572#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:206
    571573msgid "dd.mm.yy"
    572574msgstr ""
    573575
    574 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2933
     576#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3023
    575577#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:207
    576578msgid "mm/dd/yy"
    577579msgstr ""
    578580
    579 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2939
     581#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3029
    580582#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:208
    581583msgid "mm-dd-yy"
    582584msgstr ""
    583585
    584 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2945
     586#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3035
    585587#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:209
    586588msgid "mm.dd.yy"
    587589msgstr ""
    588590
    589 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2951
     591#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3041
    590592#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:210
    591593msgid "yy/mm/dd"
    592594msgstr ""
    593595
    594 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2957
     596#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3047
    595597#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:211
    596598msgid "yy-mm-dd"
    597599msgstr ""
    598600
    599 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2963
     601#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3053
    600602#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:212
    601603msgid "yy.mm.dd"
    602604msgstr ""
    603605
    604 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2971
     606#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3061
    605607#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:224
    606608msgid "dd/mm"
    607609msgstr ""
    608610
    609 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2977
     611#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3067
    610612#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:225
    611613msgid "dd-mm"
    612614msgstr ""
    613615
    614 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2983
     616#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3073
    615617#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:226
    616618msgid "dd.mm"
    617619msgstr ""
    618620
    619 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2989
     621#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3079
    620622#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:227
    621623msgid "mm/dd"
    622624msgstr ""
    623625
    624 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2995
     626#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3085
    625627#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:228
    626628msgid "mm-dd"
    627629msgstr ""
    628630
    629 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3001
     631#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3091
    630632#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:229
    631633msgid "mm.dd"
  • chimpy-lite/tags/1.0.2/readme.txt

    r903145 r913404  
    55Requires at least: 3.5
    66Tested up to: 3.9
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • chimpy-lite/trunk/assets/css/style-admin.css

    r887908 r913404  
    237237
    238238.icon32-chimpy {
    239     background-image: url(../img/chimpy.png) !important;
    240     background-size: 32px 32px;
    241     background-position: 4px -1px !important;
    242     margin: 0 10px 0 0;
    243239}
    244240
     
    378374    font-size: 12px !important;
    379375}
    380 
    381 #tiptip_holder {
    382     display: none;
    383     position: absolute;
    384     top: 0;
    385     left: 0;
    386     z-index: 99999;
    387 }
    388 
    389 #tiptip_holder.tip_top {
    390     padding-bottom: 5px;
    391 }
    392 
    393 #tiptip_holder.tip_bottom {
    394     padding-top: 5px;
    395 }
    396 
    397 #tiptip_holder.tip_right {
    398     padding-left: 5px;
    399 }
    400 
    401 #tiptip_holder.tip_left {
    402     padding-right: 5px;
    403 }
    404 
    405 #tiptip_content {
    406     font-size: 11px;
    407     color: #fff;
    408     text-shadow: 0 0 2px #000;
    409     padding: 4px 8px;
    410     border: 1px solid rgba(255,255,255,0.25);
    411     background-color: rgb(25,25,25);
    412     background-color: rgba(25,25,25,0.92);
    413     background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
    414     border-radius: 3px;
    415     -webkit-border-radius: 3px;
    416     -moz-border-radius: 3px;
    417     box-shadow: 0 0 3px #555;
    418     -webkit-box-shadow: 0 0 3px #555;
    419     -moz-box-shadow: 0 0 3px #555;
    420 }
    421 
    422 #tiptip_arrow, #tiptip_arrow_inner {
    423     position: absolute;
    424     border-color: transparent;
    425     border-style: solid;
    426     border-width: 6px;
    427     height: 0;
    428     width: 0;
    429 }
    430 
    431 #tiptip_holder.tip_top #tiptip_arrow {
    432     border-top-color: #fff;
    433     border-top-color: rgba(255,255,255,0.35);
    434 }
    435 
    436 #tiptip_holder.tip_bottom #tiptip_arrow {
    437     border-bottom-color: #fff;
    438     border-bottom-color: rgba(255,255,255,0.35);
    439 }
    440 
    441 #tiptip_holder.tip_right #tiptip_arrow {
    442     border-right-color: #fff;
    443     border-right-color: rgba(255,255,255,0.35);
    444 }
    445 
    446 #tiptip_holder.tip_left #tiptip_arrow {
    447     border-left-color: #fff;
    448     border-left-color: rgba(255,255,255,0.35);
    449 }
    450 
    451 #tiptip_holder.tip_top #tiptip_arrow_inner {
    452     margin-top: -7px;
    453     margin-left: -6px;
    454     border-top-color: rgb(25,25,25);
    455     border-top-color: rgba(25,25,25,0.92);
    456 }
    457 
    458 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    459     margin-top: -5px;
    460     margin-left: -6px;
    461     border-bottom-color: rgb(25,25,25);
    462     border-bottom-color: rgba(25,25,25,0.92);
    463 }
    464 
    465 #tiptip_holder.tip_right #tiptip_arrow_inner {
    466     margin-top: -6px;
    467     margin-left: -5px;
    468     border-right-color: rgb(25,25,25);
    469     border-right-color: rgba(25,25,25,0.92);
    470 }
    471 
    472 #tiptip_holder.tip_left #tiptip_arrow_inner {
    473     margin-top: -6px;
    474     margin-left: -7px;
    475     border-left-color: rgb(25,25,25);
    476     border-left-color: rgba(25,25,25,0.92);
    477 }
    478 
    479 /* Webkit Hacks  */
    480 @media screen and (-webkit-min-device-pixel-ratio:0) { 
    481     #tiptip_content {
    482         padding: 4px 8px 5px 8px;
    483         background-color: rgba(45,45,45,0.88);
    484     }
    485     #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    486         border-bottom-color: rgba(45,45,45,0.88);
    487     }
    488     #tiptip_holder.tip_top #tiptip_arrow_inner {
    489         border-top-color: rgba(20,20,20,0.92);
    490     }
    491 }
  • chimpy-lite/trunk/changelog

    r903145 r913404  
     1Version 1.0.2, May 13 2014
     2------------------------------------------------------------------------------------
     3[*] Several minor bug fixes
     4
    15Version 1.0.1, April 25 2014
    26------------------------------------------------------------------------------------
  • chimpy-lite/trunk/chimpy-lite.php

    r903145 r913404  
    55 * Plugin URI: http://www.rightpress.net/chimpy-lite
    66 * Description: Chimpy is the best MailChimp plugin. Just enter your MailChimp API key and you are ready to go. It works smoothly and features professional design.
    7  * Version: 1.0.1
     7 * Version: 1.0.2
    88 * Author: RightPress
    99 * Author URI: http://www.rightpress.net
     
    4242define('CHIMPY_LITE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
    4343define('CHIMPY_LITE_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)));
    44 define('CHIMPY_LITE_VERSION', '1.0.1');
     44define('CHIMPY_LITE_VERSION', '1.0.2');
    4545
    4646if (!class_exists('ChimpyLite')) {
  • chimpy-lite/trunk/includes/chimpy-lite-form.inc.php

    r887908 r913404  
    2424        require_once CHIMPY_LITE_PLUGIN_PATH . '/includes/chimpy-lite-prepare-form.inc.php';
    2525
    26         $html = chimpy_lite_prepare_form($form, $opt, 'shortcode');
     26        $html = chimpy_lite_prepare_form($form, $opt, 'shortcode', null, true);
    2727
    2828        echo $html;
  • chimpy-lite/trunk/includes/chimpy-lite-prepare-form.inc.php

    r887908 r913404  
    1010 */
    1111if (!function_exists('chimpy_lite_prepare_form')) {
    12     function chimpy_lite_prepare_form($form, $opt, $context, $widget_args = null)
     12    function chimpy_lite_prepare_form($form, $opt, $context, $widget_args = null, $is_function = false)
    1313    {
    1414        $chimpy_lite = ChimpyLite::get_instance();
     15
     16        // Enqueue JS/CSS files
     17        if (!$is_function) {
     18            ChimpyLite::enqueue_frontend_scripts_and_styles();
     19        }
     20        else {
     21            add_action('wp_footer', array('ChimpyLite', 'print_frontend_scripts_and_styles'));
     22        }
     23        //add_action('wp_enqueue_scripts', array('ChimpyLite', 'enqueue_frontend_scripts_and_styles'));
    1524
    1625        $global_form_id = $chimpy_lite->get_next_rendered_form_id();
  • chimpy-lite/trunk/languages/chimpy-lite.pot

    r887908 r913404  
    22msgstr ""
    33"Project-Id-Version: Chimpy Lite\n"
    4 "POT-Creation-Date: 2014-04-01 01:45+0300\n"
    5 "PO-Revision-Date: 2014-04-01 01:45+0300\n"
     4"POT-Creation-Date: 2014-04-03 15:53+0300\n"
     5"PO-Revision-Date: 2014-04-03 15:53+0300\n"
    66"Last-Translator: \n"
    77"Language-Team: RightPress <info@rightpress.net>\n"
     
    1919"X-Poedit-SearchPath-0: /var/www/latest/wp-content/plugins/chimpy-lite\n"
    2020
    21 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:312
     21#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:324
    2222#, php-format
    2323msgid ""
     
    2727msgstr ""
    2828
    29 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:493
     29#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:505
    3030msgid "How do I display my forms?"
    3131msgstr ""
    3232
    33 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:535
     33#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:547
    3434msgid "<p>Title of the form - will be displayed in a signup form header.</p>"
    3535msgstr ""
    3636
    37 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:536
     37#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:548
    3838msgid "<p>Message to display above form fields.</p>"
    3939msgstr ""
    4040
    41 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:537
     41#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:549
    4242msgid "<p>Message to display below form fields.</p>"
    4343msgstr ""
    4444
    45 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:538
     45#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:550
    4646msgid "<p>Form submit button label.</p>"
    4747msgstr ""
    4848
    49 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:539
     49#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:551
    5050msgid ""
    5151"<p>Select one of the predefined color schemes. You can further customize the "
     
    5454msgstr ""
    5555
    56 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:540
     56#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:552
    5757msgid ""
    5858"<p>Optionaly provide an URL where subscribers should be redirected to after "
     
    6161msgstr ""
    6262
    63 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:541
     63#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:553
    6464msgid ""
    6565"<p>Select one of your MailChimp mailing lists for users to be subscribed to."
     
    6767msgstr ""
    6868
    69 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:542
     69#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:554
    7070msgid ""
    7171"<p>Select interest groups that you want to add automatically or allow users "
     
    7575msgstr ""
    7676
    77 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:543
     77#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:555
    7878msgid ""
    7979"<p>Select how you would like interest groups to work with this form - you "
     
    8282msgstr ""
    8383
    84 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:544
     84#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:556
    8585msgid ""
    8686"<p>Controls on which parts of the website this form will appear (or not "
     
    8888msgstr ""
    8989
    90 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:545
     90#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:557
    9191msgid "<p>List of pages to check current page against.</p>"
    9292msgstr ""
    9393
    94 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:546
     94#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:558
    9595msgid "<p>List of posts to check current post against.</p>"
    9696msgstr ""
    9797
    98 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:547
     98#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:559
    9999msgid "<p>List of post categories to check current post against.</p>"
    100100msgstr ""
    101101
    102 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:548
     102#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:560
    103103msgid "<p>URL fragment to search in the URL of the page.</p>"
    104104msgstr ""
    105105
    106 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:557
     106#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:569
    107107msgid "Still connecting to MailChimp..."
    108108msgstr ""
    109109
    110 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:558
     110#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:570
    111111#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:166
    112112msgid "Mailing list"
    113113msgstr ""
    114114
    115 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:559
     115#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:571
    116116msgid "There are no lists named"
    117117msgstr ""
    118118
    119 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:560
     119#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:572
    120120msgid "Select a mailing list"
    121121msgstr ""
    122122
    123 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:561
     123#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:573
    124124msgid "Selected list does not have groups named"
    125125msgstr ""
    126126
    127 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:562
     127#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:574
    128128msgid "Select some groups (optional)"
    129129msgstr ""
    130130
    131 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:563
     131#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:575
    132132msgid "Interest groups"
    133133msgstr ""
    134134
    135 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:564
     135#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:576
    136136msgid "Field Label"
    137137msgstr ""
    138138
    139 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:565
     139#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:577
    140140msgid "MailChimp Tag"
    141141msgstr ""
    142142
    143 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:566
     143#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:578
    144144msgid "Icon"
    145145msgstr ""
    146146
    147 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:567
     147#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:579
    148148msgid "Add Field"
    149149msgstr ""
    150150
    151 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:568
     151#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:580
    152152msgid "Selected list does not have tags named"
    153153msgstr ""
    154154
    155 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:569
     155#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:581
    156156msgid "Select a tag"
    157157msgstr ""
    158158
    159 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:570
    160 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:896
    161 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:902
     159#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:582
     160#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:908
     161#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:914
    162162msgid "Connecting to MailChimp..."
    163163msgstr ""
    164164
    165 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:571
     165#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:583
    166166msgid "No pages named"
    167167msgstr ""
    168168
    169 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:572
     169#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:584
    170170msgid "Select some pages"
    171171msgstr ""
    172172
    173 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:573
     173#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:585
    174174msgid "No posts named"
    175175msgstr ""
    176176
    177 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:574
     177#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:586
    178178msgid "Select some posts"
    179179msgstr ""
    180180
    181 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:575
     181#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:587
    182182msgid "No post categories named"
    183183msgstr ""
    184184
    185 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:576
     185#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:588
    186186msgid "Select some post categories"
    187187msgstr ""
    188188
    189 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:577
     189#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:589
    190190msgid "No forms named"
    191191msgstr ""
    192192
    193 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:578
     193#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:590
    194194msgid "Select some forms (optional)"
    195195msgstr ""
    196196
    197 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:579
    198 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:857
     197#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:591
     198#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:869
    199199msgid "Signup Form #"
    200200msgstr ""
    201201
    202 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:580
     202#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:592
    203203msgid "Email"
    204204msgstr ""
    205205
    206 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:581
     206#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:593
    207207msgid "Submit"
    208208msgstr ""
    209209
    210 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:583
     210#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:595
    211211#, php-format
    212212msgid ""
     
    215215msgstr ""
    216216
    217 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:584
     217#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:596
    218218msgid "Integration status"
    219219msgstr ""
    220220
    221 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:620
     221#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:632
    222222#, php-format
    223223msgid ""
     
    225225msgstr ""
    226226
    227 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:740
     227#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:752
    228228msgid "Automatically"
    229229msgstr ""
    230230
    231 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:742
     231#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:754
    232232msgid "All groups selected above"
    233233msgstr ""
    234234
    235 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:746
     235#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:758
    236236msgid "Allow users to select (optional)"
    237237msgstr ""
    238238
    239 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:748
     239#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:760
    240240msgid "Checkbox group for each grouping"
    241241msgstr ""
    242242
    243 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:749
    244 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:756
     243#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:761
     244#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:768
    245245msgid "Radio button group for each grouping"
    246246msgstr ""
    247247
    248 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:750
    249 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:757
     248#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:762
     249#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:769
    250250msgid "Select field (dropdown) for each grouping"
    251251msgstr ""
    252252
    253 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:754
     253#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:766
    254254msgid "Require users to select (required)"
    255255msgstr ""
    256256
    257 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:767
     257#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:779
    258258msgid "No condition"
    259259msgstr ""
    260260
    261 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:769
     261#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:781
    262262msgid "Always display this form"
    263263msgstr ""
    264264
    265 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:770
     265#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:782
    266266msgid "Disable this form"
    267267msgstr ""
    268268
    269 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:774
     269#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:786
    270270msgid "Conditions"
    271271msgstr ""
    272272
    273 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:776
     273#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:788
    274274msgid "Front page only"
    275275msgstr ""
    276276
    277 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:777
     277#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:789
    278278msgid "Specific pages"
    279279msgstr ""
    280280
    281 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:778
     281#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:790
    282282msgid "Specific posts"
    283283msgstr ""
    284284
    285 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:779
     285#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:791
    286286msgid "Specific post categories"
    287287msgstr ""
    288288
    289 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:780
     289#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:792
    290290msgid "URL contains"
    291291msgstr ""
    292292
    293 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:784
     293#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:796
    294294msgid "Inversed Conditions"
    295295msgstr ""
    296296
    297 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:786
     297#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:798
    298298msgid "Pages not"
    299299msgstr ""
    300300
    301 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:787
     301#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:799
    302302msgid "Posts not"
    303303msgstr ""
    304304
    305 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:788
     305#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:800
    306306msgid "Post categories not"
    307307msgstr ""
    308308
    309 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:789
     309#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:801
    310310msgid "URL does not contain"
    311311msgstr ""
    312312
    313 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:798
     313#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:810
    314314msgid "Cyan"
    315315msgstr ""
    316316
    317 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:799
     317#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:811
    318318msgid "Red"
    319319msgstr ""
    320320
    321 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:800
     321#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:812
    322322msgid "Orange"
    323323msgstr ""
    324324
    325 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:801
     325#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:813
    326326msgid "Green"
    327327msgstr ""
    328328
    329 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:802
     329#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:814
    330330msgid "Purple"
    331331msgstr ""
    332332
    333 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:803
     333#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:815
    334334msgid "Pink"
    335335msgstr ""
    336336
    337 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:804
     337#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:816
    338338msgid "Yellow"
    339339msgstr ""
    340340
    341 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:805
     341#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:817
    342342msgid "Blue"
    343343msgstr ""
    344344
    345 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:806
     345#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:818
    346346msgid "Black"
    347347msgstr ""
    348348
    349 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:857
     349#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:869
    350350msgid "Remove"
    351351msgstr ""
    352352
    353 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:860
     353#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:872
    354354msgid "Main Settings"
    355355msgstr ""
    356356
    357 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:863
     357#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:875
    358358msgid "Form title"
    359359msgstr ""
    360360
    361 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:867
     361#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:879
    362362msgid "Text above form"
    363363msgstr ""
    364364
    365 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:871
     365#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:883
    366366msgid "Text below form"
    367367msgstr ""
    368368
    369 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:875
     369#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:887
    370370msgid "Submit button label"
    371371msgstr ""
    372372
    373 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:879
     373#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:891
    374374msgid "Color scheme"
    375375msgstr ""
    376376
    377 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:913
     377#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
    378378msgid "Add Form"
    379379msgstr ""
    380380
    381 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:913
     381#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
    382382msgid "Multiple forms are supported in PRO version only."
    383383msgstr ""
    384384
    385 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:924
     385#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:936
    386386msgid "Widget"
    387387msgstr ""
    388388
    389 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:925
     389#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:937
    390390#, php-format
    391391msgid ""
     
    395395msgstr ""
    396396
    397 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:927
     397#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:939
    398398msgid "Shortcode"
    399399msgstr ""
    400400
    401 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:928
     401#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:940
    402402msgid ""
    403403"Insert a form into individual posts or pages by placing a shortcode anywhere "
     
    405405msgstr ""
    406406
    407 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:930
     407#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:942
    408408msgid "Function"
    409409msgstr ""
    410410
    411 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:931
     411#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:943
    412412msgid ""
    413413"To display a form in nonstandard parts of your website, take advantage of "
    414 "the PHP function <code>chimpy_lite_form()</code>."
    415 msgstr ""
    416 
    417 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1482
     414"the PHP function <code>chimpy_lite_form()</code>.<br />Make sure to include "
     415"it <strong>above</strong> the <code>wp_footer()</code> function in your "
     416"theme."
     417msgstr ""
     418
     419#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1494
    418420msgid "Your settings have been saved."
    419421msgstr ""
    420422
    421 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1488
     423#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1500
    422424msgid "must be numeric"
    423425msgstr ""
    424426
    425 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1489
     427#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1501
    426428msgid "must be either 0 or 1"
    427429msgstr ""
    428430
    429 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1490
     431#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1502
    430432msgid "is not allowed"
    431433msgstr ""
    432434
    433 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1491
     435#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1503
    434436msgid "is not a valid email address"
    435437msgstr ""
    436438
    437 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1492
     439#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1504
    438440msgid "is not a valid URL"
    439441msgstr ""
    440442
    441 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1493
     443#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1505
    442444msgid "is not a valid text string"
    443445msgstr ""
    444446
    445 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1499
     447#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1511
    446448msgid "Reverted to a previous state."
    447449msgstr ""
    448450
    449 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1505
     451#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1517
    450452msgid "Value of"
    451453msgstr ""
    452454
    453 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1531
     455#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1543
    454456msgid " is not valid or something went wrong. More details: "
    455457msgstr ""
    456458
    457 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1670
     459#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1760
    458460#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:19
    459461msgid "Settings"
    460462msgstr ""
    461463
    462 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1771
     464#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1861
    463465msgid "Unable to load lists"
    464466msgstr ""
    465467
    466 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1777
     468#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1867
    467469msgid "No lists found"
    468470msgstr ""
    469471
    470 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1817
     472#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1907
    471473msgid "Unable to load merge vars"
    472474msgstr ""
    473475
    474 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1823
     476#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1913
    475477msgid "No merge vars found"
    476478msgstr ""
    477479
    478 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1869
     480#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1959
    479481msgid "Unable to load groups"
    480482msgstr ""
    481483
    482 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1877
     484#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1967
    483485msgid "No groups found"
    484486msgstr ""
    485487
    486 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1958
     488#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2048
    487489msgid "No API key provided"
    488490msgstr ""
    489491
    490 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1963
     492#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2053
    491493msgid "PHP Curl extension not loaded on your server"
    492494msgstr ""
    493495
    494 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1975
     496#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2065
    495497msgid "Unable to initialize MailChimp class"
    496498msgstr ""
    497499
    498 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:1992
     500#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2082
    499501msgid "Something went wrong..."
    500502msgstr ""
    501503
    502 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2051
     504#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2141
    503505msgid "API key not set"
    504506msgstr ""
    505507
    506 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2054
     508#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2144
    507509msgid "Connected to account"
    508510msgstr ""
    509511
    510 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2057
     512#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2147
    511513msgid "Connection to MailChimp failed."
    512514msgstr ""
    513515
    514 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2861
     516#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2951
    515517#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:195
    516518msgid "dd/mm/yyyy"
    517519msgstr ""
    518520
    519 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2867
     521#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2957
    520522#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:196
    521523msgid "dd-mm-yyyy"
    522524msgstr ""
    523525
    524 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2873
     526#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2963
    525527#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:197
    526528msgid "dd.mm.yyyy"
    527529msgstr ""
    528530
    529 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2879
     531#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2969
    530532#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:198
    531533msgid "mm/dd/yyyy"
    532534msgstr ""
    533535
    534 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2885
     536#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2975
    535537#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:199
    536538msgid "mm-dd-yyyy"
    537539msgstr ""
    538540
    539 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2891
     541#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2981
    540542#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:200
    541543msgid "mm.dd.yyyy"
    542544msgstr ""
    543545
    544 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2897
     546#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2987
    545547#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:201
    546548msgid "yyyy/mm/dd"
    547549msgstr ""
    548550
    549 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2903
     551#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2993
    550552#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:202
    551553msgid "yyyy-mm-dd"
    552554msgstr ""
    553555
    554 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2909
     556#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2999
    555557#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:203
    556558msgid "yyyy.mm.dd"
    557559msgstr ""
    558560
    559 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2915
     561#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3005
    560562#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:204
    561563msgid "dd/mm/yy"
    562564msgstr ""
    563565
    564 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2921
     566#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3011
    565567#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:205
    566568msgid "dd-mm-yy"
    567569msgstr ""
    568570
    569 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2927
     571#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3017
    570572#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:206
    571573msgid "dd.mm.yy"
    572574msgstr ""
    573575
    574 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2933
     576#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3023
    575577#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:207
    576578msgid "mm/dd/yy"
    577579msgstr ""
    578580
    579 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2939
     581#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3029
    580582#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:208
    581583msgid "mm-dd-yy"
    582584msgstr ""
    583585
    584 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2945
     586#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3035
    585587#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:209
    586588msgid "mm.dd.yy"
    587589msgstr ""
    588590
    589 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2951
     591#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3041
    590592#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:210
    591593msgid "yy/mm/dd"
    592594msgstr ""
    593595
    594 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2957
     596#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3047
    595597#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:211
    596598msgid "yy-mm-dd"
    597599msgstr ""
    598600
    599 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2963
     601#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3053
    600602#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:212
    601603msgid "yy.mm.dd"
    602604msgstr ""
    603605
    604 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2971
     606#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3061
    605607#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:224
    606608msgid "dd/mm"
    607609msgstr ""
    608610
    609 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2977
     611#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3067
    610612#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:225
    611613msgid "dd-mm"
    612614msgstr ""
    613615
    614 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2983
     616#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3073
    615617#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:226
    616618msgid "dd.mm"
    617619msgstr ""
    618620
    619 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2989
     621#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3079
    620622#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:227
    621623msgid "mm/dd"
    622624msgstr ""
    623625
    624 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:2995
     626#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3085
    625627#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:228
    626628msgid "mm-dd"
    627629msgstr ""
    628630
    629 #: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3001
     631#: /var/www/latest/wp-content/plugins/chimpy-lite/chimpy-lite.php:3091
    630632#: /var/www/latest/wp-content/plugins/chimpy-lite/includes/chimpy-lite-plugin-structure.inc.php:229
    631633msgid "mm.dd"
  • chimpy-lite/trunk/readme.txt

    r903145 r913404  
    55Requires at least: 3.5
    66Tested up to: 3.9
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.