xref: /plugin/qc/lang/en/lang.php (revision 8fce80b1885d757ecced399340faa4148c7ed378)
1*8fce80b1SAndreas Gohr<?php
2*8fce80b1SAndreas Gohr
3*8fce80b1SAndreas Gohr$lang['intro_h']       = 'Page Analysis';
4*8fce80b1SAndreas Gohr
5*8fce80b1SAndreas Gohr$lang['errorsfound_h'] = 'Possible Quality Problems Identified';
6*8fce80b1SAndreas 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 point 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.';
7*8fce80b1SAndreas Gohr
8*8fce80b1SAndreas Gohr$lang['fixme_h']       = '%d FIXME(s)';
9*8fce80b1SAndreas Gohr$lang['fixme']         = 'The page contains markers about missing or incorrect content. You should replace the FIXME markers with corrected content.';
10*8fce80b1SAndreas Gohr
11*8fce80b1SAndreas Gohr$lang['noh1_h']        = 'No Main Headline';
12*8fce80b1SAndreas Gohr$lang['noh1']          = 'A page should always start with a level 1 headline. This headline reflect the main topic of the page.';
13*8fce80b1SAndreas Gohr
14*8fce80b1SAndreas Gohr$lang['manyh1_h']      = '%d Main Headlines';
15*8fce80b1SAndreas 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.';
16*8fce80b1SAndreas Gohr
17*8fce80b1SAndreas Gohr$lang['headernest_h']  = 'Incorrectly Nested Sections';
18*8fce80b1SAndreas 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.';
19*8fce80b1SAndreas Gohr
20*8fce80b1SAndreas Gohr$lang['manyhr_h']      = 'Many Horizontal Rules';
21*8fce80b1SAndreas 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.';
22*8fce80b1SAndreas Gohr
23*8fce80b1SAndreas Gohr$lang['manybr_h']      = 'Many Forced Line Breaks';
24*8fce80b1SAndreas 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.';
25*8fce80b1SAndreas Gohr
26*8fce80b1SAndreas Gohr$lang['deepquote_h']   = 'Deeply Nested Quotes';
27*8fce80b1SAndreas 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.';
28*8fce80b1SAndreas Gohr
29*8fce80b1SAndreas Gohr/*
30*8fce80b1SAndreas Gohr$lang['_h'] = '';
31*8fce80b1SAndreas Gohr$lang[''] = '';
32*8fce80b1SAndreas Gohr$lang['_h'] = '';
33*8fce80b1SAndreas Gohr$lang[''] = '';
34*8fce80b1SAndreas Gohr*/
35