-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathstrings.php
More file actions
69 lines (61 loc) · 2.82 KB
/
strings.php
File metadata and controls
69 lines (61 loc) · 2.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
return [
'plugin_name' => 'Modrinth',
'minecraft_mods' => 'Minecraft Mods',
'minecraft_plugins' => 'Minecraft Plugins',
'settings' => [
'latest_minecraft_version' => 'Neueste Minecraft-Version',
'settings_saved' => 'Einstellungen gespeichert',
],
'page' => [
'open_folder' => ':folder-Ordner öffnen',
'minecraft_version' => 'Minecraft-Version',
'loader' => 'Loader',
'installed' => 'Installiert :type',
'unknown' => 'Unbekannt',
'view_all' => 'Alle',
'view_installed' => 'Installiert',
'mod_unavailable' => 'Dieser Mod/Plugin ist auf Modrinth nicht mehr verfügbar',
],
'table' => [
'columns' => [
'title' => 'Titel',
'author' => 'Autor',
'downloads' => 'Downloads',
'date_modified' => 'Geändert',
],
],
'version' => [
'type' => 'Typ',
'downloads' => 'Downloads',
'published' => 'Veröffentlicht',
'changelog' => 'Änderungsprotokoll',
'no_file_found' => 'Keine Datei gefunden',
],
'actions' => [
'install' => 'Installieren',
'installed' => 'Installiert',
'update' => 'Aktualisieren',
'uninstall' => 'Deinstallieren',
],
'modals' => [
'update_heading' => 'Mod/Plugin aktualisieren',
'update_description' => 'Dies ersetzt Version :old_version durch Version :new_version. Die alte Datei wird gelöscht.',
'uninstall_heading' => 'Mod/Plugin deinstallieren',
'uninstall_description' => 'Möchtest du :name wirklich deinstallieren? Dies wird die Datei dauerhaft von deinem Server löschen.',
],
'notifications' => [
'install_success' => 'Installation abgeschlossen',
'install_success_body' => ':name Version :version erfolgreich installiert',
'install_failed' => 'Installation fehlgeschlagen',
'install_failed_body' => 'Bei der Installation ist ein Fehler aufgetreten. Bitte versuche es erneut oder wende dich an den Support, wenn das Problem weiterhin besteht.',
'update_success' => 'Aktualisierung abgeschlossen',
'update_success_body' => 'Erfolgreich auf Version :version aktualisiert',
'update_failed' => 'Aktualisierung fehlgeschlagen',
'update_failed_body' => 'Bei der Aktualisierung ist ein Fehler aufgetreten. Bitte versuche es erneut oder wende dich an den Support, wenn das Problem weiterhin besteht.',
'uninstall_success' => 'Deinstallation abgeschlossen',
'uninstall_success_body' => ':name erfolgreich deinstalliert',
'uninstall_failed' => 'Deinstallation fehlgeschlagen',
'uninstall_failed_body' => 'Bei der Deinstallation ist ein Fehler aufgetreten. Bitte versuche es erneut oder wende dich an den Support, wenn das Problem weiterhin besteht.',
],
];