[ticket/10390] Reword the language for jQuery host/server options

Reword some of the language used for the description and pull-down options
to try and make it more clear to users that they have the option to use
jQuery from their own server with the copy included with phpBB, or from one
of the remote CDN servers.

PHPBB3-10390
This commit is contained in:
Matt Friedman 2011-09-25 19:09:29 -07:00
parent d4fe81f8f0
commit 81e8faecbc

View file

@ -552,10 +552,10 @@ $lang = array_merge($lang, array(
// jQuery settings // jQuery settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'JQUERY_HOST' => 'jQuery server', 'JQUERY_HOST' => 'Load jQuery from your server or a hosted CDN',
'JQUERY_HOST_EXPLAIN' => 'Load jQuery from your local server, or choose a remote copy hosted on a CDN (Content Delivery Network). If the CDN fails, phpBB will fall back to the local copy.', 'JQUERY_HOST_EXPLAIN' => 'Load jQuery from the copy included with phpBB on your local server, or choose a remote copy hosted on a CDN (Content Delivery Network). If the CDN fails, phpBB will fall back to the copy included with phpBB.',
'JQUERY_HOST_LOCAL' => 'Localhost', 'JQUERY_HOST_LOCAL' => 'Included with phpBB on my server',
'JQUERY_HOST_GOOGLE' => 'Google AJAX API CDN', 'JQUERY_HOST_GOOGLE' => 'Hosted CDN: Google AJAX API',
'JQUERY_HOST_JQUERY' => 'jQuery CDN', 'JQUERY_HOST_JQUERY' => 'Hosted CDN: jQuery',
'JQUERY_HOST_MS' => 'Microsoft CDN', 'JQUERY_HOST_MS' => 'Hosted CDN: Microsoft',
)); ));