/refactor i18n changes

This commit is contained in:
Reena-cell 2022-08-30 10:58:28 +02:00
parent 6ac31feda7
commit cc4b68fc9f
3 changed files with 14 additions and 14 deletions

View File

@ -89,7 +89,7 @@ class CreateAtmForm(forms.Form):
label=_('Meta License Name'),
widget=forms.TextInput(
attrs={
'placeholder': _('Open Data Commons Public Domain Dedication and License'),
'placeholder': 'Open Data Commons Public Domain Dedication and License',
'class': 'form-control',
}
),
@ -100,7 +100,7 @@ class CreateAtmForm(forms.Form):
label=_('Opening Hours'),
widget=forms.Textarea(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -110,7 +110,7 @@ class CreateAtmForm(forms.Form):
label=_('Monday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -120,7 +120,7 @@ class CreateAtmForm(forms.Form):
label=_('Tuesday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -130,7 +130,7 @@ class CreateAtmForm(forms.Form):
label=_('Wednesday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -140,7 +140,7 @@ class CreateAtmForm(forms.Form):
label=_('Thursday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -150,7 +150,7 @@ class CreateAtmForm(forms.Form):
label=_('Friday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -160,7 +160,7 @@ class CreateAtmForm(forms.Form):
label=_('Saturday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),
@ -170,7 +170,7 @@ class CreateAtmForm(forms.Form):
label=_('Sunday'),
widget=forms.TextInput(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),

View File

@ -75,7 +75,7 @@ class CreateBranchForm(forms.Form):
label=_('meta_license_id'),
widget=forms.TextInput(
attrs={
'placeholder': _('PDDL'),
'placeholder': 'PDDL',
'class': 'form-control',
}
),
@ -86,7 +86,7 @@ class CreateBranchForm(forms.Form):
label=_('meta_license_name'),
widget=forms.TextInput(
attrs={
'placeholder': _('Open Data Commons Public Domain Dedication and License'),
'placeholder': 'Open Data Commons Public Domain Dedication and License',
'class': 'form-control',
}
),
@ -97,7 +97,7 @@ class CreateBranchForm(forms.Form):
label=_(' Lobby Opening Hours'),
widget=forms.Textarea(
attrs={
'placeholder': _('None'),
'placeholder': 'None',
'class': 'form-control',
}
),

View File

@ -42,7 +42,7 @@ class CreateCustomerForm(forms.Form):
label=_('Legal Name'),
widget=forms.TextInput(
attrs={
'placeholder': _('NONE'),
'placeholder': 'NONE',
'class': 'form-control',
}
),
@ -155,7 +155,7 @@ class CreateCustomerForm(forms.Form):
label=_('Credit Limit (Currency)'),
widget=forms.TextInput(
attrs={
'placeholder': _('EUR'),
'placeholder': 'EUR',
'class': 'form-control',
}
),