﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7346	missing lang translation for django.contrib.humanize	Vašek Chalupníček <mower@…>	nobody	"== Problem ==

I have found, that some languages are missing translations for django.contrib.humanize strings (in my case: I want naturalday templatetag to be localized to CS). Involved languages are:

ar, bn, cs, cy, da, el, gl, km, kn, ko, lv, mk, pt, ru, sk, sl, sr, ta, te, tr, uk, zh_CN, zh_TW

This list is gathered by running this bash script (the word ""tomorrow"" is, among the others, added to django.po by django.contrib.humanize)

{{{
#!/bin/bash

for dir in `pwd`/*
do
    OUTPUT=`cat $dir/LC_MESSAGES/django.po | grep -n 'tomorrow'`
    if [[ ! $OUTPUT ]]
    then
       echo ""$dir"";
    fi
done;
}}}



== Workaround ==

Just add translations to your project (LC_MESSAGES/django.po), but be careful, they will be commented out when running make_messages

== Solution ==

Solution is simple, all mentioned language's '''django.po'''s in django/conf/local should be updated. (I can help with 'cs' lang, send me email if you want so)
"		closed	Translations	newforms-admin		invalid	humanize translation		Unreviewed	1	0	0	0	0	0
