-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlang.php
More file actions
37 lines (35 loc) · 1.1 KB
/
lang.php
File metadata and controls
37 lines (35 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
$lang = [
"de" => [
"without_keyword" => "ohne Suchwort",
"without_date" => "ohne Datum",
"Upload" => "Upload",
"Delete" => "Löschen",
"Back" => "Zurück",
"Logout" => "Logout",
"Add_Keyword" => "Suchwort",
"Add_Hidden_Keyword" => "Name hinzufügen",
"Date" => "Datum",
"Date_From" => "Datum von",
"Date_To" => "Datum bis",
"upload_text" => "Schiebe Dateien hierhin oder Klick auf Hochladen",
"Hidden_Keyword" => "Name",
"Search" => "Suchen"
],
"en" => [
"without_keyword" => "without keyword",
"without_date" => "without date",
"Upload" => "Upload",
"Delete" => "Delete",
"Back" => "Back",
"Logout" => "Logout",
"Add_Keyword" => "Add Keyword",
"Add_Hidden_Keyword" => "Add Hidden Keyword",
"Date" => "Date",
"Date_From" => "Date From",
"Date_To" => "Date To",
"upload_text" => "Drop files here or click to upload",
"Hidden_Keyword" => "Hidden Keyword",
"Search" => "Search"
]
];