Changeset 1161250
- Timestamp:
- 05/15/2015 03:01:27 PM (11 years ago)
- Location:
- osd-social-media-sharing
- Files:
-
- 19 added
- 3 edited
-
tags/3.5 (added)
-
tags/3.5/images (added)
-
tags/3.5/images/icon.png (added)
-
tags/3.5/images/icons.png (added)
-
tags/3.5/images/icons.svg (added)
-
tags/3.5/includes (added)
-
tags/3.5/includes/OSDSocialShare.php (added)
-
tags/3.5/includes/admin_js.js (added)
-
tags/3.5/includes/admin_style.css (added)
-
tags/3.5/includes/global_settings.php (added)
-
tags/3.5/includes/installation_actions.php (added)
-
tags/3.5/includes/js.php (added)
-
tags/3.5/includes/post_settings.php (added)
-
tags/3.5/includes/style.css (added)
-
tags/3.5/lang (added)
-
tags/3.5/osd_social_media_sharing.php (added)
-
tags/3.5/readme.txt (added)
-
tags/3.5/uninstall.php (added)
-
trunk/includes/OSDSocialShare.php (modified) (2 diffs)
-
trunk/lang (added)
-
trunk/osd_social_media_sharing.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
osd-social-media-sharing/trunk/includes/OSDSocialShare.php
r1092564 r1161250 57 57 $this->options = get_option("osd_social_share_options"); 58 58 $this->options = ($this->options == false) ? array() : $this->options; 59 60 // Multilingual 61 load_plugin_textdomain('osd-sms-domain', false, basename(dirname(__FILE__))."/lang/"); 59 62 60 63 // Populate the default services classes (this makes sure anything newly added to the service arrays will show up in updates) … … 160 163 foreach ($this->options["services"] as $platform => $link) { 161 164 $button_title = (isset($link['service-name'])) ? $link['service-name'] : ucfirst($platform); 162 $button_title = "Click to share on ".$button_title;165 $button_title = __("Click to share on ", "osd-sms-domain").$button_title; 163 166 $custom_url = (isset($link['url'])) ? $link['url'] : ''; 164 167 -
osd-social-media-sharing/trunk/osd_social_media_sharing.php
r1094595 r1161250 4 4 Plugin URI: http://outsidesource.com 5 5 Description: Add buttons to share any of your content on facebook, twitter, google plus, pinterest, email and more. 6 Version: 3. 4.16 Version: 3.5 7 7 Author: OSD Web Development Team 8 8 Author URI: http://outsidesource.com 9 Text Domain: osd-sms-domain 9 10 License: GPL2v2 10 11 */ -
osd-social-media-sharing/trunk/readme.txt
r1094595 r1161250 3 3 Tags: wordpress, social media, facebook, twitter, pinterest, linkedIn, google plus, google, email, osd, social media sharing, share buttons, sharing buttons, jetpack sharing, jetpack, custom sharing icons 4 4 Requires at least: 3.4 5 Tested up to: 4. 16 Stable tag: 3. 4.15 Tested up to: 4.2 6 Stable tag: 3.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 41 41 == Changelog == 42 43 = 3.5 = 44 * Small amount of multilingual support added 42 45 43 46 = 3.4.1 = … … 112 115 == Upgrade Notice == 113 116 117 = 3.5 = 118 * Small amount of multilingual support added 119 114 120 = 3.1 = 115 121 * Added some shortcodes to the custom url
Note: See TracChangeset
for help on using the changeset viewer.