Bug 699749 - Avoid the term "astral" in error messages. r=l10n.

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

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

@ -76,7 +76,6 @@ errBogusDoctype=Bogus doctype.
maybeErrAttributesOnEndTag=End tag had attributes.
maybeErrSlashInEndTag=Stray “/” at the end of an end tag.
errNcrNonCharacter=Character reference expands to a non-character.
errAstralNonCharacter=Character reference expands to an astral non-character.
errNcrSurrogate=Character reference expands to a surrogate.
errNcrControlChar=Character reference expands to a control character.
errNcrCr=A numeric character reference expanded to carriage return.

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

@ -179,7 +179,7 @@ void
nsHtml5Tokenizer::errAstralNonCharacter(int ch)
{
if (NS_UNLIKELY(mViewSource)) {
mViewSource->AddErrorToCurrentNode("errAstralNonCharacter");
mViewSource->AddErrorToCurrentNode("errNcrNonCharacter");
}
}