2021-08-02 10:14:34 +02:00
"""
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 _
2022-03-03 12:09:09 +01:00
NO_DETAILS = _ ( " no further details " )
UNKNOWN = _ ( " Unknown " )
2022-02-15 15:33:25 +01:00
UNGROUPED = _ ( " Ungrouped " )
2021-08-02 10:14:34 +02:00
FORM_INVALID = _ ( " There was an error on this form. " )
2021-10-20 13:23:35 +02:00
PARAMS_INVALID = _ ( " Invalid parameters " )
2021-08-10 17:19:42 +02:00
INTERVENTION_INVALID = _ ( " There are errors in this intervention. " )
2021-10-04 09:55:59 +02:00
IDENTIFIER_REPLACED = _ ( " The identifier ' {} ' had to be changed to ' {} ' since another entry has been added in the meanwhile, which uses this identifier " )
2022-02-18 13:52:27 +01:00
ENTRY_REMOVE_MISSING_PERMISSION = _ ( " Only conservation or registration office users are allowed to remove entries. " )
2021-10-25 17:39:39 +02:00
MISSING_GROUP_PERMISSION = _ ( " You need to be part of another user group. " )
2021-11-10 09:11:24 +01:00
CHECKED_RECORDED_RESET = _ ( " Status of Checked and Recorded reseted " )
2022-04-19 09:43:36 +02:00
RECORDED_BLOCKS_EDIT = _ ( " Entry is recorded. To edit data, the entry first needs to be unrecorded. " )
2021-11-10 09:11:24 +01:00
2022-02-18 13:52:27 +01:00
# 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. " )
2022-08-22 10:58:07 +02:00
DATA_SHARE_SET = _ ( " Share settings updated " )
2022-02-18 13:52:27 +01:00
2022-02-09 16:02:28 +01:00
# FILES
FILE_TYPE_UNSUPPORTED = _ ( " Unsupported file type " )
FILE_SIZE_TOO_LARGE = _ ( " File too large " )
2021-11-10 09:11:24 +01:00
# ECO ACCOUNT
2021-11-17 14:33:05 +01:00
CANCEL_ACC_RECORDED_OR_DEDUCTED = _ ( " Action canceled. Eco account is recorded or deductions exist. Only conservation office member can perform this action. " )
2022-02-03 15:29:22 +01:00
# COMPENSATION
COMPENSATION_ADDED_TEMPLATE = _ ( " Compensation {} added " )
COMPENSATION_REMOVED_TEMPLATE = _ ( " Compensation {} removed " )
2022-02-04 16:56:08 +01:00
COMPENSATION_EDITED_TEMPLATE = _ ( " Compensation {} edited " )
ADDED_COMPENSATION_ACTION = _ ( " Added compensation action " )
ADDED_COMPENSATION_STATE = _ ( " Added compensation state " )
# COMPENSATION STATE
COMPENSATION_STATE_REMOVED = _ ( " State removed " )
2022-02-09 14:49:56 +01:00
COMPENSATION_STATE_EDITED = _ ( " State edited " )
2022-02-04 16:56:08 +01:00
COMPENSATION_STATE_ADDED = _ ( " State added " )
# COMPENSATION ACTION
COMPENSATION_ACTION_ADDED = _ ( " Action added " )
2022-02-09 14:49:56 +01:00
COMPENSATION_ACTION_EDITED = _ ( " Action edited " )
2022-02-04 16:56:08 +01:00
COMPENSATION_ACTION_REMOVED = _ ( " Action removed " )
2022-02-03 15:29:22 +01:00
2022-02-02 15:16:25 +01:00
# DEDUCTIONS
DEDUCTION_ADDED = _ ( " Deduction added " )
2022-02-09 14:49:56 +01:00
DEDUCTION_EDITED = _ ( " Deduction edited " )
2022-02-02 15:16:25 +01:00
DEDUCTION_REMOVED = _ ( " Deduction removed " )
2022-08-22 10:17:49 +02:00
DEDUCTION_UNKNOWN = _ ( " Unknown deduction " )
2022-02-02 15:16:25 +01:00
2022-02-07 09:56:37 +01:00
# DEADLINE
DEADLINE_ADDED = _ ( " Deadline added " )
2022-02-09 14:49:56 +01:00
DEADLINE_EDITED = _ ( " Deadline edited " )
2022-02-07 09:56:37 +01:00
DEADLINE_REMOVED = _ ( " Deadline removed " )
2022-02-02 15:16:25 +01:00
# PAYMENTS
PAYMENT_ADDED = _ ( " Payment added " )
2022-02-09 10:29:34 +01:00
PAYMENT_EDITED = _ ( " Payment edited " )
2022-02-02 15:16:25 +01:00
PAYMENT_REMOVED = _ ( " Payment removed " )
2022-02-03 12:10:23 +01:00
# REVOCATIONS
REVOCATION_ADDED = _ ( " Revocation added " )
2022-02-09 14:49:56 +01:00
REVOCATION_EDITED = _ ( " Revocation edited " )
2022-02-03 12:10:23 +01:00
REVOCATION_REMOVED = _ ( " Revocation removed " )
2022-02-04 09:18:46 +01:00
# DOCUMENTS
DOCUMENT_REMOVED_TEMPLATE = _ ( " Document ' {} ' deleted " )
DOCUMENT_ADDED = _ ( " Document added " )
2022-02-10 10:21:18 +01:00
DOCUMENT_EDITED = _ ( " Document edited " )
2022-02-04 09:18:46 +01:00
2021-11-17 14:33:05 +01:00
# Edited
EDITED_GENERAL_DATA = _ ( " Edited general data " )
ADDED_DEADLINE = _ ( " Added deadline " )
2021-12-15 13:59:52 +01:00
# Geometry conflicts
2021-12-15 15:10:35 +01:00
GEOMETRY_CONFLICT_WITH_TEMPLATE = _ ( " Geometry conflict detected with {} " )
2022-02-08 15:25:44 +01:00
# INTERVENTION
INTERVENTION_HAS_REVOCATIONS_TEMPLATE = _ ( " This intervention has {} revocations " )
2022-05-30 10:26:34 +02:00
# 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 " )