diff options
author | Matt Friedman <maf675@gmail.com> | 2011-09-25 19:09:29 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2011-09-27 11:10:43 -0700 |
commit | 81e8faecbcc4f8c22a1dafdefe848ac548a6c77a (patch) | |
tree | 1dad9c66c7c02b8aad72187574c29be3ca9ef80d | |
parent | d4fe81f8f0458b46b1bfe086c5a34af38e5af618 (diff) | |
download | forums-81e8faecbcc4f8c22a1dafdefe848ac548a6c77a.tar forums-81e8faecbcc4f8c22a1dafdefe848ac548a6c77a.tar.gz forums-81e8faecbcc4f8c22a1dafdefe848ac548a6c77a.tar.bz2 forums-81e8faecbcc4f8c22a1dafdefe848ac548a6c77a.tar.xz forums-81e8faecbcc4f8c22a1dafdefe848ac548a6c77a.zip |
[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
-rw-r--r-- | phpBB/language/en/acp/board.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php index 1bab87b37f..7a028b4064 100644 --- a/phpBB/language/en/acp/board.php +++ b/phpBB/language/en/acp/board.php @@ -552,10 +552,10 @@ $lang = array_merge($lang, array( // jQuery settings $lang = array_merge($lang, array( - 'JQUERY_HOST' => 'jQuery server', - '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_LOCAL' => 'Localhost', - 'JQUERY_HOST_GOOGLE' => 'Google AJAX API CDN', - 'JQUERY_HOST_JQUERY' => 'jQuery CDN', - 'JQUERY_HOST_MS' => 'Microsoft CDN', + 'JQUERY_HOST' => 'Load jQuery from your server or a hosted CDN', + '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' => 'Included with phpBB on my server', + 'JQUERY_HOST_GOOGLE' => 'Hosted CDN: Google AJAX API', + 'JQUERY_HOST_JQUERY' => 'Hosted CDN: jQuery', + 'JQUERY_HOST_MS' => 'Hosted CDN: Microsoft', )); |