mirror of https://github.com/jumpserver/jumpserver
10 lines
304 B
Python
10 lines
304 B
Python
from django.utils.translation import ugettext as _
|
|
|
|
|
|
common_help_text = _('Format for comma-delimited string, with * indicating a match all. ')
|
|
|
|
ip_group_help_text = common_help_text + _(
|
|
'Such as: '
|
|
'192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64 '
|
|
)
|