Changeset 1321722
- Timestamp:
- 01/05/2016 02:56:04 PM (10 years ago)
- Location:
- sendmachine
- Files:
-
- 14 edited
- 1 copied
-
tags/1.0.6 (copied) (copied from sendmachine/trunk)
-
tags/1.0.6/includes/sendmachine_defaults.php (modified) (1 diff)
-
tags/1.0.6/includes/sendmachine_subscribe_manager.php (modified) (1 diff)
-
tags/1.0.6/languages/wp-sendmachine-ro_RO.mo (modified) (previous)
-
tags/1.0.6/languages/wp-sendmachine-ro_RO.po (modified) (16 diffs)
-
tags/1.0.6/readme.txt (modified) (2 diffs)
-
tags/1.0.6/sendmachine_wp.php (modified) (2 diffs)
-
tags/1.0.6/sendmachine_wp_admin.php (modified) (2 diffs)
-
trunk/includes/sendmachine_defaults.php (modified) (1 diff)
-
trunk/includes/sendmachine_subscribe_manager.php (modified) (1 diff)
-
trunk/languages/wp-sendmachine-ro_RO.mo (modified) (previous)
-
trunk/languages/wp-sendmachine-ro_RO.po (modified) (16 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sendmachine_wp.php (modified) (2 diffs)
-
trunk/sendmachine_wp_admin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendmachine/tags/1.0.6/includes/sendmachine_defaults.php
r1287956 r1321722 1 1 <?php 2 2 3 $sm_config = array( 4 "keys_to_encode" => array("header_template", "body_template", "footer_template"), 5 "to_reset" => array('list|id','list|data','list|fields','email|senderlist','email|provider_settings','email|host','email|port','email|from_email','feed|sender_email','feed|list_id'), 6 "feed_delimiter" => "||%s||" 7 ); 3 class Sm_defaults { 8 4 9 $sendmachine_defaults = array( 10 "list" => array( 11 "hide_subscribed" => 0, 12 "redirect_subscribed" => "", 13 "message_success_subscribe" => "You have been successfully subscribed! Thank you!", 14 "message_subscriber_exists" => "You are already subscribed.Thanks anyway.", 15 "message_not_subscribed" => "Something went wrong, you were not subscribed.", 16 "checkbox_register" => 1, 17 "checkbox_comment" => 0, 18 "checkbox_label" => "Sign me up for the newsletter!", 19 "checkbox_checked" => 0, 20 "simple_subscribe" => 1 21 ), 22 "email" => array( 23 "enable_service" => 1, 24 "encryption" => "no_encryption", 25 "register_post" => 1, 26 "comment_post" => 0, 27 "register_post_label" => "Register", 28 "comment_post_label" => "Comment" 29 ), 30 "feed" => array( 31 "post_nr" => 10, 32 "header_template" => "<h1>||SITENAME||</h1>", 33 "body_template" => "<h3><a href=\"||POSTURL||\">||POSTTITLE||</a></h3><p>||POSTCONTENTSUMMARY||</p><p><em>Author: ||POSTAUTHOR|| Posted on ||POSTDATE||</em></p>", 34 "footer_template" => "<p><em>If you don't want to receive this messages anymore, unsubscribe by clicking <a href=\"[[UNSUB_LINK]]\">here</a>!</em></p>", 35 "template_width" => "600px", 36 "template_bgcolor" => "#fff" 37 ) 38 ); 5 public static function config() { 6 7 return array( 8 "keys_to_encode" => array("header_template", "body_template", "footer_template"), 9 "to_reset" => array('list|id', 'list|data', 'list|fields', 'email|senderlist', 'email|provider_settings', 'email|host', 'email|port', 'email|from_email', 'feed|sender_email', 'feed|list_id'), 10 "feed_delimiter" => "||%s||" 11 ); 12 } 13 14 public static function defaults() { 15 16 return array( 17 "list" => array( 18 "hide_subscribed" => 0, 19 "redirect_subscribed" => "", 20 "message_success_subscribe" => __('You have been successfully subscribed! Thank you!', SM_LANGUAGE_DOMAIN), 21 "message_subscriber_exists" => __('You are already subscribed.Thanks anyway.', SM_LANGUAGE_DOMAIN), 22 "message_not_subscribed" => __('Something went wrong, you were not subscribed.', SM_LANGUAGE_DOMAIN), 23 "checkbox_register" => 1, 24 "checkbox_comment" => 0, 25 "checkbox_label" => __('Sign me up for the newsletter!', SM_LANGUAGE_DOMAIN), 26 "checkbox_checked" => 0, 27 "simple_subscribe" => 1 28 ), 29 "email" => array( 30 "enable_service" => 1, 31 "encryption" => "no_encryption", 32 "register_post" => 1, 33 "comment_post" => 0, 34 "register_post_label" => "Register", 35 "comment_post_label" => "Comment" 36 ), 37 "feed" => array( 38 "post_nr" => 10, 39 "header_template" => "<h1>||SITENAME||</h1>", 40 "body_template" => "<h3><a href=\"||POSTURL||\">||POSTTITLE||</a></h3><p>||POSTCONTENTSUMMARY||</p><p><em>Author: ||POSTAUTHOR|| Posted on ||POSTDATE||</em></p>", 41 "footer_template" => "<p><em>If you don't want to receive this messages anymore, unsubscribe by clicking <a href=\"[[UNSUB_LINK]]\">here</a>!</em></p>", 42 "template_width" => "600px", 43 "template_bgcolor" => "#fff" 44 ) 45 ); 46 } 47 48 } -
sendmachine/tags/1.0.6/includes/sendmachine_subscribe_manager.php
r1287956 r1321722 143 143 . '<input type="hidden" name="sm_form_nr" value="'.$this->form_count.'"/> ' 144 144 . $list_fields 145 . '<input type="submit" value=" Subscribe" />'145 . '<input type="submit" value="'.__('Subscribe', SM_LANGUAGE_DOMAIN).'" />' 146 146 . '<div class="sm_wp_sub_req_resp" >' . $notices . '</div>' 147 147 . '</form>' -
sendmachine/tags/1.0.6/languages/wp-sendmachine-ro_RO.po
r1226818 r1321722 2 2 msgstr "" 3 3 "Project-Id-Version: sendmachine-for-wordpress\n" 4 "POT-Creation-Date: 2015-08-19 10:36+0200\n" 5 "PO-Revision-Date: 2015-08-19 10:42+0200\n" 4 "POT-Creation-Date: 2016-01-05 16:00+0200\n" 5 "PO-Revision-Date: 2016-01-05 16:11+0200\n" 6 "Last-Translator: sendmachine <support@sendmachine.com>\n" 6 7 "Language-Team: sendmachine <support@sendmachine.com>\n" 8 "Language: ro\n" 7 9 "MIME-Version: 1.0\n" 8 10 "Content-Type: text/plain; charset=UTF-8\n" … … 11 13 "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" 12 14 "X-Poedit-Basepath: ../\n" 13 "Last-Translator: sendmachine <support@sendmachine.com>\n"14 15 "X-Poedit-SearchPath-0: .\n" 15 16 … … 37 38 msgstr "Setari" 38 39 40 #: sendmachine_wp_admin.php:70 41 msgid "General" 42 msgstr "General" 43 44 #: sendmachine_wp_admin.php:71 45 msgid "Lists" 46 msgstr "Liste" 47 48 #: sendmachine_wp_admin.php:72 49 msgid "Feed" 50 msgstr "Flux noutati" 51 52 #: sendmachine_wp_admin.php:73 views/wp_sm_email_settings.php:6 53 msgid "Email Settings" 54 msgstr "Setari Email" 55 39 56 #: sendmachine_wp_admin.php:136 40 57 msgid "Saved!" … … 83 100 msgstr "Abonare lista Sendmachine" 84 101 85 #: sendmachine_widget.php:3 1102 #: sendmachine_widget.php:33 86 103 msgid "Title:" 87 104 msgstr "Titlu:" 88 105 89 #: includes/sendmachine_subscribe_manager.php:142 90 msgid "* mandatory" 91 msgstr "* obligatoriu" 92 93 #: includes/sendmachine_subscribe_manager.php:217 106 #: sendmachine_widget.php:37 107 msgid "Description:" 108 msgstr "Descrierea blog-ului" 109 110 #: includes/sendmachine_subscribe_manager.php:145 111 msgid "Subscribe" 112 msgstr "Abonare" 113 114 #: includes/sendmachine_subscribe_manager.php:219 94 115 msgid "" 95 116 "API must be connected and you have to select a list in order to sync your " … … 99 120 "putea sincroniza utilizatorii." 100 121 101 #: includes/sendmachine_subscribe_manager.php:23 5122 #: includes/sendmachine_subscribe_manager.php:237 102 123 #, php-format 103 124 msgid "Sync complete! %u users were added to your contact list." … … 106 127 "contacte. " 107 128 108 #: includes/sendmachine_subscribe_manager.php:23 6129 #: includes/sendmachine_subscribe_manager.php:238 109 130 msgid "Something went wrong. Users not synced." 110 131 msgstr "Ceva nu a mers cum trebuie. Utilizatorii nu au fost sincronizati." 132 133 #: includes/sendmachine_defaults.php:13 134 msgid "You have been successfully subscribed! Thank you!" 135 msgstr "Ai fost abonat cu succes." 136 137 #: includes/sendmachine_defaults.php:14 138 msgid "You are already subscribed.Thanks anyway." 139 msgstr "Esti abonat deja." 140 141 #: includes/sendmachine_defaults.php:15 142 msgid "Something went wrong, you were not subscribed." 143 msgstr "Ceva nu a mers cum trebuie. Utilizatorii nu au fost sincronizati." 144 145 #: includes/sendmachine_defaults.php:18 146 msgid "Sign me up for the newsletter!" 147 msgstr "Aboneaza-ma la newsletter!" 111 148 112 149 #: includes/sendmachine_feed_manager.php:25 … … 116 153 #: includes/sendmachine_feed_manager.php:39 117 154 #: includes/sendmachine_feed_manager.php:68 118 #: views/wp_sm_general_settings.php:39 views/wp_sm_feed_settings.php:1 89155 #: views/wp_sm_general_settings.php:39 views/wp_sm_feed_settings.php:192 119 156 msgid "here" 120 157 msgstr "aici" … … 254 291 msgstr "Lista la care se vor abona persoanele" 255 292 256 #: views/wp_sm_list_settings.php:54 views/wp_sm_feed_settings.php: 198293 #: views/wp_sm_list_settings.php:54 views/wp_sm_feed_settings.php:201 257 294 msgid "Save" 258 295 msgstr "Salveaza" … … 327 364 328 365 #: views/wp_sm_list_settings.php:174 views/wp_sm_list_settings.php:221 329 #: views/wp_sm_email_settings.php:112 views/wp_sm_general_settings.php:6 2366 #: views/wp_sm_email_settings.php:112 views/wp_sm_general_settings.php:64 330 367 msgid "Save Changes" 331 368 msgstr "Salveaza Modificari" … … 381 418 msgstr "Aboneaza toti utilizatorii existenti la lista de contacte selectata." 382 419 383 #: views/wp_sm_email_settings.php:6384 msgid "Email Settings"385 msgstr "Setari Email"386 387 420 #: views/wp_sm_email_settings.php:8 388 421 msgid "" … … 563 596 msgstr "UTILIZATOR API" 564 597 565 #: views/wp_sm_general_settings.php:5 5598 #: views/wp_sm_general_settings.php:56 566 599 msgid "API PASSWORD" 567 600 msgstr "PAROLA API" … … 587 620 msgstr "Lista de contacte" 588 621 589 #: views/wp_sm_feed_settings.php:6 2622 #: views/wp_sm_feed_settings.php:65 590 623 msgid "Sender address" 591 624 msgstr "Adresa de trimitere" 592 625 593 #: views/wp_sm_feed_settings.php:8 4626 #: views/wp_sm_feed_settings.php:87 594 627 msgid "Send Campaign" 595 628 msgstr "Trimite Campanie" 596 629 597 #: views/wp_sm_feed_settings.php:8 5630 #: views/wp_sm_feed_settings.php:88 598 631 msgid "Save Draft To Sendmachine" 599 632 msgstr "Salveaza draft in Sendmachine" 600 633 601 #: views/wp_sm_feed_settings.php:9 1634 #: views/wp_sm_feed_settings.php:94 602 635 msgid "Template customization" 603 636 msgstr "Personalizare template" 604 637 605 #: views/wp_sm_feed_settings.php:9 4638 #: views/wp_sm_feed_settings.php:97 606 639 msgid "Number of posts" 607 640 msgstr "Numar de post-uri" 608 641 609 #: views/wp_sm_feed_settings.php:11 0642 #: views/wp_sm_feed_settings.php:113 610 643 msgid "Number of posts (descending order) to build campaign's newsletter." 611 644 msgstr "" … … 613 646 "campaniei." 614 647 615 #: views/wp_sm_feed_settings.php:11 5648 #: views/wp_sm_feed_settings.php:118 616 649 msgid "Template width" 617 650 msgstr "Latime template" 618 651 619 #: views/wp_sm_feed_settings.php:12 1652 #: views/wp_sm_feed_settings.php:124 620 653 msgid "Define template's width.Defaults to 600 px." 621 654 msgstr "Seteaza latimea (width) template-ului. Implicit este 600px. " 622 655 623 #: views/wp_sm_feed_settings.php:12 6656 #: views/wp_sm_feed_settings.php:129 624 657 msgid "Template background color" 625 658 msgstr "Culoarea de fundal a template-ului " 626 659 627 #: views/wp_sm_feed_settings.php:13 2660 #: views/wp_sm_feed_settings.php:135 628 661 msgid "Define template's background color.Defaults to '#fff' (white)." 629 662 msgstr "" 630 663 "Seteaza culoarea de fundal a template-ului. Cea implicita este '#fff' (alb)." 631 664 632 #: views/wp_sm_feed_settings.php:1 37665 #: views/wp_sm_feed_settings.php:140 633 666 msgid "Template header" 634 667 msgstr "Header template" 635 668 636 #: views/wp_sm_feed_settings.php:1 38669 #: views/wp_sm_feed_settings.php:141 637 670 msgid "" 638 671 "Customize template's header. A logo is recommended, but really, there are no " … … 642 675 "dar sincer, nu sunt limite." 643 676 644 #: views/wp_sm_feed_settings.php:15 0677 #: views/wp_sm_feed_settings.php:153 645 678 msgid "Template body" 646 679 msgstr "Body template" 647 680 648 #: views/wp_sm_feed_settings.php:15 1681 #: views/wp_sm_feed_settings.php:154 649 682 #, php-format 650 683 msgid "" … … 655 688 "body pentru a construi efectiv continutul. (designul VA FI preluat)." 656 689 657 #: views/wp_sm_feed_settings.php:16 3690 #: views/wp_sm_feed_settings.php:166 658 691 msgid "Template footer" 659 692 msgstr "Footer template" 660 693 661 #: views/wp_sm_feed_settings.php:16 4694 #: views/wp_sm_feed_settings.php:167 662 695 msgid "" 663 696 "Customize template's footer. An unsubscribe link is mandatory e.g. <a " … … 667 700 "obligatoriu ex. <a href='[[UNSUB_LINK]]'>dezabonare</a>" 668 701 669 #: views/wp_sm_feed_settings.php:1 77702 #: views/wp_sm_feed_settings.php:180 670 703 msgid "Keyword dictionary: " 671 704 msgstr "Dictionar termeni:" 672 705 673 #: views/wp_sm_feed_settings.php:19 0706 #: views/wp_sm_feed_settings.php:193 674 707 #, php-format 675 708 msgid "For a list of available Sendmachine macros click %s." 676 709 msgstr "Pentru lista cu macro-urile Sendmachine disponibile click %s." 677 710 678 #: views/wp_sm_feed_settings.php: 199711 #: views/wp_sm_feed_settings.php:202 679 712 msgid "Preview" 680 713 msgstr "Previzualizare" 681 714 715 #~ msgid "* mandatory" 716 #~ msgstr "* obligatoriu" 717 682 718 #~ msgid "Customize template's body. Include at least " 683 719 #~ msgstr "Personalizeaza body-ul template-ului. Include cel putin" -
sendmachine/tags/1.0.6/readme.txt
r1288496 r1321722 3 3 Tags: sendmachine,newsletter,campaigns,subscribers,sign-up,email marketing 4 4 Requires at least: 3.2.1 5 Tested up to: 4. 36 Stable tag: 1.0. 55 Tested up to: 4.4 6 Stable tag: 1.0.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.0.6 = 99 * updated language file 100 98 101 = 1.0.5 = 99 102 * disabled error reporting -
sendmachine/tags/1.0.6/sendmachine_wp.php
r1288496 r1321722 5 5 Plugin URI: https://www.sendmachine.com 6 6 Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns. 7 Version: 1.0. 57 Version: 1.0.6 8 8 Author: Sendmachine team 9 9 Author URI: http://developers.sendmachine.com/ … … 40 40 41 41 require_once SM_PLUGIN_DIR . 'includes/sendmachine_defaults.php'; 42 $this->sm_defaults = $sendmachine_defaults;43 $this->config = $sm_config;42 $this->sm_defaults = Sm_defaults::defaults(); 43 $this->config = Sm_defaults::config(); 44 44 45 45 $this->app = get_option(SM_OPTIONS_APP_NAME); -
sendmachine/tags/1.0.6/sendmachine_wp_admin.php
r1287956 r1321722 68 68 add_menu_page('Sendmachine Setup', 'Sendmachine', 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page'), plugins_url('static/images/wp_sendmachine_logo.png', SM_PLUGIN_FILE)); 69 69 70 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' General', 'General', 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page'));71 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Lists', 'Lists', 'manage_options', 'sendmachine_lists', array($this, 'sendmachine_load_page'));72 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Feed', 'Feed', 'manage_options', 'sendmachine_feed', array($this, 'sendmachine_load_page'));73 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Email Settings', 'Email Settings', 'manage_options', 'sendmachine_email', array($this, 'sendmachine_load_page'));70 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' General', __('General', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page')); 71 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Lists', __('Lists', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_lists', array($this, 'sendmachine_load_page')); 72 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Feed', __('Feed', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_feed', array($this, 'sendmachine_load_page')); 73 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Email Settings', __('Email Settings', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_email', array($this, 'sendmachine_load_page')); 74 74 } 75 75 … … 101 101 public function sendmachine_wp_install() { 102 102 103 $this->walk_array($this->app, $this->sm_defaults);103 $this->walk_array($this->app, Sm_defaults::defaults()); 104 104 update_option(SM_OPTIONS_APP_NAME, $this->app); 105 105 } -
sendmachine/trunk/includes/sendmachine_defaults.php
r1287956 r1321722 1 1 <?php 2 2 3 $sm_config = array( 4 "keys_to_encode" => array("header_template", "body_template", "footer_template"), 5 "to_reset" => array('list|id','list|data','list|fields','email|senderlist','email|provider_settings','email|host','email|port','email|from_email','feed|sender_email','feed|list_id'), 6 "feed_delimiter" => "||%s||" 7 ); 3 class Sm_defaults { 8 4 9 $sendmachine_defaults = array( 10 "list" => array( 11 "hide_subscribed" => 0, 12 "redirect_subscribed" => "", 13 "message_success_subscribe" => "You have been successfully subscribed! Thank you!", 14 "message_subscriber_exists" => "You are already subscribed.Thanks anyway.", 15 "message_not_subscribed" => "Something went wrong, you were not subscribed.", 16 "checkbox_register" => 1, 17 "checkbox_comment" => 0, 18 "checkbox_label" => "Sign me up for the newsletter!", 19 "checkbox_checked" => 0, 20 "simple_subscribe" => 1 21 ), 22 "email" => array( 23 "enable_service" => 1, 24 "encryption" => "no_encryption", 25 "register_post" => 1, 26 "comment_post" => 0, 27 "register_post_label" => "Register", 28 "comment_post_label" => "Comment" 29 ), 30 "feed" => array( 31 "post_nr" => 10, 32 "header_template" => "<h1>||SITENAME||</h1>", 33 "body_template" => "<h3><a href=\"||POSTURL||\">||POSTTITLE||</a></h3><p>||POSTCONTENTSUMMARY||</p><p><em>Author: ||POSTAUTHOR|| Posted on ||POSTDATE||</em></p>", 34 "footer_template" => "<p><em>If you don't want to receive this messages anymore, unsubscribe by clicking <a href=\"[[UNSUB_LINK]]\">here</a>!</em></p>", 35 "template_width" => "600px", 36 "template_bgcolor" => "#fff" 37 ) 38 ); 5 public static function config() { 6 7 return array( 8 "keys_to_encode" => array("header_template", "body_template", "footer_template"), 9 "to_reset" => array('list|id', 'list|data', 'list|fields', 'email|senderlist', 'email|provider_settings', 'email|host', 'email|port', 'email|from_email', 'feed|sender_email', 'feed|list_id'), 10 "feed_delimiter" => "||%s||" 11 ); 12 } 13 14 public static function defaults() { 15 16 return array( 17 "list" => array( 18 "hide_subscribed" => 0, 19 "redirect_subscribed" => "", 20 "message_success_subscribe" => __('You have been successfully subscribed! Thank you!', SM_LANGUAGE_DOMAIN), 21 "message_subscriber_exists" => __('You are already subscribed.Thanks anyway.', SM_LANGUAGE_DOMAIN), 22 "message_not_subscribed" => __('Something went wrong, you were not subscribed.', SM_LANGUAGE_DOMAIN), 23 "checkbox_register" => 1, 24 "checkbox_comment" => 0, 25 "checkbox_label" => __('Sign me up for the newsletter!', SM_LANGUAGE_DOMAIN), 26 "checkbox_checked" => 0, 27 "simple_subscribe" => 1 28 ), 29 "email" => array( 30 "enable_service" => 1, 31 "encryption" => "no_encryption", 32 "register_post" => 1, 33 "comment_post" => 0, 34 "register_post_label" => "Register", 35 "comment_post_label" => "Comment" 36 ), 37 "feed" => array( 38 "post_nr" => 10, 39 "header_template" => "<h1>||SITENAME||</h1>", 40 "body_template" => "<h3><a href=\"||POSTURL||\">||POSTTITLE||</a></h3><p>||POSTCONTENTSUMMARY||</p><p><em>Author: ||POSTAUTHOR|| Posted on ||POSTDATE||</em></p>", 41 "footer_template" => "<p><em>If you don't want to receive this messages anymore, unsubscribe by clicking <a href=\"[[UNSUB_LINK]]\">here</a>!</em></p>", 42 "template_width" => "600px", 43 "template_bgcolor" => "#fff" 44 ) 45 ); 46 } 47 48 } -
sendmachine/trunk/includes/sendmachine_subscribe_manager.php
r1287956 r1321722 143 143 . '<input type="hidden" name="sm_form_nr" value="'.$this->form_count.'"/> ' 144 144 . $list_fields 145 . '<input type="submit" value=" Subscribe" />'145 . '<input type="submit" value="'.__('Subscribe', SM_LANGUAGE_DOMAIN).'" />' 146 146 . '<div class="sm_wp_sub_req_resp" >' . $notices . '</div>' 147 147 . '</form>' -
sendmachine/trunk/languages/wp-sendmachine-ro_RO.po
r1226818 r1321722 2 2 msgstr "" 3 3 "Project-Id-Version: sendmachine-for-wordpress\n" 4 "POT-Creation-Date: 2015-08-19 10:36+0200\n" 5 "PO-Revision-Date: 2015-08-19 10:42+0200\n" 4 "POT-Creation-Date: 2016-01-05 16:00+0200\n" 5 "PO-Revision-Date: 2016-01-05 16:11+0200\n" 6 "Last-Translator: sendmachine <support@sendmachine.com>\n" 6 7 "Language-Team: sendmachine <support@sendmachine.com>\n" 8 "Language: ro\n" 7 9 "MIME-Version: 1.0\n" 8 10 "Content-Type: text/plain; charset=UTF-8\n" … … 11 13 "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" 12 14 "X-Poedit-Basepath: ../\n" 13 "Last-Translator: sendmachine <support@sendmachine.com>\n"14 15 "X-Poedit-SearchPath-0: .\n" 15 16 … … 37 38 msgstr "Setari" 38 39 40 #: sendmachine_wp_admin.php:70 41 msgid "General" 42 msgstr "General" 43 44 #: sendmachine_wp_admin.php:71 45 msgid "Lists" 46 msgstr "Liste" 47 48 #: sendmachine_wp_admin.php:72 49 msgid "Feed" 50 msgstr "Flux noutati" 51 52 #: sendmachine_wp_admin.php:73 views/wp_sm_email_settings.php:6 53 msgid "Email Settings" 54 msgstr "Setari Email" 55 39 56 #: sendmachine_wp_admin.php:136 40 57 msgid "Saved!" … … 83 100 msgstr "Abonare lista Sendmachine" 84 101 85 #: sendmachine_widget.php:3 1102 #: sendmachine_widget.php:33 86 103 msgid "Title:" 87 104 msgstr "Titlu:" 88 105 89 #: includes/sendmachine_subscribe_manager.php:142 90 msgid "* mandatory" 91 msgstr "* obligatoriu" 92 93 #: includes/sendmachine_subscribe_manager.php:217 106 #: sendmachine_widget.php:37 107 msgid "Description:" 108 msgstr "Descrierea blog-ului" 109 110 #: includes/sendmachine_subscribe_manager.php:145 111 msgid "Subscribe" 112 msgstr "Abonare" 113 114 #: includes/sendmachine_subscribe_manager.php:219 94 115 msgid "" 95 116 "API must be connected and you have to select a list in order to sync your " … … 99 120 "putea sincroniza utilizatorii." 100 121 101 #: includes/sendmachine_subscribe_manager.php:23 5122 #: includes/sendmachine_subscribe_manager.php:237 102 123 #, php-format 103 124 msgid "Sync complete! %u users were added to your contact list." … … 106 127 "contacte. " 107 128 108 #: includes/sendmachine_subscribe_manager.php:23 6129 #: includes/sendmachine_subscribe_manager.php:238 109 130 msgid "Something went wrong. Users not synced." 110 131 msgstr "Ceva nu a mers cum trebuie. Utilizatorii nu au fost sincronizati." 132 133 #: includes/sendmachine_defaults.php:13 134 msgid "You have been successfully subscribed! Thank you!" 135 msgstr "Ai fost abonat cu succes." 136 137 #: includes/sendmachine_defaults.php:14 138 msgid "You are already subscribed.Thanks anyway." 139 msgstr "Esti abonat deja." 140 141 #: includes/sendmachine_defaults.php:15 142 msgid "Something went wrong, you were not subscribed." 143 msgstr "Ceva nu a mers cum trebuie. Utilizatorii nu au fost sincronizati." 144 145 #: includes/sendmachine_defaults.php:18 146 msgid "Sign me up for the newsletter!" 147 msgstr "Aboneaza-ma la newsletter!" 111 148 112 149 #: includes/sendmachine_feed_manager.php:25 … … 116 153 #: includes/sendmachine_feed_manager.php:39 117 154 #: includes/sendmachine_feed_manager.php:68 118 #: views/wp_sm_general_settings.php:39 views/wp_sm_feed_settings.php:1 89155 #: views/wp_sm_general_settings.php:39 views/wp_sm_feed_settings.php:192 119 156 msgid "here" 120 157 msgstr "aici" … … 254 291 msgstr "Lista la care se vor abona persoanele" 255 292 256 #: views/wp_sm_list_settings.php:54 views/wp_sm_feed_settings.php: 198293 #: views/wp_sm_list_settings.php:54 views/wp_sm_feed_settings.php:201 257 294 msgid "Save" 258 295 msgstr "Salveaza" … … 327 364 328 365 #: views/wp_sm_list_settings.php:174 views/wp_sm_list_settings.php:221 329 #: views/wp_sm_email_settings.php:112 views/wp_sm_general_settings.php:6 2366 #: views/wp_sm_email_settings.php:112 views/wp_sm_general_settings.php:64 330 367 msgid "Save Changes" 331 368 msgstr "Salveaza Modificari" … … 381 418 msgstr "Aboneaza toti utilizatorii existenti la lista de contacte selectata." 382 419 383 #: views/wp_sm_email_settings.php:6384 msgid "Email Settings"385 msgstr "Setari Email"386 387 420 #: views/wp_sm_email_settings.php:8 388 421 msgid "" … … 563 596 msgstr "UTILIZATOR API" 564 597 565 #: views/wp_sm_general_settings.php:5 5598 #: views/wp_sm_general_settings.php:56 566 599 msgid "API PASSWORD" 567 600 msgstr "PAROLA API" … … 587 620 msgstr "Lista de contacte" 588 621 589 #: views/wp_sm_feed_settings.php:6 2622 #: views/wp_sm_feed_settings.php:65 590 623 msgid "Sender address" 591 624 msgstr "Adresa de trimitere" 592 625 593 #: views/wp_sm_feed_settings.php:8 4626 #: views/wp_sm_feed_settings.php:87 594 627 msgid "Send Campaign" 595 628 msgstr "Trimite Campanie" 596 629 597 #: views/wp_sm_feed_settings.php:8 5630 #: views/wp_sm_feed_settings.php:88 598 631 msgid "Save Draft To Sendmachine" 599 632 msgstr "Salveaza draft in Sendmachine" 600 633 601 #: views/wp_sm_feed_settings.php:9 1634 #: views/wp_sm_feed_settings.php:94 602 635 msgid "Template customization" 603 636 msgstr "Personalizare template" 604 637 605 #: views/wp_sm_feed_settings.php:9 4638 #: views/wp_sm_feed_settings.php:97 606 639 msgid "Number of posts" 607 640 msgstr "Numar de post-uri" 608 641 609 #: views/wp_sm_feed_settings.php:11 0642 #: views/wp_sm_feed_settings.php:113 610 643 msgid "Number of posts (descending order) to build campaign's newsletter." 611 644 msgstr "" … … 613 646 "campaniei." 614 647 615 #: views/wp_sm_feed_settings.php:11 5648 #: views/wp_sm_feed_settings.php:118 616 649 msgid "Template width" 617 650 msgstr "Latime template" 618 651 619 #: views/wp_sm_feed_settings.php:12 1652 #: views/wp_sm_feed_settings.php:124 620 653 msgid "Define template's width.Defaults to 600 px." 621 654 msgstr "Seteaza latimea (width) template-ului. Implicit este 600px. " 622 655 623 #: views/wp_sm_feed_settings.php:12 6656 #: views/wp_sm_feed_settings.php:129 624 657 msgid "Template background color" 625 658 msgstr "Culoarea de fundal a template-ului " 626 659 627 #: views/wp_sm_feed_settings.php:13 2660 #: views/wp_sm_feed_settings.php:135 628 661 msgid "Define template's background color.Defaults to '#fff' (white)." 629 662 msgstr "" 630 663 "Seteaza culoarea de fundal a template-ului. Cea implicita este '#fff' (alb)." 631 664 632 #: views/wp_sm_feed_settings.php:1 37665 #: views/wp_sm_feed_settings.php:140 633 666 msgid "Template header" 634 667 msgstr "Header template" 635 668 636 #: views/wp_sm_feed_settings.php:1 38669 #: views/wp_sm_feed_settings.php:141 637 670 msgid "" 638 671 "Customize template's header. A logo is recommended, but really, there are no " … … 642 675 "dar sincer, nu sunt limite." 643 676 644 #: views/wp_sm_feed_settings.php:15 0677 #: views/wp_sm_feed_settings.php:153 645 678 msgid "Template body" 646 679 msgstr "Body template" 647 680 648 #: views/wp_sm_feed_settings.php:15 1681 #: views/wp_sm_feed_settings.php:154 649 682 #, php-format 650 683 msgid "" … … 655 688 "body pentru a construi efectiv continutul. (designul VA FI preluat)." 656 689 657 #: views/wp_sm_feed_settings.php:16 3690 #: views/wp_sm_feed_settings.php:166 658 691 msgid "Template footer" 659 692 msgstr "Footer template" 660 693 661 #: views/wp_sm_feed_settings.php:16 4694 #: views/wp_sm_feed_settings.php:167 662 695 msgid "" 663 696 "Customize template's footer. An unsubscribe link is mandatory e.g. <a " … … 667 700 "obligatoriu ex. <a href='[[UNSUB_LINK]]'>dezabonare</a>" 668 701 669 #: views/wp_sm_feed_settings.php:1 77702 #: views/wp_sm_feed_settings.php:180 670 703 msgid "Keyword dictionary: " 671 704 msgstr "Dictionar termeni:" 672 705 673 #: views/wp_sm_feed_settings.php:19 0706 #: views/wp_sm_feed_settings.php:193 674 707 #, php-format 675 708 msgid "For a list of available Sendmachine macros click %s." 676 709 msgstr "Pentru lista cu macro-urile Sendmachine disponibile click %s." 677 710 678 #: views/wp_sm_feed_settings.php: 199711 #: views/wp_sm_feed_settings.php:202 679 712 msgid "Preview" 680 713 msgstr "Previzualizare" 681 714 715 #~ msgid "* mandatory" 716 #~ msgstr "* obligatoriu" 717 682 718 #~ msgid "Customize template's body. Include at least " 683 719 #~ msgstr "Personalizeaza body-ul template-ului. Include cel putin" -
sendmachine/trunk/readme.txt
r1288496 r1321722 3 3 Tags: sendmachine,newsletter,campaigns,subscribers,sign-up,email marketing 4 4 Requires at least: 3.2.1 5 Tested up to: 4. 36 Stable tag: 1.0. 55 Tested up to: 4.4 6 Stable tag: 1.0.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.0.6 = 99 * updated language file 100 98 101 = 1.0.5 = 99 102 * disabled error reporting -
sendmachine/trunk/sendmachine_wp.php
r1288496 r1321722 5 5 Plugin URI: https://www.sendmachine.com 6 6 Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns. 7 Version: 1.0. 57 Version: 1.0.6 8 8 Author: Sendmachine team 9 9 Author URI: http://developers.sendmachine.com/ … … 40 40 41 41 require_once SM_PLUGIN_DIR . 'includes/sendmachine_defaults.php'; 42 $this->sm_defaults = $sendmachine_defaults;43 $this->config = $sm_config;42 $this->sm_defaults = Sm_defaults::defaults(); 43 $this->config = Sm_defaults::config(); 44 44 45 45 $this->app = get_option(SM_OPTIONS_APP_NAME); -
sendmachine/trunk/sendmachine_wp_admin.php
r1287956 r1321722 68 68 add_menu_page('Sendmachine Setup', 'Sendmachine', 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page'), plugins_url('static/images/wp_sendmachine_logo.png', SM_PLUGIN_FILE)); 69 69 70 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' General', 'General', 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page'));71 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Lists', 'Lists', 'manage_options', 'sendmachine_lists', array($this, 'sendmachine_load_page'));72 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Feed', 'Feed', 'manage_options', 'sendmachine_feed', array($this, 'sendmachine_load_page'));73 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Email Settings', 'Email Settings', 'manage_options', 'sendmachine_email', array($this, 'sendmachine_load_page'));70 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' General', __('General', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_settings', array($this, 'sendmachine_load_page')); 71 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Lists', __('Lists', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_lists', array($this, 'sendmachine_load_page')); 72 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Feed', __('Feed', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_feed', array($this, 'sendmachine_load_page')); 73 add_submenu_page('sendmachine_settings', 'Sendmachine -' . ' Email Settings', __('Email Settings', SM_LANGUAGE_DOMAIN), 'manage_options', 'sendmachine_email', array($this, 'sendmachine_load_page')); 74 74 } 75 75 … … 101 101 public function sendmachine_wp_install() { 102 102 103 $this->walk_array($this->app, $this->sm_defaults);103 $this->walk_array($this->app, Sm_defaults::defaults()); 104 104 update_option(SM_OPTIONS_APP_NAME, $this->app); 105 105 }
Note: See TracChangeset
for help on using the changeset viewer.