From b51f8cb801ec6fecd9e58123da156dd06519d59a Mon Sep 17 00:00:00 2001
From: Justus Dieckmann <justusdieckmann@wwu.de>
Date: Wed, 28 Aug 2019 20:36:36 +0200
Subject: [PATCH] Translated remaining strings

---
 .../lang/de/lifecycletrigger_manual.php       | 32 +++++++++++++++++++
 .../lang/de/lifecycletrigger_sitecourse.php   | 28 ++++++++++++++++
 .../lang/de/lifecycletrigger_specificdate.php | 31 ++++++++++++++++++
 .../de/lifecycletrigger_startdatedelay.php    | 29 +++++++++++++++++
 4 files changed, 120 insertions(+)
 create mode 100644 trigger/manual/lang/de/lifecycletrigger_manual.php
 create mode 100644 trigger/sitecourse/lang/de/lifecycletrigger_sitecourse.php
 create mode 100644 trigger/specificdate/lang/de/lifecycletrigger_specificdate.php
 create mode 100644 trigger/startdatedelay/lang/de/lifecycletrigger_startdatedelay.php

diff --git a/trigger/manual/lang/de/lifecycletrigger_manual.php b/trigger/manual/lang/de/lifecycletrigger_manual.php
new file mode 100644
index 0000000..79092cf
--- /dev/null
+++ b/trigger/manual/lang/de/lifecycletrigger_manual.php
@@ -0,0 +1,32 @@
+<?php
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Lang strings for manual trigger
+ *
+ * @package tool_lifecycle_trigger
+ * @subpackage manual
+ * @copyright  2018 WWU
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['pluginname'] = 'Manueller Trigger';
+$string['setting_capability'] = 'Fähigkeit';
+$string['setting_capability_help'] = 'Die Moodle-Fähigkeit, die gebraucht wird, um diesen Trigger zu sehen und auszulösen, z.B. "enrol/manual:enrol". Bitte gucken Sie sich die Moodle Access API für Details an.';
+$string['setting_icon'] = 'Icon';
+$string['setting_icon_help'] = 'Das Moodle-Icon das dem Nutzer für diesen Trigger angezeigt wird, z.B. "core/tick". Die ganze Liste möglicher Icons kann in der Moodle-Dokumentation gefunden werden.';
+$string['setting_displayname'] = 'Aktionsname';
+$string['setting_displayname_help'] = 'Ein Name für die Triggeraktion.';
\ No newline at end of file
diff --git a/trigger/sitecourse/lang/de/lifecycletrigger_sitecourse.php b/trigger/sitecourse/lang/de/lifecycletrigger_sitecourse.php
new file mode 100644
index 0000000..2320783
--- /dev/null
+++ b/trigger/sitecourse/lang/de/lifecycletrigger_sitecourse.php
@@ -0,0 +1,28 @@
+<?php
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Lang strings for site course trigger
+ *
+ * @package tool_lifecycle_trigger
+ * @subpackage startdatedelay
+ * @copyright  2017 Tobias Reischmann WWU
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['pluginname'] = 'Site-Kurs ausschließen - Trigger';
+
+$string['delay'] = 'Dieser Trigger wird den Startseitenkurs ausschließen.';
diff --git a/trigger/specificdate/lang/de/lifecycletrigger_specificdate.php b/trigger/specificdate/lang/de/lifecycletrigger_specificdate.php
new file mode 100644
index 0000000..4fd88a1
--- /dev/null
+++ b/trigger/specificdate/lang/de/lifecycletrigger_specificdate.php
@@ -0,0 +1,31 @@
+<?php
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Lang strings for categories delay trigger
+ *
+ * @package tool_lifecycle_trigger
+ * @subpackage startdatedelay
+ * @copyright  2018 Tobias Reischmann WWU
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['pluginname'] = 'Bestimmtes Datum - Trigger';
+
+$string['dates'] = 'Daten, an denen der Workflow ausgeführt werden soll.';
+$string['dates_desc'] = 'Ein Datum pro Zeile in dem Format Tag.Monat';
+$string['timelastrun'] = 'Datum, an dem der Trigger zuletzt ausgeführt wurde.';
+$string['dates_not_parseable'] = 'Daten müssen in dem Format Tag.Monat sein';
diff --git a/trigger/startdatedelay/lang/de/lifecycletrigger_startdatedelay.php b/trigger/startdatedelay/lang/de/lifecycletrigger_startdatedelay.php
new file mode 100644
index 0000000..1e35553
--- /dev/null
+++ b/trigger/startdatedelay/lang/de/lifecycletrigger_startdatedelay.php
@@ -0,0 +1,29 @@
+<?php
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Lang strings for start date delay trigger
+ *
+ * @package tool_lifecycle_trigger
+ * @subpackage startdatedelay
+ * @copyright  2017 Tobias Reischmann WWU
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['pluginname'] = 'Startdatumsabstand - Trigger';
+
+$string['delay'] = 'Abstand vom Start eines Kurses, bis ein Prozess gestartet wird';
+$string['delay_help'] = 'Der Trigger wird ausgeführt, falls die Zeit, die seit dem Start des Kurses vergangen ist, größer ist, als der angegebene Zeitraum.';
-- 
GitLab