diff options
Diffstat (limited to 'phpBB/language/en')
18 files changed, 1876 insertions, 31 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index db60cbf227..84944fa994 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -876,5 +876,19 @@ $lang = array_merge($lang, array( 'default_dateformat' => 'D M d, Y g:i a', // Mon Jan 01, 2007 1:37 pm )); - +// www.phpBB-SEO.com SEO TOOLKIT BEGIN - TITLE +$lang['Page'] = 'Page '; +// www.phpBB-SEO.com SEO TOOLKIT END - TITLE +// www.phpBB-SEO.com SEO TOOLKIT BEGIN -> GYM Sitemaps +$lang = array_merge($lang, array( + 'GYM_LINKS' => 'Links', + 'GYM_LINK' => 'Link', + 'GYM_RSS_SLIDE_START' => 'Start scroller', + 'GYM_RSS_SLIDE_STOP' => 'Stop scroller', + 'GYM_RSS_SOURCE' => 'Source', +)); +// www.phpBB-SEO.com SEO TOOLKIT END -> GYM Sitemaps +// www.phpBB-SEO.com SEO TOOLKIT BEGIN - Related Topics +$lang['RELATED_TOPICS'] = 'Related topics'; +// www.phpBB-SEO.com SEO TOOLKIT END - Related Topics ?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/google_forum.php b/phpBB/language/en/gym_sitemaps/acp/google_forum.php new file mode 100644 index 0000000000..c45db7c33d --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/google_forum.php @@ -0,0 +1,64 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: google_forum.php 112 2009-09-30 17:21:34Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* google_forum [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'GOOGLE_FORUM' => 'Forum sitemaps', + 'GOOGLE_FORUM_EXPLAIN' => 'These are the settings for the forum Google sitemap module.<br/> Some are overridden depending on the Google sitemaps and main override settings.', + 'GOOGLE_FORUM_SETTINGS' => 'Forum sitemaps settings', + 'GOOGLE_FORUM_SETTINGS_EXPLAIN' => 'The following settings are specific to the forum Google sitemap module.', + 'GOOGLE_FORUM_STICKY_PRIORITY' => 'Sticky Priority', + 'GOOGLE_FORUM_STICKY_PRIORITY_EXPLAIN' => 'Sticky Priority (must be a number between 0.0 & 1.0 inclusive).', + 'GOOGLE_FORUM_ANNOUCE_PRIORITY' => 'Announcement Priority', + 'GOOGLE_FORUM_ANNOUCE_PRIORITY_EXPLAIN' => 'Announcement Priority (must be a number between 0.0 & 1.0 inclusive).', + 'GOOGLE_FORUM_GLOBAL_PRIORITY' => 'Global Announcement Priority', + 'GOOGLE_FORUM_GLOBAL_PRIORITY_EXPLAIN' => 'Global Announcement Priority (must be a number between 0.0 & 1.0 inclusive).', + 'GOOGLE_FORUM_EXCLUDE' => 'Forum Exclusions', + 'GOOGLE_FORUM_EXCLUDE_EXPLAIN' => 'You can here exclude one or several forum from the sitemap listing.<br /><u>Note :</u> If this field is left empty, all public forums will be listed.', + // Reset settings + 'GOOGLE_FORUM_RESET' => 'Forum sitemap module', + 'GOOGLE_FORUM_RESET_EXPLAIN' => 'Reset all the forum sitemap module options to default values.', + 'GOOGLE_FORUM_MAIN_RESET' => 'Forums sitemaps main', + 'GOOGLE_FORUM_MAIN_RESET_EXPLAIN' => 'Reset to default all the options in the "Forums sitemaps" (main) tab of the forum sitemap module.', + 'GOOGLE_FORUM_CACHE_RESET' => 'Forums sitemaps cache', + 'GOOGLE_FORUM_CACHE_RESET_EXPLAIN' => 'Reset to default all the caching options of the forum sitemap module.', + 'GOOGLE_FORUM_MODREWRITE_RESET' => 'Forums sitemaps URL rewriting', + 'GOOGLE_FORUM_MODREWRITE_RESET_EXPLAIN' => 'Reset to default all the URL rewriting options of the forum sitemap module.', + 'GOOGLE_FORUM_GZIP_RESET' => 'Forums sitemaps gunzip', + 'GOOGLE_FORUM_GZIP_RESET_EXPLAIN' => 'Reset to default all the gunzip options of the forum sitemap module.', + 'GOOGLE_FORUM_LIMIT_RESET' => 'Forums sitemaps limits', + 'GOOGLE_FORUM_LIMIT_RESET_EXPLAIN' => 'Reset to default all the limit options of the forum sitemap module.', + 'GOOGLE_FORUM_SORT_RESET' => 'Forums sitemaps Sorting', + 'GOOGLE_FORUM_SORT_RESET_EXPLAIN' => 'Reset to default all the sorting options of the forum sitemap module.', + 'GOOGLE_FORUM_PAGINATION_RESET' => 'Forums sitemaps pagination', + 'GOOGLE_FORUM_PAGINATION_RESET_EXPLAIN' => 'Reset to default all the pagination options of the forum sitemap module.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/google_txt.php b/phpBB/language/en/gym_sitemaps/acp/google_txt.php new file mode 100644 index 0000000000..ebcfb797c2 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/google_txt.php @@ -0,0 +1,57 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: google_txt.php 204 2009-12-20 12:04:51Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* google_txt [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'GOOGLE_TXT' => 'TXT Sitemap', + 'GOOGLE_TXT_EXPLAIN' => 'These are the parameter for the TXT Google sitemap module. It can fully integrate URL list from a text file (on url per line) in GYM sitemaps and take advantage of all the module’s features such as XSLt styling and caching.<br/> Some settings can be overridden depending on the Google sitemaps and main override settings.<br/>Each texte file added in the gym_sitemaps/sources/ directory will be taken into account once you will have cleared the module ACP cache, using the maintenance link above.<br/> Each URL list texte file must be composed of one full URL per line and will have to follow a basic pattern for file naming : <b>google_</b>txt_file_name<b>.txt</b>.<br />An entry will be created in the SitemapIndex with URL<b>example.com/sitemap.php?txt=txt_file_name</b> and <b>example.com/txt-txt_file_name.xml</b> when url rewritten.<br/> The name of the source file must must use alphanumerical characters (0-9a-z) plus both separators "_" and "-".<br/><u style="color:red;">Note :</u><br/> It is advised to cache this module’s sitemaps to prevent useless parsing of potentially big text files.', + // Main + 'GOOGLE_TXT_CONFIG' => 'TXT Sitemap settings', + 'GOOGLE_TXT_CONFIG_EXPLAIN' => 'Some settings can be overridden depending on the Google sitemaps and main override settings.', + 'GOOGLE_TXT_RANDOMIZE' => 'Randomize', + 'GOOGLE_TXT_RANDOMIZE_EXPLAIN' => 'You can randomize URLs grabbed from the text file. Changing the order on a regular basis may help for crawling a bit. This option is as well handy for example when you would limit the urls to 1000 for this module and use text source files with 5000 urls, in such cases all the 5000 URLs will be regularly displayed on the corresponding sitemap.', + 'GOOGLE_TXT_UNIQUE' => 'Check duplicate', + 'GOOGLE_TXT_UNIQUE_EXPLAIN' => 'Activate to make sure that if some URL appear more than one time in the text source, it will only display once in the sitemap.', + 'GOOGLE_TXT_FORCE_LASTMOD' => 'Last modification', + 'GOOGLE_TXT_FORCE_LASTMOD_EXPLAIN' => 'You can force a last modification time based on the cache duration cycle (even if cache is not activated) for all URLs in the sitemap. The module will as well compute priorities and change frequencies based on this last mod time. By default, no lastmod tag is added.', + // Reset settings + 'GOOGLE_TXT_RESET' => 'TXT Sitemaps Module', + 'GOOGLE_TXT_RESET_EXPLAIN' => 'Reset to default all the sorting options of the TXT Sitemaps module.', + 'GOOGLE_TXT_MAIN_RESET' => 'TXT Sitemap Settings', + 'GOOGLE_TXT_MAIN_RESET_EXPLAIN' => 'Reset to default all the options in the "TXT Sitemap settings" (main) tab of the TXT Sitemap module.', + 'GOOGLE_TXT_CACHE_RESET' => 'TXT Sitemap Cache', + 'GOOGLE_TXT_CACHE_RESET_EXPLAIN' => 'Reset to default all the caching options of the TXT Sitemap module.', + 'GOOGLE_TXT_GZIP_RESET' => 'TXT Sitemap Gunzip', + 'GOOGLE_TXT_GZIP_RESET_EXPLAIN' => 'Reset to default all the Gunzip options of the TXT Sitemap module.', + 'GOOGLE_TXT_LIMIT_RESET' => 'TXT Sitemap Limit', + 'GOOGLE_TXT_LIMIT_RESET_EXPLAIN' => 'Reset to default all the Limit options of the TXT Sitemap module.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/google_xml.php b/phpBB/language/en/gym_sitemaps/acp/google_xml.php new file mode 100644 index 0000000000..6994645dec --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/google_xml.php @@ -0,0 +1,59 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: google_xml.php 204 2009-12-20 12:04:51Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* google_xml [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'GOOGLE_XML' => 'XML Sitemap', + 'GOOGLE_XML_EXPLAIN' => 'These are the parameter for the XML Google sitemap module. It can fully integrate URL list from a xml file (on url per line) in GYM sitemaps and take advantage of all the module’s features such as XSLt styling and caching.<br/> Some settings can be overridden depending on the Google sitemaps and main override settings.<br/>Each xml file added in the gym_sitemaps/sources/ directory will be taken into account once you will have cleared the module ACP cache, using the maintenance link above.<br/> Each URL list xml file must be composed of one full URL per line and will have to follow a basic pattern for file naming : <b>google_</b>xml_file_name<b>.xml</b>.<br />An entry will be created in the SitemapIndex with URL <b>example.com/sitemap.php?xml=xml_file_name</b> or <b>example.com/xml-xml_file_name.xml</b> when url rewritten.<br/> The name of the source file must must use alphanumerical characters (0-9a-z) plus both separators "_" and "-".<p>You can as well use a full sitemap URL generated by an external application, by configuring the gym_sitemaps/sources/xml_google_external.php file (Read comments in the file for more details).</p><u style="color:red;">Note :</u><br/> It is advised to cache this module’s sitemaps to prevent useless parsing of potentially big xml files.', + // Main + 'GOOGLE_XML_CONFIG' => 'XML Sitemap settings', + 'GOOGLE_XML_CONFIG_EXPLAIN' => 'Some settings can be overridden depending on the Google sitemaps and main override settings.', + 'GOOGLE_XML_RANDOMIZE' => 'Randomize', + 'GOOGLE_XML_RANDOMIZE_EXPLAIN' => 'You can randomize URLs grabbed from the xml file. Changing the order on a regular basis may help for crawling a bit. This option is as well handy for example when you would limit the urls to 1000 for this module and use xml source files with 5000 urls, in such cases all the 5000 URLs will be regularly displayed on the corresponding sitemap.<br/><u>Note :</u><br/>This option requires a full parsing of the source file, it is advised to use it when caching is activated.', + 'GOOGLE_XML_UNIQUE' => 'Check duplicate', + 'GOOGLE_XML_UNIQUE_EXPLAIN' => 'Activate to make sure that if some URL appear more than one time in the xml source, it will only display once in the sitemap.<br/><u>Note :</u><br/>This option requires a full parsing of the source file, it is advised to use it when caching is activated.', + 'GOOGLE_XML_FORCE_LASTMOD' => 'Last modification', + 'GOOGLE_XML_FORCE_LASTMOD_EXPLAIN' => 'You can force a last modification time based on the cache duration cycle (even if cache is not activated) for all URLs in the sitemap. The module will as well compute priorities and change frequencies based on this last mod time. Else the eventual lastmod, changefreq and priority tags provided in the xml source file will be used, or no lastmod tags in case the source file does not provide with any.<br/><u>Note :</u><br/>This option requires a full parsing of the source file, it is advised to use it when caching is activated.', + 'GOOGLE_XML_FORCE_LIMIT' => 'Forcer limit', + 'GOOGLE_XML_FORCE_LIMIT_EXPLAIN' => 'You can here make sure that no more than the maximum amount of URL set will be displayed in the sitemap.<br/><u>Note :</u><br/>This option requires a full parsing of the source file, it is advised to use it when caching is activated.', + // Reset settings + 'GOOGLE_XML_RESET' => 'XML Sitemaps Module', + 'GOOGLE_XML_RESET_EXPLAIN' => 'Reset to default all the options in the "XML Sitemap settings" (main) tab of the XML Sitemap module.', + 'GOOGLE_XML_MAIN_RESET' => 'XML Sitemap Settings', + 'GOOGLE_XML_MAIN_RESET_EXPLAIN' => 'Reset to default all the options in the "XML Sitemap settings" (main) tab of the XML Sitemap module.', + 'GOOGLE_XML_CACHE_RESET' => 'XML Sitemaps Cache', + 'GOOGLE_XML_CACHE_RESET_EXPLAIN' => 'Reset to default all the caching options of the XML Sitemap module.', + 'GOOGLE_XML_GZIP_RESET' => 'XML Sitemaps Gunzip', + 'GOOGLE_XML_GZIP_RESET_EXPLAIN' => 'Reset to default all the Gunzip options of the XML Sitemap module.', + 'GOOGLE_XML_LIMIT_RESET' => 'XML Sitemap Limit', + 'GOOGLE_XML_LIMIT_RESET_EXPLAIN' => 'Reset to default all the Limit options of the XML Sitemap module.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/gym_common.php b/phpBB/language/en/gym_sitemaps/acp/gym_common.php new file mode 100644 index 0000000000..4bf98636cc --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/gym_common.php @@ -0,0 +1,263 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_common.php 279 2010-11-26 09:19:15Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_common [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + // Main + 'ALL' => 'All', + 'MAIN' => 'GYM Sitemaps', + 'MAIN_MAIN_RESET' => 'GYM sitemaps main options', + 'MAIN_MAIN_RESET_EXPLAIN' => 'Reset all the GYM main options to default values.', + // Linking setup + 'GYM_LINKS_ACTIVATION' => 'Forum Linking', + 'GYM_LINKS_MAIN' => 'Main links', + 'GYM_LINKS_MAIN_EXPLAIN' => 'Display or not links to main GYM page in footer : SitemapIndex, main RSS feed and feed list page, main map and new page.', + 'GYM_LINKS_INDEX' => 'Links on index', + 'GYM_LINKS_INDEX_EXPLAIN' => 'Display or not links to the available GYM pages for each forum on the forum index. These links are added below the forum descriptions.', + 'GYM_LINKS_CAT' => 'Links on forum page', + 'GYM_LINKS_CAT_EXPLAIN' => 'Display or not links to the available GYM pages on a forum page. These links are added below the forum title.', + // Google sitemaps + 'GOOGLE' => 'Google', + 'GOOGLE_URL' => 'Google Sitemaps URL', + // Reset settings + 'GOOGLE_MAIN_RESET' => 'Google Sitemap main options', + 'GOOGLE_MAIN_RESET_EXPLAIN' => 'Reset all the Google Sitemap main options to default values.', + // RSS feeds + 'RSS' => 'RSS', + 'RSS_URL' => 'RSS feed URL', + 'RSS_ALTERNATE' => 'RSS alternate links', + 'RSS_ALTERNATE_EXPLAIN' => 'Display or not RSS alternate links in browsers navigation bar', + 'RSS_LINKING_TYPE' => 'RSS Linking Type', + 'RSS_LINKING_TYPE_EXPLAIN' => 'The type of feed to display among the forum pages.<br/>Can be set to :<br/><b>• News Feeds with or without content</b><br/>Items are displayed in the creation date order, with or without content,<br/><b>• Regular Feeds with or without content</b><br/>Items are displayed in the last activity date order, with or without content.<br/>This only affects the link displayed, not the feeds actually available.', + 'RSS_LINKING_NEWS' => 'News Feeds', + 'RSS_LINKING_NEWS_DIGEST' => 'News Feeds with content', + 'RSS_LINKING_REGULAR' => 'Regular Feeds', + 'RSS_LINKING_REGULAR_DIGEST' => 'Regular Feeds with content', + // Reset settings + 'RSS_MAIN_RESET' => 'RSS main options', + 'RSS_MAIN_RESET_EXPLAIN' => 'Reset all the RSS main options to default values.', + 'YAHOO' => 'Yahoo', + // HTML + 'HTML_MAIN_RESET' => 'Global HTML options', + 'HTML_MAIN_RESET_EXPLAIN' => 'Reset all the HTML maps and news main options to default values.', + 'HTML' => 'Html', + 'HTML_URL' => 'HTML URL', + + // GYM authorisation array + 'GYM_AUTH_ADMIN' => 'Admin', + 'GYM_AUTH_GLOBALMOD' => 'Global moderators', + 'GYM_AUTH_REG' => 'Logged in', + 'GYM_AUTH_GUEST' => 'Guests', + 'GYM_AUTH_ALL' => 'All', + 'GYM_AUTH_NONE' => 'None', + // XSLT + 'GYM_STYLE' => 'Styling', + + // Cache status + 'SEO_CACHE_FILE_TITLE' => 'Cache Status', + 'SEO_CACHE_STATUS' => 'File cache is configured at: <b>%s</b>', + 'SEO_CACHE_FOUND' => 'File cache found.', + 'SEO_CACHE_NOT_FOUND' => 'File cache was not found.', + 'SEO_CACHE_WRITABLE' => 'File cache is writeable.', + 'SEO_CACHE_UNWRITABLE' => 'File cache is <b>not</b> writeable. Please CHMOD the cache folder to 0777.', + + // Mod Rewrite type + 'ACP_SEO_SIMPLE' => 'Simple', + 'ACP_SEO_MIXED' => 'Intermediate', + 'ACP_SEO_ADVANCED' => 'Advanced', + 'ACP_PHPBB_SEO_VERSION' => 'Version', + 'ACP_SEO_SUPPORT_FORUM' => 'Support Forum', + 'ACP_SEO_RELEASE_THREAD' => 'Subject to availability', + 'ACP_SEO_REGISTER_TITLE' => 'Register', + 'ACP_SEO_REGISTER_UPDATE' => 'notified about updates', + 'ACP_SEO_REGISTER_MSG' => 'You may want to %1$s to be %2$s', + + // Maintenance + 'GYM_MAINTENANCE' => 'Maintenance', + 'GYM_MODULE_MAINTENANCE' => '%1$s maintenance', + 'GYM_MODULE_MAINTENANCE_EXPLAIN' => 'Here you can manage the cached files used by the %1$s modules.<br/> There are two types: the one used to store the data outputted on the public pages, and the ones used to build each module’s ACP. You can delete the module’s ACP cache if you check the clear cache option; default is clearing the content cache for the selected modules.', + 'GYM_CLEAR_CACHE' => 'Clear %1$s cache', + 'GYM_CLEAR_CACHE_EXPLAIN' => 'You can here clear the cached files for the %1$s module. These cached files contains the data used to build the %1$s .<br/>It can be useful if you want to force the cache update.', + 'GYM_CLEAR_ACP_CACHE' => 'Clear %1$s ACP', + 'GYM_CLEAR_ACP_CACHE_EXPLAIN' => 'You can choose to clear the %1$s ACP cached setup instead. These cached files contains the data used to build the %1$s ACP.<br/>It can be useful to activate new options that may have been added to the modules of this type.', + 'GYM_CACHE_CLEARED' => 'Clear cache success in : ', + 'GYM_CACHE_NOT_CLEARED' => 'An error occurred while clearing the cache, please check the folder permissions (CHMOD 0666 or 0777).<br/>The folder currently set up for caching is : ', + 'GYM_FILE_CLEARED' => 'File(s) erased: ', + 'GYM_CACHE_ACCESSED' => 'The caching folder was properly accessed, but no files were deleted: ', + 'MODULE_CACHE_CLEARED' => 'ACP module cache cleared with success, if you just uploaded a module, it’s ACP will show up now.', + + // set defaults + 'GYM_SETTINGS' => 'Settings', + 'GYM_RESET_ALL' => 'Reset All', + 'GYM_RESET_ALL_EXPLAIN' => 'If you check the option, all the above options sets will be reset to default.', + 'GYM_RESET' => 'Reset %1$s config', + 'GYM_RESET_EXPLAIN' => 'Below you can reset %1$s modules config, either a whole module at once or only a given set of module config.', + + 'GYM_INSTALL' => 'Install', + 'GYM_MODULE_INSTALL' => 'Install %1$s module', + 'GYM_MODULE_INSTALL_EXPLAIN' => 'Below you can activate / deactivate the %1$s module.<br/>If you just uploaded a module, you need to activate it before you will be able to use it.<br/>If you cannot see new module, try clearing the ACP module’s cache in the maintenance page.', + + // Titles + 'GYM_MAIN' => 'GYM Sitemaps Settings', + 'GYM_MAIN_EXPLAIN' => 'These are the setting common to all type of output and to all modules.<br/> They can be applied to all type of outputs (html, RSS, Google sitemaps, Yahoo! url list) and/or to all modules depending on your override settings.', + 'MAIN_MAIN' => 'GYM Sitemaps Overview', + 'MAIN_MAIN_EXPLAIN' => 'GYM sitemaps is a very flexible and Search Engine Optimized phpBB module. It will allow you to build Google sitemaps, RSS 2.0 feeds, Yahoo! URL lists and html sitemaps for your forum as well as for any part of your website thanks to its modularity.<br/><br/> Each type (Google, RSS, html & Yahoo) can grab items to list from several applications installed on your site (forum, album etc ...) using a dedicated module.<br/>You can activate / deactivate modules using the install link in each type ACP, each module has its own configuration pages.<br/><br/>Make sure you check the %1$s, support is provided in the %2$s.<br/>General SEO support and discussion is as well provided on %3$s<br/>%4$s<br/>Enjoy ;-)', + + 'GYM_GOOGLE' => 'Google Sitemaps', + 'GYM_GOOGLE_EXPLAIN' => 'These are the setting common to all Google sitemaps modules (forum, custom etc ...).<br/> They can be applied to all Google sitemaps modules depending on your override settings for this type of output and the main ones.', + 'GYM_RSS' => 'RSS feeds', + 'GYM_RSS_EXPLAIN' => 'These are the setting common to all RSS feeds modules (forum, custom etc ...).<br/> They can be applied to all RSS feeds modules depending on your override settings for this type of output and the main ones.', + 'GYM_HTML' => 'HTML Pages', + 'GYM_HTML_EXPLAIN' => 'These are the setting common to all HTML modules (forum, custom etc ...).<br/> They can be applied to all HTML modules depending on your override settings for this type of output and the main ones.', + 'GYM_MODULES_INSTALLED' => 'Active module(s)', + 'GYM_MODULES_UNINSTALLED' => 'Non active module(s)', + + // Overrides + 'GYM_OVERRIDE_GLOBAL' => 'Global', + 'GYM_OVERRIDE_OTYPE' => 'Output Type', + 'GYM_OVERRIDE_MODULE' => 'Module', + + // override messages + 'GYM_OVERRIDED_GLOBAL' => 'This option is currently overridden at the top level (Main configuration)', + 'GYM_OVERRIDED_OTYPE' => 'This option is currently overridden at the type level', + 'GYM_OVERRIDED_MODULE' => 'This option is currently overridden at the module level', + 'GYM_OVERRIDED_VALUE' => 'The value currently taken into account is : ', + 'GYM_OVERRIDED_VALUE_NOTHING' => 'nothing', + 'GYM_COULD_OVERRIDE' => 'This option could be overridden but currently isn’t.', + + // Overridable / common options + 'GYM_CACHE' => 'Cache', + 'GYM_CACHE_EXPLAIN' => 'Here you can set up various caching options. Remember that these settings may be overridden depending on your override settings.', + 'GYM_MOD_SINCE' => 'Activate Modified Since', + 'GYM_MOD_SINCE_EXPLAIN' => 'The module will ask the browser if it already has an up-to-date version of the page in its cache before resending the content.<br /><u>NOTE :</u> This option will concern all types of output.', + 'GYM_CACHE_ON' => 'Activate Caching', + 'GYM_CACHE_ON_EXPLAIN' => 'You can activate / deactivate caching for this module.', + 'GYM_CACHE_FORCE_GZIP' => 'Force Cache compression', + 'GYM_CACHE_FORCE_GZIP_EXPLAIN' => 'Allow you to force gunzip compression for cached files despite the use of gunzip. This can help out a little if you miss web space, but will be a bit more work for the server to uncompress the file before it is sent to the browser.', + 'GYM_CACHE_MAX_AGE' => 'Cache duration', + 'GYM_CACHE_MAX_AGE_EXPLAIN' => 'Maximum amount of hours a cached file will be used before it will be updated. Each cached file will be updated every time someone will browse it after this duration was exceeded when auto regen is on. If not, the cache will only be updated upon demand in ACP.', + 'GYM_CACHE_AUTO_REGEN' => 'Cache auto update', + 'GYM_CACHE_AUTO_REGEN_EXPLAIN' => 'If you activate the cache auto update, outputted lists will be updated once the cache will have expired, if not, you will have to manually clear your cached files in the maintenance link above to see new URLs in your lists.', + 'GYM_SHOWSTATS' => 'Cache Statistics', + 'GYM_SHOWSTATS_EXPLAIN' => 'Output or not the generation statistics in the source code.<br /><u>NOTE :</u> The duration is the time needed to build the page. This step is not repeated when writing from cache.', + 'GYM_CRITP_CACHE' => 'Encode cache filenames', + 'GYM_CRITP_CACHE_EXPLAIN' => 'Encrypt the cache file names or not. It is safer to keep the cache filenames encrypted, but it can be handy to check the unencrypted filenames for debugging.<br /><u>NOTE :</u> This option will concern all type of cached files.', + + 'GYM_MODREWRITE' => 'URL rewriting', + 'GYM_MODREWRITE_EXPLAIN' => 'Here you can set up various URL rewriting options. Remember that these settings may be overridden depending on your override settings.', + 'GYM_MODREWRITE_ON' => 'Activate URL rewriting', + 'GYM_MODREWRITE_ON_EXPLAIN' => 'This activates URL rewriting for the module links.<br /><u>NOTE :</u> You MUST use an Apache server with the mod_rewrite module loaded or an IIS server running the isapi_rewrite module AND to properly set up the module’s rewrite rules in your .htaccess (or httpd.ini with IIS ).', + 'GYM_ZERO_DUPE_ON' => 'Activate the Zero Duplicate', + 'GYM_ZERO_DUPE_ON_EXPLAIN' => 'This activates the Zero Duplicate for the module links.<br /><u>NOTE :</u> Redirections will only occur when (re)generating the cache in this version.', + 'GYM_MODRTYPE' => 'URL rewriting type', + 'GYM_MODRTYPE_EXPLAIN' => 'These options are overridden by the use of the phpBB SEO mod rewrite (auto detection ).<br/>Four levels of url rewriting can be set up here: None, Simple, Mixed and Advanced :<br/><ul><li><b>None :</b> No URL rewriting;<br/></li><li><b>Simple :</b>Static URL rewriting for all links, no title injection;<br/></li><li><b>Mixed :</b> Forum and category titles are injected in URLs, but topic titles remain statically rewritten;<br/></li><li><b>Advanced :</b> All titles are injected in URLs;</li></ul>', + + 'GYM_GZIP' => 'GUNZIP', + 'GYM_GZIP_EXPLAIN' => 'Here you can set up various gunzip options. Remember that these settings may be overridden depending on your override settings.%1$s', + 'GYM_GZIP_FORCED' => '<br/><b style="color:red;">NOTE :</b> Gun-zip compressions is activated in phpBB config. It is thus forced in the module.', + 'GYM_GZIP_CONFIGURABLE' => '<br/><b style="color:red;">NOTE :</b> Gun-zip compressions is not activated in phpBB config. You can set the below options as you wish.', + 'GYM_GZIP_ON' => 'Activate gunzip', + 'GYM_GZIP_ON_EXPLAIN' => 'This activates gunzip compression on the output. This can significantly lower the amount of data transmitted to the browser and thus the time required to transmit the content.', + 'GYM_GZIP_EXT' => 'Gunzip suffix', + 'GYM_GZIP_EXT_EXPLAIN' => 'You can here chose to use or not the .gz suffix in the module URLs. This only applies when gunzip and URL rewriting are activated.', + 'GYM_GZIP_LEVEL' => 'Gunzip Compression level', + 'GYM_GZIP_LEVEL_EXPLAIN' => 'Integer between 1 and 9, 9 being the most compression. It’s usually not worth it to go over 6.<br /><u>NOTE :</u> This option will concern all types of output.', + + 'GYM_LIMIT' => 'Limits', + 'GYM_LIMIT_EXPLAIN' => 'Here you can set the limit to apply when building the output : number of url outputted, SQL cycling (amount of item queried at once) and age of items listed.<br/>Remember that these settings may be overridden depending on your override settings.', + 'GYM_URL_LIMIT' => 'Item Limits', + 'GYM_URL_LIMIT_EXPLAIN' => 'The maximum amount of item to output.', + 'GYM_SQL_LIMIT' => 'SQL cycling', + 'GYM_SQL_LIMIT_EXPLAIN' => 'For all types of output, except html, SQL queries are split into several to be able to list large amount of items without running too heavy queries.<br/>Define here the amount of item to query at once. The number of SQL queries will be the number of item listed divided by this cycle.', + 'GYM_TIME_LIMIT' => 'Time Limits', + 'GYM_TIME_LIMIT_EXPLAIN' => 'Limit in days. The maximum age of the items taken into account when building the lists. Can be very useful to lower the server load on large data bases. Enter 0 for no limit', + + 'GYM_SORT' => 'Sorting', + 'GYM_SORT_EXPLAIN' => 'Here you can chose how to sort the output.<br/>Remember that these settings may be overridden depending on your override settings.', + 'GYM_SORT_TYPE' => 'Default Sorting', + 'GYM_SORT_TYPE_EXPLAIN' => 'All outputted links are sorted by default by last activity (Descending). <br /> You can set this to Ascending for example if you wish to make it easier for Search engines to find links to old content.<br/>Remember that these settings may be overridden depending on your override settings.', + + 'GYM_PAGINATION' => 'Pagination', + 'GYM_PAGINATION_EXPLAIN' => 'Here you can set up various pagination options. Remember that these settings may be overridden depending on your override settings.', + 'GYM_PAGINATION_ON' => 'Activate Pagination', + 'GYM_PAGINATION_ON_EXPLAIN' => 'You can here decide to output paginated links (when available) for the listed items. For example, the module can additionally output links of the forum’s topic pages.', + 'GYM_LIMITDOWN' => 'Pagination: Lower Limit', + 'GYM_LIMITDOWN_EXPLAIN' => 'Enter here how many paginated pages, starting from the first page, to output.', + 'GYM_LIMITUP' => 'Pagination: Upper Limit', + 'GYM_LIMITUP_EXPLAIN' => 'Enter here how many paginated pages, starting from the last one, to output.', + + 'GYM_OVERRIDE' => 'Override', + 'GYM_OVERRIDE_EXPLAIN' => 'GYM sitemaps is fully modular. Each output type (Google, RSS ...) uses its own output modules corresponding to the type of item to list. For example, the first module for all types of output is the forum module, listing items from the forum.<br/> Many options, such as URL rewriting, caching, gunzip compression etc ..., are repeated on several levels of the GYM sitemaps ACP. This allow you to use different settings for the same option depending on the type of output and the output module. But it can occur that you would prefer to, for example, activate URL rewriting on all the GYM sitemaps module at once (all outputs types and all modules).<br/> That’s what the Override setting will allow you to do for many types of settings. <br/>The inheritance process goes from the highest level of settings (Main configuration) to the output type level (Google, RSS ...) and ends at the lowest level : the output modules (forum, album ...)<br/>Overrinding settings can take three values :<br/><ul><li><b>Global :</b> The Main settings will be used;<br/></li><li><b>Output Type :</b> The output type settings will be used for its modules;<br/></li><li><b>Module :</b> The lowest available setting will be used, e.g., the module’s one first, and if not set, the output type one and so on up to the global setting if available.</li></ul>', + 'GYM_OVERRIDE_ON' => 'Activate Main Override', + 'GYM_OVERRIDE_ON_EXPLAIN' => 'You can here Activate / Deactivate the main overrinding. Deactivating is the same as setting all overrides to "module", letting the output type’s override settings to set the module override.', + 'GYM_OVERRIDE_MAIN' => 'Default Overriding', + 'GYM_OVERRIDE_MAIN_EXPLAIN' => 'Set override level for the other types of settings a module could use.', + 'GYM_OVERRIDE_CACHE' => 'Cache Overriding', + 'GYM_OVERRIDE_CACHE_EXPLAIN' => 'What level of overriding to set for the caching options.', + 'GYM_OVERRIDE_GZIP' => 'Gunzip Overriding', + 'GYM_OVERRIDE_GZIP_EXPLAIN' => 'What level of overriding to set for the gunzip options.', + 'GYM_OVERRIDE_MODREWRITE' => 'URL Rewriting Overriding', + 'GYM_OVERRIDE_MODREWRITE_EXPLAIN' => 'What level of overriding to set for the URL rewriting options.', + 'GYM_OVERRIDE_LIMIT' => 'Limit Overriding', + 'GYM_OVERRIDE_LIMIT_EXPLAIN' => 'What level of overriding to set for the limit options.', + 'GYM_OVERRIDE_PAGINATION' => 'Pagination Overriding', + 'GYM_OVERRIDE_PAGINATION_EXPLAIN' => 'What level of overriding to set for the pagination options.', + 'GYM_OVERRIDE_SORT' => 'Sorting Overriding', + 'GYM_OVERRIDE_SORT_EXPLAIN' => 'What level of overriding to set for the sorting options.', + + // Mod rewrite + 'GYM_MODREWRITE_ADVANCED' => 'Advanced', + 'GYM_MODREWRITE_MIXED' => 'Mixed', + 'GYM_MODREWRITE_SIMPLE' => 'Simple', + 'GYM_MODREWRITE_NONE' => 'None', + + // Sorting + 'GYM_ASC' => 'Ascending', + 'GYM_DESC' => 'Descending', + + // Other + // robots.txt + 'GYM_CHECK_ROBOTS' => 'CHeck robots.txt disallows', + 'GYM_CHECK_ROBOTS_EXPLAIN' => 'Check and apply robots.txt rules (if any) to the URL list. The module will automatically acknowledge the robots.txt updates.<br />This option is very handy for XML and TXT import, when we cannot be sure about the URL list consistency.<br/><br /><u>Note</u> :<br />This option will imply more work on the source file, it is recommended to use it when caching is activated.', + // summarize method + 'GYM_METHOD_CHARS' => 'By characters', + 'GYM_METHOD_WORDS' => 'By words', + 'GYM_METHOD_LINES' => 'By lines', + + // script location checking + 'GYM_WRONG_PHPBB_URL' => 'phpBB server settings are not correct. You must proprely configure your <a href="%1$s"><b>Server URL settings</b></a>.<br/><a href="http://www.phpbb-seo.com/en/phpbb-forum/server-and-cookie-settings-t4451.html" onclick ="window.open(this.href); return false;">More details about this</a>', + 'GYM_WRONG_SCRIPT_URL' => 'The configured URL for <b>%1$s</b> mode is wrong. It must lead to where the <b>%2$s</b> file is located on your server.', + 'GYM_WRONG_SCRIPT_DOMAIN' => 'The configured URL for <b>%1$s</b> mode is not consistant with phpBB one. The URL must use the same domain or sub-domain and the same protocol (http:// or https://) as phpBB. It must contain <b>%2$s</b> and lead to the directory containing <b>%3$s</b> on your server.', + 'GYM_WRONG_SCRIPT2_PHPBB' => 'Even though the configured URL for <b>%1$s</b> mode is correct, the path to phpBB ($phpbb_root_path) set in <b>%2$s%3$s</b> is wrong. This can only occur when $phpbb_root_path was manually modified and / or the file was moved.<br/>Note that $phpbb_root_path must be a valide relative path from the directory where <b>%3$s</b> is to the directory where phpBB is installed, and that it must start with "./".<br/>According to your settings, $phpbb_root_path should be set to <b>%4$s</b> in <b>%3$s</b>.', + 'GYM_WRONG_SITEMAP_LOCATION' => 'Your <b>sitemap.php</b> file is located in a place from where it cannot be used to list forum URLs.<br/>It must be placed <b>inside or above</b> the phpBB directory to be valid.<br/>Configured location : <b>%1$s</b><br/>phpBB location : <b>%2$s</b>', + 'GYM_GO_CONFIG_SCRIPT_URL' => 'Go fix configuration : <a href="%2$s"><b>%1$s</b></a>', +)); +?> diff --git a/phpBB/language/en/gym_sitemaps/acp/gym_google.php b/phpBB/language/en/gym_sitemaps/acp/gym_google.php new file mode 100644 index 0000000000..daa48b0589 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/gym_google.php @@ -0,0 +1,65 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_google.php 259 2010-03-18 19:25:40Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_google [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'GOOGLE_MAIN' => 'Google Sitemaps Settings', + 'GOOGLE_MAIN_EXPLAIN' => 'Main settings for the Google sitemap module.<br/>They will applied to all the Google sitemaps modules by default.', + // Linking setup + 'GOOGLE_LINKS_ACTIVATION' => 'Forum Linking', + 'GOOGLE_LINKS_MAIN' => 'Main links', + 'GOOGLE_LINKS_MAIN_EXPLAIN' => 'Display or not sitemapindex link in footer.<br/>This feature requires that main links display is activated in the main configuration.', + 'GOOGLE_LINKS_INDEX' => 'Links on index', + 'GOOGLE_LINKS_INDEX_EXPLAIN' => 'Display or not links to the available sitemaps for each forum on the forum index. These links are added below the forum descriptions.<br/>This feature requires that links on index display is activated in the main configuration.', + 'GOOGLE_LINKS_CAT' => 'Links on forum page', + 'GOOGLE_LINKS_CAT_EXPLAIN' => 'Display or not links to the sitemap of the current forum. These links are added below the forum title.<br/>This feature requires that links on forum page display is activated in the main configuration.', + // Reset settings + 'GOOGLE_ALL_RESET' => '<b>All</b> Google sitemaps modules', + 'GOOGLE_URL_EXPLAIN' => 'Enter the full URL to your sitemapIndex eg http://www.example.com/eventual_dir/ if sitemap.php is installed in http://www.example.com/eventual_dir/.<br/>This option is useful when phpBB is not installed in the domain\'s root and you would like to list URLs from the domain’s root level in your Google sitemaps.', + 'GOOGLE_PING' => 'Google Ping', + 'GOOGLE_PING_EXPLAIN' => 'Pings Google each time a sitemap gets refreshed.', + 'GOOGLE_THRESHOLD' => 'Sitemaps threshold', + 'GOOGLE_THRESHOLD_EXPLAIN' => 'Minimum amount of items to display a sitemap. For the forum, this means that only forum with more than this threshold topic will have a sitemap.', + 'GOOGLE_PRIORITIES' => 'Priority settings', + 'GOOGLE_DEFAULT_PRIORITY' => 'Default Priority', + 'GOOGLE_DEFAULT_PRIORITY_EXPLAIN' => 'The default priority for URLs listed in all the sitemaps; will be used unless additional options are made possible by module (must be a number between 0.0 & 1.0 inclusive)', + 'GOOGLE_XSLT' => 'XSLT Styling', + 'GOOGLE_XSLT_EXPLAIN' => 'Activates the XSL style-sheet to output user-friendly Google sitemaps with clickable links and more. This will only be effective after you will have cleared the Google sitemaps cache using the Maintenance link above.', + 'GOOGLE_LOAD_PHPBB_CSS' => 'Load phpBB CSS', + 'GOOGLE_LOAD_PHPBB_CSS_EXPLAIN' => 'The GYM sitemap module uses the phpBB3 templating system. The XSL stylesheets used to build the html output are compatible with phpBB3 styling.<br/>With this, you can apply the phpBB CSS on the XSL stylesheet instead of the default one. This way, all your theme personalizations such as background and font color or even images will be used in the Google sitemap styled output.<br/>This will only have effect after you will have cleared the RSS cache in the "Maintenance" menu.<br/>If the Google sitemaps style file are not present in the current style, the default style (always available, based on prosilver) will be used.<br/>Do not try to use prosilver templates with another style, the CSS most likely won\'t match.', + // Auth settings + 'GOOGLE_AUTH_SETTINGS' => 'Authorization settings', + 'GOOGLE_ALLOW_AUTH' => 'Authorizations', + 'GOOGLE_ALLOW_AUTH_EXPLAIN' => 'Activate the authorization for Sitemaps. If activated, logged in users and bots will be able to browse private forum sitemaps if they have the proper authorization.', + 'GOOGLE_CACHE_AUTH' => 'Cache private sitemaps', + 'GOOGLE_CACHE_AUTH_EXPLAIN' => 'You can disable cache for non public sitemaps when allowed.<br/> Caching private sitemaps will increase the number of file cached. It should not be a problem, but you can decide to only cache public sitemaps here.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/gym_html.php b/phpBB/language/en/gym_sitemaps/acp/gym_html.php new file mode 100644 index 0000000000..831c89605e --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/gym_html.php @@ -0,0 +1,153 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_html.php 259 2010-03-18 19:25:40Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_html [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'HTML_MAIN' => 'HTML Settings', + 'HTML_MAIN_EXPLAIN' => 'These are the main setting for the HTML module.<br/>They can be applied to all the HTML modules depending on your HTML override settings.', + // Linking setup + 'HTML_LINKS_ACTIVATION' => 'Forum Linking', + 'HTML_LINKS_MAIN' => 'Main links', + 'HTML_LINKS_MAIN_EXPLAIN' => 'Display or not main news and maps links in footer.<br/>This feature requires that main links display is activated in the main configuration.', + 'HTML_LINKS_INDEX' => 'Links on index', + 'HTML_LINKS_INDEX_EXPLAIN' => 'Display or not links to the available news and maps for each forum on the forum index. These links are added below the forum descriptions.<br/>This feature requires that links on index display is activated in the main configuration.', + 'HTML_LINKS_CAT' => 'Links on forum page', + 'HTML_LINKS_CAT_EXPLAIN' => 'Display or not links to the news and maps of the current forum. These links are added below the forum title.<br/>This feature requires that links on forum page display is activated in the main configuration.', + // Reset settings + 'HTML_ALL_RESET' => 'ALL HTML modules', + // Limits + 'HTML_RSS_NEWS_LIMIT' => 'Mains news page limit', + 'HTML_RSS_NEWS_LIMIT_EXPLAIN' => 'Number of items displayed on the main news page, gathered from the configured RSS source for the main new page.', + 'HTML_MAP_TIME_LIMIT' => 'Time limit for module main maps', + 'HTML_MAP_TIME_LIMIT_EXPLAIN' => 'Limit in days. The maximum age of the items taken into account when building the module main map page. Can be very useful to lower the server load on large data bases. Enter 0 for no limit', + 'HTML_CAT_MAP_TIME_LIMIT' => 'Time limit for category maps', + 'HTML_CAT_MAP_TIME_LIMIT_EXPLAIN' => 'Limit in days. The maximum age of the items taken into account when building the module category map pages. Can be very useful to lower the server load on large data bases. Enter 0 for no limit', + 'HTML_NEWS_TIME_LIMIT' => 'Time limits for News', + 'HTML_NEWS_TIME_LIMIT_EXPLAIN' => 'Limit in days. The maximum age of the items taken into account when building the module news page. Can be very useful to lower the server load on large data bases. Enter 0 for no limit', + 'HTML_CAT_NEWS_TIME_LIMIT' => 'Time limit for category news', + 'HTML_CAT_NEWS_TIME_LIMIT_EXPLAIN' => 'Limit in days. The maximum age of the items taken into account when building the module category news pages. Can be very useful to lower the server load on large data bases. Enter 0 for no limit', + // sort + 'HTML_MAP_SORT_TITLE' => 'Map sorting', + 'HTML_NEWS_SORT_TITLE' => 'News sorting', + 'HTML_CAT_SORT_TYPE' => 'Sorting for category maps', + 'HTML_CAT_SORT_TYPE_EXPLAIN' => 'Following the same principle as above, this one applies to the module category maps pages, e.g. a forum map for the HTML forum module.', + 'HTML_NEWS_SORT_TYPE' => 'Sorting for news page', + 'HTML_NEWS_SORT_TYPE_EXPLAIN' => 'Following the same principle as above, this one applies to the module news page, e.g. the forum news page for the HTML forum module.', + 'HTML_CAT_NEWS_SORT_TYPE' => 'Sorting for category news pages', + 'HTML_CAT_NEWS_SORT_TYPE_EXPLAIN' => 'Following the same principle as above, this one applies to the module category news pages, e.g. a forum news page for the HTML forum module.', + 'HTML_PAGINATION_GEN' => 'Main Pagination', + 'HTML_PAGINATION_SPEC' => 'Module Pagination', + 'HTML_PAGINATION' => 'Site map pagination', + 'HTML_PAGINATION_EXPLAIN' => 'Activate pagination on the site map pages. You can decide to use only one, or several pages for your site maps.', + 'HTML_PAGINATION_LIMIT' => 'Item per page', + 'HTML_PAGINATION_LIMIT_EXPLAIN' => 'When site map pagination is activated, you can choose how many item to display per page.', + 'HTML_NEWS_PAGINATION' => 'News Pagination', + 'HTML_NEWS_PAGINATION_EXPLAIN' => 'Activate pagination on the news pages. You can decide to use only one, or several pages for your news pages.', + 'HTML_NEWS_PAGINATION_LIMIT' => 'News per page', + 'HTML_NEWS_PAGINATION_LIMIT_EXPLAIN' => 'When news pagination is activated, you can choose how many news to display per page.', + 'HTML_ITEM_PAGINATION' => 'Item pagination', + 'HTML_ITEM_PAGINATION_EXPLAIN' => 'You can here decide to output paginated links (when available) for the listed items. For example, the module can additionally output links of the forum’s topic pages.', + // Basic settings + 'HTML_SETTINGS' => 'Basic settings', + 'HTML_C_INFO' => 'Copyright information', + 'HTML_C_INFO_EXPLAIN' => 'Info to display in the copyright meta tag for site maps and news pages. Default is the phpBB site name. This info will only be used if you installed the phpBB SEO dynamic meta tag mod.', + 'HTML_SITENAME' => 'Site name', + 'HTML_SITENAME_EXPLAIN' => 'The Site name to show in the site maps and news pages. Default is the phpBB site name.', + 'HTML_SITE_DESC' => 'Site description', + 'HTML_SITE_DESC_EXPLAIN' => 'The Site description to show in the site maps and news pages. Default is the phpBB site description.', + 'HTML_LOGO_URL' => 'Site logo', + 'HTML_LOGO_URL_EXPLAIN' => 'The image file to use as the site logo in the RSS feeds, in the gym_sitemaps/images/ directory.', + 'HTML_URL_EXPLAIN' => 'Enter the full URL to your map.php file, e.g. http://www.example.com/eventual_dir/ if map.php is installed in http://www.example.com/eventual_dir/.<br/>This option is useful when phpBB is not installed in the domain’s root and you would like put the map.php file in the root level.', + 'HTML_RSS_NEWS_URL' => 'Mains news page RSS source', + 'HTML_RSS_NEWS_URL_EXPLAIN' => 'Enter here the full url to the RSS feed you want to display on the main news page, example http://www.example.com/gymrss.php?news&digest to display all news from all RSS modules installed on the main HTML news page.<br />You can use an RSS 2.0 feed as a source for this page.', + 'HTML_STATS_ON_NEWS' => 'Display forum stats on news pages', + 'HTML_STATS_ON_NEWS_EXPLAIN' => 'Display, or not, forum stats on news pages.', + 'HTML_STATS_ON_MAP' => 'Display forum stats maps', + 'HTML_STATS_ON_MAP_EXPLAIN' => 'Display, or not, forum stats maps pages.', + 'HTML_BIRTHDAYS_ON_NEWS' => 'Display birthdays on news pages', + 'HTML_BIRTHDAYS_ON_NEWS_EXPLAIN' => 'Display, or not, birthdays on news pages.', + 'HTML_BIRTHDAYS_ON_MAP' => 'Display birthdays on news pages', + 'HTML_BIRTHDAYS_ON_MAP_EXPLAIN' => 'Display, or not, birthdays on news pages.', + 'HTML_DISP_ONLINE' => 'Display user online', + 'HTML_DISP_ONLINE_EXPLAIN' => 'Display, or not, the user online list on the site map and news pages.', + 'HTML_DISP_TRACKING' => 'Activate tracking', + 'HTML_DISP_TRACKING_EXPLAIN' => 'Activate, or not, item tracking (read / unread).', + 'HTML_DISP_STATUS' => 'Activate status', + 'HTML_DISP_STATUS_EXPLAIN' => 'Activate, or not, the item status system (Announcement, Stickies, locked etc ... ).', + // Cache + 'HTML_CACHE' => 'Cache', + 'HTML_CACHE_EXPLAIN' => 'You can here define various caching options for the HTML mode. HTML caching is separated from the other modes (Google and RSS). This module uses the standard phpBB’s cache.<br/>This options thus cannot be inherited from the main level, and only publicly visible content will be cached. This settings though, may be transmitted to the HTML modules depending on your HTML override settings.<br/><br/>Cache is separated into two types, one for each column in the output : The main column, containing the maps and news, and the optional one, which for example can be used to add a last active topic listing in the HTML forum module.', + 'HTML_MAIN_CACHE_ON' => 'Activate main column caching', + 'HTML_MAIN_CACHE_ON_EXPLAIN' => 'You can here activate / deactivate the site maps and news column caching.', + 'HTML_OPT_CACHE_ON' => 'Activate optional column caching', + 'HTML_OPT_CACHE_ON_EXPLAIN' => 'You can here activate / deactivate the optional column caching.', + 'HTML_MAIN_CACHE_TTL' => 'Main cache duration', + 'HTML_MAIN_CACHE_TTL_EXPLAIN' => 'Maximum amount of hours the main column cached file will be used before it will be updated. Each cached file will be updated every time someone will browse it after this duration was exceeded.', + 'HTML_OPT_CACHE_TTL' => 'Optional column cache duration', + 'HTML_OPT_CACHE_TTL_EXPLAIN' => 'Maximum amount of hours the optional column cached file will be used before it will be updated. Each cached file will be updated every time someone will browse it after this duration was exceeded.', + // Auth settings + 'HTML_AUTH_SETTINGS' => 'Authorization settings', + 'HTML_ALLOW_AUTH' => 'Authorizations', + 'HTML_ALLOW_AUTH_EXPLAIN' => 'Activate the authorization for site map and news pages. If activated, logged in users will be able to browse private content and to view items from private forums if they have the proper authorization.', + 'HTML_ALLOW_NEWS' => 'Activate news', + 'HTML_ALLOW_NEWS_EXPLAIN' => 'Each module can have a news page listing the last X active items with their content, which can be filtered. For the forum, the forum news page is generally a page displaying the 10 last topic first posts digest coming from a selection of public and / or private forums.', + 'HTML_ALLOW_CAT_NEWS' => 'Activate category news', + 'HTML_ALLOW_CAT_NEWS_EXPLAIN' => 'Following the same principles as the module news pages, each module category can have a news page.', + // Content + 'HTML_NEWS' => 'News settings', + 'HTML_NEWS_EXPLAIN' => 'Here you can set up various content filtering / formatting options for the news. <br/>They can be applied to all the HTML modules depending on your HTML override settings.', + 'HTML_NEWS_CONTENT' => 'News content settings', + 'HTML_SUMARIZE' => 'Digest Items', + 'HTML_SUMARIZE_EXPLAIN' => 'You can summarize the message content put in the news pages.<br/> The limit sets the maximum amount of sentences, words or characters, according to the method selected below. Enter 0 to output all of it.', + 'HTML_SUMARIZE_METHOD' => 'Digest Method', + 'HTML_SUMARIZE_METHOD_EXPLAIN' => 'You can select between three different methods to limit the message content in feeds.<br/> By number of lines, by number of words and by number of characters. BBcode tags and words won’t be broken.', + 'HTML_ALLOW_PROFILE' => 'Show Profiles', + 'HTML_ALLOW_PROFILE_EXPLAIN' => 'Item author name can be added to the output if desired.', + 'HTML_ALLOW_PROFILE_LINKS' => 'Profile link', + 'HTML_ALLOW_PROFILE_LINKS_EXPLAIN' => 'If author name is included in the output, you can decide to link it or not to the corresponding phpBB profile page.', + 'HTML_ALLOW_BBCODE' => 'Allow BBcodes', + 'HTML_ALLOW_BBCODE_EXPLAIN' => 'You may choose here to either parse and output or omit the BBcode.', + 'HTML_STRIP_BBCODE' => 'Strip BBcodes', + 'HTML_STRIP_BBCODE_EXPLAIN' => 'You can here set up a list of BBcodes to exclude from parsing.<br/>The format is simple : <br/><ul><li> <u>Comma separated list of BBcodes :</u> Delete BBcode tags, keep the content. <br/><u>Example :</u> <b>img,b,quote</b> <br/> In this example img, bold and quote BBcode won’t be parsed, the BBcode tags themselves will be deleted and the content inside the BBcode tags kept.</li><li> <u>Comma separated list of BBcodes with colon option :</u> Delete BBcode tags and decide about their content. <br/><u>Example :</u> <b>img:1,b:0,quote,code:1</b> <br/> In this example, img BBcode and the img link will be deleted, bold won’t be processed, but the bold-ed text will be kept, quote won’t be parsed, but their content will be kept, code BBcode and their content will be deleted from the output.</ul>The filter will work even if BBcode is empty. Handy to delete code tags content and img links from output for example.<br/>The filtering occurs before summarizing.<br/> The Magic parameter "all" (can be all:0 or all:1 to strip BBcode tags content as well) will take care of all at once.', + 'HTML_ALLOW_LINKS' => 'Allow active links', + 'HTML_ALLOW_LINKS_EXPLAIN' => 'You may choose here to either activate or not links used in items content.<br/> If deactivated, links and emails will be included in the content but won’t be clickable.', + 'HTML_ALLOW_EMAILS' => 'Allow Emails', + 'HTML_ALLOW_EMAILS_EXPLAIN' => 'You chose here to output "email AT domain DOT com" instead of "email@domain.com" in the items content.', + 'HTML_ALLOW_SMILIES' => 'Allow Smilies', + 'HTML_ALLOW_SMILIES_EXPLAIN' => 'You may choose here to either parse or ignore the smilies in content.', + 'HTML_ALLOW_SIG' => 'Allow signatures', + 'HTML_ALLOW_SIG_EXPLAIN' => 'You may choose here to either display or not the users signatures in content.', + 'HTML_ALLOW_MAP' => 'Activate the module map', + 'HTML_ALLOW_MAP_EXPLAIN' => 'You can here activate / deactivate the module site map.', + 'HTML_ALLOW_CAT_MAP' => 'Activate module category maps', + 'HTML_ALLOW_CAT_MAP_EXPLAIN' => 'You can here activate / deactivate the module category maps.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/gym_rss.php b/phpBB/language/en/gym_sitemaps/acp/gym_rss.php new file mode 100644 index 0000000000..cd116c2942 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/gym_rss.php @@ -0,0 +1,133 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_rss.php 259 2010-03-18 19:25:40Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_rss [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'RSS_MAIN' => 'RSS Feeds Settings', + 'RSS_MAIN_EXPLAIN' => 'These are the main setting for the RSS feeds module.<br/>They can be applied to all the RSS modules depending on your RSS override settings.', + // Linking setup + 'RSS_LINKS_ACTIVATION' => 'Forum Linking', + 'RSS_LINKS_MAIN' => 'Main links', + 'RSS_LINKS_MAIN_EXPLAIN' => 'Display or not rss and rss list links in footer.<br/>This feature requires that main links display is activated in the main configuration.', + 'RSS_LINKS_INDEX' => 'Links on index', + 'RSS_LINKS_INDEX_EXPLAIN' => 'Display or not links to the available rss feed for each forum on the forum index. These links are added below the forum descriptions.<br/>This feature requires that links on index display is activated in the main configuration.', + 'RSS_LINKS_CAT' => 'Links on forum page', + 'RSS_LINKS_CAT_EXPLAIN' => 'Display or not links to the rss feed of the current forum. These links are added below the forum title.<br/>This feature requires that links on forum page display is activated in the main configuration.', + // Reset settings + 'RSS_ALL_RESET' => 'ALL RSS modules', + // Limits + 'RSS_LIMIT_GEN' => 'Main limits', + 'RSS_LIMIT_SPEC' => 'RSS limits', + 'RSS_URL_LIMIT_LONG' => 'Long Feeds limit', + 'RSS_URL_LIMIT_LONG_EXPLAIN' => 'Number of items displayed in a Long feed without content, requires Allow Long Feeds option activated.', + 'RSS_SQL_LIMIT_LONG' => 'Long SQL cycle', + 'RSS_SQL_LIMIT_LONG_EXPLAIN' => 'Number of items queried at a time for a long feed without content.', + 'RSS_URL_LIMIT_SHORT' => 'Short Feeds limit', + 'RSS_URL_LIMIT_SHORT_EXPLAIN' => 'Number of items displayed on a Short feed without content, requires Allow Short Feeds option activated.', + 'RSS_SQL_LIMIT_SHORT' => 'Short SQL cycle', + 'RSS_SQL_LIMIT_SHORT_EXPLAIN' => 'Number of items queried at a time for a Short feed without content.', + 'RSS_URL_LIMIT_MSG' => 'Default limit with content', + 'RSS_URL_LIMIT_MSG_EXPLAIN' => 'Number of items displayed by default in feeds with content, requires Allow Item Content option activated.', + 'RSS_SQL_LIMIT_MSG' => 'SQL cycle with content', + 'RSS_SQL_LIMIT_MSG_EXPLAIN' => 'Number of items queried at a time for a feed with content.', + // Basic settings + 'RSS_SETTINGS' => 'Basic settings', + 'RSS_C_INFO' => 'Copyright information', + 'RSS_C_INFO_EXPLAIN' => 'The Copyright information to show in the copyright tag of the RSS feeds. Default is the phpBB site name.', + 'RSS_SITENAME' => 'Site name', + 'RSS_SITENAME_EXPLAIN' => 'The Site name to show in the RSS feeds. Default is the phpBB site name.', + 'RSS_SITE_DESC' => 'Site description', + 'RSS_SITE_DESC_EXPLAIN' => 'The Site description to show in the RSS feeds. Default is the phpBB site description.', + 'RSS_LOGO_URL' => 'Site logo', + 'RSS_LOGO_URL_EXPLAIN' => 'The image file to use as the site logo in the RSS feeds, in the gym_sitemaps/images/ directory.', + 'RSS_IMAGE_URL' => 'RSS logo', + 'RSS_IMAGE_URL_EXPLAIN' => 'The image file to use as the RSS logo in the RSS feeds, in the gym_sitemaps/images/ directory.', + 'RSS_LANG' => 'RSS Language', + 'RSS_LANG_EXPLAIN' => 'The language to declare as the main language in the rss feeds. Default is the phpBB default language.', + 'RSS_URL_EXPLAIN' => 'Enter the full URL to your gymrss.php file, e.g. http://www.example.com/eventual_dir/ if gymrss.php is installed in http://www.example.com/eventual_dir/.<br/>This option is useful when phpBB is not installed in the domain’s root and you would like put the gymrss.php file in the root level.', + // Auth settings + 'RSS_AUTH_SETTINGS' => 'Authorization settings', + 'RSS_ALLOW_AUTH' => 'Authorizations', + 'RSS_ALLOW_AUTH_EXPLAIN' => 'Activate the authorization for RSS feeds. If activated, logged in users will be able to browse private feeds and to view items from private forums in general feeds if they have the proper authorization.', + 'RSS_CACHE_AUTH' => 'Cache private feeds', + 'RSS_CACHE_AUTH_EXPLAIN' => 'You can disable cache for non public feeds when allowed.<br/> Caching private feeds will increase the number of file cached; it should not be a problem, but you can decide to only cache public feeds here.', + 'RSS_NEWS_UPDATE' => 'News Feeds update', + 'RSS_NEWS_UPDATE_EXPLAIN' => 'When news feeds are activated, you can here set a custom time to live in hours for all the news feeds. Use 0 or leave blank to deactivate and use the regular update duration instead.', + 'RSS_ALLOW_NEWS' => 'Allow News Feeds', + 'RSS_ALLOW_NEWS_EXPLAIN' => 'So called news feeds is a custom mod that will keep the first item listed without considering subsequent replies. It’s an additional feed that will not interfere with the others. It’s useful if you, for example, want to submit your forum feeds to Google news.', + 'RSS_ALLOW_SHORT' => 'Allow Short Feeds', + 'RSS_ALLOW_SHORT_EXPLAIN' => 'Allow or not the use of Short RSS feeds.', + 'RSS_ALLOW_LONG' => 'Allow Long Feeds', + 'RSS_ALLOW_LONG_EXPLAIN' => 'Allow or not the use of Long RSS feeds.', + // Notifications + 'RSS_NOTIFY' => 'Notifications', + 'RSS_YAHOO_NOTIFY' => 'Yahoo Notifications', + 'RSS_YAHOO_NOTIFY_EXPLAIN' => 'Activate the Yahoo! Notifications for RSS feeds.<br/> This does not concern the general feeds (RSS.xml).<br/>Each time a feed’s cache is updated, a notification will be sent to Yahoo!<br/><u>NOTE :</u>You MUST enter your Yahoo! AppID below for the notification to be sent.', + 'RSS_YAHOO_APPID' => 'Yahoo! AppID', + 'RSS_YAHOO_APPID_EXPLAIN' => 'Enter your Yahoo! AppID. If you don’t have one yet, please visit <a href="http://api.search.yahoo.com/webservices/register_application">this page</a>.<br/><u>NOTE :</u>You will have to register for a Yahoo! account before you can obtain a Yahoo! AppID.', + // Styling + 'RSS_STYLE' => 'Rss Style', + 'RSS_XSLT' => 'XSLT Styling', + 'RSS_XSLT_EXPLAIN' => 'The RSS feeds can be styled using <a href="http://www.w3schools.com/xsl/xsl_transformation.asp">XSL-Transform</a> Style Sheet.', + 'RSS_FORCE_XSLT' => 'Force Styling', + 'RSS_FORCE_XSLT_EXPLAIN' => 'Isn’t this a bit stupid, we need to trick browsers to allow xlst usage. We do it by adding some space chars at the beginning of the xml code.<br/>FF 2 and IE7 only look for the first 500 chars to decide it’s rss or not and impose their private handling', + 'RSS_LOAD_PHPBB_CSS' => 'Load phpBB CSS', + 'RSS_LOAD_PHPBB_CSS_EXPLAIN' => 'The GYM sitemap module fully uses the phpBB3 powerful templating system. The XSL stylesheets used to build the html output is compatible with phpBB3 styling.<btr/>With this option, you can decide to apply the phpBB CSS on the XSL stylesheet instead of the default one. This way, all your theme personalisations such as background and font color or even images will be used in the RSS styled output.<br/>This will only have effect after you will have cleared the RSS cache in the "Maintenance" menu.<br/>If the RSS style file are not present in the current style, the default style (always available, based on prosilver) will be used.<br/>Do not try to use prosilver templates with another style, the CSS most likely won’t match.', + // Content + 'RSS_CONTENT' => 'Content settings', + 'RSS_CONTENT_EXPLAIN' => 'Here you can set up various content filtering / formatting options. <br/>They can be applied to all the RSS modules depending on your RSS override settings.', + 'RSS_ALLOW_CONTENT' => 'Allow Item Content', + 'RSS_ALLOW_CONTENT_EXPLAIN' => 'You may choose here to allow the message content to be fully or partially displayed in the RSS feeds. <br/><u>NOTE :</u> This option means a bit more work for the server. Limits with content output should be set smaller than the ones without it.', + 'RSS_SUMARIZE' => 'Digest Items', + 'RSS_SUMARIZE_EXPLAIN' => 'You can summarize the message content put in the feeds.<br/> The limit sets the maximum amount of sentences, words or characters, according to the method selected below. Enter 0 to output all of it.', + 'RSS_SUMARIZE_METHOD' => 'Digest Method', + 'RSS_SUMARIZE_METHOD_EXPLAIN' => 'You can select between three different methods to limit the message content in feeds.<br/> By number of lines, by number of words and by number of characters. BBcode tags and words won’t be broken.', + 'RSS_ALLOW_PROFILE' => 'Show Profiles', + 'RSS_ALLOW_PROFILE_EXPLAIN' => 'Item author name can be added to the RSS feeds if desired.', + 'RSS_ALLOW_PROFILE_LINKS' => 'Profile link', + 'RSS_ALLOW_PROFILE_LINKS_EXPLAIN' => 'If author name is included in the output, you can decide to link it or not to the corresponding phpBB profile page.', + 'RSS_ALLOW_BBCODE' => 'Allow BBcodes', + 'RSS_ALLOW_BBCODE_EXPLAIN' => 'You may choose here to either parse and output or omit the BBcode.', + 'RSS_STRIP_BBCODE' => 'Strip BBcodes', + 'RSS_STRIP_BBCODE_EXPLAIN' => 'You can here set up a list of BBcodes to exclude from parsing.<br/>The format is simple : <br/><ul><li> <u>Comma separated list of BBcodes :</u> Delete BBcode tags, keep the content. <br/><u>Example :</u> <b>img,b,quote</b> <br/> In this example img, bold and quote BBcode won’t be parsed, the BBcode tags themselves will be deleted and the content inside the BBcode tags kept.</li><li> <u>Comma separated list of BBcodes with colon option :</u> Delete BBcode tags and decide about their content. <br/><u>Example :</u> <b>img:1,b:0,quote,code:1</b> <br/> In this example, img BBcode and the img link will be deleted, bold won’t be processed, but the bold text will be kept, quote won’t be parsed, but their content will be kept, code BBcode and their content will be deleted from the output.</ul>The filter will work even if BBcode is empty. Handy to delete code tags content and img links from output for example.<br/>The filtering occurs before summarizing.<br/> The Magic parameter "all" (can be all:0 or all:1 to strip BBcode tags content as well) will take care of all at once.', + 'RSS_ALLOW_LINKS' => 'Allow active links', + 'RSS_ALLOW_LINKS_EXPLAIN' => 'You may choose here to either activate or not links used in items content.<br/> If deactivated, links and emails will be included in the content but won’t be clickable.', + 'RSS_ALLOW_EMAILS' => 'Allow Emails', + 'RSS_ALLOW_EMAILS_EXPLAIN' => 'You chose here to output "email AT domain DOT com" instead of "email@domain.com" in the items content.', + 'RSS_ALLOW_SMILIES' => 'Allow Smilies', + 'RSS_ALLOW_SMILIES_EXPLAIN' => 'You may choose here to either parse or ignore the smilies in content.', + 'RSS_NOHTML' => 'HTML filter', + 'RSS_NOHTML_EXPLAIN' => 'Filter, or not, html in rss feeds. If you activate this option, rss feeds will only contain plain text.', + // Old URL handling + 'RSS_1XREDIR' => 'Handle GYM 1x rewritten URL', + 'RSS_1XREDIR_EXPLAIN' => 'Activate the GYM 1x rewritten URLs detection. The module will display a custom feed providing with the new URL of the requested feed.<br/><u>Note :</u><br/>This option requires the compatibility rewriterules as explained in the install file.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/html_forum.php b/phpBB/language/en/gym_sitemaps/acp/html_forum.php new file mode 100644 index 0000000000..b0d48acf41 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/html_forum.php @@ -0,0 +1,96 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: html_forum.php 204 2009-12-20 12:04:51Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* html_forum [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'HTML_FORUM' => 'HTML Forum Module', + 'HTML_FORUM_EXPLAIN' => 'These are the settings for the HTML forum module.<br/> Some of them can be overridden depending on the HTML override settings.', + 'HTML_FORUM_EXCLUDE' => 'Forum Exclusions', + 'HTML_FORUM_EXCLUDE_EXPLAIN' => 'You can here exclude one or several forums from the RSS listing.<br /><u>Note :</u> If this field is left empty, all readable forums will be listed.', + 'HTML_FORUM_ALLOW_NEWS' => 'Forum News', + 'HTML_FORUM_ALLOW_NEWS_EXPLAIN' => 'The forum news page is a page displaying one or several topic’s first posts, clipped or not, and coming from one or several forum you may select bellow.', + 'HTML_FORUM_ALLOW_CAT_NEWS' => 'Forum category news', + 'HTML_FORUM_ALLOW_CAT_NEWS_EXPLAIN' => 'Activate, or not, the per forum news pages. If activated, each non excluded forum will have a news page for its topics.', + 'HTML_FORUM_NEWS_IDS' => 'Forum news source', + 'HTML_FORUM_NEWS_IDS_EXPLAIN' => 'You can select one or several forums, even private, as source for your main forum news page.<br /><u>Note</u> :<br />If left empty, all authed forum will be taken as source for the forum news page.', + 'HTML_FORUM_LTOPIC' => 'Optional last active topic list', + 'HTML_FORUM_INDEX_LTOPIC' => 'Display on forum map', + 'HTML_FORUM_INDEX_LTOPIC_EXPLAIN' => 'Display, or not, the last active topic list on the forum map.<br/>Enter the number of topic to display, 0 to deactivate.', + 'HTML_FORUM_CAT_LTOPIC' => 'Display on forum category maps', + 'HTML_FORUM_CAT_LTOPIC_EXPLAIN' => 'Display, or not, the last active topic list on each forum maps.<br/>Enter the number of topic to display, 0 to deactivate.', + 'HTML_FORUM_NEWS_LTOPIC' => 'Display on forum news page', + 'HTML_FORUM_NEWS_LTOPIC_EXPLAIN' => 'Display, or not, the last active topic list on the forum news page.<br/>Enter the number of topic to display, 0 to deactivate.', + 'HTML_FORUM_CAT_NEWS_LTOPIC' => 'Display on forum category news page', + 'HTML_FORUM_CAT_NEWS_LTOPIC_EXPLAIN' => 'Display, or not, the last active topic list on each forum news page.<br/>Enter the number of topic to display, 0 to deactivate.', + 'HTML_FORUM_LTOPIC_PAGINATION' => 'Last active topic pagination', + 'HTML_FORUM_LTOPIC_PAGINATION_EXPLAIN' => 'Display, or not, topic pagination in the last active topic list.', + 'HTML_FORUM_LTOPIC_EXCLUDE' => 'Last active topic list exclusion', + 'HTML_FORUM_LTOPIC_EXCLUDE_EXPLAIN' => 'You can here exclude one or several forum from the last active topic listing.<br /><u>Note :</u> If this field is left empty, all readable forums will be listed.', + // Pagination + 'HTML_FORUM_PAGINATION' => 'Forum map Pagination', + 'HTML_FORUM_PAGINATION_EXPLAIN' => 'Activate, or not, paginating of forum maps. Turn this on if you want to display more than one page and list all topics in each forum map.', + 'HTML_FORUM_PAGINATION_LIMIT' => 'Topics per page', + 'HTML_FORUM_PAGINATION_LIMIT_EXPLAIN' => 'When Forum map Pagination is activated, you can here define the number of topic displayed per page.', + // Content + 'HTML_FORUM_CONTENT' => 'Forum Content settings', + 'HTML_FORUM_FIRST' => 'Map sorting', + 'HTML_FORUM_FIRST_EXPLAIN' => 'The forum maps can be sorted against the topic first post date or the topic last post date. This means that you can either use the topic creation or the last replied order.', + 'HTML_FORUM_NEWS_FIRST' => 'News sorting', + 'HTML_FORUM_NEWS_FIRST_EXPLAIN' => 'The forum news pages can be sorted against the topic first post date or the topic last post date. This means that you can either use the topic creation or the last replied order.', + 'HTML_FORUM_LAST_POST' => 'Display last post', + 'HTML_FORUM_LAST_POST_EXPLAIN' => 'Display, or not, the last post information of the topic listed.', + 'HTML_FORUM_POST_BUTTONS' => 'Display post button', + 'HTML_FORUM_POST_BUTTONS_EXPLAIN' => 'Display, or not, the post button such as reply, edit etc ...', + 'HTML_FORUM_RULES' => 'Display forum rules', + 'HTML_FORUM_RULES_EXPLAIN' => 'Display, or not, forum rules in forum news and map pages.', + 'HTML_FORUM_DESC' => 'Display forum rules description', + 'HTML_FORUM_DESC_EXPLAIN' => 'Display, or not, forum description in forum news and map pages.', + // Reset settings + 'HTML_FORUM_RESET' => 'HTML forum module', + 'HTML_FORUM_RESET_EXPLAIN' => 'Reset all the HTML forum module otpions to default values.', + 'HTML_FORUM_MAIN_RESET' => 'HTML forum Main', + 'HTML_FORUM_MAIN_RESET_EXPLAIN' => 'Reset to default all the options in the "HTML Settings" (main) tab of the HTML forum module.', + 'HTML_FORUM_CONTENT_RESET' => 'HTML forum News', + 'HTML_FORUM_CONTENT_RESET_EXPLAIN' => 'Reset to default all the news options of the HTML forum module.', + 'HTML_FORUM_CACHE_RESET' => 'HTML forum Cache', + 'HTML_FORUM_CACHE_RESET_EXPLAIN' => 'Reset to default all the caching options of the HTML forum module.', + 'HTML_FORUM_MODREWRITE_RESET' => 'HTML forum URL rewriting', + 'HTML_FORUM_MODREWRITE_RESET_EXPLAIN' => 'Reset to default all the URL rewriting options of the HTML forum module.', + 'HTML_FORUM_GZIP_RESET' => 'HTML forum Gunzip', + 'HTML_FORUM_GZIP_RESET_EXPLAIN' => 'Reset to default all the Gunzip options of the HTML forum module.', + 'HTML_FORUM_LIMIT_RESET' => 'HTML forum Limits', + 'HTML_FORUM_LIMIT_RESET_EXPLAIN' => 'Reset to default all the Limits options of the HTML forum module.', + 'HTML_FORUM_SORT_RESET' => 'HTML forum Sorting', + 'HTML_FORUM_SORT_RESET_EXPLAIN' => 'Reset to default all the Sorting options of the HTML forum module.', + 'HTML_FORUM_PAGINATION_RESET' => 'HTML forum Pagination', + 'HTML_FORUM_PAGINATION_RESET_EXPLAIN' => 'Reset to default all the Pagination options of the HTML forum module.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/acp/rss_forum.php b/phpBB/language/en/gym_sitemaps/acp/rss_forum.php new file mode 100644 index 0000000000..79991c09d8 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/acp/rss_forum.php @@ -0,0 +1,68 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: rss_forum.php 204 2009-12-20 12:04:51Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* rss_forum [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'RSS_FORUM' => 'Forum RSS module', + 'RSS_FORUM_EXPLAIN' => 'These are the setting for the forum RSS feeds module.<br/> Some of them can be overridden depending on the RSS and Main override settings.', + 'RSS_FORUM_ALTERNATE' => 'RSS alternate links', + 'RSS_FORUM_ALTERNATE_EXPLAIN' => 'Display or not forum RSS alternate links in browsers navigation bar', + 'RSS_FORUM_EXCLUDE' => 'Forum Exclusions', + 'RSS_FORUM_EXCLUDE_EXPLAIN' => 'You can here exclude one or several forum from the RSS listing.<br /><u>Note :</u> If this field is left empty, all readable forums will be listed.', + // Content + 'RSS_FORUM_CONTENT' => 'Forum Content settings', + 'RSS_FORUM_FIRST' => 'First message', + 'RSS_FORUM_FIRST_EXPLAIN' => 'Display or not the first post’s URL for all topics listed in the RSS feeds.<br/> By default, only the last post of each thread is listed. Displaying the first one as well means a bit more work for the server.', + 'RSS_FORUM_LAST' => 'Last message', + 'RSS_FORUM_LAST_EXPLAIN' => 'Display or not the last message for all topics listed in the RSS feeds.<br/> By default, only the last post of each thread is listed. This option is useful if you want to only list the first post URL in RSS feeds.<br/>Please note: Setting First message to YES and last message to NO is the same as building a news feed.', + 'RSS_FORUM_RULES' => 'Display Forum Rules', + 'RSS_FORUM_RULES_EXPLAIN' => 'Display or not the Forum Rules in the RSS feeds.', + // Reset settings + 'RSS_FORUM_RESET' => 'Forum RSS module', + 'RSS_FORUM_RESET_EXPLAIN' => 'Reset all the Forum RSS module options to default values.', + 'RSS_FORUM_MAIN_RESET' => 'Forums RSS Main', + 'RSS_FORUM_MAIN_RESET_EXPLAIN' => 'Reset to default all the options in the "RSS Feeds Settings" (main) tab of the forum RSS module.', + 'RSS_FORUM_CONTENT_RESET' => 'Forums RSS Content', + 'RSS_FORUM_CONTENT_RESET_EXPLAIN' => 'Reset to default all the Content options of the forum RSS module.', + 'RSS_FORUM_CACHE_RESET' => 'Forums RSS Cache', + 'RSS_FORUM_CACHE_RESET_EXPLAIN' => 'Reset to default all the caching options of the forum RSS module.', + 'RSS_FORUM_MODREWRITE_RESET' => 'Forums RSS URL rewriting', + 'RSS_FORUM_MODREWRITE_RESET_EXPLAIN' => 'Reset to default all the URL rewriting options of the forum RSS module.', + 'RSS_FORUM_GZIP_RESET' => 'Forums RSS Gunzip', + 'RSS_FORUM_GZIP_RESET_EXPLAIN' => 'Reset to default all the Gunzip options of the forum RSS module.', + 'RSS_FORUM_LIMIT_RESET' => 'Forums RSS Limits', + 'RSS_FORUM_LIMIT_RESET_EXPLAIN' => 'Reset to default all the Limits options of the forum RSS module.', + 'RSS_FORUM_SORT_RESET' => 'Forums RSS Sorting', + 'RSS_FORUM_SORT_RESET_EXPLAIN' => 'Reset to default all the Sorting options of the forum RSS module.', + 'RSS_FORUM_PAGINATION_RESET' => 'Forums RSS Pagination', + 'RSS_FORUM_PAGINATION_RESET_EXPLAIN' => 'Reset to default all the Pagination options of the forum RSS module.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/gym_common.php b/phpBB/language/en/gym_sitemaps/gym_common.php new file mode 100644 index 0000000000..2a117581e9 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/gym_common.php @@ -0,0 +1,121 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_common.php 259 2010-03-18 19:25:40Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_common [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'RSS_AUTH_SOME_USER' => '<b><u>Warning :</u></b>This item list is personalized according to <b>%s</b>\'s authorizations.<br/>Some of the item listed may not be viewable when not logged in.', + 'RSS_AUTH_THIS_USER' => '<b><u>Warning :</u></b>This item is personalized according to <b>%s</b>\'s authorizations.<br/>It will not be viewable when not logged in.', + 'RSS_AUTH_SOME' => '<b><u>Warning :</u></b>This item list is not public.<br/>Some of the item listed may not be viewable when not logged in.', + 'RSS_AUTH_THIS' => '<b><u>Warning :</u></b>This item is not public.<br/>It will not be viewable when not logged in.', + 'RSS_CHAN_LIST_TITLE' => 'Channel list', + 'RSS_CHAN_LIST_DESC' => 'This channel list is listing the available RSS feeds.', + 'RSS_CHAN_LIST_DESC_MODULE' => 'This channel list is listing the RSS feeds available for : %s.', + 'RSS_ANNOUCES_DESC' => 'This feeds is listing all the global announcements of : %s', + 'RSS_ANNOUNCES_TITLE' => 'Announces from : %s', + 'GYM_LAST_POST_BY' => 'Last post by ', + 'GYM_FIRST_POST_BY' => 'Post by ', + 'GYM_LINK' => 'Link', + 'GYM_SOURCE' => 'Source', + 'GYM_RSS_SOURCE' => 'Source', + 'RSS_MORE' => 'more', + 'RSS_CHANNELS' => 'Channels', + 'RSS_CONTENT' => 'Digest', + 'RSS_SHORT' => 'Short list', + 'RSS_LONG' => 'Long list', + 'RSS_NEWS' => 'News', + 'RSS_NEWS_DESC' => 'Latest news from', + 'RSS_REPORTED_UNAPPROVED' => 'This item is currently waiting for approval.', + + 'GYM_HOME' => 'Home Page', + 'GYM_FORUM_INDEX' => 'Forum Index', + 'GYM_LASTMOD_DATE' => 'Last modification date', + 'GYM_SEO' => 'Search Engine Optimization', + 'GYM_MINUTES' => 'minute(s)', + 'GYM_SQLEXPLAIN' => 'SQL Explain report', + 'GYM_SQLEXPLAIN_MSG' => 'Logged in as admin, you can check the %s for this page.', + 'GYM_BOOKMARK_THIS' => 'Bookmark this', + // Errors + 'GYM_ERROR_404' => 'This page does not exist or is not activated', + 'GYM_ERROR_404_EXPLAIN' => 'The server did not find any page corresponding to the URL you have used.', + 'GYM_ERROR_401' => 'You are not allowed to view this page.', + 'GYM_ERROR_401_EXPLAIN' => 'This page is only accessible to logged in users granted with the required authorisations.', + 'GYM_LOGIN' => 'You are not allowed to view this page.', + 'GYM_LOGIN_EXPLAIN' => 'You must be registered and logged in to view this page.', + 'GYM_TOO_FEW_ITEMS' => 'Page Unavailable', + 'GYM_TOO_FEW_ITEMS_EXPLAIN' => 'This page does not contain enough item to be displayed.', + 'GYM_TOO_FEW_ITEMS_EXPLAIN_ADMIN' => 'This page source is either empty or does not contain enough items (less than the configured threshold in ACP) to be displayed.<br/>A 404 Not Found header was sent to properly inform Search Engines to discard this link.', + + 'GOOGLE_SITEMAP' => 'Sitemap', + 'GOOGLE_SITEMAP_OF' => 'Sitemap of', + 'GOOGLE_MAP_OF' => 'Sitemap of %1$s', + 'GOOGLE_SITEMAPINDEX' => 'SitemapIndex', + 'GOOGLE_NUMBER_OF_SITEMAP' => 'Number of Sitemaps in this Google SitemapIndex', + 'GOOGLE_NUMBER_OF_URL' => 'Number of URLs in this Google Sitemap', + 'GOOGLE_SITEMAP_URL' => 'Sitemap URL', + 'GOOGLE_CHANGEFREQ' => 'Change freq.', + 'GOOGLE_PRIORITY' => 'priority', + + 'RSS_FEED' => 'RSS Feed', + 'RSS_FEED_OF' => 'RSS Feed of %1$s', + 'RSS_2_LINK' => 'RSS 2.0 feed link', + 'RSS_UPDATE' => 'Update', + 'RSS_LAST_UPDATE' => 'Last Update', + 'RSS_SUBSCRIBE_POD' => '<h2>Bookmark this feed Now!</h2>With your preferred service.', + 'RSS_SUBSCRIBE' => 'To subscribe to this RSS feed manually, please use the following URL :', + 'RSS_ITEM_LISTED' => 'One item listed.', + 'RSS_ITEMS_LISTED' => 'items listed.', + 'RSS_VALID' => 'RSS 2.0 Valid feed', + + // Old URL handling + 'RSS_1XREDIR' => 'This RSS Feed has been moved', + 'RSS_1XREDIR_MSG' => 'This RSS Feed has been moved, you can now find it here ', + // HTML sitemaps + 'HTML_MAP' => 'Site map', + 'HTML_MAP_OF' => 'Site map of %1$s', + 'HTML_MAP_NONE' => 'No site map', + 'HTML_NO_ITEMS' => 'No item', + 'HTML_NEWS' => 'News', + 'HTML_NEWS_OF' => 'News of %1$s', + 'HTML_NEWS_NONE' => 'No news', + 'HTML_PAGE' => 'Page', + 'HTML_MORE' => 'Read more', + // Forum + 'HTML_FORUM_MAP' => 'Forum site map', + 'HTML_FORUM_NEWS' => 'Forums news', + 'HTML_FORUM_GLOBAL_MAP' => 'Global announcement list', + 'HTML_FORUM_GLOBAL_NEWS' => 'Global announcements', + 'HTML_FORUM_ANNOUNCE_MAP' => 'Announcements list', + 'HTML_FORUM_ANNOUNCE_NEWS' => 'Announcements', + 'HTML_FORUM_STICKY_MAP' => 'Sticky list', + 'HTML_FORUM_STICKY_NEWS' => 'Stickies', + 'HTML_LASTX_TOPICS_TITLE' => 'Last %1$s active topics', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/gym_iso639.php b/phpBB/language/en/gym_sitemaps/gym_iso639.php new file mode 100644 index 0000000000..184691e6c7 --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/gym_iso639.php @@ -0,0 +1,215 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: gym_iso639.php 112 2009-09-30 17:21:34Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* gym_iso639 [English] +* +*/ +// This is the full iso 639-1 list from http://www.loc.gov/standards/iso639-2/php/French_list.php +// DEVELOPERS PLEASE NOTE +// +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +$lang = array_merge($lang, array( + 'ISO_639_1' => array( + 'ab' => 'Abkhazian (ab)', + 'aa' => 'Afar (aa)', + 'af' => 'Afrikaans (af)', + 'ak' => 'Akan (ak)', + 'sq' => 'Albanian (sq)', + 'am' => 'Amharic (am)', + 'ar' => 'Arabic (ar)', + 'an' => 'Aragonese (an)', + 'hy' => 'Armenian (hy)', + 'as' => 'Assamese (as)', + 'av' => 'Avaric (av)', + 'ae' => 'Avestan (ae)', + 'ay' => 'Aymara (ay)', + 'az' => 'Azerbaijani (az)', + 'bm' => 'Bambara (bm)', + 'ba' => 'Bashkir (ba)', + 'eu' => 'Basque (eu)', + 'be' => 'Belarusian (be)', + 'bn' => 'Bengali (bn)', + 'bh' => 'Bihari (bh)', + 'bi' => 'Bislama (bi)', + 'nb' => 'Bokmål, Norwegian; Norwegian Bokmål (nb)', + 'bs' => 'Bosnian (bs)', + 'br' => 'Breton (br)', + 'bg' => 'Bulgarian (bg)', + 'my' => 'Burmese (my)', + 'ca' => 'Catalan; Valencian (ca)', + 'km' => 'Central Khmer (km)', + 'ch' => 'Chamorro (ch)', + 'ce' => 'Chechen (ce)', + 'ny' => 'Chichewa; Chewa; Nyanja (ny)', + 'zh' => 'Chinese (zh)', + 'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic (cu)', + 'cv' => 'Chuvash (cv)', + 'kw' => 'Cornish (kw)', + 'co' => 'Corsican (co)', + 'cr' => 'Cree (cr)', + 'hr' => 'Croatian (hr)', + 'cs' => 'Czech (cs)', + 'da' => 'Danish (da)', + 'dv' => 'Divehi; Dhivehi; Maldivian (dv)', + 'nl' => 'Dutch; Flemish (nl)', + 'dz' => 'Dzongkha (dz)', + 'en' => 'English (en)', + 'eo' => 'Esperanto (eo)', + 'et' => 'Estonian (et)', + 'ee' => 'Ewe (ee)', + 'fo' => 'Faroese (fo)', + 'fj' => 'Fijian (fj)', + 'fi' => 'Finnish (fi)', + 'fr' => 'French (fr)', + 'ff' => 'Fulah (ff)', + 'gd' => 'Gaelic; Scottish Gaelic (gd)', + 'gl' => 'Galician (gl)', + 'lg' => 'Ganda (lg)', + 'ka' => 'Georgian (ka)', + 'de' => 'German (de)', + 'el' => 'Greek, Modern (1453-) (el)', + 'gn' => 'Guarani (gn)', + 'gu' => 'Gujarati (gu)', + 'ht' => 'Haitian; Haitian Creole (ht)', + 'ha' => 'Hausa (ha)', + 'he' => 'Hebrew (he)', + 'hz' => 'Herero (hz)', + 'hi' => 'Hindi (hi)', + 'ho' => 'Hiri Motu (ho)', + 'hu' => 'Hungarian (hu)', + 'is' => 'Icelandic (is)', + 'io' => 'Ido (io)', + 'ig' => 'Igbo (ig)', + 'id' => 'Indonesian (id)', + 'ia' => 'Interlingua (International Auxiliary Language Association) (ia)', + 'ie' => 'Interlingue (ie)', + 'iu' => 'Inuktitut (iu)', + 'ik' => 'Inupiaq (ik)', + 'ga' => 'Irish (ga)', + 'it' => 'Italian (it)', + 'ja' => 'Japanese (ja)', + 'jv' => 'Javanese (jv)', + 'kl' => 'Kalaallisut; Greenlandic (kl)', + 'kn' => 'Kannada (kn)', + 'kr' => 'Kanuri (kr)', + 'ks' => 'Kashmiri (ks)', + 'kk' => 'Kazakh (kk)', + 'ki' => 'Kikuyu; Gikuyu (ki)', + 'rw' => 'Kinyarwanda (rw)', + 'ky' => 'Kirghiz; Kyrgyz (ky)', + 'kv' => 'Komi (kv)', + 'kg' => 'Kongo (kg)', + 'ko' => 'Korean (ko)', + 'kj' => 'Kuanyama; Kwanyama (kj)', + 'ku' => 'Kurdish (ku)', + 'lo' => 'Lao (lo)', + 'la' => 'Latin (la)', + 'lv' => 'Latvian (lv)', + 'li' => 'Limburgan; Limburger; Limburgish (li)', + 'ln' => 'Lingala (ln)', + 'lt' => 'Lithuanian (lt)', + 'lu' => 'Luba-Katanga (lu)', + 'lb' => 'Luxembourgish; Letzeburgesch (lb)', + 'mk' => 'Macedonian (mk)', + 'mg' => 'Malagasy (mg)', + 'ms' => 'Malay (ms)', + 'ml' => 'Malayalam (ml)', + 'mt' => 'Maltese (mt)', + 'gv' => 'Manx (gv)', + 'mi' => 'Maori (mi)', + 'mr' => 'Marathi (mr)', + 'mh' => 'Marshallese (mh)', + 'mo' => 'Moldavian (mo)', + 'mn' => 'Mongolian (mn)', + 'na' => 'Nauru (na)', + 'nv' => 'Navajo; Navaho (nv)', + 'nd' => 'Ndebele, North; North Ndebele (nd)', + 'nr' => 'Ndebele, South; South Ndebele (nr)', + 'ng' => 'Ndonga (ng)', + 'ne' => 'Nepali (ne)', + 'se' => 'Northern Sami (se)', + 'no' => 'Norwegian (no)', + 'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian (nn)', + 'oc' => 'Occitan (post 1500); Provençal (oc)', + 'oj' => 'Ojibwa (oj)', + 'or' => 'Oriya (or)', + 'om' => 'Oromo (om)', + 'os' => 'Ossetian; Ossetic (os)', + 'pi' => 'Pali (pi)', + 'pa' => 'Panjabi; Punjabi (pa)', + 'fa' => 'Persian (fa)', + 'pl' => 'Polish (pl)', + 'pt' => 'Portuguese (pt)', + 'ps' => 'Pushto (ps)', + 'qu' => 'Quechua (qu)', + 'ro' => 'Romanian (ro)', + 'rm' => 'Romansh (rm)', + 'rn' => 'Rundi (rn)', + 'ru' => 'Russian (ru)', + 'sm' => 'Samoan (sm)', + 'sg' => 'Sango (sg)', + 'sa' => 'Sanskrit (sa)', + 'sc' => 'Sardinian (sc)', + 'sr' => 'Serbian (sr)', + 'sn' => 'Shona (sn)', + 'ii' => 'Sichuan Yi (ii)', + 'sd' => 'Sindhi (sd)', + 'si' => 'Sinhala; Sinhalese (si)', + 'sk' => 'Slovak (sk)', + 'sl' => 'Slovenian (sl)', + 'so' => 'Somali (so)', + 'st' => 'Sotho, Southern (st)', + 'es' => 'Spanish; Castilian (es)', + 'su' => 'Sundanese (su)', + 'sw' => 'Swahili (sw)', + 'ss' => 'Swati (ss)', + 'sv' => 'Swedish (sv)', + 'tl' => 'Tagalog (tl)', + 'ty' => 'Tahitian (ty)', + 'tg' => 'Tajik (tg)', + 'ta' => 'Tamil (ta)', + 'tt' => 'Tatar (tt)', + 'te' => 'Telugu (te)', + 'th' => 'Thai (th)', + 'bo' => 'Tibetan (bo)', + 'ti' => 'Tigrinya (ti)', + 'to' => 'Tonga (Tonga Islands) (to)', + 'ts' => 'Tsonga (ts)', + 'tn' => 'Tswana (tn)', + 'tr' => 'Turkish (tr)', + 'tk' => 'Turkmen (tk)', + 'tw' => 'Twi (tw)', + 'ug' => 'Uighur; Uyghur (ug)', + 'uk' => 'Ukrainian (uk)', + 'ur' => 'Urdu (ur)', + 'uz' => 'Uzbek (uz)', + 've' => 'Venda (ve)', + 'vi' => 'Vietnamese (vi)', + 'vo' => 'Volapük (vo)', + 'wa' => 'Walloon (wa)', + 'cy' => 'Welsh (cy)', + 'fy' => 'Western Frisian (fy)', + 'wo' => 'Wolof (wo)', + 'xh' => 'Xhosa (xh)', + 'yi' => 'Yiddish (yi)', + 'yo' => 'Yoruba (yo)', + 'za' => 'Zhuang; Chuang (za)', + 'zu' => 'Zulu (zu)', + ), +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/gym_sitemaps/install.php b/phpBB/language/en/gym_sitemaps/install.php new file mode 100644 index 0000000000..8f08971acf --- /dev/null +++ b/phpBB/language/en/gym_sitemaps/install.php @@ -0,0 +1,107 @@ +<?php +/** +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: install.php 204 2009-12-20 12:04:51Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* +* install [English] +* +*/ +/** +* DO NOT CHANGE +*/ +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + // Install + 'SEO_INSTALL_PANEL' => 'Gym Sitemaps & RSS Installation Panel', + 'CAT_INSTALL_GYM_SITEMAPS' => 'Install GYM Sitemaps', + 'CAT_UNINSTALL_GYM_SITEMAPS' => 'Un-install GYM Sitemaps', + 'CAT_UPDATE_GYM_SITEMAPS' => 'Update GYM Sitemaps', + 'SEO_ERROR_INSTALL' => 'An error occurred during the installation process. If you want to retry the installation, uninstall first.', + 'SEO_ERROR_INSTALLED' => 'The %s module is already installed.', + 'SEO_ERROR_ID' => 'The %1$ module had no ID.', + 'SEO_ERROR_UNINSTALLED' => 'The %s module is already uninstalled.', + 'SEO_ERROR_INFO' => 'Information :', + 'SEO_FINAL_INSTALL_GYM_SITEMAPS' => 'Login to ACP', + 'SEO_FINAL_UPDATE_GYM_SITEMAPS' => 'Login to ACP', + 'SEO_FINAL_UNINSTALL_GYM_SITEMAPS' => 'Return to forum index', + 'SEO_OVERVIEW_TITLE' => 'GYM sitemaps & RSS Overview', + 'SEO_OVERVIEW_BODY' => '<p>Welcome to the phpBB SEO GYM sitemaps & RSS %1$s installer.</p><p>Please read <a href="%3$s" title="Check the release thread" target="_phpBBSEO"><b>the release thread</b></a> for more information</p><p><strong style="text-transform: uppercase;">Note:</strong> You must have already performed the required code changes and uploaded all the new files before you can proceed with this install wizard.</p><p>This installation system will guide you through the process of installing the GYM sitemaps & RSS admin control panel (ACP). It will allow you generate efficient and Search Engine Optimized Google Sitemaps and RSS feeds. Its modular design will allow you to generate Google Sitemaps and RSS feeds for any php/SQL application installed on your site, using dedicated plug-ins. Let’s meet in the <a href="%3$s" title="Support forum" target="_phpBBSEO"><b>support forum</b></a> for anything regarding the GYM Sitemaps & RSS module.</p> ', + 'CAT_SEO_PREMOD' => 'GYM Sitemaps & RSS', + 'SEO_INSTALL_INTRO' => 'Welcome to the phpBB SEO GYM sitemaps & RSS installer.', + 'SEO_INSTALL_INTRO_BODY' => '<p>You are about to install the %1$s %2$s mod. This install tool will activate the GYM Sitemaps & RSS admin control panel in the phpBB ACP.</p><p>Once installed, you will need to go to the ACP to choose the appropriate settings.</p> + <p><strong>Note:</strong>If it’s the first time you have installed this mod, we strongly encourage you to take the time to test the various features of the module on a local or private test server before going online.</p><br/> + <p>Requirements :</p> + <ul> + <li>Apache server (Linux OS) with mod_rewrite for the URL rewriting features of the module.</li> + <li>IIS server (Windows OS) with isapi_rewrite for the URL rewriting features of the module, but you will need to adapt the rewriterules in the httpd.ini</li> + </ul>', + 'SEO_INSTALL' => 'Install', + 'UN_SEO_INSTALL_INTRO' => 'Welcome to the GYM Sitemaps & RSS un-installer', + 'UN_SEO_INSTALL_INTRO_BODY' => '<p>You are about to uninstall the %1$s %2$s mod.</p> + <p><strong>Note:</strong> Sitemaps and feeds will no longer be available once you have uninstalled the module.</p>', + 'UN_SEO_INSTALL' => 'Uninstall', + 'SEO_INSTALL_CONGRATS' => 'Congratulations!', + 'SEO_INSTALL_CONGRATS_EXPLAIN' => '<p>You have now successfully installed the %1$s %2$s mod. Go to phpBB ACP and proceed with the mod settings.<p> + <p>It will show up in the phpBB SEO Category; among many other things you will be able to :</p> + <h2>Accurately configure you Google Sitemaps and RSS feeds</h2> + <p>Google sitemaps and RSS feeds supports advanced XSLt styling, phpBB’s CSS will even be applied to these without editing a single line of code.</p> + <p>Google sitemaps and RSS feeds will auto detect the phpBB SEO mod rewrites and their settings; using other URL rewriting mod is made easy.</p> + <h2>Generate a personalized .htaccess</h2> + <p>With the phpBB SEO mod rewrite and once you will have set up the above options, you will be able to generate a personalized .htaccess quickly and save it directly on the server.</p><br/><h3>Install Report :</h3>', + 'UN_SEO_INSTALL_CONGRATS' => 'The GYM Sitemaps & RSS ACP module was removed.', + 'UN_SEO_INSTALL_CONGRATS_EXPLAIN' => '<p>You have now successfully uninstalled the %1$s %2$s mod.<p> + <p> You Google sitemaps and RSS feeds are not available any more.</p>', + 'SEO_VALIDATE_INFO' => 'Validation Info :', + 'SEO_LICENCE_TITLE' => 'GNU LESSER GENERAL PUBLIC LICENSE', + 'SEO_LICENCE_BODY' => 'The phpBB SEO GYM Sitemaps & RSS is released under the GNU LESSER GENERAL PUBLIC LICENSE.', + 'SEO_SUPPORT_TITLE' => 'Support', + 'SEO_SUPPORT_BODY' => 'Full support will be given in the <a href="%1$s" title="Visit the %2$s forum" target="_phpBBSEO"><b>%2$s forum</b></a>. We will provide answers to general setup questions, configuration problems, and support for determining common problems.</p><p>Be sure to visit our <a href="http://www.phpbb-seo.com/boards/" title="SEO Forum" target="_phpBBSEO"><b>Search Engine Optimization forums</b></a>.</p><p>You should <a href="http://www.phpbb-seo.com/boards/profile.php?mode=register" title="Register to phpBB SEO" target="_phpBBSEO"><b>register</b></a>, log in and <a href="%3$s" title="Be notified about updates" target="_phpBBSEO"><b>subscribe to the release thread</b></a> to be notified by mail upon each update.', + // Security + 'SEO_LOGIN' => 'The board requires you to be registered and logged in to view this page.', + 'SEO_LOGIN_ADMIN' => 'The board requires you to be logged in as admin to view this page.<br/>Your session has been purged for security purposes.', + 'SEO_LOGIN_FOUNDER' => 'The board requires you to be logged in as the founder to view this page.', + 'SEO_LOGIN_SESSION' => 'Session Check failed.<br/>The Settings were not altered.<br/>Your session has been purged for security purposes.', + // Cache status + 'SEO_CACHE_FILE_TITLE' => 'Cache file status', + 'SEO_CACHE_STATUS' => 'The cache folder configured is : <b>%s</b>', + 'SEO_CACHE_FOUND' => 'The cache folder was successfully found.', + 'SEO_CACHE_NOT_FOUND' => 'The cache folder was not found.', + 'SEO_CACHE_WRITABLE' => 'The cache folder is writable.', + 'SEO_CACHE_not writeable' => 'The cache folder is not writeable. You need to CHMOD it to 0777.', + 'SEO_CACHE_FORUM_NAME' => 'Forum name', + 'SEO_CACHE_URL_OK' => 'URL Cached', + 'SEO_CACHE_URL_NOT_OK' => 'This Forum URL is not cached', + 'SEO_CACHE_URL' => 'Final URL', + 'SEO_CACHE_MSG_OK' => 'The cache file was updated successfully.', + 'SEO_CACHE_MSG_FAIL' => 'An error occurred while updating the cache file.', + 'SEO_CACHE_UPDATE_FAIL' => 'The URL you entered cannot be used, the cache was left untouched.', + // Update + 'UPDATE_SEO_INSTALL_INTRO' => 'Welcome to the phpBB SEO GYM sitemaps & RSS updater.', + 'UPDATE_SEO_INSTALL_INTRO_BODY' => '<p>You are about to update the %1$s module to %2$s. This script will update the phpBB data base.<br/>Your current settings won’t be affected.</p> + <p><strong>Note:</strong> This script will not update GYM Sitemaps & RSS physical files.<br/><br/>To update from all 2.0.x (phpBB3) versions you <b>must</b> upload all files in the <b>root/</b> directory of the archive to your phpBB/ ftp directory, after you will have taken care manually of the eventual code change you would have implemented in the template files (directory phpBB/styles/, .html, .js and .xsl) added by the module.<br/><br/>You <b>can</b> restart this update script when you want, for example if you did not upload the required files or simply to display the update code changes for phpBB3 files again.</p>', + 'UPDATE_SEO_INSTALL' => 'Update', + 'SEO_ERROR_NOTINSTALLED' => 'GYM Sitemaps & RSS is not installed!', + 'SEO_UPDATE_CONGRATS_EXPLAIN' => '<p>You have now successfully updated %1$s to %2$s.<p> + <p><strong>Note:</strong> This script does not update GYM Sitemaps & RSS physical files.</p><br/><b>Please</b> implement the code changes listed below.<br/><h3>Update report :</h3>', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/mods/acp_phpbb_seo.php b/phpBB/language/en/mods/acp_phpbb_seo.php new file mode 100644 index 0000000000..7d723aa994 --- /dev/null +++ b/phpBB/language/en/mods/acp_phpbb_seo.php @@ -0,0 +1,277 @@ +<?php +/** +* +* acp_phpbb_seo [English] +* +* @package Ultimate SEO URL phpBB SEO +* @version $Id: acp_phpbb_seo.php 249 2010-03-11 05:08:04Z Typo $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://www.opensource.org/licenses/rpl1.5.txt Reciprocal Public License 1.5 +* +*/ +/** +* DO NOT CHANGE +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + // ACP Main CAT + 'ACP_CAT_PHPBB_SEO' => 'phpBB SEO', + 'ACP_MOD_REWRITE' => 'URL Rewriting settings', + // ACP phpBB seo class + 'ACP_PHPBB_SEO_CLASS' => 'phpBB SEO Class settings', + 'ACP_PHPBB_SEO_CLASS_EXPLAIN' => 'You can here set up various options of the phpBB SEO %1$s mod (%2$s).<br/>The various default settings such as the delimiters and suffixes still must be set up in <b>phpbb_seo/includes/setup_phpbb_seo.php</b>, since changing these implies an .htaccess update and most likely appropriate redirections.%3$s', + 'ACP_PHPBB_SEO_VERSION' => 'Version', + 'ACP_PHPBB_SEO_MODE' => 'Mode', + 'ACP_SEO_SUPPORT_FORUM' => 'Support Forum', + // ACP forum urls + 'ACP_FORUM_URL' => 'Forum URL Management', + 'ACP_FORUM_URL_EXPLAIN' => 'You can here see what’s in the cache file containing the forum title to inject in their URLs.<br/>Forum in green colors are cached, the one in red are not yet.<br/><br/><b style="color:red">Please Note :</b><br/><em><b>any-title-fxx/</b> will always be properly redirected with the Zero Duplicate but it won’t be the case if you edit <b>any-title/</b> to <b>something-else/</b>.<br/> In such case, <b>any-title/</b> will for now be treated as a forum that does not exist if you do not set appropriate redirections.</em>', + 'ACP_NO_FORUM_URL' => '<b>Forum URL Management disabled<b><br/>The forum URL management is only available in advanced and Mixed mode and when Forum URL caching is activated.<br/>Forum URLs already configured will stay active in advanced and Mixed mode.', + // ACP .htaccess + 'ACP_HTACCESS' => '.htaccess', + 'ACP_HTACCESS_EXPLAIN' => 'This tool will help you out building your .htacess.<br/>The version proposed bellow is based on your phpbb_seo/phpbb_seo_class.php settings.<br/>You can edit the $seo_ext and $seo_static values before you install the .htaccess to get personalized URLs.<br/>You can for example choose to use .htm instead of .html, "message" instead of "post" "mysite-team" instead of "the-team" and so on.<br/>If you edit these while they were already indexed in SE, you’ll need personalized redirections.<br/>The default settings are not bad at all, you can skip this step without worries if you prefer.<br/>It’s though the best time to do it, doing it after a while will require some personalized redirections.<br/>By default the following .htaccess shall be uploaded in the domain’s root (eg where www.example.com is linked).<br/>If phpBB is installed in a sub folder, hitting the more option below will add an option to upload it in the phpBB folder instead.', + 'SEO_HTACCESS_RBASE' => '.htaccess location', + 'SEO_HTACCESS_RBASE_EXPLAIN' => 'Put the .htaccess in the phpBB folder ?<br/>The RewriteBase setting allow to put the forum’s .htaccess in it’s folder. It’s usually more convenient to put the .htaccess in the domain’s root folder even when phpBB is installed in a sub-folder, but you may prefer to put it in the forum folder instead.', + 'SEO_HTACCESS_SLASH' => 'RegEx Right Slash', + 'SEO_HTACCESS_SLASH_EXPLAIN' => 'Depending on the specific host you are using, you might have to get rid of or add the slash ("/") at the beginning of the right part of each rewriterules. This particular slash is used by default when .htaccess are located at the root level. It’s the contrary for when phpBB would be installed in a sub-folder and you’d want to use an .htaccess in the same folder.<br/>Default settings should generally work, but if it’s not the case, try regenerating an .htaccess by hitting the "Re-generate" button.', + 'SEO_HTACCESS_WSLASH' => 'RegEx Left Slash', + 'SEO_HTACCESS_WSLASH_EXPLAIN' => 'Depending on the specific host you are using, you might have to add a slash ("/") at the beginning of the left part of each rewriterules. This particular slash ("/") is never used by default.<br/>Default settings should generally work, but if it’s not the case, try regenerating an .htaccess by hitting the "Re-generate" button.', + 'SEO_MORE_OPTION' => 'More Options', + 'SEO_MORE_OPTION_EXPLAIN' => 'If the first suggested .htaccess does not work.<br/>First make sure mod_rewrite is activated on your server.<br/>Then, make sure you uploaded it in the right folder, and that another one is not perturbing.<br/>If not enough, hit the "more option" button.', + 'SEO_HTACCESS_SAVE' => 'Save the .htaccess', + 'SEO_HTACCESS_SAVE_EXPLAIN' => 'If checked, an .htaccess files will be generated upon submit in the phpbb_seo/cache/ folder. It’s ready to go with your last settings, you will still have to move it in the right place.', + 'SEO_HTACCESS_ROOT_MSG' => 'Once you are ready, you can select the .htaccess code, and paste it in a .htaccess file or use the "Save .htaccess" option bellow.<br/> This .htaccess is meant to be used in the domain’s root folder, which in your case is where %1$s leads to in your FTP.<br/><br/>You can generate an .htaccess meant to be used in the eventual phpBB sub-directory using the "More options" option bellow.', + 'SEO_HTACCESS_FOLDER_MSG' => 'Once you are ready, you can select the .htaccess code, and paste it in a .htaccess file or use the "Save .htaccess" option bellow.<br/> This .htaccess is meant to be used in the folder where phpBB is installed, which in your case is where %1$s leads to in your FTP.', + 'SEO_HTACCESS_CAPTION' => 'Caption', + 'SEO_HTACCESS_CAPTION_COMMENT' => 'Comments', + 'SEO_HTACCESS_CAPTION_STATIC' => 'Static parts, editable in phpbb_seo_class.php', + 'SEO_HTACCESS_CAPTION_DELIM' => 'Delimiters, editable in phpbb_seo_class.php', + 'SEO_HTACCESS_CAPTION_SUFFIX' => 'Suffixes, editable in phpbb_seo_class.php', + 'SEO_HTACCESS_CAPTION_SLASH' => 'Optional slashes', + 'SEO_SLASH_DEFAULT' => 'Default', + 'SEO_SLASH_ALT' => 'Alternate', + 'SEO_MOD_TYPE_ER' => 'The mod rewrite type is not set up properly in phpbb_seo/phpbb_seo_class.php.', + 'SEO_SHOW' => 'Show', + 'SEO_HIDE' => 'Hide', + 'SEO_SELECT_ALL' => 'Select all', + // ACP extended + 'ACP_SEO_EXTENDED_EXPLAIN' => 'phpBB SEO mods extended settings.', + 'SEO_EXTERNAL_LINKS' => 'External links', + 'SEO_EXTERNAL_LINKS_EXPLAIN' => 'Open, or not, external links in a new browser window / tab', + 'SEO_EXTERNAL_SUBDOMAIN' => 'Sub-domain links', + 'SEO_EXTERNAL_SUBDOMAIN_EXPLAIN' => 'Open, or not, sub-domains (of your forum domain) links in a new browser window / tab', + 'SEO_EXTERNAL_CLASSES' => 'External by css class', + 'SEO_EXTERNAL_CLASSES_EXPLAIN' => 'here you can define some css classes that will activate the new window feature on links using it. Coma separated list of class names, example: postlink,external', + // Titles + 'SEO_PAGE_TITLES' => '<a href="http://www.phpbb-seo.com/en/phpbb-seo-toolkit/optimal-titles-t1289.html" title="Optimal Titles mod" onclick="window.open(this.href); return false;">Page titles</a>', + 'SEO_APPEND_SITENAME' => 'Append site name to page titles', + 'SEO_APPEND_SITENAME_EXPLAIN' => 'Append, or not, site name to page titles.<br/><b style="color:red;">Warning :</b><br/>This option requires that you properly edited all your overall_header.html for the Optimal titles mod, site name could be repeated in page titles otherwise', + // Meta + 'SEO_META' => '<a href="http://www.phpbb-seo.com/en/phpbb-seo-toolkit/seo-dynamic-meta-tags-t1308.html" title="Dynamic Meta tags mod" onclick="window.open(this.href); return false;">Meta tags</a>', + 'SEO_META_TITLE' => 'Meta title', + 'SEO_META_TITLE_EXPLAIN' => 'Default Meta title, used on page not defining a page title. Inactivates the meta title tag if empty', + 'SEO_META_DESC' => 'Meta description', + 'SEO_META_DESC_EXPLAIN' => 'Default Meta description, used on page not defining a meta description', + 'SEO_META_DESC_LIMIT' => 'Meta description limit', + 'SEO_META_DESC_LIMIT_EXPLAIN' => 'Limit in words for the Meta description tag', + 'SEO_META_BBCODE_FILTER' => 'Bbcodes Filter', + 'SEO_META_BBCODE_FILTER_EXPLAIN' => 'Coma separated list of BBcodes which will be fully filtered in meta tags. Others will simply be deactivated and their content may apear in meta tags.<br/> Default filtered BBcodes are : <b>img,url,flash,code</b>.<br/><b style="color:red;">Attention :</b><br/>Not filtering img, url and flash BBcode is not a good idea, as well as the code one in most cases. Generally speaking, only keep BBcode’s content for BBcodes having interesting content for metas', + 'SEO_META_KEYWORDS' => 'Meta keywords', + 'SEO_META_KEYWORDS_EXPLAIN' => 'Default Meta keywords, used on page not defining meta keywords. Simply enter a list of keywords', + 'SEO_META_KEYWORDS_LIMIT' => 'Meta keywords limit', + 'SEO_META_KEYWORDS_LIMIT_EXPLAIN' => 'Limit in words for the Meta keywords tag', + 'SEO_META_MIN_LEN' => 'Short words filter', + 'SEO_META_MIN_LEN_EXPLAIN' => 'Minimum amount of characters in a word to be included in the Meta keywords tag, only words composed of more than this limit will be taken into account', + 'SEO_META_CHECK_IGNORE' => 'Ignore words filter', + 'SEO_META_CHECK_IGNORE_EXPLAIN' => 'Apply, or not, the search_ignore_words.php exclusions in the meta keywords tag', + 'SEO_META_LANG' => 'Meta lang', + 'SEO_META_LANG_EXPLAIN' => 'Lang code used in meta tags', + 'SEO_META_COPY' => 'Meta copyright', + 'SEO_META_COPY_EXPLAIN' => 'Copyright used in meta tags. Inactivates the meta copyright tag if empty', + 'SEO_META_FILE_FILTER' => 'File filter', + 'SEO_META_FILE_FILTER_EXPLAIN' => 'Coma separated list of physical php script file name that should not be indexed (robots:noindex,follow). Example : ucp,mcp', + 'SEO_META_GET_FILTER' => '_GET filter', + 'SEO_META_GET_FILTER_EXPLAIN' => 'Coma separated list of _GET variable that should not be indexed (robots:noindex,follow). Example : style,hilit,sid', + 'SEO_META_ROBOTS' => 'Meta Robots', + 'SEO_META_ROBOTS_EXPLAIN' => 'The Meta Robots tag tells bots how to index your pages. It is set by default to "index,follow", which allow bots to index and cache your pages and to follow links in them. Inactivates the meta Robots tag if empty.<br/><b style="color:red;">Warning :</b><br/>This tag is sensible, if you were to use "noindex", none of your pages would be indexed', + 'SEO_META_NOARCHIVE' => 'Noarchive Meta Robots', + 'SEO_META_NOARCHIVE_EXPLAIN' => 'The Noarchive Meta Robots tag tells bots if they can or not cache the page. It only concern caching, it has no relation with indexing and SERPs of the page.<br/>You can here select a list of forum that will have the "noarchive" option added to theire meta robots.<br/>This feature can be handy for example when you have some forums opened to bots but closed to guests. Adding the "noarchive" option to them will prevent guest from accessing content through the search engine cache, while the forum and its topic will still appear in SERPs', + // Install + 'SEO_INSTALL_PANEL' => 'phpBB SEO Installation Panel', + 'SEO_ERROR_INSTALL' => 'An error occured during the installtion process. Uninstall once is safer before you retry.', + 'SEO_ERROR_INSTALLED' => 'The %s module is already installed.', + 'SEO_ERROR_ID' => 'The %1$ module had no ID.', + 'SEO_ERROR_UNINSTALLED' => 'The %s module is already uninstalled.', + 'SEO_ERROR_INFO' => 'Information :', + 'SEO_FINAL_INSTALL_PHPBB_SEO' => 'Login to ACP', + 'SEO_FINAL_UNINSTALL_PHPBB_SEO' => 'Return to forum index', + 'CAT_INSTALL_PHPBB_SEO' => 'Installation', + 'CAT_UNINSTALL_PHPBB_SEO' => 'Un-Installation', + 'SEO_OVERVIEW_TITLE' => 'phpBB SEO Ultimate SEO URL Overview', + 'SEO_OVERVIEW_BODY' => 'Welcome to our public release of the %1$s phpBB3 SEO mod rewrite %2$s.</p><p>Please read <a href="%3$s" title="Check the release thread" onclick="window.open(this.href); return false;"><b>the release thread</b></a> for more information</p><p><strong style="text-transform: uppercase;">Note:</strong> You must have already perfomed the required code changes and uploaded all the new files before you can proceed with this install wizard.</p><p>This installation system will guide you through the process of installing the phpBB3 SEO mod rewrite admin control panel. It will allow you to accurately chose your phpBB rewritten URL standard for the best results in search engines</p>.', + 'CAT_SEO_PREMOD' => 'phpBB SEO Premod', + 'SEO_PREMOD_TITLE' => 'phpBB SEO Premod overview', + 'SEO_PREMOD_BODY' => 'Welcome to our public release of the phpBB SEO Premod.</p><p>Please read <a href="http://www.phpbb-seo.com/en/phpbb-seo-premod/seo-url-premod-t1549.html" title="Check the release thread" onclick="window.open(this.href); return false;"><b>the release thread</b></a> for more information</p><p><strong style="text-transform: uppercase;">Note:</strong> You will be able to chose between the three phpBB3 SEO mod rewrites.<br/><br/><b>The three different URL rewriting standards available :</b><ul><li><a href="http://www.phpbb-seo.com/en/simple-seo-url/simple-phpbb-seo-url-t1566.html" title="More details about the Simple mod"><b>The Simple mod</b></a>,</li><li><a href="http://www.phpbb-seo.com/en/mixed-seo-url/mixed-phpbb-seo-url-t1565.html" title="More details about the Mixed mod"><b>The Mixed mod</b></a>,</li><li><a href="http://www.phpbb-seo.com/en/advanced-seo-url/advanced-phpbb-seo-url-t1219.html" title="More details about the Advanced mod"><b>Advanced</b></a>.</li></ul>This choice is very important, we encourage you to take the time to fully discover the SEO features of this premod before you go online.<br/>This premod is as simple to install as phpBB3, just follow the regular process.<br/><br/> + <p>Requirements for URL rewriting :</p> + <ul> + <li>Apache server (linux OS) with mod_rewrite module.</li> + <li>IIS server (windows OS) with isapi_rewrite module, but you will need to adapt the rewriterules in the httpd.ini</li> + </ul> + <p>Once installed, you will need to go to the ACP to set up and activate the mod.</p>', + 'SEO_LICENCE_TITLE' => 'RECIPROCAL PUBLIC LICENSE', + 'SEO_LICENCE_BODY' => 'The phpBB SEO mod rewrites are released under the RPL licence which states you cannot remove the phpBB SEO credits.<br/>For more details about possible exceptions, please contact a phpBB SEO administrator (primarily SeO or dcz).', + 'SEO_PREMOD_LICENCE' => 'The phpBB SEO mod rewrites and the Zero duplicate included in this Premod are released under the RPL licence which states you cannot remove the phpBB SEO credits.<br/>For more details about possible exceptions, please contact a phpBB SEO administrator (primarily SeO or dcz).', + 'SEO_SUPPORT_TITLE' => 'Support', + 'SEO_SUPPORT_BODY' => 'Full support will be given in the <a href="%1$s" title="Visit the %2$s SEO URL forum" onclick="window.open(this.href); return false;"><b>%2$s SEO URL forum</b></a>. We will provide answers to general setup questions, configuration problems, and support for determining common problems.</p><p>Be sure to visit our <a href="http://www.phpbb-seo.com/en/" title="SEO Forum" onclick="window.open(this.href); return false;"><b>Search Engine Optimization forums</b></a>.</p><p>You should <a href="http://www.phpbb-seo.com/en/ucp.php?mode=register" title="Register to phpBB SEO" onclick="window.open(this.href); return false;"><b>register</b></a>, log in and <a href="%3$s" title="Be notified about updates" onclick="window.open(this.href); return false;"><b>subscribe to the release thread</b></a> to be notified by mail upon each update.', + 'SEO_PREMOD_SUPPORT_BODY' => 'Full support will be given in the <a href="http://www.phpbb-seo.com/en/phpbb-seo-premod/seo-url-premod-t1549.html" title="Visit the phpBB SEO Premod forum" onclick="window.open(this.href); return false;"><b>phpBB SEO Premod forum</b></a>. We will provide answers to general setup questions, configuration problems, and support for determining common problems.</p><p>Be sure to visit our <a href="http://www.phpbb-seo.com/en/" title="SEO Forum" onclick="window.open(this.href); return false;"><b>Search Engine Optimization forums</b></a>.</p><p>You should <a href="http://www.phpbb-seo.com/en/ucp.php?mode=register" title="Register to phpBB SEO" onclick="window.open(this.href); return false;"><b>register</b></a>, log in and <a href="http://www.phpbb-seo.com/en/viewtopic.php?t=1549&watch=topic" title="Be notified about updates" onclick="window.open(this.href); return false;"><b>subscribe to the release thread</b></a> to be notified by mail upon each update.', + 'SEO_INSTALL_INTRO' => 'Welcome to the phpBB SEO Installation Wizard', + 'SEO_INSTALL_INTRO_BODY' => '<p>You are about to install the %1$s phpBB SEO mod rewrite %2$s. This install tool will activate the phpBB SEO mod rewrite control panel in phpBB ACP.</p><p>Once installed, you will need to go to the ACP to set up and activate the mod.</p> + <p><strong>Note:</strong> If it’s the first time you try this mod, we strongly encourage you to take the time to test the various url standard this mod can output on a local or private test serveur. This way, you won’t show different URL to bots every other day while testing. And you won’t discover a month after that you would have prefered different URLs. Patience is virtue SEO wise and even if the zero duplicate makes the HTTP redirecting very easy, you don’t want to redirect all your forum’s URL too often.</p><br/> + <p>Requirements :</p> + <ul> + <li>Apache server (linux OS) with mod_rewrite module.</li> + <li>IIS server (windows OS) with isapi_rewrite module, but you will need to adapt the rewriterules in the httpd.ini</li> + </ul>', + 'SEO_INSTALL' => 'Install', + 'UN_SEO_INSTALL_INTRO' => 'Welcome to the phpBB SEO uninstall Wizard', + 'UN_SEO_INSTALL_INTRO_BODY' => '<p>You are about to uninstall the %1$s phpBB SEO mod rewrite %2$s ACP module.</p> + <p><strong>Note:</strong> This will not deactivate URL rewriting on your board as long as the phpBB files are still modded.</p>', + 'UN_SEO_INSTALL' => 'Uninstall', + 'SEO_INSTALL_CONGRATS' => 'Congratulations!', + 'SEO_INSTALL_CONGRATS_EXPLAIN' => '<p>You have now successfully installed the %1$s phpBB3 SEO mod rewrite %2$s. You should now go to phpBB ACP and proceed with the mod rewrite settings.<p> + <p>In the new phpBB SEO category, you will be able to :</p> + <h2>Set up and activate URL rewriting</h2> + <p>Take your time, that’s where you will chose how your URLs will look like. The zero duplicate options will as well be set up from here when installed.</p> + <h2>Accurately chose your forum’s URL</h2> + <p>Using the Mixed or the Advanced mod, you will be able to dissociate Forum URLs from their titles and elect to use whatever keyword you may like in them</p> + <h2>Generate a personalized .htaccess</h2> + <p>Once you will have set up the above options, you will be able to generate a personalized .htaccess within no time and save it directly on the server.</p>', + 'UN_SEO_INSTALL_CONGRATS' => 'The phpBB SEO ACP module was removed.', + 'UN_SEO_INSTALL_CONGRATS_EXPLAIN' => '<p>You have now successfully uninstalled the %1$s phpBB3 SEO mod rewrite %2$s.<p> + <p>This will not deactivate URL rewriting on your board as long as the phpBB files are still modded.</p>', + 'SEO_VALIDATE_INFO' => 'Validation Info :', + 'SEO_SQL_ERROR' => 'SQL error', + 'SEO_SQL_TRY_MANUALLY' => 'The db user does not seems to have enough rights to run the required SQL query, please run it manually (phpMyadmin) :', + // Security + 'SEO_LOGIN' => 'The board requires you to be registered and logged in to view this page.', + 'SEO_LOGIN_ADMIN' => 'The board requires you to be logged in as admin to view this page.<br/>Your session has been destroyed for security purposes.', + 'SEO_LOGIN_FOUNDER' => 'The board requires you to be logged in as the founder to view this page.', + 'SEO_LOGIN_SESSION' => 'Session Check failed.<br/>The Settings were not altered.<br/>Your session has been destroyed for security purposes.', + // Cache status + 'SEO_CACHE_FILE_TITLE' => 'Cache file status', + 'SEO_CACHE_STATUS' => 'The cache directory configured is : <b>%s</b>', + 'SEO_CACHE_FOUND' => 'The cache directory was successfully found.', + 'SEO_CACHE_NOT_FOUND' => 'The cache directory was not found.', + 'SEO_CACHE_WRITABLE' => 'The cache directory is writable.', + 'SEO_CACHE_UNWRITABLE' => 'The cache directory is not writable. You need to CHMOD it to 0777.', + 'SEO_CACHE_INNER_UNWRITABLE' => 'Some files within the cache directory may not be writable, make sure you properly CHMOD the cache directory AND all files in it.', + 'SEO_CACHE_FORUM_NAME' => 'Forum name', + 'SEO_CACHE_URL_OK' => 'URL Cached', + 'SEO_CACHE_URL_NOT_OK' => 'This Forum URL is not cached', + 'SEO_CACHE_URL' => 'Final URL', + 'SEO_CACHE_MSG_OK' => 'The cache file was updated successfully.', + 'SEO_CACHE_MSG_FAIL' => 'An error occurred while updating the cache file.', + 'SEO_CACHE_UPDATE_FAIL' => 'The URL you entered cannot be used, the cache was left untouched.', + // Seo advices + 'SEO_ADVICE_DUPE' => 'A duplicate entry in title was detected for a forum URL : <b>%1$s</b>.<br/>It will stay unchanged until you update it.', + 'SEO_ADVICE_RESERVED' => 'A reserved (used by other urls, such as members profiles and such) entry in title was detected for a forum URL : <b>%1$s</b>.<br/>It will stay unchanged until you update it.', + 'SEO_ADVICE_LENGTH' => 'The URL cached is a bit too long.<br/>Consider using a smaller one', + 'SEO_ADVICE_DELIM' => 'The URL cached contains the SEO delimiter and ID.<br/>Consider setting up an original one.', + 'SEO_ADVICE_WORDS' => 'The URL cached contains a bit too many words.<br/>Consider setting up an better one.', + 'SEO_ADVICE_DEFAULT' => 'The ending URL, after formatting, is the default.<br/>Consider setting up an original one.', + 'SEO_ADVICE_START' => 'Forum URLs cannot end with a pagination parameter.<br/>They were thus removed from the one submitted.', + 'SEO_ADVICE_DELIM_REM' => 'Submitted forum URLs cannot end with a forum delimiter.<br/>They were thus removed from one submitted.', + // Mod Rewrite type + 'ACP_SEO_SIMPLE' => 'Simple', + 'ACP_SEO_MIXED' => 'Mixed', + 'ACP_SEO_ADVANCED' => 'Advanced', + 'ACP_ULTIMATE_SEO_URL' => 'Ultimate SEO URL', + // URL Sync + 'SYNC_REQ_SQL_REW' => 'You must activate SQL Rewriting to use this script !', + 'SYNC_TITLE' => 'URL Synchronization', + 'SYNC_WARN' => 'Attention, do not stop the script until it ends, and back up your db before you use it!', + 'SYNC_COMPLETE' => 'Synchronization completed !', + 'SYNC_RESET_COMPLETE' => 'Reset completed !', + 'SYNC_PROCESSING' => '<b>Processing, please wait ...</b><br/><br/><b>%1$s%%</b> have been processed. <br/>So far, <b>%2$s</b> items have been processed.<br/><b>%3$s</b> items in total, <b>%4$s</b> are processed at a time.<br/>Speed : <b>%5$s item/s.</b><br/>Time spent for this cycle : <b>%6$ss</b><br/>Estimated time left : <b>%7$s minute(s)</b>', + 'SYNC_ITEM_UPDATED' => '<b>%1$s</b> items have been updated', + 'SYNC_TOPIC_URLS' => 'Start topic URLs synchronization', + 'SYNC_RESET_TOPIC_URLS' => 'Reset all topic URLs', + 'SYNC_TOPIC_URL_NOTE' => 'You just activated the SQL Rewriting option, you should now synchronize all your topics URLs by going to %sthis page%s if you did not already.<br/>This will not change any of your current URLs<br/><b style="color:red">Please note :</b><br/><em>You should only synchronize your topics URLs once you have fully set up your url standard. It’s not a drama if you change your url standard after your synchronized topic URLs, but you should do it again each time you do.<br/>It’s not a drama either if you don’t, your topic URLs would in such case be updated upon each topic visit in case the topic URL would be empty or not matching your current standard.</em>', + // phpBB SEO Class option + 'url_rewrite' => 'Activate URL rewriting', + 'url_rewrite_explain' => 'Once you will have set up the below options, and generated your personalized .htaccess, you can activate URL rewriting and check if your rewritten URLs do work properly. If you get 404 errors, it’s most likely an .htaccess issue, try some of the .htaccess tool option to generate a new one.', + 'modrtype' => 'URL rewriting type', + 'modrtype_explain' => 'You have here the choice between three phpBB SEO mod rewrite types.<br/>The <a href="http://www.phpbb-seo.com/en/simple-seo-url/simple-phpbb-seo-url-t1566.html" title="More details about the Simple mod" onclick="window.open(this.href); return false;"><b>Simple</b></a> one,the <a href="http://www.phpbb-seo.com/en/mixed-seo-url/mixed-phpbb-seo-url-t1565.html" title="More details about the Mixed mod" onclick="window.open(this.href); return false;"><b>Mixed</b></a> one and the <a href="http://www.phpbb-seo.com/en/advanced-seo-url/advanced-phpbb-seo-url-t1219.html" title="More details about the Advanced mod" onclick="window.open(this.href); return false;"><b>Advanced</b></a> one.<br/><br/><b style="color:red">Please Note :</b><br/><em>Modifying this option will change all your URLs in your web site.<br/>Doing it with an already indexed web site should thus be considered with as much care as when migrating and not to often.<br/>So you’d better be decided to go for it or not.<br/>Changing this option requires and .htaccess update.</em>', + 'sql_rewrite' => 'Activate SQL Rewriting', + 'sql_rewrite_explain' => 'This option will allow you to choose url for each topic. You will be able to accurately set topic url when posting new topic or when editing an existing one. This functionality is though limited to forum admins and moderators.<br/><br/><b style="color:red">Please Note :</b><br/><em>Turning on this option will not change topic urls. Existing urls will be stored as they are displayed in the data base. But it may not be the case if you turn it off after you started to use it. In such case, personalized URLs may be treated as if they weren’t.<br/>The feature also has the great advantage to fasten the url rewriting by a lot, especially when using the virtual folder option in advanced mode, and to make it a lot easier to retrieve rewritten urls from any page.</em>', + 'profile_inj' => 'Profiles and groups injection', + 'profile_inj_explain' => 'You can here chose to inject nicknames, group names and user messages page (optional see below) in their URLs instead of the default static rewriting, <b>phpBB/nickname-uxx.html</b> instead of <b>phpBB/memberxx.html</b>.', + 'profile_vfolder' => 'Virtual folder Profiles', + 'profile_vfolder_explain' => 'You can here chose to simulate a folder structure for profiles and user messages page (optional see below) URLs, <b>phpBB/nickname-uxx/(topics/)</b> or <b>phpBB/memberxx/(topics/)</b> instead of <b>phpBB/nickname-uxx(-topics).html</b> and <b>phpBB/memberxx(-topics).html</b>.<br/><br/><b style="color:red">Please Note</b><br/><em>Profile ID removing will override this setting.<br/>Changing this option requires and .htaccess update</em>', + 'profile_noids' => 'Profiles ID removing', + 'profile_noids_explain' => 'When Profiles and groups injection is activated, you can here chose to use <b>example.com/phpBB/member/nickname</b> instead of the default <b>example.com/phpBB/nickname-uxx.html</b>. phpBB Uses an extra, but light, SQL query on such pages without user id.<br/><br/><b style="color:red">Please Note</b><br/><em>Special characters won’t be hadled the same by all browser. FF always urlencodes (<a href="http://www.php.net/urlencode">urlencode()</a>), and as it seems using Latin1 first, when IE and Opera do not. For advanced urlencoding options, please read the install file.<br/>Changing this option requires and .htaccess update</em>', + 'rewrite_usermsg' => 'Common Search and User messages pages rewriting', + 'rewrite_usermsg_explain' => 'This option mostly makes sens if you allow public access to both profiles and search pages.<br/> Using this option most likely implies a greater use of the search functions and thus a heavier server load.<br/> The URL rewriting type (with and without ID) follows the one set for profiles and groups.<br/><b>phpBB/messages/nickname/topics/</b> VS <b>phpBB/nickname-uxx-topics.html</b> VS <b>phpBB/memberxx-topics.html</b>.<br/>Additionally this options will activate the common search page rewriting, such as active topics, unanswered and newposts pages.<br/><br/><b style="color:red">Please Note :</b><br/><em>ID removing on these links will imply the same limitation as per the user profiles.<br/>Changing this option requires and .htaccess update</em>', + 'rewrite_files' => 'Attachment Rewriting', + 'rewrite_files_explain' => 'Activate phpBB Attachment Rewriting. Can be of a great help if you have many attached images worth being indexed. Files of course must be downloadable by bots for this to have a meaning SEOwise.<br/><br/><b style="color:red">Please Note :</b><br/><em>Make sure you have the required RewriteRule (# PHPBB FILES ALL MODES) in your .htaccess when you activate this option</em>', + 'rem_sid' => 'SID Removing', + 'rem_sid_explain' => 'SID will be removed from 100% of the URLs passing through the phpbb_seo class, for guests thus bots.<br/>This ensure bots won’t see any SID on forum, topic and post URLs, but visitors that do not accept cookies will most likely create more than one session.<br/>The Zero duplicate http 301 redirect url with SID for guest and bots by default.', + 'rem_hilit' => 'Highlights Removing', + 'rem_hilit_explain' => 'Highlights will be removed from 100% of the URLs passing through the phpbb_seo class, for guests thus bots.<br/>This ensure bots won’t see any Highlights on forum, topic and post URLs.<br/>The Zero duplicate will automatically follow this setting, eg http 301 redirect url with highlights for guest and bots.', + 'rem_small_words' => 'Remove small words', + 'rem_small_words_explain' => 'Allow to remove all words of less than three letters in rewritten URLs.<br/><br/><b style="color:red">Please Note</b><br/><em>The filtering will change potentially a lot of URLs in your web site.<br/>Even though the zero duplicate mod would take care of all the required redirecting when changing this option, starting to use it with an already indexed web site should thus be considered with as much care as when migrating and not too often.<br/>So you’d better be decided to go for it or not.</em>', + 'virtual_folder' => 'Virtual Folder', + 'virtual_folder_explain' => 'Allow to add the forum URL as a virtual folder in topic URLs.<br/><br/><b>Example :</b><br/><em><b>forum-title-fxx/topic-title-txx.html</b> VS <b>topic-title-txx.html</b> for a topic URL.</em><br/><br/><b style="color:red">Please Note</b><br/><em>The Virtual folder injection option can change all your web site’s URLs almost too easily.<br/>Starting to use it with an already indexed web site should thus be considered with as much care as when migrating and not too often.<br/>So you’d better be decided to go for it or not.<br/>Changing this option requires and .htaccess update.</em>', + 'virtual_root' => 'Virtual Root', + 'virtual_root_explain' => 'If phpBB is installed in a sub folder (example phpBB3/), you can simulate a root install for rewritten links.<br/><br/><b>Example :</b><br/><em><b>phpBB3/forum-title-fxx/topic-title-txx.html</b> VS <b>forum-title-fxx/topic-title-txx.html</b> for a topic URL.</em><br/><br/>This can be handy to shorten URLs a bit, especially if you are using the "Virtual Folder" feature. UnRewritten links will continue to appear and work in the phpBB folder.<br/><br/><b style="color:red">Please Note :</b><br/><em>Using this option requires to use a home page for the forum index (like forum.html).<br/> This option can change all your web site’s URLs almost too easily.<br/>Starting to use it with an already indexed web site should thus be considered with as much care as when migrating and not too often.<br/>So you’d better be decided to go for it or not.<br/>Changing this option requires and .htaccess update.</em>', + 'cache_layer' => 'Forum URL caching', + 'cache_layer_explain' => 'Turns on the cache for forum URLs and allow to separate forum titles from their URL<br/><br/><b>Example :</b><br/><em><b>forum-title-fxx/</b> VS <b>any-title-fxx/</b> for a forum URL.</em><br/><br/><b style="color:red">Please Note</b><br/><em>This option will allow you to change your forum URL, thus potentially many topic URLS if you are using the Virtual Folder option.<br/>The topic URLs will always be redirected properly with the Zero Duplicate.<br/>It will as well be the case for forum URL as long as you keep the delimiter and IDs, see below.</em>', + 'rem_ids' => 'Forum ID Removing', + 'rem_ids_explain' => 'Get rid of the IDs and delimiters in forum URLs. Only apply if Forum URL caching is activated.<br/><br/><b>Example :</b><br/><em><b>any-title-fxx/</b> VS <b>any-title/</b> for a forum URL.</em><br/><br/><b style="color:red">Please Note :</b><br/><em>This option will allow you to change your forum URL, thus potentially many topic URLS if you are using the Virtual Folder option.<br/>The topic URLs will always be redirected properly with the Zero Duplicate.<br/><b>It will not always be the case with the forum URLs :</b><br/><b>any-title-fxx/</b> will always be properly redirected with the Zero Duplicate but it won’t be the case if you edit <b>any-title/</b> to <b>something-else/</b>.<br/> In such case, <b>any-title/</b> will for now be treated as a forum that does not exist.<br/>So you’d better be decided to go for it or not, but it can really be powerful SEO wise.</em>', + // copyrights + 'copyrights' => 'Copyrights', + 'copyrights_img' => 'Link image', + 'copyrights_img_explain' => 'You can here chose to display the phpBB SEO copyright link as an image or as a text links.', + 'copyrights_txt' => 'Link text', + 'copyrights_txt_explain' => 'You can here chose the text to be used as the phpBB SEO copyright link text anchor. Leave empty for defaults.', + 'copyrights_title' => 'Link title', + 'copyrights_title_explain' => 'You can here chose the text to be used as the phpBB SEO copyright link title. Leave empty for defaults.', + // Zero duplicate + // Options + 'ACP_ZERO_DUPE_OFF' => 'Off', + 'ACP_ZERO_DUPE_MSG' => 'Post', + 'ACP_ZERO_DUPE_GUEST' => 'Guest', + 'ACP_ZERO_DUPE_ALL' => 'All', + 'zero_dupe' =>'Zero duplicate', + 'zero_dupe_explain' => 'The following settings concerns the Zero duplicate, you can modify them upon your needs.<br/>These do not imply any .htacess update.', + 'zero_dupe_on' => 'Activate the Zero duplicate', + 'zero_dupe_on_explain' => 'Allow to activate and deactivate the Zero duplicate redirections.', + 'zero_dupe_strict' => 'Strict Mode', + 'zero_dupe_strict_explain' => 'When activated, the zero dupe will check if the requested URL exactly matches the one attended.<br/>When set to no, the zero dupe will make sure the attended url is the fist part of the one requested.<br/>The interest is to make it easier to deal with mods that could interfere with the zero dupe by adding GET vars.', + 'zero_dupe_post_redir' => 'Posts Redirections', + 'zero_dupe_post_redir_explain' => 'This option will determine how to handle post urls; it can take four values :<br/><b> off</b>, do not redirect post url, whatever the case,<br/><b> post</b>, only make sure postxx.html is used for a post url,<br/><b> guest</b>, redirect guests if required to the corresponding topic url rather than to the postxx.html, and only make sure postxx.html is used for logged users,<br/><b> all</b>, redirect if required to the corresponding topic url.<br/><br/><b style="color:red">Please Note</b><br/><em>Keeping the <b>postxx.html</b> URLs is harmless SEO wise as long as you keep the disallow on post urls in your robots.txt.<br/>Redirecting them all will most likely produce the most redirections among all.<br/>If you redirect postxx.html in all cases, this as well mean that a message that would be posted in a thread and then moved in another one will see it’s url changing, which thanks to the zero duplicate mod is of no harm SEO wise, but the previous link to the post won’t link to it anymore in such case.</em>.', + // no duplicate + 'no_dupe' => 'No duplicate', + 'no_dupe_on' => 'Activate The No duplicate', + 'no_dupe_on_explain' => 'The No duplicate mod replaces posts URLs with the corresponding Topic URL (with pagination).<br/>It does not add any SQL, just a LEFT JOIN on a query already being performed, this could still mean a bit more work but should not be a problem for server load.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/mods/info_acp_gym_sitemaps.php b/phpBB/language/en/mods/info_acp_gym_sitemaps.php new file mode 100644 index 0000000000..446753175d --- /dev/null +++ b/phpBB/language/en/mods/info_acp_gym_sitemaps.php @@ -0,0 +1,57 @@ +<?php +/** +* +* info_acp_gym_sitemaps [English] +* +* @package phpBB SEO GYM Sitemaps +* @version $Id: info_acp_gym_sitemaps.php 131 2009-10-25 12:03:44Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License +* +*/ +/** +* DO NOT CHANGE +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'ACP_GYM_SITEMAPS' => 'GYM Sitemaps & RSS', + 'ACP_GYM_MAIN' => 'Main configuration', + 'ACP_GYM_GOOGLE_MAIN' => 'Google Sitemaps', + 'ACP_GYM_RSS_MAIN' => 'RSS Feeds', + 'ACP_GYM_YAHOO_MAIN' => 'Yahoo! url list', + 'ACP_GYM_HTML_MAIN' => 'HTML sitemaps', + 'GYM_LOG_CONFIG_MAIN' => '<strong>Altered GYM sitemaps & RSS settings</strong><br/>» Main settings', + 'GYM_LOG_CONFIG_GOOGLE' => '<strong>Altered GYM sitemaps & RSS settings</strong><br/>» Google sitemaps', + 'GYM_LOG_CONFIG_RSS' => '<strong>Altered GYM sitemaps & RSS settings</strong><br/>» RSS Feeds', + 'GYM_LOG_CONFIG_HTML' => '<strong>Altered GYM sitemaps & RSS settings</strong><br/>» HTML sitemaps', + 'GYM_LOG_CONFIG_YAHOO' => '<strong>Altered GYM sitemaps & RSS settings</strong><br/>» Yahoo! URL lists', + // Install Logs + 'SEO_LOG_INSTALL_GYM_SITEMAPS' => '<strong>GYM Sitemaps & RSS V%s Installed</strong>', + 'SEO_LOG_INSTALL_GYM_SITEMAPS_FAIL' => '<strong>GYM Sitemaps & RSS install attempt failed</strong><br/>%s', + 'SEO_LOG_UNINSTALL_GYM_SITEMAPS' => '<strong>GYM Sitemaps & RSS V%s Un-installed</strong>', + 'SEO_LOG_UNINSTALL_GYM_SITEMAPS_FAIL' => '<strong>GYM Sitemaps & RSS Un-install attempt failed</strong><br/>%s', + 'SEO_LOG_UPDATE_GYM_SITEMAPS' => '<strong>Updated GYM Sitemaps & RSS to V%s</strong>', + 'SEO_LOG_UPDATE_GYM_SITEMAPS_FAIL' => '<strong>GYM Sitemaps & RSS Update attempt failed</strong><br/>%s', +)); + +?>
\ No newline at end of file diff --git a/phpBB/language/en/mods/info_acp_phpbb_seo.php b/phpBB/language/en/mods/info_acp_phpbb_seo.php new file mode 100644 index 0000000000..de37e587f4 --- /dev/null +++ b/phpBB/language/en/mods/info_acp_phpbb_seo.php @@ -0,0 +1,56 @@ +<?php +/** +* +* info_acp_phpbb_seo [English] +* +* @package Ultimate SEO URL phpBB SEO +* @version $Id: info_acp_phpbb_seo.php 131 2009-10-25 12:03:44Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://www.opensource.org/licenses/rpl1.5.txt Reciprocal Public License 1.5 +* +*/ +/** +* DO NOT CHANGE +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + 'ACP_CAT_PHPBB_SEO' => 'phpBB SEO', + 'ACP_MOD_REWRITE' => 'URL Rewriting settings', + 'ACP_PHPBB_SEO_CLASS' => 'phpBB SEO Class settings', + 'ACP_FORUM_URL' => 'Forum URL Management', + 'ACP_HTACCESS' => '.htaccess', + 'ACP_SEO_EXTENDED' => 'Extended config', + 'ACP_PREMOD_UPDATE' => '<h1>Release announcement</h1> + <p>This update does only concern the premod, not the phpBB core.</p> + <p>A new version of the phpBB SEO premod is thus available : %1$s<br/>Make sure you visit<a href="%2$s" title="The release thread"><b>the release thread</b></a> and update your installation.</p>', + 'SEO_LOG_INSTALL_PHPBB_SEO' => '<strong>phpBB SEO mod rewrite installed (v%s)</strong>', + 'SEO_LOG_INSTALL_PHPBB_SEO_FAIL' => '<strong>phpBB SEO mod rewrite install attempt failed</strong><br/>%s', + 'SEO_LOG_UNINSTALL_PHPBB_SEO' => '<strong>phpBB SEO mod rewrite uninstalled (v%s)</strong>', + 'SEO_LOG_UNINSTALL_PHPBB_SEO_FAIL' => '<strong>phpBB SEO mod rewrite uninstall attempts failed</strong><br/>%s', + 'SEO_LOG_CONFIG_SETTINGS' => '<strong>Altered phpBB SEO Class settings</strong>', + 'SEO_LOG_CONFIG_FORUM_URL' => '<strong>Altered Forum URLs</strong>', + 'SEO_LOG_CONFIG_HTACCESS' => '<strong>Generated new .htaccess</strong>', + 'SEO_LOG_CONFIG_EXTENDED' => '<strong>Altered phpBB SEO extended config</strong>', +)); + +?>
\ No newline at end of file diff --git a/phpBB/language/en/mods/phpbb_seo_related_install.php b/phpBB/language/en/mods/phpbb_seo_related_install.php new file mode 100644 index 0000000000..90bd46b436 --- /dev/null +++ b/phpBB/language/en/mods/phpbb_seo_related_install.php @@ -0,0 +1,64 @@ +<?php +/** +* +* acp_phpbb_seo [english] +* +* @package Ultimate SEO URL phpBB SEO +* @version $Id: phpbb_seo_related_install.php 202 2009-12-20 12:04:05Z dcz $ +* @copyright (c) 2006 - 2009 www.phpbb-seo.com +* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2 +* +*/ +/** +* DO NOT CHANGE +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} +// 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( + // ACP + 'SEO_RELATED' => 'Related topics activation', + 'SEO_RELATED_EXPLAIN' => 'Display or not a related topic list in topic pages.<br/><b style="color:red;">Note :</b><br/>With mySQL >=4.1 and the topic table using MyISAM, related topics will be obtained using a FullText index on the topic title and will be sorted by relevancy. in other cases, an SQL LIKE will be used, and results will be sorted by publication time', + 'SEO_RELATED_CHECK_IGNORE' => 'Ignore words filter', + 'SEO_RELATED_CHECK_IGNORE_EXPLAIN' => 'Apply, or not, the search_ignore_words.php exclusions while searching for related topics', + 'SEO_RELATED_LIMIT' => 'Related topics limit', + 'SEO_RELATED_LIMIT_EXPLAIN' => 'Maximum amount of related topics to display', + 'SEO_RELATED_ALLFORUMS' => 'Search in all forums', + 'SEO_RELATED_ALLFORUMS_EXPLAIN' => 'Search in all forums instead of searching in the current one.<br/><b style="color:red;">Note :</b><br/>Searching in all forums is a bit slower and does not necessarily bring better results', + // Install + 'INSTALLED' => 'phpBB SEO Related Topics mod installed', + 'ALREADY_INSTALLED' => 'phpBB SEO Related Topics mod is already installed', + 'FULLTEXT_INSTALLED' => 'MySQL FullText Index installed', + 'FULLTEXT_NOT_INSTALLED' => 'MySQL FullText Index is not available on this server, SQL LIKE will be used instead', + 'INSTALLATION' => 'phpBB SEO Related Topics mod installation', + 'INSTALLATION_START' => '⇒ <a href="%1$s" ><b>Proceed with installing the mod</b></a><br/><br/>⇒ <a href="%2$s" ><b>Retry to set the FullText Index</b></a> (MySQL >= 4.1 using Myisam for topic table only)<br/><br/>⇒ <a href="%3$s" ><b>Proceed with un-installing the mod</b></a>', + // un-install + 'UNINSTALLED' => 'phpBB SEO Related Topics mod un-installed', + 'ALREADY_UNINSTALLED' => 'phpBB SEO Related Topics mod is already un-installed', + 'UNINSTALLATION' => 'phpBB SEO Related Topics mod un-installation', + // SQL message + 'SQL_REQUIRED' => 'The configured db user does not have enough privileges to alter tables, you need to run this query manually in order to add or drop the MySQL FullText index :<br/>%1$s', + // Security + 'SEO_LOGIN' => 'The board requires you to be registered and logged in to view this page.', + 'SEO_LOGIN_ADMIN' => 'The board requires you to be logged in as admin to view this page.<br/>Your session has been destroyed for security purposes.', + 'SEO_LOGIN_FOUNDER' => 'The board requires you to be logged in as the founder to view this page.', + 'SEO_LOGIN_SESSION' => 'Session Check failed.<br/>The Settings were not altered.<br/>Your session has been destroyed for security purposes.', +)); +?>
\ No newline at end of file diff --git a/phpBB/language/en/search_ignore_words.php b/phpBB/language/en/search_ignore_words.php index 2dfdc0df13..fb62d50494 100644 --- a/phpBB/language/en/search_ignore_words.php +++ b/phpBB/language/en/search_ignore_words.php @@ -16,7 +16,6 @@ if (!defined('IN_PHPBB')) } $words = array( - 'a', 'about', 'after', 'ago', @@ -25,8 +24,6 @@ $words = array( 'along', 'alot', 'also', - 'am', - 'an', 'and', 'answer', 'any', @@ -36,12 +33,9 @@ $words = array( 'are', 'arent', 'around', - 'as', 'ask', 'askd', - 'at', 'bad', - 'be', 'because', 'been', 'before', @@ -52,7 +46,6 @@ $words = array( 'big', 'btw', 'but', - 'by', 'can', 'cant', 'come', @@ -63,7 +56,6 @@ $words = array( 'days', 'did', 'didnt', - 'do', 'does', 'doesnt', 'dont', @@ -84,7 +76,6 @@ $words = array( 'found', 'from', 'get', - 'go', 'going', 'gone', 'good', @@ -104,15 +95,10 @@ $words = array( 'how', 'hows', 'href', - 'I', 'Ive', - 'if', - 'in', 'ini', 'into', - 'is', 'isnt', - 'it', 'its', 'its', 'just', @@ -129,32 +115,26 @@ $words = array( 'lot', 'maybe', 'many', - 'me', 'more', 'most', 'much', 'must', 'mustnt', - 'my', 'near', 'need', 'never', 'new', 'news', - 'no', 'none', 'not', 'nothing', 'now', - 'of', 'off', 'often', 'old', - 'on', 'once', 'only', 'oops', - 'or', 'other', 'our', 'ours', @@ -180,7 +160,6 @@ $words = array( 'should', 'sites', 'small', - 'so', 'some', 'something', 'sometime', @@ -213,12 +192,10 @@ $words = array( 'thus', 'time', 'times', - 'to', 'too', 'under', 'until', 'untrue', - 'up', 'upon', 'use', 'users', @@ -228,7 +205,6 @@ $words = array( 'want', 'was', 'way', - 'we', 'well', 'went', 'were', @@ -261,12 +237,12 @@ $words = array( 'your', 'youre', 'yours', - 'AFAIK', - 'IIRC', - 'LOL', - 'ROTF', - 'ROTFLMAO', - 'YMMV', + 'afaik', + 'iirc', + 'lol', + 'rotf', + 'rotflmao', + 'ymmv', ); ?>
\ No newline at end of file |
