mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Helps: #1938. backups/forms.py: - ChoiceField labeled to allow translation. - Translation applied to hard coded literals. config/forms.py: Lazy translation applied to literals that were translated but still displayed in english to non-english users. diagnostics_results.html: Apply translation to results. Use gettext_noop to mark for translation. dynamicdns/forms.py: Apply translation to choice literals. i2p/views.py: Lazy translation applied to literals that were translated but still displayed in english to non-english users. names.html: Apply translation to table headers. performance/__init__.py: Apply translation to description literals. radicale/forms.py: ChoiceField labeled to allow translation. users/forms.py: CharField labeled to allow translation. QA: - Literals visually verified. - No errors in py.test-3. - Yapf applied (only) to changed files. - No remarks by flake8 to changed file. Signed-off-by: Fioddor Superconcentrado <fioddor@gmail.com> [sunil: Separate out the translations] [sunil: Fix i18n for diagnostics] [sunil: dynamicdns: Also do i18n for string GnuDIP] [sunil: searx: Revert an incorrect removal of import] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Forms for radicale module.
|
|
"""
|
|
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth import cfg
|
|
from plinth.utils import format_lazy
|
|
|
|
CHOICES = [
|
|
('owner_only',
|
|
_('Only the owner of a calendar/addressbook can view or '
|
|
'make changes.')),
|
|
('owner_write',
|
|
format_lazy(
|
|
_('Any user with a {box_name} login can view any calendar/addressbook'
|
|
', but only the owner can make changes.'),
|
|
box_name=_(cfg.box_name))),
|
|
('authenticated',
|
|
format_lazy(
|
|
_('Any user with a {box_name} login can view or make changes'
|
|
' to any calendar/addressbook.'), box_name=_(cfg.box_name))),
|
|
]
|
|
|
|
|
|
class RadicaleForm(forms.Form):
|
|
"""Specialized configuration form for radicale service."""
|
|
access_rights = forms.ChoiceField(label=_('Access rights'),
|
|
choices=CHOICES, required=True,
|
|
widget=forms.RadioSelect())
|