mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-07 11:16:37 +00:00
add en-US
This commit is contained in:
@@ -1756,5 +1756,7 @@
|
|||||||
"resourceHeaderAuthSetupTitle": "Set Header Authentication",
|
"resourceHeaderAuthSetupTitle": "Set Header Authentication",
|
||||||
"resourceHeaderAuthSetupTitleDescription": "Set the basic auth credentials (username and password) to protect this resource with HTTP Header Authentication. Leave both fields blank to remove existing header authentication.",
|
"resourceHeaderAuthSetupTitleDescription": "Set the basic auth credentials (username and password) to protect this resource with HTTP Header Authentication. Leave both fields blank to remove existing header authentication.",
|
||||||
"resourceHeaderAuthSubmit": "Set Header Authentication",
|
"resourceHeaderAuthSubmit": "Set Header Authentication",
|
||||||
"actionSetResourceHeaderAuth": "Set Header Authentication"
|
"actionSetResourceHeaderAuth": "Set Header Authentication",
|
||||||
|
"priority": "Priority",
|
||||||
|
"priorityDescription": "Higher priority routes are evaluated first. Priority = 100 means automatic ordering (system decides). Use another number to enforce manual priority."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -819,7 +819,7 @@ export default function ReverseProxyTargets(props: {
|
|||||||
id: "priority",
|
id: "priority",
|
||||||
header: () => (
|
header: () => (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
Priority
|
{t("priority")}
|
||||||
<TooltipProvider>
|
<TooltipProvider>
|
||||||
<Tooltip>
|
<Tooltip>
|
||||||
<TooltipTrigger>
|
<TooltipTrigger>
|
||||||
@@ -827,10 +827,7 @@ export default function ReverseProxyTargets(props: {
|
|||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent className="max-w-xs">
|
<TooltipContent className="max-w-xs">
|
||||||
<p>
|
<p>
|
||||||
Higher priority routes are evaluated first.
|
{t("priorityDescription")}
|
||||||
Priority = 100 means automatic ordering
|
|
||||||
(system decides). Use another number to
|
|
||||||
enforce manual priority.
|
|
||||||
</p>
|
</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|||||||
@@ -229,7 +229,7 @@ export default function Page() {
|
|||||||
|
|
||||||
const [isAdvancedMode, setIsAdvancedMode] = useState(() => {
|
const [isAdvancedMode, setIsAdvancedMode] = useState(() => {
|
||||||
if (typeof window !== "undefined") {
|
if (typeof window !== "undefined") {
|
||||||
const saved = localStorage.getItem("proxy-advanced-mode");
|
const saved = localStorage.getItem("create-advanced-mode");
|
||||||
return saved === "true";
|
return saved === "true";
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@@ -705,7 +705,7 @@ export default function Page() {
|
|||||||
id: "priority",
|
id: "priority",
|
||||||
header: () => (
|
header: () => (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
Priority
|
{t("priority")}
|
||||||
<TooltipProvider>
|
<TooltipProvider>
|
||||||
<Tooltip>
|
<Tooltip>
|
||||||
<TooltipTrigger>
|
<TooltipTrigger>
|
||||||
@@ -713,10 +713,7 @@ export default function Page() {
|
|||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent className="max-w-xs">
|
<TooltipContent className="max-w-xs">
|
||||||
<p>
|
<p>
|
||||||
Higher priority routes are evaluated first.
|
{t("priorityDescription")}
|
||||||
Priority = 100 means automatic ordering
|
|
||||||
(system decides). Use another number to
|
|
||||||
enforce manual priority.
|
|
||||||
</p>
|
</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|||||||
Reference in New Issue
Block a user