Skip to content
Snippets Groups Projects
Select Git revision
  • 8869ac298da11f1e20999b47ae07af5ad78bc79b
  • master default protected
  • hsh_v3.11
  • hsh_v3.10-r6
  • hsh_v3.10-r3
  • v3.9-r9
  • v3.10-r6
  • v3.9-r8
  • v3.10-r5
  • v3.9-r7
  • v3.10-r4
  • v3.9-r6
  • v3.10-r3
  • v3.9-r5
  • v3.10-r2
  • v3.9-r4
  • v3.10-r1
  • v3.9-r3
  • v3.9-r2
  • v3.9-r1
  • v3.8-r5
  • v3.8-r4
  • v3.8-r3
  • v3.8-r2
  • v3.8-r1
25 results

config.php

Blame
  • customfield_semester.php 2.16 KiB
    <?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/>.
    
    /**
     * Customfield semester field plugin strings
     *
     * @package   customfield_semester
     * @copyright 2020 Justus Dieckmann WWU
     * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
     */
    
    defined('MOODLE_INTERNAL') || die();
    
    $string['pluginname'] = 'Semesterfeld';
    $string['semesterindependent'] = 'Semesterunabhängig';
    $string['summersemester'] = 'SoSe {$a}';
    $string['wintersemester'] = 'WiSe {$a}';
    $string['specificsettings'] = 'Einstellungen für das Semesterfeld';
    $string['showmonthsintofuture'] = 'Ein Semester ist auswählbar, wenn es in weniger als X Monaten beginnt.';
    $string['defaultmonthsintofuture'] = 'Standard ist das Semester in X Monaten.';
    $string['beginofsemesters'] = 'Das Jahr, in dem die Liste der Semester anfängt.';
    $string['summertermstartmonth'] = 'Der Monat in dem das Sommersemester startet';
    $string['summertermstartmonth_desc'] = 'Mit dieser Einstellung definieren Sie in welchem Monat das Sommersemester startet.';
    $string['wintertermstartmonth'] = 'Der Monat in dem das Wintersemester startet';
    $string['wintertermstartmonth_desc'] = 'Mit dieser Einstellung definieren Sie in welchem Monat das Wintersemester startet.';
    $string['startmonthnote'] = 'Bitte beachten: Gültige Einstellungen sind Werte zwischen 1 und 12. Diese Einstellung geht davon aus, dass das Sommersemester im Jahresverlauf vor dem Wintersemester kommt. Falls Sie die Semester andersrum konfigurieren, wird das Kursfeld Ihre Einstellung stillschweigend ignorieren und die Standardwerte nutzen.';