| 1 |
<?php |
| 2 |
/** |
| 3 |
* Translatable Strings for the "Friends Debugger" 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-debugger |
| 8 |
* |
| 9 |
* @package Friends |
| 10 |
*/ |
| 11 |
|
| 12 |
// Name of the Friends Debugger plugin. |
| 13 |
__( 'Friends Debugger', 'friends' ); |
| 14 |
// Description of the Friends Debugger plugin. |
| 15 |
__( 'Activates a debug mode for the Friends plugin and outputs some debug data.', 'friends' ); |
| 16 |
// translators: %s is a date. |
| 17 |
__( 'Will be fetched again at %s.', 'friends' ); |
| 18 |
__( 'Preview Notification E-Mail', 'friends' ); |
| 19 |
__( 'Extract Tags', 'friends' ); |
| 20 |
__( 'MIME Type', 'friends' ); |
| 21 |
__( 'Feed Type', 'friends' ); |
| 22 |
|