diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2021-12-15 22:46:05 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-12-15 22:46:05 -0500 |
commit | aa276705fd78be3aa77551acd10e8b6616f3f8e8 (patch) | |
tree | 90aa8c8da05c537a5b43ed7139dfc414811d3f24 /index.php | |
parent | 31d608abefb548670ebc19d1c6a97f6961d99187 (diff) | |
download | translate-aa276705fd78be3aa77551acd10e8b6616f3f8e8.tar.gz translate-aa276705fd78be3aa77551acd10e8b6616f3f8e8.zip |
Lower the "good translation" threshold to 90% (from 95%)
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ function get_stats() { && $info['desc'] == 0: $stats['summary']['complete']++; break; - case $info['percentage'] > 95; + case $info['percentage'] > 90; $stats['summary']['good']++; break; case $info['percentage'] > 50; |