Fix typo and and add quotation

The quotation added is for Chinese Simplified which I discovered usage in translation work.
This commit is contained in:
Ben 2015-09-03 16:30:22 +08:00
parent 0a7a0d7c98
commit c488e843b8

View File

@ -17,6 +17,10 @@ bool UtfNoStarting (wchar_t c)
{ {
switch (c) switch (c)
{ {
case 8217: //
return true;
case 8221: //”
return true;
case 12293: //々 case 12293: //々
return true; return true;
case 12297: //〉 case 12297: //〉
@ -66,6 +70,10 @@ bool UtfNoEnding (wchar_t c)
{ {
switch (c) switch (c)
{ {
case 8216: //
return true;
case 8220: //“
return true;
case 12296: //〈 case 12296: //〈
return true; return true;
case 12298: //《 case 12298: //《
@ -100,5 +108,5 @@ bool breakable (wchar_t c)
return true; return true;
return false; return false;
} }
} // end namespace core } // end namespace gui
} // end namespace irr } // end namespace irr