mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
Some dns additions
This commit is contained in:
parent
34dfbe2c36
commit
8dd6880f8c
3
frontend/src/locale/src/HelpDoc/en/DNSProviders.md
Normal file
3
frontend/src/locale/src/HelpDoc/en/DNSProviders.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# DNS Providers Help
|
||||||
|
|
||||||
|
todo
|
@ -1 +1,2 @@
|
|||||||
export * as CertificateAuthorities from "./CertificateAuthorities.md";
|
export * as CertificateAuthorities from "./CertificateAuthorities.md";
|
||||||
|
export * as DNSProviders from "./DNSProviders.md";
|
||||||
|
@ -56,6 +56,9 @@
|
|||||||
"acmesh.dns_infoblox": {
|
"acmesh.dns_infoblox": {
|
||||||
"defaultMessage": "Infoblox"
|
"defaultMessage": "Infoblox"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_inwx": {
|
||||||
|
"defaultMessage": "INWX"
|
||||||
|
},
|
||||||
"acmesh.dns_ispconfig": {
|
"acmesh.dns_ispconfig": {
|
||||||
"defaultMessage": "ISPConfig"
|
"defaultMessage": "ISPConfig"
|
||||||
},
|
},
|
||||||
@ -77,6 +80,9 @@
|
|||||||
"acmesh.dns_pdns": {
|
"acmesh.dns_pdns": {
|
||||||
"defaultMessage": "PowerDNS"
|
"defaultMessage": "PowerDNS"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_servercow": {
|
||||||
|
"defaultMessage": "Servercow"
|
||||||
|
},
|
||||||
"acmesh.dns_unoeuro": {
|
"acmesh.dns_unoeuro": {
|
||||||
"defaultMessage": "UnoEuro"
|
"defaultMessage": "UnoEuro"
|
||||||
},
|
},
|
||||||
|
@ -1,12 +1,7 @@
|
|||||||
import { useEffect, useReducer, useState } from "react";
|
import { useEffect, useReducer, useState } from "react";
|
||||||
|
|
||||||
import { Alert, AlertIcon } from "@chakra-ui/react";
|
import { Alert, AlertIcon } from "@chakra-ui/react";
|
||||||
import {
|
import { EmptyList, SpinnerPage, tableEventReducer } from "components";
|
||||||
EmptyList,
|
|
||||||
PrettyButton,
|
|
||||||
SpinnerPage,
|
|
||||||
tableEventReducer,
|
|
||||||
} from "components";
|
|
||||||
import { useDNSProviders } from "hooks";
|
import { useDNSProviders } from "hooks";
|
||||||
import { intl } from "locale";
|
import { intl } from "locale";
|
||||||
|
|
||||||
@ -68,11 +63,6 @@ function TableWrapper({ onCreateClick }: TableWrapperProps) {
|
|||||||
<EmptyList
|
<EmptyList
|
||||||
title={intl.formatMessage({ id: "create-dns-provider-title" })}
|
title={intl.formatMessage({ id: "create-dns-provider-title" })}
|
||||||
summary={intl.formatMessage({ id: "create-hint" })}
|
summary={intl.formatMessage({ id: "create-hint" })}
|
||||||
createButton={
|
|
||||||
<PrettyButton mt={5} onClick={onCreateClick}>
|
|
||||||
{intl.formatMessage({ id: "lets-go" })}
|
|
||||||
</PrettyButton>
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user