forked from brainfoolong/gpio-webinterface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTranslation.php
More file actions
50 lines (47 loc) · 1.66 KB
/
Copy pathTranslation.php
File metadata and controls
50 lines (47 loc) · 1.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace Nullix\Gpiowebinterface;
/**
* Class Translation
*
* @package Nullix\Gpiowebinterface
*/
class Translation
{
/**
* All translation values
*
* @var array
*/
public static $values
= [
"en" => [
"yes" => "Yes",
"no" => "No",
"enabled" => "Enabled",
"disabled" => "Disabled",
"save" => "Save",
"saved" => "Saved",
"delete" => "Delete",
"settings" => "Settings",
"settings.language.title" => "Language",
"settings.language.desc" => "Select the language for the web interface",
"settings.gpiopath.title" => "GPIO executable path",
"settings.gpiopath.desc" => "Point to the executable file, find the path with 'whereis gpio' in your console",
"settings.gpio.add" => "Add another GPIO"
],
"de" => [
"yes" => "Ja",
"no" => "Nein",
"enabled" => "Aktiviert",
"disabled" => "Deaktiviert",
"save" => "Speichern",
"saved" => "Gespeichert",
"delete" => "Löschen",
"settings.language.title" => "Sprache",
"settings.language.desc" => "Wähle eine Sprache für das Webinterface",
"settings.gpiopath.title" => "GPIO Executable Pfad",
"settings.gpiopath.desc" => "Zeige auf die Executable von gpio. Finde es via 'whereis gpio' in der Konsole",
"settings.gpio.add" => "Weiteren GPIO hinzufügen"
]
];
}