Regenerate PO and POT for language changes.

This commit is contained in:
Jim Derry 2017-10-26 14:26:23 -04:00
parent 056bd85d3d
commit b663c3965f
7 changed files with 560 additions and 315 deletions

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:20\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -161,29 +161,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -568,8 +565,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -803,9 +817,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
@ -933,8 +947,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
#. Important notes for translators:
@ -992,14 +1007,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -1111,8 +1144,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1308,7 +1341,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1417,10 +1450,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1489,11 +1523,12 @@ msgstr ""
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
#. Important notes for translators:
@ -1564,8 +1599,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
#. Important notes for translators:

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:20\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -155,29 +155,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -560,8 +557,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -785,9 +799,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
"Esta opción especifica si Tidy debe realizar la limpieza de algún legado etiquetas de "
@ -899,8 +913,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
#. Important notes for translators:
@ -958,14 +973,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -1077,8 +1110,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1271,7 +1304,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1380,10 +1413,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1437,11 +1471,12 @@ msgstr ""
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
#. Important notes for translators:
@ -1512,8 +1547,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
#. Important notes for translators:

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:20\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -155,29 +155,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -560,8 +557,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -785,9 +799,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
@ -894,8 +908,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
#. Important notes for translators:
@ -953,14 +968,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -1072,8 +1105,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1266,7 +1299,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1375,10 +1408,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1432,11 +1466,12 @@ msgstr ""
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
#. Important notes for translators:
@ -1507,8 +1542,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
#. Important notes for translators:

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:21\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -185,29 +185,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Cette option permet de préciser l'encodage des caractères qui sera utilisé par Tidy pour l'entrée "
"et la sortie. <br/>Pour l'<var>ascii</var> Tidy acceptera les valeurs de caractère Latin-1 "
@ -663,8 +660,25 @@ msgstr "Cette option précise si Tidy doit embellir les sorties, lorsqu'il produ
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Cette option précise l'encodage de caractère que Tidy utilise pour l'entrée. Voir <code>char-"
"encoding</code> pour plus d'informations."
@ -929,9 +943,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
"Cette option précise si Tidy doit effectuer le nettoyage de certaines balises historiques de "
@ -1062,8 +1076,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
"La valeur par défaut est appropriée à la plateforme d'exécution de Tidy. <br/>Généralement "
"<var>CRLF</var> sur PC-DOS, Windows et OS/2; <var>CR</var> sur Classic Mac OS; et <var>LF</var> "
@ -1136,14 +1151,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Cette option précise l'encodage de caractère utilisé par Tidy pour la sortie. <br/>Notez que cela "
"peut être différent de <code>input-encoding</code> seulement pour les encodages latins (<var>ascii</"
@ -1280,8 +1313,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1501,7 +1534,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1625,10 +1658,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1696,11 +1730,12 @@ msgstr "Cette option précise si Tidy doit avertir des attributs propriétaires.
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
"Cette option précise si Tidy doit se donner du mal pour supprimer tous les surplus que Microsoft "
"Word 2000 ajoute lorsque vous enregistrez des documents Word comme des \"pages Web\". Il ne prend "
@ -1788,8 +1823,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
"Cette option précise à Tidy la marge de droite à utiliser pour le saut de ligne. <br/> Tidy tente "
"de couper les lignes de façon à ce qu'elles ne dépassent pas cette longueur. <br/>Passer la valeur "

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:21\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -191,29 +191,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Esta opção especifica a codificação de caracteres que o Tidy usa tanto para "
"a entrada como para a saída. <br/>Para <var>ascii</var>, o Tidy aceitará "
@ -683,8 +680,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Esta opção especifica a codificação de caracteres que o Tidy usa para a "
"entrada. Veja <code>char-encoding</code> para mais informações. "
@ -964,9 +978,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
"Esta opção especifica se o Tidy deve executar a limpeza de algumas tags de "
@ -1103,8 +1117,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
"O padrão é apropriado para a plataforma atual. <br/>Geralmente, CRLF no PC-"
"DOS, Windows e OS/2; CR no Mac OS Clássico; e LF nos demais (Linux, Mac OS X "
@ -1180,14 +1195,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
"Esta opção especifica a codificação de caracteres que o Tidy usa para a saída. <br/>Note que "
"isso só pode ser diferente de <code>input-encoding</code> para codificações latinas "
@ -1330,8 +1363,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1555,7 +1588,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1684,10 +1717,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1756,11 +1790,12 @@ msgstr "Essa opção especifica se o Tidy deve avisar sobre atributos proprietá
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
"Esta opção especifica se o Tidy deve se esforçar duro para tirar todas as "
"coisas excedentes que o Microsoft Word 2000 insere quando você salva os "
@ -1852,8 +1887,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
"Esta opção especifica a margem direita que o Tidy usa para quebra de linha. "
"<br/>Tidy tenta quebrar linhas para que não excedam esse comprimento. <br/>"

View File

@ -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-10-20 08:58:05\n"
"PO-Revision-Date: 2017-10-26 14:25:21\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -155,29 +155,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -560,8 +557,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -785,9 +799,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
@ -894,8 +908,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
#. Important notes for translators:
@ -953,14 +968,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -1072,8 +1105,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1266,7 +1299,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1375,10 +1408,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1432,11 +1466,12 @@ msgstr ""
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
#. Important notes for translators:
@ -1507,8 +1542,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
#. Important notes for translators:

View File

@ -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-10-20 08:58:05\n"
"POT-Creation-Date: 2017-10-26 14:25:20\n"
"Last-Translator: jderry\n"
"Language-Team: \n"
@ -155,29 +155,26 @@ msgstr ""
#. be translated.
msgctxt "TidyCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for both the input "
"and output. "
"This option specifies the character encoding Tidy uses for input, and "
"when set, automatically chooses an appropriate character encoding to "
"be used for output. The output encoding Tidy chooses may be different "
"from the input encoding. "
"<br/>"
"For <var>ascii</var> Tidy will accept Latin-1 (ISO-8859-1) character "
"values, but will use entities for all characters whose value &gt;127. "
"For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
"<var>mac</var>, and <var>win1252</var> input encodings, the "
"<code>output-encoding</code> option will automatically be set to "
"<var>ascii</var>. You can set <code>output-encoding</code> manually "
"to override this. "
"<br/>"
"For <var>raw</var>, Tidy will output values above 127 without "
"translating them into entities. "
"For other input encodings, the <code>output-encoding</code> option "
"will automatically be set to the the same value. "
"<br/>"
"For <var>latin1</var>, characters above 255 will be written as entities. "
"Regardless of the preset value, you can set "
"<code>output-encoding</code> manually to override this. "
"<br/>"
"For <var>utf8</var>, Tidy assumes that both input and output are encoded "
"as UTF-8. "
"<br/>"
"You can use <var>iso2022</var> for files encoded using the ISO-2022 "
"family of encodings e.g. ISO-2022-JP. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, Tidy will accept vendor "
"specific character values, but will use entities for all characters whose "
"value &gt;127. "
"<br/>"
"For unsupported encodings, use an external utility to convert to and from "
"UTF-8. "
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -560,8 +557,25 @@ msgstr ""
#. be translated.
msgctxt "TidyInCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the input. See "
"<code>char-encoding</code> for more info. "
"This option specifies the character encoding Tidy uses for input. "
"Tidy makes certain assumptions about some of the input encodings. "
"<br/>"
"For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
"values and convert them to entities as necessary. "
"<br/>"
"For <var>raw</var>, Tidy will make no assumptions about the character "
"values and will pass them unchanged to output. "
"<br/>"
"For <var>mac</var> and <var>win1252</var>, vendor specific characters "
"values will be accepted and converted to entities as necessary. "
"<br/>"
"Asian encodings such as <var>iso2022</var> will be handled "
"appropriately assuming the corresponding <code>output-encoding</code> "
"is also specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -785,9 +799,9 @@ msgctxt "TidyMakeClean"
msgid ""
"This option specifies if Tidy should perform cleaning of some legacy "
"presentational tags (currently <code>&lt;i&gt;</code>, "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed within "
"appropriate inline tags, and <code>&lt;font&gt;</code>). If set to "
"<var>yes</var> then legacy tags will be replaced with CSS "
"<code>&lt;b&gt;</code>, <code>&lt;center&gt;</code> when enclosed "
"within appropriate inline tags, and <code>&lt;font&gt;</code>). If "
"set to <var>yes</var>, then the legacy tags will be replaced with CSS "
"<code>&lt;style&gt;</code> tags and structural markup as appropriate. "
msgstr ""
@ -894,8 +908,9 @@ msgctxt "TidyNewline"
msgid ""
"The default is appropriate to the current platform. "
"<br/>"
"Genrally CRLF on PC-DOS, Windows and OS/2; CR on Classic Mac OS; and LF "
"everywhere else (Linux, Mac OS X, and Unix). "
"Genrally <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 ""
#. Important notes for translators:
@ -953,14 +968,32 @@ msgstr ""
#. be translated.
msgctxt "TidyOutCharEncoding"
msgid ""
"This option specifies the character encoding Tidy uses for the output. "
"This option specifies the character encoding Tidy uses for "
"output. Some of the output encodings affect whether or not "
"some characters are translated to entities, although in all "
"cases, some entities will be written according to other Tidy "
"configuration options. "
"<br/>"
"Note that this may only be different from <code>input-encoding</code> for "
"Latin encodings (<var>ascii</var>, <var>latin0</var>, "
"<var>latin1</var>, <var>mac</var>, <var>win1252</var>, "
"<var>ibm858</var>)."
"For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
"output encodings, entities will be used for all characters "
"with values over 127. "
"<br/>"
"See <code>char-encoding</code> for more information"
"For <var>raw</var> output, Tidy will write values above 127 "
"without translating them to entities. "
"<br/>"
"Output using <var>latin1</var> will cause Tidy to write "
"character values higher than 255 as entities. "
"<br/>"
"The UTF family such as <var>utf8</var> will write output "
"in the respective UTF encoding. "
"<br/>"
"Asian output encodings such as <var>iso2022</var> will write "
"output in the specified encoding, assuming a corresponding "
"<code>input-encoding</code> was specified. "
"<br/>"
"Tidy is not an encoding converter. Although the Latin and UTF "
"encodings can be mixed freely, it is not possible to convert Asian "
"encodings to Latin encodings with Tidy. "
msgstr ""
#. Important notes for translators:
@ -1072,8 +1105,8 @@ msgctxt "TidyPriorityAttributes"
msgid ""
"This option allows prioritizing the writing of attributes in tidied "
"documents, allowing them to written before the other attributes of an "
"element. For example, you might specify that <var>id</var> and "
"<var>name</var> are written before every other attribute. "
"element. For example, you might specify that <strong>id</strong> and "
"<strong>name</strong> are written before every other attribute. "
"<br/>"
"This option takes a space or comma separated list of attribute names. "
msgstr ""
@ -1266,7 +1299,7 @@ msgstr ""
msgctxt "TidyMuteReports"
msgid ""
"Use this option to prevent Tidy from displaying certain types of "
"report output,for example, for conditions that you wish to ignore."
"report output, for example, for conditions that you wish to ignore. "
"<br/>"
"This option takes a list of one or more keys indicating the message "
"type to mute. You can discover these message keys by using the "
@ -1375,10 +1408,11 @@ msgstr ""
msgctxt "TidyUseCustomTags"
msgid ""
"This option enables the use of tags for autonomous custom elements, "
"e.g. &lt;flag-icon&gt; with Tidy. Custom tags are disabled if this "
"value is <var>no</var>. Other settings - <var>blocklevel</var>, "
"<var>empty</var>, <var>inline</var>, and <var>pre</var> will treat "
"<em>all</em> detected custom tags accordingly. "
"e.g. <code>&lt;flag-icon&gt;</code> with Tidy. Custom tags are "
"disabled if this value is <var>no</var>. Other settings - "
"<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
"<var>pre</var> will treat <em>all</em> detected custom tags "
"accordingly. "
"<br/>"
"The use of <code>new-blocklevel-tags</code>, "
"<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
@ -1432,11 +1466,12 @@ msgstr ""
#. be translated.
msgctxt "TidyWord2000"
msgid ""
"This option specifies if Tidy should go to great pains to strip out all "
"the surplus stuff Microsoft Word 2000 inserts when you save Word "
"This option specifies if Tidy should go to great pains to strip out "
"all the surplus stuff Microsoft Word 2000 inserts when you save Word "
"documents as \"Web pages\". It doesn't handle embedded images or VML. "
"<br/>"
"You should consider using Word's \"Save As: Web Page, Filtered\". "
"You should consider saving using Word's <strong>Save As...</strong>, "
"and choosing <strong>Web Page, Filtered</strong>. "
msgstr ""
#. Important notes for translators:
@ -1507,8 +1542,8 @@ msgid ""
"<br/>"
"Tidy tries to wrap lines so that they do not exceed this length. "
"<br/>"
"Set <code>wrap</code> to <var>0</var>(zero) if you want to disable line "
"wrapping. "
"Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
"line wrapping. "
msgstr ""
#. Important notes for translators: