| 1 |
<?php |
| 2 |
/** |
| 3 |
* Translatable Strings for the "Friends Parser RSS Bridge" 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-parser-rss-bridge |
| 8 |
* |
| 9 |
* @package Friends |
| 10 |
*/ |
| 11 |
|
| 12 |
// Name of the Friends Parser RSS Bridge plugin. |
| 13 |
__( 'Friends Parser RSS Bridge', 'friends' ); |
| 14 |
// Description of the Friends Parser RSS Bridge plugin. |
| 15 |
__( 'Provides the parsing capabilities of RSS Bridge.', 'friends' ); |
| 16 |
__( 'Unknown Parser', 'friends' ); |
| 17 |
// translators: %s is a URL. |
| 18 |
__( 'No suitable parser available for %s.', 'friends' ); |
| 19 |
// translators: 1: is a URL, 2: a Parser name. |
| 20 |
__( 'Error analyzing %1$s with %2$s.', 'friends' ); |
| 21 |
__( 'Default Confidence', 'friends' ); |
| 22 |
__( 'If you set this to a higher value, this parser will take precedence over others that also say they can handle the URL.', 'friends' ); |
| 23 |
__( 'Save Changes', 'friends' ); |
| 24 |
// translators: %s: URL to the Friends Plugin page on WordPress.org. |
| 25 |
__( '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' ); |
| 26 |
// translators: %s: URL to the RSS Bridge. |
| 27 |
__( 'This parser is powered by the open source project <a href=%s>RSS Bridge</a> and provides support to parse the following properties:', 'friends' ); |
| 28 |
__( 'RSS Bridge Tester', 'friends' ); |
| 29 |
__( 'Here you can test what the parser makes of the URL you give it. ', 'friends' ); |
| 30 |
__( 'Enter a URL:', 'friends' ); |
| 31 |
_x( 'Parse Now', 'button', 'friends' ); |
| 32 |
// translators: %s is a URL to be displayed verbatim. |
| 33 |
__( 'Parsing Result for %s', 'friends' ); |
| 34 |
__( 'This feed doesn\'t contain any entries. There might be a problem parsing the feed.', 'friends' ); |
| 35 |
__( 'Parser Details', 'friends' ); |
| 36 |
// translators: %s is the name of a Bridge = specific parser. |
| 37 |
__( 'Using Bridge: %s', 'friends' ); |
| 38 |
// translators: %s is an explanation for the Bridge = specific parser. |
| 39 |
__( 'Bridge Description: %s', 'friends' ); |
| 40 |
__( 'Items in the Feed', 'friends' ); |
| 41 |
__( 'RSS Bridge', 'friends' ); |
| 42 |
__( 'Friends', 'friends' ); |
| 43 |
__( 'About', 'friends' ); |
| 44 |
|