From c879889a7812a618e219a4868fb9d7f797a04c5e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kim=20H=C3=B6fer?= <kim@suma-ev.de>
Date: Fri, 12 Mar 2021 11:16:43 +0100
Subject: [PATCH] add icon alt text localization

---
 resources/lang/de/icons.php | 21 +++++++++++++++++++++
 resources/lang/en/icons.php | 19 +++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 resources/lang/de/icons.php
 create mode 100644 resources/lang/en/icons.php

diff --git a/resources/lang/de/icons.php b/resources/lang/de/icons.php
new file mode 100644
index 000000000..38a08233b
--- /dev/null
+++ b/resources/lang/de/icons.php
@@ -0,0 +1,21 @@
+<?php
+
+return [
+    'angle-double-right.alt' => 'Doppelter Pfeil nach rechts',
+    'icon-lupe.alt' => 'Suchen',
+    'chevron-down.alt' => '',
+    'menu.alt' => 'drei horizontalen Striche',
+    'cogs.alt' => 'Zahnräder',
+    'ellipsis.alt' => 'Fortsetzungspunkte vertikal',
+    'ellipsis-horizontal.alt' => 'Fortsetzungspunkte horizontal',
+    'home.alt' => 'Haus',
+    'trashcan.alt' => 'Mülltonne',
+    'x.alt' => 'X',
+    'floppy.alt' => 'floppy',
+    'Icon-settings' => 'Zahnrad'
+
+
+
+
+
+];
diff --git a/resources/lang/en/icons.php b/resources/lang/en/icons.php
new file mode 100644
index 000000000..247c52a2d
--- /dev/null
+++ b/resources/lang/en/icons.php
@@ -0,0 +1,19 @@
+<?php
+
+return [
+    'angle-double-right.alt' => 'Angle double right',
+    'icon-lupe.alt' => 'Search',
+    'chevron-down.alt' => '',
+    'menu.alt' => 'three horizontal Strokes',
+    'cogs.alt' => 'Cogs',
+    'ellipsis.alt' => 'vertical ellipsis',
+    'ellipsis-horizontal.alt' => 'horizontal ellipsis',
+    'home.alt' => 'home',
+    'trashcan.alt' => 'trashcan',
+    'x.alt' => 'x',
+    'floppy.alt' => 'floppy',
+    'Icon-settings' => 'Cog'
+
+
+
+];
-- 
GitLab