Changeset 128147
- Timestamp:
- 06/21/2009 04:39:57 PM (17 years ago)
- Location:
- target-visitors
- Files:
-
- 2 edited
- 4 copied
-
tags/1.2.3 (copied) (copied from target-visitors/trunk)
-
tags/1.2.3/lang (copied) (copied from target-visitors/trunk/lang)
-
tags/1.2.3/readme.txt (copied) (copied from target-visitors/trunk/readme.txt) (3 diffs)
-
tags/1.2.3/wp-target-visitors.php (copied) (copied from target-visitors/trunk/wp-target-visitors.php) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-target-visitors.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
target-visitors/tags/1.2.3/readme.txt
r128046 r128147 5 5 Requires at least: 2.3.2 6 6 Tested up to: 2.8 7 Version: 1.2. 27 Version: 1.2.3 8 8 Last Updated: 2009-06-21 9 Stable tag: 1.2. 29 Stable tag: 1.2.3 10 10 11 11 Plugin shows a special message for users coming from search engines like Google, Yandex, MSN, Yahoo, etc. … … 25 25 Плагин показывает специальное сообщение (которые вы введете) для пользователей пришедших с поисковых систем Google, Yandex, Mail, Yahoo, Liveinternet, Rambler, Altavista, Msn. Найденные слова подствечиваются (см. скриншоты) 26 26 27 [Скачать русскую версию][]28 29 27 [Домашняя страница плагина][] 30 28 31 [Скачать русскую версию]:http://downloads.wordpress.org/plugin/target-visitors.1.2.2_ru.zip32 29 [Домашняя страница плагина]:http://www.getincss.ru/2008/07/13/wp-target-visitors/ 33 30 … … 67 64 == Changelog == 68 65 69 = 1.2. 2_ru=66 = 1.2.3 = 70 67 * Fixed russian lang. 71 68 -
target-visitors/tags/1.2.3/wp-target-visitors.php
r128046 r128147 5 5 Description: Plugin shows a special message for visitors coming from search engines: Google, Yandex, Mail, Yahoo, Liveinternet, Rambler, Altavista, Msn. 6 6 Author: Abanova Olga 7 Version: 1.2. 27 Version: 1.2.3 8 8 Author URI: http://www.getincss.ru 9 9 */ … … 47 47 add_option("text_code", $text_code); 48 48 add_option("autoset", $autoset); 49 endif; 49 endif; 50 51 $currentLocale = get_locale(); 52 53 if(!empty($currentLocale) && $currentLocale="ru_RU") { 54 $currentLocale="RU"; 55 56 $moFile = dirname(__FILE__) . "/lang/target-visitors_" . $currentLocale . ".mo"; 57 58 if(@file_exists($moFile) && is_readable($moFile)) load_textdomain('sitemap', $moFile); 59 60 } 50 61 51 62 add_action('wp_head','target_visitors_head'); -
target-visitors/trunk/readme.txt
r128046 r128147 5 5 Requires at least: 2.3.2 6 6 Tested up to: 2.8 7 Version: 1.2. 27 Version: 1.2.3 8 8 Last Updated: 2009-06-21 9 Stable tag: 1.2. 29 Stable tag: 1.2.3 10 10 11 11 Plugin shows a special message for users coming from search engines like Google, Yandex, MSN, Yahoo, etc. … … 25 25 Плагин показывает специальное сообщение (которые вы введете) для пользователей пришедших с поисковых систем Google, Yandex, Mail, Yahoo, Liveinternet, Rambler, Altavista, Msn. Найденные слова подствечиваются (см. скриншоты) 26 26 27 [Скачать русскую версию][]28 29 27 [Домашняя страница плагина][] 30 28 31 [Скачать русскую версию]:http://downloads.wordpress.org/plugin/target-visitors.1.2.2_ru.zip32 29 [Домашняя страница плагина]:http://www.getincss.ru/2008/07/13/wp-target-visitors/ 33 30 … … 67 64 == Changelog == 68 65 69 = 1.2. 2_ru=66 = 1.2.3 = 70 67 * Fixed russian lang. 71 68 -
target-visitors/trunk/wp-target-visitors.php
r128046 r128147 5 5 Description: Plugin shows a special message for visitors coming from search engines: Google, Yandex, Mail, Yahoo, Liveinternet, Rambler, Altavista, Msn. 6 6 Author: Abanova Olga 7 Version: 1.2. 27 Version: 1.2.3 8 8 Author URI: http://www.getincss.ru 9 9 */ … … 47 47 add_option("text_code", $text_code); 48 48 add_option("autoset", $autoset); 49 endif; 49 endif; 50 51 $currentLocale = get_locale(); 52 53 if(!empty($currentLocale) && $currentLocale="ru_RU") { 54 $currentLocale="RU"; 55 56 $moFile = dirname(__FILE__) . "/lang/target-visitors_" . $currentLocale . ".mo"; 57 58 if(@file_exists($moFile) && is_readable($moFile)) load_textdomain('sitemap', $moFile); 59 60 } 50 61 51 62 add_action('wp_head','target_visitors_head');
Note: See TracChangeset
for help on using the changeset viewer.