18fce80b1SAndreas Gohr<?php 28fce80b1SAndreas Gohr 38fce80b1SAndreas Gohr$lang['intro_h'] = 'Page Analysis'; 48fce80b1SAndreas Gohr 54ea373cdSAndreas Gohr$lang['g_created'] = 'Created:'; 64ea373cdSAndreas Gohr$lang['g_modified'] = 'Last Modified:'; 74ea373cdSAndreas Gohr$lang['g_words'] = 'Words:'; 84ea373cdSAndreas Gohr$lang['g_chars'] = 'Characters:'; 94ea373cdSAndreas Gohr$lang['g_changes'] = 'Number of Edits:'; 104ea373cdSAndreas Gohr$lang['g_authors'] = 'Top Authors:'; 114ea373cdSAndreas Gohr 129068e431SAndreas Gohr$lang['anonymous'] = 'Anonymous'; 139068e431SAndreas Gohr 148dfaf9b5SAndreas Gohr$lang['i_qcscore'] = 'Quality:'; 154ea373cdSAndreas Gohr 168fce80b1SAndreas Gohr$lang['errorsfound_h'] = 'Possible Quality Problems Identified'; 179068e431SAndreas Gohr$lang['errorsfound'] = 'After analyzing the page structure, a few possible problems about the readability and usability of the page where identified. Please have a look at the points below and see if you can correct them. Keep in mind that this was an automatic analysis - you need to judge yourself if it is correct.'; 188fce80b1SAndreas Gohr 198fce80b1SAndreas Gohr$lang['fixme_h'] = '%d FIXME(s)'; 208fce80b1SAndreas Gohr$lang['fixme'] = 'The page contains markers about missing or incorrect content. You should replace the FIXME markers with corrected content.'; 218fce80b1SAndreas Gohr 228fce80b1SAndreas Gohr$lang['noh1_h'] = 'No Main Headline'; 234ea373cdSAndreas Gohr$lang['noh1'] = 'A page should always start with a level 1 headline. This headline should reflect the main topic of the page.'; 248fce80b1SAndreas Gohr 258fce80b1SAndreas Gohr$lang['manyh1_h'] = '%d Main Headlines'; 268fce80b1SAndreas Gohr$lang['manyh1'] = 'The page contains multiple level 1 headlines. A page should always contain exactly one level 1 headline reflecting the main topic of the page. If your page contains multiple main topics, consider splitting the page into several pages.'; 278fce80b1SAndreas Gohr 288fce80b1SAndreas Gohr$lang['headernest_h'] = 'Incorrectly Nested Sections'; 298fce80b1SAndreas Gohr$lang['headernest'] = 'The page contains sections that skip section levels. This hinders readability and structure. A section should only directly contain the next subsection levels. Consider adding missing sub section headlines or move up your existing sub sections to the correct level.'; 308fce80b1SAndreas Gohr 318fce80b1SAndreas Gohr$lang['manyhr_h'] = 'Many Horizontal Rules'; 328fce80b1SAndreas Gohr$lang['manyhr'] = 'The page contains multiple horizontal rules (<code>----</code>). Horizontal rules should be used very rarely as they hinder readability and structure of a document. Consider restructuring the page using sections and paragraphs instead.'; 338fce80b1SAndreas Gohr 348fce80b1SAndreas Gohr$lang['manybr_h'] = 'Many Forced Line Breaks'; 358fce80b1SAndreas Gohr$lang['manybr'] = 'The page contains multiple forced line breaks (<code>\\\\ </code>). Line breaks should be avoided as much as possible because they hinder the flow and readability of the text. Instead the page should be formatted using paragraphs to support the content\'s message. To create a paragraph just insert an empty line into your text.'; 368fce80b1SAndreas Gohr 378fce80b1SAndreas Gohr$lang['deepquote_h'] = 'Deeply Nested Quotes'; 388fce80b1SAndreas Gohr$lang['deepquote'] = 'Your page contains deeply nested quotes, this might indicate a discussion style page. Discussions are hard to read after while. It is recommended to refactor them into proper documentation, incorpoorating all the facts that were mentioned in the discussion before.'; 398fce80b1SAndreas Gohr 404ea373cdSAndreas Gohr$lang['singleauthor_h'] = 'Single Author Only'; 414ea373cdSAndreas Gohr$lang['singleauthor'] = 'The page was only edited by a single author so far. Others should recheck the page for correctness and readability.'; 424ea373cdSAndreas Gohr 43d723b313SAndreas Gohr$lang['toosmall_h'] = 'Very Small Document'; 44d723b313SAndreas Gohr$lang['toosmall'] = 'This page seems to be irrationally small and is probably a stub. Consider extending the content, or maybe remove the page alltogether.'; 45d723b313SAndreas Gohr 46d723b313SAndreas Gohr$lang['toolarge_h'] = 'Very Large Document'; 47d723b313SAndreas Gohr$lang['toolarge'] = 'This page is very large. Long pages are hard to read on a monitor. Consider splitting it into multiple pages instead.'; 48d723b313SAndreas Gohr 49*cef469fcSAndreas Gohr$lang['manyheaders_h'] = 'Many Headlines'; 50d723b313SAndreas Gohr$lang['manyheaders'] = 'Compared to the overall length, this page has a lot of headlines. Too much structure without any real content might hinder readability and usefulness of the page.'; 51d723b313SAndreas Gohr 52d723b313SAndreas Gohr$lang['fewheaders_h'] = 'Few Headlines'; 53d723b313SAndreas Gohr$lang['fewheaders'] = 'Compared to the overall length, this page doesn\'t have many headlines. Structuring texts with subsection makes it easier to overview the content and helps readers to better understand the text. '; 54d723b313SAndreas Gohr 55d723b313SAndreas Gohr$lang['nolink_h'] = 'No Wiki Links'; 56d723b313SAndreas Gohr$lang['nolink'] = 'All pages in a wiki should be linked with each other. This page seems not to contain a single link to another wiki page. Maybe you can link to some related pages?'; 57d723b313SAndreas Gohr 58d723b313SAndreas Gohr$lang['brokenlink_h'] = 'Many links to non-existing pages'; 59d723b313SAndreas Gohr$lang['brokenlink'] = 'This page contains several links to pages that do not exist. This is normal for new topics or while creating a new wiki. You just should make sure these pages get created. Also check if you maybe mistyped the linked page names.'; 60d723b313SAndreas Gohr 61d723b313SAndreas Gohr$lang['manyformat_h'] = 'Too much Text Formatting'; 62d723b313SAndreas Gohr$lang['manyformat'] = 'Compared to the overall length, this page contains a lot of text formatting (like bold, italics or underline). Such formatting should only be used very sparingly or the readability suffers.'; 63d723b313SAndreas Gohr 64d723b313SAndreas Gohr$lang['longformat_h'] = 'Long Formatted Passages'; 65d723b313SAndreas Gohr$lang['longformat'] = 'This page contains some longer passages that are formatted (like bold, italics or underlined). Such formatting should only be used very sparingly or the readability suffers.'; 66d723b313SAndreas Gohr 678fce80b1SAndreas Gohr/* 688fce80b1SAndreas Gohr$lang['_h'] = ''; 698fce80b1SAndreas Gohr$lang[''] = ''; 708fce80b1SAndreas Gohr*/ 71d723b313SAndreas Gohr 72