@@ -50,9 +50,9 @@ static char* TagToString(Node* tag, char* buf, size_t count)
50
50
else if (tag -> type == DocTypeTag )
51
51
TY_ (tmbsnprintf )(buf , count , "<!DOCTYPE>" );
52
52
else if (tag -> type == TextNode )
53
- TY_ (tmbsnprintf )(buf , count , "%s" , tidyLocalizedString ( STRING_PLAIN_TEXT ) );
53
+ TY_ (tmbsnprintf )(buf , count , "%s" , " STRING_PLAIN_TEXT" );
54
54
else if (tag -> type == XmlDecl )
55
- TY_ (tmbsnprintf )(buf , count , "%s" , tidyLocalizedString ( STRING_XML_DECLARATION ) );
55
+ TY_ (tmbsnprintf )(buf , count , "%s" , " STRING_XML_DECLARATION" );
56
56
else if (tag -> element )
57
57
TY_ (tmbsnprintf )(buf , count , "%s" , tag -> element );
58
58
}
@@ -1070,7 +1070,7 @@ static struct _dialogueDispatchTable {
1070
1070
1071
1071
1072
1072
/* This message formatter for dialogue messages should be capable of formatting
1073
- ** every message, because they're not all the complex and there aren't that
1073
+ ** every message, because they're not all that complex and there aren't that
1074
1074
** many.
1075
1075
*/
1076
1076
static TidyMessageImpl * formatDialogue ( TidyDocImpl * doc , uint code , TidyReportLevel level , va_list args )
@@ -1087,8 +1087,8 @@ static TidyMessageImpl *formatDialogue( TidyDocImpl* doc, uint code, TidyReportL
1087
1087
case STRING_ERROR_COUNT :
1088
1088
case STRING_NOT_ALL_SHOWN :
1089
1089
return TY_ (tidyMessageCreate )( doc , code , level ,
1090
- doc -> warnings , tidyLocalizedStringN ( STRING_ERROR_COUNT_WARNING , doc -> warnings ) ,
1091
- doc -> errors , tidyLocalizedStringN ( STRING_ERROR_COUNT_ERROR , doc -> errors ) );
1090
+ doc -> warnings , " STRING_ERROR_COUNT_WARNING" ,
1091
+ doc -> errors , " STRING_ERROR_COUNT_ERROR" );
1092
1092
1093
1093
case FOOTNOTE_TRIM_EMPTY_ELEMENT :
1094
1094
case STRING_HELLO_ACCESS :
0 commit comments