Switched to new resource sync
This commit is contained in:
parent
6da8393612
commit
f16a29dafb
14 changed files with 65 additions and 3134 deletions
|
@ -1,15 +1,11 @@
|
|||
using Moonlight.App.Helpers;
|
||||
using Octokit;
|
||||
|
||||
namespace Moonlight.App.Services.Files;
|
||||
|
||||
public class StorageService
|
||||
{
|
||||
public StorageService()
|
||||
{
|
||||
EnsureCreated();
|
||||
}
|
||||
|
||||
public void EnsureCreated()
|
||||
public async Task EnsureCreated()
|
||||
{
|
||||
Directory.CreateDirectory(PathBuilder.Dir("storage", "uploads"));
|
||||
Directory.CreateDirectory(PathBuilder.Dir("storage", "configs"));
|
||||
|
@ -18,6 +14,9 @@ public class StorageService
|
|||
Directory.CreateDirectory(PathBuilder.Dir("storage", "logs"));
|
||||
Directory.CreateDirectory(PathBuilder.Dir("storage", "plugins"));
|
||||
|
||||
await UpdateResources();
|
||||
|
||||
return;
|
||||
if(IsEmpty(PathBuilder.Dir("storage", "resources")))
|
||||
{
|
||||
Logger.Info("Default resources not found. Copying default resources");
|
||||
|
@ -39,6 +38,62 @@ public class StorageService
|
|||
}
|
||||
}
|
||||
|
||||
private async Task UpdateResources()
|
||||
{
|
||||
Logger.Info("Checking resources");
|
||||
|
||||
var client = new GitHubClient(
|
||||
new ProductHeaderValue("Moonlight-Panel"));
|
||||
|
||||
string user = "Moonlight-Panel";
|
||||
string repo = "Resources";
|
||||
string branch = "main";
|
||||
string resourcesDir = PathBuilder.Dir("storage", "resources");
|
||||
|
||||
async Task CopyDirectory(string dirPath, string localDir)
|
||||
{
|
||||
IReadOnlyList<RepositoryContent> contents;
|
||||
|
||||
if(string.IsNullOrEmpty(dirPath))
|
||||
contents = await client.Repository.Content.GetAllContents(user, repo);
|
||||
else
|
||||
contents = await client.Repository.Content.GetAllContents(user, repo, dirPath);
|
||||
|
||||
foreach (var content in contents)
|
||||
{
|
||||
string localPath = Path.Combine(localDir, content.Name);
|
||||
|
||||
if (content.Type == ContentType.File)
|
||||
{
|
||||
if(content.Name.EndsWith(".gitattributes"))
|
||||
continue;
|
||||
|
||||
if(File.Exists(localPath) && !content.Name.EndsWith(".lang"))
|
||||
continue;
|
||||
|
||||
if (content.Name.EndsWith(".lang") && File.Exists(localPath) &&
|
||||
new FileInfo(localPath).Length == content.Size)
|
||||
{
|
||||
Logger.Info($"Skipped language file '{content.Name}'");
|
||||
continue;
|
||||
}
|
||||
|
||||
var fileContent = await client.Repository.Content.GetRawContent(user, repo, content.Path);
|
||||
Directory.CreateDirectory(localDir); // Ensure the directory exists
|
||||
await File.WriteAllBytesAsync(localPath, fileContent);
|
||||
|
||||
Logger.Debug($"Synced file '{content.Path}'");
|
||||
}
|
||||
else if (content.Type == ContentType.Dir)
|
||||
{
|
||||
await CopyDirectory(content.Path, localPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
await CopyDirectory("", resourcesDir);
|
||||
}
|
||||
|
||||
private bool IsEmpty(string path)
|
||||
{
|
||||
return !Directory.EnumerateFileSystemEntries(path).Any();
|
||||
|
|
|
@ -42,8 +42,10 @@ namespace Moonlight
|
|||
{
|
||||
public static async Task Main(string[] args)
|
||||
{
|
||||
// This will also copy all default config files
|
||||
var configService = new ConfigService(new StorageService());
|
||||
var storageService = new StorageService();
|
||||
await storageService.EnsureCreated();
|
||||
|
||||
var configService = new ConfigService(storageService);
|
||||
var shouldUseSentry = configService
|
||||
.Get()
|
||||
.Moonlight.Sentry.Enable;
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
[]
|
|
@ -1,778 +0,0 @@
|
|||
Open support;Support Öffnen
|
||||
About us;Über uns
|
||||
Imprint;Impressum
|
||||
Privacy;Privacy
|
||||
Login;Einloggen
|
||||
Register;Registrieren
|
||||
Insert brand name...;Firmenname eingeben...
|
||||
Save and continue;Speichern und Fortfahren
|
||||
Saving;Speichern
|
||||
Configure basics;Grundlagen einstellen
|
||||
Brand name;Firmenname
|
||||
test;test
|
||||
Insert first name...;Vornamen eingeben...
|
||||
Insert last name...;Nachnamen eingeben...
|
||||
Insert email address...;E-Mail-Adresse eingeben...
|
||||
Add;Hinzufügen
|
||||
Adding...;Wird hinzugefügt...
|
||||
Add admin accounts;Admin Konto hinzufügen
|
||||
First name;Vorname
|
||||
Last name;Nachname
|
||||
Email address;E-Mail-Adresse
|
||||
Enter password;Password eingeben
|
||||
Next;Weiter
|
||||
Back;Zurück
|
||||
Configure features;Features konfigurieren
|
||||
Support chat;Chat Hilfe
|
||||
Finish;Fertigstellen
|
||||
Finalize installation;Installation Fertigstellen
|
||||
Moonlight basic settings successfully configured;Moonlight's Standard-Einstellungen wurden konfiguriert
|
||||
Ooops. This page is crashed;Ups. Die Seite ist abgestürzt.
|
||||
This page is crashed. The error has been reported to the moonlight team. Meanwhile you can try reloading the page;Diese Seite ist abgestürzt. Bitte versuche, sie neu zu laden.
|
||||
Setup complete;Einrichtung abgeschlossen
|
||||
It looks like this moonlight instance is ready to go;Diese Moonlight Instanz ist bereit
|
||||
User successfully created;Benutzer erfolgreich erstellt
|
||||
Ooops. Your moonlight client is crashed;Ups. Dein Moonlight ist abgestürzt.
|
||||
This error has been reported to the moonlight team;Dieser Fehler wurde dem Moonlight-Team mitgeteilt
|
||||
Sign In;Anmelden
|
||||
Sign in to start with moonlight;Anmelden, um mit Moonlight zu starten
|
||||
Sign in with Discord;Mit Discord Anmelden
|
||||
Or with email;Oder mit E-Mail
|
||||
Forgot password?;Password vergessen?
|
||||
Sign-in;Anmelden
|
||||
Not registered yet?;Noch nicht Registriert?
|
||||
Sign up;Registrieren
|
||||
Authenticating;Authentifizieren...
|
||||
Sign in with Google;Mit Google Anmelden
|
||||
Working;Bitte warten...
|
||||
Error;Fehler
|
||||
Email and password combination not found;E-Mail und Password-Kombination wurden nicht gefunden
|
||||
Email;E-mail
|
||||
Password;Password
|
||||
Account settings;Benutzer-Einstellungen
|
||||
Logout;Abmelden
|
||||
Dashboard;Dashboard
|
||||
Order;Bestellen
|
||||
Website;Webseite
|
||||
Database;Datenbank
|
||||
Domain;Domain
|
||||
Servers;Server
|
||||
Websites;Webseiten
|
||||
Databases;Datenbanken
|
||||
Domains;Domains
|
||||
Changelog;Änderungen
|
||||
Firstname;Vorname
|
||||
Lastname;Nachname
|
||||
Repeat password;Password wiederholen
|
||||
Sign Up;Anmelden
|
||||
Sign up to start with moonlight;Registrieren um mit Moonlight zu starten
|
||||
Sign up with Discord;Mit Discord Registrieren
|
||||
Sign up with Google;Mit Google Registrieren
|
||||
Sign-up;Registrieren
|
||||
Already registered?;Schon Registriert?
|
||||
Sign in;Registrieren
|
||||
Create something new;Etwas neues erstellen
|
||||
Create a gameserver;Einen Gameserver erstellen
|
||||
A new gameserver in just a few minutes;Ein neuer Gameserver in wenigen Minuten
|
||||
Create a database;Eine Datenbank erstellen
|
||||
A quick way to store your data and manage it from all around the world;Eine schnelle Möglichkeit, um deine Daten von überall auf der Welt zu verwalten
|
||||
Manage your services;Deine Dienste verwalten
|
||||
Manage your gameservers;Gameserver verwalten
|
||||
Adjust your gameservers;Deine Gameserver anpassen
|
||||
Manage your databases;Datenbanken verwalten
|
||||
Insert, delete and update the data in your databases;Daten in die Datenbank einfügen, entfernen und ändern
|
||||
Create a website;Eine Webseite erstellen
|
||||
Make your own websites with a webspace;Mit einem Webspace eine Webseite erstellen
|
||||
Create a domain;Eine Domain erstellen
|
||||
Make your servvices accessible throught your own domain;Mache deine Dienste mit einer Domain erreichbar
|
||||
Manage your websites;Deine Webseiten verwalten
|
||||
Modify the content of your websites;Den Inhalt deiner Webseiten verwalten
|
||||
Manage your domains;Deine Domains verwalten
|
||||
Add, edit and delete dns records;DNS-Records hinzufügen, entfernen oder bearbeiten
|
||||
Admin;Admin
|
||||
System;System
|
||||
Overview;Übersicht
|
||||
Manager;Manager
|
||||
Cleanup;Cleanup
|
||||
Nodes;Nodes
|
||||
Images;Images
|
||||
aaPanel;aaPanel
|
||||
Users;Benutzer
|
||||
Support;Hilfe
|
||||
Statistics;Statistiken
|
||||
No nodes found. Start with adding a new node;Keine Nodes gefunden. Ein neues Node hinzufügen
|
||||
Nodename;Nodename
|
||||
FQDN;FQDN
|
||||
Create;Erstellen
|
||||
Creating;Wird erstellt...
|
||||
Http port;Http Port
|
||||
Sftp port;Sftp Port
|
||||
Moonlight daemon port;Moonlight Daemon Port
|
||||
SSL;SSL
|
||||
CPU Usage;CPU Auslastung
|
||||
In %;In %
|
||||
Memory;Arbeitsspeicher
|
||||
Used / Available memory;Benutzter / Verfügbarer Arbeitsspeicher
|
||||
Storage;Speicherplatz
|
||||
Available storage;Verfügbarer Speicherplatz
|
||||
Add a new node;Ein neues Node hinzufügen
|
||||
Delete;Löschen
|
||||
Deleting;Wird gelöscht...
|
||||
Edit;Bearbeiten
|
||||
Token Id;Token Id
|
||||
Token;Token
|
||||
Save;Speichern
|
||||
Setup;Aufsetzen
|
||||
Open a ssh connection to your node and enter;Eine SSH verbindung zum Node hinzufügen und öffnen
|
||||
and paste the config below. Then press STRG+O and STRG+X to save;und die Config darunter einfügern. Dann STRG+O und STRG+X um zu Speichern
|
||||
Before configuring this node, install the daemon;Installiere den Daemon bevor du dieses Node konfigurierst
|
||||
Delete this node?;Dieses Node löschen?
|
||||
Do you really want to delete this node;Möchtest du dieses Node wirklich löschen?
|
||||
Yes;Ja
|
||||
No;Nein
|
||||
Status;Status
|
||||
Adding;Hinzufügen
|
||||
Port;Port
|
||||
Id;Id
|
||||
Manage;Verwalten
|
||||
Create new server;Neuen Server erstellen
|
||||
No servers found;Keine Server gefunden
|
||||
Server name;Server Name
|
||||
Cpu cores;CPU Kerne
|
||||
Disk;Speicherplatz
|
||||
Image;Image
|
||||
Override startup;Startup überschreiben
|
||||
Docker image;Docker Image
|
||||
CPU Cores (100% = 1 Core);CPU Kerne (100% = 1 Kern)
|
||||
Server successfully created;Server erfolgreich erstellt
|
||||
Name;Name
|
||||
Cores;Kerne
|
||||
Owner;Besitzer
|
||||
Value;Wert
|
||||
An unknown error occured;Ein unbekannter Fehler ist aufgetreten
|
||||
No allocation found;Keine Zuweisung gefunden
|
||||
Identifier;Identifier
|
||||
UuidIdentifier;UuidIdentifier
|
||||
Override startup command;Startup Befehl überschreiben
|
||||
Loading;Wird geladen...
|
||||
Offline;Offline
|
||||
Connecting;Verbiden...
|
||||
Start;Start
|
||||
Restart;Neu Starten
|
||||
Stop;Stoppen
|
||||
Shared IP;Geteilte IP
|
||||
Server ID;Server ID
|
||||
Cpu;CPU
|
||||
Console;Console
|
||||
Files;Dateien
|
||||
Backups;Backups
|
||||
Network;Netzwerk
|
||||
Plugins;Plugins
|
||||
Settings;Einstellungen
|
||||
Enter command;Befehl eingeben
|
||||
Execute;Ausführen
|
||||
Checking disk space;Speicherplatz überprüfen
|
||||
Updating config files;Konfigurations-Dateien werden geupdatet
|
||||
Checking file permissions;Datei-Rechte werden überprüft
|
||||
Downloading server image;Server Image wird heruntergeladen
|
||||
Downloaded server image;Server Image wurde heruntergeladen
|
||||
Starting;Startet
|
||||
Online;Online
|
||||
Kill;Kill
|
||||
Stopping;Stoppt
|
||||
Search files and folders;Ordner und Dateien durchsuchen
|
||||
Launch WinSCP;WinSCP starten
|
||||
New folder;Neuer Ordner
|
||||
Upload;Hochladen
|
||||
File name;Datei-Name
|
||||
File size;Datei-Größe
|
||||
Last modified;Zuletz geändert
|
||||
Cancel;Abbrechen
|
||||
Canceling;Wird Abbgebrochen
|
||||
Running;Läuft
|
||||
Loading backups;Backups werden geladen
|
||||
Started backup creation;Backup wird erstellt
|
||||
Backup is going to be created;Backup wird erstellt werden
|
||||
Rename;Umbenennen
|
||||
Move;Bewegen
|
||||
Archive;Archivieren
|
||||
Unarchive;Archivieren rückgängig machen
|
||||
Download;Herunterladen
|
||||
Starting download;Herunterladen wird gestartet
|
||||
Backup successfully created;Backup wurde erfolgreich erstellt
|
||||
Restore;Wiederherstellen
|
||||
Copy url;URL Kopieren
|
||||
Backup deletion started;Backup löschung wird gestartet
|
||||
Backup successfully deleted;Backup wurde erfolgreich gelöscht
|
||||
Primary;Primärer
|
||||
This feature is currently not available;Diese Funktion ist zur Zeit nicht verfügbar
|
||||
Send;Senden
|
||||
Sending;Wird gesendet
|
||||
Welcome to the support chat. Ask your question here and we will help you;Willkommen in der Chat Hilfe. Stelle hier deine Frage und wir helfen dir.
|
||||
minutes ago; Minuten
|
||||
just now;gerade eben
|
||||
less than a minute ago;weniger als eine Minute
|
||||
1 hour ago;vor einer Stunde
|
||||
1 minute ago;vor einer Minute
|
||||
Failed;Fehlgeschlagen
|
||||
hours ago; Stunden
|
||||
Open tickets;Tickets öffnen
|
||||
Actions;Aktionen
|
||||
No support ticket is currently open;Kein Support Ticket ist zurzeit offen.
|
||||
User information;Benutzer-Information
|
||||
Close ticket;Ticket schließen
|
||||
Closing;Wird geschlossen...
|
||||
The support team has been notified. Please be patient;Das Support-Team wurde benachrichtigt. Habe etwas gedult
|
||||
The ticket is now closed. Type a message to open it again;Das Ticket wurde geschlossen. Schreibe etwas, um es wieder zu öffnen
|
||||
1 day ago;vor einem Tag
|
||||
is typing;schreibt...
|
||||
are typing;schreiben
|
||||
No domains available;Keine Domains verfügbar
|
||||
Shared domains;Geteilte Domains
|
||||
Shared domain;Geteilte Domain
|
||||
Shared domain successfully deleted;Geteilte Domain wurde erfolgreich gelöscht
|
||||
Shared domain successfully added;Geteilte Domain wurde erfolgreich hinzugefügt
|
||||
Domain name;Domain Name
|
||||
DNS records for;DNS-Record für
|
||||
Fetching dns records;Es wird nach DNS-Records gesucht
|
||||
No dns records found;Keine DNS-Records gefunden
|
||||
Content;Inhalt
|
||||
Priority;Priorität
|
||||
Ttl;Ttl
|
||||
Enable cloudflare proxy;Cloudflare-Proxy benutzen
|
||||
CF Proxy;CF Proxy
|
||||
days ago; Tage
|
||||
Cancle;Abbrechen
|
||||
An unexpected error occured;Ein unbekannter Fehler ist aufgetreten
|
||||
Testy;Testy
|
||||
Error from cloudflare api;Fehler von der Cloudflare-API
|
||||
Profile;Profil
|
||||
No subscription available;Kein Abo verfügbar
|
||||
Buy;Kaufen
|
||||
Redirecting;Weiterleiten
|
||||
Apply;Anwenden
|
||||
Applying code;Code Anwenden
|
||||
Invalid subscription code;Unbekannter Abo-Code
|
||||
Cancel Subscription;Abo beenden
|
||||
Active until;Aktiv bis
|
||||
We will send you a notification upon subscription expiration;Wenn dein Abo endet, senden wir dir eine E-Mail
|
||||
This token has been already used;Dieser Token wurde schon benutzt
|
||||
New login for;Neue Anmeldung für
|
||||
No records found for this day;Für diesen Tag wurden keine Records gefunden
|
||||
Change;Ändern
|
||||
Changing;Wird geändert
|
||||
Minecraft version;Minecraft Version
|
||||
Build version;Build Version
|
||||
Server installation is currently running;Der Server wird installiert.
|
||||
Selected;Ausgewählt
|
||||
Move deleted;Gelöschtest Bewegen
|
||||
Delete selected;Ausgewähltes löschen
|
||||
Log level;Log Level
|
||||
Log message;Log Message
|
||||
Time;Zeit
|
||||
Version;Version
|
||||
You are running moonlight version;Du benutzt die Moonlight-Version
|
||||
Operating system;Betriebssystem
|
||||
Moonlight is running on;Moonlight läuft auf
|
||||
Memory usage;Arbeitsspeicher-Auslastung
|
||||
Moonlight is using;Moonlight benutzt
|
||||
of memory;des Arbeitsspeichers
|
||||
Cpu usage;CPU Auslastung
|
||||
Refresh;Neu Laden
|
||||
Send a message to all users;Eine Nachricht an alle Benutzer senden
|
||||
IP;IP
|
||||
URL;URL
|
||||
Device;Gerät
|
||||
Change url;URL Ändern
|
||||
Message;Nachricht
|
||||
Enter message;Nachricht eingeben
|
||||
Enter the message to send;Eine Nachricht zum senden eingeben
|
||||
Confirm;Bestätigen
|
||||
Are you sure?;Bist du dir sicher
|
||||
Enter url;URL eingeben
|
||||
An unknown error occured while starting backup deletion;Ein unbekannter Fehler ist während der Backuplöschung aufgetreten
|
||||
Success;erfolgreich
|
||||
Backup URL successfully copied to your clipboard;Die Backup URL wurde in deine Zwischenablage kopiert
|
||||
Backup restore started;Backup wiederherstellung gestartet
|
||||
Backup successfully restored;Das Backup wurde erfolgreich wiedergeherstellt
|
||||
Register for;Registrieren für
|
||||
Core;Kern
|
||||
Logs;Logs
|
||||
AuditLog;AuditLog
|
||||
SecurityLog;SecurityLog
|
||||
ErrorLog;ErrorLog
|
||||
Resources;Resourcen
|
||||
WinSCP cannot be launched here;WinSCP kann nicht gestartet werden
|
||||
Create a new folder;Neuen Ordner erstellen
|
||||
Enter a name;Einen Namen eingeben
|
||||
File upload complete;Dateiupload abgeschlossen
|
||||
New server;Neuer Server
|
||||
Sessions;Sitzungen
|
||||
New user;Neuer Benutzer
|
||||
Created at;Erstellt am
|
||||
Mail template not found;E-Mail template wurde nicht gefunden
|
||||
Missing admin permissions. This attempt has been logged ;Fehlende Admin-Rechte. Dieser Versuch wurde aufgezeichnet
|
||||
Address;Addresse
|
||||
City;Stadt
|
||||
State;Land
|
||||
Country;Staat
|
||||
Totp;Totp
|
||||
Discord;Discord
|
||||
Subscription;Abonnement
|
||||
None;None
|
||||
No user with this id found;Kein Benutzer mit dieser ID gefunden
|
||||
Back to list;Zurück zur liste
|
||||
New domain;Neue domain
|
||||
Reset password;Password wiederherstellen
|
||||
Password reset;Password wiederherstellung
|
||||
Reset the password of your account;Password deines Accounts zurücksetzen
|
||||
Wrong here?;Falsch hier?
|
||||
A user with this email can not be found;Ein Benutzer mit dieser E-Mail konnte nicht gefunden werden
|
||||
Password reset successfull. Check your mail;Password wiederherstellung erfolgreich. Überprüfe deine Email
|
||||
Discord bot;Discord Bot
|
||||
New image;Neues Image
|
||||
Description;Beschreibung
|
||||
Uuid;UUID
|
||||
Enter tag name;Tag Namen eingeben
|
||||
Remove;Entfernen
|
||||
No tags found;Keine Tags gefunden
|
||||
Enter docker image name;Docker Image Namen eingeben
|
||||
Tags;Tags
|
||||
Docker images;Docker Images
|
||||
Default image;Standard Image
|
||||
Startup command;Startup Befehl
|
||||
Install container;Install container
|
||||
Install entry;Install entry
|
||||
Configuration files;Konfigurationsdateien
|
||||
Startup detection;Startuperkennung
|
||||
Stop command;Stopp-Befehl
|
||||
Successfully saved image;Das Image wurde erfolgreich gespeichert
|
||||
No docker images found;Keine Docker Images gefunden
|
||||
Key;Schlüssel
|
||||
Default value;Standardwert
|
||||
Allocations;Zuweisung
|
||||
No variables found;Keine Variablen gefunden
|
||||
Successfully added image;Das Image wurde erfolgreich hinzugefügt
|
||||
Password change for;Password ändern für
|
||||
of;von
|
||||
New node;Neues Node
|
||||
Fqdn;Fqdn
|
||||
Cores used;Kerne genutzt
|
||||
used;benutzt
|
||||
5.15.90.1-microsoft-standard-WSL2 - amd64;5.15.90.1-microsoft-standard-WSL2 - amd64
|
||||
Host system information;Host System Information
|
||||
0;0
|
||||
Docker containers running;Laufende Docker Container
|
||||
details;Details
|
||||
1;1
|
||||
2;2
|
||||
DDos;DDos
|
||||
No ddos attacks found;Keine DDoS gefunden
|
||||
Node;Node
|
||||
Date;Datum
|
||||
DDos attack started;DDos Attacke gestartet
|
||||
packets;Pakete
|
||||
DDos attack stopped;DDos Attacke gestoppt
|
||||
packets; Pakete
|
||||
Stop all;Alle Stoppen
|
||||
Kill all;Allen Killen
|
||||
Network in;Network in
|
||||
Network out;Network out
|
||||
Kill all servers;Alle Server Killen
|
||||
Do you really want to kill all running servers?;Möchtest du wirklich alle laufenden Server Killen?
|
||||
Change power state for;Power-State ändern für
|
||||
to;zu
|
||||
Stop all servers;Alle Server stoppen
|
||||
Do you really want to stop all running servers?;Möchtest du wirklich alle laufenden Server Killen?
|
||||
Manage ;Verwalten
|
||||
Manage user ;Benutzer verwalten
|
||||
Reloading;Neu Laden...
|
||||
Update;Aktualisieren
|
||||
Updating;Wird Aktualisiert...
|
||||
Successfully updated user;Benutzer erfolgreich aktualisiert
|
||||
Discord id;Discord ID
|
||||
Discord username;Discord Benutzername
|
||||
Discord discriminator;Discord Tag
|
||||
The Name field is required.;Der Name dieses Feldes ist erforderlich
|
||||
An error occured while logging you in;Ein Fehler ist aufgetreten, als du dich angemeldet hast
|
||||
You need to enter an email address;Du musst eine E-Mail-Adresse angeben
|
||||
You need to enter a password;Du musst ein Password eingeben
|
||||
You need to enter a password with minimum 8 characters in lenght;Du musst ein Password eingeben, das mindestens 8 Buchstaben lang ist
|
||||
Proccessing;Wird verarbeitet...
|
||||
The FirstName field is required.;Das Vorname-Feld ist erforderlich
|
||||
The LastName field is required.;Das Nachname-Feld ist erforderlich
|
||||
The Address field is required.;Das Address-Feld ist erforderlich
|
||||
The City field is required.;Das Stadt-Feld ist erforderlich
|
||||
The State field is required.;Das Staat-Feld ist erforderlich
|
||||
The Country field is required.;Das Land-Feld ist erforderlich
|
||||
Street and house number requered;Straße und Hausnummer erforderlich
|
||||
Max lenght reached;Maximale Länge erreicht
|
||||
Server;Server
|
||||
stopped;gestoppt
|
||||
Cleanups;Cleanups
|
||||
executed;ausgeführt
|
||||
Used clanup;Cleanup benutzt
|
||||
Enable;Aktivieren
|
||||
Disable;Deaktivieren
|
||||
Addons;Add-ons
|
||||
Javascript version;Javascript Version
|
||||
Javascript file;Javascript Datei
|
||||
Select javascript file to execute on start;Javascript Datei zum starten auswählen
|
||||
Submit;Einreichen
|
||||
Processing;Wird verarbeitet...
|
||||
Go up;Nach oben gehen
|
||||
Running cleanup;Cleanup läuft
|
||||
servers;Servers
|
||||
Select folder to move the file(s) to;Ordner zum Bewegen der Dateien auswählen
|
||||
Paper version;Paper Version
|
||||
Join2Start;Join2Start
|
||||
Server reset;Server zurücksetzen
|
||||
Reset;Zurücksetzen
|
||||
Resetting;Wird zurückgesetzt
|
||||
Are you sure you want to reset this server?;Möchtest du diesen Server wirklich zurücksetzen?
|
||||
Are you sure? This cannot be undone;Bist du dir sicher? Dies kann nicht rückgängig gemacht werden
|
||||
Resetting server;Server wird zurückgesetzt...
|
||||
Deleted file;Datei gelöscht
|
||||
Reinstalling server;Server wird reinstalliert
|
||||
Uploading files;Dateien wurden hochgeladen
|
||||
complete;vollständig
|
||||
Upload complete;Upload komplett
|
||||
Security;Sicherheit
|
||||
Subscriptions;Abonnements
|
||||
2fa Code;2FA Code
|
||||
Your account is secured with 2fa;Dein Account wird mit 2-FA gesichert
|
||||
anyone write a fancy text here?;hier einen schönen Text schreiben?
|
||||
Activate 2fa;2-FA Aktivieren
|
||||
2fa apps;2-FA Apps
|
||||
Use an app like ;Benutze eine App wie
|
||||
or;oder
|
||||
and scan the following QR Code;und scanne diesen QR-Code
|
||||
If you have trouble using the QR Code, select manual input in the app and enter your email and the following code:;Wenn du Probleme mit dem Scannen des Qr-Codes has, benutze doch die Manuelle Eingabe der App und gib deine E-Mail und den folgenden Code ein:
|
||||
Finish activation;Aktivierung fertig
|
||||
2fa Code requiered;2-FA Code erforderlich
|
||||
New password;Neues Password
|
||||
Secure your account;Deinen Account sichern
|
||||
2fa adds another layer of security to your account. You have to enter a 6 digit code in order to login.;2-FA fügt eine weitere Sicherheits-Schicht hinzu. Du musst einen 6-Ziffern-Code eingeben, um dich anzumelden.
|
||||
New subscription;Neues Abonnement
|
||||
You need to enter a name;Du musst einen Namen eingeben
|
||||
You need to enter a description;Du musst eine Beschreibung eigeben
|
||||
Add new limit;Ein neues Limit hinzufügen
|
||||
Create subscription;Abonnement erstellen
|
||||
Options;Optionen
|
||||
Amount;Betrag
|
||||
Do you really want to delete it?;Möchtes du es wirklich löschen?
|
||||
Loading your subscription;Dein Abonnement wird geladen
|
||||
Searching for deploy node;Suche Node zum Aufsetzen
|
||||
Searching for available images;Nach verfügbaren Images wird gesucht
|
||||
Server details;Server Details
|
||||
Configure your server;Deinen Server konfigurieren
|
||||
Default;Standard
|
||||
You reached the maximum amount of servers for every image of your subscription;Du hast die maximale Anzahl an Images von deinem Abonnement erreicht.
|
||||
Personal information;Prsönliche Informationen
|
||||
Enter code;Code eingeben
|
||||
Server rename;Server Umbenennen
|
||||
Create code;Code erstellen
|
||||
Save subscription;Abonnement speichern
|
||||
Enter your information;Informationen eingeben
|
||||
You need to enter your full name in order to use moonlight;Du musst deinen ganzen Namen eingeben, um Moonlight zu nutzen
|
||||
No node found;Kein Node gefunden
|
||||
No node found to deploy to found;Keine Node zum Aufsetzen gefunden
|
||||
Node offline;Node offline
|
||||
The node the server is running on is currently offline;Die Node, auf dem der Server grat läuft, ist offline
|
||||
Server not found;Server konnte nicht gefunden werden
|
||||
A server with that id cannot be found or you have no access for this server;Ein Server mit dieser ID konnte nicht gefunden werden
|
||||
Compress;Komprimieren
|
||||
Decompress;De-Komprimieren
|
||||
Moving;Bewegen...
|
||||
Compressing;Komprimieren...
|
||||
selected;Ausgewählt
|
||||
New website;Neue Webseite
|
||||
Plesk servers;Plesk Servers
|
||||
Base domain;Base Domain
|
||||
Plesk server;Plesk Server
|
||||
Ftp;FTP
|
||||
No SSL certificate found;Keine SSL-Zertifikate gefunden
|
||||
Ftp Host;FTP Host
|
||||
Ftp Port;FTP Port
|
||||
Ftp Username;FTP Username
|
||||
Ftp Password;FTP Password
|
||||
Use;Benutzen
|
||||
SSL Certificates;SSL Zertifikate
|
||||
SSL certificates;SSL Zertifikate
|
||||
Issue certificate;SSL-Zertifikat Ausgeben
|
||||
New plesk server;Neuer Plesk Server
|
||||
Api url;API URL
|
||||
Host system offline;Host System Offline
|
||||
The host system the website is running on is currently offline;Das Host System, auf dem diese Webseite läuft, ist offline
|
||||
No SSL certificates found;Keine SSL-Zertifikate gefunden
|
||||
No databases found for this website;Dieser Webseite konnten keine Datenbanken zugeordnet werden
|
||||
The name should be at least 8 characters long;Der Name sollte mindestens 8 Zeichen lang sein
|
||||
The name should only contain of lower case characters and numbers;Der Name sollte nur Kleinbuchstaben und Zahlen enthalten
|
||||
Error from plesk;Error von Plesk
|
||||
Host;Host
|
||||
Username;Benutzername
|
||||
SRV records cannot be updated thanks to the cloudflare api client. Please delete the record and create a new one;SRV Records können aufgrund von Cloudflare nicht geupdatet werden. Bitte lösche den Record und erstelle einen neuen.
|
||||
The User field is required.;Das Benutzer-Feld ist erforderlich
|
||||
You need to specify a owner;Du musst einen Server-Besitzer angeben
|
||||
You need to specify a image;You need to specify a image
|
||||
Api Url;API URL
|
||||
Api Key;Api Key
|
||||
Duration;Dauer
|
||||
Enter duration of subscription;Dauer des Abonnements eingeben
|
||||
Copied code to clipboard;Code in die Zwischenablage kopiert
|
||||
Invalid or expired subscription code;Ungültiger oder Abgelaufener Abo-Code
|
||||
Current subscription;Dein Abonnement
|
||||
You need to specify a server image;Du musst ein Image angeben
|
||||
CPU;CPU
|
||||
Hour;Stunde
|
||||
Day;Tag
|
||||
Month;Monat
|
||||
Year;Jahr
|
||||
All time;Für immer
|
||||
This function is not implemented;Diese Funktion wurde noch nicht hinzugefügt
|
||||
Domain details;Domain Details
|
||||
Configure your domain;Deine Domain konfigurieren
|
||||
You reached the maximum amount of domains in your subscription;Du hast das Maximum an Domains in deinem Abonnement erreicht
|
||||
You need to specify a shared domain;Du musst eine Shared-Domain angeben
|
||||
A domain with this name does already exist for this shared domain;Eine Domain mit diesem Name existiert bereits in dieser Shared-Domain
|
||||
The Email field is required.;Das E-Mail-Feld ist erforderlich
|
||||
The Password field is required.;Das Password-Feld ist erforderlich
|
||||
The ConfirmPassword field is required.;Das Password-Bestätigen-Feld ist erforderlich
|
||||
Passwords need to match;Die Passwörter müssen übereinstimmen
|
||||
Cleanup exception;Cleanup ausnahme
|
||||
No shared domain found;Keine Shared-Domain gefunden
|
||||
Searching for deploy plesk server;Suchen um den Plesk Server aufzusetzen
|
||||
No plesk server found;Kein Plesk Server gefunden
|
||||
No plesk server found to deploy to;Keinen Plesk Server zum Aufsetzen gefunden
|
||||
No node found to deploy to;Kein Node zum Aufsetzen
|
||||
Website details;Details der Webseite
|
||||
Configure your website;Konfiguriere deine Webseite
|
||||
The name cannot be longer that 32 characters;Der Name kann nicht länger als 32 Zeichen sein
|
||||
The name should only consist of lower case characters;Der Name sollte nur aus Kleinbuchstaben bestehen
|
||||
News;Neuigkeiten
|
||||
Title...;Titel...
|
||||
Enter text...;Text einfügen...
|
||||
Saving...;Wird gespeichert...
|
||||
Deleting...;Wird gelöscht...
|
||||
Delete post;Post löschen
|
||||
Do you really want to delete the post ";Post löschen? "
|
||||
You have no domains;Du hast keine Domains
|
||||
We were not able to find any domains associated with your account;Wir haben keine Domains, die mit deinem Account verbunden sind, gefunden
|
||||
You have no websites;Du hast keine Webseites
|
||||
We were not able to find any websites associated with your account;Wir haben keine Webseiten, die mit deinem Account verbunden sind, gefunden
|
||||
Guest;Gast
|
||||
You need a domain;Du brauchts eine Domain
|
||||
New post;Neuer Post
|
||||
New entry;Neuer Eintrag
|
||||
You have no servers;Du hast keine Server
|
||||
We were not able to find any servers associated with your account;Wir haben keine Server, die mit deinem Account verbunden sind, gefunden
|
||||
Error creating server on wings;Fehler bei der Erstellung des Servers auf Wings
|
||||
An unknown error occured while restoring a backup;Ein unbekannter Fehler ist während der Backup-Wiederherstellung aufgetreten
|
||||
Error from daemon;Fehler vom Daemon
|
||||
End;Ende
|
||||
Cloud panel;Cloud Panel
|
||||
Cloud panels;Cloud Panels
|
||||
New cloud panel;Neues cloud Panel
|
||||
You need to enter an api key;Du musst einen API-Key eigeben
|
||||
Webspaces;Webspaces
|
||||
New webspace;Neuer Webspace
|
||||
The uploaded file should not be bigger than 100MB;DIe Datei sollte nicht größer als 100MB sein
|
||||
An unknown error occured while uploading a file;Ein unbekannter Fehler ist während dem Datei-Hochladen aufgetreten
|
||||
No databases found for this webspace;Keine Datenbanken für diesen Webspace gefunden
|
||||
Sftp;SFTP
|
||||
Sftp Host;Sftp Host
|
||||
Sftp Port;Sftp Port
|
||||
Sftp Username;Sftp Benutzername
|
||||
Sftp Password;Sftp Password
|
||||
Lets Encrypt certificate successfully issued;Lets Encrypt Zertifikat erfolgreich erstellt
|
||||
Add shared domain;Shared Domain Hinzufügen
|
||||
Webspace;Webspace
|
||||
You reached the maximum amount of websites in your subscription;Du hast das Maximum an Webseiten in deinem Abonnement erreicht
|
||||
Searching for deploy web host;Suchen um den Webhost aufzusetzen
|
||||
Webspace details;Webspace Details
|
||||
Web host;Web host
|
||||
Configure your webspaces;Konfiguriere deine Webspaces
|
||||
You reached the maximum amount of webspaces in your subscription;Du hast das Maximum an Webspaces in deinem Abonnement erreicht
|
||||
Create a webspace;Einen Webspace erstellen
|
||||
Manage your webspaces;Deine Webspaces verwalten
|
||||
Modify the content of your webspaces;Den Inhalt deiner Webspaces verwalten
|
||||
Successfully updated password;Password erfolgreich geupdatet
|
||||
An unknown error occured while sending your message;Ein unbekannter Fehler ist während dem Senden von deiner Nachricht aufgetreten
|
||||
Open chats;Offene Chats
|
||||
No message sent yet;Keine Nachrichten gesendet
|
||||
Support ticket open;Support-Ticket geöffnet
|
||||
Support ticket closed;Support-Ticket geschlossen
|
||||
Your connection has been paused;Deine Verbindung wurde pausiert
|
||||
We paused your connection because of inactivity. The resume just focus the tab and wait a few seconds;Wir haben deine Verbindung aufgrund von inaktivität pausiert. Wechsle auf den Tab und warte ein paar Sekunden
|
||||
Failed to reconnect to the moonlight servers;Die Wiederverbindung zu den Moonlight-Servern ist gescheitert
|
||||
We were unable to reconnect to moonlight. Please refresh the page;Verbindung zu Moonlight fehlgeschlagen. Bitte aktualisiere die Seite
|
||||
Failed to reconnect to the moonlight servers. The connection has been rejected;Die Wiederverbindung zu den Moonlight-Servern ist fehlgeschlagen. Die Verbindung wurde abgelehnt
|
||||
We were unable to reconnect to moonlight. Most of the time this is caused by an update of moonlight. Please refresh the page;Verbindung zu Moonlight fehlgeschlagen. Meistens wird dies durch eine Aktualisierung von Moonlight verursacht. Bitte aktualisieren Sie die Seite
|
||||
Verifying token, loading user data;Token verifizieren, Benutzer-Daten laden
|
||||
Reload config;Konfiguration neu laden
|
||||
Successfully reloading configuration;Konfiguration wird neu geladen...
|
||||
Successfully reloaded configuration;Die Konfiguration wurde erfolgreich neu geladen
|
||||
Flows;Flows
|
||||
Add node;Node Hinzufügen
|
||||
Web system;Web System
|
||||
Servers with this image;Server mit diesem Image
|
||||
You need to specify a user;Du musst einen Benutzer angeben
|
||||
Import;Importieren
|
||||
Export;Exportieren
|
||||
Exporting;Wird exportiert
|
||||
Successfully imported image;Das Image wurde erfolgreich importiert.
|
||||
Forge version;Forge Version
|
||||
Fabric version;Fabric Version
|
||||
Fabric loader version;Fabric Loader Version
|
||||
Rate;Rate
|
||||
Hey, can i borrow you for a second?;Hey, kann ich dich mal kurz ausleihen?
|
||||
We want to improve our services and get a little bit of feedback how we are currently doing. Please leave us a rating;Da wir unsere Dienste ständig verbessern, möchten wir dich um Feedback bitten. Bitte Bewerte uns:
|
||||
Thanks for your rating;Danke für deine Bewertun
|
||||
It would be really kind of you rating us on a external platform as it will help our project very much;Es wäre wirklich nett, wenn du uns auf einer externen Plattform bewerten würdest, denn das würde unserem Projekt sehr helfen
|
||||
Close;Schließen
|
||||
Rating saved;Bewretung gespeichert
|
||||
Group;Gruppe
|
||||
Beta;Beta
|
||||
Create a new group;Eine neue Gruppe erstellen
|
||||
Download WinSCP;WinSCP herunterladen
|
||||
Show connection details;Verbindungsdetails anzeigen
|
||||
New;Neu
|
||||
New file;Neue Datei
|
||||
Connection details;Verbindungsdetails
|
||||
Malware;Malware
|
||||
Create a new file;Eine neue Datei erstellen
|
||||
Edit layout;Layout anpassen
|
||||
Uptime;Laufzeit
|
||||
Moonlight is online since;Moonlight ist online seit
|
||||
User;Benutzer
|
||||
Databases;Datenbanken
|
||||
Sitzungen;Sitzungen
|
||||
Active users;Aktive Nutzer
|
||||
Search for plugins;Nach Plugins suchen
|
||||
Search;Suchen
|
||||
Searching;Wird gesucht...
|
||||
Successfully installed gunshell;Gunshell wurde erfolgreich installiert
|
||||
Successfully installed fastasyncworldedit;Fastasyncworldedit wurde erfolgreich installiert
|
||||
Successfully installed minimotd;Minimotd wurde erfolgreich installiert
|
||||
Moonlight health;Moonlight Status
|
||||
Healthy;Healthy
|
||||
Successfully saved file;Die Datei wurde erfolgreich gespeichert
|
||||
Unsorted servers;Unsortierte Server
|
||||
Enter a new name;Einen neuen Namen eingeben
|
||||
Sign in with;Anmelden mit
|
||||
Make your services accessible through your own domain;Mache deine Dienste mit einer Domain verfügbar
|
||||
New group;Neue Gruppe
|
||||
Finish editing layout;Layout Fertigstellen
|
||||
Remove group;Gruppe löschen
|
||||
Hidden in edit mode;Im Edit-Mode ausgeblendet
|
||||
Enter your 2fa code here;Deinen 2FA Code hier eingeben
|
||||
Two factor authentication;Zwei Faktor Authentifikation
|
||||
Preferences;Preferenzen
|
||||
Streamer mode;Streamer Modus
|
||||
Scan the QR code and enter the code generated by the app you have scanned it in;Scanne den QR-Code mit der App
|
||||
Start scan;Scan Starten
|
||||
Results;Ergebnisse
|
||||
Scan in progress;Wird gescannt
|
||||
Debug;Debug
|
||||
Save changes;Änderungen speichern
|
||||
Delete domain;Domain löschen
|
||||
Python version;Python Version
|
||||
Python file;Python Datei
|
||||
Select python file to execute on start;Wähle die Python Datei aus, die beim Start ausgeführt wird
|
||||
You have no webspaces;Du hast keine Webspaces
|
||||
We were not able to find any webspaces associated with your account;Wir haben keine Webspaces gefunden, die mit deinem Account verbunden sind
|
||||
Backup download successfully started;Der Backup-Download wurde erfolgreich gestartet
|
||||
Error from cloud panel;Fehler vom Cloud Panel
|
||||
Error from wings;Fehler von Wings
|
||||
Remove link;Link entfernen
|
||||
Your account is linked to a discord account;Dein Account ist mit einem Discord Account verbunden
|
||||
You are able to use features like the discord bot of moonlight;Du kannst Features wie den Discord Bot von Moonlight benutzen
|
||||
The password should be at least 8 characters long;Dein Password sollte mindestens 8 Zeichen lang sein
|
||||
The name should only consist of lower case characters or numbers;Der Name sollte nur aus Kleinbuchstaben und Nummern bestehen
|
||||
The requested resource was not found;Die gewünschte Ressource wurde nicht gefunden
|
||||
We were not able to find the requested resource. This can have following reasons;Wir haben die gewünschte Ressource nicht gefunden. Das kann folgenden Grund haben
|
||||
The resource was deleted;Die Ressource wurde gelöscht
|
||||
You have to permission to access this resource;Du hast keine Rechte um auf diese Ressource zuzugreifen
|
||||
You may have entered invalid data;Du hast ungültige Daten angegeben
|
||||
A unknown bug occured;Ein unbekannter Bug ist aufgetreten
|
||||
An api was down and not proper handled;Eine API war offline und wurde nicht richtig behandelt
|
||||
A database with this name does already exist;Es gibt bereits eine Datenbank mit diesem Namen
|
||||
Successfully installed quickshop-hikari;Quickshop-Hikari wurde erfolgreich installiert
|
||||
You need to enter a valid domain;Du musst eine gültige Domain angeben
|
||||
2fa code;2FA Code
|
||||
This feature is not available for;Dieses Feature ist nicht verfügbar für
|
||||
Your account is currently not linked to discord;Dein Account ist nicht mit Discord verbunden
|
||||
To use features like the discord bot, link your moonlight account with your discord account;Um Features wie Moonlights Discord Bot nutzen zu können, verbinde deinen Account mit Discord
|
||||
Link account;Account verbinden
|
||||
Continue;Weiter
|
||||
Preparing;Wird vorbereitet
|
||||
Make sure you have installed one of the following apps on your smartphone and press continue;Stelle sicher dass du eine der folgenden Apps auf deinem Smartphone installiert hast und drücke auf Weiter
|
||||
The max lenght for the name is 32 characters;Die maximale Länge für den Namen beträgt 32 Zeichen
|
||||
Successfully installed chunky;Chunky wurde erfolgreich installiert
|
||||
Successfully installed huskhomes;Huskhomes wurde erfolgreich installiert
|
||||
Successfully installed simply-farming;Simple-Farming wurde erfolgreich installiert
|
||||
You need to specify a first name;Du musst einen Vornamen eingeben
|
||||
You need to specify a last name;Du musst einen Nachnamen angeben
|
||||
You need to specify a password;Du musst ein Password angeben
|
||||
Please solve the captcha;Bitte löse das Captcha
|
||||
The email is already in use;Diese Email wird bereits verwendet
|
||||
The dns records of your webspace do not point to the host system;Die DNS Records deines Webspaces zeigen nicht zum Hostsystem
|
||||
Scan complete;Scan komplett
|
||||
Currently scanning:;Zurzeit wird gescannt:
|
||||
Successfully installed dynmap;Dynmap wurde erfolgreich installiert
|
||||
Successfully installed squaremap;Squaremap wurde erfolgreich installiert
|
||||
No web host found;Kein Webhost gefunden
|
||||
No web host found to deploy to;Es wurde kein Webhost zum Aufsetzen gefunden
|
||||
Successfully installed sleeper;Sleeper wurde erfolgreich installiert
|
||||
You need to enter a domain;Du musst eine Domain angeben
|
||||
Enter a ip;Eine IP angeben
|
||||
Ip Bans;Ip Bans
|
||||
Ip;Ip
|
||||
Successfully installed simple-voice-chat;Simple-Voice-Chat wurde erfolgreich installiert
|
||||
Successfully installed smithing-table-fix;Smithing-Table-Fix wurde erfolgreich installiert
|
||||
Successfully installed justplayer-tpa;Justplayer-TPA wurde erfolgreich installiert
|
||||
Successfully installed ishop;iShop wurde erfolgreich installiert
|
||||
Successfully installed lifestealre;Lifestealre wurde erfolgreich installiert
|
||||
Successfully installed lifeswap;Lifeswap wurde erfolgreich installiert
|
||||
Java version;Java Version
|
||||
Jar file;JAR Datei
|
||||
Select jar to execute on start;Eine JAR Datei auswählen, die beim Start ausgeführt wird
|
||||
A website with this domain does already exist;Eine Webseite mit dieser Domain existiert bereits
|
||||
Successfully installed discordsrv;DiscordSrv wurde erfolgreich installiert
|
||||
Reinstall;Reinstallieren
|
||||
Reinstalling;Wird Reinstalliert
|
||||
Successfully installed freedomchat;Freedomchat wurde erfolgreich installiert
|
||||
Leave empty for the default background image;Für das Standard Hintergrundbild freilassen
|
||||
Background image url;URL zum Hintergrundbild
|
||||
of CPU used;von der CPU wird benutzt
|
||||
memory used;Speicher benutzt
|
||||
163;163
|
||||
172;172
|
||||
Sentry;Sentry
|
||||
Sentry is enabled;Sentry ist eingeschaltet
|
||||
Successfully installed mobis-homes;Mobis-Homes wurde erfolgreich installiert
|
||||
Your moonlight account is disabled;Dein Moonlight Account ist deaktiviert
|
||||
Your moonlight account is currently disabled. But dont worry your data is still saved;Dein Moonlight Account ist deaktiviert, aber keine Sorge, deine Daten sind noch gespeichert
|
||||
You need to specify a email address;Du musst eine Email Adresse angeben
|
||||
A user with that email does already exist;Ein Nutzer mit dieser Email Adresse existiert bereits
|
||||
Successfully installed buildmode;Buildmode wurde erfolgreich installiert
|
||||
Successfully installed plasmo-voice;Plasmo-Voice wurde erfolgreich installiert
|
||||
157;157
|
||||
174;174
|
||||
158;158
|
||||
Webspace not found;Webspace nicht gefunden
|
||||
A webspace with that id cannot be found or you have no access for this webspace;Ein Webspace mit dieser ID wurde nicht gefunden, oder du hast keinen Zugriff auf diesen Webspace
|
||||
No plugin download for your minecraft version found;Kein Plugin für deine Minecraft-Version gefunden
|
||||
Successfully installed gamemode-alias;Gamemode-Alias wurde erfolgreich installiert
|
||||
228;228
|
||||
User;Nutzer
|
||||
Send notification;Benachrichtigung senden
|
||||
Successfully saved changes;Änderungen erfolgreich gespeichert
|
||||
Archiving;Wird Archiviert
|
||||
Server is currently not archived;Dieser Server ist zurzeit nicht Archiviert
|
||||
Add allocation;Zuweisung hinzufügen
|
||||
231;231
|
||||
175;175
|
||||
Dotnet version;Dotnet Version
|
||||
Dll file;DLL Datei
|
||||
Select dll to execute on start;Wähle die DLL Datei aus, die beim Start ausgeführt wird
|
|
@ -1,567 +0,0 @@
|
|||
Open support;Open support
|
||||
About us;About us
|
||||
Imprint;Imprint
|
||||
Privacy;Privacy
|
||||
Login;Login
|
||||
Register;Register
|
||||
Insert brand name...;Insert brand name...
|
||||
Save and continue;Save and continue
|
||||
Saving;Saving
|
||||
Configure basics;Configure basics
|
||||
Brand name;Brand name
|
||||
test;test
|
||||
Insert first name...;Insert first name...
|
||||
Insert last name...;Insert last name...
|
||||
Insert email address...;Insert email address...
|
||||
Add;Add
|
||||
Adding...;Adding...
|
||||
Add admin accounts;Add admin accounts
|
||||
First name;First name
|
||||
Last name;Last name
|
||||
Email address;Email address
|
||||
Enter password;Enter password
|
||||
Next;Next
|
||||
Back;Back
|
||||
Configure features;Configure features
|
||||
Support chat;Support chat
|
||||
Finish;Finish
|
||||
Finalize installation;Finalize installation
|
||||
Moonlight basic settings successfully configured;Moonlight basic settings successfully configured
|
||||
Ooops. This page is crashed;Ooops. This page crashed
|
||||
This page is crashed. The error has been reported to the moonlight team. Meanwhile you can try reloading the page;This page crashed. The error has been reported to the moonlight team. Meanwhile you can try reloading the page
|
||||
Setup complete;Setup complete
|
||||
It looks like this moonlight instance is ready to go;It looks like this moonlight instance is ready to go
|
||||
User successfully created;User successfully created
|
||||
Ooops. Your moonlight client is crashed;Ooops. Your moonlight client crashed
|
||||
This error has been reported to the moonlight team;This error has been reported to the moonlight team
|
||||
Sign In;Sign In
|
||||
Sign in to start with moonlight;Sign in to start with moonlight
|
||||
Sign in with Discord;Sign in with Discord
|
||||
Or with email;Or with email
|
||||
Forgot password?;Forgot password?
|
||||
Sign-in;Sign-in
|
||||
Not registered yet?;Not registered yet?
|
||||
Sign up;Sign up
|
||||
Authenticating;Authenticating
|
||||
Sign in with Google;Sign in with Google
|
||||
Working;Working
|
||||
Error;Error
|
||||
Email and password combination not found;Email and password combination not found
|
||||
Email;Email
|
||||
Password;Password
|
||||
Account settings;Account settings
|
||||
Logout;Logout
|
||||
Dashboard;Dashboard
|
||||
Order;Order
|
||||
Website;Website
|
||||
Database;Database
|
||||
Domain;Domain
|
||||
Servers;Servers
|
||||
Websites;Websites
|
||||
Databases;Databases
|
||||
Domains;Domains
|
||||
Changelog;Changelog
|
||||
Firstname;First Name
|
||||
Lastname;Last Name
|
||||
Repeat password;Repeat password
|
||||
Sign Up;Sign Up
|
||||
Sign up to start with moonlight;Sign up to start with moonlight
|
||||
Sign up with Discord;Sign up with Discord
|
||||
Sign up with Google;Sign up with Google
|
||||
Sign-up;Sign-up
|
||||
Already registered?;Already registered?
|
||||
Sign in;Sign in
|
||||
Create something new;Create something new
|
||||
Create a gameserver;Create a gameserver
|
||||
A new gameserver in just a few minutes;A new gameserver in just a few minutes
|
||||
Create a database;Create a database
|
||||
A quick way to store your data and manage it from all around the world;A quick way to store your data and manage it from all around the world
|
||||
Manage your services;Manage your services
|
||||
Manage your gameservers;Manage your gameservers
|
||||
Adjust your gameservers;Adjust your gameservers
|
||||
Manage your databases;Manage your databases
|
||||
Insert, delete and update the data in your databases;Insert, delete and update the data in your databases
|
||||
Create a website;Create a website
|
||||
Make your own websites with a webspace;Make your own websites with a webspace
|
||||
Create a domain;Create a domain
|
||||
Make your servvices accessible throught your own domain;Make your services accessible throught your own domain
|
||||
Manage your websites;Manage your websites
|
||||
Modify the content of your websites;Modify the content of your websites
|
||||
Manage your domains;Manage your domains
|
||||
Add, edit and delete dns records;Add, edit and delete dns records
|
||||
Admin;Admin
|
||||
System;System
|
||||
Overview;Overview
|
||||
Manager;Manager
|
||||
Cleanup;Cleanup
|
||||
Nodes;Nodes
|
||||
Images;Images
|
||||
aaPanel;aaPanel
|
||||
Users;Users
|
||||
Support;Support
|
||||
Statistics;Statistics
|
||||
No nodes found. Start with adding a new node;No nodes found. Start with adding a new node
|
||||
Nodename;Nodename
|
||||
FQDN;FQDN
|
||||
Create;Create
|
||||
Creating;Creating
|
||||
Http port;Http port
|
||||
Sftp port;Sftp port
|
||||
Moonlight daemon port;Moonlight daemon port
|
||||
SSL;SSL
|
||||
CPU Usage;CPU Usage
|
||||
In %;In %
|
||||
Memory;Memory
|
||||
Used / Available memory;Used / Available memory
|
||||
Storage;Storage
|
||||
Available storage;Available storage
|
||||
Add a new node;Add a new node
|
||||
Delete;Delete
|
||||
Deleting;Deleting
|
||||
Edit;Edit
|
||||
Token Id;Token Id
|
||||
Token;Token
|
||||
Save;Save
|
||||
Setup;Setup
|
||||
Open a ssh connection to your node and enter;Open a ssh connection to your node and enter
|
||||
and paste the config below. Then press STRG+O and STRG+X to save;and paste the config below. Then press STRG+O and STRG+X to save
|
||||
Before configuring this node, install the daemon;Before configuring this node, install the daemon
|
||||
Delete this node?;Delete this node?
|
||||
Do you really want to delete this node;Do you really want to delete this node
|
||||
Yes;Yes
|
||||
No;No
|
||||
Status;Status
|
||||
Adding;Adding
|
||||
Port;Port
|
||||
Id;Id
|
||||
Manage;Manage
|
||||
Create new server;Create new server
|
||||
No servers found;No servers found
|
||||
Server name;Server name
|
||||
Cpu cores;Cpu cores
|
||||
Disk;Disk
|
||||
Image;Image
|
||||
Override startup;Override startup
|
||||
Docker image;Docker image
|
||||
CPU Cores (100% = 1 Core);CPU Cores (100% = 1 Core)
|
||||
Server successfully created;Server successfully created
|
||||
Name;Name
|
||||
Cores;Cores
|
||||
Owner;Owner
|
||||
Value;Value
|
||||
An unknown error occured;An unknown error occured
|
||||
No allocation found;No allocation found
|
||||
Identifier;Identifier
|
||||
UuidIdentifier;UuidIdentifier
|
||||
Override startup command;Override startup command
|
||||
Loading;Loading
|
||||
Offline;Offline
|
||||
Connecting;Connecting
|
||||
Start;Start
|
||||
Restart;Restart
|
||||
Stop;Stop
|
||||
Shared IP;Shared IP
|
||||
Server ID;Server ID
|
||||
Cpu;Cpu
|
||||
Console;Console
|
||||
Files;Files
|
||||
Backups;Backups
|
||||
Network;Network
|
||||
Plugins;Plugins
|
||||
Settings;Settings
|
||||
Enter command;Enter command
|
||||
Execute;Execute
|
||||
Checking disk space;Checking disk space
|
||||
Updating config files;Updating config files
|
||||
Checking file permissions;Checking file permissions
|
||||
Downloading server image;Downloading server image
|
||||
Downloaded server image;Downloaded server image
|
||||
Starting;Starting
|
||||
Online;Online
|
||||
Kill;Kill
|
||||
Stopping;Stopping
|
||||
Search files and folders;Search files and folders
|
||||
Launch WinSCP;Launch WinSCP
|
||||
New folder;New folder
|
||||
Upload;Upload
|
||||
File name;File name
|
||||
File size;File size
|
||||
Last modified;Last modified
|
||||
Cancel;Cancel
|
||||
Canceling;Canceling
|
||||
Running;Running
|
||||
Loading backups;Loading backups
|
||||
Started backup creation;Started backup creation
|
||||
Backup is going to be created;Backup is going to be created
|
||||
Rename;Rename
|
||||
Move;Move
|
||||
Archive;Archive
|
||||
Unarchive;Unarchive
|
||||
Download;Download
|
||||
Starting download;Starting download
|
||||
Backup successfully created;Backup successfully created
|
||||
Restore;Restore
|
||||
Copy url;Copy url
|
||||
Backup deletion started;Backup deletion started
|
||||
Backup successfully deleted;Backup successfully deleted
|
||||
Primary;Primary
|
||||
This feature is currently not available;This feature is currently not available
|
||||
Send;Send
|
||||
Sending;Sending
|
||||
Welcome to the support chat. Ask your question here and we will help you;Welcome to the support chat. Ask your question here and we will help you
|
||||
minutes ago; minutes ago
|
||||
just now;just now
|
||||
less than a minute ago;less than a minute ago
|
||||
1 hour ago;1 hour ago
|
||||
1 minute ago;1 minute ago
|
||||
Failed;Failed
|
||||
hours ago; hours ago
|
||||
Open tickets;Open tickets
|
||||
Actions;Actions
|
||||
No support ticket is currently open;No support ticket is currently open
|
||||
User information;User information
|
||||
Close ticket;Close ticket
|
||||
Closing;Closing
|
||||
The support team has been notified. Please be patient;The support team has been notified. Please be patient
|
||||
The ticket is now closed. Type a message to open it again;The ticket is now closed. Type a message to open it again
|
||||
1 day ago;1 day ago
|
||||
is typing;is typing
|
||||
are typing;are typing
|
||||
No domains available;No domains available
|
||||
Shared domains;Shared domains
|
||||
Shared domain;Shared domain
|
||||
Shared domain successfully deleted;Shared domain successfully deleted
|
||||
Shared domain successfully added;Shared domain successfully added
|
||||
Domain name;Domain name
|
||||
DNS records for;DNS records for
|
||||
Fetching dns records;Fetching dns records
|
||||
No dns records found;No dns records found
|
||||
Content;Content
|
||||
Priority;Priority
|
||||
Ttl;Ttl
|
||||
Enable cloudflare proxy;Enable cloudflare proxy
|
||||
CF Proxy;CF Proxy
|
||||
days ago; days ago
|
||||
Cancle;Cancle
|
||||
An unexpected error occured;An unexpected error occured
|
||||
Testy;Testy
|
||||
Error from cloudflare api;Error from cloudflare api
|
||||
Profile;Profile
|
||||
No subscription available;No subscription available
|
||||
Buy;Buy
|
||||
Redirecting;Redirecting
|
||||
Apply;Apply
|
||||
Applying code;Applying code
|
||||
Invalid subscription code;Invalid subscription code
|
||||
Cancel Subscription;Cancel Subscription
|
||||
Active until;Active until
|
||||
We will send you a notification upon subscription expiration;We will send you a notification upon subscription expiration
|
||||
This token has been already used;This token has been already used
|
||||
New login for;New login for
|
||||
No records found for this day;No records found for this day
|
||||
Change;Change
|
||||
Changing;Changing
|
||||
Minecraft version;Minecraft version
|
||||
Build version;Build version
|
||||
Server installation is currently running;Server installation is currently running
|
||||
Selected;Selected
|
||||
Move deleted;Move deleted
|
||||
Delete selected;Delete selected
|
||||
Log level;Log level
|
||||
Log message;Log message
|
||||
Time;Time
|
||||
Version;Version
|
||||
You are running moonlight version;You are running moonlight version
|
||||
Operating system;Operating system
|
||||
Moonlight is running on;Moonlight is running on
|
||||
Memory usage;Memory usage
|
||||
Moonlight is using;Moonlight is using
|
||||
of memory;of memory
|
||||
Cpu usage;Cpu usage
|
||||
Refresh;Refresh
|
||||
Send a message to all users;Send a message to all users
|
||||
IP;IP
|
||||
URL;URL
|
||||
Device;Device
|
||||
Change url;Change url
|
||||
Message;Message
|
||||
Enter message;Enter message
|
||||
Enter the message to send;Enter the message to send
|
||||
Confirm;Confirm
|
||||
Are you sure?;Are you sure?
|
||||
Enter url;Enter url
|
||||
An unknown error occured while starting backup deletion;An unknown error occured while starting backup deletion
|
||||
Success;Success
|
||||
Backup URL successfully copied to your clipboard;Backup URL successfully copied to your clipboard
|
||||
Backup restore started;Backup restore started
|
||||
Backup successfully restored;Backup successfully restored
|
||||
Register for;Register for
|
||||
Core;Core
|
||||
Logs;Logs
|
||||
AuditLog;AuditLog
|
||||
SecurityLog;SecurityLog
|
||||
ErrorLog;ErrorLog
|
||||
Resources;Resources
|
||||
WinSCP cannot be launched here;WinSCP cannot be launched here
|
||||
Create a new folder;Create a new folder
|
||||
Enter a name;Enter a name
|
||||
File upload complete;File upload complete
|
||||
New server;New server
|
||||
Sessions;Sessions
|
||||
New user;New user
|
||||
Created at;Created at
|
||||
Mail template not found;Mail template not found
|
||||
Missing admin permissions. This attempt has been logged ;)
|
||||
Address;Address
|
||||
City;City
|
||||
State;State
|
||||
Country;Country
|
||||
Totp;Totp
|
||||
Discord;Discord
|
||||
Subscription;Subscription
|
||||
None;None
|
||||
No user with this id found;No user with this id found
|
||||
Back to list;Back to list
|
||||
New domain;New domain
|
||||
Reset password;Reset password
|
||||
Password reset;Password reset
|
||||
Reset the password of your account;Reset the password of your account
|
||||
Wrong here?;Wrong here?
|
||||
A user with this email can not be found;A user with this email can not be found
|
||||
Passwort reset successfull. Check your mail;Passwort reset successfull. Check your mail
|
||||
Discord bot;Discord bot
|
||||
New image;New image
|
||||
Description;Description
|
||||
Uuid;Uuid
|
||||
Enter tag name;Enter tag name
|
||||
Remove;Remove
|
||||
No tags found;No tags found
|
||||
Enter docker image name;Enter docker image name
|
||||
Tags;Tags
|
||||
Docker images;Docker images
|
||||
Default image;Default image
|
||||
Startup command;Startup command
|
||||
Install container;Install container
|
||||
Install entry;Install entry
|
||||
Configuration files;Configuration files
|
||||
Startup detection;Startup detection
|
||||
Stop command;Stop command
|
||||
Successfully saved image;Successfully saved image
|
||||
No docker images found;No docker images found
|
||||
Key;Key
|
||||
Default value;Default value
|
||||
Allocations;Allocations
|
||||
No variables found;No variables found
|
||||
Successfully added image;Successfully added image
|
||||
Password change for;Password change for
|
||||
of;of
|
||||
New node;New node
|
||||
Fqdn;Fqdn
|
||||
Cores used;Cores used
|
||||
used;used
|
||||
5.15.90.1-microsoft-standard-WSL2 - amd64;5.15.90.1-microsoft-standard-WSL2 - amd64
|
||||
Host system information;Host system information
|
||||
0;0
|
||||
Docker containers running;Docker containers running
|
||||
details;details
|
||||
1;1
|
||||
2;2
|
||||
DDos;DDos
|
||||
No ddos attacks found;No ddos attacks found
|
||||
Node;Node
|
||||
Date;Date
|
||||
DDos attack started;DDos attack started
|
||||
packets;packets
|
||||
DDos attack stopped;DDos attack stopped
|
||||
packets; packets
|
||||
Stop all;Stop all
|
||||
Kill all;Kill all
|
||||
Network in;Network in
|
||||
Network out;Network out
|
||||
Kill all servers;Kill all servers
|
||||
Do you really want to kill all running servers?;Do you really want to kill all running servers?
|
||||
Change power state for;Change power state for
|
||||
to;to
|
||||
Stop all servers;Stop all servers
|
||||
Do you really want to stop all running servers?;Do you really want to stop all running servers?
|
||||
Manage ;Manage
|
||||
Manage user ;Manage user
|
||||
Reloading;Reloading
|
||||
Update;Update
|
||||
Updating;Updating
|
||||
Successfully updated user;Successfully updated user
|
||||
Discord id;Discord id
|
||||
Discord username;Discord username
|
||||
Discord discriminator;Discord discriminator
|
||||
The Name field is required.;The Name field is required.
|
||||
An error occured while logging you in;An error occured while logging you in
|
||||
You need to enter an email address;You need to enter an email address
|
||||
You need to enter a password;You need to enter a password
|
||||
You need to enter a password with minimum 8 characters in lenght;You need to enter a password with minimum 8 characters in length
|
||||
Proccessing;Proccessing
|
||||
The FirstName field is required.;The FirstName field is required.
|
||||
The LastName field is required.;The LastName field is required.
|
||||
The Address field is required.;The Address field is required.
|
||||
The City field is required.;The City field is required.
|
||||
The State field is required.;The State field is required.
|
||||
The Country field is required.;The Country field is required.
|
||||
Street and house number requered;Street and house number requered
|
||||
Max lenght reached;Max lenght reached
|
||||
Server;Server
|
||||
stopped;stopped
|
||||
Cleanups;Cleanups
|
||||
executed;executed
|
||||
Used clanup;Used clanup
|
||||
Enable;Enable
|
||||
Disabble;Disabble
|
||||
Disable;Disable
|
||||
Addons;Addons
|
||||
Javascript version;Javascript version
|
||||
Javascript file;Javascript file
|
||||
Select javascript file to execute on start;Select javascript file to execute on start
|
||||
Submit;Submit
|
||||
Processing;Processing
|
||||
Go up;Go up
|
||||
Running cleanup;Running cleanup
|
||||
servers;servers
|
||||
Select folder to move the file(s) to;Select folder to move the file(s) to
|
||||
Paper version;Paper version
|
||||
Join2Start;Join2Start
|
||||
Server reset;Server reset
|
||||
Reset;Reset
|
||||
Resetting;Resetting
|
||||
Are you sure you want to reset this server?;Are you sure you want to reset this server?
|
||||
Are you sure? This cannot be undone;Are you sure? This cannot be undone
|
||||
Resetting server;Resetting server
|
||||
Deleted file;Deleted file
|
||||
Reinstalling server;Reinstalling server
|
||||
Uploading files;Uploading files
|
||||
complete;complete
|
||||
Upload complete;Upload complete
|
||||
Security;Security
|
||||
Subscriptions;Subscriptions
|
||||
2fa Code;2fa Code
|
||||
Your account is secured with 2fa;Your account is secured with 2fa
|
||||
anyone write a fancy text here?;anyone write a fancy text here?
|
||||
Activate 2fa;Activate 2fa
|
||||
2fa apps;2fa apps
|
||||
Use an app like ;Use an app like
|
||||
or;or
|
||||
and scan the following QR Code;and scan the following QR Code
|
||||
If you have trouble using the QR Code, select manual input in the app and enter your email and the following code:;If you have trouble using the QR Code, select manual input in the app and enter your email and the following code:
|
||||
Finish activation;Finish activation
|
||||
2fa Code requiered;2fa Code requiered
|
||||
New password;New password
|
||||
Secure your account;Secure your account
|
||||
2fa adds another layer of security to your account. You have to enter a 6 digit code in order to login.;2fa adds another layer of security to your account. You have to enter a 6 digit code in order to login.
|
||||
New subscription;New subscription
|
||||
You need to enter a name;You need to enter a name
|
||||
You need to enter a description;You need to enter a description
|
||||
Add new limit;Add new limit
|
||||
Create subscription;Create subscription
|
||||
Options;Options
|
||||
Amount;Amount
|
||||
Do you really want to delete it?;Do you really want to delete it?
|
||||
Loading your subscription;Loading your subscription
|
||||
Searching for deploy node;Searching for deploy node
|
||||
Searching for available images;Searching for available images
|
||||
Server details;Server details
|
||||
Configure your server;Configure your server
|
||||
Default;Default
|
||||
You reached the maximum amount of servers for every image of your subscription;You reached the maximum amount of servers for every image of your subscription
|
||||
Personal information;Personal information
|
||||
Enter code;Enter code
|
||||
Server rename;Server rename
|
||||
Create code;Create code
|
||||
Save subscription;Save subscription
|
||||
Enter your information;Enter your information
|
||||
You need to enter your full name in order to use moonlight;You need to enter your full name in order to use moonlight
|
||||
No node found;No node found
|
||||
No node found to deploy to found;No node found to deploy to found
|
||||
Node offline;Node offline
|
||||
The node the server is running on is currently offline;The node the server is running on is currently offline
|
||||
Server not found;Server not found
|
||||
A server with that id cannot be found or you have no access for this server;A server with that id cannot be found or you don't have access for this server
|
||||
Compress;Compress
|
||||
Decompress;Decompress
|
||||
Moving;Moving
|
||||
Compressing;Compressing
|
||||
selected;selected
|
||||
New website;New website
|
||||
Plesk servers;Plesk servers
|
||||
Base domain;Base domain
|
||||
Plesk server;Plesk server
|
||||
Ftp;Ftp
|
||||
No SSL certificate found;No SSL certificate found
|
||||
Ftp Host;Ftp Host
|
||||
Ftp Port;Ftp Port
|
||||
Ftp Username;Ftp Username
|
||||
Ftp Password;Ftp Password
|
||||
Use;Use
|
||||
SSL Certificates;SSL Certificates
|
||||
SSL certificates;SSL certificates
|
||||
Issue certificate;Issue certificate
|
||||
New plesk server;New plesk server
|
||||
Api url;Api url
|
||||
Host system offline;Host system offline
|
||||
The host system the website is running on is currently offline;The host system the website is running on is currently offline
|
||||
No SSL certificates found;No SSL certificates found
|
||||
No databases found for this website;No databases found for this website
|
||||
The name should be at least 8 characters long;The name should be at least 8 characters long
|
||||
The name should only contain of lower case characters and numbers;The name should only contain of lower case characters and numbers
|
||||
Error from plesk;Error from plesk
|
||||
Host;Host
|
||||
Username;Username
|
||||
SRV records cannot be updated thanks to the cloudflare api client. Please delete the record and create a new one;SRV records cannot be updated thanks to the cloudflare api client. Please delete the record and create a new one
|
||||
The User field is required.;The User field is required.
|
||||
You need to specify a owner;You need to specify a owner
|
||||
You need to specify a image;You need to specify a image
|
||||
Api Url;Api Url
|
||||
Api Key;Api Key
|
||||
Duration;Duration
|
||||
Enter duration of subscription;Enter duration of subscription
|
||||
Copied code to clipboard;Copied code to clipboard
|
||||
Invalid or expired subscription code;Invalid or expired subscription code
|
||||
Current subscription;Current subscription
|
||||
You need to specify a server image;You need to specify a server image
|
||||
CPU;CPU
|
||||
Hour;Hour
|
||||
Day;Day
|
||||
Month;Month
|
||||
Year;Year
|
||||
All time;All time
|
||||
This function is not implemented;This function is not implemented
|
||||
Domain details;Domain details
|
||||
Configure your domain;Configure your domain
|
||||
You reached the maximum amount of domains in your subscription;You reached the maximum amount of domains in your subscription
|
||||
You need to specify a shared domain;You need to specify a shared domain
|
||||
A domain with this name does already exist for this shared domain;A domain with this name does already exist for this shared domain
|
||||
The Email field is required.;The Email field is required.
|
||||
The Password field is required.;The Password field is required.
|
||||
The ConfirmPassword field is required.;The ConfirmPassword field is required.
|
||||
Passwords need to match;Passwords need to match
|
||||
Cleanup exception;Cleanup exception
|
||||
No shared domain found;No shared domain found
|
||||
Searching for deploy plesk server;Searching for deploy plesk server
|
||||
No plesk server found;No plesk server found
|
||||
No plesk server found to deploy to;No plesk server found to deploy to
|
||||
No node found to deploy to;No node found to deploy to
|
||||
Website details;Website details
|
||||
Configure your website;Configure your website
|
||||
The name cannot be longer that 32 characters;The name cannot be longer that 32 characters
|
||||
The name should only consist of lower case characters;The name should only consist of lower case characters
|
||||
News;News
|
||||
Title...;Title...
|
||||
Enter text...;Enter text...
|
||||
Saving...;Saving...
|
||||
Deleting...;Deleting...
|
||||
Delete post;Delete post
|
||||
Do you really want to delete the post ";Do you really want to delete the post "
|
||||
You have no domains;You don't have domains
|
||||
We were not able to find any domains associated with your account;We were not able to find any domains associated with your account
|
||||
You have no websites;You have no websites
|
||||
We were not able to find any websites associated with your account;We were not able to find any websites associated with your account
|
||||
Guest;Guest
|
||||
You need a domain;You need a domain
|
||||
New post;New post
|
||||
New entry;New entry
|
|
@ -1,778 +0,0 @@
|
|||
Open support;Assistance ouverte
|
||||
About us;À propos de nous
|
||||
Imprint;Imprimer
|
||||
Privacy;Confidentialité
|
||||
Login;Se connecter
|
||||
Register;S'enregistrer
|
||||
Insert brand name...;Insérer le nom de la marque...
|
||||
Save and continue;Sauvegarder et continuer
|
||||
Saving;Sauvegarde
|
||||
Configure basics;Configurer les bases
|
||||
Brand name;Nom de l'entreprise
|
||||
test;test
|
||||
Insert first name...;Insérer le prénom...
|
||||
Insert last name...;Insérer le nom de famille...
|
||||
Insert email address...;Insérer l'adresse e-mail...
|
||||
Add;Ajouter
|
||||
Adding...;Ajout...
|
||||
Add admin accounts;Ajouter des comptes administrateur
|
||||
First name;Prénom
|
||||
Last name;Nom de famille
|
||||
Email address;Adresse e-mail
|
||||
Enter password;Entrer le mot de passe
|
||||
Next;Suivant
|
||||
Back;Retour
|
||||
Configure features;Configurer les fonctionnalités
|
||||
Support chat;Chat d'assistance
|
||||
Finish;Finition
|
||||
Finalize installation;Finaliser l'installation
|
||||
Moonlight basic settings successfully configured;Paramètres de base Moonlight configurés avec succès
|
||||
Ooops. This page is crashed;Oups. Cette page est plantée.
|
||||
This page is crashed. The error has been reported to the moonlight team. Meanwhile you can try reloading the page;Cette page est plantée. L'erreur a été signalée à l'équipe Moonlight. En attendant, vous pouvez essayer de recharger la page
|
||||
Setup complete;Configuration terminée
|
||||
It looks like this moonlight instance is ready to go;Cette instance Moonlight est prête
|
||||
User successfully created;Utilisateur créé avec succès
|
||||
Ooops. Your moonlight client is crashed;Oups. Votre client moonlight est planté
|
||||
This error has been reported to the moonlight team;Cette erreur a été signalée à l'équipe Moonlight
|
||||
Sign In;Se connecter
|
||||
Sign in to start with moonlight;Connectez-vous pour commencer avec Moonlight
|
||||
Sign in with Discord;Connectez-vous avec Discord
|
||||
Or with email;Ou avec e-mail
|
||||
Forgot password?;Mot de passe oublié?
|
||||
Sign-in;Se connecter
|
||||
Not registered yet?;Pas encore inscrit?
|
||||
Sign up;S'inscrire
|
||||
Authenticating;Authentification...
|
||||
Sign in with Google;Connectez-vous avec Google
|
||||
Working;En fonctionnement...
|
||||
Error;Erreur
|
||||
Email and password combination not found;Combinaison e-mail et mot de passe introuvable
|
||||
Email;E-mail
|
||||
Password;Mot de passe
|
||||
Account settings;Paramètres du compte
|
||||
Logout;Se déconnecter
|
||||
Dashboard;Tableau de bord
|
||||
Order;Commande
|
||||
Website;Site internet
|
||||
Database;Base de données
|
||||
Domain;Domaine
|
||||
Servers;Serveurs
|
||||
Websites;Sites Internet
|
||||
Databases;Bases de données
|
||||
Domains;Domaines
|
||||
Changelog;Journal des modifications
|
||||
Firstname;Prénom
|
||||
Lastname;Nom de famille
|
||||
Repeat password;Répéter le mot de passe
|
||||
Sign Up;S'inscrire
|
||||
Sign up to start with moonlight;Inscrivez-vous pour commencer avec moonlight
|
||||
Sign up with Discord;Inscrivez-vous avec Discord
|
||||
Sign up with Google;S'inscrire avec Google
|
||||
Sign-up;S'inscrire
|
||||
Already registered?;Déjà enregistré?
|
||||
Sign in;Se connecter
|
||||
Create something new;Créer quelque chose de nouveau
|
||||
Create a gameserver;Créer un serveur de jeu
|
||||
A new gameserver in just a few minutes;Un nouveau serveur de jeu en quelques minutes
|
||||
Create a database;Créer une base de données
|
||||
A quick way to store your data and manage it from all around the world;Un moyen rapide de stocker vos données et de les gérer partout dans le monde
|
||||
Manage your services;Gérez vos prestations
|
||||
Manage your gameservers;Gérez vos serveurs de jeux
|
||||
Adjust your gameservers;Ajustez vos serveurs de jeu
|
||||
Manage your databases;Gérez vos bases de données
|
||||
Insert, delete and update the data in your databases;Insérer, supprimer et mettre à jour les données dans vos bases de données
|
||||
Create a website;Créer un site internet
|
||||
Make your own websites with a webspace;Créez vos propres sites internet avec un espace Web
|
||||
Create a domain;Créer un domaine
|
||||
Make your servvices accessible throught your own domain;Rendez vos services accessibles via votre propre domaine
|
||||
Manage your websites;Gérer vos sites internet
|
||||
Modify the content of your websites;Modifier le contenu de vos sites internet
|
||||
Manage your domains;Gérez vos domaines
|
||||
Add, edit and delete dns records;Ajouter, modifier et supprimer des enregistrements DNS
|
||||
Admin;Admin
|
||||
System;Système
|
||||
Overview;Aperçu
|
||||
Manager;Manager
|
||||
Cleanup;Nettoyer
|
||||
Nodes;Nœuds
|
||||
Images;Images
|
||||
aaPanel;aaPanel
|
||||
Users;Utilisateurs
|
||||
Support;Assistance
|
||||
Statistics;Statistiques
|
||||
No nodes found. Start with adding a new node;Aucun nœud trouvé. Commencez par ajouter un nouveau nœud
|
||||
Nodename;Nom du nœud
|
||||
FQDN;Nom de domaine complet
|
||||
Create;Créer
|
||||
Creating;Création...
|
||||
Http port;Port HTTP
|
||||
Sftp port;Port Sftp
|
||||
Moonlight daemon port;Port du daemon Moonlight
|
||||
SSL;SSL
|
||||
CPU Usage;L'utilisation du processeur
|
||||
In %;En %
|
||||
Memory;Mémoire
|
||||
Used / Available memory;Mémoire utilisée / disponible
|
||||
Storage;Stockage
|
||||
Available storage;Stockage disponible
|
||||
Add a new node;Ajouter un nouveau nœud
|
||||
Delete;Supprimer
|
||||
Deleting;Suppression...
|
||||
Edit;Modifier
|
||||
Token Id;Token Id
|
||||
Token;Token
|
||||
Save;Sauvegarder
|
||||
Setup;Configuration
|
||||
Open a ssh connection to your node and enter;Ouvrez une connexion ssh à votre nœud et entrez
|
||||
and paste the config below. Then press STRG+O and STRG+X to save;et collez la configuration ci-dessous. Appuyez ensuite sur CTRL+O et CTRL+X pour enregistrer
|
||||
Before configuring this node, install the daemon;Avant de configurer ce nœud, installez le deamon
|
||||
Delete this node?;Supprimer ce nœud ?
|
||||
Do you really want to delete this node;Voulez-vous vraiment supprimer ce nœud?
|
||||
Yes;Oui
|
||||
No;Non
|
||||
Status;Statut
|
||||
Adding;Ajout
|
||||
Port;Port
|
||||
Id;Id
|
||||
Manage;Gérer
|
||||
Create new server;Créer un nouveau serveur
|
||||
No servers found;Aucun serveur trouvé
|
||||
Server name;Nom du serveur
|
||||
Cpu cores;Cœurs de processeur
|
||||
Disk;Stockage
|
||||
Image;Image
|
||||
Override startup;Ignorer le démarrage
|
||||
Docker image;Image Docker
|
||||
CPU Cores (100% = 1 Core);Cœurs de processeur (100% = 1 cœur)
|
||||
Server successfully created;Serveur créé avec succès
|
||||
Name;Nom
|
||||
Cores;Noyaux
|
||||
Owner;Propriétaire
|
||||
Value;Valeur
|
||||
An unknown error occured;Une erreur inconnue s'est produite
|
||||
No allocation found;Aucune attribution trouvée
|
||||
Identifier;Identifiant
|
||||
UuidIdentifier;Identifiant Uuid
|
||||
Override startup command;Remplacer la commande de démarrage
|
||||
Loading;Chargement...
|
||||
Offline;Hors ligne
|
||||
Connecting;Connexion...
|
||||
Start;Démarrer
|
||||
Restart;Redémarrer
|
||||
Stop;Arrêt
|
||||
Shared IP;IP partagée
|
||||
Server ID;Identifiant du serveur
|
||||
Cpu;CPU
|
||||
Console;Console
|
||||
Files;Fichiers
|
||||
Backups;Sauvegardes
|
||||
Network;Réseau
|
||||
Plugins;Plugins
|
||||
Settings;Paramètres
|
||||
Enter command;Entrez la commande
|
||||
Execute;Exécuter
|
||||
Checking disk space;Vérification de l'espace disque
|
||||
Updating config files;Mise à jour des fichiers de configuration
|
||||
Checking file permissions;Vérification des autorisations de fichiers
|
||||
Downloading server image;Téléchargement de l'image du serveur
|
||||
Downloaded server image;Image de serveur téléchargée
|
||||
Starting;Démarrage
|
||||
Online;En ligne
|
||||
Kill;Kill
|
||||
Stopping;Arrêt
|
||||
Search files and folders;Rechercher des fichiers et des dossiers
|
||||
Launch WinSCP;Lancer WinSCP
|
||||
New folder;Nouveau dossier
|
||||
Upload;Upload
|
||||
File name;Nom de fichier
|
||||
File size;Taille du fichier
|
||||
Last modified;Dernière modification
|
||||
Cancel;Annuler
|
||||
Canceling;Annulation
|
||||
Running;En cours d'exécution
|
||||
Loading backups;Chargement des sauvegardes
|
||||
Started backup creation;Création de sauvegarde démarrée
|
||||
Backup is going to be created;La sauvegarde va être crée
|
||||
Rename;Renommer
|
||||
Move;Déplacer
|
||||
Archive;Archiver
|
||||
Unarchive;Désarchiver
|
||||
Download;Télécharger
|
||||
Starting download;Démarrage du téléchargement
|
||||
Backup successfully created;Sauvegarde crée avec succès
|
||||
Restore;Restaurer
|
||||
Copy url;Copier le lien
|
||||
Backup deletion started;La suppression de la sauvegarde a commencé
|
||||
Backup successfully deleted;Sauvegarde supprimée avec succès
|
||||
Primary;Primaire
|
||||
This feature is currently not available;Cette fonctionnalité n'est pas disponible actuellement
|
||||
Send;Envoyer
|
||||
Sending;Envoi en cours
|
||||
Welcome to the support chat. Ask your question here and we will help you;Bienvenue sur le chat d'assistance. Posez votre question ici et nous vous aiderons
|
||||
minutes ago; minutes
|
||||
just now;à l'instant
|
||||
less than a minute ago;il y a moins d'une minute
|
||||
1 hour ago;Il ya 1 heure
|
||||
1 minute ago;il y a 1 minute
|
||||
Failed;Échec
|
||||
hours ago; Heures
|
||||
Open tickets;Tickets ouverts
|
||||
Actions;Actions
|
||||
No support ticket is currently open;Aucun ticket d'assistance n'est actuellement ouvert
|
||||
User information;Informations de l'utilisateur
|
||||
Close ticket;Fermer le ticket
|
||||
Closing;Fermeture...
|
||||
The support team has been notified. Please be patient;L'équipe d'assistance a été prévenue. S'il vous plaît soyez patient
|
||||
The ticket is now closed. Type a message to open it again;Le ticket est maintenant fermé. Tapez un message pour l'ouvrir à nouveau
|
||||
1 day ago;il y a 1 jour
|
||||
is typing;est en train d'écrire...
|
||||
are typing;sont en train de taper
|
||||
No domains available;Aucun domaine disponible
|
||||
Shared domains;Domaines partagés
|
||||
Shared domain;Domaine partagé
|
||||
Shared domain successfully deleted;Domaine partagé supprimé avec succès
|
||||
Shared domain successfully added;Domaine partagé ajouté avec succès
|
||||
Domain name;Nom de domaine
|
||||
DNS records for;enregistrements DNS pour
|
||||
Fetching dns records;Récupération des enregistrements DNS
|
||||
No dns records found;Aucun enregistrement DNS trouvé
|
||||
Content;Contenu
|
||||
Priority;Priorité
|
||||
Ttl;TTL
|
||||
Enable cloudflare proxy;Activer le proxy cloudflare
|
||||
CF Proxy;Proxy CF
|
||||
days ago; Jours
|
||||
Cancle;Annuler
|
||||
An unexpected error occured;Une erreur inattendue s'est produite
|
||||
Testy;Testy
|
||||
Error from cloudflare api;Erreur de l'API cloudflare
|
||||
Profile;Profil
|
||||
No subscription available;Aucun abonnement disponible
|
||||
Buy;Acheter
|
||||
Redirecting;Redirection
|
||||
Apply;Appliquer
|
||||
Applying code;Appliquer le code
|
||||
Invalid subscription code;Code d'abonnement invalide
|
||||
Cancel Subscription;Annuler l'abonnement
|
||||
Active until;Actif jusqu'à
|
||||
We will send you a notification upon subscription expiration;Nous vous enverrons une notification à l'expiration de l'abonnement
|
||||
This token has been already used;Ce jeton a déjà été utilisé
|
||||
New login for;Nouvelle connexion pour
|
||||
No records found for this day;Aucun enregistrement trouvé pour ce jour
|
||||
Change;Changer
|
||||
Changing;En changement
|
||||
Minecraft version;Version Minecraft
|
||||
Build version;Version
|
||||
Server installation is currently running;L'installation du serveur est en cours
|
||||
Selected;Choisi
|
||||
Move deleted;Déplacement supprimé
|
||||
Delete selected;Supprimer sélectionnée
|
||||
Log level;Niveau de journalisation
|
||||
Log message;Message de journal
|
||||
Time;Temps
|
||||
Version;Version
|
||||
You are running moonlight version;Vous utilisez la version Moonlight
|
||||
Operating system;Système opérateur
|
||||
Moonlight is running on;Moonlight est en cours d'exécution
|
||||
Memory usage;Utilisation de la mémoire
|
||||
Moonlight is using;Moonlight est utilisé
|
||||
of memory;de mémoire
|
||||
Cpu usage;L'utilisation du processeur
|
||||
Refresh;Rafraîchir
|
||||
Send a message to all users;Envoyer un message à tous les utilisateurs
|
||||
IP;IP
|
||||
URL;URL
|
||||
Device;Appareil
|
||||
Change url;Modifier l'URL
|
||||
Message;Message
|
||||
Enter message;Entrez le message
|
||||
Enter the message to send;Entrez le message à envoyer
|
||||
Confirm;Confirmer
|
||||
Are you sure?;Etes-vous sûr?
|
||||
Enter url;Entrer l'URL
|
||||
An unknown error occured while starting backup deletion;Une erreur inconnue s'est produite lors du démarrage de la suppression de la sauvegarde
|
||||
Success;Succès
|
||||
Backup URL successfully copied to your clipboard;URL de sauvegarde copiée avec succès dans votre presse-papiers
|
||||
Backup restore started;La restauration de la sauvegarde a commencé
|
||||
Backup successfully restored;Sauvegarde restaurée avec succès
|
||||
Register for;S'inscrire à
|
||||
Core;Cœur
|
||||
Logs;Logs
|
||||
AuditLog;AuditLog
|
||||
SecurityLog;SecurityLog
|
||||
ErrorLog;ErrorLog
|
||||
Resources;Ressources
|
||||
WinSCP cannot be launched here;WinSCP ne peut pas être lancé ici
|
||||
Create a new folder;Créer un nouveau dossier
|
||||
Enter a name;Entrez un nom
|
||||
File upload complete;Téléchargement du fichier terminé
|
||||
New server;Nouveau serveur
|
||||
Sessions;Session
|
||||
New user;Nouvel utilisateur
|
||||
Created at;Créé à
|
||||
Mail template not found;Modèle de courrier introuvable
|
||||
Missing admin permissions. This attempt has been logged ;Autorisations d'administrateur manquantes. Cette tentative a été enregistrée
|
||||
Address;Adresse
|
||||
City;Ville
|
||||
State;État
|
||||
Country;Pays
|
||||
Totp;Totp
|
||||
Discord;Discord
|
||||
Subscription;Abonnement
|
||||
None;Aucun
|
||||
No user with this id found;Aucun utilisateur avec cet identifiant n'a été trouvé
|
||||
Back to list;Retour à la liste
|
||||
New domain;Nouveau domaine
|
||||
Reset password;Réinitialiser le mot de passe
|
||||
Password reset;Réinitialisation du mot de passe
|
||||
Reset the password of your account;Réinitialiser le mot de passe de votre compte
|
||||
Wrong here?;Faux ici?
|
||||
A user with this email can not be found;Un utilisateur avec cet e-mail est introuvable
|
||||
Password reset successfull. Check your mail;Réinitialisation du mot de passe réussie. Vérifier votre e-mail
|
||||
Discord bot;Discord Bot
|
||||
New image;Nouvelle image
|
||||
Description;Description
|
||||
Uuid;UUID
|
||||
Enter tag name;Entrez le nom de la balise
|
||||
Remove;Retirer
|
||||
No tags found;Aucun tag trouvé
|
||||
Enter docker image name;Entrez le nom de l'image Docker
|
||||
Tags;Mots clés
|
||||
Docker images;Images Docker
|
||||
Default image;Image par défaut
|
||||
Startup command;Commande de démarrage
|
||||
Install container;Installer le conteneur
|
||||
Install entry;Installer l'entrée
|
||||
Configuration files;Fichiers de configuration
|
||||
Startup detection;Détection de démarrage
|
||||
Stop command;Commande d'arrêt
|
||||
Successfully saved image;Image enregistrée avec succès
|
||||
No docker images found;Aucune image docker trouvée
|
||||
Key;Clé
|
||||
Default value;Valeur par défaut
|
||||
Allocations;Allocations
|
||||
No variables found;Aucune variable trouvée
|
||||
Successfully added image;Image ajoutée avec succès
|
||||
Password change for;Changement de mot de passe pour
|
||||
of;de
|
||||
New node;Nouveau nœud
|
||||
Fqdn;Fqdn
|
||||
Cores used;Cœurs utilisés
|
||||
used;utilisé
|
||||
5.15.90.1-microsoft-standard-WSL2 - amd64;5.15.90.1-microsoft-standard-WSL2 - amd64
|
||||
Host system information;Informations sur le système hôte
|
||||
0;0
|
||||
Docker containers running;Conteneurs Docker en cours d'exécution
|
||||
details;Détails
|
||||
1;1
|
||||
2;2
|
||||
DDos;DDos
|
||||
No ddos attacks found;Aucune attaque ddos trouvée
|
||||
Node;Nœud
|
||||
Date;Date
|
||||
DDos attack started;L'attaque DDos a commencé
|
||||
packets;paquets
|
||||
DDos attack stopped;Attaque DDos stoppée
|
||||
packets; paquets
|
||||
Stop all;Arrête tout
|
||||
Kill all;Tuer tous
|
||||
Network in;Réseau dans
|
||||
Network out;Sortie réseau
|
||||
Kill all servers;Tuez tous les serveurs
|
||||
Do you really want to kill all running servers?;Voulez-vous vraiment tuer tous les serveurs en cours d'exécution?
|
||||
Change power state for;Changer l'état de l'alimentation pour
|
||||
to;à
|
||||
Stop all servers;Arrêtez tous les serveurs
|
||||
Do you really want to stop all running servers?;Voulez-vous vraiment arrêter tous les serveurs en cours d'exécution?
|
||||
Manage ;Gérer
|
||||
Manage user ;Gérer l'utilisateur
|
||||
Reloading;Rechargement...
|
||||
Update;Mise à jour
|
||||
Updating;Mise à jour...
|
||||
Successfully updated user;Utilisateur mis à jour avec succès
|
||||
Discord id;Discord ID
|
||||
Discord username;Nom d'utilisateur Discord
|
||||
Discord discriminator;Discord Tag
|
||||
The Name field is required.;Il est requis de compléter le champ correspondant au nom.
|
||||
An error occured while logging you in;Une erreur s'est produite lors de votre connexion
|
||||
You need to enter an email address;Vous devez saisir une adresse e-mail
|
||||
You need to enter a password;Vous devez entrer un mot de passe
|
||||
You need to enter a password with minimum 8 characters in lenght;Vous devez saisir un mot de passe d'au moins 8 caractères
|
||||
Proccessing;Traitement...
|
||||
The FirstName field is required.;Le champ Prénom est obligatoire.
|
||||
The LastName field is required.;Le champ Nom est obligatoire.
|
||||
The Address field is required.;Le champ Adresse est obligatoire.
|
||||
The City field is required.;Le champ Ville est obligatoire.
|
||||
The State field is required.;Le champ État est obligatoire.
|
||||
The Country field is required.;Le champ Pays est obligatoire.
|
||||
Street and house number requered;Rue et numéro de maison requis
|
||||
Max lenght reached;Longueur max atteinte
|
||||
Server;Serveur
|
||||
stopped;arrêté
|
||||
Cleanups;Nettoyages
|
||||
executed;réalisé
|
||||
Used clanup;nettoyage utilisé
|
||||
Enable;Activer
|
||||
Disable;Désactiver
|
||||
Addons;Compléments
|
||||
Javascript version;Version Javascript
|
||||
Javascript file;Fichier Javascript
|
||||
Select javascript file to execute on start;Sélectionnez le fichier javascript à exécuter au démarrage
|
||||
Submit;Soumettre
|
||||
Processing;Traitement...
|
||||
Go up;monter
|
||||
Running cleanup;Nettoyage en cours
|
||||
servers;Serveurs
|
||||
Select folder to move the file(s) to;Sélectionnez le dossier dans lequel déplacer le(s) fichier(s)
|
||||
Paper version;Version paper
|
||||
Join2Start;Join2Start
|
||||
Server reset;Réinitialisation du serveur
|
||||
Reset;Réinitialiser
|
||||
Resetting;Réinitialisation...
|
||||
Are you sure you want to reset this server?;Voulez-vous vraiment réinitialiser ce serveur?
|
||||
Are you sure? This cannot be undone;Etes-vous sûr? cela ne peut être annulé
|
||||
Resetting server;Réinitialisation du serveur...
|
||||
Deleted file;Fichier supprimé
|
||||
Reinstalling server;Réinstallation du serveur
|
||||
Uploading files;Téléchargement des fichiers
|
||||
complete;complet
|
||||
Upload complete;Téléchargement complet
|
||||
Security;Sécurité
|
||||
Subscriptions;Abonnements
|
||||
2fa Code;Code 2FA
|
||||
Your account is secured with 2fa;Votre compte est sécurisé avec 2fa
|
||||
anyone write a fancy text here?;quelqu'un écrit un texte de fantaisie ici?
|
||||
Activate 2fa;Activer 2FA
|
||||
2fa apps;applications 2FA
|
||||
Use an app like ;Utilisez une application comme
|
||||
or;ou
|
||||
and scan the following QR Code;et scannez le QR Code suivant
|
||||
If you have trouble using the QR Code, select manual input in the app and enter your email and the following code:;Si vous rencontrez des difficultés pour utiliser le QR Code, sélectionnez la saisie manuelle dans l'application et entrez votre email et le code suivant:
|
||||
Finish activation;Terminer l'activation
|
||||
2fa Code requiered;Code 2FA requis
|
||||
New password;Nouveau mot de passe
|
||||
Secure your account;Sécurisez votre compte
|
||||
2fa adds another layer of security to your account. You have to enter a 6 digit code in order to login.;2FA ajoute une autre couche de sécurité à votre compte. Vous devez entrer un code à 6 chiffres pour vous connecter.
|
||||
New subscription;Nouvel abonnement
|
||||
You need to enter a name;Vous devez entrer un nom
|
||||
You need to enter a description;Vous devez entrer une description
|
||||
Add new limit;Ajouter une nouvelle limite
|
||||
Create subscription;Créer un abonnement
|
||||
Options;Options
|
||||
Amount;Montant
|
||||
Do you really want to delete it?;Voulez-vous vraiment le supprimer?
|
||||
Loading your subscription;Chargement de votre abonnement
|
||||
Searching for deploy node;Recherche d'un nœud de déploiement
|
||||
Searching for available images;Recherche d'images disponibles
|
||||
Server details;Détails du serveur
|
||||
Configure your server;Configurez votre serveur
|
||||
Default;Défaut
|
||||
You reached the maximum amount of servers for every image of your subscription;Vous avez atteint le nombre maximum de serveurs pour chaque image de votre abonnement.
|
||||
Personal information;Informations personnelles
|
||||
Enter code;Entrez le code
|
||||
Server rename;Renommer le serveur
|
||||
Create code;créer un code
|
||||
Save subscription;Enregistrer l'abonnement
|
||||
Enter your information;Entrez vos informations
|
||||
You need to enter your full name in order to use moonlight;Vous devez entrer votre nom complet pour utiliser moonlight
|
||||
No node found;Aucun nœud trouvé
|
||||
No node found to deploy to found;Aucun noeud trouvé à monter
|
||||
Node offline;Nœud hors ligne
|
||||
The node the server is running on is currently offline;Le nœud sur lequel le serveur s'exécute est actuellement hors ligne
|
||||
Server not found;serveur introuvable
|
||||
A server with that id cannot be found or you have no access for this server;Un serveur avec cet identifiant est introuvable ou vous n'avez pas accès à ce serveur
|
||||
Compress;Compresser
|
||||
Decompress;Décompresser
|
||||
Moving;Déplacement...
|
||||
Compressing;Compression...
|
||||
selected;choisi
|
||||
New website;Nouveau site internet
|
||||
Plesk servers;Serveurs Plesk
|
||||
Base domain;Domaine de base
|
||||
Plesk server;Serveur Plesk
|
||||
Ftp;FTP
|
||||
No SSL certificate found;Aucun certificat SSL trouvé
|
||||
Ftp Host;Hôte FTP
|
||||
Ftp Port;Port FTP
|
||||
Ftp Username;Nom d'utilisateur FTP
|
||||
Ftp Password;Mot de passe FTP
|
||||
Use;Utiliser
|
||||
SSL Certificates;Certificats SSL
|
||||
SSL certificates;Certificats SSL
|
||||
Issue certificate;Délivrer un certificat
|
||||
New plesk server;Nouveau serveur plesk
|
||||
Api url;URL de l'API
|
||||
Host system offline;Système hôte hors ligne
|
||||
The host system the website is running on is currently offline;Le système hôte sur lequel le site internet s'exécute est actuellement hors ligne
|
||||
No SSL certificates found;Aucun certificat SSL trouvé
|
||||
No databases found for this website;Aucune base de données trouvée pour ce site internet
|
||||
The name should be at least 8 characters long;Le nom doit comporter au moins 8 caractères
|
||||
The name should only contain of lower case characters and numbers;Le nom ne doit contenir que des caractères minuscules et des chiffres
|
||||
Error from plesk;Erreur de plesk
|
||||
Host;Hôte
|
||||
Username;Nom d'utilisateur
|
||||
SRV records cannot be updated thanks to the cloudflare api client. Please delete the record and create a new one;Les enregistrements SRV ne peuvent pas être mis à jour grâce au client api cloudflare. Veuillez supprimer l'enregistrement et en créer un nouveau
|
||||
The User field is required.;Le champ Utilisateur est obligatoire.
|
||||
You need to specify a owner;Vous devez spécifier un propriétaire
|
||||
You need to specify a image;Vous devez spécifier une image
|
||||
Api Url;URL de l'API
|
||||
Api Key;Clé API
|
||||
Duration;Durée
|
||||
Enter duration of subscription;Saisir la durée de l'abonnement
|
||||
Copied code to clipboard;Code copié dans le presse-papiers
|
||||
Invalid or expired subscription code;Code d'abonnement invalide ou expiré
|
||||
Current subscription;Abonnement actuel
|
||||
You need to specify a server image;Vous devez spécifier une image de serveur
|
||||
CPU;CPU
|
||||
Hour;Heure
|
||||
Day;Jour
|
||||
Month;Mois
|
||||
Year;Année
|
||||
All time;Tout le temps
|
||||
This function is not implemented;Cette fonction n'est pas implémentée
|
||||
Domain details;Détails du domaine
|
||||
Configure your domain;Configurez votre domaine
|
||||
You reached the maximum amount of domains in your subscription;Vous avez atteint le nombre maximum de domaines dans votre abonnement
|
||||
You need to specify a shared domain;Vous devez spécifier un domaine partagé
|
||||
A domain with this name does already exist for this shared domain;Un domaine portant ce nom existe déjà pour ce domaine partagé
|
||||
The Email field is required.;Le champ E-mail est obligatoire.
|
||||
The Password field is required.;Le champ Mot de passe est obligatoire.
|
||||
The ConfirmPassword field is required.;Le champ Confirmer le mot de passe est obligatoire.
|
||||
Passwords need to match;Les mots de passe doivent correspondre
|
||||
Cleanup exception;Exception de nettoyage
|
||||
No shared domain found;Aucun domaine partagé trouvé
|
||||
Searching for deploy plesk server;Recherche de déploiement du serveur Plesk
|
||||
No plesk server found;Aucun serveur plesk trouvé
|
||||
No plesk server found to deploy to;Aucun serveur plesk trouvé pour le déploiement
|
||||
No node found to deploy to;Aucun nœud trouvé pour le déploiement
|
||||
Website details;Détails du site internet
|
||||
Configure your website;Configurez votre site internet
|
||||
The name cannot be longer that 32 characters;Le nom ne peut pas dépasser 32 caractères
|
||||
The name should only consist of lower case characters;Le nom ne doit être composé que de caractères minuscules
|
||||
News;Nouvelles
|
||||
Title...;Titre...
|
||||
Enter text...;Entrez du texte...
|
||||
Saving...;Sauvegarde...
|
||||
Deleting...;Suppression...
|
||||
Delete post;Supprimer le message
|
||||
Do you really want to delete the post ";Voulez-vous vraiment supprimer le message "
|
||||
You have no domains;Vous n'avez aucun domaine
|
||||
We were not able to find any domains associated with your account;Nous n'avons trouvé aucun domaine associé à votre compte
|
||||
You have no websites;Vous n'avez pas de sites internet
|
||||
We were not able to find any websites associated with your account;Nous n'avons trouvé aucun site internet associé à votre compte
|
||||
Guest;Invité
|
||||
You need a domain;Vous avez besoin d'un domaine
|
||||
New post;Nouveau poste
|
||||
New entry;Nouvelle entrée
|
||||
You have no servers;Vous n'avez pas de serveurs
|
||||
We were not able to find any servers associated with your account;Nous n'avons trouvé aucun serveur associé à votre compte
|
||||
Error creating server on wings;Erreur lors de la création du serveur sur les ailes
|
||||
An unknown error occured while restoring a backup;Une erreur inconnue s'est produite lors de la restauration d'une sauvegarde
|
||||
Error from daemon;Erreur du daemon
|
||||
End;Fin
|
||||
Cloud panel;Cloud panel
|
||||
Cloud panels;Cloud panels
|
||||
New cloud panel;Nouveau Panel cloud
|
||||
You need to enter an api key;Vous devez entrer une clé API
|
||||
Webspaces;Espaces webs
|
||||
New webspace;Nouvel espace web
|
||||
The uploaded file should not be bigger than 100MB;Le fichier téléchargé ne doit pas dépasser 100 Mo
|
||||
An unknown error occured while uploading a file;Une erreur inconnue s'est produite lors du téléchargement d'un fichier
|
||||
No databases found for this webspace;Aucune base de données trouvée pour cet espace Web
|
||||
Sftp;SFTP
|
||||
Sftp Host;Hôte Sftp
|
||||
Sftp Port;Port Sftp
|
||||
Sftp Username;Nom d'utilisateur Sftp
|
||||
Sftp Password;Mot de passe Sftp
|
||||
Lets Encrypt certificate successfully issued;Certificat Lets Encrypt émis avec succès
|
||||
Add shared domain;Ajouter un domaine partagé
|
||||
Webspace;Espace web
|
||||
You reached the maximum amount of websites in your subscription;Vous avez atteint le nombre maximum de sites internet dans votre abonnement
|
||||
Searching for deploy web host;Recherche d'hébergeur web déployé
|
||||
Webspace details;Détails de l'espace Web
|
||||
Web host;Hébergeur
|
||||
Configure your webspaces;Configurez vos espaces web
|
||||
You reached the maximum amount of webspaces in your subscription;Vous avez atteint le nombre maximum d'espaces Web dans votre abonnement
|
||||
Create a webspace;Créer un espace Web
|
||||
Manage your webspaces;Gérez vos espaces web
|
||||
Modify the content of your webspaces;Modifier le contenu de vos espaces web
|
||||
Successfully updated password;Mot de passe mis à jour avec succès
|
||||
An unknown error occured while sending your message;Une erreur inconnue s'est produite lors de l'envoi de votre message
|
||||
Open chats;Ouvrir les messages
|
||||
No message sent yet;Aucun message envoyé pour le moment
|
||||
Support ticket open;Ticket d'assistance ouvert
|
||||
Support ticket closed;Ticket d'assistance fermé
|
||||
Your connection has been paused;Votre connexion a été interrompue
|
||||
We paused your connection because of inactivity. The resume just focus the tab and wait a few seconds;Nous avons suspendu votre connexion pour cause d'inactivité. Passez à l'onglet et attendez quelques secondes
|
||||
Failed to reconnect to the moonlight servers;Échec de la reconnexion aux serveurs Moonlight
|
||||
We were unable to reconnect to moonlight. Please refresh the page;Nous n'avons pas pu nous reconnecter à moonlight. Veuillez actualiser la page
|
||||
Failed to reconnect to the moonlight servers. The connection has been rejected;Échec de la reconnexion aux serveurs Moonlight. La connexion a été rejetée
|
||||
We were unable to reconnect to moonlight. Most of the time this is caused by an update of moonlight. Please refresh the page;Nous n'avons pas pu nous reconnecter à moonlight. La plupart du temps, cela est causé par une mise à jour du clair de lune. Veuillez actualiser la page
|
||||
Verifying token, loading user data;Vérification du jeton, chargement des données utilisateur
|
||||
Reload config;Recharger la configuration
|
||||
Successfully reloading configuration;Rechargement de la configuration réussi...
|
||||
Successfully reloaded configuration;Configuration rechargée avec succès
|
||||
Flows;Flux
|
||||
Add node;Ajouter un nœud
|
||||
Web system;Système Internet
|
||||
Servers with this image;Serveurs avec cette image
|
||||
You need to specify a user;Vous devez spécifier un utilisateur
|
||||
Import;Importer
|
||||
Export;Exporter
|
||||
Exporting;Exportation
|
||||
Successfully imported image;Image importée avec succès
|
||||
Forge version;Forge Version
|
||||
Fabric version;Fabric Version
|
||||
Fabric loader version;Fabric Loader Version
|
||||
Rate;Taux
|
||||
Hey, can i borrow you for a second?;Hey, je peux vous empruntez une seconde ?
|
||||
We want to improve our services and get a little bit of feedback how we are currently doing. Please leave us a rating;Nous voulons améliorer nos services et obtenir un peu de rétroaction sur la façon dont nous faisons actuellement. Merci de nous laisser une note:
|
||||
Thanks for your rating;Merci pour votre évaluation
|
||||
It would be really kind of you rating us on a external platform as it will help our project very much;Ce serait vraiment gentil de votre part de nous noter sur une plateforme externe car cela aidera beaucoup notre projet
|
||||
Close;Fermer
|
||||
Rating saved;Note enregistrée
|
||||
Group;Groupe
|
||||
Beta;Bêta
|
||||
Create a new group;Créer un nouveau groupe
|
||||
Download WinSCP;Télécharger WinSCP
|
||||
Show connection details;Afficher les détails de la connexion
|
||||
New;Nouveau
|
||||
New file;Nouveau fichier
|
||||
Connection details;Détails de connexion
|
||||
Malware;Logiciels malveillants
|
||||
Create a new file;Créer un nouveau fichier
|
||||
Edit layout;Modifier la mise en page
|
||||
Uptime;Disponibilité
|
||||
Moonlight is online since;Moonlight est en ligne depuis
|
||||
User;Utilisateur
|
||||
Databases;Bases de données
|
||||
Sitzungen;Sitzungen
|
||||
Active users;Utilisateurs actifs
|
||||
Search for plugins;Rechercher des plugins
|
||||
Search;Recherche
|
||||
Searching;Recherche...
|
||||
Successfully installed gunshell;Cartouche installée avec succès
|
||||
Successfully installed fastasyncworldedit;Fastasyncworldedit a été installé avec succès
|
||||
Successfully installed minimotd;Minimotd installé avec succès
|
||||
Moonlight health;Statut Moonlight
|
||||
Healthy;En bonne santé
|
||||
Successfully saved file;Fichier enregistré avec succès
|
||||
Unsorted servers;Serveurs non triés
|
||||
Enter a new name;Entrez un nouveau nom
|
||||
Sign in with;Se connecter avec
|
||||
Make your services accessible through your own domain;Rendez vos services accessibles via votre propre domaine
|
||||
New group;Nouveau groupe
|
||||
Finish editing layout;Terminer la modification de la mise en page
|
||||
Remove group;Supprimer le groupe
|
||||
Hidden in edit mode;Masqué en mode édition
|
||||
Enter your 2fa code here;Entrez votre code 2FA ici
|
||||
Two factor authentication;Authentification à deux facteurs
|
||||
Preferences;Préférences
|
||||
Streamer mode;Mode diffusion
|
||||
Scan the QR code and enter the code generated by the app you have scanned it in;Scannez le code QR et entrez le code généré par l'application dans laquelle vous l'avez scanné
|
||||
Start scan;Lancer l'analyse
|
||||
Results;Résultats
|
||||
Scan in progress;Analyse en cours
|
||||
Debug;Debug
|
||||
Save changes;Sauvegarder les modifications
|
||||
Delete domain;Supprimer le domaine
|
||||
Python version;Version Python
|
||||
Python file;Fichier Python
|
||||
Select python file to execute on start;Sélectionnez le fichier python à exécuter au démarrage
|
||||
You have no webspaces;Vous n'avez pas d'espaces Web
|
||||
We were not able to find any webspaces associated with your account;Nous n'avons trouvé aucun espace Web associé à votre compte
|
||||
Backup download successfully started;Le téléchargement de la sauvegarde a démarré avec succès
|
||||
Error from cloud panel;Erreur du Cloud Panel
|
||||
Error from wings;Erreur des ailes
|
||||
Remove link;Supprimer le lien
|
||||
Your account is linked to a discord account;Votre compte est lié à un compte discord
|
||||
You are able to use features like the discord bot of moonlight;Vous pouvez utiliser des fonctionnalités telles que le bot discord de Moonlight
|
||||
The password should be at least 8 characters long;Le mot de passe doit comporter au moins 8 caractères
|
||||
The name should only consist of lower case characters or numbers;Le nom ne doit être composé que de caractères minuscules ou de chiffres
|
||||
The requested resource was not found;La ressource demandée n'a pas été trouvée
|
||||
We were not able to find the requested resource. This can have following reasons;Nous n'avons pas pu trouver la ressource demandée. Cela peut avoir les raisons suivantes
|
||||
The resource was deleted;La ressource a été supprimée
|
||||
You have to permission to access this resource;Vous devez être autorisé à accéder à cette ressource
|
||||
You may have entered invalid data;Vous avez peut-être entré des données invalides
|
||||
A unknown bug occured;Un bug inconnu s'est produit
|
||||
An api was down and not proper handled;Une API était en panne et n'était pas correctement gérée
|
||||
A database with this name does already exist;Une base de données portant ce nom existe déjà
|
||||
Successfully installed quickshop-hikari;Quickshop-hikari a été installé avec succès
|
||||
You need to enter a valid domain;Vous devez entrer un domaine valide
|
||||
2fa code;code 2FA
|
||||
This feature is not available for;Cette fonction n'est pas disponible pour
|
||||
Your account is currently not linked to discord;Votre compte n'est actuellement pas lié à discord
|
||||
To use features like the discord bot, link your moonlight account with your discord account;Pour utiliser des fonctionnalités telles que le bot Discord, liez votre compte Moonlight à votre compte Discord
|
||||
Link account;Lien de compte
|
||||
Continue;Continuer
|
||||
Preparing;Préparation
|
||||
Make sure you have installed one of the following apps on your smartphone and press continue;Assurez-vous d'avoir installé l'une des applications suivantes sur votre smartphone et appuyez sur continuer
|
||||
The max lenght for the name is 32 characters;La longueur maximale du nom est de 32 caractères
|
||||
Successfully installed chunky;Chunky installé avec succès
|
||||
Successfully installed huskhomes;Hulkhomes installés avec succès
|
||||
Successfully installed simply-farming;Simple-farming installé avec succès
|
||||
You need to specify a first name;Vous devez indiquer un prénom
|
||||
You need to specify a last name;Vous devez spécifier un nom de famille
|
||||
You need to specify a password;Vous devez spécifier un mot de passe
|
||||
Please solve the captcha;Merci de résoudre le captcha
|
||||
The email is already in use;L'e-mail est déjà utilisé
|
||||
The dns records of your webspace do not point to the host system;Les enregistrements DNS de votre espace Web ne pointent pas vers le système hôte
|
||||
Scan complete;Analyse terminée
|
||||
Currently scanning:;Analyse en cours:
|
||||
Successfully installed dynmap;Dynamap installé avec succès
|
||||
Successfully installed squaremap;Squaremap installé avec succès
|
||||
No web host found;Aucun hébergeur trouvé
|
||||
No web host found to deploy to;Aucun hébergeur trouvé pour le déploiement
|
||||
Successfully installed sleeper;Sleeper installé avec succès
|
||||
You need to enter a domain;Vous devez saisir un domaine
|
||||
Enter a ip;Entrez une ip
|
||||
Ip Bans;Ip Bans
|
||||
Ip;Ip
|
||||
Successfully installed simple-voice-chat;Simple-voice-chat installé avec succès
|
||||
Successfully installed smithing-table-fix;Smithing-table-fix a été installé avec succès
|
||||
Successfully installed justplayer-tpa;Justplayer-TPA installé avec succès
|
||||
Successfully installed ishop;iShop installé avec succès
|
||||
Successfully installed lifestealre;Lifestealre installé avec succès
|
||||
Successfully installed lifeswap;Lifeswap installé avec succès
|
||||
Java version;Java Version
|
||||
Jar file;Fichier Jar
|
||||
Select jar to execute on start;Sélectionnez le jar à exécuter au démarrage
|
||||
A website with this domain does already exist;Un site Web avec ce domaine existe déjà
|
||||
Successfully installed discordsrv;Discordsrv a été installé avec succès
|
||||
Reinstall;Réinstaller
|
||||
Reinstalling;Réinstallation
|
||||
Successfully installed freedomchat;Freedomchat installé avec succès
|
||||
Leave empty for the default background image;Laisser vide pour l'image d'arrière-plan par défaut
|
||||
Background image url;URL de l'image d'arrière-plan
|
||||
of CPU used;du processeur utilisé
|
||||
memory used;mémoire utilisée
|
||||
163;163
|
||||
172;172
|
||||
Sentry;Sentinelle
|
||||
Sentry is enabled;La sentinelle est activée
|
||||
Successfully installed mobis-homes;Mobis-homes installés avec succès
|
||||
Your moonlight account is disabled;Votre compte moonlight est désactivé
|
||||
Your moonlight account is currently disabled. But dont worry your data is still saved;Votre compte Moonlight est actuellement désactivé. Mais ne vous inquiétez pas, vos données sont toujours enregistrées
|
||||
You need to specify a email address;Vous devez indiquer une adresse e-mail
|
||||
A user with that email does already exist;Un utilisateur avec cet email existe déjà
|
||||
Successfully installed buildmode;buildmode installé avec succès
|
||||
Successfully installed plasmo-voice;Plasmo-Voice installé avec succès
|
||||
157;157
|
||||
174;174
|
||||
158;158
|
||||
Webspace not found;Espace Web introuvable
|
||||
A webspace with that id cannot be found or you have no access for this webspace;Un espace Web avec cet identifiant est introuvable ou vous n'avez pas accès à cet espace Web
|
||||
No plugin download for your minecraft version found;Aucun téléchargement de plugin pour votre version de minecraft trouvé
|
||||
Successfully installed gamemode-alias;Gamemode-alias installé avec succès
|
||||
228;228
|
||||
User;Utilisateur
|
||||
Send notification;Envoyer une notification
|
||||
Successfully saved changes;Modifications enregistrées avec succès
|
||||
Archiving;Archivage...
|
||||
Server is currently not archived;Le serveur n'est actuellement pas archivé
|
||||
Add allocation;Ajouter une allocation
|
||||
231;231
|
||||
175;175
|
||||
Dotnet version;Version Dotnet
|
||||
Dll file;Fichier DLL
|
||||
Select dll to execute on start;Sélectionnez le dll à exécuter au démarrage
|
|
@ -1,778 +0,0 @@
|
|||
Open support;Suport deschis
|
||||
About us;Despre noi
|
||||
Imprint;Impresum
|
||||
Privacy;Confidențialitate
|
||||
Login;Autentificare
|
||||
Register;Înregistrare
|
||||
Insert brand name...;Introduceți numele mărcii...
|
||||
Save and continue;Salvați și continuați
|
||||
Saving;Se salvează
|
||||
Configure basics;Configurare elemente de bază
|
||||
Brand name;Numele mărcii
|
||||
test;test
|
||||
Insert first name...;Introduceți prenumele...
|
||||
Insert last name...;Introduceți numele de familie...
|
||||
Insert email address...;Introduceți adresa de email...
|
||||
Add;Adăugați
|
||||
Adding...;Se adaugă...
|
||||
Add admin accounts;Adăugați conturi de administrator
|
||||
First name;Prenume
|
||||
Last name;Nume de familie
|
||||
Email address;Adresă de email
|
||||
Enter password;Introduceți parola
|
||||
Next;Următorul
|
||||
Back;Înapoi
|
||||
Configure features;Configurați funcționalitățile
|
||||
Support chat;Asistență prin chat
|
||||
Finish;Finalizare
|
||||
Finalize installation;Finalizați instalarea
|
||||
Moonlight basic settings successfully configured;Setările de bază Moonlight au fost configurate cu succes
|
||||
Ooops. This page is crashed;Hopa. Această pagină s-a blocat.
|
||||
This page is crashed. The error has been reported to the moonlight team. Meanwhile you can try reloading the page;Această pagină s-a blocat. Eroarea a fost raportată echipei Moonlight. Între timp, puteți încerca să reîncărcați pagina
|
||||
Setup complete;Configurare completă
|
||||
It looks like this moonlight instance is ready to go;Se pare că această instanță Moonlight este gata de utilizare
|
||||
User successfully created;Utilizator creat cu succes
|
||||
Ooops. Your moonlight client is crashed;Hopa. Clientul tău Moonlight s-a blocat.
|
||||
This error has been reported to the moonlight team;Această eroare a fost raportată echipei Moonlight
|
||||
Sign In;Autentificare
|
||||
Sign in to start with moonlight;Autentificați-vă pentru a începe cu Moonlight
|
||||
Sign in with Discord;Autentificare cu Discord
|
||||
Or with email;Sau cu email
|
||||
Forgot password?;Ați uitat parola?
|
||||
Sign-in;Autentificare
|
||||
Not registered yet?;Încă nu sunteți înregistrat?
|
||||
Sign up;Înregistrare
|
||||
Authenticating;Se autentifică...
|
||||
Sign in with Google;Autentificare cu Google
|
||||
Working;Se lucrează...
|
||||
Error;Eroare
|
||||
Email and password combination not found;Combinarea de email și parolă nu a fost găsită
|
||||
Email;Email
|
||||
Password;Parolă
|
||||
Account settings;Setări cont
|
||||
Logout;Deconectare
|
||||
Dashboard;Panou de control
|
||||
Order;Comandă
|
||||
Website;Website
|
||||
Database;Bază de date
|
||||
Domain;Domeniu
|
||||
Servers;Servere
|
||||
Websites;Site-uri web
|
||||
Databases;Baze de date
|
||||
Domains;Domenii
|
||||
Changelog;Jurnal de modificări
|
||||
Firstname;Prenume
|
||||
Lastname;Nume de familie
|
||||
Repeat password;Repetă parola
|
||||
Sign Up;Înregistrare
|
||||
Sign up to start with moonlight;Înregistrați-vă pentru a începe cu Moonlight
|
||||
Sign up with Discord;Înregistrare cu Discord
|
||||
Sign up with Google;Înregistrare cu Google
|
||||
Sign-up;Înregistrare
|
||||
Already registered?;Deja înregistrat?
|
||||
Sign in;Autentificare
|
||||
Create something new;Creați ceva nou
|
||||
Create a gameserver;Creați un server de jocuri
|
||||
A new gameserver in just a few minutes;Un server de jocuri nou în doar câteva minute
|
||||
Create a database;Creați o bază de date
|
||||
A quick way to store your data and manage it from all around the world;O modalitate rapidă de a stoca datele și de a le gestiona din întreaga lume
|
||||
Manage your services;Gestionați serviciile dumneavoastră
|
||||
Manage your gameservers;Gestionați serverele dumneavoastră de jocuri
|
||||
Adjust your gameservers;Reglați serverele dumneavoastră de jocuri
|
||||
Manage your databases;Gestionați bazele de date
|
||||
Insert, delete and update the data in your databases;Introduceți, ștergeți și actualizați datele din bazele de date
|
||||
Create a website;Creați un site web
|
||||
Make your own websites with a webspace;Creați propriile site-uri web cu un spațiu web
|
||||
Create a domain;Creați un domeniu
|
||||
Make your services accessible through your own domain;Faceți serviciile dumneavoastră accesibile prin propriul domeniu
|
||||
Manage your websites;Gestionați site-urile web
|
||||
Modify the content of your websites;Modificați conținutul site-urilor dumneavoastră
|
||||
Manage your domains;Gestionați domeniile dumneavoastră
|
||||
Add, edit, and delete DNS records;Adăugați, editați și ștergeți înregistrări DNS
|
||||
Admin;Administrator
|
||||
System;Sistem
|
||||
Overview;Prezentare generală
|
||||
Manager;Manager
|
||||
Cleanup;Curățare
|
||||
Nodes;Noduri
|
||||
Images;Imagini
|
||||
aaPanel;aaPanel
|
||||
Users;Utilizatori
|
||||
Support;Asistență
|
||||
Statistics;Statistici
|
||||
No nodes found. Start with adding a new node;Nu s-au găsit noduri. Începeți prin adăugarea unui nod nou
|
||||
Nodename;Nume nod
|
||||
FQDN;Nume complet de domeniu (FQDN)
|
||||
Create;Creare
|
||||
Creating;Se creează...
|
||||
Http port;Port HTTP
|
||||
Sftp port;Port SFTP
|
||||
Moonlight daemon port;Port daemon Moonlight
|
||||
SSL;SSL
|
||||
CPU Usage;Utilizare CPU
|
||||
In %;În %
|
||||
Memory;Memorie
|
||||
Used / Available memory;Memorie utilizată / Memorie disponibilă
|
||||
Storage;Stocare
|
||||
Available storage;Stocare disponibilă
|
||||
Add a new node;Adăugați un nod nou
|
||||
Delete;Ștergere
|
||||
Deleting;Se șterge...
|
||||
Edit;Editare
|
||||
Token Id;ID token
|
||||
Token;Token
|
||||
Save;Salvare
|
||||
Setup;Configurare
|
||||
Open a ssh connection to your node and enter;Deschideți o conexiune SSH la nodul dvs. și introduceți
|
||||
and paste the config below. Then press STRG+O and STRG+X to save;și lipiți configurația de mai jos. Apoi apăsați STRG+O și STRG+X pentru a salva
|
||||
Before configuring this node, install the daemon;Înainte de a configura acest nod, instalați daemonul
|
||||
Delete this node?;Doriți să ștergeți acest nod?
|
||||
Do you really want to delete this node;Doriți cu adevărat să ștergeți acest nod?
|
||||
Yes;Da
|
||||
No;Nu
|
||||
Status;Stare
|
||||
Adding;Se adaugă
|
||||
Port;Port
|
||||
Id;ID
|
||||
Manage;Administrare
|
||||
Create new server;Creați un server nou
|
||||
No servers found;Niciun server găsit
|
||||
Server name;Nume server
|
||||
Cpu cores;Nuclee CPU
|
||||
Disk;Disc
|
||||
Image;Imagine
|
||||
Override startup;Suprascrie pornirea
|
||||
Docker image;Imagine Docker
|
||||
CPU Cores (100% = 1 Core);Nuclee CPU (100% = 1 nucleu)
|
||||
Server successfully created;Server creat cu succes
|
||||
Name;Nume
|
||||
Cores;Nuclee
|
||||
Owner;Proprietar
|
||||
Value;Valoare
|
||||
An unknown error occurred;A apărut o eroare necunoscută
|
||||
No allocation found;Nicio alocare găsită
|
||||
Identifier;Identificator
|
||||
UuidIdentifier;UuidIdentifier
|
||||
Override startup command;Suprascrieți comanda de pornire
|
||||
Loading;Se încarcă...
|
||||
Offline;Deconectat
|
||||
Connecting;Conectare...
|
||||
Start;Pornire
|
||||
Restart;Repornire
|
||||
Stop;Oprire
|
||||
Shared IP;IP partajată
|
||||
Server ID;ID server
|
||||
Cpu;CPU
|
||||
Console;Consolă
|
||||
Files;Fișiere
|
||||
Backups;Copii de siguranță
|
||||
Network;Rețea
|
||||
Plugins;Plugin-uri
|
||||
Settings;Setări
|
||||
Enter command;Introduceți comanda
|
||||
Execute;Executare
|
||||
Checking disk space;Verificare spațiu pe disc
|
||||
Updating config files;Actualizare fișiere de configurație
|
||||
Checking file permissions;Verificare permisiuni de fișiere
|
||||
Downloading server image;Se descarcă imaginea serverului
|
||||
Downloaded server image;Imaginea serverului a fost descărcată
|
||||
Starting;Începere
|
||||
Online;Conectat
|
||||
Kill;Oprit forțat
|
||||
Stopping;Se oprește
|
||||
Search files and folders;Căutare fișiere și foldere
|
||||
Launch WinSCP;Lansați WinSCP
|
||||
New folder;Folder nou
|
||||
Upload;Încărcare
|
||||
File name;Nume fișier
|
||||
File size;Mărime fișier
|
||||
Last modified;Ultima modificare
|
||||
Cancel;Anulare
|
||||
Canceling;Se anulează
|
||||
Running;În execuție
|
||||
Loading backups;Se încarcă copiile de siguranță
|
||||
Started backup creation;Crearea copiei de siguranță a început
|
||||
Backup is going to be created;Se va crea o copie de siguranță
|
||||
Rename;Redenumire
|
||||
Move;Mutare
|
||||
Archive;Arhivare
|
||||
Unarchive;Dezarhivare
|
||||
Download;Descărcare
|
||||
Starting download;Începerea descărcării
|
||||
Backup successfully created;Copie de siguranță creată cu succes
|
||||
Restore;Restaurare
|
||||
Copy url;Copiere URL
|
||||
Backup deletion started;Se începe ștergerea copiei de siguranță
|
||||
Backup successfully deleted;Copie de siguranță ștearsă cu succes
|
||||
Primary;Primar
|
||||
This feature is currently not available;Această funcționalitate nu este disponibilă în prezent
|
||||
Send;Trimite
|
||||
Sending;Se trimite
|
||||
Welcome to the support chat. Ask your question here and we will help you;Bine ați venit la chatul de asistență. Puneți-vă întrebarea aici și vă vom ajuta
|
||||
minutes ago;minute în urmă
|
||||
just now;chiar acum
|
||||
less than a minute ago;mai puțin de o minută în urmă
|
||||
1 hour ago;acum 1 oră
|
||||
1 minute ago;acum 1 minut
|
||||
Failed;Eșuat
|
||||
hours ago;ore în urmă
|
||||
Open tickets;Deschideți tichete
|
||||
Actions;Acțiuni
|
||||
No support ticket is currently open;Nu există momentan niciun tichet de asistență deschis
|
||||
User information;Informații utilizator
|
||||
Close ticket;Închideți tichetul
|
||||
Closing;Se închide
|
||||
The support team has been notified. Please be patient;Echipa de suport a fost notificată. Vă rugăm să aveți răbdare
|
||||
The ticket is now closed. Type a message to open it again;Tichetul este acum închis. Tastați un mesaj pentru a-l deschide din nou
|
||||
1 day ago;acum 1 zi
|
||||
is typing;scrie...
|
||||
are typing;scriu...
|
||||
No domains available;Niciun domeniu disponibil
|
||||
Shared domains;Domenii partajate
|
||||
Shared domain;Domeniu partajat
|
||||
Shared domain successfully deleted;Domeniu partajat șters cu succes
|
||||
Shared domain successfully added;Domeniu partajat adăugat cu succes
|
||||
Domain name;Nume de domeniu
|
||||
DNS records for;Înregistrări DNS pentru
|
||||
Fetching dns records;Se preiau înregistrările DNS
|
||||
No dns records found;Nicio înregistrare DNS găsită
|
||||
Content;Conținut
|
||||
Priority;Prioritate
|
||||
Ttl;TTL (Timp de Viață)
|
||||
Enable cloudflare proxy;Activați proxy Cloudflare
|
||||
CF Proxy;Proxy CF
|
||||
days ago;zile în urmă
|
||||
Cancel;Anulare
|
||||
An unexpected error occurred;A apărut o eroare neașteptată
|
||||
Testy;Testy
|
||||
Error from cloudflare api;Eroare de la API Cloudflare
|
||||
Profile;Profil
|
||||
No subscription available;Nicio abonare disponibilă
|
||||
Buy;Cumpără
|
||||
Redirecting;Redirecționare
|
||||
Apply;Aplică
|
||||
Applying code;Se aplică codul
|
||||
Invalid subscription code;Cod de abonament invalid
|
||||
Cancel Subscription;Anulează abonamentul
|
||||
Active until;Activ până la
|
||||
We will send you a notification upon subscription expiration;Vă vom trimite o notificare la expirarea abonamentului
|
||||
This token has been already used;Acest token a fost deja utilizat
|
||||
New login for;Autentificare nouă pentru
|
||||
No records found for this day;Nu s-au găsit înregistrări pentru această zi
|
||||
Change;Schimbă
|
||||
Changing;Se schimbă
|
||||
Minecraft version;Versiune Minecraft
|
||||
Build version;Versiune build
|
||||
Server installation is currently running;Instalarea serverului este în desfășurare în prezent
|
||||
Selected;Selectat
|
||||
Move deleted;Mutarea ștergerii
|
||||
Delete selected;Ștergeți selecția
|
||||
Log level;Nivelul de jurnal
|
||||
Log message;Mesaj de jurnal
|
||||
Time;Timp
|
||||
Version;Versiune
|
||||
You are running moonlight version;Rulați versiunea Moonlight
|
||||
Operating system;Sistem de operare
|
||||
Moonlight is running on;Moonlight rulează pe
|
||||
Memory usage;Utilizare memorie
|
||||
Moonlight is using;Moonlight folosește
|
||||
of memory;din memorie
|
||||
Cpu usage;Utilizare CPU
|
||||
Refresh;Reîmprospătează
|
||||
Send a message to all users;Trimiteți un mesaj tuturor utilizatorilor
|
||||
IP;IP
|
||||
URL;URL
|
||||
Device;Dispozitiv
|
||||
Change url;Schimbați URL-ul
|
||||
Message;Mesaj
|
||||
Enter message;Introduceți mesajul
|
||||
Enter the message to send;Introduceți mesajul de trimis
|
||||
Confirm;Confirmă
|
||||
Are you sure?;Sunteți sigur?
|
||||
Enter url;Introduceți URL-ul
|
||||
An unknown error occured while starting backup deletion;A apărut o eroare necunoscută în timpul începerii ștergerii backup-ului
|
||||
Success;Succes
|
||||
Backup URL successfully copied to your clipboard;URL-ul de backup a fost copiat cu succes în clipboard
|
||||
Backup restore started;Restaurarea backup-ului a început
|
||||
Backup successfully restored;Backup-ul a fost restaurat cu succes
|
||||
Register for;Înregistrare pentru
|
||||
Core;Nucleu
|
||||
Logs;Jurnale
|
||||
AuditLog;Jurnal de audit
|
||||
SecurityLog;Jurnal de securitate
|
||||
ErrorLog;Jurnal de eroare
|
||||
Resources;Resurse
|
||||
WinSCP cannot be launched here;WinSCP nu poate fi lansat aici
|
||||
Create a new folder;Creați un folder nou
|
||||
Enter a name;Introduceți un nume
|
||||
File upload complete;Încărcarea fișierului a fost finalizată
|
||||
New server;Server nou
|
||||
Sessions;Sesiuni
|
||||
New user;Utilizator nou
|
||||
Created at;Creat la
|
||||
Mail template not found;Șablonul de e-mail nu a fost găsit
|
||||
Missing admin permissions. This attempt has been logged ;Lipsesc permisiunile de administrator. Acest încercare a fost înregistrată
|
||||
Address;Adresă
|
||||
City;Oraș
|
||||
State;Stat
|
||||
Country;Țară
|
||||
Totp;Totp
|
||||
Discord;Discord
|
||||
Subscription;Abonament
|
||||
None;Niciunul
|
||||
No user with this id found;Niciun utilizator cu această ID găsit
|
||||
Back to list;Înapoi la listă
|
||||
New domain;Domeniu nou
|
||||
Reset password;Resetare parolă
|
||||
Password reset;Resetare parolă
|
||||
Reset the password of your account;Resetați parola contului dvs.
|
||||
Wrong here?;Greșit aici?
|
||||
A user with this email can not be found;Un utilizator cu această adresă de e-mail nu poate fi găsit
|
||||
Password reset successfull. Check your mail;Resetarea parolei a fost efectuată cu succes. Verificați-vă poșta
|
||||
Discord bot;Bot Discord
|
||||
New image;Imagine nouă
|
||||
Description;Descriere
|
||||
Uuid;UUID
|
||||
Enter tag name;Introduceți numele etichetei
|
||||
Remove;Eliminați
|
||||
No tags found;Nu s-au găsit etichete
|
||||
Enter docker image name;Introduceți numele imaginii Docker
|
||||
Tags;Etichete
|
||||
Docker images;Imagini Docker
|
||||
Default image;Imagine implicită
|
||||
Startup command;Comandă de pornire
|
||||
Install container;Instalați containerul
|
||||
Install entry;Intrare de instalare
|
||||
Configuration files;Fișiere de configurare
|
||||
Startup detection;Detectare de pornire
|
||||
Stop command;Comandă de oprire
|
||||
Successfully saved image;Imaginea a fost salvată cu succes
|
||||
No docker images found;Nu s-au găsit imagini Docker
|
||||
Key;Cheie
|
||||
Default value;Valoare implicită
|
||||
Allocations;Alocări
|
||||
No variables found;Nu s-au găsit variabile
|
||||
Successfully added image;Imaginea a fost adăugată cu succes
|
||||
Password change for;Schimbarea parolei pentru
|
||||
of;al
|
||||
New node;Nod nou
|
||||
Fqdn;Nume de domeniu complet
|
||||
Cores used;Nuclee utilizate
|
||||
used;folosite
|
||||
5.15.90.1-microsoft-standard-WSL2 - amd64;5.15.90.1-microsoft-standard-WSL2 - amd64
|
||||
Host system information;Informații despre sistemul gazdă
|
||||
0;0
|
||||
Docker containers running;Containere Docker în execuție
|
||||
details;Detalii
|
||||
1;1
|
||||
2;2
|
||||
DDos;DDoS
|
||||
No ddos attacks found;Nu s-au găsit atacuri DDoS
|
||||
Node;Nod
|
||||
Date;Dată
|
||||
DDos attack started;Atac DDoS început
|
||||
packets;pachete
|
||||
DDos attack stopped;Atac DDoS oprit
|
||||
packets; pachete
|
||||
Stop all;Oprește totul
|
||||
Kill all;Omoară totul
|
||||
Network in;Rețea intrare
|
||||
Network out;Rețea ieșire
|
||||
Kill all servers;Omoară toate serverele
|
||||
Do you really want to kill all running servers?;Doriți cu adevărat să opriți toate serverele care rulează?
|
||||
Change power state for;Schimbați starea de alimentare pentru
|
||||
to;la
|
||||
Stop all servers;Oprește toate serverele
|
||||
Do you really want to stop all running servers?;Doriți cu adevărat să opriți toate serverele care rulează?
|
||||
Manage ;Gestionează
|
||||
Manage user ;Gestionează utilizatorul
|
||||
Reloading;Se reîncarcă...
|
||||
Update;Actualizare
|
||||
Updating;Se actualizează
|
||||
Successfully updated user;Utilizator actualizat cu succes
|
||||
Discord id;ID Discord
|
||||
Discord username;Nume de utilizator Discord
|
||||
Discord discriminator;Discord Discriminator
|
||||
The Name field is required.;Câmpul Nume este obligatoriu.
|
||||
An error occured while logging you in;A apărut o eroare în timpul autentificării
|
||||
You need to enter an email address;Trebuie să introduceți o adresă de email
|
||||
You need to enter a password;Trebuie să introduceți o parolă
|
||||
You need to enter a password with minimum 8 characters in lenght;Trebuie să introduceți o parolă cu minim 8 caractere în lungime
|
||||
Proccessing;Se procesează...
|
||||
The FirstName field is required.;Câmpul Prenume este obligatoriu.
|
||||
The LastName field is required.;Câmpul Nume este obligatoriu.
|
||||
The Address field is required.;Câmpul Adresă este obligatoriu.
|
||||
The City field is required.;Câmpul Oraș este obligatoriu.
|
||||
The State field is required.;Câmpul Stat este obligatoriu.
|
||||
The Country field is required.;Câmpul Țară este obligatoriu.
|
||||
Street and house number requered;Strada și numărul casei sunt necesare.
|
||||
Max lenght reached;A fost atinsă lungimea maximă
|
||||
Server;Server
|
||||
stopped;oprit
|
||||
Cleanups;Curățări
|
||||
executed;executat
|
||||
Used clanup;Curățare folosită
|
||||
Enable;Activare
|
||||
Disable;Dezactivare
|
||||
Addons;Add-on-uri
|
||||
Javascript version;Versiune JavaScript
|
||||
Javascript file;Fișier JavaScript
|
||||
Select javascript file to execute on start;Selectați fișierul JavaScript pentru a fi executat la pornire
|
||||
Submit;Trimite
|
||||
Processing;Se procesează...
|
||||
Go up;Urcați în sus
|
||||
Running cleanup;Curățarea în curs de rulare
|
||||
servers;servere
|
||||
Select folder to move the file(s) to;Selectați folderul în care să mutați fișierele
|
||||
Paper version;Versiune tipărită
|
||||
Join2Start;Join2Start
|
||||
Server reset;Resetare server
|
||||
Reset;Resetare
|
||||
Resetting;Se resetează...
|
||||
Are you sure you want to reset this server?;Sigur doriți să resetați acest server?
|
||||
Are you sure? This cannot be undone;Sunteți sigur? Aceasta nu poate fi anulată
|
||||
Resetting server;Se resetează serverul...
|
||||
Deleted file;Fișier șters
|
||||
Reinstalling server;Se reinstalează serverul
|
||||
Uploading files;Încărcare fișiere
|
||||
complete;complet
|
||||
Upload complete;Încărcare completă
|
||||
Security;Securitate
|
||||
Subscriptions;Abonamente
|
||||
2fa Code;Cod 2FA
|
||||
Your account is secured with 2fa;Contul dvs. este securizat cu 2FA
|
||||
anyone write a fancy text here?;cineva să scrie un text frumos aici?
|
||||
Activate 2fa;Activare 2FA
|
||||
2fa apps;Aplicații 2FA
|
||||
Use an app like ;Utilizați o aplicație precum
|
||||
or;sau
|
||||
and scan the following QR Code;și scanați codul QR următor
|
||||
If you have trouble using the QR Code, select manual input in the app and enter your email and the following code:;Dacă întâmpinați probleme la utilizarea codului QR, selectați introducerea manuală în aplicație și introduceți adresa dvs. de email și următorul cod:
|
||||
Finish activation;Finalizare activare
|
||||
2fa Code requiered;Cod 2FA necesar
|
||||
New password;Parolă nouă
|
||||
Secure your account;Securizați contul dvs.
|
||||
2fa adds another layer of security to your account. You have to enter a 6 digit code in order to login.;2FA adaugă un alt nivel de securitate contului dvs. Trebuie să introduceți un cod cu 6 cifre pentru a vă autentifica.
|
||||
New subscription;Abonament nou
|
||||
You need to enter a name;Trebuie să introduceți un nume
|
||||
You need to enter a description;Trebuie să introduceți o descriere
|
||||
Add new limit;Adăugați o limită nouă
|
||||
Create subscription;Creați abonament
|
||||
Options;Opțiuni
|
||||
Amount;Suma
|
||||
Do you really want to delete it?;Sigur doriți să ștergeți acesta?
|
||||
Loading your subscription;Se încarcă abonamentul dvs.
|
||||
Searching for deploy node;Căutare nod de implementare
|
||||
Searching for available images;Căutare imagini disponibile
|
||||
Server details;Detalii server
|
||||
Configure your server;Configurați serverul dvs.
|
||||
Default;Implicit
|
||||
You reached the maximum amount of servers for every image of your subscription;Ați atins cantitatea maximă de servere pentru fiecare imagine din abonamentul dvs.
|
||||
Personal information;Informații personale
|
||||
Enter code;Introduceți codul
|
||||
Server rename;Redenumire server
|
||||
Create code;Creați codul
|
||||
Save subscription;Salvați abonamentul
|
||||
Enter your information;Introduceți informațiile dvs.
|
||||
You need to enter your full name in order to use moonlight;Trebuie să introduceți numele complet pentru a utiliza Moonlight
|
||||
No node found;Niciun nod găsit
|
||||
No node found to deploy to found;Nu s-a găsit niciun nod pentru a fi implementat
|
||||
Node offline;Nodul este deconectat
|
||||
The node the server is running on is currently offline;Nodul pe care rulează serverul este momentan deconectat
|
||||
Server not found;Serverul nu a fost găsit
|
||||
A server with that id cannot be found or you have no access for this server;Un server cu această ID nu poate fi găsit sau nu aveți acces la acest server
|
||||
Compress;Comprimare
|
||||
Decompress;Dezcompresare
|
||||
Moving;Mutare...
|
||||
Compressing;Se comprimă...
|
||||
selected;selectat
|
||||
New website;Site web nou
|
||||
Plesk servers;Servere Plesk
|
||||
Base domain;Domeniu de bază
|
||||
Plesk server;Server Plesk
|
||||
Ftp;FTP
|
||||
No SSL certificate found;Nu s-a găsit niciun certificat SSL
|
||||
Ftp Host;Gazdă FTP
|
||||
Ftp Port;Port FTP
|
||||
Ftp Username;Nume utilizator FTP
|
||||
Ftp Password;Parolă FTP
|
||||
Use;Utilizați
|
||||
SSL Certificates;Certificate SSL
|
||||
SSL certificates;Certificate SSL
|
||||
Issue certificate;Emitere certificat
|
||||
New plesk server;Un nou server Plesk
|
||||
Api url;URL API
|
||||
Host system offline;Sistemul gazdă este offline
|
||||
The host system the website is running on is currently offline;Sistemul gazdă pe care rulează site-ul este în prezent offline
|
||||
No SSL certificates found;Nu s-au găsit certificate SSL
|
||||
No databases found for this website;Nu s-au găsit baze de date pentru acest site web
|
||||
The name should be at least 8 characters long;Numele trebuie să aibă cel puțin 8 caractere
|
||||
The name should only contain of lower case characters and numbers;Numele ar trebui să conțină doar litere mici și cifre
|
||||
Error from plesk;Eroare de la Plesk
|
||||
Host;Gazdă
|
||||
Username;Nume de utilizator
|
||||
SRV records cannot be updated thanks to the cloudflare api client. Please delete the record and create a new one;Înregistrările SRV nu pot fi actualizate datorită clientului API Cloudflare. Vă rugăm să ștergeți înregistrarea și să creați una nouă
|
||||
The User field is required.;Câmpul Utilizator este obligatoriu
|
||||
You need to specify an owner;Trebuie să specificați un proprietar
|
||||
You need to specify an image;Trebuie să specificați o imagine
|
||||
Api Url;URL API
|
||||
Api Key;Cheie API
|
||||
Duration;Durată
|
||||
Enter duration of subscription;Introduceți durata abonamentului
|
||||
Copied code to clipboard;Codul a fost copiat în clipboard
|
||||
Invalid or expired subscription code;Cod de abonament invalid sau expirat
|
||||
Current subscription;Abonament curent
|
||||
You need to specify a server image;Trebuie să specificați o imagine de server
|
||||
CPU;CPU
|
||||
Hour;Oră
|
||||
Day;Zi
|
||||
Month;Lună
|
||||
Year;An
|
||||
All time;Tot timpul
|
||||
This function is not implemented;Această funcție nu este implementată
|
||||
Domain details;Detalii domeniu
|
||||
Configure your domain;Configurați domeniul dvs.
|
||||
You reached the maximum amount of domains in your subscription;Ați atins numărul maxim de domenii în abonamentul dvs.
|
||||
You need to specify a shared domain;Trebuie să specificați un domeniu partajat
|
||||
A domain with this name already exists for this shared domain;Un domeniu cu acest nume există deja pentru acest domeniu partajat
|
||||
The Email field is required.;Câmpul Email este obligatoriu
|
||||
The Password field is required.;Câmpul Parolă este obligatoriu
|
||||
The ConfirmPassword field is required.;Câmpul Confirmare Parolă este obligatoriu
|
||||
Passwords need to match;Parolele trebuie să se potrivească
|
||||
Cleanup exception;Excepție la curățare
|
||||
No shared domain found;Nu s-a găsit niciun domeniu partajat
|
||||
Searching for deploy plesk server;Se caută pentru a implementa serverul Plesk
|
||||
No plesk server found;Nu s-a găsit niciun server Plesk
|
||||
No plesk server found to deploy to;Nu s-a găsit niciun server Plesk pentru a implementa
|
||||
No node found to deploy to;Nu s-a găsit niciun nod pentru a implementa
|
||||
Website details;Detalii site web
|
||||
Configure your website;Configurați site-ul dvs. web
|
||||
The name cannot be longer that 32 characters;Numele nu poate avea mai mult de 32 de caractere
|
||||
The name should only consist of lower case characters;Numele ar trebui să conțină doar litere mici
|
||||
News;Știri
|
||||
Title...;Titlu...
|
||||
Enter text...;Introduceți text...
|
||||
Saving...;Se salvează...
|
||||
Deleting...;Se șterge...
|
||||
Delete post;Ștergeți postarea
|
||||
Do you really want to delete the post ";Doriți cu adevărat să ștergeți postarea "
|
||||
You have no domains;Nu aveți domenii
|
||||
We were not able to find any domains associated with your account;Nu am putut găsi niciun domeniu asociat cu contul dvs.
|
||||
You have no websites;Nu aveți site-uri web
|
||||
We were not able to find any websites associated with your account;Nu am putut găsi niciun site web asociat cu contul dvs.
|
||||
Guest;Vizitator
|
||||
You need a domain;Aveți nevoie de un domeniu
|
||||
New post;Postare nouă
|
||||
New entry;Intrare nouă
|
||||
You have no servers;Nu aveți servere
|
||||
We were not able to find any servers associated with your account;Nu am putut găsi niciun server asociat cu contul dvs.
|
||||
Error creating server on wings;Eroare la crearea serverului pe Wings
|
||||
An unknown error occurred while restoring a backup;A apărut o eroare necunoscută în timpul restaurării unei copii de rezervă
|
||||
Error from daemon;Eroare de la daemon
|
||||
End;Sfârșit
|
||||
Cloud panel;Panou de control pentru cloud
|
||||
Cloud panels;Panouri de control pentru cloud
|
||||
New cloud panel;Panou de control pentru cloud nou
|
||||
You need to enter an api key;Trebuie să introduceți o cheie API
|
||||
Webspaces;Spații web
|
||||
New webspace;Spațiu web nou
|
||||
The uploaded file should not be bigger than 100MB;Fișierul încărcat nu trebuie să depășească 100MB
|
||||
An unknown error occurred while uploading a file;A apărut o eroare necunoscută în timpul încărcării unui fișier
|
||||
No databases found for this webspace;Nu s-au găsit baze de date pentru acest spațiu web
|
||||
Sftp;SFTP
|
||||
Sftp Host;Gazdă SFTP
|
||||
Sftp Port;Port SFTP
|
||||
Sftp Username;Nume de utilizator SFTP
|
||||
Sftp Password;Parolă SFTP
|
||||
Lets Encrypt certificate successfully issued;Certificatul Lets Encrypt a fost emis cu succes
|
||||
Add shared domain;Adăugați domeniu partajat
|
||||
Webspace;Spațiu web
|
||||
You reached the maximum amount of websites in your subscription;Ați atins numărul maxim de site-uri web în abonamentul dvs.
|
||||
Searching for deploy web host;Se caută pentru a implementa gazda web
|
||||
Webspace details;Detalii spațiu web
|
||||
Web host;Gazdă web
|
||||
Configure your webspaces;Configurați spațiile dvs. web
|
||||
You reached the maximum amount of webspaces in your subscription;Ați atins numărul maxim de spații web în abonamentul dvs.
|
||||
Create a webspace;Creați un spațiu web
|
||||
Manage your webspaces;Gestionați spațiile dvs. web
|
||||
Modify the content of your webspaces;Modificați conținutul spațiilor dvs. web
|
||||
Successfully updated password;Parola a fost actualizată cu succes
|
||||
An unknown error occurred while sending your message;A apărut o eroare necunoscută în timpul trimiterii mesajului dvs.
|
||||
Open chats;Deschideți conversații
|
||||
No message sent yet;Nu ați trimis încă niciun mesaj
|
||||
Support ticket open;Bilet de suport deschis
|
||||
Support ticket closed;Bilet de suport închis
|
||||
Your connection has been paused;Conexiunea dvs. a fost pusă în pauză
|
||||
We paused your connection because of inactivity. To resume, simply focus the tab and wait a few seconds;Am pus în pauză conexiunea dvs. din cauza inactivității. Pentru a relua, focalizați pur și simplu fila și așteptați câteva secunde
|
||||
Failed to reconnect to the moonlight servers;Nu s-a reușit reconectarea la serverele Moonlight
|
||||
We were unable to reconnect to moonlight. Please refresh the page;Nu am reușit să ne reconectăm la Moonlight. Vă rugăm să reîmprospătați pagina
|
||||
Failed to reconnect to the moonlight servers. The connection has been rejected;Nu s-a reușit reconectarea la serverele Moonlight. Conexiunea a fost respinsă
|
||||
We were unable to reconnect to moonlight. Most of the time this is caused by an update of moonlight. Please refresh the page;Nu am reușit să ne reconectăm la Moonlight. De cele mai multe ori, aceasta este cauzată de o actualizare a Moonlight. Vă rugăm să reîmprospătați pagina
|
||||
Verifying token, loading user data;Se verifică token-ul, se încarcă datele utilizatorului
|
||||
Reload config;Reîncarcă configurația
|
||||
Successfully reloading configuration;Configurația a fost reîncărcată cu succes
|
||||
Successfully reloaded configuration;Configurația a fost reîncărcată cu succes
|
||||
Flows;Fluxuri
|
||||
Add node;Adăugați nod
|
||||
Web system;Sistem web
|
||||
Servers with this image;Servere cu această imagine
|
||||
You need to specify a user;Trebuie să specificați un utilizator
|
||||
Import;Importați
|
||||
Export;Exportați
|
||||
Exporting;Se exportă
|
||||
Successfully imported image;Imaginea a fost importată cu succes
|
||||
Forge version;Versiune Forge
|
||||
Fabric version;Versiune Fabric
|
||||
Fabric loader version;Versiune Fabric Loader
|
||||
Rate;Evaluare
|
||||
Hey, can i borrow you for a second?;Hey, pot să te împrumut pentru o secundă?
|
||||
We want to improve our services and get a little bit of feedback how we are currently doing. Please leave us a rating;Vrem să îmbunătățim serviciile noastre și să obținem un pic de feedback despre modul în care facem în prezent. Vă rugăm să ne lăsați o evaluare
|
||||
Thanks for your rating;Mulțumim pentru evaluarea dvs.
|
||||
It would be really kind of you rating us on a external platform as it will help our project very much;Ar fi foarte amabil din partea dvs. să ne evaluați pe o platformă externă, deoarece va ajuta foarte mult proiectul nostru
|
||||
Close;Închide
|
||||
Rating saved;Evaluare salvată
|
||||
Group;Grup
|
||||
Beta;Beta
|
||||
Create a new group;Creați un grup nou
|
||||
Download WinSCP;Descărcați WinSCP
|
||||
Show connection details;Afișați detaliile de conexiune
|
||||
New;Nou
|
||||
New file;Fișier nou
|
||||
Connection details;Detalii de conexiune
|
||||
Malware;Program malware
|
||||
Create a new file;Creați un fișier nou
|
||||
Edit layout;Editați aspectul
|
||||
Uptime;Timp de funcționare
|
||||
Moonlight is online since;Moonlight este online de la
|
||||
User;Utilizator
|
||||
Databases;Baze de date
|
||||
Sesiuni;Sesiuni
|
||||
Active users;Utilizatori activi
|
||||
Search for plugins;Căutați plugin-uri
|
||||
Search;Căutare
|
||||
Searching;Se caută...
|
||||
Successfully installed gunshell;Gunshell a fost instalat cu succes
|
||||
Successfully installed fastasyncworldedit;FastAsyncWorldEdit a fost instalat cu succes
|
||||
Successfully installed minimotd;MiniMotd a fost instalat cu succes
|
||||
Moonlight health;Stare Moonlight
|
||||
Healthy;Sănătos
|
||||
Successfully saved file;Fișier salvat cu succes
|
||||
Unsorted servers;Servere nesortate
|
||||
Enter a new name;Introduceți un nume nou
|
||||
Sign in with;Conectare cu
|
||||
Make your services accessible through your own domain;Faceți serviciile dvs. accesibile prin propriul domeniu
|
||||
New group;Grup nou
|
||||
Finish editing layout;Finalizați editarea aspectului
|
||||
Remove group;Eliminați grupul
|
||||
Hidden in edit mode;Ascuns în modul de editare
|
||||
Enter your 2fa code here;Introduceți codul dvs. 2FA aici
|
||||
Two factor authentication;Autentificare în două factori
|
||||
Preferences;Preferințe
|
||||
Streamer mode;Mod streamer
|
||||
Scan the QR code and enter the code generated by the app you have scanned it in;Scanați codul QR și introduceți codul generat de aplicație
|
||||
Start scan;Începeți scanarea
|
||||
Results;Rezultate
|
||||
Scan in progress;Scanare în curs
|
||||
Debug;Depanare
|
||||
Save changes;Salvați modificările
|
||||
Delete domain;Ștergeți domeniul
|
||||
Python version;Versiune Python
|
||||
Python file;Fișier Python
|
||||
Select python file to execute on start;Selectați fișierul Python pentru a fi executat la pornire
|
||||
You have no webspaces;Nu aveți spații web
|
||||
We were not able to find any webspaces associated with your account;Nu am reușit să găsim spații web asociate contului dvs.
|
||||
Backup download successfully started;Descărcarea backup-ului a început cu succes
|
||||
Error from cloud panel;Eroare din panoul de control al norului
|
||||
Error from wings;Eroare din Wings
|
||||
Remove link;Elimină linkul
|
||||
Your account is linked to a discord account;Contul dvs. este legat de un cont Discord
|
||||
You are able to use features like the discord bot of moonlight;Puteți utiliza funcții precum botul Discord al Moonlight
|
||||
The password should be at least 8 characters long;Parola trebuie să aibă cel puțin 8 caractere
|
||||
The name should only consist of lower case characters or numbers;Numele ar trebui să conțină doar litere mici sau cifre
|
||||
The requested resource was not found;Resursa cerută nu a fost găsită
|
||||
We were not able to find the requested resource. This can have following reasons;Nu am putut găsi resursa solicitată. Acest lucru poate avea următoarele motive
|
||||
The resource was deleted;Resursa a fost ștearsă
|
||||
You have to permission to access this resource;Nu aveți permisiunea de a accesa această resursă
|
||||
You may have entered invalid data;Ați putut introduce date invalide
|
||||
A unknown bug occured;A apărut o eroare necunoscută
|
||||
An api was down and not proper handled;O interfață API a fost indisponibilă și nu a fost gestionată corespunzător
|
||||
A database with this name does already exist;O bază de date cu acest nume există deja
|
||||
Successfully installed quickshop-hikari;Quickshop-Hikari a fost instalat cu succes
|
||||
You need to enter a valid domain;Trebuie să introduceți un domeniu valid
|
||||
2fa code;Cod 2FA
|
||||
This feature is not available for;Această funcționalitate nu este disponibilă pentru
|
||||
Your account is currently not linked to discord;Contul dvs. nu este în prezent legat de Discord
|
||||
To use features like the discord bot, link your moonlight account with your discord account;Pentru a utiliza funcții precum botul Discord, legați-vă contul Moonlight de contul Discord
|
||||
Link account;Conectează contul
|
||||
Continue;Continuați
|
||||
Preparing;Pregătire
|
||||
Make sure you have installed one of the following apps on your smartphone and press continue;Asigurați-vă că ați instalat una dintre următoarele aplicații pe smartphone-ul dvs. și apăsați Continuare
|
||||
The max length for the name is 32 characters;Lungimea maximă a numelui este de 32 de caractere
|
||||
Successfully installed chunky;Chunky a fost instalat cu succes
|
||||
Successfully installed huskhomes;Huskhomes a fost instalat cu succes
|
||||
Successfully installed simply-farming;Simply-Farming a fost instalat cu succes
|
||||
You need to specify a first name;Trebuie să specificați un prenume
|
||||
You need to specify a last name;Trebuie să specificați un nume de familie
|
||||
You need to specify a password;Trebuie să specificați o parolă
|
||||
Please solve the captcha;Vă rugăm să rezolvați captcha
|
||||
The email is already in use;Adresa de email este deja folosită
|
||||
The dns records of your webspace do not point to the host system;Înregistrările DNS ale spațiului dvs. web nu se îndreaptă către sistemul gazdă
|
||||
Scan complete;Scanare completă
|
||||
Currently scanning:;În prezent se scanează:
|
||||
Successfully installed dynmap;Dynmap a fost instalat cu succes
|
||||
Successfully installed squaremap;Squaremap a fost instalat cu succes
|
||||
No web host found;Niciun gazdă web găsită
|
||||
No web host found to deploy to;Niciun gazdă web găsită pentru a implementa
|
||||
Successfully installed sleeper;Sleeper a fost instalat cu succes
|
||||
You need to enter a domain;Trebuie să introduceți un domeniu
|
||||
Enter a ip;Introduceți o adresă IP
|
||||
Ip Bans;Interdicții IP
|
||||
Ip;Adresă IP
|
||||
Successfully installed simple-voice-chat;Simple-Voice-Chat a fost instalat cu succes
|
||||
Successfully installed smithing-table-fix;Smithing-Table-Fix a fost instalat cu succes
|
||||
Successfully installed justplayer-tpa;Justplayer-TPA a fost instalat cu succes
|
||||
Successfully installed ishop;iShop a fost instalat cu succes
|
||||
Successfully installed lifestealre;Lifestealre a fost instalat cu succes
|
||||
Successfully installed lifeswap;Lifeswap a fost instalat cu succes
|
||||
Java version;Versiune Java
|
||||
Jar file;Fișier JAR
|
||||
Select jar to execute on start;Selectați fișierul JAR pentru a fi executat la pornire
|
||||
A website with this domain does already exist;Un website cu acest domeniu există deja
|
||||
Successfully installed discordsrv;DiscordSrv a fost instalat cu succes
|
||||
Reinstall;Reinstalați
|
||||
Reinstalling;Se reinstalează
|
||||
Successfully installed freedomchat;Freedomchat a fost instalat cu succes
|
||||
Leave empty for the default background image;Lăsați gol pentru imaginea de fundal implicită
|
||||
Background image url;URL-ul imaginii de fundal
|
||||
of CPU used;de CPU folosit
|
||||
memory used;memorie folosită
|
||||
163;163
|
||||
172;172
|
||||
Sentry;Sentry
|
||||
Sentry is enabled;Sentry este activat
|
||||
Successfully installed mobis-homes;Mobis-Homes a fost instalat cu succes
|
||||
Your moonlight account is disabled;Contul Moonlight este dezactivat
|
||||
Your moonlight account is currently disabled. But dont worry your data is still saved;Contul Moonlight este în prezent dezactivat. Dar nu vă faceți griji, datele dvs. sunt încă salvate
|
||||
You need to specify a email address;Trebuie să specificați o adresă de email
|
||||
A user with that email does already exist;Un utilizator cu această adresă de email există deja
|
||||
Successfully installed buildmode;Buildmode a fost instalat cu succes
|
||||
Successfully installed plasmo-voice;Plasmo-Voice a fost instalat cu succes
|
||||
157;157
|
||||
174;174
|
||||
158;158
|
||||
Webspace not found;Spațiu web nu găsit
|
||||
A webspace with that id cannot be found or you have no access for this webspace;Un spațiu web cu această ID nu poate fi găsit sau nu aveți acces la acest spațiu web
|
||||
No plugin download for your minecraft version found;Nu s-a găsit nicio descărcare de plugin pentru versiunea dvs. Minecraft
|
||||
Successfully installed gamemode-alias;Gamemode-Alias a fost instalat cu succes
|
||||
228;228
|
||||
User;Utilizator
|
||||
Send notification;Trimite notificare
|
||||
Successfully saved changes;Modificări salvate cu succes
|
||||
Archiving;Se arhivează
|
||||
Server is currently not archived;Serverul nu este arhivat în prezent
|
||||
Add allocation;Adaugă alocare
|
||||
231;231
|
||||
175;175
|
||||
Dotnet version;Versiune Dotnet
|
||||
Dll file;Fișier DLL
|
||||
Select dll to execute on start;Selectați fișierul DLL pentru a fi executat la pornire
|
|
@ -1,53 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>New moonlight login</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="background-color:#ffffff; padding: 45px 0 34px 0; border-radius: 24px; margin:40px auto; max-width: 600px;">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" height="auto"
|
||||
style="border-collapse:collapse">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="center" style="text-align:center; padding-bottom: 10px">
|
||||
<div style="text-align:center; margin:0 15px 34px 15px">
|
||||
<div style="margin-bottom: 10px">
|
||||
<a href="https://endelon-hosting.de" rel="noopener" target="_blank">
|
||||
<img alt="Logo" src="https://moonlight.endelon-hosting.de/assets/media/logo/MoonFullText.png" style="height: 35px">
|
||||
</a>
|
||||
</div>
|
||||
<div style="font-size: 14px; font-weight: 500; margin-bottom: 27px; font-family:Arial,Helvetica,sans-serif;">
|
||||
<p style="margin-bottom:9px; color:#181C32; font-size: 22px; font-weight:700">Hey {{FirstName}}, there is a new login in your moonlight account</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Here is all the data we collected</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">IP: {{Ip}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Device: {{Device}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Location: {{Location}}</p>
|
||||
</div>
|
||||
<a href="https://moonlight.endelon-hosting.de" target="_blank"
|
||||
style="background-color:#50cd89; border-radius:6px;display:inline-block; padding:11px 19px; color: #FFFFFF; font-size: 14px; font-weight:500;">Open Moonlight
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; text-align:center; padding: 0 10px 10px 10px; font-weight: 500; color: #A1A5B7; font-family:Arial,Helvetica,sans-serif">
|
||||
<p style="color:#181C32; font-size: 16px; font-weight: 600; margin-bottom:9px">You need help?</p>
|
||||
<p style="margin-bottom:2px">We are happy to help!</p>
|
||||
<p style="margin-bottom:4px">More information at
|
||||
<a href="https://endelon.link/support" rel="noopener" target="_blank" style="font-weight: 600">endelon.link/support</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; padding:0 15px; text-align:center; font-weight: 500; color: #A1A5B7;font-family:Arial,Helvetica,sans-serif">
|
||||
<p>Copyright 2022 Endelon Hosting </p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,53 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Moonlight password change</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="background-color:#ffffff; padding: 45px 0 34px 0; border-radius: 24px; margin:40px auto; max-width: 600px;">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" height="auto"
|
||||
style="border-collapse:collapse">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="center" style="text-align:center; padding-bottom: 10px">
|
||||
<div style="text-align:center; margin:0 15px 34px 15px">
|
||||
<div style="margin-bottom: 10px">
|
||||
<a href="https://endelon-hosting.de" rel="noopener" target="_blank">
|
||||
<img alt="Logo" src="https://moonlight.endelon-hosting.de/assets/media/logo/MoonFullText.png" style="height: 35px">
|
||||
</a>
|
||||
</div>
|
||||
<div style="font-size: 14px; font-weight: 500; margin-bottom: 27px; font-family:Arial,Helvetica,sans-serif;">
|
||||
<p style="margin-bottom:9px; color:#181C32; font-size: 22px; font-weight:700">Hey {{FirstName}}, your password has been changed</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">If this was not you please contact us. Also here is the data we collected.</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">IP: {{Ip}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Device: {{Device}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Location: {{Location}}</p>
|
||||
</div>
|
||||
<a href="https://moonlight.endelon-hosting.de" target="_blank"
|
||||
style="background-color:#50cd89; border-radius:6px;display:inline-block; padding:11px 19px; color: #FFFFFF; font-size: 14px; font-weight:500;">Open Moonlight
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; text-align:center; padding: 0 10px 10px 10px; font-weight: 500; color: #A1A5B7; font-family:Arial,Helvetica,sans-serif">
|
||||
<p style="color:#181C32; font-size: 16px; font-weight: 600; margin-bottom:9px">You need help?</p>
|
||||
<p style="margin-bottom:2px">We are happy to help!</p>
|
||||
<p style="margin-bottom:4px">More information at
|
||||
<a href="https://endelon.link/support" rel="noopener" target="_blank" style="font-weight: 600">endelon.link/support</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; padding:0 15px; text-align:center; font-weight: 500; color: #A1A5B7;font-family:Arial,Helvetica,sans-serif">
|
||||
<p>Copyright 2023 Endelon Hosting </p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Moonlight password reset</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="background-color:#ffffff; padding: 45px 0 34px 0; border-radius: 24px; margin:40px auto; max-width: 600px;">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" height="auto"
|
||||
style="border-collapse:collapse">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="center" style="text-align:center; padding-bottom: 10px">
|
||||
<div style="text-align:center; margin:0 15px 34px 15px">
|
||||
<div style="margin-bottom: 10px">
|
||||
<a href="https://endelon-hosting.de" rel="noopener" target="_blank">
|
||||
<img alt="Logo" src="https://moonlight.endelon-hosting.de/assets/media/logo/MoonFullText.png" style="height: 35px">
|
||||
</a>
|
||||
</div>
|
||||
<div style="font-size: 14px; font-weight: 500; margin-bottom: 27px; font-family:Arial,Helvetica,sans-serif;">
|
||||
<p style="margin-bottom:9px; color:#181C32; font-size: 22px; font-weight:700">Hey {{FirstName}}, your password has been resetted</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Your new password is: <b>{{Password}}</b></p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">If this was not you please contact us. Also here is the data we collected.</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">IP: {{Ip}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Device: {{Device}}</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">Location: {{Location}}</p>
|
||||
</div>
|
||||
<a href="https://moonlight.endelon-hosting.de" target="_blank"
|
||||
style="background-color:#50cd89; border-radius:6px;display:inline-block; padding:11px 19px; color: #FFFFFF; font-size: 14px; font-weight:500;">Open Moonlight
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; text-align:center; padding: 0 10px 10px 10px; font-weight: 500; color: #A1A5B7; font-family:Arial,Helvetica,sans-serif">
|
||||
<p style="color:#181C32; font-size: 16px; font-weight: 600; margin-bottom:9px">You need help?</p>
|
||||
<p style="margin-bottom:2px">We are happy to help!</p>
|
||||
<p style="margin-bottom:4px">More information at
|
||||
<a href="https://endelon.link/support" rel="noopener" target="_blank" style="font-weight: 600">endelon.link/support</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; padding:0 15px; text-align:center; font-weight: 500; color: #A1A5B7;font-family:Arial,Helvetica,sans-serif">
|
||||
<p>Copyright 2022 Endelon Hosting </p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,50 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Welcome</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="background-color:#ffffff; padding: 45px 0 34px 0; border-radius: 24px; margin:40px auto; max-width: 600px;">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" height="auto"
|
||||
style="border-collapse:collapse">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="center" style="text-align:center; padding-bottom: 10px">
|
||||
<div style="text-align:center; margin:0 15px 34px 15px">
|
||||
<div style="margin-bottom: 10px">
|
||||
<a href="https://endelon-hosting.de" rel="noopener" target="_blank">
|
||||
<img alt="Logo" src="https://moonlight.endelon-hosting.de/assets/media/logo/MoonFullText.png" style="height: 35px">
|
||||
</a>
|
||||
</div>
|
||||
<div style="font-size: 14px; font-weight: 500; margin-bottom: 27px; font-family:Arial,Helvetica,sans-serif;">
|
||||
<p style="margin-bottom:9px; color:#181C32; font-size: 22px; font-weight:700">Hey {{FirstName}}, welcome to moonlight</p>
|
||||
<p style="margin-bottom:2px; color:#7E8299">We are happy to welcome you in ;)</p>
|
||||
</div>
|
||||
<a href="https://moonlight.endelon-hosting.de" target="_blank"
|
||||
style="background-color:#50cd89; border-radius:6px;display:inline-block; padding:11px 19px; color: #FFFFFF; font-size: 14px; font-weight:500;">Open Moonlight
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; text-align:center; padding: 0 10px 10px 10px; font-weight: 500; color: #A1A5B7; font-family:Arial,Helvetica,sans-serif">
|
||||
<p style="color:#181C32; font-size: 16px; font-weight: 600; margin-bottom:9px">You need help?</p>
|
||||
<p style="margin-bottom:2px">We are happy to help!</p>
|
||||
<p style="margin-bottom:4px">More information at
|
||||
<a href="https://endelon.link/support" rel="noopener" target="_blank" style="font-weight: 600">endelon.link/support</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="center"
|
||||
style="font-size: 13px; padding:0 15px; text-align:center; font-weight: 500; color: #A1A5B7;font-family:Arial,Helvetica,sans-serif">
|
||||
<p>Copyright 2022 Endelon Hosting </p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 871 KiB |
|
@ -1,14 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256px" height="301px" viewBox="0 0 256 301" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<defs>
|
||||
<linearGradient x1="2.17771739%" y1="34.7938955%" x2="92.7221942%" y2="91.3419405%" id="linearGradient-1">
|
||||
<stop stop-color="#41A7EF" offset="0%"></stop>
|
||||
<stop stop-color="#813DDE" offset="54.2186236%"></stop>
|
||||
<stop stop-color="#8F2EE2" offset="74.4988788%"></stop>
|
||||
<stop stop-color="#A11CE6" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path d="M124.183681,101.699 C124.183681,66.515 136.256681,34.152 156.486681,8.525 C159.197681,5.092 156.787681,0.069 152.412681,0.012 C151.775681,0.004 151.136681,0 150.497681,0 C67.6206813,0 0.390681343,66.99 0.00168134279,149.775 C-0.386318657,232.369 66.4286813,300.195 149.019681,300.988 C189.884681,301.381 227.036681,285.484 254.376681,259.395 C257.519681,256.396 255.841681,251.082 251.548681,250.42 C179.413681,239.291 124.183681,176.949 124.183681,101.699" fill="url(#linearGradient-1)"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB |
Loading…
Reference in a new issue