Changeset 1266935
- Timestamp:
- 10/15/2015 09:44:31 PM (10 years ago)
- Location:
- yandex-mail/trunk
- Files:
-
- 5 edited
-
languages/yandex-mail-ru_RU.mo (modified) (previous)
-
languages/yandex-mail-ru_RU.po (modified) (3 diffs)
-
options.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
yandex-mail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
yandex-mail/trunk/languages/yandex-mail-ru_RU.po
r1200442 r1266935 2 2 msgstr "" 3 3 "Project-Id-Version: Yandex Mail\n" 4 "POT-Creation-Date: 2015- 07-16 22:57+0300\n"5 "PO-Revision-Date: 2015- 07-16 22:57+0300\n"4 "POT-Creation-Date: 2015-10-16 00:18+0300\n" 5 "PO-Revision-Date: 2015-10-16 00:18+0300\n" 6 6 "Last-Translator: Gaiaz Iusipov <[email protected]>\n" 7 7 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 1.8. 2\n"12 "X-Generator: Poedit 1.8.5\n" 13 13 "X-Poedit-Basepath: ..\n" 14 14 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" … … 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 19 #: options.php:2 8 options.php:4919 #: options.php:27 options.php:48 20 20 msgid "Yandex Mail" 21 21 msgstr "Яндекс почта" 22 22 23 #: options.php:3 623 #: options.php:35 24 24 msgid "From Name" 25 25 msgstr "От кого" 26 26 27 #: options.php:3 827 #: options.php:37 28 28 msgid "Login" 29 29 msgstr "Логин" 30 30 31 #: options.php: 4031 #: options.php:39 32 32 msgid "Password" 33 33 msgstr "Пароль" 34 34 35 #: options.php:4 235 #: options.php:41 36 36 msgid "Send yourself a copy" 37 37 msgstr "Отправлять копию себе" 38 38 39 #: options.php:7 239 #: options.php:71 40 40 msgid "The mod_ssl module is required" 41 41 msgstr "Для работы требуется mod_ssl" 42 43 #: options.php:81 44 msgid "Settings" 45 msgstr "Настройки" 42 46 43 47 #~ msgid "Test Email" -
yandex-mail/trunk/options.php
r1200442 r1266935 13 13 add_action('admin_menu', [$this, 'admin_menu']); 14 14 add_action('admin_init', [$this, 'admin_init']); 15 if (!extension_loaded('openssl')) { 16 add_action('admin_notices', [$this, 'ssl_required_notice']); 17 } 15 extension_loaded('openssl') or add_action('admin_notices', [$this, 'ssl_required_notice']); 16 add_filter('plugin_action_links', [$this, 'action_links'], 10, 4); 18 17 } 19 18 … … 74 73 } 75 74 75 public function action_links($actions, $plugin_file) 76 { 77 if (false === strpos($plugin_file, self::DOMAIN)) { 78 return $actions; 79 } 80 $settings = '<a href="' . esc_url(menu_page_url('yandex-mail', false)) 81 . '">' . __('Settings', self::DOMAIN) . '</a>'; 82 array_unshift($actions, $settings); 83 return $actions; 84 } 85 76 86 } 77 87 -
yandex-mail/trunk/readme.txt
r1201549 r1266935 4 4 Tags: yandex, mail, email, smtp 5 5 Requires at least: 4.0 6 Tested up to: 4. 2.26 Tested up to: 4.3.1 7 7 Stable tag: trunk 8 8 License: MIT -
yandex-mail/trunk/yandex-mail.php
r1200445 r1266935 5 5 Plugin URI: http://gzep.ru/yandex-mail-wordpress-plugin/ 6 6 Description: This plugin gives you the easiest way to send emails through the Yandex SMTP server instead of PHP mail(). 7 Version: 1. 17 Version: 1.2 8 8 Author: Gaiaz Iusipov 9 9 Author URI: http://gzep.ru
Note: See TracChangeset
for help on using the changeset viewer.