added warn if default pri key is being used. increased threshold len for translation to 10

This commit is contained in:
Vishal
2022-08-31 17:01:26 +05:30
parent 20f5295e54
commit a46e2a19c5
2 changed files with 9 additions and 1 deletions

View File

@@ -113,7 +113,7 @@ extension StringX on String {
isEnglish( ) {
// since smaller words can be smileys they should not be translated
if( length < 6)
if( length < 10)
return true;
if( !isLatinAlphabet())