Enhancement #192

Add to the kune translator a stats summary about completeness

Added by Vicente J. Ruiz Jurado about 12 years ago. Updated almost 12 years ago.

Status:NewStart date:
Priority:NormalDue date:
Assignee:Vicente J. Ruiz Jurado% Done:

0%

Category:Internationalization
Target version:-
Resolution: Tags:

Description

Something like:

French 99%
Spanish 99%
Italian 25%

History

#1 Updated by Vicente J. Ruiz Jurado almost 12 years ago

select count() from globalize_translations g where g.language_id=1819 into @i18nTotal;
select l.english_name, count(
)*100/(@i18nTotal) AS percentage from globalize_translations g, globalize_languages l where g.language_id=l.id and text!="" group by language_id ORDER BY percentage DESC

Also available in: Atom PDF