Changeset 1016663
- Timestamp:
- 10/30/2014 12:34:22 PM (11 years ago)
- Location:
- wpnewsman-newsletters/trunk
- Files:
-
- 7 edited
-
class.newsman-worker.php (modified) (3 diffs)
-
core.php (modified) (3 diffs)
-
css/newsman_admin.css (modified) (2 diffs)
-
js/admin.js (modified) (1 diff)
-
languages/wpnewsman.pot (modified) (36 diffs)
-
readme.txt (modified) (2 diffs)
-
wpnewsman.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpnewsman-newsletters/trunk/class.newsman-worker.php
r951048 r1016663 293 293 294 294 function __call($name, $arguments) { 295 //$this->u->log("calling $name");296 295 $opId = $this->_writeCall($name, $arguments); 297 296 $res = $this->_waitForResult($opId); … … 311 310 312 311 function _waitForResult($opId) { 313 $totalWait = 10000000; // mks 312 $totalWait = 10000000; // mks // 10s 314 313 $count = 0; // 50 * 100 ms = 5s 315 314 $res = NULL; 315 316 316 while ( $res === NULL ) { 317 317 $count += 1; 318 318 $res = $this->_getOpResult($opId); 319 $s = 100000*$count;319 $s = 200000*$count; 320 320 usleep($s); // 100 ms 321 321 $totalWait -= $s; 322 322 if ( $totalWait <= 0 ) { break; } 323 323 } 324 324 325 if ( $res !== NULL ) { 325 326 $this->_clearOpResult($opId); … … 328 329 } 329 330 330 function _getOpResult($opId) { 331 function _getOpResult($opId) { 331 332 $sql = "SELECT `result` from $this->_table WHERE `id` = %d AND `processed` = 1"; 332 333 $sql = $this->_db->prepare($sql, $opId); -
wpnewsman-newsletters/trunk/core.php
r1015230 r1016663 1265 1265 'savedAt' => __('Saved at', NEWSMAN), 1266 1266 1267 'someRecipientsMightBeFiltered' => __('Bounce Handler has %d blocked domains. Some of recipients might be skipped during sending.', NEWSMAN), 1268 1267 1269 'viewInBrowser' => __('View in browser', NEWSMAN), 1268 1270 … … 1600 1602 public function onAdminHead() { 1601 1603 //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 1602 1613 echo '<script> 1614 NEWSMAN_BLOCKED_DOMAINS = '.$blockedDomainsCount.'; 1603 1615 NEWSMAN_PLUGIN_URL = "'.NEWSMAN_PLUGIN_URL.'"; 1604 1616 NEWSMAN_BLOG_ADMIN_URL = "'.NEWSMAN_BLOG_ADMIN_URL.'"; … … 1784 1796 do_action('newsman_admin_menu'); 1785 1797 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; 1787 1829 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; 1796 1835 } 1797 1836 -
wpnewsman-newsletters/trunk/css/newsman_admin.css
r1015230 r1016663 1785 1785 margin: 0; 1786 1786 overflow: hidden; 1787 font-size: 13px; 1787 1788 } 1788 1789 … … 2049 2050 } 2050 2051 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 2077 2052 #bounce-stats { 2078 2053 font-size: 14px; -
wpnewsman-newsletters/trunk/js/admin.js
r1015230 r1016663 3178 3178 }).done(function(data){ 3179 3179 3180 $('#newsman-modal-errorlog .modal-body').empty();3180 b.empty(); 3181 3181 3182 3182 $('<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 } 3183 3187 3184 3188 if ( data.msg ) { -
wpnewsman-newsletters/trunk/languages/wpnewsman.pot
r951048 r1016663 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: G-Lock WPNewsman Lite 1. 7.7\n"5 "Project-Id-Version: G-Lock WPNewsman Lite 1.8.1\n" 6 6 "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" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 14 15 #: ajaxbackend.php:93 api.php:9415 #: ajaxbackend.php:93 class.api.php:93 16 16 msgid "required parameter \"%s\" is missing in the request" 17 17 msgstr "" … … 20 20 #. translators: lists and forms table header 21 21 22 #: ajaxbackend.php:103 core.php:117 4views/forms.php:2422 #: ajaxbackend.php:103 core.php:1175 views/forms.php:24 23 23 #: views/subscribers.php:31 24 24 msgid "Confirmed" … … 28 28 #. translators: lists and forms table header 29 29 30 #: ajaxbackend.php:104 core.php:117 2views/forms.php:2530 #: ajaxbackend.php:104 core.php:1173 views/forms.php:25 31 31 #: views/subscribers.php:32 32 32 msgid "Unconfirmed" … … 36 36 #. translators: lists and forms table header 37 37 38 #: ajaxbackend.php:105 core.php:117 6views/forms.php:2638 #: ajaxbackend.php:105 core.php:1177 views/forms.php:26 39 39 #: views/subscribers.php:33 40 40 msgid "Unsubscribed" … … 61 61 msgstr "" 62 62 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 65 66 msgid "List with id \"%s\" is not found." 66 67 msgstr "" … … 82 83 msgstr "" 83 84 84 #: ajaxbackend.php:246 ajaxbackend.php:1 87685 #: ajaxbackend.php:246 ajaxbackend.php:1902 85 86 msgid "Test email was sent to %s." 86 87 msgstr "" 87 88 88 #: ajaxbackend.php:272 ajaxbackend.php:302 ajaxbackend.php:4 3589 #: ajaxbackend.php: 779 ajaxbackend.php:820 ajaxbackend.php:106290 #: ajaxbackend.php:1 373 ajaxbackend.php:1423 ajaxbackend.php:144291 #: ajaxbackend.php:1 685 ajaxbackend.php:1750 ajaxbackend.php:176092 #: ajaxbackend.php:19 18 ajaxbackend.php:205789 #: 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 93 94 msgid "success" 94 95 msgstr "" 95 96 96 #: ajaxbackend.php:33 097 #: ajaxbackend.php:337 97 98 msgid "Successfully deleted selected subscribers." 98 99 msgstr "" 99 100 100 #: ajaxbackend.php:3 51101 #: ajaxbackend.php:380 101 102 msgid "Error: \"options\" request parameter was empty or not defined." 102 103 msgstr "" 103 104 104 #: ajaxbackend.php:3 56105 #: ajaxbackend.php:385 105 106 msgid "Options were successfully saved." 106 107 msgstr "" 107 108 108 #: ajaxbackend.php:6 24 ajaxbackend.php:875 ajaxbackend.php:902109 #: ajaxbackend.php:9 30 ajaxbackend.php:962 ajaxbackend.php:995110 #: ajaxbackend.php:1 091 ajaxbackend.php:1121 ajaxbackend.php:1702111 #: ajaxbackend.php:1 793 ajaxbackend.php:2441109 #: 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 112 113 msgid "Saved" 113 114 msgstr "" 114 115 115 #: ajaxbackend.php:6 58116 #: ajaxbackend.php:687 116 117 msgid "Your email was successfully queued for sending." 117 118 msgstr "" 118 119 119 #: ajaxbackend.php:8 15 ajaxbackend.php:838120 #: ajaxbackend.php:844 ajaxbackend.php:867 120 121 msgid "Template does not have a \"%s\" property." 121 122 msgstr "" 122 123 123 #: ajaxbackend.php:10 34124 #: ajaxbackend.php:1063 124 125 msgid "You have successfully deleted %d template." 125 126 msgid_plural "You have successfully deleted %d templates." … … 127 128 msgstr[1] "" 128 129 129 #: ajaxbackend.php:1 176 ajaxbackend.php:1716130 #: ajaxbackend.php:1205 ajaxbackend.php:1742 130 131 msgid "Your email is successfully scheduled." 131 132 msgstr "" 132 133 133 #: ajaxbackend.php:1 183134 #: ajaxbackend.php:1212 134 135 msgid "Unrecognized \"send\" parameter - %s" 135 136 msgstr "" 136 137 137 #: ajaxbackend.php:12 35138 #: ajaxbackend.php:1264 138 139 msgid "Emails were successfully unsubscribed." 139 140 msgstr "" 140 141 141 #: ajaxbackend.php:1 298 ajaxbackend.php:2184142 #: ajaxbackend.php:1327 ajaxbackend.php:2210 142 143 msgid "Bad email address" 143 144 msgstr "" 144 145 145 #: ajaxbackend.php:1 388146 #: ajaxbackend.php:1417 146 147 msgid "Please select a file to import" 147 148 msgstr "" 148 149 149 #: ajaxbackend.php:1 393150 #: ajaxbackend.php:1422 150 151 msgid "Imported %d subscriber. Make sure you send him confirmation email." 151 152 msgid_plural "Imported %d subscribers. Make sure you send them confirmation email." … … 153 154 msgstr[1] "" 154 155 155 #: ajaxbackend.php:14 40views/subscribers.php:85156 #: ajaxbackend.php:1469 views/subscribers.php:85 156 157 msgid "IP Address" 157 158 msgstr "" 158 159 159 #: ajaxbackend.php:14 63160 #: ajaxbackend.php:1489 160 161 msgid "Imported %d template." 161 162 msgid_plural "Imported %d templates." … … 163 164 msgstr[1] "" 164 165 165 #: ajaxbackend.php:15 17166 #: ajaxbackend.php:1543 166 167 msgid "Selected emails were successfully resumed" 167 168 msgstr "" 168 169 169 #: ajaxbackend.php:15 71 ajaxbackend.php:1660170 #: ajaxbackend.php:1597 ajaxbackend.php:1686 170 171 msgid "\"entType\" parameter value \"%s\" should be \"email\" or \"template\"." 171 172 msgstr "" 172 173 173 #: ajaxbackend.php:16 44174 #: ajaxbackend.php:1670 174 175 msgid "Posts block successfully compiled" 175 176 msgstr "" 176 177 177 #: ajaxbackend.php:16 56178 #: ajaxbackend.php:1682 178 179 msgid "\"postTemplateType\" parameter value \"%s\" should be \"post_content\", \"post_excerpt\" or \"fancy_excerpt\"." 179 180 msgstr "" 180 181 181 #: ajaxbackend.php:16 71182 #: ajaxbackend.php:1697 182 183 msgid "Posts block successfully updated" 183 184 msgstr "" 184 185 185 #: ajaxbackend.php:17 20186 #: ajaxbackend.php:1746 186 187 msgid "ReConfirmation system email template is not found." 187 188 msgstr "" 188 189 189 #: ajaxbackend.php:18 06190 #: ajaxbackend.php:1832 190 191 msgid "List with the name \"%s\" already exists." 191 192 msgstr "" … … 193 194 #. translators: email property 194 195 195 #: ajaxbackend.php:18 11views/addedit_email.php:65 views/mailbox.php:108196 #: ajaxbackend.php:1837 views/addedit_email.php:65 views/mailbox.php:108 196 197 msgid "Created" 197 198 msgstr "" 198 199 199 #: ajaxbackend.php:1 875200 #: ajaxbackend.php:1901 200 201 msgid "Test email was sent to %s and subscriber with this email was created in \"%s\" list." 201 202 msgstr "" 202 203 203 #: ajaxbackend.php:19 59204 #: ajaxbackend.php:1985 204 205 msgid "Wrong \"type\" parameter. Must be \"csv\" or \"template\"" 205 206 msgstr "" 206 207 207 #: ajaxbackend.php:22 07 ajaxbackend.php:2225 ajaxbackend.php:2230208 #: ajaxbackend.php:22 35 ajaxbackend.php:2241208 #: ajaxbackend.php:2233 ajaxbackend.php:2251 ajaxbackend.php:2256 209 #: ajaxbackend.php:2261 ajaxbackend.php:2267 209 210 msgid "Success" 210 211 msgstr "" 211 212 212 #: ajaxbackend.php:22 09213 #: ajaxbackend.php:2235 213 214 msgid "Translation not found" 214 215 msgstr "" 215 216 216 #: ajaxbackend.php:23 11 ajaxbackend.php:2312 ajaxbackend.php:2313217 #: ajaxbackend.php:2337 ajaxbackend.php:2338 ajaxbackend.php:2339 217 218 msgid "Unknown" 218 219 msgstr "" 219 220 220 #: ajaxbackend.php:24 46221 #: ajaxbackend.php:2472 221 222 msgid "Subscriber with email %s already exists." 222 msgstr ""223 224 #: api.php:128225 msgid "Subscriber added"226 msgstr ""227 228 #: api.php:133229 msgid "The email \"%s\" is already subscribed but not yet confirmed."230 msgstr ""231 232 #: api.php:138233 msgid "The email \"%s\" is already subscribed and confirmed."234 msgstr ""235 236 #: api.php:143237 msgid "The email \"%s\" is already already in the database but unsubscribed."238 msgstr ""239 240 #: api.php:164241 msgid "Bad email address format \"%s\"."242 msgstr ""243 244 #: api.php:374245 msgid "Successfully unsubscribed."246 223 msgstr "" 247 224 … … 258 235 msgstr "" 259 236 237 #: class.api.php:127 238 msgid "Subscriber added" 239 msgstr "" 240 241 #: class.api.php:132 242 msgid "The email \"%s\" is already subscribed but not yet confirmed." 243 msgstr "" 244 245 #: class.api.php:137 246 msgid "The email \"%s\" is already subscribed and confirmed." 247 msgstr "" 248 249 #: class.api.php:142 250 msgid "The email \"%s\" is already already in the database but unsubscribed." 251 msgstr "" 252 253 #: class.api.php:163 254 msgid "Bad email address format \"%s\"." 255 msgstr "" 256 257 #: class.api.php:373 258 msgid "Successfully unsubscribed." 259 msgstr "" 260 260 261 #. translators: Default subscription form 261 262 262 #: class.form.php:62 core.php:25 1263 #: class.form.php:62 core.php:252 263 264 msgid "Subscribe" 264 265 msgstr "" 265 266 266 267 #: 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:119 7268 #: class.form.php:228 class.form.php:261 class.form.php:292 core.php:1198 268 269 #: views/list.php:69 views/list.php:91 views/list.php:108 views/list.php:194 269 270 #: views/list.php:231 … … 275 276 msgstr "" 276 277 277 #: class.form.php:341 core.php:117 8 core.php:1206278 #: class.form.php:341 core.php:1179 core.php:1207 278 279 msgid "Error" 279 280 msgstr "" … … 287 288 msgstr "" 288 289 289 #: class.utils.php:4 0290 #: class.utils.php:41 290 291 msgid "Already Subscribed and Verified" 291 292 msgstr "" 292 293 293 #: class.utils.php:4 6294 #: class.utils.php:47 294 295 msgid "Bad email address format" 295 296 msgstr "" 296 297 297 #: class.utils.php:5 2298 #: class.utils.php:53 298 299 msgid "Confirmation Required" 299 300 msgstr "" 300 301 301 #: class.utils.php:5 8302 #: class.utils.php:59 302 303 msgid "Confirmation Successful" 303 304 msgstr "" 304 305 305 #: class.utils.php:6 4306 #: class.utils.php:65 306 307 msgid "Subscription not yet confirmed" 307 308 msgstr "" 308 309 309 #: class.utils.php:7 0310 #: class.utils.php:71 310 311 msgid "Successfully unsubscribed" 311 312 msgstr "" 312 313 313 #: class.utils.php:7 6migration.php:186314 #: class.utils.php:77 migration.php:186 314 315 msgid "Please confirm your unsubscribe decision" 315 316 msgstr "" 316 317 317 #: class.utils.php:8 89318 #: class.utils.php:891 318 319 msgid "Add new..." 319 320 msgstr "" 320 321 321 #: class.utils.php:10 68 class.utils.php:1119 core.php:1664 core.php:1677322 #: class.utils.php:1072 class.utils.php:1125 core.php:1685 core.php:1698 322 323 msgid "Enter Subject Here" 323 324 msgstr "" 324 325 325 #: class.utils.php:126 0 core.php:1250 core.php:2078326 #: class.utils.php:1266 core.php:1251 core.php:2152 326 327 msgid "Copy" 327 328 msgstr "" 328 329 329 #: class.utils.php:15 73330 #: class.utils.php:1583 330 331 msgid "Administrator notification - new subscriber" 331 332 msgstr "" 332 333 333 #: class.utils.php:15 78334 #: class.utils.php:1588 334 335 msgid "Administrator notification - user unsubscribed" 335 336 msgstr "" 336 337 337 #: class.utils.php:15 83338 #: class.utils.php:1593 338 339 msgid "Subscription confirmation" 339 340 msgstr "" 340 341 341 #: class.utils.php:15 88342 #: class.utils.php:1598 342 343 msgid "Unsubscribe notification" 343 344 msgstr "" 344 345 345 #: class.utils.php:1 593346 #: class.utils.php:1603 346 347 msgid "Welcome letter, thanks for subscribing" 347 348 msgstr "" 348 349 349 #: class.utils.php:1 598 migration.php:218350 #: class.utils.php:1608 migration.php:218 350 351 msgid "Unsubscribe confirmation" 351 352 msgstr "" 352 353 353 #: class.utils.php:16 03 migration.php:301354 #: class.utils.php:1613 migration.php:301 354 355 msgid "Re-subscription confirmation" 355 356 msgstr "" 356 357 357 #: core.php:2 7 core.php:2169358 #: core.php:28 core.php:2243 358 359 msgid "Every minute" 359 360 msgstr "" … … 361 362 #. translators: Default subscription form 362 363 363 #: core.php:24 1364 #: core.php:242 364 365 msgid "Subscription" 365 366 msgstr "" … … 367 368 #. translators: Default subscription form 368 369 369 #: core.php:24 3370 #: core.php:244 370 371 msgid "Enter your primary email address to get our free newsletter." 371 372 msgstr "" … … 373 374 #. translators: Default subscription form 374 375 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 379 msgid "First Name" 380 msgstr "" 381 382 #. translators: Default subscription form 383 384 #: core.php:248 views/subscribers.php:237 views/subscribers.php:245 376 385 #: views/subscribers.php:253 views/subscribers.php:261 377 386 #: views/subscribers.php:269 378 msgid " First Name"387 msgid "Last Name" 379 388 msgstr "" 380 389 381 390 #. translators: Default subscription form 382 391 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 393 msgid "Email" 387 394 msgstr "" 388 395 389 396 #. translators: Default subscription form 390 397 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 398 399 msgid "You can leave the list at any time. Removal instructions are included in each message." 399 400 msgstr "" 400 401 401 #: core.php:27 0 core.php:1773402 #: core.php:271 core.php:1785 402 403 msgid "Upgrade to Pro" 403 404 msgstr "" 404 405 405 #: core.php:27 3406 #: core.php:274 406 407 msgid "Sent %d of %d emails." 407 408 msgstr "" 408 409 409 #: core.php:27 4410 #: core.php:275 410 411 msgid "You reached the subscribers limit of the Lite version. %s to resume sending." 411 412 msgstr "" 412 413 413 #: core.php:40 6414 #: core.php:407 414 415 msgid "\"Post has no excerpt. Write something yourself or use fancy_excerpt option\"" 415 416 msgstr "" 416 417 417 #: core.php:64 2418 #: core.php:643 418 419 msgid "Your link seems to be broken." 419 420 msgstr "" 420 421 421 #: core.php:64 8422 #: core.php:649 422 423 msgid "List with the unique code \"%s\" is not found" 423 424 msgstr "" 424 425 425 #: core.php:65 4426 #: core.php:655 426 427 msgid "Subscriber with the unique code \"%s\" is not found" 427 428 msgstr "" 428 429 429 #: core.php:75 5430 #: core.php:756 430 431 msgid "Unique email id is missing in request." 431 432 msgstr "" 432 433 433 #: core.php:76 0434 #: core.php:761 434 435 msgid "Email with unique code %s is not found." 435 436 msgstr "" 436 437 437 #: core.php:102 2 core.php:1271438 #: core.php:1023 core.php:1274 438 439 msgid "Please fill all the required fields." 439 440 msgstr "" 440 441 441 #: core.php:102 3 core.php:1272442 #: core.php:1024 core.php:1275 442 443 msgid "Please check your email address." 443 444 msgstr "" 444 445 445 #: core.php:116 5446 #: core.php:1166 446 447 msgid "Full Email Statistics & Click Tracking available in <a href=\"%s\">the Pro version</a>" 447 448 msgstr "" 448 449 449 #: core.php:117 7450 #: core.php:1178 450 451 msgid "Error: " 451 452 msgstr "" 452 453 453 #: core.php:11 79454 #: core.php:1180 454 455 msgid "Done" 455 456 msgstr "" 456 457 457 #: core.php:118 0458 #: core.php:1181 458 459 msgid "Please select emails which you want to stop sending of." 459 460 msgstr "" 460 461 461 #: core.php:118 1462 #: core.php:1182 462 463 msgid "You have successfully stopped sending of selected emails." 463 464 msgstr "" 464 465 465 #: core.php:118 2466 #: core.php:1183 466 467 msgid "Please mark subscribers which you want to unsubscribe." 467 468 msgstr "" 468 469 469 #: core.php:118 3470 #: core.php:1184 470 471 msgid "You have successfully unsubscribed selected subscribers." 471 472 msgstr "" 472 473 473 #: core.php:118 4474 #: core.php:1185 474 475 msgid "Please mark subscribers which you want to delete." 475 476 msgstr "" 476 477 477 #: core.php:118 5478 #: core.php:1186 478 479 msgid "You have successfully deleted selected subscribers." 479 480 msgstr "" 480 481 481 #: core.php:118 6482 #: core.php:1187 482 483 msgid "Please mark subscribers to change." 483 484 msgstr "" 484 485 485 #: core.php:118 7486 #: core.php:1188 486 487 msgid "You have successfully changed status of selected subscribers." 487 488 msgstr "" 488 489 489 #: core.php:118 8490 #: core.php:1189 490 491 msgid "Please mark subscribers which you want to send confirmation to." 491 492 msgstr "" 492 493 493 #: core.php:11 89494 #: core.php:1190 494 495 msgid "You have successfully send confirmation emails." 495 496 msgstr "" 496 497 497 #: core.php:119 0498 #: core.php:1191 498 499 msgid "All subscribers (#)" 499 500 msgstr "" 500 501 501 #: core.php:119 1502 #: core.php:1192 502 503 msgid "Confirmed (#)" 503 504 msgstr "" 504 505 505 #: core.php:119 2506 #: core.php:1193 506 507 msgid "Unconfirmed (#)" 507 508 msgstr "" 508 509 509 #: core.php:119 3510 #: core.php:1194 510 511 msgid "Unsubscribed (#)" 511 512 msgstr "" 512 513 513 #: core.php:119 4514 #: core.php:1195 514 515 msgid "You have no subscribers yet." 515 516 msgstr "" 516 517 517 #: core.php:119 5views/mailbox-email.php:113518 #: core.php:1196 views/mailbox-email.php:113 518 519 msgid "Sending" 519 520 msgstr "" 520 521 521 #: core.php:119 6522 #: core.php:1197 522 523 msgid "Check me" 523 524 msgstr "" 524 525 525 #: core.php:119 8526 #: core.php:1199 526 527 msgid "Choose an option" 527 528 msgstr "" 528 529 529 #: core.php:1 199530 #: core.php:1200 530 531 msgid "new option 1" 531 532 msgstr "" 532 533 533 #: core.php:120 0534 #: core.php:1201 534 535 msgid "Untitled" 535 536 msgstr "" 536 537 537 #: core.php:120 1views/addedit_email.php:71538 #: core.php:1202 views/addedit_email.php:71 538 539 msgid "You have no emails yet." 539 540 msgstr "" 540 541 541 #: core.php:120 2542 #: core.php:1203 542 543 msgid "You have no forms, yet" 543 544 msgstr "" … … 545 546 #. translators: mailbox view link 546 547 547 #: core.php:120 3 core.php:1234views/addedit_email.php:17 views/mailbox.php:24548 #: core.php:1204 core.php:1235 views/addedit_email.php:17 views/mailbox.php:24 548 549 msgid "Sent" 549 550 msgstr "" … … 551 552 #. translators: mailbox view link 552 553 553 #: core.php:120 4 core.php:1232views/addedit_email.php:16 views/mailbox.php:23554 #: core.php:1205 core.php:1233 views/addedit_email.php:16 views/mailbox.php:23 554 555 msgid "Pending" 555 556 msgstr "" 556 557 557 #: core.php:120 5558 #: core.php:1206 558 559 msgid "Draft" 559 560 msgstr "" 560 561 561 #: core.php:120 7562 #: core.php:1208 562 563 msgid "Sending..." 563 564 msgstr "" 564 565 565 #: core.php:120 8566 #: core.php:1209 566 567 msgid "Stopped" 567 568 msgstr "" 568 569 569 #: core.php:12 09570 #: core.php:1210 570 571 msgid "Scheduled on" 571 572 msgstr "" 572 573 573 #: core.php:121 0574 #: core.php:1211 574 575 msgid "You don't have any templates yet." 575 576 msgstr "" 576 577 577 #: core.php:121 1578 #: core.php:1212 578 579 msgid "Create one?" 579 580 msgstr "" 580 581 581 #: core.php:121 2582 #: core.php:1213 582 583 msgid "Please mark the emails which you want to delete." 583 584 msgstr "" 584 585 585 #: core.php:121 3586 #: core.php:1214 586 587 msgid "You have successfully deleted selected emails." 587 588 msgstr "" 588 589 589 #: core.php:121 4590 #: core.php:1215 590 591 msgid "Please mark the templates which you want to delete." 591 592 msgstr "" 592 593 593 #: core.php:121 5594 #: core.php:1216 594 595 msgid "Please mark the forms which you want to delete." 595 596 msgstr "" 596 597 597 #: core.php:121 6598 #: core.php:1217 598 599 msgid "You have no templates yet." 599 600 msgstr "" 600 601 601 #: core.php:121 7602 #: core.php:1218 602 603 msgid "All emails (#)" 603 604 msgstr "" 604 605 605 #: core.php:121 8606 #: core.php:1219 606 607 msgid "In progress (#)" 607 608 msgstr "" 608 609 609 #: core.php:12 19610 #: core.php:1220 610 611 msgid "Pending (#)" 611 612 msgstr "" 612 613 613 #: core.php:122 0614 #: core.php:1221 614 615 msgid "Sent (#)" 615 616 msgstr "" 616 617 617 #: core.php:122 1views/mailbox-email.php:114 views/mailbox-email.php:119618 #: core.php:1222 views/mailbox-email.php:114 views/mailbox-email.php:119 618 619 msgid "Resume" 619 620 msgstr "" 620 621 621 #: core.php:122 2622 #: core.php:1223 622 623 msgid "Please fill the \"To:\" field." 623 624 msgstr "" 624 625 625 #: core.php:122 3626 #: core.php:1224 626 627 msgid "Please select emails first." 627 628 msgstr "" 628 629 629 #: core.php:122 4630 #: core.php:1225 630 631 msgid "Please select" 631 632 msgstr "" … … 633 634 #. translators: mailbox view link 634 635 635 #: core.php:122 6views/addedit_email.php:14 views/mailbox.php:20636 #: core.php:1227 views/addedit_email.php:14 views/mailbox.php:20 636 637 msgid "All emails" 637 638 msgstr "" … … 639 640 #. translators: mailbox view link 640 641 641 #: core.php:122 8views/addedit_email.php:15 views/mailbox.php:22642 #: core.php:1229 views/addedit_email.php:15 views/mailbox.php:22 642 643 msgid "In progress" 643 644 msgstr "" … … 645 646 #. translators: mailbox view link 646 647 647 #: core.php:123 0views/mailbox.php:21648 #: core.php:1231 views/mailbox.php:21 648 649 msgid "Drafts" 649 650 msgstr "" 650 651 651 #: core.php:123 5652 #: core.php:1236 652 653 msgid "Sent %d of %d emails" 653 654 msgstr "" 654 655 655 #: core.php:123 6656 #: core.php:1237 656 657 msgid "Status: " 657 658 msgstr "" 658 659 659 #: core.php:123 7660 #: core.php:1238 660 661 msgid "Email Errors" 661 662 msgstr "" 662 663 663 #: core.php:123 8664 #: core.php:1239 664 665 msgid "Email Address" 665 666 msgstr "" 666 667 667 #: core.php:12 39668 #: core.php:1240 668 669 msgid "Error Message" 669 670 msgstr "" 670 671 671 #: core.php:124 0views/forms.php:31 views/mailbox-email.php:166672 #: core.php:1241 views/forms.php:31 views/mailbox-email.php:166 672 673 #: views/mailbox.php:116 views/subscribers.php:92 views/templates.php:64 673 674 #: views/templates.php:80 views/templates.php:96 views/templates.php:184 … … 675 676 msgstr "" 676 677 677 #: core.php:124 1newsman-widget.php:51678 #: core.php:1242 newsman-widget.php:51 678 679 msgid "List:" 679 680 msgstr "" 680 681 681 #: core.php:124 2682 #: core.php:1243 682 683 msgid "Bug report" 683 684 msgstr "" 684 685 685 #: core.php:124 3686 #: core.php:1244 686 687 msgid "Load more..." 687 688 msgstr "" 688 689 689 #: core.php:124 4690 #: core.php:1245 690 691 msgid "Sorry, no posts matched your criteria." 691 692 msgstr "" 692 693 693 #: core.php:124 5694 #: core.php:1246 694 695 msgid "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." 695 696 msgstr "" 696 697 697 #: core.php:124 6698 #: core.php:1247 698 699 msgid "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." 699 700 msgstr "" … … 701 702 #. translators: lists and forms table header 702 703 703 #: core.php:124 7views/forms.php:23 views/list.php:67 views/list.php:86704 #: core.php:1248 views/forms.php:23 views/list.php:67 views/list.php:86 704 705 #: views/list.php:106 views/list.php:141 views/list.php:192 views/list.php:229 705 706 #: views/templates.php:59 views/templates.php:75 views/templates.php:91 … … 707 708 msgstr "" 708 709 709 #: core.php:124 8710 #: core.php:1249 710 711 msgid "Edit Form" 711 712 msgstr "" 712 713 713 #: core.php:12 49views/list.php:257714 #: core.php:1250 views/list.php:257 714 715 msgid "View Subscribers" 715 716 msgstr "" 716 717 717 #: core.php:125 1718 #: core.php:1252 718 719 msgid "Edit" 719 720 msgstr "" 720 721 721 #: core.php:125 2views/addedit_email.php:39 views/addedit_email.php:102722 #: core.php:1253 views/addedit_email.php:39 views/addedit_email.php:102 722 723 #: views/forms.php:15 views/forms.php:70 views/mailbox.php:46 723 #: views/mailbox.php:149 views/subscribers.php:57 views/subscribers.php:14 8724 #: views/mailbox.php:149 views/subscribers.php:57 views/subscribers.php:147 724 725 #: views/templates.php:29 views/templates.php:135 views/templates.php:150 725 726 msgid "Delete" 726 727 msgstr "" 727 728 728 #: core.php:125 3729 #: core.php:1254 729 730 msgid "Export" 730 731 msgstr "" 731 732 732 #: core.php:125 4733 #: core.php:1255 733 734 msgid "Restore" 734 735 msgstr "" 735 736 736 #: core.php:125 5737 #: core.php:1256 737 738 msgid "Default System Templates" 738 739 msgstr "" 739 740 740 #: core.php:125 6741 #: core.php:1257 741 742 msgid "System Template. Cannot be deleted." 742 743 msgstr "" 743 744 744 #: core.php:125 7745 #: core.php:1258 745 746 msgid "Insert Posts" 746 747 msgstr "" 747 748 748 #: core.php:125 8749 #: core.php:1259 749 750 msgid "Post(s) selected: %d" 750 751 msgstr "" 751 752 752 #: core.php:12 59753 #: core.php:1260 753 754 msgid "Select categories" 754 755 msgstr "" 755 756 756 #: core.php:126 0757 #: core.php:1261 757 758 msgid "# of # categories selected" 758 759 msgstr "" 759 760 760 #: core.php:126 1761 #: core.php:1262 761 762 msgid "Select author(s)" 762 763 msgstr "" 763 764 764 #: core.php:126 2765 #: core.php:1263 765 766 msgid "# of # authors selected" 766 767 msgstr "" 767 768 768 #: core.php:126 3views/list.php:348 views/subscribers.php:117769 #: core.php:1264 views/list.php:348 views/subscribers.php:117 769 770 msgid "Save" 770 771 msgstr "" 771 772 772 #: core.php:126 4773 #: core.php:1265 773 774 msgid "Saved at" 774 775 msgstr "" 775 776 776 #: core.php:1266 777 #: core.php:1267 778 msgid "Bounce Handler has %d blocked domains. Some of recipients might be skipped during sending." 779 msgstr "" 780 781 #: core.php:1269 777 782 msgid "View in browser" 778 783 msgstr "" 779 784 780 #: core.php:12 68785 #: core.php:1271 781 786 msgid "View Stats" 782 787 msgstr "" 783 788 784 #: core.php:127 3789 #: core.php:1276 785 790 msgid "Are you sure you want to restore stock template?" 786 791 msgstr "" 787 792 788 #: core.php:127 5793 #: core.php:1278 789 794 msgid "Subscribe notification email sent to the administrator." 790 795 msgstr "" 791 796 792 #: core.php:127 6797 #: core.php:1279 793 798 msgid "Unsubscribe notification email sent to the administrator." 794 799 msgstr "" 795 800 796 #: core.php:12 77801 #: core.php:1280 797 802 msgid "Email with the confirmation link sent to the user upon subscription." 798 803 msgstr "" 799 804 800 #: core.php:12 78805 #: core.php:1281 801 806 msgid "Email sent to the user that confirms that his email address was unsubscribed." 802 807 msgstr "" 803 808 804 #: core.php:12 79809 #: core.php:1282 805 810 msgid "Welcome message sent after the subscriber confirms his subscription." 806 811 msgstr "" 807 812 808 #: core.php:128 0813 #: core.php:1283 809 814 msgid "Email with a link to confirm the subscriber’s decision to unsubscribe." 810 815 msgstr "" 811 816 812 #: core.php:128 1817 #: core.php:1284 813 818 msgid "Email with a link to re-confirm the subscription that is sent to ALL \"unconfirmed\" subscribers on the list." 814 819 msgstr "" 815 820 816 #: core.php:13 87821 #: core.php:1390 817 822 msgid "Cannot unsubscribe email. Subscriber with unique code %s is not found." 818 823 msgstr "" 819 824 820 #: core.php:16 76825 #: core.php:1697 821 826 msgid "Untitled templates" 822 827 msgstr "" 823 828 824 #: core.php:1 687829 #: core.php:1708 825 830 msgid "Alternative Plain Text Body" 826 831 msgstr "" 827 832 828 #: core.php:17 05833 #: core.php:1726 829 834 msgid "WPNewsman Lite" 830 835 msgstr "" 831 836 832 #: core.php:17 18 core.php:1719views/addedit_email.php:5 views/mailbox.php:9837 #: core.php:1739 core.php:1740 views/addedit_email.php:5 views/mailbox.php:9 833 838 msgid "Mailbox" 834 839 msgstr "" 835 840 836 #: core.php:17 36 core.php:1737views/forms.php:5841 #: core.php:1748 core.php:1749 views/forms.php:5 837 842 msgid "Lists and Forms" 838 843 msgstr "" 839 844 840 #: core.php:17 45 core.php:1746views/templates.php:5845 #: core.php:1757 core.php:1758 views/templates.php:5 841 846 msgid "Email Templates" 842 847 msgstr "" 843 848 844 #: core.php:17 54 core.php:1755views/options.php:6849 #: core.php:1766 core.php:1767 views/options.php:6 845 850 msgid "Settings" 846 851 msgstr "" 847 852 848 #: core.php:17 64 core.php:1765views/debug-log.php:11853 #: core.php:1776 core.php:1777 views/debug-log.php:11 849 854 msgid "Debug Log" 850 855 msgstr "" 851 856 852 #: core.php:18 02857 #: core.php:1841 853 858 msgid "Excerpt for external forms" 854 859 msgstr "" 855 860 856 #: core.php:2108 861 #: core.php:2050 core.php:2931 862 msgid "You are not authorized to access this resource." 863 msgstr "" 864 865 #: core.php:2182 857 866 msgctxt "Action Page" 858 867 msgid "Action Pages" 859 868 msgstr "" 860 869 861 #: core.php:21 09870 #: core.php:2183 862 871 msgctxt "Action Page" 863 872 msgid "Action Page" 864 873 msgstr "" 865 874 866 #: core.php:21 10875 #: core.php:2184 867 876 msgctxt "Action Page" 868 877 msgid "Add New" 869 878 msgstr "" 870 879 871 #: core.php:21 11880 #: core.php:2185 872 881 msgctxt "Action Page" 873 882 msgid "Add New Action Page" 874 883 msgstr "" 875 884 876 #: core.php:21 12885 #: core.php:2186 877 886 msgctxt "Action Page" 878 887 msgid "Edit Action Page" 879 888 msgstr "" 880 889 881 #: core.php:21 13890 #: core.php:2187 882 891 msgctxt "Action Page" 883 892 msgid "New Action Page" 884 893 msgstr "" 885 894 886 #: core.php:21 14895 #: core.php:2188 887 896 msgctxt "Action Page" 888 897 msgid "View Action Page" 889 898 msgstr "" 890 899 891 #: core.php:21 15900 #: core.php:2189 892 901 msgctxt "Action Page" 893 902 msgid "Search Action Pages" 894 903 msgstr "" 895 904 896 #: core.php:21 16905 #: core.php:2190 897 906 msgid "Nothing found" 898 907 msgstr "" 899 908 900 #: core.php:21 17909 #: core.php:2191 901 910 msgid "Nothing found in the Trash" 902 911 msgstr "" 903 912 904 #: core.php:2 339 core.php:2415913 #: core.php:2413 core.php:2489 905 914 msgid "Error: Email template not found" 906 915 msgstr "" 907 916 908 #: core.php:2 360917 #: core.php:2434 909 918 msgid "Error: Email not found" 910 919 msgstr "" 911 920 912 #: core.php:2 471921 #: core.php:2545 913 922 msgid "G-Lock WPNewsman" 914 923 msgstr "" 915 924 916 #: core.php:25 09925 #: core.php:2583 917 926 msgid "G-Lock WPNewsman subscription summary" 918 927 msgstr "" 919 928 920 #: core.php:25 10929 #: core.php:2584 921 930 msgid "Manage Forms and Lists" 922 931 msgstr "" 923 932 924 #: core.php:25 24views/list.php:265933 #: core.php:2598 views/list.php:265 925 934 msgid "List name" 926 935 msgstr "" 927 936 928 #: core.php:25 25937 #: core.php:2599 929 938 msgid "Total confirmed" 930 939 msgstr "" 931 940 932 #: core.php:2 526941 #: core.php:2600 933 942 msgid "Total unconfirmed" 934 943 msgstr "" 935 944 936 #: core.php:2 527945 #: core.php:2601 937 946 msgid "Total unsubscribed" 938 947 msgstr "" 939 948 940 #: core.php:2 568949 #: core.php:2642 941 950 msgid "Post Template" 942 951 msgstr "" 943 952 944 #: core.php:2 574953 #: core.php:2648 945 954 msgid "Click here" 946 955 msgstr "" 947 956 948 #: core.php:2 577957 #: core.php:2651 949 958 msgid "You can use the \"Newsman\" menu button on the editor's toolbar to insert the unsubscribe link and social profile links into the message." 950 959 msgstr "" 951 960 952 #: core.php:2 578961 #: core.php:2652 953 962 msgid "%s for more shortcode macros supported by WPNewsman." 954 963 msgstr "" 955 964 956 #: core.php:2 768965 #: core.php:2842 957 966 msgid "List: " 958 967 msgstr "" 959 968 960 #: core.php:2 780969 #: core.php:2854 961 970 msgid "Page Template" 962 971 msgstr "" 963 972 964 #: core.php:2 782973 #: core.php:2856 965 974 msgid "Default Template" 966 975 msgstr "" 967 976 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 973 978 msgid "Please, provide correct \"listId\" parameter." 974 979 msgstr "" … … 1060 1065 #: views/_an_fs_method.php:3 views/_an_locale_changed.php:4 1061 1066 #: views/_an_w3tc_configured.php:3 views/_an_wp_cron_error.php:4 1062 #: views/subscribers.php:17 11067 #: views/subscribers.php:170 1063 1068 msgid "Warning!" 1064 1069 msgstr "" … … 1107 1112 1108 1113 #: 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 optionswill 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>"1114 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. 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>" 1110 1115 msgstr "" 1111 1116 … … 1123 1128 1124 1129 #: 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>"1130 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=\"http://support.glocksoft.net/kb/articles/90-messages-are-always-pending-and-not-sent\" target=\"_blank\">Learn more...</a>" 1126 1131 msgstr "" 1127 1132 … … 1150 1155 #: views/mailbox-email.php:125 views/mailbox.php:134 views/mailbox.php:148 1151 1156 #: views/mailbox.php:162 views/mailbox.php:177 views/mailbox.php:190 1152 #: views/options.php:225 views/subscribers.php:131 views/subscribers.php:14 71153 #: views/subscribers.php:16 3 views/subscribers.php:1911154 #: views/subscribers.php:31 3 views/subscribers.php:3331155 #: views/subscribers.php:34 8views/templates.php:119 views/templates.php:1341157 #: 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 1156 1161 #: views/templates.php:149 views/templates.php:165 views/templates.php:191 1157 1162 #: views/templates.php:220 … … 1217 1222 #: views/mailbox.php:142 views/mailbox.php:156 views/options.php:219 1218 1223 #: views/subscribers.php:124 views/subscribers.php:139 1219 #: views/subscribers.php:15 5 views/subscribers.php:185views/templates.php:1131224 #: views/subscribers.php:154 views/subscribers.php:184 views/templates.php:113 1220 1225 #: views/templates.php:127 views/templates.php:143 views/templates.php:159 1221 1226 msgid "Please, confirm..." … … 1228 1233 1229 1234 #: views/addedit_email.php:88 views/mailbox.php:135 views/subscribers.php:45 1230 #: views/subscribers.php:132 views/subscribers.php:33 2views/templates.php:1201235 #: views/subscribers.php:132 views/subscribers.php:331 views/templates.php:120 1231 1236 msgid "Unsubscribe" 1232 1237 msgstr "" 1233 1238 1234 #: views/addedit_email.php:98 views/subscribers.php:1421239 #: views/addedit_email.php:98 1235 1240 msgid "Are you sure you want to delete selected subscribers?" 1236 1241 msgstr "" 1237 1242 1238 #: views/addedit_email.php:112 views/mailbox.php:159 views/subscribers.php:15 81243 #: views/addedit_email.php:112 views/mailbox.php:159 views/subscribers.php:157 1239 1244 #: views/templates.php:162 1240 1245 msgid "Are you sure you want to change status of selected subscribers to %s?" 1241 1246 msgstr "" 1242 1247 1243 #: views/addedit_email.php:116 views/mailbox.php:163 views/subscribers.php:16 41248 #: views/addedit_email.php:116 views/mailbox.php:163 views/subscribers.php:163 1244 1249 #: views/templates.php:166 1245 1250 msgid "Change" … … 1258 1263 msgstr "" 1259 1264 1260 #: views/forms.php:56 views/subscribers.php:34 71265 #: views/forms.php:56 views/subscribers.php:346 1261 1266 msgid "Create" 1262 1267 msgstr "" … … 1533 1538 1534 1539 #: views/mailbox-email.php:119 views/mailbox-email.php:169 1535 #: views/subscribers.php:19 21540 #: views/subscribers.php:191 1536 1541 msgid "Send" 1537 1542 msgstr "" … … 1578 1583 1579 1584 #: views/mailbox-email.php:168 views/subscribers.php:116 1580 #: views/subscribers.php:17 71585 #: views/subscribers.php:176 1581 1586 msgid "Cancel" 1582 1587 msgstr "" … … 1918 1923 msgstr "" 1919 1924 1920 #: views/pro.php:2 61925 #: views/pro.php:25 1921 1926 msgid "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." 1922 1927 msgstr "" … … 1986 1991 msgstr "" 1987 1992 1988 #: views/subscribers.php:145 views/subscribers.php:146 1993 #: views/subscribers.php:142 1994 msgid "Are you sure you want to delete %s selected subscribers?" 1995 msgstr "" 1996 1997 #: views/subscribers.php:145 1989 1998 msgid "Delete all" 1990 1999 msgstr "" 1991 2000 1992 #: views/subscribers.php:16 1 views/subscribers.php:1622001 #: views/subscribers.php:160 views/subscribers.php:161 1993 2002 msgid "Change all" 1994 2003 msgstr "" 1995 2004 1996 #: views/subscribers.php:17 42005 #: views/subscribers.php:173 1997 2006 msgid "This action will send re-subscribe request <strong>to all unconfirmed subscribers</strong> in the list." 1998 2007 msgstr "" 1999 2008 2000 #: views/subscribers.php:17 82009 #: views/subscribers.php:177 2001 2010 msgid "Send re-subscribe request" 2002 2011 msgstr "" 2003 2012 2004 #: views/subscribers.php:18 82013 #: views/subscribers.php:187 2005 2014 msgid "Are you sure you want to re-send confirmation emails to selected subscribers?" 2006 2015 msgstr "" 2007 2016 2008 #: views/subscribers.php:19 92017 #: views/subscribers.php:198 2009 2018 msgid " list:" 2010 2019 msgstr "" 2011 2020 2012 #: views/subscribers.php:20 42021 #: views/subscribers.php:203 2013 2022 msgid "Uploaded files" 2014 2023 msgstr "" 2015 2024 2016 #: views/subscribers.php:20 72025 #: views/subscribers.php:206 2017 2026 msgid "Import options" 2018 2027 msgstr "" 2019 2028 2020 #: views/subscribers.php:21 52029 #: views/subscribers.php:214 2021 2030 msgid "Please select a file to import." 2022 2031 msgstr "" 2023 2032 2024 #: views/subscribers.php:22 32033 #: views/subscribers.php:222 2025 2034 msgid " Skip first row" 2026 2035 msgstr "" 2027 2036 2028 #: views/subscribers.php:23 6 views/subscribers.php:2442029 #: views/subscribers.php:25 2 views/subscribers.php:2602030 #: views/subscribers.php:26 82037 #: views/subscribers.php:235 views/subscribers.php:243 2038 #: views/subscribers.php:251 views/subscribers.php:259 2039 #: views/subscribers.php:267 2031 2040 msgid "email" 2032 2041 msgstr "" 2033 2042 2034 #: views/subscribers.php:30 52043 #: views/subscribers.php:304 2035 2044 msgid "Please enable JavaScript to use file uploader." 2036 2045 msgstr "" 2037 2046 2038 #: views/subscribers.php:31 1views/templates.php:1902047 #: views/subscribers.php:310 views/templates.php:190 2039 2048 msgid "Upload a file" 2040 2049 msgstr "" 2041 2050 2042 #: views/subscribers.php:31 2views/templates.php:1922051 #: views/subscribers.php:311 views/templates.php:192 2043 2052 msgid "Import" 2044 2053 msgstr "" 2045 2054 2046 #: views/subscribers.php:3 202055 #: views/subscribers.php:319 2047 2056 msgid "Bulk unsubscribe:" 2048 2057 msgstr "" 2049 2058 2050 #: views/subscribers.php:32 42059 #: views/subscribers.php:323 2051 2060 msgid "Enter an email addresses which you want to unsubscribe. Place each email on a separate row." 2052 2061 msgstr "" 2053 2062 2054 #: views/subscribers.php:33 12063 #: views/subscribers.php:330 2055 2064 msgid " Unsubscribe from all lists" 2056 2065 msgstr "" 2057 2066 2058 #: views/subscribers.php:34 12067 #: views/subscribers.php:340 2059 2068 msgid "Add new list:" 2060 2069 msgstr "" -
wpnewsman-newsletters/trunk/readme.txt
r1015230 r1016663 5 5 Requires at least: 3.8 6 6 Tested up to: 4.0 7 Stable tag: 1.8. 07 Stable tag: 1.8.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 == Changelog == 127 127 128 = 1.8.1 = 129 130 * Fixes styling of the Pro plugin pages 131 128 132 = 1.8.0 = 129 133 -
wpnewsman-newsletters/trunk/wpnewsman.php
r1015230 r1016663 4 4 Plugin URI: http://wpnewsman.com 5 5 Description: 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. 06 Version: 1.8.1 7 7 Author: Alex Ladyga - G-Lock Software 8 8 Author URI: http://www.glocksoft.com … … 32 32 33 33 define('NEWSMAN', 'wpnewsman'); 34 define('NEWSMAN_VERSION', '1.8. 0');34 define('NEWSMAN_VERSION', '1.8.1'); 35 35 36 36 if ( preg_match('/.*?\.dev$/i', $_SERVER['HTTP_HOST']) ) {
Note: See TracChangeset
for help on using the changeset viewer.