commit
da8e10bedc
2
.github/workflows/api_test.yml
vendored
2
.github/workflows/api_test.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
############################################################
|
||||
# On macOS, we'll build both architectures.
|
||||
# Note: this is the currently only enabled runner, and I'm
|
||||
# comfortable with it. This excercises nearly all of
|
||||
# comfortable with it. This exercises nearly all of
|
||||
# HTML Tidy's library API, which should be platform
|
||||
# agnostic.
|
||||
############################################################
|
||||
|
|
2
.github/workflows/build_and_test.yml
vendored
2
.github/workflows/build_and_test.yml
vendored
|
@ -2,7 +2,7 @@
|
|||
# Build and Test tidy on the latest versions of all of the major platforms.
|
||||
#
|
||||
# - Build on multiple operating systems, and where possible, multiple
|
||||
# architectures. On Windows, we will also build and test MingGW in
|
||||
# architectures. On Windows, we will also build and test mingw in
|
||||
# addition to MSVC.
|
||||
#
|
||||
# - Report the version number for each binary that is built.
|
||||
|
|
|
@ -21,7 +21,7 @@ cmake_minimum_required (VERSION 2.8.12)
|
|||
|
||||
set(LIB_NAME tidy)
|
||||
set(LIBTIDY_DESCRIPTION "${LIB_NAME} - HTML syntax checker")
|
||||
set(LIBTIDY_URL "http://www.html-tidy.org")
|
||||
set(LIBTIDY_URL "https://www.html-tidy.org")
|
||||
|
||||
project (${LIB_NAME})
|
||||
|
||||
|
|
16
README.md
16
README.md
|
@ -44,20 +44,20 @@ Tidy supports localization, and welcomes translations into various languages. Pl
|
|||
|
||||
## Other Important Links
|
||||
|
||||
- site: [http://www.html-tidy.org/][4]
|
||||
- site: [https://www.html-tidy.org/][4]
|
||||
- source: [https://github.com/htacg/tidy-html5][5]
|
||||
- binaries: [http://binaries.html-tidy.org][6]
|
||||
- binaries: [https://binaries.html-tidy.org][6]
|
||||
- bugs: [https://github.com/htacg/tidy-html5/issues][7]
|
||||
- list: [https://lists.w3.org/Archives/Public/html-tidy/][8]
|
||||
- api and quickref: [http://api.html-tidy.org/][9]
|
||||
- api and quickref: [https://api.html-tidy.org/][9]
|
||||
- Wikidata: [https://www.wikidata.org/wiki/Q1566084][10]
|
||||
|
||||
[4]: http://www.html-tidy.org/
|
||||
[4]: https://www.html-tidy.org/
|
||||
[5]: https://github.com/htacg/tidy-html5
|
||||
[6]: http://binaries.html-tidy.org
|
||||
[6]: https://binaries.html-tidy.org
|
||||
[7]: https://github.com/htacg/tidy-html5/issues
|
||||
[8]: https://lists.w3.org/Archives/Public/html-tidy/
|
||||
[9]: http://api.html-tidy.org/
|
||||
[9]: https://api.html-tidy.org/
|
||||
[10]: https://www.wikidata.org/wiki/Q1566084
|
||||
|
||||
|
||||
|
@ -65,13 +65,13 @@ Tidy supports localization, and welcomes translations into various languages. Pl
|
|||
|
||||
This repository should be considered canonical for HTML Tidy starting from 2015-January-15.
|
||||
|
||||
- This repository originally transferred from [w3c.github.com/tidy-html5][20], now redirected to the current site.
|
||||
- This repository originally transferred from [w3c.github.com/tidy-html5][20], then redirected to the current site, but now dead.
|
||||
|
||||
- First moved to Github from [tidy.sourceforge.net][21]. Note, this site is kept only for historic reasons, and is not now well maintained.
|
||||
|
||||
**Tidy is the granddaddy of HTML tools, with support for modern standards.** Have fun...
|
||||
|
||||
[20]: http://w3c.github.com/tidy-html5/
|
||||
[20]: https://w3c.github.com/tidy-html5/
|
||||
[21]: http://tidy.sourceforge.net
|
||||
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
## Prerequisites
|
||||
|
||||
1. git - [http://git-scm.com/book/en/v2/Getting-Started-Installing-Git][1]
|
||||
1. git - [https://git-scm.com/book/en/v2/Getting-Started-Installing-Git][1]
|
||||
|
||||
2. cmake - [http://www.cmake.org/download/][2]
|
||||
2. cmake - [https://cmake.org/download/][2]
|
||||
|
||||
3. appropriate build tools for the platform
|
||||
|
||||
|
@ -86,9 +86,6 @@ make test
|
|||
make install
|
||||
~~~
|
||||
|
||||
[1]: http://git-scm.com/book/en/v2/Getting-Started-Installing-Git
|
||||
[2]: http://www.cmake.org/download/
|
||||
[1]: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
|
||||
[2]: https://cmake.org/download/
|
||||
[3]: http://xmlsoft.org/XSLT/xsltproc2.html
|
||||
|
||||
|
||||
; eof
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Tidy supports a quite large number of configuration options. The full list can be output using `-help-config`. This will show the option to be used either on the command line or in a configuration file, the type of option, and the value(s) that can be used. The current default value for each option can be seen using `-show-config`.
|
||||
|
||||
The options can also be listed in xml format. `-xml-help` will output each option plus a description. `-xml-config` will not only output the option and a description, but will include the type, default and examples. These xml outputs are used, with the aid of `xsltproc` and `doxygen`, to generate the [API Documentation](http://api.html-tidy.org/).
|
||||
The options can also be listed in xml format. `-xml-help` will output each option plus a description. `-xml-config` will not only output the option and a description, but will include the type, default and examples. These xml outputs are used, with the aid of `xsltproc` and `doxygen`, to generate the [API Documentation](https://api.html-tidy.org/).
|
||||
|
||||
These options can also be used by application linking with `libtidy`. For each option there is a `TidyOptionId` enumeration in the `tidyenum.h` file, and get/set functions for each option type.
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
<h2 id="prerequisites">Prerequisites</h2>
|
||||
|
||||
<ol>
|
||||
<li><p>git - <a href="http://git-scm.com/book/en/v2/Getting-Started-Installing-Git">http://git-scm.com/book/en/v2/Getting-Started-Installing-Git</a></p></li>
|
||||
<li><p>cmake - <a href="http://www.cmake.org/download/">http://www.cmake.org/download/</a></p></li>
|
||||
<li><p>git - <a href="https://git-scm.com/book/en/v2/Getting-Started-Installing-Git">https://git-scm.com/book/en/v2/Getting-Started-Installing-Git</a></p></li>
|
||||
<li><p>cmake - <a href="https://cmake.org/download/">https://cmake.org/download/</a></p></li>
|
||||
<li><p>appropriate build tools for the platform</p></li>
|
||||
<li><p>the <a href="http://xmlsoft.org/XSLT/xsltproc2.html">xsltproc</a> tool is required to build and install the <code>tidy.1</code> man page on Unix-like platforms.</p></li>
|
||||
</ol>
|
||||
|
|
|
@ -4,7 +4,7 @@ This is about adding a new HTML **tag**.
|
|||
|
||||
Tidy tries to support all **tags** supported by the W3C. To add a new supported **tag**, the definition begins in `tidyenum.h`, to give it a value. Then it is added to the `tag_defs[]` table in `tags.c`, where it is given a unique string, supported html versions, attributes support, and a bit `type`.
|
||||
|
||||
Note, there are a group of configuration options to add **tags** not yet approved by the W3C. These are [new-blocklevel-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-blocklevel-tags), [new-empty-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-empty-tags), [new-inline-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-inline-tags). and [new-pre-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-pre-tags). This provides a way to extend the `tag_defs[]` table just for that tidy session.
|
||||
Note, there are a group of configuration options to add **tags** not yet approved by the W3C. These are [new-blocklevel-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-blocklevel-tags), [new-empty-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-empty-tags), [new-inline-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-inline-tags). and [new-pre-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-pre-tags). This provides a way to extend the `tag_defs[]` table just for that tidy session.
|
||||
|
||||
So, adding a new HTML **tag** consists of the following simple steps:
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ This document provides an explanation of how to interpret HTML Tidy’s version
|
|||
|
||||
## Background
|
||||
|
||||
**HTML Tidy** uses a modified version of [Semantic Versioning](http://semver.org/), and so it’s important to understand what the version number of **HTML Tidy** means to you, and how it might impact your workflow.
|
||||
**HTML Tidy** uses a modified version of [Semantic Versioning](https://semver.org/), and so it’s important to understand what the version number of **HTML Tidy** means to you, and how it might impact your workflow.
|
||||
|
||||
When you execute `tidy -v` on the command line, you might see responses such as:
|
||||
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
\f3\fmodern\fcharset0 Courier;}
|
||||
{\colortbl;\red255\green255\blue255;}
|
||||
{\*\expandedcolortbl;;}
|
||||
\paperw11900\paperh16840\margl1440\margr1440\vieww25720\viewh15920\viewkind0
|
||||
\paperw11905\paperh16837\margl1440\margr1440\vieww25720\viewh15920\viewkind0
|
||||
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\qc\partightenfactor0
|
||||
|
||||
\f0\b\fs36 \cf0 HTACG HTML Tidy for macOS
|
||||
\fs24 \
|
||||
\
|
||||
|
||||
\fs28 http://www.html-tidy.org
|
||||
\fs28 https://www.html-tidy.org
|
||||
\f1\b0\fs24 \
|
||||
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
|
||||
\cf0 \
|
||||
|
|
|
@ -326,7 +326,7 @@ TIDY_EXPORT Bool TIDY_CALL tidySetPanicCall( TidyPanic fpanic );
|
|||
**
|
||||
** For an excellent example of how to invoke LibTidy, please consult
|
||||
** `console/tidy.c:main()` for in-depth implementation details. A simplified
|
||||
** example can be seen on our site: http://www.html-tidy.org/developer/
|
||||
** example can be seen on our site: https://www.html-tidy.org/developer/
|
||||
**
|
||||
** @{
|
||||
******************************************************************************/
|
||||
|
|
|
@ -579,7 +579,7 @@ extern "C" {
|
|||
* Visibility support
|
||||
* With GCC 4, __attribute__ ((visibility("default"))) can be used
|
||||
* along compiling with tidylib with "-fvisibility=hidden". See
|
||||
* http://gcc.gnu.org/wiki/Visibility and build/gmake/Makefile.
|
||||
* https://gcc.gnu.org/wiki/Visibility and build/gmake/Makefile.
|
||||
*===========================================================================*/
|
||||
/*
|
||||
#if defined(__GNUC__) && __GNUC__ >= 4
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-04-28 16:18:45\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
"Diese Option bestimmt, wenn nötig, das Niveau der Überprüfungen der Barrierefreiheit, "
|
||||
"die Tidy durchführen soll. "
|
||||
|
@ -34,7 +40,7 @@ msgstr ""
|
|||
"Niveau <var>0 (Tiidy Classic)</var> entsprichte dem Niveau der Prüfugen von Tidy Classic."
|
||||
"<br/>"
|
||||
"Auf dieser Seite finden Sie weitere Informationen zur Prüfung der Barrierefreiheit mit Tidy: "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\">Barrierefreiheit mit Tidy</a>. "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\">Barrierefreiheit mit Tidy</a>. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -1219,7 +1225,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1987,18 +1993,12 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
/* option-name: wrap-script-literals */
|
||||
"Mit dieser Option wird bestimmt, ob Tidy Literale, die in Skript-Attributen "
|
||||
"auftauchen, umbrechen soll. "
|
||||
"<br/>"
|
||||
"Tidy bricht Skript-Literale um, indem es vor jedem Zeilenumbruch einen Backslash "
|
||||
"einsetzt. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
@ -2390,7 +2390,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Zeichencodes für UTF-8 müssen zwischen U+000 und U+10FFFF liegen.\n"
|
||||
"Die UTF-8 Definition erlaubt im Anhang D zu ISO/IEC 10646-1:2000\n"
|
||||
|
@ -2401,7 +2401,7 @@ msgstr ""
|
|||
"erlaubt kein Mapping nicht paarweise zugeordneter Ersatzzeichen,\n"
|
||||
"auch nicht U+FFFE oder U+FFFF (es erlaubt aber andere\n"
|
||||
"nichtdruckbare Zeichen). Mehr Informationen, erhalten Sie auf\n"
|
||||
"http://www.unicode.org/ und http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ und https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_INVALID_UTF16"
|
||||
|
@ -2409,13 +2409,13 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Zeichencodes für UTF-16 müssen im Breich U+0000 bis U+10FFFF liegen.\n"
|
||||
"Die UTF-16 Definition im Anhang C zu ISO/IEC 10646-1:2000 erlaubt\n"
|
||||
"kein Mapping nicht paarweise zugeordneter Ersatzzeichen. Weitere\n"
|
||||
"Informationen finden Sie auf\n"
|
||||
"http://www.unicode.org/ und http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ und https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -2428,7 +2428,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
"URIs müssen richtig mit Escape-Sequenzen ausgestatten werden\n"
|
||||
"und darf keine unmaskierten Zeichen unter U+0021 einschließlich,\n"
|
||||
|
@ -2440,7 +2440,7 @@ msgstr ""
|
|||
"server-seitiger Skripte ist davon abhängig. Wenn Sie damit nicht\n"
|
||||
"einverstanden sind, müssen Sie die Escape-Sequenzuen selbst\n"
|
||||
"schreiben. Dazu gibt es mehr Informationen auf\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_BAD_FORM"
|
||||
|
@ -2559,20 +2559,20 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
"Weitere Ratschläge zur Barrierefreiheit finden Sie auf\n"
|
||||
"http://www.w3.org/WAI/GL."
|
||||
"https://www.w3.org/WAI/GL."
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The URL should not be translated unless you find a matching URL in your language.
|
||||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
"Weitere Ratschläge zur Barrierefreiheit finden Sie auf\n"
|
||||
"http://www.w3.org/WAI/GL und http://www.html-tidy.org/accessibility/."
|
||||
"https://www.w3.org/WAI/GL und https://www.html-tidy.org/accessibility/."
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_USING_LAYER"
|
||||
|
@ -2675,9 +2675,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
"Über HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Fehlerberichte und Kommentare (in English):\n"
|
||||
|
@ -2685,11 +2685,11 @@ msgstr ""
|
|||
"Offizielle Mailing-Liste:\n"
|
||||
"\thttps://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Neueste HTML Spezifikation:\n"
|
||||
"\thttp://dev.w3.org/html5/spec-author-view/\n"
|
||||
"\thttps://html.spec.whatwg.org/multipage/\n"
|
||||
"Validieren Sie Ihre HTML-Dokumente:\n"
|
||||
"\tttp://validator.w3.org/nu/\n"
|
||||
"\thttps://validator.w3.org/nu/\n"
|
||||
"Setzen Sie sich für den Eintritt Ihrer Firma ins W3C ein:\n"
|
||||
"\thttp://www.w3.org/Consortium\n"
|
||||
"\thttps://www.w3.org/Consortium\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -3233,6 +3233,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr "%s ID \"%s\" verwendet XML ID Syntax"
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr "[1.1.1.1]: <img> ohne 'alt' Text."
|
||||
|
@ -4093,21 +4097,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
|
@ -4143,21 +4144,18 @@ msgstr ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" Für weitere Informationen über HTML Tidy, besuchen Sie\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" Mehr zu HTML finden Sie auf den folgenden Seiten (in englischer Sprache):\n"
|
||||
"\n"
|
||||
" HTML: Ausgabe für Web-Autoren (die neueste HTML Spezifikation)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: Die Auszeichnungssprache (ein HTML Handbuch)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (die neueste HTML Spezifikation)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" Senden Sie Fehlerberichte an https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" oder senden Sie Fragen und Kommentare an public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Überprüfen Sie Ihre HTML Dokumente mit dem W3C Nu Validierer:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -343,8 +349,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -474,7 +487,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -538,7 +551,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -823,9 +836,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -970,7 +983,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1212,7 +1225,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1279,6 +1292,22 @@ msgid ""
|
|||
"should be shown. If set to <var>0</var>, then no errors are shown. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1636,7 +1665,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
|
||||
|
@ -1650,11 +1679,8 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1893,6 +1919,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -2011,7 +2042,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2020,7 +2051,7 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2034,7 +2065,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2116,7 +2147,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2124,7 +2155,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2213,9 +2244,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2242,6 +2273,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr ""
|
||||
|
@ -2755,6 +2791,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr ""
|
||||
|
@ -3253,7 +3293,7 @@ msgstr ""
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3547,7 +3587,6 @@ msgstr ""
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3580,7 +3619,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -3604,21 +3643,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -337,8 +343,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -468,7 +481,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -530,7 +543,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -805,9 +818,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -936,7 +949,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1178,7 +1191,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1242,6 +1255,22 @@ msgid ""
|
|||
"should be shown. If set to <var>0</var>, then no errors are shown. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1584,7 +1613,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
|
||||
|
@ -1598,11 +1627,8 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1841,6 +1867,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -1959,7 +1990,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1968,7 +1999,7 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1982,7 +2013,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2064,7 +2095,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2072,7 +2103,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2157,9 +2188,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2186,6 +2217,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr ""
|
||||
|
@ -2699,6 +2735,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr ""
|
||||
|
@ -3197,7 +3237,7 @@ msgstr ""
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3491,7 +3531,6 @@ msgstr ""
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3524,7 +3563,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -3548,21 +3587,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -337,8 +343,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -468,7 +481,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -530,7 +543,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -805,9 +818,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -931,7 +944,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1173,7 +1186,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1237,6 +1250,22 @@ msgid ""
|
|||
"should be shown. If set to <var>0</var>, then no errors are shown. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1579,7 +1608,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
|
||||
|
@ -1593,11 +1622,8 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1836,6 +1862,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -1954,7 +1985,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1963,7 +1994,7 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1977,7 +2008,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2059,7 +2090,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2067,7 +2098,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2152,9 +2183,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2181,6 +2212,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr ""
|
||||
|
@ -2694,6 +2730,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr ""
|
||||
|
@ -3192,7 +3232,7 @@ msgstr ""
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3486,7 +3526,6 @@ msgstr ""
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3519,7 +3558,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -3543,21 +3582,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,16 +22,22 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
"Cette option précise le niveau de contrôle d'accessibilité que Tidy doit éventuellement exécuter. "
|
||||
"Le <br/>niveau <var>0 (Tidy Classic)</var> est équivalent au contrôle d'accessibilité de Tidy "
|
||||
"Classic. <br/>Pour plus d'informations sur le contrôle d'accessibilité de Tidy, consultez <a href="
|
||||
"\"http://www.html-tidy.org/accessibility/\"> la page d'accessibilité de Tidy</a>. "
|
||||
"\"https://www.html-tidy.org/accessibility/\"> la page d'accessibilité de Tidy</a>. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
@ -406,8 +412,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
"Cette option précise si Tidy doit adopter un format de rapports d'erreurs et d'avertissements plus "
|
||||
"facilement exploitable par GNU Emacs."
|
||||
|
@ -559,7 +572,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -633,7 +646,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr "Cette option précise si Tidy doit afficher en sortie les commentaires."
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -946,9 +959,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
"Cette option précise si Tidy doit supprimer des documents Word 2000, le HTML spécifique de "
|
||||
"Microsoft, et afficher des espaces en sortie plutôt que des espaces insécables, lorsque ceux-ci "
|
||||
|
@ -1099,7 +1112,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1385,7 +1398,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
"Cette option précise si Tidy doit afficher en sortie les caractères <code>&</code> en les "
|
||||
"écrivant <code>&amp;</code>. "
|
||||
|
@ -1462,6 +1475,22 @@ msgstr ""
|
|||
"Cette option précise le nombre utilisé par Tidy pour déterminer si les erreurs suivantes doivent "
|
||||
"être montrées. Si la valeur est <var>0</var>, aucune erreur n'est affichée. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1863,7 +1892,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
"Cette option précise si Tidy doit ajouter un saut de ligne au texte contenu dans les pseudos-"
|
||||
|
@ -1879,15 +1908,11 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
"Cette option précise si Tidy doit ajouter des sauts de lignes aux chaînes littérales dans les "
|
||||
"attributs de script. <br/>Tidy prend en charge la césure des longues chaînes littérales de scripts "
|
||||
"en ajoutant un caractère de barre oblique arrière (backslash) avant le saut de ligne. "
|
||||
"attributs de script. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
@ -2155,6 +2180,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr "Ligne: %d Col: %d - "
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -2306,7 +2336,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Les codes de caractères UTF-8 doivent être dans l'intervalle : U+0000 à U+10FFFF.\n"
|
||||
"La définition de l'UTF-8 à l'annexe D de la norme ISO/CEI 10646-1: 2000 permet \n"
|
||||
|
@ -2316,7 +2346,7 @@ msgstr ""
|
|||
"dans l'objectif de transformation de caractères Unicode. ISO/IEC 10646 \n"
|
||||
"ne permet pas la liaison des substituts non appairés, ni U+FFFE ni U+FFFF \n"
|
||||
"(mais il permet d'autres non-caractères). Pour plus d'informations veuillez-vous\n"
|
||||
"référer à http://www.unicode.org/ et http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"référer à https://home.unicode.org/ et https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_INVALID_UTF16"
|
||||
|
@ -2324,12 +2354,12 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Les codes de caractères pour UTF-16 doivent être dans l'intervalle: U+0000 à U+10FFFF.\n"
|
||||
"La définition de UTF-16 dans l'annexe C de l'ISO/IEC 10646-1:2000 n'autorise pas la \n"
|
||||
"liaison de substituts non appairés. Pour plus d'informations, veuillez vous référer\n"
|
||||
"à http://www.unicode.org/ et http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"à https://home.unicode.org/ et https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -2342,7 +2372,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
"Les URIs doivent être correctement protégés, ils ne doivent pas contenir \n"
|
||||
"les caractères non-échappés ci-après U+0021, y-compris le caractère \n"
|
||||
|
@ -2352,7 +2382,7 @@ msgstr ""
|
|||
"échapper ces URI et quelques scripts côté serveur dépendent de ceci. \n"
|
||||
"Si vous voulez dépendre de ceci, vous devez échapper l'URI de votre \n"
|
||||
"côté. Pour plus d'informations, veuillez vous référer à\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_BAD_FORM"
|
||||
|
@ -2470,21 +2500,21 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
"Pour plus d'informations sur la façon de rendre vos pages\n"
|
||||
"accessibles, voir http://www.w3.org/WAI/GL"
|
||||
"accessibles, voir https://www.w3.org/WAI/GL"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The URL should not be translated unless you find a matching URL in your language.
|
||||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
"Pour plus d'informations sur la façon de rendre vos pages \n"
|
||||
"accessibles, voir http://www.w3.org/WAI/GL et \n"
|
||||
"http://www.html-tidy.org/Accessibility/"
|
||||
"accessibles, voir https://www.w3.org/WAI/GL et \n"
|
||||
"https://www.html-tidy.org/Accessibility/"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_USING_LAYER"
|
||||
|
@ -2587,16 +2617,16 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
"À propos de HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Rapports de bugs et commentaires: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Liste officielle de diffusion: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Dernière spécification HTML: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validez vos documents HTML: http://validator.w3.org/nu/\n"
|
||||
"Encouragez votre entreprise à rejoindre le W3C: http://www.w3.org/Consortium\n"
|
||||
"Dernière spécification HTML: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validez vos documents HTML: https://validator.w3.org/nu/\n"
|
||||
"Encouragez votre entreprise à rejoindre le W3C: https://www.w3.org/Consortium\n"
|
||||
"\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2622,6 +2652,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr "%s ancre \"%s\" déjà défini"
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr "l'entité nommée ' est défini seulement en XML/XHTML"
|
||||
|
@ -3139,6 +3174,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr "%s ID « %s » utilise la syntaxe XML ID"
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr "[1.1.1.1]: <img> texte manquant 'alt'."
|
||||
|
@ -3639,7 +3678,7 @@ msgstr "option"
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr "Le chargement du fichier de configuration \"%s\" a échoué, err = %d"
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3940,7 +3979,6 @@ msgstr "HTML Tidy version %s"
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3979,7 +4017,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -4003,21 +4041,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
|
@ -4047,12 +4082,12 @@ msgstr ""
|
|||
"Renseignements\n"
|
||||
"===========\n"
|
||||
"Pour plus d'informations à propos de HTML Tidy, voir\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
"Pour plus d'informations sur le langage HTML, consultez les rubriques suivantes:\n"
|
||||
"\n"
|
||||
" HTML: Édition pour les auteurs Web (de la dernière spécification HTML)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
" HTML Living Standard (de la dernière spécification HTML)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:51\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,17 +22,23 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
"Esta opção especifica o nível de verificação de acessibilidade, se houver, "
|
||||
"que Tidy deve executar. <br/>Nível <var>0 (Tidy Classic)</var> é equivalente "
|
||||
"à verificação de acessibilidade do Tidy Classic.<br/> Para obter mais "
|
||||
"informações sobre a verificação de acessibilidade do Tidy, visite <a href=\""
|
||||
"http://www.html-tidy.org/accessibility/\"> Página de acessibilidade do "
|
||||
"https://www.html-tidy.org/accessibility/\"> Página de acessibilidade do "
|
||||
"Tidy</a>. "
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -421,8 +427,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
"Esta opção especifica se o Tidy deve alterar o formato para relatar erros e "
|
||||
"avisos para um formato que é analisado mais facilmente pelo GNU Emacs. "
|
||||
|
@ -576,7 +589,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -651,7 +664,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr "Esta opção especifica se Tidy deve imprimir os comentários. "
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -898,17 +911,7 @@ msgid ""
|
|||
"<code><?php ... ?></code>. As always, all other tabs, or sequences of tabs, in "
|
||||
"the source will continue to be replaced with a space. "
|
||||
msgstr ""
|
||||
"Com <var>no</var> preconfigurado, Tidy substituirá todas as tabulações da fonte com espaços, "
|
||||
"em conformidade com a opção <code>tab-size</code> e o deslocamento da linha atual. "
|
||||
"Obviamente, com exceção dos blocos/elementos enumerados abaixo, isto será "
|
||||
"reduzido depois a apenas um espaço "
|
||||
"<br/>"
|
||||
"Se configurado para <var>yes</var> essa opção determina que Tidy deve manter "
|
||||
"certas tabulaçõess encontradas na fonte, mas apenas "
|
||||
"em blocos preformatados como <code><pre></code> e outros elementos CDATA como "
|
||||
"<code><script></code>, <code><style></code> e outros pseudo-elementos como "
|
||||
"<code><?php ... ?></code>. Como sempre, todas as demais tabulações ou "
|
||||
"sequências de tabulações na fonte continuarão a ser substituídas por um espaço. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -991,9 +994,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
"Esta opção especifica se o Tidy deve retirar o HTML específico da Microsoft "
|
||||
"de documentos do Word 2000 e exibir espaços em vez de espaços rígidos (nbsp) "
|
||||
|
@ -1150,7 +1153,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1445,7 +1448,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
"Essa opção especifica se o Tidy deve emitir caracteres <code>&</code> "
|
||||
"sem adornos como <code>&amp;</code>. "
|
||||
|
@ -1524,6 +1527,22 @@ msgstr ""
|
|||
"erros devem ser exibidos. Se configurado para <var>0</var>, nenhum erro será "
|
||||
"mostrado. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1628,13 +1647,7 @@ msgid ""
|
|||
"<code>mute-id</code> configuration option and examining Tidy's "
|
||||
"output. "
|
||||
msgstr ""
|
||||
"Use esta opção para impedir que Tidy mostre certos tipos de "
|
||||
"relatórios, por exemplo, para condições que você deseja ignorar. "
|
||||
"<br/>"
|
||||
"Essa opção recebe uma lista de uma ou mais chaves que indicam o tipo de "
|
||||
"mensagem a ser silenciada. Você pode descobrir as chaves destas mensagens "
|
||||
"usando a opção de configuração <code>mute-id</code> e examinando o resultado "
|
||||
"produzido por Tidy. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1650,10 +1663,7 @@ msgid ""
|
|||
"use the <code>mute</code> configuration option in order to filter "
|
||||
"out certain report messages. "
|
||||
msgstr ""
|
||||
"Essa opção determina se Tidy deve apresentar ou não os IDs da mensagem "
|
||||
"com cada um de seus relatórios de erros. Pode ser útil se você quiser "
|
||||
"usar a opção de configuração <code>mute</code> a fim de filtrar "
|
||||
"certas mensagens do relatório. "
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1947,7 +1957,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
"Essa opção especifica se o Tidy deve quebrar linha de textos contidos em "
|
||||
|
@ -1963,16 +1973,11 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
"Esta opção especifica se Tidy deve efetuar quebra de linha em string "
|
||||
"literais que aparecem em atributos de script. <br/>Tidy efetua essa quebra "
|
||||
"em string literais de scripts longos inserindo um caractere de barra "
|
||||
"invertida antes da quebra de linha. "
|
||||
"literais que aparecem em atributos de script."
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
@ -2215,7 +2220,7 @@ msgstr ""
|
|||
|
||||
msgctxt "TidyWarning"
|
||||
msgid "Warning: "
|
||||
msgstr "Aviso: "
|
||||
msgstr "Acesso: "
|
||||
|
||||
msgctxt "TidyConfig"
|
||||
msgid "Config: "
|
||||
|
@ -2254,6 +2259,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr "linha %d coluna %d - "
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -2403,7 +2413,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Os códigos de caracteres para UTF-8 devem estar dentro\n"
|
||||
"do intervalo: U+0000 a U+10FFFF. A definição de UTF-8\n"
|
||||
|
@ -2415,8 +2425,8 @@ msgstr ""
|
|||
"transformação de caracteres Unicode. ISO/IEC 10646 não\n"
|
||||
"permite mapeamento de substitutos não pareados, nem\n"
|
||||
"U+FFFE e U+FFFF (mas permite outros não caracteres).\n"
|
||||
"Para mais informações, veja http://www.unicode.org/ e\n"
|
||||
"http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"Para mais informações, veja https://home.unicode.org/ e\n"
|
||||
"https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_INVALID_UTF16"
|
||||
|
@ -2424,14 +2434,14 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
"Os códigos de caracteres para UTF-16 devem estar dentro\n"
|
||||
"do intervalo: U+0000 a U+10FFFF. A definição de UTF-16\n"
|
||||
"no Anexo C da ISO/IEC 10646-1:2000 não permite o mapeamento\n"
|
||||
"de substitutos não pareados. Para mais informações,\n"
|
||||
"por favor veja http://www.unicode.org/ e\n"
|
||||
"http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"por favor veja https://home.unicode.org/ e\n"
|
||||
"https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -2444,7 +2454,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
"URIs devem ser devidamente escapadas, elas não devem\n"
|
||||
"conter caracteres não elaborados abaixo de U+0021,\n"
|
||||
|
@ -2455,7 +2465,7 @@ msgstr ""
|
|||
"tais URIs e alguns scripts de servidor dependem disso.\n"
|
||||
"Se você quiser depender disso, você deve escapar a URI\n"
|
||||
"por conta própria. Para mais informações, consulte\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_BAD_FORM"
|
||||
|
@ -2568,31 +2578,27 @@ msgid ""
|
|||
"this behavior, then consider setting the option \"drop-empty-elements\"\n"
|
||||
"to no.\n"
|
||||
msgstr ""
|
||||
"Um ou mais elementos vazios estavam presentes no documento-fonte mas\n"
|
||||
"foram descartados no resultado. Se esses elementos são necessários ou\n"
|
||||
"se você não deseja esse comportamento, então considere configurar a opção\n"
|
||||
"\"drop-empty-elements\" para no.\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The URL should not be translated unless you find a matching URL in your language.
|
||||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
"Para mais conselhos sobre como tornar suas páginas\n"
|
||||
"acessíveis, veja http://www.w3.org/WAI/GL."
|
||||
"acessíveis, veja https://www.w3.org/WAI/GL."
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The URL should not be translated unless you find a matching URL in your language.
|
||||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
"Para mais conselhos sobre como tornar suas páginas\n"
|
||||
"acessíveis, veja http://www.w3.org/WAI/GL e\n"
|
||||
"http://www.html-tidy.org/accessibility/."
|
||||
"acessíveis, veja https://www.w3.org/WAI/GL e\n"
|
||||
"https://www.html-tidy.org/accessibility/."
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
msgctxt "TEXT_USING_LAYER"
|
||||
|
@ -2693,17 +2699,17 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
"Sobre o HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Relatórios de erro e comentários: https://github.com/htacg/tidy-html5/"
|
||||
"issues\n"
|
||||
"Lista de discussão: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Especificação HTML mais recente: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Valide seus documentos HTML: http://validator.w3.org/nu/\n"
|
||||
"Incentive sua empresa a se juntar à W3C: http://www.w3.org/Consortium\n"
|
||||
"Especificação HTML mais recente: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Valide seus documentos HTML: https://validator.w3.org/nu/\n"
|
||||
"Incentive sua empresa a se juntar à W3C: https://www.w3.org/Consortium\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -2729,6 +2735,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr "âncora de %s \"%s\" já está definido"
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr "a entidade declarada ' só definida em XML/XHTML"
|
||||
|
@ -2944,15 +2955,15 @@ msgstr "hífenes adjacentes dentro de comentário"
|
|||
|
||||
msgctxt "MALFORMED_COMMENT_DROPPING"
|
||||
msgid "dropping a possible comment due to a missing hyphen"
|
||||
msgstr "descartando um possível comentário devido à falta de hífen"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "MALFORMED_COMMENT_EOS"
|
||||
msgid "the end of the document was reached before the end of the comment"
|
||||
msgstr "o fim do documento foi alcançado antes do fim do comentário"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "MALFORMED_COMMENT_WARN"
|
||||
msgid "detected adjacent hyphens within the comment; consider fix-bad-comments"
|
||||
msgstr "hífens adjacentes detectados dentro do comentário; considere fix-bad-comments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "MALFORMED_DOCTYPE"
|
||||
msgid "discarding malformed <!DOCTYPE>"
|
||||
|
@ -2995,7 +3006,7 @@ msgstr "faltando </%s>"
|
|||
#, c-format
|
||||
msgctxt "MISSING_ENDTAG_OPTIONAL"
|
||||
msgid "missing optional end tag </%s>"
|
||||
msgstr "faltando tag final opcional </%s>"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "MISSING_IMAGEMAP"
|
||||
|
@ -3010,7 +3021,7 @@ msgstr "atributo de %s faltando aspas ao final"
|
|||
#, c-format
|
||||
msgctxt "MISSING_QUOTEMARK_OPEN"
|
||||
msgid "value for attribute \"%s\" missing quote marks"
|
||||
msgstr "valor para atributo \"%s\" faltando aspas"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "MISSING_SEMICOLON_NCR"
|
||||
|
@ -3067,17 +3078,17 @@ msgstr "substituindo elemento obsoleto %s por %s"
|
|||
#, c-format
|
||||
msgctxt "OPTION_REMOVED"
|
||||
msgid "option \"%s\" no longer exists, and no replacement could be found."
|
||||
msgstr "opção \"%s\" não existe mais e nenhum substituto pôde ser encontrado."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "OPTION_REMOVED_APPLIED"
|
||||
msgid "option \"%s\" replaced with \"%s\", which Tidy has set to \"%s\"."
|
||||
msgstr "opção \"%s\" substituída por \"%s\", que Tidy configurou para \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "OPTION_REMOVED_UNAPPLIED"
|
||||
msgid "option \"%s\" replaced with \"%s\", but Tidy could not set it for you."
|
||||
msgstr "opção \"%s\" substituída por \"%s\", mas Tidy não pôde configurar para você"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "PREVIOUS_LOCATION"
|
||||
|
@ -3126,7 +3137,7 @@ msgstr "removendo espaço em branco precedendo a declaração XML"
|
|||
#, c-format
|
||||
msgctxt "STRING_ARGUMENT_BAD"
|
||||
msgid "option \"%s\" given bad argument \"%s\""
|
||||
msgstr "opção \"%s\" recebeu argumento errado \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "STRING_MISSING_MALFORMED"
|
||||
|
@ -3136,7 +3147,7 @@ msgstr "argumento faltando ou malformado para opção: %s"
|
|||
#, c-format
|
||||
msgctxt "STRING_MUTING_TYPE"
|
||||
msgid "messages of type \"%s\" will not be output"
|
||||
msgstr "mensagens de tipo \"%s\" não vão ser geradas"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "STRING_UNKNOWN_OPTION"
|
||||
|
@ -3250,6 +3261,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr "%s ID \"%s\" usa sintaxe de ID de XML"
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr "[1.1.1.1]: <img> carece de texto 'alt'."
|
||||
|
@ -3752,7 +3767,7 @@ msgstr "opção"
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr "Falha ao carregar o arquivo de config \"%s\", err = %d"
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3813,11 +3828,11 @@ msgstr "lista todas as opções de configuração"
|
|||
|
||||
msgctxt "TC_OPT_HELPENV"
|
||||
msgid "show information about the environment and runtime configuration"
|
||||
msgstr "mostra informações sobre o ambiente e a configuração de execução"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_HELPOPT"
|
||||
msgid "show a description of the <option>"
|
||||
msgstr "mostra uma descrição da <opção>"
|
||||
msgstr " mostra uma descrição da <opção>"
|
||||
|
||||
msgctxt "TC_OPT_IBM858"
|
||||
msgid "use IBM-858 (CP850+Euro) for input, US-ASCII for output"
|
||||
|
@ -3889,11 +3904,11 @@ msgstr "lista as definições da configuração atual"
|
|||
|
||||
msgctxt "TC_OPT_EXP_CFG"
|
||||
msgid "list the current configuration settings, suitable for a config file"
|
||||
msgstr "lista as configurações atuais, apropriadas para um documento config"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_EXP_DEF"
|
||||
msgid "list the default configuration settings, suitable for a config file"
|
||||
msgstr "lista as configurações padrões, apropriadas para um documento config"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_UPPER"
|
||||
msgid "force tags to upper case"
|
||||
|
@ -4055,7 +4070,6 @@ msgstr "HTML Tidy versão %s"
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -4094,7 +4108,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -4118,21 +4132,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
|
@ -4162,21 +4173,18 @@ msgstr ""
|
|||
"Informação\n"
|
||||
"===========\n"
|
||||
"Para mais informações sobre HTML Tidy, veja\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
"Para mais informações sobre HTML, veja o seguinte:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
"Preencha relatórios de erros em https://github.com/htacg/tidy-html5/issues/\n"
|
||||
"ou envie perguntas e comentários para public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
"Valide seus documentos HTML usando Nu, o validador de marcação da W3C:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -4193,13 +4201,7 @@ msgid ""
|
|||
" %s \n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
" Ademais, Tidy tentará automaticamente utilizar configuração especificada \n"
|
||||
" nesses documentos, se presentes: \n"
|
||||
"\n"
|
||||
" %s \n"
|
||||
" %s \n"
|
||||
"\n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
msgctxt "TC_TXT_HELP_CONFIG"
|
||||
|
@ -4261,17 +4263,6 @@ msgid ""
|
|||
" - Options in a file specified on the command line. \n"
|
||||
" - Options set directly on the command line. \n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
"Tidy pode configurar valores de opções a partir de várias fontes, \n"
|
||||
"na ordem abaixo. O uso subsequente da mesma opção sobreescreve \n"
|
||||
"configurações anteriores. \n"
|
||||
"\n"
|
||||
" - Valores inbutidos padrões de Tidy. \n"
|
||||
"%s" /* rc files */
|
||||
" - O documento especificado na variável de ambiente $HTML_TIDY: \n"
|
||||
" %s \n"
|
||||
" - Opções num arquivo especificado na linha do comando. \n"
|
||||
" - Opções definidas diretamente na linha de comando. \n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -4283,16 +4274,13 @@ msgid ""
|
|||
" - The user runtime configuration file: \n"
|
||||
" %s \n"
|
||||
msgstr ""
|
||||
" - O documento de configuração de execução do sistema: \n"
|
||||
" %s \n"
|
||||
" - O documento de configuração de execução do usuário: \n"
|
||||
" %s \n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
#. - This message indicates that a file name is not currently set.
|
||||
msgctxt "TC_TXT_HELP_ENV_1B"
|
||||
msgid "(not currently set)"
|
||||
msgstr "(não definido no momento)"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
|
@ -4303,9 +4291,7 @@ msgid ""
|
|||
"Note that because $HTML_TIDY is set, the user runtime configuration file \n"
|
||||
"%s will not be used. \n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
"Note que, dado que $HTML_TIDY foi definida, o documento de configuração \n"
|
||||
"de execução do usuário %s não será utilizado. \n"
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not be translated.
|
||||
msgctxt "TC_TXT_HELP_LANG_1"
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2017-11-20 09:54:14\n"
|
||||
"PO-Revision-Date: 2021-07-21 17:08:52\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -337,8 +343,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -468,7 +481,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -530,7 +543,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -805,9 +818,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -931,7 +944,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1173,7 +1186,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1237,6 +1250,22 @@ msgid ""
|
|||
"should be shown. If set to <var>0</var>, then no errors are shown. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1579,7 +1608,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
|
||||
|
@ -1593,11 +1622,8 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1836,6 +1862,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr "行 %d 列 %d - "
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -1952,7 +1983,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1961,7 +1992,7 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1975,7 +2006,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2057,7 +2088,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2065,7 +2096,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2150,9 +2181,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2175,6 +2206,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr ""
|
||||
|
@ -2688,6 +2724,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr ""
|
||||
|
@ -3186,7 +3226,7 @@ msgstr ""
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3480,7 +3520,6 @@ msgstr "HTML Tidy 版本 %s"
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3513,7 +3552,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -3537,21 +3576,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: HTML Tidy poconvert.rb\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2017-11-20 09:54:14\n"
|
||||
"POT-Creation-Date: 2021-07-21 17:08:59\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -22,11 +22,17 @@ msgid ""
|
|||
"This option specifies what level of accessibility checking, if any, "
|
||||
"that Tidy should perform. "
|
||||
"<br/>"
|
||||
"Level <var>0 (Tidy Classic)</var> is equivalent to Tidy Classic's accessibility "
|
||||
"checking. "
|
||||
"Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, visit "
|
||||
"<a href=\"http://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
"Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
|
||||
"<br/>"
|
||||
"Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
|
||||
"<br/>"
|
||||
"Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
|
||||
"<br/>"
|
||||
"For more information on Tidy's accessibility checking, including the specific "
|
||||
"checks that are made for each Priority Level, please visit "
|
||||
"<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -337,8 +343,15 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyEmacs"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs. "
|
||||
"This option specifies that Tidy should change the format for reporting "
|
||||
"errors and warnings to a format that is more easily parsed by GNU Emacs "
|
||||
"or some other program. It changes them from the default "
|
||||
"<br/>"
|
||||
" line <line number> column <column number> - (Error|Warning): <message> "
|
||||
"<br/>"
|
||||
"to a form which includes the input filename: "
|
||||
"<br/>"
|
||||
" <filename>:<line number>:<column number>: (Error|Warning): <message> "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -468,7 +481,7 @@ msgid ""
|
|||
"for HTML5 document types, and <var>yes</var> for all other document "
|
||||
"types. "
|
||||
"<br/>"
|
||||
"HTML has abandonded SGML comment syntax, and allows adjacent hypens "
|
||||
"HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
|
||||
"for all versions of HTML, although XML and XHTML do not. If you plan "
|
||||
"to support older browsers that require SGML comment syntax, then "
|
||||
"consider setting this value to <var>yes</var>."
|
||||
|
@ -530,7 +543,7 @@ msgstr ""
|
|||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyHideComments"
|
||||
msgid "This option specifies if Tidy should print out comments. "
|
||||
msgid "This option specifies if Tidy should not print out comments. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -805,9 +818,9 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyMakeBare"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should strip Microsoft specific HTML "
|
||||
"from Word 2000 documents, and output spaces rather than non-breaking "
|
||||
"spaces where they exist in the input. "
|
||||
"This option specifies if Tidy should replace smart quotes and em dashes with "
|
||||
"ASCII, and output spaces rather than non-breaking "
|
||||
"spaces, where they exist in the input. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -931,7 +944,7 @@ msgctxt "TidyNewline"
|
|||
msgid ""
|
||||
"The default is appropriate to the current platform. "
|
||||
"<br/>"
|
||||
"Genrally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
|
||||
"on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
|
||||
"and Unix). "
|
||||
msgstr ""
|
||||
|
@ -1173,7 +1186,7 @@ msgstr ""
|
|||
msgctxt "TidyQuoteAmpersand"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should output unadorned <code>&</code> "
|
||||
"characters as <code>&amp;</code>. "
|
||||
"characters as <code>&amp;</code>, in legacy doctypes only. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1237,6 +1250,22 @@ msgid ""
|
|||
"should be shown. If set to <var>0</var>, then no errors are shown. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
#. - Entities, tags, attributes, etc., should be enclosed in <code></code>.
|
||||
#. - Option values should be enclosed in <var></var>.
|
||||
#. - It's very important that <br/> be self-closing!
|
||||
#. - The strings "Tidy" and "HTML Tidy" are the program name and must not
|
||||
#. be translated.
|
||||
msgctxt "TidyShowFilename"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should show the filename in messages. eg: "
|
||||
"<br/>"
|
||||
" tidy -q -e --show-filename yes index.html<br/>"
|
||||
" index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1579,7 +1608,7 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapPhp"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap text contained within PHP "
|
||||
"This option specifies if Tidy should add a new line after a PHP "
|
||||
"pseudo elements, which look like: <code><?php ... ?></code>. "
|
||||
msgstr ""
|
||||
|
||||
|
@ -1593,11 +1622,8 @@ msgstr ""
|
|||
#. be translated.
|
||||
msgctxt "TidyWrapScriptlets"
|
||||
msgid ""
|
||||
"This option specifies if Tidy should line wrap string literals that "
|
||||
"appear in script attributes. "
|
||||
"<br/>"
|
||||
"Tidy wraps long script string literals by inserting a backslash character "
|
||||
"before the line break. "
|
||||
"This option specifies if Tidy should line wrap string literals assigned "
|
||||
"to element event handler attributes, such as element.onmouseover()."
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -1836,6 +1862,11 @@ msgctxt "LINE_COLUMN_STRING"
|
|||
msgid "line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "FN_LINE_COLUMN_STRING"
|
||||
msgid "%s: line %d column %d - "
|
||||
msgstr ""
|
||||
|
||||
#. For example, "discarding invalid UTF-16 surrogate pair"
|
||||
msgctxt "STRING_DISCARDING"
|
||||
msgid "discarding"
|
||||
|
@ -1954,7 +1985,7 @@ msgid ""
|
|||
"UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
|
||||
"does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
|
||||
"(but it does allow other noncharacters). For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1963,7 +1994,7 @@ msgid ""
|
|||
"Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
|
||||
"The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
|
||||
"mapping of unpaired surrogates. For more information please refer to\n"
|
||||
"http://www.unicode.org/ and http://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
"https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -1977,7 +2008,7 @@ msgid ""
|
|||
"use another algorithm to escape such URIs and some server-sided\n"
|
||||
"scripts depend on that. If you want to depend on that, you must\n"
|
||||
"escape the URI on your own. For more information please refer to\n"
|
||||
"http://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
"https://www.w3.org/International/O-URL-and-ident.html\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2059,7 +2090,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE1"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL."
|
||||
"see https://www.w3.org/WAI/GL."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2067,7 +2098,7 @@ msgstr ""
|
|||
msgctxt "TEXT_ACCESS_ADVICE2"
|
||||
msgid ""
|
||||
"For further advice on how to make your pages accessible\n"
|
||||
"see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/."
|
||||
"see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2152,9 +2183,9 @@ msgid ""
|
|||
"About HTML Tidy: https://github.com/htacg/tidy-html5\n"
|
||||
"Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
|
||||
"Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
|
||||
"Latest HTML specification: http://dev.w3.org/html5/spec-author-view/\n"
|
||||
"Validate your HTML documents: http://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: http://www.w3.org/Consortium\n"
|
||||
"Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
|
||||
"Validate your HTML documents: https://validator.w3.org/nu/\n"
|
||||
"Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
|
||||
msgstr ""
|
||||
|
||||
#. This console output should be limited to 78 characters per line.
|
||||
|
@ -2177,6 +2208,11 @@ msgctxt "ANCHOR_NOT_UNIQUE"
|
|||
msgid "%s anchor \"%s\" already defined"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "ANCHOR_DUPLICATED"
|
||||
msgid "Implicit %s anchor \"%s\" duplicated by Tidy."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "APOS_UNDEFINED"
|
||||
msgid "named entity ' only defined in XML/XHTML"
|
||||
msgstr ""
|
||||
|
@ -2690,6 +2726,10 @@ msgctxt "XML_ID_SYNTAX"
|
|||
msgid "%s ID \"%s\" uses XML ID syntax"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "BLANK_TITLE_ELEMENT"
|
||||
msgid "blank 'title' element"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "IMG_MISSING_ALT"
|
||||
msgid "[1.1.1.1]: <img> missing 'alt' text."
|
||||
msgstr ""
|
||||
|
@ -3188,7 +3228,7 @@ msgstr ""
|
|||
|
||||
#, c-format
|
||||
msgctxt "TC_MAIN_ERROR_LOAD_CONFIG"
|
||||
msgid "Loading config file \"%s\" failed, err = %d"
|
||||
msgid "Loading config file \"%s\" problems, err = %d"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "TC_OPT_ACCESS"
|
||||
|
@ -3482,7 +3522,6 @@ msgstr ""
|
|||
#, c-format
|
||||
msgctxt "TC_TXT_HELP_1"
|
||||
msgid ""
|
||||
"\n"
|
||||
"%s [options...] [file...] [options...] [file...]\n"
|
||||
"Utility to clean up and pretty print HTML/XHTML/XML.\n"
|
||||
"\n"
|
||||
|
@ -3515,7 +3554,7 @@ msgid ""
|
|||
" of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
|
||||
"\n"
|
||||
" You can also specify a file containing configuration options with the \n"
|
||||
" -options <file> directive, or in one or more files specific to your \n"
|
||||
" -config <file> directive, or in one or more files specific to your \n"
|
||||
" environment (see next section). \n"
|
||||
"\n"
|
||||
" For a list of all configuration options, use \"-help-config\" or refer\n"
|
||||
|
@ -3539,21 +3578,18 @@ msgid ""
|
|||
"Information\n"
|
||||
"===========\n"
|
||||
" For more information about HTML Tidy, see\n"
|
||||
" http://www.html-tidy.org/\n"
|
||||
" https://www.html-tidy.org/\n"
|
||||
"\n"
|
||||
" For more information on HTML, see the following:\n"
|
||||
"\n"
|
||||
" HTML: Edition for Web Authors (the latest HTML specification)\n"
|
||||
" http://dev.w3.org/html5/spec-author-view\n"
|
||||
"\n"
|
||||
" HTML: The Markup Language (an HTML language reference)\n"
|
||||
" http://dev.w3.org/html5/markup/\n"
|
||||
" HTML Living Standard (the latest HTML specification)\n"
|
||||
" https://html.spec.whatwg.org/multipage/\n"
|
||||
"\n"
|
||||
" File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
|
||||
" or send questions and comments to public-htacg@w3.org.\n"
|
||||
"\n"
|
||||
" Validate your HTML documents using the W3C Nu Markup Validator:\n"
|
||||
" http://validator.w3.org/nu/\n"
|
||||
" https://validator.w3.org/nu/\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -413,19 +413,15 @@ See also: <xsl:text />
|
|||
For more information about HTML Tidy:
|
||||
.RS 4
|
||||
.LP
|
||||
http://www.html-tidy.org/
|
||||
https://www.html-tidy.org/
|
||||
.RE
|
||||
.LP
|
||||
For more information on HTML:
|
||||
.RS 4
|
||||
.LP
|
||||
\fBHTML: Edition for Web Authors\fR (the latest HTML specification)
|
||||
\fBHTML Living Standard\fR (the latest HTML specification)
|
||||
.br
|
||||
http://dev.w3.org/html5/spec-author-view
|
||||
.LP
|
||||
\fBHTML: The Markup Language\fR (an HTML language reference)
|
||||
.br
|
||||
http://dev.w3.org/html5/markup/
|
||||
https://html.spec.whatwg.org/multipage/
|
||||
.RE
|
||||
.LP
|
||||
For bug reports and comments:
|
||||
|
@ -439,12 +435,12 @@ Or send questions and comments to \fBpublic-htacg@w3.org\fR.
|
|||
Validate your HTML documents using the \fBW3C Nu Markup Validator\fR:
|
||||
.RS 4
|
||||
.LP
|
||||
http://validator.w3.org/nu/
|
||||
https://validator.w3.org/nu/
|
||||
.RE
|
||||
.SH AUTHOR
|
||||
\fBTidy\fR was written by \fBDave Raggett\fR <dsr@w3.org>,
|
||||
and subsequently maintained by a team at http://tidy.sourceforge.net/,
|
||||
and now maintained by \fBHTACG\fR (http://www.htacg.org).
|
||||
and now maintained by \fBHTACG\fR (https://www.htacg.org).
|
||||
.LP
|
||||
The sources for \fBHTML Tidy\fR are available at
|
||||
https://github.com/htacg/tidy-html5/ under the MIT Licence.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 7 column 1 - Warning: <a> attribute "target" has invalid value "_new"
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -7,4 +7,4 @@ line 8 column 1 - Warning: replacing obsolete element <dir> with <ul>
|
|||
Tidy found 2 warnings and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,7 +5,7 @@ line 7 column 1 - Warning: trimming empty <menu>
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
One or more empty elements were present in the source document but
|
||||
dropped on output. If these elements are necessary or you don't want
|
||||
this behavior, then consider setting the option "drop-empty-elements"
|
||||
|
|
|
@ -4,4 +4,4 @@ line 8 column 1 - Access: [12.1.1.1]: <frame> missing title.
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -4,4 +4,4 @@ line 8 column 1 - Access: [12.1.1.2]: <frame> title invalid (null).
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -4,4 +4,4 @@ line 8 column 1 - Access: [12.1.1.3]: <frame> title invalid (spaces).
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -10,7 +10,7 @@ line 7 column 1 - Warning: trimming empty <script>
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
One or more empty elements were present in the source document but
|
||||
dropped on output. If these elements are necessary or you don't want
|
||||
this behavior, then consider setting the option "drop-empty-elements"
|
||||
|
|
|
@ -3,4 +3,4 @@ line 8 column 1 - Access: [2.1.1.5]: ensure information not conveyed through col
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 3 column 1 - Access: [13.2.1.1]: Metadata missing.
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -8,4 +8,4 @@ line 12 column 4 - Access: [3.6.1.1]: list usage invalid <ul>.
|
|||
Tidy found 2 warnings and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -8,4 +8,4 @@ line 12 column 4 - Access: [3.6.1.2]: list usage invalid <ol>.
|
|||
Tidy found 2 warnings and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -9,4 +9,4 @@ line 7 column 1 - Access: [3.6.1.4]: list usage invalid <li>.
|
|||
Tidy found 5 warnings and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -3,4 +3,4 @@ line 7 column 1 - Warning: moved <style> tag to <head>! fix-style-tags: no to av
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 8 column 1 - Access: [7.1.1.3]: remove flicker (embed).
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -6,7 +6,7 @@ line 10 column 9 - Warning: trimming empty <noframes>
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
One or more empty elements were present in the source document but
|
||||
dropped on output. If these elements are necessary or you don't want
|
||||
this behavior, then consider setting the option "drop-empty-elements"
|
||||
|
|
|
@ -7,4 +7,4 @@ line 7 column 1 - Access: [6.5.1.4]: <noframes> section invalid (link).
|
|||
Tidy found 3 warnings and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 8 column 1 - Access: [7.1.1.3]: remove flicker (embed).
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 7 column 22 - Warning: <blink> is not approved by W3C
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -5,4 +5,4 @@ line 7 column 1 - Access: [7.1.1.3]: remove flicker (embed).
|
|||
Tidy found 1 warning and 0 errors!
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL and http://www.html-tidy.org/accessibility/.
|
||||
see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/.
|
||||
|
|
|
@ -12,9 +12,9 @@ Tidy found 7 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -10,9 +10,9 @@ Tidy found 4 warnings and 1 error!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -11,9 +11,9 @@ Tidy found 4 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ Tidy found 3 warnings and 1 error!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -7,9 +7,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -12,14 +12,14 @@ HTML 4.01 section B.2.1 and XML 1.0 section 4.2.2. Some user agents
|
|||
use another algorithm to escape such URIs and some server-sided
|
||||
scripts depend on that. If you want to depend on that, you must
|
||||
escape the URI on your own. For more information please refer to
|
||||
http://www.w3.org/International/O-URL-and-ident.html
|
||||
https://www.w3.org/International/O-URL-and-ident.html
|
||||
|
||||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -4,9 +4,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -10,14 +10,14 @@ HTML 4.01 section B.2.1 and XML 1.0 section 4.2.2. Some user agents
|
|||
use another algorithm to escape such URIs and some server-sided
|
||||
scripts depend on that. If you want to depend on that, you must
|
||||
escape the URI on your own. For more information please refer to
|
||||
http://www.w3.org/International/O-URL-and-ident.html
|
||||
https://www.w3.org/International/O-URL-and-ident.html
|
||||
|
||||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -4,9 +4,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -11,9 +11,9 @@ Tidy found 5 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -13,9 +13,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ Tidy found 2 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ Tidy found 2 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -10,9 +10,9 @@ using HTML Tidy to generate a tidied up version.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ Tidy found 4 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -4,9 +4,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -4,9 +4,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -19,9 +19,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -20,9 +20,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -20,9 +20,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -7,9 +7,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -18,9 +18,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -23,7 +23,7 @@ to each table cell, enabling non-visual browsers to provide
|
|||
a meaningful context for each cell.
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL.
|
||||
see https://www.w3.org/WAI/GL.
|
||||
One or more empty elements were present in the source document but
|
||||
dropped on output. If these elements are necessary or you don't want
|
||||
this behavior, then consider setting the option "drop-empty-elements"
|
||||
|
@ -32,9 +32,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -10,13 +10,13 @@ graphical browsers. In addition, client-side maps are easier
|
|||
to set up and provide immediate feedback to users.
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL.
|
||||
see https://www.w3.org/WAI/GL.
|
||||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -17,9 +17,9 @@ compared with using <FONT> elements.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -14,9 +14,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ Tidy found 2 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -22,9 +22,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -13,9 +13,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -29,9 +29,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -16,9 +16,9 @@ compared with using <FONT> elements.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ Tidy found 2 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -10,9 +10,9 @@ Tidy found 4 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -14,9 +14,9 @@ Tidy found 7 warnings and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -7,9 +7,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -22,7 +22,7 @@ to each table cell, enabling non-visual browsers to provide
|
|||
a meaningful context for each cell.
|
||||
|
||||
For further advice on how to make your pages accessible
|
||||
see http://www.w3.org/WAI/GL.
|
||||
see https://www.w3.org/WAI/GL.
|
||||
One or more empty elements were present in the source document but
|
||||
dropped on output. If these elements are necessary or you don't want
|
||||
this behavior, then consider setting the option "drop-empty-elements"
|
||||
|
@ -31,9 +31,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -13,9 +13,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -7,9 +7,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -7,9 +7,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -5,9 +5,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -8,9 +8,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -13,9 +13,9 @@ to no.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ Tidy found 1 warning and 0 errors!
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
|
@ -6,9 +6,9 @@ No warnings or errors were found.
|
|||
About HTML Tidy: https://github.com/htacg/tidy-html5
|
||||
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
|
||||
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
|
||||
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
|
||||
Validate your HTML documents: http://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: http://www.w3.org/Consortium
|
||||
Latest HTML specification: https://html.spec.whatwg.org/multipage/
|
||||
Validate your HTML documents: https://validator.w3.org/nu/
|
||||
Lobby your company to join the W3C: https://www.w3.org/Consortium
|
||||
|
||||
Do you speak a language other than English, or a different variant of
|
||||
English? Consider helping us to localize HTML Tidy. For details please see
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue