| 1 |
<?php |
| 2 |
/** |
| 3 |
* Translatable Strings for the "Friends Autoresolve Links" Plugin |
| 4 |
* |
| 5 |
* Since the plugins are self-hosted, no language packs are available. |
| 6 |
* |
| 7 |
* You can get this plugin at https://github.com/akirk/friends-autoresolve-links |
| 8 |
* |
| 9 |
* @package Friends |
| 10 |
*/ |
| 11 |
|
| 12 |
// Name of the Friends Autoresolve Links plugin. |
| 13 |
__( 'Friends Autoresolve Links', 'friends' ); |
| 14 |
// Description of the Friends Autoresolve Links plugin. |
| 15 |
__( 'Experimental plugin to transform plaintext links of incoming content (especially t.co shortlinks) into rich(er) links.', 'friends' ); |
| 16 |
__( 'Allow iframes', 'friends' ); |
| 17 |
__( 'Use iframes to embed remote content (e.g. Youtube videos).', 'friends' ); |
| 18 |
// translators: Placeholder for a field where a token can be entered. |
| 19 |
__( 'Leave empty if you don\'t have one', 'friends' ); |
| 20 |
__( 'Save Changes', 'friends' ); |
| 21 |
// translators: %s: URL to the Friends Plugin page on WordPress.org. |
| 22 |
__( 'The Friends plugin is all about connecting with friends and news. Learn more on its <a href=%s>plugin page on WordPress.org</a>.', 'friends' ); |
| 23 |
// translators: %s: URL to the Embed library. |
| 24 |
__( 'This plugin is largely powered by the open source project <a href=%s>Embed</a> and provides support to resolve links to the following domains:', 'friends' ); |
| 25 |
__( 'Re-resolve', 'friends' ); |
| 26 |
__( 'Autoresolve Links', 'friends' ); |
| 27 |
__( 'Friends', 'friends' ); |
| 28 |
__( 'About', 'friends' ); |
| 29 |
|