Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 128 by Homma.T: a little patch for translating swap
http://code.google.com/p/django-hotclub/issues/detail?id=128
A patch below for pinax/apps/external_apps/swaps/models.py was necessary to
successfully run django-admin.py makemessages -l <lang> to create django.po
under locale/<lang>/LC_MESSAGES.
172,175c172,175
< return _('Proposing offer: %s, Responding offer %s') % (
< self.proposing_offer.short_description,
< self.responding_offer.short_description
< )
---
> return _('Proposing offer: %(pro)s, Responding offer %(res)s') % {
> 'pro': self.proposing_offer.short_description,
> 'res': self.responding_offer.short_description
> }
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---