diff --git a/rero_ils/modules/migrations/data/views.py b/rero_ils/modules/migrations/data/views.py index 30ac5ea1b8..e855d82a45 100644 --- a/rero_ils/modules/migrations/data/views.py +++ b/rero_ils/modules/migrations/data/views.py @@ -40,6 +40,11 @@ api_blueprint = Blueprint("api_migration_data", __name__, url_prefix="/migration_data") +def _(x): + """Identity function used to trigger string extraction.""" + return x + + class MigrationDataListResource(ContentNegotiatedMethodView): """Imports REST resource.""" @@ -101,16 +106,16 @@ def get(self, **kwargs): ) # aggregations - search.aggs.bucket("migration", "terms", field="migration_id.raw", size=30) - search.aggs.bucket("batch", "terms", field="deduplication.subset", size=30) + search.aggs.bucket(_("migration"), "terms", field="migration_id.raw", size=30) + search.aggs.bucket(_("batch"), "terms", field="deduplication.subset", size=30) search.aggs.bucket( - "conversion_status", "terms", field="conversion.status", size=30 + _("conversion_status"), "terms", field="conversion.status", size=30 ) search.aggs.bucket( - "deduplication_status", "terms", field="deduplication.status", size=30 + _("deduplication_status"), "terms", field="deduplication.status", size=30 ) search.aggs.bucket( - "modified_by", "terms", field="deduplication.modified_by.raw", size=30 + _("modified_by"), "terms", field="deduplication.modified_by.raw", size=30 ) # filters diff --git a/rero_ils/modules/migrations/views.py b/rero_ils/modules/migrations/views.py index f7ae335a94..109d9982f2 100644 --- a/rero_ils/modules/migrations/views.py +++ b/rero_ils/modules/migrations/views.py @@ -25,6 +25,11 @@ from .permissions import MigrationPermissionPolicy, check_permission +def _(x): + """Identity function used to trigger string extraction.""" + return x + + def simple_search_json_serializer(data, code=200, headers=None): """JSON serializer to reproduce a simple invenio search format.""" if code != 200: @@ -87,7 +92,7 @@ def get(self, **kwargs): ) if query: search = search.query("query_string", query=query) - search.aggs.bucket("status", "terms", field="status", size=30) + search.aggs.bucket(_("status"), "terms", field="status", size=30) if status := flask_request.args.get("status"): search = search.filter("term", status=status) return self.make_response(search.execute().to_dict(), 200) diff --git a/rero_ils/translations/ar/LC_MESSAGES/messages.po b/rero_ils/translations/ar/LC_MESSAGES/messages.po index ccfc558479..3fceaf5580 100644 --- a/rero_ils/translations/ar/LC_MESSAGES/messages.po +++ b/rero_ils/translations/ar/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: software@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2021-10-24 13:38+0000\n" "Last-Translator: ButterflyOfFire \n" "Language: ar\n" @@ -133,6 +133,7 @@ msgstr "" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "الحالة" @@ -11575,6 +11576,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/de/LC_MESSAGES/messages.po b/rero_ils/translations/de/LC_MESSAGES/messages.po index dd7ca05164..8b426b6ac8 100644 --- a/rero_ils/translations/de/LC_MESSAGES/messages.po +++ b/rero_ils/translations/de/LC_MESSAGES/messages.po @@ -16,17 +16,16 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-10-24 15:06+0000\n" "Last-Translator: Pascal Repond \n" -"Language-Team: German \n" "Language: de\n" +"Language-Team: German \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" "Generated-By: Babel 2.16.0\n" #: rero_ils/accounts_views.py:57 @@ -142,6 +141,7 @@ msgstr "Standort" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "Status" @@ -11558,6 +11558,26 @@ msgstr "keine Korrespondenz" msgid "match" msgstr "Korrespondenz" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "Migration" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "Stapel" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "Konvertierungsstatus" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "Deduplizierungsstatus" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "geändert von" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 @@ -13271,3 +13291,4 @@ msgstr "Inveio-Assets" #~ msgid "Checkouts are allowed or not." #~ msgstr "Ausleihen sind erlaubt oder nicht." + diff --git a/rero_ils/translations/en/LC_MESSAGES/messages.po b/rero_ils/translations/en/LC_MESSAGES/messages.po index ec80ab0d68..679f720c3e 100644 --- a/rero_ils/translations/en/LC_MESSAGES/messages.po +++ b/rero_ils/translations/en/LC_MESSAGES/messages.po @@ -17,17 +17,16 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-10-24 15:03+0000\n" "Last-Translator: Pascal Repond \n" -"Language-Team: English \n" "Language: en\n" +"Language-Team: English \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" "Generated-By: Babel 2.16.0\n" #: rero_ils/accounts_views.py:57 @@ -143,6 +142,7 @@ msgstr "location" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "status" @@ -11503,6 +11503,26 @@ msgstr "no match" msgid "match" msgstr "match" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "migration" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "batch" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "conversion status" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "deduplication status" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "modified by" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 @@ -13182,3 +13202,4 @@ msgstr "Invenio assets" #~ msgid "Checkouts are allowed or not." #~ msgstr "Checkouts are allowed or not." + diff --git a/rero_ils/translations/eo/LC_MESSAGES/messages.po b/rero_ils/translations/eo/LC_MESSAGES/messages.po index b1dbefe2e6..07ae1b1da2 100644 --- a/rero_ils/translations/eo/LC_MESSAGES/messages.po +++ b/rero_ils/translations/eo/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 1.0.1\n" "Report-Msgid-Bugs-To: software@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2021-06-09 13:00+0000\n" "Last-Translator: Nicolas Prongué \n" "Language: eo\n" @@ -130,6 +130,7 @@ msgstr "loko" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "stato" @@ -11328,6 +11329,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/es/LC_MESSAGES/messages.po b/rero_ils/translations/es/LC_MESSAGES/messages.po index 281f811ebc..839d3bb00a 100644 --- a/rero_ils/translations/es/LC_MESSAGES/messages.po +++ b/rero_ils/translations/es/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-03-26 11:02+0000\n" "Last-Translator: Pascal Repond \n" "Language: es\n" @@ -134,6 +134,7 @@ msgstr "ubicación" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "estado" @@ -11542,6 +11543,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/fr/LC_MESSAGES/messages.po b/rero_ils/translations/fr/LC_MESSAGES/messages.po index a0b48d2c82..3f25925833 100644 --- a/rero_ils/translations/fr/LC_MESSAGES/messages.po +++ b/rero_ils/translations/fr/LC_MESSAGES/messages.po @@ -20,17 +20,16 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-10-24 15:06+0000\n" "Last-Translator: Pascal Repond \n" -"Language-Team: French \n" "Language: fr\n" +"Language-Team: French \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" "Generated-By: Babel 2.16.0\n" #: rero_ils/accounts_views.py:57 @@ -146,6 +145,7 @@ msgstr "localisation" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "statut" @@ -11573,6 +11573,26 @@ msgstr "pas de correspondance" msgid "match" msgstr "correspondance" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "migration" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "lot" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "statut conversion" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "statut dédoublonnage" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "modifié par" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 @@ -13280,3 +13300,4 @@ msgstr "Assets Invenio" #~ msgid "Checkouts are allowed or not." #~ msgstr "Autorise ou non les prêts." + diff --git a/rero_ils/translations/it/LC_MESSAGES/messages.po b/rero_ils/translations/it/LC_MESSAGES/messages.po index 5ebe9489a7..33459643eb 100644 --- a/rero_ils/translations/it/LC_MESSAGES/messages.po +++ b/rero_ils/translations/it/LC_MESSAGES/messages.po @@ -18,17 +18,16 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-10-24 15:03+0000\n" "Last-Translator: Pascal Repond \n" -"Language-Team: Italian \n" "Language: it\n" +"Language-Team: Italian \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" "Generated-By: Babel 2.16.0\n" #: rero_ils/accounts_views.py:57 @@ -144,6 +143,7 @@ msgstr "localizzazione" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "statuto" @@ -11549,6 +11549,26 @@ msgstr "nessuna corrispondenza" msgid "match" msgstr "corrispondenza" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "migrazione" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "lotto" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "stato conversione" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "stato deduplicazione" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "modificato da" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 @@ -13257,3 +13277,4 @@ msgstr "Invenio assets" #~ msgid "Checkouts are allowed or not." #~ msgstr "Prestiti sono consentiti o no." + diff --git a/rero_ils/translations/messages.pot b/rero_ils/translations/messages.pot index 7f4158f922..579dbc73c0 100644 --- a/rero_ils/translations/messages.pot +++ b/rero_ils/translations/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 1.23.1\n" "Report-Msgid-Bugs-To: software@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -127,6 +127,7 @@ msgstr "" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "" @@ -11300,6 +11301,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/nl/LC_MESSAGES/messages.po b/rero_ils/translations/nl/LC_MESSAGES/messages.po index e04f24e885..dc6b81a8b9 100644 --- a/rero_ils/translations/nl/LC_MESSAGES/messages.po +++ b/rero_ils/translations/nl/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 0.9.1\n" "Report-Msgid-Bugs-To: pascal.repond@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2024-02-23 17:02+0000\n" "Last-Translator: LievenSmets \n" "Language: nl\n" @@ -134,6 +134,7 @@ msgstr "plaats" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "status" @@ -11644,6 +11645,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/ru/LC_MESSAGES/messages.po b/rero_ils/translations/ru/LC_MESSAGES/messages.po index b7ee948f15..d15c2f979c 100644 --- a/rero_ils/translations/ru/LC_MESSAGES/messages.po +++ b/rero_ils/translations/ru/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 1.7.0\n" "Report-Msgid-Bugs-To: software@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2022-01-21 16:53+0000\n" "Last-Translator: lushnikov3d37b9a0863842c1 \n" "Language: ru\n" @@ -126,6 +126,7 @@ msgstr "место хранения" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "статус" @@ -11315,6 +11316,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134 diff --git a/rero_ils/translations/zh_Hant/LC_MESSAGES/messages.po b/rero_ils/translations/zh_Hant/LC_MESSAGES/messages.po index bfc38b5e05..c1c44a2b21 100644 --- a/rero_ils/translations/zh_Hant/LC_MESSAGES/messages.po +++ b/rero_ils/translations/zh_Hant/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: rero-ils 1.5.1\n" "Report-Msgid-Bugs-To: software@rero.ch\n" -"POT-Creation-Date: 2024-10-24 16:46+0200\n" +"POT-Creation-Date: 2024-10-31 12:03+0100\n" "PO-Revision-Date: 2021-12-25 09:52+0000\n" "Last-Translator: Sam Tse \n" "Language: zh_Hant\n" @@ -129,6 +129,7 @@ msgstr "位置" #: rero_ils/config.py:2235 rero_ils/config.py:2309 rero_ils/config.py:2393 #: rero_ils/config.py:2497 rero_ils/config.py:2553 +#: rero_ils/modules/migrations/views.py:95 msgid "status" msgstr "狀態" @@ -11425,6 +11426,26 @@ msgstr "" msgid "match" msgstr "" +#: rero_ils/modules/migrations/data/views.py:109 +msgid "migration" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:110 +msgid "batch" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:112 +msgid "conversion_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:115 +msgid "deduplication_status" +msgstr "" + +#: rero_ils/modules/migrations/data/views.py:118 +msgid "modified_by" +msgstr "" + #: rero_ils/modules/notifications/jsonschemas/notifications/notification-v0.0.1.json:4 #: rero_ils/modules/operation_logs/jsonschemas/operation_logs/operation_log-v0.0.1.json:108 #: rero_ils/modules/patron_transactions/jsonschemas/patron_transactions/patron_transaction-v0.0.1.json:134