1007225e5Sgerardnico<?php 2007225e5Sgerardnico 3*c3437056SNickeaurequire_once(__DIR__ . '/../../ComboStrap/PluginUtility.php'); 4*c3437056SNickeau 5007225e5Sgerardnicouse ComboStrap\AdsUtility; 6*c3437056SNickeauuse ComboStrap\Canonical; 721913ab3SNickeauuse ComboStrap\FloatAttribute; 821913ab3SNickeauuse ComboStrap\Icon; 9a6bf47aaSNickeauuse ComboStrap\Identity; 1021913ab3SNickeauuse ComboStrap\LazyLoad; 115f891b7eSNickeauuse ComboStrap\LinkUtility; 12e8b2ff59SNickeauuse ComboStrap\LowQualityPage; 13e8b2ff59SNickeauuse ComboStrap\MediaLink; 14*c3437056SNickeauuse ComboStrap\PageImages; 15*c3437056SNickeauuse ComboStrap\PagePublicationDate; 16*c3437056SNickeauuse ComboStrap\PageType; 17*c3437056SNickeauuse ComboStrap\PageUrlType; 18007225e5Sgerardnicouse ComboStrap\PluginUtility; 19007225e5Sgerardnicouse ComboStrap\Prism; 20e8b2ff59SNickeauuse ComboStrap\RasterImageLink; 21*c3437056SNickeauuse ComboStrap\Region; 2221913ab3SNickeauuse ComboStrap\Shadow; 2321913ab3SNickeauuse ComboStrap\SvgDocument; 2421913ab3SNickeauuse ComboStrap\SvgImageLink; 25007225e5Sgerardnicouse ComboStrap\UrlManagerBestEndPage; 26007225e5Sgerardnico 27007225e5Sgerardnico 28007225e5Sgerardnico/** 29007225e5Sgerardnico * @var array 30007225e5Sgerardnico */ 31*c3437056SNickeau$lang[syntax_plugin_combo_related::MAX_LINKS_CONF] = PluginUtility::getDocumentationHyperLink("related", "Related Component") . ' - The maximum of related links shown'; 32*c3437056SNickeau$lang[syntax_plugin_combo_related::EXTRA_PATTERN_CONF] = PluginUtility::getDocumentationHyperLink("related", "Related Component") . ' - Another pattern'; 33007225e5Sgerardnico 34007225e5Sgerardnico/** 35007225e5Sgerardnico * Disqus 36007225e5Sgerardnico */ 37*c3437056SNickeau$lang[syntax_plugin_combo_disqus::CONF_DEFAULT_ATTRIBUTES] = PluginUtility::getDocumentationHyperLink("disqus", "Disqus") . ' - The disqus forum short name (ie the disqus website identifier)'; 38007225e5Sgerardnico 39007225e5Sgerardnico 40007225e5Sgerardnico/** 41007225e5Sgerardnico * Url Manager 42007225e5Sgerardnico */ 43*c3437056SNickeau$lang[action_plugin_combo_router::ROUTER_ENABLE_CONF] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_router::CANONICAL, action_plugin_combo_router::NAME ) . ' - If unchecked, the URL manager will be disabled'; 44*c3437056SNickeau$lang['ActionReaderFirst'] = PluginUtility::getDocumentationHyperLink("redirection:action", action_plugin_combo_router::NAME . " - Redirection Actions") . ' - First redirection action for a reader'; 45*c3437056SNickeau$lang['ActionReaderSecond'] = PluginUtility::getDocumentationHyperLink("redirection:action", action_plugin_combo_router::NAME . " - Redirection Actions") . ' - Second redirection action for a reader if the first action don\'t success.'; 46*c3437056SNickeau$lang['ActionReaderThird'] = PluginUtility::getDocumentationHyperLink("redirection:action", action_plugin_combo_router::NAME . " - Redirection Actions") . ' - Third redirection action for a reader if the second action don\'t success.'; 47*c3437056SNickeau$lang['GoToEditMode'] = PluginUtility::getDocumentationHyperLink("redirection:action", action_plugin_combo_router::NAME . " - Redirection Actions") . ' - Switch directly in the edit mode for a writer ?'; 48007225e5Sgerardnico 49*c3437056SNickeau$lang['ShowPageNameIsNotUnique'] = PluginUtility::getDocumentationHyperLink("redirection:message", action_plugin_combo_router::NAME . " - Redirection Message") . ' - When redirected to the edit mode, show a message when the page name is not unique'; 50*c3437056SNickeau$lang['ShowMessageClassic'] = PluginUtility::getDocumentationHyperLink("redirection:message", action_plugin_combo_router::NAME . " - Redirection Message") . ' - Show classic message when a action is performed ?'; 51*c3437056SNickeau$lang['WeightFactorForSamePageName'] = PluginUtility::getDocumentationHyperLink("best:page:name", action_plugin_combo_router::NAME . " - Best Page Name") . ' - Weight factor for same page name to calculate the score for the best page.'; 52*c3437056SNickeau$lang['WeightFactorForStartPage'] = PluginUtility::getDocumentationHyperLink("best:page:name", action_plugin_combo_router::NAME . " - Best Page Name") . ' - Weight factor for same start page to calculate the score for the best page.'; 53*c3437056SNickeau$lang['WeightFactorForSameNamespace'] = PluginUtility::getDocumentationHyperLink("best:page:name", action_plugin_combo_router::NAME . " - Best Page Name") . ' - Weight factor for same namespace to calculate the score for the best page.'; 54007225e5Sgerardnico 55007225e5Sgerardnico 56*c3437056SNickeau$lang[Canonical::CONF_CANONICAL_LAST_NAMES_COUNT] = PluginUtility::getDocumentationHyperLink("automatic:canonical", 'Automatic Canonical') . ' - The number of last part of a page path to create a ' . PluginUtility::getDocumentationHyperLink("canonical", "canonical") . ' (0 to disable)'; 57*c3437056SNickeau$lang[action_plugin_combo_canonical::CONF_CANONICAL_FOR_GA_PAGE_VIEW] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_canonical::CANONICAL, 'Canonical') . ' - If enable and if set, the canonical will be reported to the Google Analytics Plugin as page path'; 58007225e5Sgerardnico 59*c3437056SNickeau$lang[UrlManagerBestEndPage::CONF_MINIMAL_SCORE_FOR_REDIRECT] = PluginUtility::getDocumentationHyperLink("best:end:page:name", action_plugin_combo_router::NAME . ' - Best End Page Name') . ' - The number of last part of a DokuWiki Id to perform a ' . PluginUtility::getDocumentationHyperLink(action_plugin_combo_router::PERMANENT_REDIRECT_CANONICAL, "permanent redirect") . ' (0 to disable)'; 60007225e5Sgerardnico 61007225e5Sgerardnico 6221913ab3SNickeau/** 6321913ab3SNickeau * Icon 6421913ab3SNickeau */ 65*c3437056SNickeau$lang[Icon::CONF_ICONS_MEDIA_NAMESPACE] = PluginUtility::getDocumentationHyperLink("icon#configuration", "UI Icon Component") . ' - The media namespace where the downloaded icons will be searched and saved'; 66*c3437056SNickeau$lang[Icon::CONF_DEFAULT_ICON_LIBRARY] = PluginUtility::getDocumentationHyperLink("icon#configuration", "UI Icon Component") . ' - The default icon library from where the icon is downloaded if not specified'; 67007225e5Sgerardnico 68007225e5Sgerardnico/** 699337a630SNickeau * Front end Optimization 70007225e5Sgerardnico */ 71*c3437056SNickeau$lang[action_plugin_combo_css::CONF_ENABLE_MINIMAL_FRONTEND_STYLESHEET] = PluginUtility::getDocumentationHyperLink("frontend:optimization", "Frontend Optimization") . ' - If enabled, the DokuWiki Stylesheet for a public user will be minimized'; 72*c3437056SNickeau$lang[action_plugin_combo_css::CONF_DISABLE_DOKUWIKI_STYLESHEET] = PluginUtility::getDocumentationHyperLink("frontend:optimization", "Frontend Optimization") . ' - If checked, the DokuWiki Stylesheet will not be loaded for a public user'; 73007225e5Sgerardnico 74007225e5Sgerardnico/** 75007225e5Sgerardnico * Metdataviewer 76007225e5Sgerardnico */ 77*c3437056SNickeau$lang[syntax_plugin_combo_metadata::CONF_METADATA_DEFAULT_ATTRIBUTES] = PluginUtility::getDocumentationHyperLink("metadata:viewer", "Metadata Viewer") . ' - The default attributes of the metadata component'; 78007225e5Sgerardnico 79007225e5Sgerardnico/** 80007225e5Sgerardnico * Badge 81007225e5Sgerardnico */ 82*c3437056SNickeau$lang[syntax_plugin_combo_badge::CONF_DEFAULT_ATTRIBUTES_KEY] = PluginUtility::getDocumentationHyperLink("badge", "Badge") . ' - Defines the default badge attributes'; 83007225e5Sgerardnico 84007225e5Sgerardnico/** 85007225e5Sgerardnico * Ads 86007225e5Sgerardnico */ 87*c3437056SNickeau$lang[AdsUtility::CONF_IN_ARTICLE_PLACEHOLDER] = PluginUtility::getDocumentationHyperLink("automatic:in-article:ad", "Automatic In-article Ad") . ' - Show a placeholder if the in-article ad page was not found'; 88007225e5Sgerardnico 89007225e5Sgerardnico/** 90007225e5Sgerardnico * Code enabled 91007225e5Sgerardnico */ 92*c3437056SNickeau$lang[Prism::CONF_PRISM_THEME] = PluginUtility::getDocumentationHyperLink("prism", "Prism Component") . ' - The prism theme used for syntax highlighting in the code/file/console component'; 93*c3437056SNickeau$lang[Prism::CONF_BATCH_PROMPT] = PluginUtility::getDocumentationHyperLink("prism", "Prism Component") . ' - The default prompt for the batch language'; 94*c3437056SNickeau$lang[Prism::CONF_BASH_PROMPT] = PluginUtility::getDocumentationHyperLink("prism", "Prism Component") . ' - The default prompt for the bash language'; 95*c3437056SNickeau$lang[Prism::CONF_POWERSHELL_PROMPT] = PluginUtility::getDocumentationHyperLink("prism", "Prism Component") . ' - The default prompt for the powershell language'; 96*c3437056SNickeau$lang[syntax_plugin_combo_code::CONF_CODE_ENABLE] = PluginUtility::getDocumentationHyperLink("code", "Code Component") . ' - Enable or disable the code component'; 97*c3437056SNickeau$lang[syntax_plugin_combo_file::CONF_FILE_ENABLE] = PluginUtility::getDocumentationHyperLink("file", "File Component") . ' - Enable or disable the file component'; 98007225e5Sgerardnico 99007225e5Sgerardnico 100007225e5Sgerardnico/** 101007225e5Sgerardnico * Preformatted mode 102007225e5Sgerardnico */ 103*c3437056SNickeau$lang[syntax_plugin_combo_preformatted::CONF_PREFORMATTED_ENABLE] = PluginUtility::getDocumentationHyperLink("preformatted", "Preformatted Component") . ' - If checked, the default preformatted mode of dokuwiki is enabled'; 104*c3437056SNickeau$lang[syntax_plugin_combo_preformatted::CONF_PREFORMATTED_EMPTY_CONTENT_NOT_PRINTED_ENABLE] = PluginUtility::getDocumentationHyperLink("preformatted", "Preformatted Component") . ' - If unchecked, a blank line with only two spaces will be printed as an empty block of code'; 105007225e5Sgerardnico 106007225e5Sgerardnico/** 107007225e5Sgerardnico * Mandatory rules 108007225e5Sgerardnico */ 109*c3437056SNickeau$lang[renderer_plugin_combo_analytics::CONF_MANDATORY_QUALITY_RULES] = PluginUtility::getDocumentationHyperLink(LowQualityPage::LOW_QUALITY_PAGE_CANONICAL, "Mandatory Quality rules") . ' - The mandatory quality rules are the rules that should pass to consider the quality of a page as not `low`'; 110*c3437056SNickeau$lang[LowQualityPage::CONF_LOW_QUALITY_PAGE_PROTECTION_ENABLE] = PluginUtility::getDocumentationHyperLink(LowQualityPage::LQPP_CANONICAL, "Low quality page protection") . " - If enabled, a low quality page will no more be discoverable by search engine or anonymous user."; 111*c3437056SNickeau$lang[LowQualityPage::CONF_LOW_QUALITY_PAGE_PROTECTION_MODE] = PluginUtility::getDocumentationHyperLink(LowQualityPage::LQPP_CANONICAL, "Low quality page protection") . " - Choose the protection mode for low quality page."; 112*c3437056SNickeau$lang[LowQualityPage::CONF_LOW_QUALITY_PAGE_LINK_TYPE] = PluginUtility::getDocumentationHyperLink(LowQualityPage::LQPP_CANONICAL, "Low quality page protection") . " - Choose the link created to a low quality page."; 113007225e5Sgerardnico 114007225e5Sgerardnico 115aa3cb38fSgerardnico/** 116aa3cb38fSgerardnico * Excluded rules 117aa3cb38fSgerardnico */ 118*c3437056SNickeau$lang[action_plugin_combo_qualitymessage::CONF_EXCLUDED_QUALITY_RULES_FROM_DYNAMIC_MONITORING] = PluginUtility::getDocumentationHyperLink("quality:dynamic_monitoring", "Quality Dynamic Monitoring") . " - If chosen, the quality rules will not be monitored.)"; 119*c3437056SNickeau$lang[action_plugin_combo_qualitymessage::CONF_DISABLE_QUALITY_MONITORING] = PluginUtility::getDocumentationHyperLink("quality:dynamic_monitoring", "Quality Dynamic Monitoring") . " - Disable the Quality Dynamic Monitoring feature (the quality message will not appear anymore)"; 12021913ab3SNickeau 1215f891b7eSNickeau/** 12221913ab3SNickeau * Link 1235f891b7eSNickeau */ 124*c3437056SNickeau$lang[syntax_plugin_combo_link::CONF_DISABLE_LINK] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_link::TAG, "Link") . " - Disable the ComboStrap link component"; 125*c3437056SNickeau$lang[LinkUtility::CONF_USE_DOKUWIKI_CLASS_NAME] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_link::TAG, "Link") . " - Use the DokuWiki class type for links (Bootstrap conflict if enabled)"; 126*c3437056SNickeau$lang[LinkUtility::CONF_PREVIEW_LINK] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_link::TAG, "Link") . " - Add a page preview on all internal links when a user is hovering"; 1275f891b7eSNickeau 1285f891b7eSNickeau/** 1295f891b7eSNickeau * Twitter 1305f891b7eSNickeau */ 131*c3437056SNickeau$lang[action_plugin_combo_metatwitter::CONF_DEFAULT_TWITTER_IMAGE] = PluginUtility::getDocumentationHyperLink("twitter", "Twitter") . " - The media id (path) to the logo shown in a twitter card"; 132*c3437056SNickeau$lang[action_plugin_combo_metatwitter::CONF_TWITTER_SITE_HANDLE] = PluginUtility::getDocumentationHyperLink("twitter", "Twitter") . " - Your twitter handle name used in a twitter card"; 133*c3437056SNickeau$lang[action_plugin_combo_metatwitter::CONF_TWITTER_SITE_ID] = PluginUtility::getDocumentationHyperLink("twitter", "Twitter") . " - Your twitter handle id used in a twitter card"; 134*c3437056SNickeau$lang[action_plugin_combo_metatwitter::CONF_DONT_NOT_TRACK] = PluginUtility::getDocumentationHyperLink("tweet", "Tweet") . " - Set the `do not track` attribute"; 135*c3437056SNickeau$lang[syntax_plugin_combo_blockquote::CONF_TWEET_WIDGETS_THEME] = PluginUtility::getDocumentationHyperLink("tweet", "Tweet") . " - Set the theme for embedded twitter widget"; 136*c3437056SNickeau$lang[syntax_plugin_combo_blockquote::CONF_TWEET_WIDGETS_BORDER] = PluginUtility::getDocumentationHyperLink("tweet", "Tweet") . " - Set the border-color for embedded twitter widget"; 1375f891b7eSNickeau 1385f891b7eSNickeau/** 1395f891b7eSNickeau * Page Image 1405f891b7eSNickeau */ 141*c3437056SNickeau$lang[PageImages::CONF_DISABLE_FIRST_IMAGE_AS_PAGE_IMAGE] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_frontmatter::METADATA_IMAGE_CANONICAL, "Metadata Image") . " - Disable the use of the first image as a page image"; 1425f891b7eSNickeau 1435f891b7eSNickeau/** 1445f891b7eSNickeau * Default 1455f891b7eSNickeau */ 146*c3437056SNickeau$lang[action_plugin_combo_metafacebook::CONF_DEFAULT_FACEBOOK_IMAGE] = PluginUtility::getDocumentationHyperLink("facebook", "Facebook") . " - The default facebook page image (minimum size 200x200)"; 1475f891b7eSNickeau 1485f891b7eSNickeau/** 1495f891b7eSNickeau * Country 1505f891b7eSNickeau */ 151*c3437056SNickeau$lang[Region::CONF_SITE_LANGUAGE_REGION] = PluginUtility::getDocumentationHyperLink("region", "Language Region") . " - The default region language."; 1525f891b7eSNickeau 1535f891b7eSNickeau/** 1545f891b7eSNickeau * Late publication 1555f891b7eSNickeau */ 156*c3437056SNickeau$lang[PagePublicationDate::CONF_LATE_PUBLICATION_PROTECTION_ENABLE] = PluginUtility::getDocumentationHyperLink(PagePublicationDate::LATE_PUBLICATION_PROTECTION_ACRONYM, "Late Publication") . " - Page with a published date in the future will be protected from search engine and the public"; 157*c3437056SNickeau$lang[PagePublicationDate::CONF_LATE_PUBLICATION_PROTECTION_MODE] = PluginUtility::getDocumentationHyperLink(PagePublicationDate::LATE_PUBLICATION_PROTECTION_ACRONYM, "Late Publication") . " - The mode of protection for a late published page"; 1585f891b7eSNickeau 1595f891b7eSNickeau/** 1605f891b7eSNickeau * Default page type 1615f891b7eSNickeau */ 162*c3437056SNickeau$lang[PageType::CONF_DEFAULT_PAGE_TYPE] = PluginUtility::getDocumentationHyperLink("type", "The default page type for all pages (expected the home page)"); 16321913ab3SNickeau 16421913ab3SNickeau/** 16521913ab3SNickeau * Default Shadow level 16621913ab3SNickeau */ 167*c3437056SNickeau$lang[Shadow::CONF_DEFAULT_VALUE] = PluginUtility::getDocumentationHyperLink(Shadow::CANONICAL, "Shadow - The default level applied to a shadow attributes"); 16821913ab3SNickeau 16921913ab3SNickeau 17021913ab3SNickeau/** 17121913ab3SNickeau * Svg 17221913ab3SNickeau */ 173*c3437056SNickeau$lang[SvgImageLink::CONF_LAZY_LOAD_ENABLE] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg - Load a svg only when they become visible"); 174*c3437056SNickeau$lang[SvgImageLink::CONF_MAX_KB_SIZE_FOR_INLINE_SVG] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg - The maximum size in Kb of the SVG to be included as markup in the web page"); 175*c3437056SNickeau$lang[SvgImageLink::CONF_SVG_INJECTION_ENABLE] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Injection - Replace the image as svg in the HTML when downloaded to be add styling capabilities"); 176*c3437056SNickeau$lang[action_plugin_combo_svg::CONF_SVG_UPLOAD_GROUP_NAME] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Security - The name of the group of users that can upload SVG"); 177*c3437056SNickeau$lang[SvgDocument::CONF_SVG_OPTIMIZATION_ENABLE] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Optimization - Reduce the size of the SVG by deleting non important meta"); 178*c3437056SNickeau$lang[SvgDocument::CONF_OPTIMIZATION_NAMESPACES_TO_KEEP] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Optimization - The namespace prefix to keep"); 179*c3437056SNickeau$lang[SvgDocument::CONF_OPTIMIZATION_ATTRIBUTES_TO_DELETE] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Optimization - The attribute deleted during optimization"); 180*c3437056SNickeau$lang[SvgDocument::CONF_OPTIMIZATION_ELEMENTS_TO_DELETE_IF_EMPTY] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Optimization - The element deleted if empty"); 181*c3437056SNickeau$lang[SvgDocument::CONF_OPTIMIZATION_ELEMENTS_TO_DELETE] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg Optimization - The element always deleted"); 182*c3437056SNickeau$lang[SvgDocument::CONF_PRESERVE_ASPECT_RATIO_DEFAULT] = PluginUtility::getDocumentationHyperLink(SvgImageLink::CANONICAL, "Svg - Default value for the preserveAspectRatio attribute"); 18321913ab3SNickeau 18421913ab3SNickeau 18521913ab3SNickeau/** 18621913ab3SNickeau * Lazy load image 18721913ab3SNickeau */ 188*c3437056SNickeau$lang[RasterImageLink::CONF_LAZY_LOADING_ENABLE] = PluginUtility::getDocumentationHyperLink(RasterImageLink::CANONICAL, "Raster Image - Load the raster image only when they become visible"); 189*c3437056SNickeau$lang[RasterImageLink::CONF_RETINA_SUPPORT_ENABLED] = PluginUtility::getDocumentationHyperLink(RasterImageLink::CANONICAL, "Raster Image - Retina Support: If checked, the images downloaded will match the display capabilities (the size DPI correction will not be applied)"); 190*c3437056SNickeau$lang[RasterImageLink::CONF_RESPONSIVE_IMAGE_MARGIN] = PluginUtility::getDocumentationHyperLink(RasterImageLink::CANONICAL, "Raster Image - Responsive image sizing: The image margin applied to screen size"); 19121913ab3SNickeau 19221913ab3SNickeau/** 19321913ab3SNickeau * Lazy loading 19421913ab3SNickeau */ 195*c3437056SNickeau$lang[LazyLoad::CONF_LAZY_LOADING_PLACEHOLDER_COLOR] = PluginUtility::getDocumentationHyperLink(LazyLoad::CANONICAL, "Lazy Loading - The placeholder background color"); 19621913ab3SNickeau 19721913ab3SNickeau/** 19821913ab3SNickeau * Image 19921913ab3SNickeau */ 200*c3437056SNickeau$lang[syntax_plugin_combo_media::CONF_IMAGE_ENABLE] = PluginUtility::getDocumentationHyperLink(MediaLink::CANONICAL, "Image - If unchecked, the image component will be disabled"); 201*c3437056SNickeau$lang[MediaLink::CONF_DEFAULT_LINKING] = PluginUtility::getDocumentationHyperLink(MediaLink::CANONICAL, "Image - The default link option from an internal image."); 20221913ab3SNickeau 20321913ab3SNickeau/** 20421913ab3SNickeau * Float 20521913ab3SNickeau */ 206*c3437056SNickeau$lang[FloatAttribute::CONF_FLOAT_DEFAULT_BREAKPOINT] = PluginUtility::getDocumentationHyperLink(FloatAttribute::CANONICAL, "Float - The default breakpoint that applies to floated value (left, right, none)"); 207531e725cSNickeau 208531e725cSNickeau/** 209531e725cSNickeau * Outline 210531e725cSNickeau */ 211*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_ENABLE] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - if checked, outline numbering will be applied"); 212*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL2] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The counter style for the level 2"); 213*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL3] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The counter style for the level 3"); 214*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL4] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The counter style for the level 4"); 215*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL5] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The counter style for the level 5"); 216*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL6] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The counter style for the level 6"); 217*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_SEPARATOR] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The separator between counters"); 218*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_PREFIX] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The prefix of the outline numbering"); 219*c3437056SNickeau$lang[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_SUFFIX] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_outlinenumbering::CANONICAL, "Outline - The suffix of the outline numbering"); 2205f891b7eSNickeau 221a6bf47aaSNickeau 222a6bf47aaSNickeau/** 223a6bf47aaSNickeau * Identity 224a6bf47aaSNickeau */ 225*c3437056SNickeau$lang[Identity::CONF_ENABLE_LOGO_ON_IDENTITY_FORMS] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If checked, the logo is shown on the identity forms (login, register, resend)"); 226*c3437056SNickeau$lang[action_plugin_combo_login::CONF_ENABLE_LOGIN_FORM] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If checked, the login form will be styled by Combo"); 227*c3437056SNickeau$lang[action_plugin_combo_registration::CONF_ENABLE_REGISTER_FORM] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If enable, the register form will be styled by Combo"); 228*c3437056SNickeau$lang[action_plugin_combo_resend::CONF_ENABLE_RESEND_PWD_FORM] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If enable, the resend form will be styled by Combo"); 229*c3437056SNickeau$lang[action_plugin_combo_profile::CONF_ENABLE_PROFILE_UPDATE_FORM] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If enable, the profile update form will be styled by Combo"); 230*c3437056SNickeau$lang[action_plugin_combo_profile::CONF_ENABLE_PROFILE_DELETE_FORM] = PluginUtility::getDocumentationHyperLink(Identity::CANONICAL, "If enable, the profile delete form will be styled by Combo"); 2319337a630SNickeau 23237748cd8SNickeau/** 23337748cd8SNickeau * Comment 23437748cd8SNickeau */ 235*c3437056SNickeau$lang[syntax_plugin_combo_comment::CONF_OUTPUT_COMMENT] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_comment::CANONICAL, "If enable, the comments will be present in the created page as comment (ie not visible but present)"); 23637748cd8SNickeau 2371fa8c418SNickeau/** 2381fa8c418SNickeau * Smart cache 2391fa8c418SNickeau */ 240*c3437056SNickeau$lang[action_plugin_combo_staticresource::CONF_STATIC_CACHE_ENABLED] = PluginUtility::getDocumentationHyperLink(action_plugin_combo_cache::CANONICAL, "If disabled, the smart image browser cache will be disabled"); 241*c3437056SNickeau 242*c3437056SNickeau/** 243*c3437056SNickeau * Link Wizard 244*c3437056SNickeau */ 245*c3437056SNickeau$lang[action_plugin_combo_linkwizard::CONF_ENABLE_ENHANCED_LINK_WIZARD] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_link::TAG, "If unchecked, the link wizard will not search for the term in the path, title, heading and name of the pages"); 246*c3437056SNickeau 247*c3437056SNickeau/** 248*c3437056SNickeau * Url Type 249*c3437056SNickeau */ 250*c3437056SNickeau$lang[PageUrlType::CONF_CANONICAL_URL_TYPE] = PluginUtility::getDocumentationHyperLink("page:url", "The type of url used for a page."); 251*c3437056SNickeau 252*c3437056SNickeau/** 253*c3437056SNickeau * Frontmatter 254*c3437056SNickeau */ 255*c3437056SNickeau$lang[syntax_plugin_combo_frontmatter::CONF_ENABLE_FRONT_MATTER_ON_SUBMIT] = PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_frontmatter::CANONICAL, "If checked, the metadata manager will create a frontmatter on submit."); 256*c3437056SNickeau 257*c3437056SNickeau/** 258*c3437056SNickeau * Heading 259*c3437056SNickeau */ 260*c3437056SNickeau$lang[syntax_plugin_combo_headingwiki::CONF_WIKI_HEADING_ENABLE]= PluginUtility::getDocumentationHyperLink(syntax_plugin_combo_heading::CANONICAL, "If unchecked, the combo wiki heading is disabled (You cannot add extra formatting syntax)"); 2611fa8c418SNickeau 262007225e5Sgerardnico?> 263