* Check whether a translation is sufficiently finished to offer it to the public. */
| 2035 | * Check whether a translation is sufficiently finished to offer it to the public. |
| 2036 | */ |
| 2037 | bool LanguagePackHeader::IsReasonablyFinished() const |
| 2038 | { |
| 2039 | /* "Less than 25% missing" is "sufficiently finished". */ |
| 2040 | return 4 * this->missing < LANGUAGE_TOTAL_STRINGS; |
| 2041 | } |
| 2042 | |
| 2043 | /** |
| 2044 | * Read a particular language. |
no outgoing calls
no test coverage detected