Re: django makemessages management command

2018-10-05 Thread vishvajit pathak
is correct. On Monday, 24 September 2018 17:19:08 UTC+5:30, Osama AbuOmar wrote: > > About the django *makemessages *management command. I think there should > by an option to *NOT *let django comment out manually added translations > to the .po files. > sometimes I need

Re: django makemessages management command

2018-10-03 Thread Marcin Nowak
> You can simply do that by including a gettext_noop('your custom string') > line anywhere in your code (or in a specific file you create for that > purpose). > > This is an ugly workaround. Makemessages has other issue - it grabs messages from external eggs/packages, which are found in

Re: django makemessages management command

2018-09-24 Thread Claude Paroz
Hi Osama, You can simply do that by including a gettext_noop('your custom string') line anywhere in your code (or in a specific file you create for that purpose). Regards, Claude -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions

django makemessages management command

2018-09-24 Thread Osama AbuOmar
About the django *makemessages *management command. I think there should by an option to *NOT *let django comment out manually added translations to the .po files. sometimes I need to manually add a translation definition (msgid, msgstr), these are not in any of my template or python files