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
|
var translations = {
'de': {
'tr-load': 'Lade die OpenWrt Firmware für dein Gerät!',
'tr-title': 'OpenWrt Firmware Selector',
'tr-message': 'Bitte benutze die Eingabe um die passende Firmware zu finden!',
'tr-release-build': 'Release Build',
'tr-custom-build': 'Custom Build',
'tr-customize': 'Customize',
'tr-request-build': 'Request Build',
'tr-model': 'Model:',
'tr-target': 'Target',
'tr-version': 'Version:',
'tr-downloads': 'Downloads',
'tr-factory-help': 'Factory Abbilder werden über die Weboberfläche der originalen Firmware eingespielt.',
'tr-sysupgrade-help': 'Sysupgrade Abbilder werden für Geräte verwendet, die bereits OpenWrt laufen haben. Es ist möglich, existierende Einstellungen beizubehalten.',
'tr-kernel-help': 'Linux Kernel als separates Abbild.',
'tr-rootfs-help': 'Das Root Dateisystem als separates Abbild.',
'tr-sdcard-help': 'Image für SD Speicherkarten.',
'tr-tftp-help': 'TFTP Dateien können verwendet werden, um ein Gerät über die TFTP Method des Bootloader zu flashen.',
'tr-other-help': 'Sonstiger Imagetyp.'
},
'en': {
'tr-load': 'Download OpenWrt firmware for your device!',
'tr-title': 'OpenWrt Firmware Selector',
'tr-message': 'Please use the input below to download firmware for your device!',
'tr-release-build': 'Build',
'tr-custom-build': 'Custom Build',
'tr-customize': 'Customize',
'tr-request-build': 'Request Build',
'tr-model': 'Modell:',
'tr-target': 'Platform:',
'tr-version': 'Version:',
'tr-release-downloads': 'Downloads',
'tr-custom-downloads': 'Custom Downloads',
'tr-factory-help': 'Factory images are for flashing routers with OpenWrt for the first time. Usually via the web interface of the original firmware.',
'tr-sysupgrade-help': 'Sysupgrade images are for flashing routers that already run OpenWrt. The image can be applied using the web interface or the terminal.',
'tr-kernel-help': 'Linux kernel as a separate image.',
'tr-rootfs-help': 'Root file system as a separate image.',
'tr-sdcard-help': 'Image that is meant to be flashed onto a SD-Card.',
'tr-tftp-help': 'TFTP images are used to flash a device via the TFTP method of the bootloader.',
'tr-other-help': 'Other image type.'
}
};
// Complement translations based on other translations
//translations['en'] = Object.assign({}, translations['de'], translations['en']);
|