From 79f482d21fe1f879354c731b1a1b00853acfc027 Mon Sep 17 00:00:00 2001 From: Mirek Simek Date: Wed, 18 Sep 2024 11:53:52 +0200 Subject: [PATCH] Czech translation files --- .../messages/cs/translations.json | 17 +++++++++++++++++ .../invenio_rdm_records/messages/index.js | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/cs/translations.json diff --git a/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/cs/translations.json b/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/cs/translations.json new file mode 100644 index 000000000..c3353bfbb --- /dev/null +++ b/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/cs/translations.json @@ -0,0 +1,17 @@ +{ + "Copy to clipboard": "Copy to clipboard", + "Copied!": "Copied!", + "This set is not editable as it was created by the system.": "This set is not editable as it was created by the system.", + "This set is not deletable as it was created by the system.": "This set is not deletable as it was created by the system.", + "Links": "Links", + "Format": "Format", + "List records": "List records", + "Opens in new tab": "Opens in new tab", + "List identifiers": "List identifiers", + "Before deleting, make sure to alert all harvesters that this set will no longer be available.": "Before deleting, make sure to alert all harvesters that this set will no longer be available.", + "I have alerted all harvesters that this set will no longer be available.": "I have alerted all harvesters that this set will no longer be available.", + "Cancel": "Cancel", + "Delete": "Delete", + "Delete {{title}}": "Delete {{title}}", + "This will delete the set '{{title}}'.": "This will delete the set '{{title}}'." +} diff --git a/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/index.js b/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/index.js index b94c2cfe8..95e524689 100644 --- a/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/index.js +++ b/invenio_rdm_records/assets/semantic-ui/translations/invenio_rdm_records/messages/index.js @@ -1,9 +1,11 @@ import TRANSLATE_EN from "./en/translations.json"; import TRANSLATE_DE from "./de/translations.json"; import TRANSLATE_EL from "./el/translations.json"; +import TRANSLATE_CS from "./cs/translations.json"; export const translations = { el: { translation: TRANSLATE_EL }, en: { translation: TRANSLATE_EN }, de: { translation: TRANSLATE_DE }, + cs: { translation: TRANSLATE_CS }, };