mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
round out dns check, dns server check, port forward check, and gateway port forwards
This commit is contained in:
@@ -683,6 +683,14 @@ export default {
|
||||
743: 'In Ihrem Gateway',
|
||||
744: 'diese Portweiterleitungsregel erstellen',
|
||||
745: 'Externer Port',
|
||||
746: 'Interne IP',
|
||||
747: 'Interner Port',
|
||||
749: 'DNS-Server-Konfiguration',
|
||||
750: 'muss konfiguriert werden, um',
|
||||
751: 'die LAN-IP-Adresse dieses Servers',
|
||||
752: 'als DNS-Server zu verwenden',
|
||||
753: 'DNS-Server',
|
||||
754: 'Portweiterleitungen anzeigen',
|
||||
755: 'Schnittstelle(n)',
|
||||
756: 'Keine Portweiterleitungsregeln',
|
||||
757: 'Portweiterleitungsregeln am Gateway erforderlich',
|
||||
} satisfies i18n
|
||||
|
||||
@@ -683,6 +683,14 @@ export const ENGLISH: Record<string, number> = {
|
||||
'In your gateway': 743, // partial sentence, followed by a gateway name
|
||||
'create this port forwarding rule': 744,
|
||||
'External Port': 745,
|
||||
'Internal IP': 746,
|
||||
'Internal Port': 747,
|
||||
'DNS Server Config': 749,
|
||||
'must be configured to use': 750,
|
||||
'the LAN IP address of this server': 751,
|
||||
'as its DNS server': 752,
|
||||
'DNS Server': 753,
|
||||
'View port forwards': 754,
|
||||
'Interface(s)': 755,
|
||||
'No port forwarding rules': 756,
|
||||
'Port forwarding rules required on gateway': 757,
|
||||
}
|
||||
|
||||
@@ -683,6 +683,14 @@ export default {
|
||||
743: 'En su puerta de enlace',
|
||||
744: 'cree esta regla de reenvío de puertos',
|
||||
745: 'Puerto externo',
|
||||
746: 'IP interna',
|
||||
747: 'Puerto interno',
|
||||
749: 'Configuración del servidor DNS',
|
||||
750: 'debe estar configurada para usar',
|
||||
751: 'la dirección IP LAN de este servidor',
|
||||
752: 'como su servidor DNS',
|
||||
753: 'Servidor DNS',
|
||||
754: 'Ver redirecciones de puertos',
|
||||
755: 'Interfaz/Interfaces',
|
||||
756: 'Sin reglas de redirección de puertos',
|
||||
757: 'Reglas de redirección de puertos requeridas en la puerta de enlace',
|
||||
} satisfies i18n
|
||||
|
||||
@@ -683,6 +683,14 @@ export default {
|
||||
743: 'Dans votre passerelle',
|
||||
744: 'créez cette règle de redirection de port',
|
||||
745: 'Port externe',
|
||||
746: 'IP interne',
|
||||
747: 'Port interne',
|
||||
749: 'Configuration du serveur DNS',
|
||||
750: 'doit être configurée pour utiliser',
|
||||
751: "l'adresse IP LAN de ce serveur",
|
||||
752: 'comme serveur DNS',
|
||||
753: 'Serveur DNS',
|
||||
754: 'Voir les redirections de ports',
|
||||
755: 'Interface(s)',
|
||||
756: 'Aucune règle de redirection de port',
|
||||
757: 'Règles de redirection de ports requises sur la passerelle',
|
||||
} satisfies i18n
|
||||
|
||||
@@ -683,6 +683,14 @@ export default {
|
||||
743: 'W bramie',
|
||||
744: 'utwórz tę regułę przekierowania portów',
|
||||
745: 'Port zewnętrzny',
|
||||
746: 'Wewnętrzny IP',
|
||||
747: 'Port wewnętrzny',
|
||||
749: 'Konfiguracja serwera DNS',
|
||||
750: 'musi być skonfigurowana do używania',
|
||||
751: 'adresu IP LAN tego serwera',
|
||||
752: 'jako serwera DNS',
|
||||
753: 'Serwer DNS',
|
||||
754: 'Wyświetl przekierowania portów',
|
||||
755: 'Interfejs(y)',
|
||||
756: 'Brak reguł przekierowania portów',
|
||||
757: 'Reguły przekierowania portów wymagane na bramce',
|
||||
} satisfies i18n
|
||||
|
||||
@@ -30,7 +30,6 @@ export function getErrorMessage(e: HttpError | string, link?: string): string {
|
||||
'Request Error. Your browser blocked the request. This is usually caused by a corrupt browser cache or an overly aggressive ad blocker. Please clear your browser cache and/or adjust your ad blocker and try again'
|
||||
} else if (!e.message) {
|
||||
message = 'Unknown Error'
|
||||
link = 'https://docs.start9.com/help/common-issues.html'
|
||||
} else {
|
||||
message = e.message
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user