18fce80b1SAndreas Gohr<?php 28fce80b1SAndreas Gohr 3*e840d0fcSDominik Eckelmann$lang['menu'] = 'Quality Summary'; 4*e840d0fcSDominik Eckelmann$lang['admin_headline'] = 'Quality Summary'; 5*e840d0fcSDominik Eckelmann$lang['admin_desc'] = 'Here are shown the %d pages with the most FIXMEs and worst quality scoring. Click on the title of a cell to order it. The summary is updated daily.'; 6*e840d0fcSDominik Eckelmann$lang['admin_page'] = 'Page'; 7*e840d0fcSDominik Eckelmann$lang['admin_quality'] = 'Quality'; 8*e840d0fcSDominik Eckelmann$lang['admin_fixme'] = 'Fixme'; 9*e840d0fcSDominik Eckelmann 108fce80b1SAndreas Gohr$lang['intro_h'] = 'Page Analysis'; 118fce80b1SAndreas Gohr 124ea373cdSAndreas Gohr$lang['g_created'] = 'Created:'; 134ea373cdSAndreas Gohr$lang['g_modified'] = 'Last Modified:'; 144ea373cdSAndreas Gohr$lang['g_words'] = 'Words:'; 154ea373cdSAndreas Gohr$lang['g_chars'] = 'Characters:'; 164ea373cdSAndreas Gohr$lang['g_changes'] = 'Number of Edits:'; 174ea373cdSAndreas Gohr$lang['g_authors'] = 'Top Authors:'; 184ea373cdSAndreas Gohr 199068e431SAndreas Gohr$lang['anonymous'] = 'Anonymous'; 209068e431SAndreas Gohr 218dfaf9b5SAndreas Gohr$lang['i_qcscore'] = 'Quality:'; 224ea373cdSAndreas Gohr 238fce80b1SAndreas Gohr$lang['errorsfound_h'] = 'Possible Quality Problems Identified'; 249068e431SAndreas 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.'; 258fce80b1SAndreas Gohr 268fce80b1SAndreas Gohr$lang['fixme_h'] = '%d FIXME(s)'; 278fce80b1SAndreas Gohr$lang['fixme'] = 'The page contains markers about missing or incorrect content. You should replace the FIXME markers with corrected content.'; 288fce80b1SAndreas Gohr 298fce80b1SAndreas Gohr$lang['noh1_h'] = 'No Main Headline'; 304ea373cdSAndreas Gohr$lang['noh1'] = 'A page should always start with a level 1 headline. This headline should reflect the main topic of the page.'; 318fce80b1SAndreas Gohr 328fce80b1SAndreas Gohr$lang['manyh1_h'] = '%d Main Headlines'; 338fce80b1SAndreas 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.'; 348fce80b1SAndreas Gohr 358fce80b1SAndreas Gohr$lang['headernest_h'] = 'Incorrectly Nested Sections'; 368fce80b1SAndreas 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.'; 378fce80b1SAndreas Gohr 388fce80b1SAndreas Gohr$lang['manyhr_h'] = 'Many Horizontal Rules'; 398fce80b1SAndreas 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.'; 408fce80b1SAndreas Gohr 418fce80b1SAndreas Gohr$lang['manybr_h'] = 'Many Forced Line Breaks'; 428fce80b1SAndreas 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.'; 438fce80b1SAndreas Gohr 448fce80b1SAndreas Gohr$lang['deepquote_h'] = 'Deeply Nested Quotes'; 458fce80b1SAndreas 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.'; 468fce80b1SAndreas Gohr 474ea373cdSAndreas Gohr$lang['singleauthor_h'] = 'Single Author Only'; 484ea373cdSAndreas Gohr$lang['singleauthor'] = 'The page was only edited by a single author so far. Others should recheck the page for correctness and readability.'; 494ea373cdSAndreas Gohr 50d723b313SAndreas Gohr$lang['toosmall_h'] = 'Very Small Document'; 51d723b313SAndreas 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.'; 52d723b313SAndreas Gohr 53d723b313SAndreas Gohr$lang['toolarge_h'] = 'Very Large Document'; 54d723b313SAndreas Gohr$lang['toolarge'] = 'This page is very large. Long pages are hard to read on a monitor. Consider splitting it into multiple pages instead.'; 55d723b313SAndreas Gohr 56cef469fcSAndreas Gohr$lang['manyheaders_h'] = 'Many Headlines'; 57d723b313SAndreas 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.'; 58d723b313SAndreas Gohr 59d723b313SAndreas Gohr$lang['fewheaders_h'] = 'Few Headlines'; 60d723b313SAndreas 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. '; 61d723b313SAndreas Gohr 62d723b313SAndreas Gohr$lang['nolink_h'] = 'No Wiki Links'; 63d723b313SAndreas 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?'; 64d723b313SAndreas Gohr 65d723b313SAndreas Gohr$lang['brokenlink_h'] = 'Many links to non-existing pages'; 66d723b313SAndreas 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.'; 67d723b313SAndreas Gohr 68d723b313SAndreas Gohr$lang['manyformat_h'] = 'Too much Text Formatting'; 69d723b313SAndreas 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.'; 70d723b313SAndreas Gohr 71d723b313SAndreas Gohr$lang['longformat_h'] = 'Long Formatted Passages'; 72d723b313SAndreas 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.'; 73d723b313SAndreas Gohr 744bda998cSAndreas Gohr$lang['multiformat_h'] = 'Overly Formatted Text'; 754bda998cSAndreas Gohr$lang['multiformat'] = 'This page contains some text that is formatted with multiple different markups (like bold, italics or underlined). Combining formatting is considered typographically bad style and hinders the readability.'; 764bda998cSAndreas Gohr 77e348ef7cSAndreas Gohr$lang['nobacklink_h'] = 'No Backlinks'; 78e348ef7cSAndreas Gohr$lang['nobacklink'] = 'It seems like no other page is linking to this page. This usually means it can\'t be found by other means than the search or the index. This might not be true, if you\'re using automatic page listing plugins. See if you can link to this page from somewhere else in the wiki.'; 79e348ef7cSAndreas Gohr 808fce80b1SAndreas Gohr/* 818fce80b1SAndreas Gohr$lang['_h'] = ''; 828fce80b1SAndreas Gohr$lang[''] = ''; 838fce80b1SAndreas Gohr*/ 84d723b313SAndreas Gohr 85