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