1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

15803 localize help_text (#15804)

This commit is contained in:
Arthur Hanson
2024-04-22 08:42:20 -07:00
committed by GitHub
parent 5d95d49268
commit 1eca1c3d17
5 changed files with 6 additions and 6 deletions

View File

@ -62,7 +62,7 @@ class MyModelImportForm(NetBoxModelImportForm):
site = CSVModelChoiceField(
queryset=Site.objects.all(),
to_field_name='name',
help_text='Assigned site'
help_text=_('Assigned site')
)
class Meta: