$sMsg=i18n("The .htaccess file could not found either in CONTENIDO installation directory nor in client directory.<br>It should set up in %sFunctions%s area, if needed.","cl-mod-rewrite");
$oView->lng_msg_enable_amr_info=i18n("Disabling of plugin does not result in disabling mod rewrite module of the web server - This means,<br> all defined rules in the .htaccess are still active and could create unwanted side effects.<br><br>Apache mod rewrite could be enabled/disabled by setting the RewriteEngine directive.<br>Any defined rewrite rules could remain in the .htaccess and they will not processed,<br>if the mod rewrite module is disabled","cl-mod-rewrite");
$oView->lng_rootdir=i18n("Path to .htaccess from DocumentRoot","cl-mod-rewrite");
$oView->lng_rootdir_info=i18n("Type '/' if the .htaccess file lies inside the wwwroot (DocumentRoot) folder.<br>Type the path to the subfolder fromm wwwroot, if CONTENIDO is installed in a subfolder within the wwwroot<br>(e. g. http://domain/mycontenido -> path = '/mycontenido/')","cl-mod-rewrite");
$oView->lng_checkrootdir=i18n("Check path to .htaccess","cl-mod-rewrite");
$oView->lng_checkrootdir_info=i18n("The path will be checked, if this option is enabled.<br>But this could result in an error in some cases, even if the specified path is valid and<br>clients DocumentRoot differs from CONTENIDO backend DocumentRoot.","cl-mod-rewrite");
$oView->lng_startfromroot=i18n("Should the name of root category be displayed in the URL?","cl-mod-rewrite");
$oView->lng_startfromroot_lbl=i18n("Start from root category","cl-mod-rewrite");
$oView->lng_startfromroot_info=i18n("If enabled, the name of the root category (e. g. 'Mainnavigation' in a CONTENIDO default installation), will be preceded to the URL.","cl-mod-rewrite");
$oView->lng_userdefined_separators_header=i18n("Configure your own separators with following 4 settings<br>to control generated URLs to your own taste","cl-mod-rewrite");
$oView->lng_add_startart_name_to_url=i18n("Append article name to URLs","cl-mod-rewrite");
$oView->lng_add_startart_name_to_url_lbl=i18n("Append article name always to URLs (even at URLs to categories)","cl-mod-rewrite");
$oView->lng_default_startart_name=i18n("Default article name without extension","cl-mod-rewrite");
$oView->lng_default_startart_name_info=i18n("e. g. 'index' for index.ext<br>In case of selected 'Append article name always to URLs' option and a empty field,<br>the name of the start article will be used","cl-mod-rewrite");
$oView->lng_file_extension=i18n("File extension at the end of the URL","cl-mod-rewrite");
$oView->lng_file_extension_info=i18n("Specification of file extension with a preceded dot<br>e.g. '.html' for http://host/foo/bar.html","cl-mod-rewrite");
$oView->lng_file_extension_info2=i18n("It's strongly recommended to specify a extension here,<br>if the option 'Append article name always to URLs' was not selected.<br><br>Otherwise URLs to categories and articles would have the same format<br>which may result in unresolvable categories/articles in some cases.","cl-mod-rewrite");
$oView->lng_file_extension_info3=i18n("It's necessary to specify a file extension at the moment, due do existing issues, which are not solved until yet. An not defined extension may result in invalid article detection in some cases.","cl-mod-rewrite");
$oView->lng_prevent_duplicated_content_info=i18n("Depending on configuration, pages could be found thru different URLs.<br>Enabling of this option prevents this. Examples for duplicated content","cl-mod-rewrite");
$oView->lng_prevent_duplicated_content_info2=i18n("Name of the root category in the URL: Feasible is /maincategory/subcategory/ and /subcategory/\nLanguage in the URL: Feasible is /german/category/ and /1/category/\nClient in the URL: Feasible is /client/category/ und /1/category/","cl-mod-rewrite");
$oView->lng_category_resolve_min_percentage=i18n("Percentage for similar category paths in URLs","cl-mod-rewrite");
$oView->lng_category_resolve_min_percentage_info=i18n("This setting refers only to the category path of a URL. If AMR is configured<br>to prepend e. g. the root category, language and/or client to the URL,<br>the specified percentage will not applied to those parts of the URL.<br>An incoming URL will be cleaned from those values and the remaining path (urlpath of the category)<br>will be checked against similarities.","cl-mod-rewrite");
$oView->lng_category_resolve_min_percentage_example=i18n("100 = exact match with no tolerance\n85 = paths with little errors will match to similar ones\n0 = matching will work even for total wrong paths","cl-mod-rewrite");
$oView->lng_rewrite_urls_at=i18n("Moment of URL generation","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_front_content_output_lbl=i18n("a.) During the output of HTML code of the page","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_front_content_output_info=i18n("Clean-URLs will be generated during page output. Modules/Plugins are able to generate URLs to frontend<br>as usual as in previous CONTENIDO versions using a format like 'front_content.php?idcat=1&idart=2'.<br>The URLs will be replaced by the plugin to Clean-URLs before sending the HTML output.","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_front_content_output_info2=i18n("Differences to variant b.)","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_front_content_output_info3=i18n("Still compatible to old modules/plugins, since no changes in codes are required\nAll occurring URLs in HTML code, even those set by wysiwyg, will be switched to Clean-URLs\nAll URLs will usually be collected and converted to Clean-URLs at once.<br>Doing it this way reduces the amount of executed database significantly.","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_congeneratecode_lbl=i18n("b.) In modules or plugins","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_congeneratecode_info=i18n("By using this option, all Clean-URLs will be generated directly in module or plugins.<br>This means, all areas in modules/plugins, who generate internal URLs to categories/articles, have to be adapted manually.<br>All Clean-URLs have to be generated by using following function:","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_congeneratecode_example=i18n("# structure of a normal url\n\$url = 'front_content.php?idart=123&lang=2&client=1';\n\n# creation of a url by using the CONTENIDOs Url-Builder (since 4.8.9),\n# wich expects the parameter as a assoziative array\n\$params = array('idart'=>123, 'lang'=>2, 'client'=>1);\n\$newUrl = Contenido_Url::getInstance()->build(\$params);","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_congeneratecode_info2=i18n("Differences to variant a.)","cl-mod-rewrite");
$oView->lng_rewrite_urls_at_congeneratecode_info3=i18n("The default way to generate URLs to fronend pages\nEach URL in modules/plugins has to be generated by UriBuilder\nEach generated Clean-Url requires a database query","cl-mod-rewrite");
$oView->lng_rewrite_routing_info=i18n("Routing definitions for incoming URLs","cl-mod-rewrite");
$oView->lng_rewrite_routing_info2=i18n("Type one routing definition per line as follows:","cl-mod-rewrite");
$oView->lng_rewrite_routing_example=i18n("# {incoming_url}>>>{new_url}\n/incoming_url/name.html>>>new_url/new_name.html\n\n# route a specific incoming url to a new page\n/campaign/20_percent_on_everything_except_animal_food.html>>>front_content.php?idcat=23\n\n# route request to wwwroot to a specific page\n/>>>front_content.php?idart=16","cl-mod-rewrite");
$oView->lng_rewrite_routing_info3=i18n("The routing does not sends a HTTP header redirection to the destination URL, the redirection will happen internally by<br>replacing the detected incoming URL against the new destination URL (overwriting of article- categoryid)\nIncoming URLs can point to non existing resources (category/article), but the desttination URLs should point<br>to valid CONTENIDO articles/categories\nDestination URLs should point to real URLs to categories/articles,<br>e. g.front_content.php?idcat=23 or front_content.php?idart=34\nThe language id should attached to the URL in multi language sites<br>e. g. front_content.php?idcat=23&lang=1\nThe client id should attached to the URL in multi client sites sharing the same folder<br>e. g. front_content.php?idcat=23&client=2\nThe destination URL should not start with '/' or './' (wrong: /front_content.php, correct: front_content.php)","cl-mod-rewrite");