xref: /plugin/qc/lang/en/lang.php (revision 4ea373cd7cd9f00f4dddd762d46672bc6d4a5e51)
18fce80b1SAndreas Gohr<?php
28fce80b1SAndreas Gohr
38fce80b1SAndreas Gohr$lang['intro_h']       = 'Page Analysis';
48fce80b1SAndreas Gohr
5*4ea373cdSAndreas Gohr$lang['g_created']     = 'Created:';
6*4ea373cdSAndreas Gohr$lang['g_modified']    = 'Last Modified:';
7*4ea373cdSAndreas Gohr$lang['g_words']       = 'Words:';
8*4ea373cdSAndreas Gohr$lang['g_chars']       = 'Characters:';
9*4ea373cdSAndreas Gohr$lang['g_changes']     = 'Number of Edits:';
10*4ea373cdSAndreas Gohr$lang['g_authors']     = 'Top Authors:';
11*4ea373cdSAndreas Gohr
12*4ea373cdSAndreas Gohr
138fce80b1SAndreas Gohr$lang['errorsfound_h'] = 'Possible Quality Problems Identified';
148fce80b1SAndreas 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.';
158fce80b1SAndreas Gohr
168fce80b1SAndreas Gohr$lang['fixme_h']       = '%d FIXME(s)';
178fce80b1SAndreas Gohr$lang['fixme']         = 'The page contains markers about missing or incorrect content. You should replace the FIXME markers with corrected content.';
188fce80b1SAndreas Gohr
198fce80b1SAndreas Gohr$lang['noh1_h']        = 'No Main Headline';
20*4ea373cdSAndreas Gohr$lang['noh1']          = 'A page should always start with a level 1 headline. This headline should reflect the main topic of the page.';
218fce80b1SAndreas Gohr
228fce80b1SAndreas Gohr$lang['manyh1_h']      = '%d Main Headlines';
238fce80b1SAndreas 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.';
248fce80b1SAndreas Gohr
258fce80b1SAndreas Gohr$lang['headernest_h']  = 'Incorrectly Nested Sections';
268fce80b1SAndreas 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.';
278fce80b1SAndreas Gohr
288fce80b1SAndreas Gohr$lang['manyhr_h']      = 'Many Horizontal Rules';
298fce80b1SAndreas 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.';
308fce80b1SAndreas Gohr
318fce80b1SAndreas Gohr$lang['manybr_h']      = 'Many Forced Line Breaks';
328fce80b1SAndreas 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.';
338fce80b1SAndreas Gohr
348fce80b1SAndreas Gohr$lang['deepquote_h']   = 'Deeply Nested Quotes';
358fce80b1SAndreas 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.';
368fce80b1SAndreas Gohr
37*4ea373cdSAndreas Gohr$lang['singleauthor_h'] = 'Single Author Only';
38*4ea373cdSAndreas Gohr$lang['singleauthor'] = 'The page was only edited by a single author so far. Others should recheck the page for correctness and readability.';
39*4ea373cdSAndreas Gohr
408fce80b1SAndreas Gohr/*
418fce80b1SAndreas Gohr$lang['_h'] = '';
428fce80b1SAndreas Gohr$lang[''] = '';
438fce80b1SAndreas Gohr*/
44