Browse Source

minor msgid fix

master
Frederic 11 years ago
parent
commit
3705e7226f
  1. 4
      cash/admin.py
  2. 4
      cash/locale/de/LC_MESSAGES/django.po

4
cash/admin.py

@ -10,7 +10,7 @@ from django.utils.translation import ugettext_noop @@ -10,7 +10,7 @@ from django.utils.translation import ugettext_noop
class AccountForm(forms.ModelForm):
credit_change = forms.DecimalField(max_digits=5, decimal_places=2,
required=False,
label=ugettext_lazy('change change'))
label=ugettext_lazy('credit change'))
credit_change_comment = forms.CharField(max_length=64, required=False,
label=ugettext_lazy('comment'))
@ -26,7 +26,7 @@ class AccountAdmin(admin.ModelAdmin): @@ -26,7 +26,7 @@ class AccountAdmin(admin.ModelAdmin):
(None, {
'fields': ('user', 'card_number', 'pin', 'credit'),
}),
(ugettext_lazy('change change'), {
(ugettext_lazy('credit change'), {
'fields': ('credit_change', 'credit_change_comment'),
}),
)

4
cash/locale/de/LC_MESSAGES/django.po

@ -8,7 +8,7 @@ msgid "" @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-09-13 16:00+0200\n"
"POT-Creation-Date: 2013-09-13 16:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,7 +19,7 @@ msgstr "" @@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: admin.py:13 admin.py:29
msgid "change change"
msgid "credit change"
msgstr "Ein-/Auszahlung"
#: admin.py:16 models.py:84 models.py:113

Loading…
Cancel
Save