Updated localizations & improved some special and demo translation string data handling

This commit is contained in:
Bernd Bestel
2019-09-20 16:26:50 +02:00
parent 399ebbe14a
commit 292b652437
69 changed files with 2528 additions and 2374 deletions

View File

@@ -117,3 +117,15 @@ $.fn.hasAttr = function(name)
{
return this.attr(name) !== undefined;
};
function IsJsonString(text)
{
try
{
JSON.parse(text);
} catch(e)
{
return false;
}
return true;
}