Localizations batch 5 and import update (#2422)

* Locations import update

* Fix formatting

* Fix import paths
This commit is contained in:
sunghyunkang1111
2026-03-11 13:51:19 -05:00
committed by GitHub
parent 0cf0eca068
commit f723b4746d
60 changed files with 176 additions and 182 deletions

View File

@@ -22,11 +22,10 @@ import {
Stack,
Text,
} from "@fluentui/react";
import { Keys, t } from "Localization";
import * as React from "react";
import { Urls } from "../../../Common/Constants";
import { StyleConstants } from "../../../Common/StyleConstants";
import { Keys } from "../../../Localization/Keys.generated";
import { t } from "../../../Localization/t";
import { hoursInAMonth } from "../../../Shared/Constants";
import {
computeRUUsagePriceHourly,
@@ -371,7 +370,7 @@ export const getEstimatedSpendingElement = (
export const manualToAutoscaleDisclaimerElement: JSX.Element = (
<Text styles={infoAndToolTipTextStyle} id="manualToAutoscaleDisclaimerElement">
{t(Keys.controls.settings.throughput.manualToAutoscaleDisclaimer)}{" "}
<Link href={Urls.autoscaleMigration}>Learn more</Link>
<Link href={Urls.autoscaleMigration}>{t(Keys.common.learnMore)}</Link>
</Text>
);