From b79328e273c94d724ed8fd577d38688cd4bc45a4 Mon Sep 17 00:00:00 2001
From: Moritz Strohm <strohm@data-quest.de>
Date: Mon, 22 Aug 2022 13:06:07 +0000
Subject: [PATCH] changed text strings, closes #1472

Closes #1472

Merge request studip/studip!918
---
 app/controllers/oer/mymaterial.php | 2 +-
 app/views/oer/market/details.php   | 2 +-
 app/views/oer/market/index.php     | 2 +-
 app/views/oer/market/search.php    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/controllers/oer/mymaterial.php b/app/controllers/oer/mymaterial.php
index 48bfe813617..b1015fd6974 100644
--- a/app/controllers/oer/mymaterial.php
+++ b/app/controllers/oer/mymaterial.php
@@ -278,7 +278,7 @@ class Oer_MymaterialController extends AuthenticatedController
     {
         $actions = new ActionsWidget();
         $actions->addLink(
-            _('Eigenes Lernmaterial hochladen'),
+            _('Neues Lernmaterial hochladen'),
             $this->editURL(),
             Icon::create('add'),
             ['data-dialog' => 'size=auto']
diff --git a/app/views/oer/market/details.php b/app/views/oer/market/details.php
index 5a3763755c1..cf73817ccfc 100644
--- a/app/views/oer/market/details.php
+++ b/app/views/oer/market/details.php
@@ -300,7 +300,7 @@ $actions = new ActionsWidget();
 $GLOBALS['perm']->have_perm(Config::get()->OER_PUBLIC_STATUS);
 if ($GLOBALS['perm']->have_perm("autor")) {
     $actions->addLink(
-        _('Eigenes Lernmaterial hochladen'),
+        _('Neues Lernmaterial hochladen'),
         $controller->url_for("oer/mymaterial/edit"),
         Icon::create("add", Icon::ROLE_CLICKABLE),
         ['data-dialog' => "1"]
diff --git a/app/views/oer/market/index.php b/app/views/oer/market/index.php
index eccab17b8fa..947eca39c77 100644
--- a/app/views/oer/market/index.php
+++ b/app/views/oer/market/index.php
@@ -53,7 +53,7 @@ if ($materialien !== null) {
 if ($GLOBALS['perm']->have_perm("autor")) {
     $actions = new ActionsWidget();
     $actions->addLink(
-        _('Eigenes Lernmaterial hochladen'),
+        _('Neues Lernmaterial hochladen'),
         $controller->url_for("oer/mymaterial/edit"),
         Icon::create("add", Icon::ROLE_CLICKABLE),
         ['data-dialog' => "1"]
diff --git a/app/views/oer/market/search.php b/app/views/oer/market/search.php
index b75021fe32e..ff04ff8e27d 100644
--- a/app/views/oer/market/search.php
+++ b/app/views/oer/market/search.php
@@ -10,7 +10,7 @@
 if ($GLOBALS['perm']->have_perm("autor")) {
     $actions = new ActionsWidget();
     $actions->addLink(
-        _('Eigenes Lernmaterial hochladen'),
+        _('Neues Lernmaterial hochladen'),
         $controller->url_for("oer/mymaterial/edit"),
         Icon::create("add", Icon::ROLE_CLICKABLE),
         ['data-dialog' => "1"]
-- 
GitLab