mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 16:56:39 +00:00
Rename nice id to Identifier in the ui
This commit is contained in:
@@ -2101,5 +2101,7 @@
|
|||||||
"niceIdUpdatedSuccessfully": "Nice ID Updated Successfully",
|
"niceIdUpdatedSuccessfully": "Nice ID Updated Successfully",
|
||||||
"niceIdUpdateError": "Error updating Nice ID",
|
"niceIdUpdateError": "Error updating Nice ID",
|
||||||
"niceIdUpdateErrorDescription": "An error occurred while updating the Nice ID.",
|
"niceIdUpdateErrorDescription": "An error occurred while updating the Nice ID.",
|
||||||
"niceIdCannotBeEmpty": "Nice ID cannot be empty"
|
"niceIdCannotBeEmpty": "Nice ID cannot be empty",
|
||||||
|
"enterIdentifier": "Enter identifier",
|
||||||
|
"identifier": "Identifier"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -320,11 +320,11 @@ export default function GeneralForm() {
|
|||||||
name="niceId"
|
name="niceId"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t("niceId") || "Nice ID"}</FormLabel>
|
<FormLabel>{t("identifier")}</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
{...field}
|
{...field}
|
||||||
placeholder="Enter Nice ID"
|
placeholder={t("enterIdentifier")}
|
||||||
className="flex-1"
|
className="flex-1"
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|||||||
@@ -161,11 +161,11 @@ export default function GeneralPage() {
|
|||||||
name="niceId"
|
name="niceId"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t("niceId") || "Nice ID"}</FormLabel>
|
<FormLabel>{t("identifier")}</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
{...field}
|
{...field}
|
||||||
placeholder="Enter Nice ID"
|
placeholder={t("enterIdentifier")}
|
||||||
className="flex-1"
|
className="flex-1"
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|||||||
Reference in New Issue
Block a user