Plugin Directory

Changeset 1016663


Ignore:
Timestamp:
10/30/2014 12:34:22 PM (11 years ago)
Author:
marisp
Message:
  • Fixes styling of the Pro plugin pages
Location:
wpnewsman-newsletters/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • wpnewsman-newsletters/trunk/class.newsman-worker.php

    r951048 r1016663  
    293293
    294294    function __call($name, $arguments) {
    295         //$this->u->log("calling $name");
    296295        $opId = $this->_writeCall($name, $arguments);
    297296        $res = $this->_waitForResult($opId);
     
    311310
    312311    function _waitForResult($opId) {
    313         $totalWait = 10000000; // mks
     312        $totalWait = 10000000; // mks // 10s
    314313        $count = 0; // 50 * 100 ms = 5s
    315314        $res = NULL;
     315
    316316        while ( $res === NULL ) {
    317317            $count += 1;
    318318            $res = $this->_getOpResult($opId);
    319             $s = 100000*$count;
     319            $s = 200000*$count;
    320320            usleep($s); // 100 ms
    321321            $totalWait -= $s;
    322322            if ( $totalWait <= 0 ) { break; }
    323323        }
     324
    324325        if ( $res !== NULL ) {
    325326            $this->_clearOpResult($opId);
     
    328329    }
    329330
    330     function _getOpResult($opId) {
     331    function _getOpResult($opId) {     
    331332        $sql = "SELECT `result` from $this->_table WHERE `id` = %d AND `processed` = 1";
    332333        $sql = $this->_db->prepare($sql, $opId);
  • wpnewsman-newsletters/trunk/core.php

    r1015230 r1016663  
    12651265                        'savedAt' => __('Saved at', NEWSMAN),
    12661266
     1267                        'someRecipientsMightBeFiltered' => __('Bounce Handler has %d blocked domains. Some of recipients might be skipped during sending.', NEWSMAN),
     1268
    12671269                        'viewInBrowser' => __('View in browser', NEWSMAN),
    12681270
     
    16001602    public function onAdminHead() {
    16011603        //wp_tiny_mce( false ); // true gives you a stripped down version of the editor
     1604
     1605        $blockedDomainsCount = 'null';
     1606
     1607        if ( class_exists('newsmanBlockedDomain') ) {
     1608            $blockedDomainsCount = newsmanBlockedDomain::count();
     1609        }
     1610
     1611        //newsmanBlockedDomain::count();
     1612
    16021613        echo '<script>
     1614            NEWSMAN_BLOCKED_DOMAINS = '.$blockedDomainsCount.';
    16031615            NEWSMAN_PLUGIN_URL = "'.NEWSMAN_PLUGIN_URL.'";
    16041616            NEWSMAN_BLOG_ADMIN_URL = "'.NEWSMAN_BLOG_ADMIN_URL.'";
     
    17841796        do_action('newsman_admin_menu');
    17851797
    1786         // placing it first in the menu
     1798        //var_dump($submenu['newsman-mailbox']);
     1799
     1800        $posSettings = null;
     1801        $posActionPages = null;
     1802
     1803        $this->moveMenuItem('newsman_ap', 'newsman-settings');
     1804        $this->moveMenuItem('newsman-bh', 'newsman-settings');
     1805    }
     1806
     1807    /**
     1808     * $menuId is a menu id or custom page id
     1809     */
     1810    private function moveMenuItem($menuId, $above) {       
     1811        global $submenu;
     1812
     1813        // getting menu item position
     1814        $menuItemPos = $this->getMenuPos($menuId);
     1815
     1816        if ( $menuItemPos !== null ) {
     1817            // cutting out menu item
     1818            $menuItem = array_splice($submenu['newsman-mailbox'], $menuItemPos, 1);
     1819
     1820            $aboveMenuItemPos = $this->getMenuPos($above);
     1821
     1822            // inserting above
     1823            array_splice($submenu['newsman-mailbox'], $aboveMenuItemPos, 0, $menuItem);         
     1824        }
     1825    }
     1826
     1827    private function getMenuPos($menuId) {
     1828        global $submenu;
    17871829        for ($i=0, $c = count($submenu['newsman-mailbox']); $i < $c; $i++) {
    1788             if ( $submenu['newsman-mailbox'][$i][2] === 'newsman-settings' ) {
    1789                 $prevPos = $i-1;
    1790 
    1791                 $actionPagesSubmenu = array_splice($submenu['newsman-mailbox'], 0, 1);
    1792                 array_splice($submenu['newsman-mailbox'], $prevPos, 0, $actionPagesSubmenu);
    1793                 break;
    1794             }
    1795         }   
     1830            if ( strpos($submenu['newsman-mailbox'][$i][2], $menuId) !== false ) {
     1831                return $i;
     1832            }
     1833        }
     1834        return null;
    17961835    }
    17971836
  • wpnewsman-newsletters/trunk/css/newsman_admin.css

    r1015230 r1016663  
    17851785    margin: 0;
    17861786    overflow: hidden;
     1787    font-size: 13px;
    17871788}
    17881789
     
    20492050}
    20502051
    2051 .notification-cards-container {
    2052     height: 306px;
    2053     overflow-y: auto;
    2054 }
    2055 
    2056 .blocked-domains .notification-card {
    2057     background: #FFF;
    2058     padding: 10px;
    2059     border: 1px solid;
    2060     border-top-color: #E0E0E0;
    2061     border-right-color: #CCC;
    2062     border-bottom-color: #CCC;
    2063     border-left-color: #E0E0E0;
    2064     margin-bottom: 5px;
    2065 }
    2066 
    2067 .blocked-domains .notification-card h4 {
    2068     margin-top: 0;
    2069 }
    2070 
    2071 .notification-cards-container-label {
    2072     text-align: center;
    2073     padding-top: 2em;
    2074     color: #555;
    2075 }
    2076 
    20772052#bounce-stats {
    20782053    font-size: 14px;
  • wpnewsman-newsletters/trunk/js/admin.js

    r1015230 r1016663  
    31783178                }).done(function(data){
    31793179
    3180                     $('#newsman-modal-errorlog .modal-body').empty();
     3180                    b.empty();
    31813181
    31823182                    $('<h3 style="margin-bottom: 1em;">'+sprintf(newsmanL10n.sentXofXemails, data.sent, data.recipients)+'</h3>').appendTo(b);
     3183
     3184                    if ( typeof NEWSMAN_BLOCKED_DOMAINS !== 'undefined' && NEWSMAN_BLOCKED_DOMAINS ) {
     3185                        $('<p>'+sprintf(newsmanL10n.someRecipientsMightBeFiltered, NEWSMAN_BLOCKED_DOMAINS)+'</p>').appendTo(b);   
     3186                    }               
    31833187
    31843188                    if ( data.msg ) {
  • wpnewsman-newsletters/trunk/languages/wpnewsman.pot

    r951048 r1016663  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: G-Lock WPNewsman Lite 1.7.7\n"
     5"Project-Id-Version: G-Lock WPNewsman Lite 1.8.1\n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/tag/wpnewsman\n"
    7 "POT-Creation-Date: 2014-07-18 13:44:50+00:00\n"
     7"POT-Creation-Date: 2014-10-30 12:23:31+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"Language-Team: LANGUAGE <LL@li.org>\n"
    1414
    15 #: ajaxbackend.php:93 api.php:94
     15#: ajaxbackend.php:93 class.api.php:93
    1616msgid "required parameter \"%s\" is missing in the request"
    1717msgstr ""
     
    2020#. translators: lists and forms table header
    2121
    22 #: ajaxbackend.php:103 core.php:1174 views/forms.php:24
     22#: ajaxbackend.php:103 core.php:1175 views/forms.php:24
    2323#: views/subscribers.php:31
    2424msgid "Confirmed"
     
    2828#. translators: lists and forms table header
    2929
    30 #: ajaxbackend.php:104 core.php:1172 views/forms.php:25
     30#: ajaxbackend.php:104 core.php:1173 views/forms.php:25
    3131#: views/subscribers.php:32
    3232msgid "Unconfirmed"
     
    3636#. translators: lists and forms table header
    3737
    38 #: ajaxbackend.php:105 core.php:1176 views/forms.php:26
     38#: ajaxbackend.php:105 core.php:1177 views/forms.php:26
    3939#: views/subscribers.php:33
    4040msgid "Unsubscribed"
     
    6161msgstr ""
    6262
    63 #: ajaxbackend.php:134 ajaxbackend.php:1331 api.php:155 api.php:328 api.php:345
    64 #: api.php:364 class.analytics.php:75 class.analytics.php:134 core.php:2877
     63#: ajaxbackend.php:134 ajaxbackend.php:1360 class.analytics.php:75
     64#: class.analytics.php:134 class.api.php:154 class.api.php:327
     65#: class.api.php:344 class.api.php:363 core.php:2951
    6566msgid "List with id \"%s\" is not found."
    6667msgstr ""
     
    8283msgstr ""
    8384
    84 #: ajaxbackend.php:246 ajaxbackend.php:1876
     85#: ajaxbackend.php:246 ajaxbackend.php:1902
    8586msgid "Test email was sent to %s."
    8687msgstr ""
    8788
    88 #: ajaxbackend.php:272 ajaxbackend.php:302 ajaxbackend.php:435
    89 #: ajaxbackend.php:779 ajaxbackend.php:820 ajaxbackend.php:1062
    90 #: ajaxbackend.php:1373 ajaxbackend.php:1423 ajaxbackend.php:1442
    91 #: ajaxbackend.php:1685 ajaxbackend.php:1750 ajaxbackend.php:1760
    92 #: ajaxbackend.php:1918 ajaxbackend.php:2057
     89#: ajaxbackend.php:272 ajaxbackend.php:302 ajaxbackend.php:464
     90#: ajaxbackend.php:808 ajaxbackend.php:849 ajaxbackend.php:1091
     91#: ajaxbackend.php:1402 ajaxbackend.php:1452 ajaxbackend.php:1471
     92#: ajaxbackend.php:1711 ajaxbackend.php:1776 ajaxbackend.php:1786
     93#: ajaxbackend.php:1944 ajaxbackend.php:2083
    9394msgid "success"
    9495msgstr ""
    9596
    96 #: ajaxbackend.php:330
     97#: ajaxbackend.php:337
    9798msgid "Successfully deleted selected subscribers."
    9899msgstr ""
    99100
    100 #: ajaxbackend.php:351
     101#: ajaxbackend.php:380
    101102msgid "Error: \"options\" request parameter was empty or not defined."
    102103msgstr ""
    103104
    104 #: ajaxbackend.php:356
     105#: ajaxbackend.php:385
    105106msgid "Options were successfully saved."
    106107msgstr ""
    107108
    108 #: ajaxbackend.php:624 ajaxbackend.php:875 ajaxbackend.php:902
    109 #: ajaxbackend.php:930 ajaxbackend.php:962 ajaxbackend.php:995
    110 #: ajaxbackend.php:1091 ajaxbackend.php:1121 ajaxbackend.php:1702
    111 #: ajaxbackend.php:1793 ajaxbackend.php:2441
     109#: ajaxbackend.php:653 ajaxbackend.php:904 ajaxbackend.php:931
     110#: ajaxbackend.php:959 ajaxbackend.php:991 ajaxbackend.php:1024
     111#: ajaxbackend.php:1120 ajaxbackend.php:1150 ajaxbackend.php:1728
     112#: ajaxbackend.php:1819 ajaxbackend.php:2467
    112113msgid "Saved"
    113114msgstr ""
    114115
    115 #: ajaxbackend.php:658
     116#: ajaxbackend.php:687
    116117msgid "Your email was successfully queued for sending."
    117118msgstr ""
    118119
    119 #: ajaxbackend.php:815 ajaxbackend.php:838
     120#: ajaxbackend.php:844 ajaxbackend.php:867
    120121msgid "Template does not have a \"%s\" property."
    121122msgstr ""
    122123
    123 #: ajaxbackend.php:1034
     124#: ajaxbackend.php:1063
    124125msgid "You have successfully deleted %d template."
    125126msgid_plural "You have successfully deleted %d templates."
     
    127128msgstr[1] ""
    128129
    129 #: ajaxbackend.php:1176 ajaxbackend.php:1716
     130#: ajaxbackend.php:1205 ajaxbackend.php:1742
    130131msgid "Your email is successfully scheduled."
    131132msgstr ""
    132133
    133 #: ajaxbackend.php:1183
     134#: ajaxbackend.php:1212
    134135msgid "Unrecognized \"send\" parameter - %s"
    135136msgstr ""
    136137
    137 #: ajaxbackend.php:1235
     138#: ajaxbackend.php:1264
    138139msgid "Emails were successfully unsubscribed."
    139140msgstr ""
    140141
    141 #: ajaxbackend.php:1298 ajaxbackend.php:2184
     142#: ajaxbackend.php:1327 ajaxbackend.php:2210
    142143msgid "Bad email address"
    143144msgstr ""
    144145
    145 #: ajaxbackend.php:1388
     146#: ajaxbackend.php:1417
    146147msgid "Please select a file to import"
    147148msgstr ""
    148149
    149 #: ajaxbackend.php:1393
     150#: ajaxbackend.php:1422
    150151msgid "Imported %d subscriber. Make sure you send him confirmation email."
    151152msgid_plural "Imported %d subscribers. Make sure you send them confirmation email."
     
    153154msgstr[1] ""
    154155
    155 #: ajaxbackend.php:1440 views/subscribers.php:85
     156#: ajaxbackend.php:1469 views/subscribers.php:85
    156157msgid "IP Address"
    157158msgstr ""
    158159
    159 #: ajaxbackend.php:1463
     160#: ajaxbackend.php:1489
    160161msgid "Imported %d template."
    161162msgid_plural "Imported %d templates."
     
    163164msgstr[1] ""
    164165
    165 #: ajaxbackend.php:1517
     166#: ajaxbackend.php:1543
    166167msgid "Selected emails were successfully resumed"
    167168msgstr ""
    168169
    169 #: ajaxbackend.php:1571 ajaxbackend.php:1660
     170#: ajaxbackend.php:1597 ajaxbackend.php:1686
    170171msgid "\"entType\" parameter value \"%s\" should be \"email\" or \"template\"."
    171172msgstr ""
    172173
    173 #: ajaxbackend.php:1644
     174#: ajaxbackend.php:1670
    174175msgid "Posts block successfully compiled"
    175176msgstr ""
    176177
    177 #: ajaxbackend.php:1656
     178#: ajaxbackend.php:1682
    178179msgid "\"postTemplateType\" parameter value \"%s\" should be \"post_content\", \"post_excerpt\" or \"fancy_excerpt\"."
    179180msgstr ""
    180181
    181 #: ajaxbackend.php:1671
     182#: ajaxbackend.php:1697
    182183msgid "Posts block successfully updated"
    183184msgstr ""
    184185
    185 #: ajaxbackend.php:1720
     186#: ajaxbackend.php:1746
    186187msgid "ReConfirmation system email template is not found."
    187188msgstr ""
    188189
    189 #: ajaxbackend.php:1806
     190#: ajaxbackend.php:1832
    190191msgid "List with the name \"%s\" already exists."
    191192msgstr ""
     
    193194#. translators: email property
    194195
    195 #: ajaxbackend.php:1811 views/addedit_email.php:65 views/mailbox.php:108
     196#: ajaxbackend.php:1837 views/addedit_email.php:65 views/mailbox.php:108
    196197msgid "Created"
    197198msgstr ""
    198199
    199 #: ajaxbackend.php:1875
     200#: ajaxbackend.php:1901
    200201msgid "Test email was sent to %s and subscriber with this email was created in \"%s\" list."
    201202msgstr ""
    202203
    203 #: ajaxbackend.php:1959
     204#: ajaxbackend.php:1985
    204205msgid "Wrong \"type\" parameter. Must be \"csv\" or \"template\""
    205206msgstr ""
    206207
    207 #: ajaxbackend.php:2207 ajaxbackend.php:2225 ajaxbackend.php:2230
    208 #: ajaxbackend.php:2235 ajaxbackend.php:2241
     208#: ajaxbackend.php:2233 ajaxbackend.php:2251 ajaxbackend.php:2256
     209#: ajaxbackend.php:2261 ajaxbackend.php:2267
    209210msgid "Success"
    210211msgstr ""
    211212
    212 #: ajaxbackend.php:2209
     213#: ajaxbackend.php:2235
    213214msgid "Translation not found"
    214215msgstr ""
    215216
    216 #: ajaxbackend.php:2311 ajaxbackend.php:2312 ajaxbackend.php:2313
     217#: ajaxbackend.php:2337 ajaxbackend.php:2338 ajaxbackend.php:2339
    217218msgid "Unknown"
    218219msgstr ""
    219220
    220 #: ajaxbackend.php:2446
     221#: ajaxbackend.php:2472
    221222msgid "Subscriber with email %s already exists."
    222 msgstr ""
    223 
    224 #: api.php:128
    225 msgid "Subscriber added"
    226 msgstr ""
    227 
    228 #: api.php:133
    229 msgid "The email \"%s\" is already subscribed but not yet confirmed."
    230 msgstr ""
    231 
    232 #: api.php:138
    233 msgid "The email \"%s\" is already subscribed and confirmed."
    234 msgstr ""
    235 
    236 #: api.php:143
    237 msgid "The email \"%s\" is already already in the database but unsubscribed."
    238 msgstr ""
    239 
    240 #: api.php:164
    241 msgid "Bad email address format \"%s\"."
    242 msgstr ""
    243 
    244 #: api.php:374
    245 msgid "Successfully unsubscribed."
    246223msgstr ""
    247224
     
    258235msgstr ""
    259236
     237#: class.api.php:127
     238msgid "Subscriber added"
     239msgstr ""
     240
     241#: class.api.php:132
     242msgid "The email \"%s\" is already subscribed but not yet confirmed."
     243msgstr ""
     244
     245#: class.api.php:137
     246msgid "The email \"%s\" is already subscribed and confirmed."
     247msgstr ""
     248
     249#: class.api.php:142
     250msgid "The email \"%s\" is already already in the database but unsubscribed."
     251msgstr ""
     252
     253#: class.api.php:163
     254msgid "Bad email address format \"%s\"."
     255msgstr ""
     256
     257#: class.api.php:373
     258msgid "Successfully unsubscribed."
     259msgstr ""
     260
    260261#. translators: Default subscription form
    261262
    262 #: class.form.php:62 core.php:251
     263#: class.form.php:62 core.php:252
    263264msgid "Subscribe"
    264265msgstr ""
    265266
    266267#: class.form.php:136 class.form.php:170 class.form.php:191 class.form.php:211
    267 #: class.form.php:228 class.form.php:261 class.form.php:292 core.php:1197
     268#: class.form.php:228 class.form.php:261 class.form.php:292 core.php:1198
    268269#: views/list.php:69 views/list.php:91 views/list.php:108 views/list.php:194
    269270#: views/list.php:231
     
    275276msgstr ""
    276277
    277 #: class.form.php:341 core.php:1178 core.php:1206
     278#: class.form.php:341 core.php:1179 core.php:1207
    278279msgid "Error"
    279280msgstr ""
     
    287288msgstr ""
    288289
    289 #: class.utils.php:40
     290#: class.utils.php:41
    290291msgid "Already Subscribed and Verified"
    291292msgstr ""
    292293
    293 #: class.utils.php:46
     294#: class.utils.php:47
    294295msgid "Bad email address format"
    295296msgstr ""
    296297
    297 #: class.utils.php:52
     298#: class.utils.php:53
    298299msgid "Confirmation Required"
    299300msgstr ""
    300301
    301 #: class.utils.php:58
     302#: class.utils.php:59
    302303msgid "Confirmation Successful"
    303304msgstr ""
    304305
    305 #: class.utils.php:64
     306#: class.utils.php:65
    306307msgid "Subscription not yet confirmed"
    307308msgstr ""
    308309
    309 #: class.utils.php:70
     310#: class.utils.php:71
    310311msgid "Successfully unsubscribed"
    311312msgstr ""
    312313
    313 #: class.utils.php:76 migration.php:186
     314#: class.utils.php:77 migration.php:186
    314315msgid "Please confirm your unsubscribe decision"
    315316msgstr ""
    316317
    317 #: class.utils.php:889
     318#: class.utils.php:891
    318319msgid "Add new..."
    319320msgstr ""
    320321
    321 #: class.utils.php:1068 class.utils.php:1119 core.php:1664 core.php:1677
     322#: class.utils.php:1072 class.utils.php:1125 core.php:1685 core.php:1698
    322323msgid "Enter Subject Here"
    323324msgstr ""
    324325
    325 #: class.utils.php:1260 core.php:1250 core.php:2078
     326#: class.utils.php:1266 core.php:1251 core.php:2152
    326327msgid "Copy"
    327328msgstr ""
    328329
    329 #: class.utils.php:1573
     330#: class.utils.php:1583
    330331msgid "Administrator notification - new subscriber"
    331332msgstr ""
    332333
    333 #: class.utils.php:1578
     334#: class.utils.php:1588
    334335msgid "Administrator notification - user unsubscribed"
    335336msgstr ""
    336337
    337 #: class.utils.php:1583
     338#: class.utils.php:1593
    338339msgid "Subscription confirmation"
    339340msgstr ""
    340341
    341 #: class.utils.php:1588
     342#: class.utils.php:1598
    342343msgid "Unsubscribe notification"
    343344msgstr ""
    344345
    345 #: class.utils.php:1593
     346#: class.utils.php:1603
    346347msgid "Welcome letter, thanks for subscribing"
    347348msgstr ""
    348349
    349 #: class.utils.php:1598 migration.php:218
     350#: class.utils.php:1608 migration.php:218
    350351msgid "Unsubscribe confirmation"
    351352msgstr ""
    352353
    353 #: class.utils.php:1603 migration.php:301
     354#: class.utils.php:1613 migration.php:301
    354355msgid "Re-subscription confirmation"
    355356msgstr ""
    356357
    357 #: core.php:27 core.php:2169
     358#: core.php:28 core.php:2243
    358359msgid "Every minute"
    359360msgstr ""
     
    361362#. translators: Default subscription form
    362363
    363 #: core.php:241
     364#: core.php:242
    364365msgid "Subscription"
    365366msgstr ""
     
    367368#. translators: Default subscription form
    368369
    369 #: core.php:243
     370#: core.php:244
    370371msgid "Enter your primary email address to get our free newsletter."
    371372msgstr ""
     
    373374#. translators: Default subscription form
    374375
    375 #: core.php:245 views/subscribers.php:237 views/subscribers.php:245
     376#: core.php:246 views/subscribers.php:236 views/subscribers.php:244
     377#: views/subscribers.php:252 views/subscribers.php:260
     378#: views/subscribers.php:268
     379msgid "First Name"
     380msgstr ""
     381
     382#. translators: Default subscription form
     383
     384#: core.php:248 views/subscribers.php:237 views/subscribers.php:245
    376385#: views/subscribers.php:253 views/subscribers.php:261
    377386#: views/subscribers.php:269
    378 msgid "First Name"
     387msgid "Last Name"
    379388msgstr ""
    380389
    381390#. translators: Default subscription form
    382391
    383 #: core.php:247 views/subscribers.php:238 views/subscribers.php:246
    384 #: views/subscribers.php:254 views/subscribers.php:262
    385 #: views/subscribers.php:270
    386 msgid "Last Name"
     392#: core.php:250 views/list.php:279 views/subscribers.php:83
     393msgid "Email"
    387394msgstr ""
    388395
    389396#. translators: Default subscription form
    390397
    391 #: core.php:249 views/list.php:279 views/subscribers.php:83
    392 msgid "Email"
    393 msgstr ""
    394 
    395 #. translators: Default subscription form
    396 
    397 #: core.php:253
     398#: core.php:254
    398399msgid "You can leave the list at any time. Removal instructions are included in each message."
    399400msgstr ""
    400401
    401 #: core.php:270 core.php:1773
     402#: core.php:271 core.php:1785
    402403msgid "Upgrade to Pro"
    403404msgstr ""
    404405
    405 #: core.php:273
     406#: core.php:274
    406407msgid "Sent %d of %d emails."
    407408msgstr ""
    408409
    409 #: core.php:274
     410#: core.php:275
    410411msgid "You reached the subscribers limit of the Lite version. %s to resume sending."
    411412msgstr ""
    412413
    413 #: core.php:406
     414#: core.php:407
    414415msgid "\"Post has no excerpt. Write something yourself or use fancy_excerpt option\""
    415416msgstr ""
    416417
    417 #: core.php:642
     418#: core.php:643
    418419msgid "Your link seems to be broken."
    419420msgstr ""
    420421
    421 #: core.php:648
     422#: core.php:649
    422423msgid "List with the unique code \"%s\" is not found"
    423424msgstr ""
    424425
    425 #: core.php:654
     426#: core.php:655
    426427msgid "Subscriber with the unique code \"%s\" is not found"
    427428msgstr ""
    428429
    429 #: core.php:755
     430#: core.php:756
    430431msgid "Unique email id is missing in request."
    431432msgstr ""
    432433
    433 #: core.php:760
     434#: core.php:761
    434435msgid "Email with unique code %s is not found."
    435436msgstr ""
    436437
    437 #: core.php:1022 core.php:1271
     438#: core.php:1023 core.php:1274
    438439msgid "Please fill all the required fields."
    439440msgstr ""
    440441
    441 #: core.php:1023 core.php:1272
     442#: core.php:1024 core.php:1275
    442443msgid "Please check your email address."
    443444msgstr ""
    444445
    445 #: core.php:1165
     446#: core.php:1166
    446447msgid "Full Email Statistics & Click Tracking available in <a href=\"%s\">the Pro version</a>"
    447448msgstr ""
    448449
    449 #: core.php:1177
     450#: core.php:1178
    450451msgid "Error: "
    451452msgstr ""
    452453
    453 #: core.php:1179
     454#: core.php:1180
    454455msgid "Done"
    455456msgstr ""
    456457
    457 #: core.php:1180
     458#: core.php:1181
    458459msgid "Please select emails which you want to stop sending of."
    459460msgstr ""
    460461
    461 #: core.php:1181
     462#: core.php:1182
    462463msgid "You have successfully stopped sending of selected emails."
    463464msgstr ""
    464465
    465 #: core.php:1182
     466#: core.php:1183
    466467msgid "Please mark subscribers which you want to unsubscribe."
    467468msgstr ""
    468469
    469 #: core.php:1183
     470#: core.php:1184
    470471msgid "You have successfully unsubscribed selected subscribers."
    471472msgstr ""
    472473
    473 #: core.php:1184
     474#: core.php:1185
    474475msgid "Please mark subscribers which you want to delete."
    475476msgstr ""
    476477
    477 #: core.php:1185
     478#: core.php:1186
    478479msgid "You have successfully deleted selected subscribers."
    479480msgstr ""
    480481
    481 #: core.php:1186
     482#: core.php:1187
    482483msgid "Please mark subscribers to change."
    483484msgstr ""
    484485
    485 #: core.php:1187
     486#: core.php:1188
    486487msgid "You have successfully changed status of selected subscribers."
    487488msgstr ""
    488489
    489 #: core.php:1188
     490#: core.php:1189
    490491msgid "Please mark subscribers which you want to send confirmation to."
    491492msgstr ""
    492493
    493 #: core.php:1189
     494#: core.php:1190
    494495msgid "You have successfully send confirmation emails."
    495496msgstr ""
    496497
    497 #: core.php:1190
     498#: core.php:1191
    498499msgid "All subscribers (#)"
    499500msgstr ""
    500501
    501 #: core.php:1191
     502#: core.php:1192
    502503msgid "Confirmed (#)"
    503504msgstr ""
    504505
    505 #: core.php:1192
     506#: core.php:1193
    506507msgid "Unconfirmed (#)"
    507508msgstr ""
    508509
    509 #: core.php:1193
     510#: core.php:1194
    510511msgid "Unsubscribed (#)"
    511512msgstr ""
    512513
    513 #: core.php:1194
     514#: core.php:1195
    514515msgid "You have no subscribers yet."
    515516msgstr ""
    516517
    517 #: core.php:1195 views/mailbox-email.php:113
     518#: core.php:1196 views/mailbox-email.php:113
    518519msgid "Sending"
    519520msgstr ""
    520521
    521 #: core.php:1196
     522#: core.php:1197
    522523msgid "Check me"
    523524msgstr ""
    524525
    525 #: core.php:1198
     526#: core.php:1199
    526527msgid "Choose an option"
    527528msgstr ""
    528529
    529 #: core.php:1199
     530#: core.php:1200
    530531msgid "new option 1"
    531532msgstr ""
    532533
    533 #: core.php:1200
     534#: core.php:1201
    534535msgid "Untitled"
    535536msgstr ""
    536537
    537 #: core.php:1201 views/addedit_email.php:71
     538#: core.php:1202 views/addedit_email.php:71
    538539msgid "You have no emails yet."
    539540msgstr ""
    540541
    541 #: core.php:1202
     542#: core.php:1203
    542543msgid "You have no forms, yet"
    543544msgstr ""
     
    545546#. translators: mailbox view link
    546547
    547 #: core.php:1203 core.php:1234 views/addedit_email.php:17 views/mailbox.php:24
     548#: core.php:1204 core.php:1235 views/addedit_email.php:17 views/mailbox.php:24
    548549msgid "Sent"
    549550msgstr ""
     
    551552#. translators: mailbox view link
    552553
    553 #: core.php:1204 core.php:1232 views/addedit_email.php:16 views/mailbox.php:23
     554#: core.php:1205 core.php:1233 views/addedit_email.php:16 views/mailbox.php:23
    554555msgid "Pending"
    555556msgstr ""
    556557
    557 #: core.php:1205
     558#: core.php:1206
    558559msgid "Draft"
    559560msgstr ""
    560561
    561 #: core.php:1207
     562#: core.php:1208
    562563msgid "Sending..."
    563564msgstr ""
    564565
    565 #: core.php:1208
     566#: core.php:1209
    566567msgid "Stopped"
    567568msgstr ""
    568569
    569 #: core.php:1209
     570#: core.php:1210
    570571msgid "Scheduled on"
    571572msgstr ""
    572573
    573 #: core.php:1210
     574#: core.php:1211
    574575msgid "You don't have any templates yet."
    575576msgstr ""
    576577
    577 #: core.php:1211
     578#: core.php:1212
    578579msgid "Create one?"
    579580msgstr ""
    580581
    581 #: core.php:1212
     582#: core.php:1213
    582583msgid "Please mark the emails which you want to delete."
    583584msgstr ""
    584585
    585 #: core.php:1213
     586#: core.php:1214
    586587msgid "You have successfully deleted selected emails."
    587588msgstr ""
    588589
    589 #: core.php:1214
     590#: core.php:1215
    590591msgid "Please mark the templates which you want to delete."
    591592msgstr ""
    592593
    593 #: core.php:1215
     594#: core.php:1216
    594595msgid "Please mark the forms which you want to delete."
    595596msgstr ""
    596597
    597 #: core.php:1216
     598#: core.php:1217
    598599msgid "You have no templates yet."
    599600msgstr ""
    600601
    601 #: core.php:1217
     602#: core.php:1218
    602603msgid "All emails (#)"
    603604msgstr ""
    604605
    605 #: core.php:1218
     606#: core.php:1219
    606607msgid "In progress (#)"
    607608msgstr ""
    608609
    609 #: core.php:1219
     610#: core.php:1220
    610611msgid "Pending (#)"
    611612msgstr ""
    612613
    613 #: core.php:1220
     614#: core.php:1221
    614615msgid "Sent (#)"
    615616msgstr ""
    616617
    617 #: core.php:1221 views/mailbox-email.php:114 views/mailbox-email.php:119
     618#: core.php:1222 views/mailbox-email.php:114 views/mailbox-email.php:119
    618619msgid "Resume"
    619620msgstr ""
    620621
    621 #: core.php:1222
     622#: core.php:1223
    622623msgid "Please fill the \"To:\" field."
    623624msgstr ""
    624625
    625 #: core.php:1223
     626#: core.php:1224
    626627msgid "Please select emails first."
    627628msgstr ""
    628629
    629 #: core.php:1224
     630#: core.php:1225
    630631msgid "Please select"
    631632msgstr ""
     
    633634#. translators: mailbox view link
    634635
    635 #: core.php:1226 views/addedit_email.php:14 views/mailbox.php:20
     636#: core.php:1227 views/addedit_email.php:14 views/mailbox.php:20
    636637msgid "All emails"
    637638msgstr ""
     
    639640#. translators: mailbox view link
    640641
    641 #: core.php:1228 views/addedit_email.php:15 views/mailbox.php:22
     642#: core.php:1229 views/addedit_email.php:15 views/mailbox.php:22
    642643msgid "In progress"
    643644msgstr ""
     
    645646#. translators: mailbox view link
    646647
    647 #: core.php:1230 views/mailbox.php:21
     648#: core.php:1231 views/mailbox.php:21
    648649msgid "Drafts"
    649650msgstr ""
    650651
    651 #: core.php:1235
     652#: core.php:1236
    652653msgid "Sent %d of %d emails"
    653654msgstr ""
    654655
    655 #: core.php:1236
     656#: core.php:1237
    656657msgid "Status: "
    657658msgstr ""
    658659
    659 #: core.php:1237
     660#: core.php:1238
    660661msgid "Email Errors"
    661662msgstr ""
    662663
    663 #: core.php:1238
     664#: core.php:1239
    664665msgid "Email Address"
    665666msgstr ""
    666667
    667 #: core.php:1239
     668#: core.php:1240
    668669msgid "Error Message"
    669670msgstr ""
    670671
    671 #: core.php:1240 views/forms.php:31 views/mailbox-email.php:166
     672#: core.php:1241 views/forms.php:31 views/mailbox-email.php:166
    672673#: views/mailbox.php:116 views/subscribers.php:92 views/templates.php:64
    673674#: views/templates.php:80 views/templates.php:96 views/templates.php:184
     
    675676msgstr ""
    676677
    677 #: core.php:1241 newsman-widget.php:51
     678#: core.php:1242 newsman-widget.php:51
    678679msgid "List:"
    679680msgstr ""
    680681
    681 #: core.php:1242
     682#: core.php:1243
    682683msgid "Bug report"
    683684msgstr ""
    684685
    685 #: core.php:1243
     686#: core.php:1244
    686687msgid "Load more..."
    687688msgstr ""
    688689
    689 #: core.php:1244
     690#: core.php:1245
    690691msgid "Sorry, no posts matched your criteria."
    691692msgstr ""
    692693
    693 #: core.php:1245
     694#: core.php:1246
    694695msgid "Warning! You are close to the limit of %d subscribers you can send emails to in the Lite version of the plugin. Please, <a href=\"%s\">upgrade to the Pro version</a> to send emails without limitations."
    695696msgstr ""
    696697
    697 #: core.php:1246
     698#: core.php:1247
    698699msgid "Warning! You exceeded the limit of %d subscribers you can send emails to in the Lite version of the plugin. Please, <a href=\"%s\">upgrade to the Pro version</a> to send emails without limitations."
    699700msgstr ""
     
    701702#. translators: lists and forms table header
    702703
    703 #: core.php:1247 views/forms.php:23 views/list.php:67 views/list.php:86
     704#: core.php:1248 views/forms.php:23 views/list.php:67 views/list.php:86
    704705#: views/list.php:106 views/list.php:141 views/list.php:192 views/list.php:229
    705706#: views/templates.php:59 views/templates.php:75 views/templates.php:91
     
    707708msgstr ""
    708709
    709 #: core.php:1248
     710#: core.php:1249
    710711msgid "Edit Form"
    711712msgstr ""
    712713
    713 #: core.php:1249 views/list.php:257
     714#: core.php:1250 views/list.php:257
    714715msgid "View Subscribers"
    715716msgstr ""
    716717
    717 #: core.php:1251
     718#: core.php:1252
    718719msgid "Edit"
    719720msgstr ""
    720721
    721 #: core.php:1252 views/addedit_email.php:39 views/addedit_email.php:102
     722#: core.php:1253 views/addedit_email.php:39 views/addedit_email.php:102
    722723#: views/forms.php:15 views/forms.php:70 views/mailbox.php:46
    723 #: views/mailbox.php:149 views/subscribers.php:57 views/subscribers.php:148
     724#: views/mailbox.php:149 views/subscribers.php:57 views/subscribers.php:147
    724725#: views/templates.php:29 views/templates.php:135 views/templates.php:150
    725726msgid "Delete"
    726727msgstr ""
    727728
    728 #: core.php:1253
     729#: core.php:1254
    729730msgid "Export"
    730731msgstr ""
    731732
    732 #: core.php:1254
     733#: core.php:1255
    733734msgid "Restore"
    734735msgstr ""
    735736
    736 #: core.php:1255
     737#: core.php:1256
    737738msgid "Default System Templates"
    738739msgstr ""
    739740
    740 #: core.php:1256
     741#: core.php:1257
    741742msgid "System Template. Cannot be deleted."
    742743msgstr ""
    743744
    744 #: core.php:1257
     745#: core.php:1258
    745746msgid "Insert Posts"
    746747msgstr ""
    747748
    748 #: core.php:1258
     749#: core.php:1259
    749750msgid "Post(s) selected: %d"
    750751msgstr ""
    751752
    752 #: core.php:1259
     753#: core.php:1260
    753754msgid "Select categories"
    754755msgstr ""
    755756
    756 #: core.php:1260
     757#: core.php:1261
    757758msgid "# of # categories selected"
    758759msgstr ""
    759760
    760 #: core.php:1261
     761#: core.php:1262
    761762msgid "Select author(s)"
    762763msgstr ""
    763764
    764 #: core.php:1262
     765#: core.php:1263
    765766msgid "# of # authors selected"
    766767msgstr ""
    767768
    768 #: core.php:1263 views/list.php:348 views/subscribers.php:117
     769#: core.php:1264 views/list.php:348 views/subscribers.php:117
    769770msgid "Save"
    770771msgstr ""
    771772
    772 #: core.php:1264
     773#: core.php:1265
    773774msgid "Saved at"
    774775msgstr ""
    775776
    776 #: core.php:1266
     777#: core.php:1267
     778msgid "Bounce Handler has %d blocked domains. Some of recipients might be skipped during sending."
     779msgstr ""
     780
     781#: core.php:1269
    777782msgid "View in browser"
    778783msgstr ""
    779784
    780 #: core.php:1268
     785#: core.php:1271
    781786msgid "View Stats"
    782787msgstr ""
    783788
    784 #: core.php:1273
     789#: core.php:1276
    785790msgid "Are you sure you want to restore stock template?"
    786791msgstr ""
    787792
    788 #: core.php:1275
     793#: core.php:1278
    789794msgid "Subscribe notification email sent to the administrator."
    790795msgstr ""
    791796
    792 #: core.php:1276
     797#: core.php:1279
    793798msgid "Unsubscribe notification email sent to the administrator."
    794799msgstr ""
    795800
    796 #: core.php:1277
     801#: core.php:1280
    797802msgid "Email with the confirmation link sent to the user upon subscription."
    798803msgstr ""
    799804
    800 #: core.php:1278
     805#: core.php:1281
    801806msgid "Email sent to the user that confirms that his email address was unsubscribed."
    802807msgstr ""
    803808
    804 #: core.php:1279
     809#: core.php:1282
    805810msgid "Welcome message sent after the subscriber confirms his subscription."
    806811msgstr ""
    807812
    808 #: core.php:1280
     813#: core.php:1283
    809814msgid "Email with a link to confirm the subscriber’s decision to unsubscribe."
    810815msgstr ""
    811816
    812 #: core.php:1281
     817#: core.php:1284
    813818msgid "Email with a link to re-confirm the subscription that is sent to ALL \"unconfirmed\" subscribers on the list."
    814819msgstr ""
    815820
    816 #: core.php:1387
     821#: core.php:1390
    817822msgid "Cannot unsubscribe email. Subscriber with unique code %s is not found."
    818823msgstr ""
    819824
    820 #: core.php:1676
     825#: core.php:1697
    821826msgid "Untitled templates"
    822827msgstr ""
    823828
    824 #: core.php:1687
     829#: core.php:1708
    825830msgid "Alternative Plain Text Body"
    826831msgstr ""
    827832
    828 #: core.php:1705
     833#: core.php:1726
    829834msgid "WPNewsman Lite"
    830835msgstr ""
    831836
    832 #: core.php:1718 core.php:1719 views/addedit_email.php:5 views/mailbox.php:9
     837#: core.php:1739 core.php:1740 views/addedit_email.php:5 views/mailbox.php:9
    833838msgid "Mailbox"
    834839msgstr ""
    835840
    836 #: core.php:1736 core.php:1737 views/forms.php:5
     841#: core.php:1748 core.php:1749 views/forms.php:5
    837842msgid "Lists and Forms"
    838843msgstr ""
    839844
    840 #: core.php:1745 core.php:1746 views/templates.php:5
     845#: core.php:1757 core.php:1758 views/templates.php:5
    841846msgid "Email Templates"
    842847msgstr ""
    843848
    844 #: core.php:1754 core.php:1755 views/options.php:6
     849#: core.php:1766 core.php:1767 views/options.php:6
    845850msgid "Settings"
    846851msgstr ""
    847852
    848 #: core.php:1764 core.php:1765 views/debug-log.php:11
     853#: core.php:1776 core.php:1777 views/debug-log.php:11
    849854msgid "Debug Log"
    850855msgstr ""
    851856
    852 #: core.php:1802
     857#: core.php:1841
    853858msgid "Excerpt for external forms"
    854859msgstr ""
    855860
    856 #: core.php:2108
     861#: core.php:2050 core.php:2931
     862msgid "You are not authorized to access this resource."
     863msgstr ""
     864
     865#: core.php:2182
    857866msgctxt "Action Page"
    858867msgid "Action Pages"
    859868msgstr ""
    860869
    861 #: core.php:2109
     870#: core.php:2183
    862871msgctxt "Action Page"
    863872msgid "Action Page"
    864873msgstr ""
    865874
    866 #: core.php:2110
     875#: core.php:2184
    867876msgctxt "Action Page"
    868877msgid "Add New"
    869878msgstr ""
    870879
    871 #: core.php:2111
     880#: core.php:2185
    872881msgctxt "Action Page"
    873882msgid "Add New Action Page"
    874883msgstr ""
    875884
    876 #: core.php:2112
     885#: core.php:2186
    877886msgctxt "Action Page"
    878887msgid "Edit Action Page"
    879888msgstr ""
    880889
    881 #: core.php:2113
     890#: core.php:2187
    882891msgctxt "Action Page"
    883892msgid "New Action Page"
    884893msgstr ""
    885894
    886 #: core.php:2114
     895#: core.php:2188
    887896msgctxt "Action Page"
    888897msgid "View Action Page"
    889898msgstr ""
    890899
    891 #: core.php:2115
     900#: core.php:2189
    892901msgctxt "Action Page"
    893902msgid "Search Action Pages"
    894903msgstr ""
    895904
    896 #: core.php:2116
     905#: core.php:2190
    897906msgid "Nothing found"
    898907msgstr ""
    899908
    900 #: core.php:2117
     909#: core.php:2191
    901910msgid "Nothing found in the Trash"
    902911msgstr ""
    903912
    904 #: core.php:2339 core.php:2415
     913#: core.php:2413 core.php:2489
    905914msgid "Error: Email template not found"
    906915msgstr ""
    907916
    908 #: core.php:2360
     917#: core.php:2434
    909918msgid "Error: Email not found"
    910919msgstr ""
    911920
    912 #: core.php:2471
     921#: core.php:2545
    913922msgid "G-Lock WPNewsman"
    914923msgstr ""
    915924
    916 #: core.php:2509
     925#: core.php:2583
    917926msgid "G-Lock WPNewsman subscription summary"
    918927msgstr ""
    919928
    920 #: core.php:2510
     929#: core.php:2584
    921930msgid "Manage Forms and Lists"
    922931msgstr ""
    923932
    924 #: core.php:2524 views/list.php:265
     933#: core.php:2598 views/list.php:265
    925934msgid "List name"
    926935msgstr ""
    927936
    928 #: core.php:2525
     937#: core.php:2599
    929938msgid "Total confirmed"
    930939msgstr ""
    931940
    932 #: core.php:2526
     941#: core.php:2600
    933942msgid "Total unconfirmed"
    934943msgstr ""
    935944
    936 #: core.php:2527
     945#: core.php:2601
    937946msgid "Total unsubscribed"
    938947msgstr ""
    939948
    940 #: core.php:2568
     949#: core.php:2642
    941950msgid "Post Template"
    942951msgstr ""
    943952
    944 #: core.php:2574
     953#: core.php:2648
    945954msgid "Click here"
    946955msgstr ""
    947956
    948 #: core.php:2577
     957#: core.php:2651
    949958msgid "You can use the \"Newsman\" menu button on the editor's toolbar to insert the unsubscribe link and social profile links into the message."
    950959msgstr ""
    951960
    952 #: core.php:2578
     961#: core.php:2652
    953962msgid "%s for more shortcode macros supported by WPNewsman."
    954963msgstr ""
    955964
    956 #: core.php:2768
     965#: core.php:2842
    957966msgid "List: "
    958967msgstr ""
    959968
    960 #: core.php:2780
     969#: core.php:2854
    961970msgid "Page Template"
    962971msgstr ""
    963972
    964 #: core.php:2782
     973#: core.php:2856
    965974msgid "Default Template"
    966975msgstr ""
    967976
    968 #: core.php:2857
    969 msgid "You are not authorized to access this resource."
    970 msgstr ""
    971 
    972 #: core.php:2872
     977#: core.php:2946
    973978msgid "Please, provide correct \"listId\" parameter."
    974979msgstr ""
     
    10601065#: views/_an_fs_method.php:3 views/_an_locale_changed.php:4
    10611066#: views/_an_w3tc_configured.php:3 views/_an_wp_cron_error.php:4
    1062 #: views/subscribers.php:171
     1067#: views/subscribers.php:170
    10631068msgid "Warning!"
    10641069msgstr ""
     
    11071112
    11081113#: views/_an_wp_cron_error.php:5
    1109 msgid "There was a problem spawning a call to the WP-Cron system on your site. This means email sending on your site may not work. The problem was:<br /><strong>%s</strong>. In order to fix the problem you can enable pokeback mode. This will options will make calls to our server and back to yours. No sensitive data will be shared with our server. <a href=\"http://wpnewsman.com\">Learn more</a>"
     1114msgid "There was a problem spawning a call to the WP-Cron system on your site. This means email sending on your site may not work. The problem was:<br /><strong>%s</strong>. In order to fix the problem you can enable pokeback mode. Plugin will make calls to our server and back to yours. No sensitive data will be shared with our server. <a href=\"http://wpnewsman.com\">Learn more</a>"
    11101115msgstr ""
    11111116
     
    11231128
    11241129#: views/_an_wpcron_alternative_mode.php:5
    1125 msgid "The pokeback mode is enabled on your site. WPNewsman make http request to our server and back. No sensitive data from your website is shared with our server. <a href=\"#\">Learn more...</a>"
     1130msgid "The pokeback mode is enabled on your site. WPNewsman make http request to our server and back. No sensitive data from your website is shared with our server. <a href=\"http://support.glocksoft.net/kb/articles/90-messages-are-always-pending-and-not-sent\" target=\"_blank\">Learn more...</a>"
    11261131msgstr ""
    11271132
     
    11501155#: views/mailbox-email.php:125 views/mailbox.php:134 views/mailbox.php:148
    11511156#: views/mailbox.php:162 views/mailbox.php:177 views/mailbox.php:190
    1152 #: views/options.php:225 views/subscribers.php:131 views/subscribers.php:147
    1153 #: views/subscribers.php:163 views/subscribers.php:191
    1154 #: views/subscribers.php:313 views/subscribers.php:333
    1155 #: views/subscribers.php:348 views/templates.php:119 views/templates.php:134
     1157#: views/options.php:225 views/subscribers.php:131 views/subscribers.php:146
     1158#: views/subscribers.php:162 views/subscribers.php:190
     1159#: views/subscribers.php:312 views/subscribers.php:332
     1160#: views/subscribers.php:347 views/templates.php:119 views/templates.php:134
    11561161#: views/templates.php:149 views/templates.php:165 views/templates.php:191
    11571162#: views/templates.php:220
     
    12171222#: views/mailbox.php:142 views/mailbox.php:156 views/options.php:219
    12181223#: views/subscribers.php:124 views/subscribers.php:139
    1219 #: views/subscribers.php:155 views/subscribers.php:185 views/templates.php:113
     1224#: views/subscribers.php:154 views/subscribers.php:184 views/templates.php:113
    12201225#: views/templates.php:127 views/templates.php:143 views/templates.php:159
    12211226msgid "Please, confirm..."
     
    12281233
    12291234#: views/addedit_email.php:88 views/mailbox.php:135 views/subscribers.php:45
    1230 #: views/subscribers.php:132 views/subscribers.php:332 views/templates.php:120
     1235#: views/subscribers.php:132 views/subscribers.php:331 views/templates.php:120
    12311236msgid "Unsubscribe"
    12321237msgstr ""
    12331238
    1234 #: views/addedit_email.php:98 views/subscribers.php:142
     1239#: views/addedit_email.php:98
    12351240msgid "Are you sure you want to delete selected subscribers?"
    12361241msgstr ""
    12371242
    1238 #: views/addedit_email.php:112 views/mailbox.php:159 views/subscribers.php:158
     1243#: views/addedit_email.php:112 views/mailbox.php:159 views/subscribers.php:157
    12391244#: views/templates.php:162
    12401245msgid "Are you sure you want to change status of selected subscribers to %s?"
    12411246msgstr ""
    12421247
    1243 #: views/addedit_email.php:116 views/mailbox.php:163 views/subscribers.php:164
     1248#: views/addedit_email.php:116 views/mailbox.php:163 views/subscribers.php:163
    12441249#: views/templates.php:166
    12451250msgid "Change"
     
    12581263msgstr ""
    12591264
    1260 #: views/forms.php:56 views/subscribers.php:347
     1265#: views/forms.php:56 views/subscribers.php:346
    12611266msgid "Create"
    12621267msgstr ""
     
    15331538
    15341539#: views/mailbox-email.php:119 views/mailbox-email.php:169
    1535 #: views/subscribers.php:192
     1540#: views/subscribers.php:191
    15361541msgid "Send"
    15371542msgstr ""
     
    15781583
    15791584#: views/mailbox-email.php:168 views/subscribers.php:116
    1580 #: views/subscribers.php:177
     1585#: views/subscribers.php:176
    15811586msgid "Cancel"
    15821587msgstr ""
     
    19181923msgstr ""
    19191924
    1920 #: views/pro.php:26
     1925#: views/pro.php:25
    19211926msgid "or get special <a href=\"https://www.iportis.com/buynow.php?pid=wpnewsmanpro&noshop=1&qty=3\">3-site discounted license for $%s</a> <br> To activate the PRO version, you'll need to download an extra plugin WPNewsman Pro Extension."
    19221927msgstr ""
     
    19861991msgstr ""
    19871992
    1988 #: views/subscribers.php:145 views/subscribers.php:146
     1993#: views/subscribers.php:142
     1994msgid "Are you sure you want to delete %s selected subscribers?"
     1995msgstr ""
     1996
     1997#: views/subscribers.php:145
    19891998msgid "Delete all"
    19901999msgstr ""
    19912000
    1992 #: views/subscribers.php:161 views/subscribers.php:162
     2001#: views/subscribers.php:160 views/subscribers.php:161
    19932002msgid "Change all"
    19942003msgstr ""
    19952004
    1996 #: views/subscribers.php:174
     2005#: views/subscribers.php:173
    19972006msgid "This action will send re-subscribe request <strong>to all unconfirmed subscribers</strong> in the list."
    19982007msgstr ""
    19992008
    2000 #: views/subscribers.php:178
     2009#: views/subscribers.php:177
    20012010msgid "Send re-subscribe request"
    20022011msgstr ""
    20032012
    2004 #: views/subscribers.php:188
     2013#: views/subscribers.php:187
    20052014msgid "Are you sure you want to re-send confirmation emails to selected subscribers?"
    20062015msgstr ""
    20072016
    2008 #: views/subscribers.php:199
     2017#: views/subscribers.php:198
    20092018msgid " list:"
    20102019msgstr ""
    20112020
    2012 #: views/subscribers.php:204
     2021#: views/subscribers.php:203
    20132022msgid "Uploaded files"
    20142023msgstr ""
    20152024
    2016 #: views/subscribers.php:207
     2025#: views/subscribers.php:206
    20172026msgid "Import options"
    20182027msgstr ""
    20192028
    2020 #: views/subscribers.php:215
     2029#: views/subscribers.php:214
    20212030msgid "Please select a file to import."
    20222031msgstr ""
    20232032
    2024 #: views/subscribers.php:223
     2033#: views/subscribers.php:222
    20252034msgid " Skip first row"
    20262035msgstr ""
    20272036
    2028 #: views/subscribers.php:236 views/subscribers.php:244
    2029 #: views/subscribers.php:252 views/subscribers.php:260
    2030 #: views/subscribers.php:268
     2037#: views/subscribers.php:235 views/subscribers.php:243
     2038#: views/subscribers.php:251 views/subscribers.php:259
     2039#: views/subscribers.php:267
    20312040msgid "email"
    20322041msgstr ""
    20332042
    2034 #: views/subscribers.php:305
     2043#: views/subscribers.php:304
    20352044msgid "Please enable JavaScript to use file uploader."
    20362045msgstr ""
    20372046
    2038 #: views/subscribers.php:311 views/templates.php:190
     2047#: views/subscribers.php:310 views/templates.php:190
    20392048msgid "Upload a file"
    20402049msgstr ""
    20412050
    2042 #: views/subscribers.php:312 views/templates.php:192
     2051#: views/subscribers.php:311 views/templates.php:192
    20432052msgid "Import"
    20442053msgstr ""
    20452054
    2046 #: views/subscribers.php:320
     2055#: views/subscribers.php:319
    20472056msgid "Bulk unsubscribe:"
    20482057msgstr ""
    20492058
    2050 #: views/subscribers.php:324
     2059#: views/subscribers.php:323
    20512060msgid "Enter an email addresses which you want to unsubscribe. Place each email on a separate row."
    20522061msgstr ""
    20532062
    2054 #: views/subscribers.php:331
     2063#: views/subscribers.php:330
    20552064msgid " Unsubscribe from all lists"
    20562065msgstr ""
    20572066
    2058 #: views/subscribers.php:341
     2067#: views/subscribers.php:340
    20592068msgid "Add new list:"
    20602069msgstr ""
  • wpnewsman-newsletters/trunk/readme.txt

    r1015230 r1016663  
    55Requires at least: 3.8
    66Tested up to: 4.0
    7 Stable tag: 1.8.0
     7Stable tag: 1.8.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    126126== Changelog ==
    127127
     128= 1.8.1 =
     129
     130* Fixes styling of the Pro plugin pages
     131
    128132= 1.8.0 =
    129133
  • wpnewsman-newsletters/trunk/wpnewsman.php

    r1015230 r1016663  
    44Plugin URI: http://wpnewsman.com
    55Description: You get simple yet powerful newsletter solution for WordPress. Now you can easily add double optin subscription forms in widgets, articles and pages, import and manage your lists, create and send beautiful newsletters directly from your WordPress site. You get complete freedom and a lower cost compared to Email Service Providers. Free yourself from paying for expensive email campaigns. WPNewsman plugin updated regularly with new features.
    6 Version: 1.8.0
     6Version: 1.8.1
    77Author: Alex Ladyga - G-Lock Software
    88Author URI: http://www.glocksoft.com
     
    3232
    3333define('NEWSMAN', 'wpnewsman');
    34 define('NEWSMAN_VERSION', '1.8.0');
     34define('NEWSMAN_VERSION', '1.8.1');
    3535
    3636if ( preg_match('/.*?\.dev$/i', $_SERVER['HTTP_HOST']) ) {
Note: See TracChangeset for help on using the changeset viewer.