Bug 698935 addendum - Rename the errStrayStartTag string key because the value changed. r=l10n.

This commit is contained in:
Henri Sivonen 2011-11-04 15:36:29 +02:00
Родитель c42c7da44a
Коммит 7e954ee940
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -104,7 +104,7 @@ errNoSpaceBetweenPublicAndSystemIds=No space between the doctype public and syst
errNoSpaceBetweenDoctypePublicKeywordAndQuote=No space between the doctype \u201CPUBLIC\u201D keyword and the quote.
# Tree builder errors
errStrayStartTag=Stray start tag \u201C%1$S\u201D.
errStrayStartTag2=Stray start tag \u201C%1$S\u201D.
errStrayEndTag=Stray end tag \u201C%1$S\u201D.
errUnclosedElements=End tag \u201C%1$S\u201D seen, but there were open elements.
errUnclosedElementsImplied=End tag \u201C%1$S\u201D implied, but there were open elements.

Просмотреть файл

@ -730,7 +730,7 @@ void
nsHtml5TreeBuilder::errStrayStartTag(nsIAtom* aName)
{
if (NS_UNLIKELY(mViewSource)) {
mViewSource->AddErrorToCurrentRun("errStrayStartTag", aName);
mViewSource->AddErrorToCurrentRun("errStrayStartTag2", aName);
}
}