Updated documentation relating to new option.
This commit is contained in:
parent
64a4302e6c
commit
20a1b7bb69
|
@ -576,6 +576,12 @@ static void GetOption(TidyDoc tdoc, /**< The tidy document. */
|
|||
d->vals = "tagX, tagY, ...";
|
||||
d->def = NULL;
|
||||
break;
|
||||
|
||||
case TidyPriorityAttributes:
|
||||
d->type = "Attributes Names";
|
||||
d->vals = "attributeX, attributeY, ...";
|
||||
d->def = NULL;
|
||||
break;
|
||||
|
||||
case TidyCharEncoding:
|
||||
case TidyInCharEncoding:
|
||||
|
|
|
@ -925,7 +925,7 @@ TIDY_EXPORT TidyIterator TIDY_CALL tidyOptGetDocLinksList(TidyDoc tdoc, /**< T
|
|||
|
||||
/** Given a valid TidyIterator initiated with tidyOptGetDocLinksList(), returns
|
||||
** a TidyOption instance.
|
||||
** @result Returns in instane of TidyOption.
|
||||
** @result Returns in instance of TidyOption.
|
||||
*/
|
||||
TIDY_EXPORT TidyOption TIDY_CALL tidyOptGetNextDocLinks(TidyDoc tdoc, /**< The tidy document to query. */
|
||||
TidyIterator* pos /**< The TidyIterator (initiated with tidyOptGetDocLinksList()) token. */
|
||||
|
|
|
@ -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-09-19 14:00:03\n"
|
||||
"POT-Creation-Date: 2017-09-23 07:53:22\n"
|
||||
"Last-Translator: jderry\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
|
@ -1055,6 +1055,24 @@ msgid ""
|
|||
"This option is ignored in XML mode. "
|
||||
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 "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. "
|
||||
"<br/>"
|
||||
"This option takes a space or comma separated list of attribute names. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
#. - Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
#. <br/>.
|
||||
|
@ -1226,6 +1244,10 @@ msgid ""
|
|||
"This option specifies that Tidy should sort attributes within an element "
|
||||
"using the specified sort algorithm. If set to <var>alpha</var>, the "
|
||||
"algorithm is an ascending alphabetic sort. "
|
||||
"<br/>"
|
||||
"When used while sorting with <code>priority-attributes</code>, any "
|
||||
"attribute sorting will take place after the priority attributes have "
|
||||
"been output. "
|
||||
msgstr ""
|
||||
|
||||
#. Important notes for translators:
|
||||
|
@ -2329,6 +2351,11 @@ msgctxt "MISSING_QUOTEMARK"
|
|||
msgid "%s attribute with missing trailing quote mark"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "MISSING_QUOTEMARK_OPEN"
|
||||
msgid "value for attribute \"%s\" missing quote marks"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgctxt "MISSING_SEMICOLON_NCR"
|
||||
msgid "numeric character reference \"%s\" doesn't end in ';'"
|
||||
|
|
|
@ -1172,6 +1172,10 @@ static languageDefinition language_en = { whichPluralForm_en, {
|
|||
"This option specifies that Tidy should sort attributes within an element "
|
||||
"using the specified sort algorithm. If set to <var>alpha</var>, the "
|
||||
"algorithm is an ascending alphabetic sort. "
|
||||
"<br/>"
|
||||
"When used while sorting with <code>priority-attributes</code>, any "
|
||||
"attribute sorting will take place after the priority attributes have "
|
||||
"been output. "
|
||||
},
|
||||
{/* Important notes for translators:
|
||||
- Use only <code></code>, <var></var>, <em></em>, <strong></strong>, and
|
||||
|
|
|
@ -1424,6 +1424,7 @@ static const TidyOptionId TidyNumEntitiesLinks[] = { TidyDoctype, TidyPreser
|
|||
static const TidyOptionId TidyOutCharEncodingLinks[] = { TidyCharEncoding, TidyUnknownOption };
|
||||
static const TidyOptionId TidyOutFileLinks[] = { TidyErrFile, TidyUnknownOption };
|
||||
static const TidyOptionId TidyPreTagsLinks[] = { TidyBlockTags, TidyEmptyTags, TidyInlineTags, TidyUseCustomTags, TidyUnknownOption };
|
||||
static const TidyOptionId TidySortAttributesLinks[] = { TidyPriorityAttributes, TidyUnknownOption };
|
||||
static const TidyOptionId TidyUseCustomTagsLinks[] = { TidyBlockTags, TidyEmptyTags, TidyInlineTags, TidyPreTags, TidyUnknownOption };
|
||||
static const TidyOptionId TidyWrapAttValsLinks[] = { TidyWrapScriptlets, TidyLiteralAttribs, TidyUnknownOption };
|
||||
static const TidyOptionId TidyWrapScriptletsLinks[] = { TidyWrapAttVals, TidyUnknownOption };
|
||||
|
@ -1451,6 +1452,7 @@ static const TidyOptionDoc docs_xrefs[] =
|
|||
{ TidyOutCharEncoding, TidyOutCharEncodingLinks },
|
||||
{ TidyOutFile, TidyOutFileLinks },
|
||||
{ TidyPreTags, TidyPreTagsLinks },
|
||||
{ TidySortAttributes, TidySortAttributesLinks },
|
||||
{ TidyUseCustomTags, TidyUseCustomTagsLinks },
|
||||
{ TidyWrapAttVals, TidyWrapAttValsLinks },
|
||||
{ TidyWrapScriptlets, TidyWrapScriptletsLinks },
|
||||
|
|
Loading…
Reference in a new issue