/[schmitzm]/trunk/src/skrueger/i8n/I8NUtil.java
ViewVC logotype

Diff of /trunk/src/skrueger/i8n/I8NUtil.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

branches/1.0-gt2-2.6/src/skrueger/i8n/I8NUtil.java revision 315 by mojays, Wed Aug 26 11:03:27 2009 UTC branches/2.0-RC2/src/skrueger/i8n/I8NUtil.java revision 621 by alfonx, Thu Jan 28 10:06:05 2010 UTC
# Line 29  Line 29 
29   ******************************************************************************/   ******************************************************************************/
30  package skrueger.i8n;  package skrueger.i8n;
31    
32    import java.util.List;
33  import java.util.Locale;  import java.util.Locale;
34  import java.util.Set;  import java.util.Set;
35  import java.util.TreeSet;  import java.util.TreeSet;
# Line 146  public class I8NUtil { Line 147  public class I8NUtil {
147                          return true;                          return true;
148                  return false;                  return false;
149          }          }
150    
151            /**
152             * @return a {@link Double} between 0 and 1 representing the part of the
153             *         given {@link Translation} that has been filled.
154             * @param ac
155             *            {@link AtlasConfig} to determine the languages to expect.
156             * @param trans
157             *            The {@link Translation} to check.
158             */
159            public static double qmTranslation(final List<String> languages,
160                            final Translation trans) {
161            
162                    if (trans == null)
163                            return 0.;
164            
165                    Integer cunt = 0;
166                    for (final String l : languages) {
167                            final String t = trans.get(l);
168                            if (!isEmpty(t))
169                                    cunt++;
170                    }
171                    return cunt.doubleValue() / (double) languages.size();
172            }
173  }  }

Legend:
Removed from v.315  
changed lines
  Added in v.621

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26