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

@@ -214,3 +214,9 @@ function IsValidFileName($fileName)
return false;
}
function IsJsonString($text)
{
json_decode($text);
return (json_last_error() == JSON_ERROR_NONE);
}