Viewing file: forumrunner.php (4.1 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
*
* Forum Runner [English]
*
* @author Robert Johnston
*
* @package Forum Runner
* @version CVS/SVN: $Id: $
* @copyright (c) 2010 End of Time Studios, LLC
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
//
$lang = array_merge($lang, array(
'FR_SETTINGS' => 'Forum Runner Settings',
'FR_SETTINGS_EXPLAIN' => 'This page contains all the settings for the Forum Runner module.',
'FR_PROMPT' => 'Enable Forum Runner Prompt?',
'FR_PROMPT_EXPLAIN' => 'Check this box if you would like Forum Runner to send your users browsing through their mobile browsers on supported devices a one-time message notifying them about Forum Runner support, or No to disable this. If enabled and the user cancels the prompt, they will not be prompted again.',
'FR_EXCLUDE_FORUMS' => 'Exclude Forums From Forum Runner',
'FR_EXCLUDE_FORUMS_EXPLAIN' => 'Forums selected here will <b>NOT BE SENT</b> to your users running Forum Runner. Note that selecting a forum with children will hide child forums even if they aren\'t selected in this list. Select/Deselect multiple forums by holding CTRL and clicking.',
'FR_NAVBAR_BACKGROUND' => 'Background Color of Mobile App\'s Header',
'FR_NAVBAR_BACKGROUND_EXPLAIN' => 'Choose a color for the background of the headers when your users browse into your app. Leave empty for the default color. This *MUST* be in the format of "#rrggbb".',
'FR_SIGNATURES' => 'Allow Forum Runner Signatures?',
'FR_SIGNATURES_EXPLAIN' => 'Allow "Posted from my using Forum Runner" to be appended to posts from your users who post from Forum Runner?',
'FR_GOOGLEADS_SETTINGS' => 'Google AdSense or AdMob Settings',
'FR_GOOGLEADS' => 'Enable Google AdSense or AdMob Integration?',
'FR_GOOGLEADS_EXPLAIN' => 'Check this box if you would like Forum Runner to embed Google AdSense or AdMob ads into threads on your user\'s mobile devices running the app. You will need to <a target="_new" href="http://www.forumrunner.net/forum/showthread.php?t=29">follow these instructions</a> and fill in the following options to get this running.',
'FR_GOOGLEADS_THREADLIST' => 'Place Google or AdMob Ad In Thread List?',
'FR_GOOGLEADS_THREADLIST_EXPLAIN' => 'Check this box if you would like Forum Runner to embed a Google AdSense or AdMob ad in the thread list (above the "Load More Threads" button)',
'FR_GOOGLEADS_TOPTHREAD' => 'Place Google or AdMob Ad At Top Of Thread?',
'FR_GOOGLEADS_TOPTHREAD_EXPLAIN' => 'Check this box if you would like Forum Runner to embed a Google AdSense or AdMob ad at the top of the thread page (below the first post)',
'FR_GOOGLEADS_BOTTOMTHREAD' => 'Place Google or AdMob Ad At Bottom Of Thread?',
'FR_GOOGLEADS_BOTTOMTHREAD_EXPLAIN' => 'Check this box if you would like Forum Runner to embed a Google AdSense or AdMob ad at the bottom of the thread page (above the therad summary)',
'FR_GOOGLEADS_USERGROUPS' => 'Groups to send Google Ads To',
'FR_GOOGLEADS_USERGROUPS_EXPLAIN' => 'The groups selected here will have Google Ads displayed to them. Select/Deselect multiple groups by holding CTRL and clicking.',
'FR_GOOGLEADS_JAVASCRIPT' => 'Google AdSense or AdMob Mobile Javascript',
'FR_GOOGLEADS_JAVASCRIPT_EXPLAIN' => 'Enter Google AdSense or AdMob Mobile Javascript Code here. See <a target="_new" href="http://www.forumrunner.net/forum/showthread.php?t=29">this post</a> for full instructions on setting up Google AdSense or AdMob)',
));
?>
|