Re: django multi application, multi database, need to sync..

2008-01-17 Thread otonk
> Create the sync script using the Python DB API directly (no Django > ORM). And then trigger it either automatically with the cron job or > manually, by wrapping that script inside django view. You may want to > add `modified` DateTimeField to all your Django models and store the > last sync date

django multi application, multi database, need to sync..

2008-01-16 Thread otonk
hi, i am currently designing two or more django application, one application act as the master application, contains all the data, the other application has partial function of the master application. The master database belongs to the master application, other database has a partial data from the

Re: i18n model field not translated

2007-11-06 Thread otonk
problem solved.. it lies on the django.po i havent remove the #, fuzzy mark.. thats why its not translated link: http://groups.google.com/group/django-users/browse_thread/thread/e8476fa11cefc2b7 Notice that the message in question is marked as "fuzzy". That means the translation does not qu

Re: i18n model field not translated

2007-11-05 Thread otonk
its not working... isnt verbose_name is for meta class?.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from

Re: i18n model field not translated

2007-11-05 Thread otonk
I did.. from django.db import models from django.utils.translation import ugettext_lazy as _ --- code emmited --- name= models.CharField(_('name'), help_text=_('This is the help text'), max_length = 255) --- code emmited --- on the above code, the [ help_text=_('This is the help text')

i18n model field not translated

2007-11-05 Thread otonk
Hi, I am working on a multilingual project, mainly in indonesia and english. i tried to do i18n on my model fields but i cant get it work on the admin site. the model name is translated, however the fields name is not. here's my model.py class Company(models.Model): name= models.Char