* replaces function based share views with class based * improves team-share autocomplete search * renames internal share url names
91 lines
3.3 KiB
Python
91 lines
3.3 KiB
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 02.08.21
|
|
|
|
"""
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
NO_DETAILS = _("no further details")
|
|
UNKNOWN = _("Unknown")
|
|
UNGROUPED = _("Ungrouped")
|
|
FORM_INVALID = _("There was an error on this form.")
|
|
PARAMS_INVALID = _("Invalid parameters")
|
|
INTERVENTION_INVALID = _("There are errors in this intervention.")
|
|
IDENTIFIER_REPLACED = _("The identifier '{}' had to be changed to '{}' since another entry has been added in the meanwhile, which uses this identifier")
|
|
ENTRY_REMOVE_MISSING_PERMISSION = _("Only conservation or registration office users are allowed to remove entries.")
|
|
MISSING_GROUP_PERMISSION = _("You need to be part of another user group.")
|
|
CHECKED_RECORDED_RESET = _("Status of Checked and Recorded reseted")
|
|
RECORDED_BLOCKS_EDIT = _("Entry is recorded. To edit data, the entry first needs to be unrecorded.")
|
|
|
|
# SHARE
|
|
DATA_UNSHARED = _("This data is not shared with you")
|
|
DATA_UNSHARED_EXPLANATION = _("Remember: This data has not been shared with you, yet. This means you can only read but can not edit or perform any actions like running a check or recording.")
|
|
DATA_SHARE_SET = _("Share settings updated")
|
|
|
|
# FILES
|
|
FILE_TYPE_UNSUPPORTED = _("Unsupported file type")
|
|
FILE_SIZE_TOO_LARGE = _("File too large")
|
|
|
|
# ECO ACCOUNT
|
|
CANCEL_ACC_RECORDED_OR_DEDUCTED = _("Action canceled. Eco account is recorded or deductions exist. Only conservation office member can perform this action.")
|
|
|
|
# COMPENSATION
|
|
COMPENSATION_ADDED_TEMPLATE = _("Compensation {} added")
|
|
COMPENSATION_REMOVED_TEMPLATE = _("Compensation {} removed")
|
|
COMPENSATION_EDITED_TEMPLATE = _("Compensation {} edited")
|
|
ADDED_COMPENSATION_ACTION = _("Added compensation action")
|
|
ADDED_COMPENSATION_STATE = _("Added compensation state")
|
|
|
|
# COMPENSATION STATE
|
|
COMPENSATION_STATE_REMOVED = _("State removed")
|
|
COMPENSATION_STATE_EDITED = _("State edited")
|
|
COMPENSATION_STATE_ADDED = _("State added")
|
|
|
|
# COMPENSATION ACTION
|
|
COMPENSATION_ACTION_ADDED = _("Action added")
|
|
COMPENSATION_ACTION_EDITED = _("Action edited")
|
|
COMPENSATION_ACTION_REMOVED = _("Action removed")
|
|
|
|
# DEDUCTIONS
|
|
DEDUCTION_ADDED = _("Deduction added")
|
|
DEDUCTION_EDITED = _("Deduction edited")
|
|
DEDUCTION_REMOVED = _("Deduction removed")
|
|
DEDUCTION_UNKNOWN = _("Unknown deduction")
|
|
|
|
# DEADLINE
|
|
DEADLINE_ADDED = _("Deadline added")
|
|
DEADLINE_EDITED = _("Deadline edited")
|
|
DEADLINE_REMOVED = _("Deadline removed")
|
|
|
|
# PAYMENTS
|
|
PAYMENT_ADDED = _("Payment added")
|
|
PAYMENT_EDITED = _("Payment edited")
|
|
PAYMENT_REMOVED = _("Payment removed")
|
|
|
|
# REVOCATIONS
|
|
REVOCATION_ADDED = _("Revocation added")
|
|
REVOCATION_EDITED = _("Revocation edited")
|
|
REVOCATION_REMOVED = _("Revocation removed")
|
|
|
|
# DOCUMENTS
|
|
DOCUMENT_REMOVED_TEMPLATE = _("Document '{}' deleted")
|
|
DOCUMENT_ADDED = _("Document added")
|
|
DOCUMENT_EDITED = _("Document edited")
|
|
|
|
# Edited
|
|
EDITED_GENERAL_DATA = _("Edited general data")
|
|
ADDED_DEADLINE = _("Added deadline")
|
|
|
|
# Geometry conflicts
|
|
GEOMETRY_CONFLICT_WITH_TEMPLATE = _("Geometry conflict detected with {}")
|
|
|
|
# INTERVENTION
|
|
INTERVENTION_HAS_REVOCATIONS_TEMPLATE = _("This intervention has {} revocations")
|
|
|
|
# CHECKED
|
|
DATA_CHECKED_ON_TEMPLATE = _("Checked on {} by {}")
|
|
DATA_CHECKED_PREVIOUSLY_TEMPLATE = _("Data has changed since last check on {} by {}")
|
|
DATA_IS_UNCHECKED = _("Current data not checked yet")
|