diff --git a/dictation_client/src/pages/LicensePage/licenseSummary.tsx b/dictation_client/src/pages/LicensePage/licenseSummary.tsx index b305b66..058350d 100644 --- a/dictation_client/src/pages/LicensePage/licenseSummary.tsx +++ b/dictation_client/src/pages/LicensePage/licenseSummary.tsx @@ -121,9 +121,9 @@ export const LicenseSummary: React.FC = (
-
+

{companyName}

-
    +
    • {/* 他アカウントのライセンス情報を見ている場合は、前画面に戻る用のreturnボタンを表示 */} {selectedRow && ( @@ -194,99 +194,133 @@ export const LicenseSummary: React.FC = ( )}
    -
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.totalLicense" - ) - )} -
    -
    {licenseSummaryInfo.totalLicense}
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.allocatedLicense" - ) - )} -
    -
    {licenseSummaryInfo.allocatedLicense}
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.reusableLicense" - ) - )} -
    -
    {licenseSummaryInfo.reusableLicense}
    -
    - {t( - getTranslationID("LicenseSummaryPage.label.freeLicense") - )} -
    -
    {licenseSummaryInfo.freeLicense}
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.expiringWithin14daysLicense" - ) - )} -
    -
    {licenseSummaryInfo.expiringWithin14daysLicense}
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.issueRequesting" - ) - )} -
    -
    {licenseSummaryInfo.issueRequesting}
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.numberOfRequesting" - ) - )} -
    -
    {licenseSummaryInfo.numberOfRequesting}
    -
    - {t(getTranslationID("LicenseSummaryPage.label.shortage"))} -
    -
    - 0 ? styles.isAlert : "" - } - > - {licenseSummaryInfo.shortage} - -
    -
    - {t( - getTranslationID("LicenseSummaryPage.label.storageSize") - )} -
    -
    {licenseSummaryInfo.storageSize}GB
    -
    - {t(getTranslationID("LicenseSummaryPage.label.usedSize"))} -
    -
    {licenseSummaryInfo.usedSize}GB
    -
    - {t( - getTranslationID( - "LicenseSummaryPage.label.storageAvailable" - ) - )} -
    -
    - {licenseSummaryInfo.isStorageAvailable && ( - - )} - {!licenseSummaryInfo.isStorageAvailable && ( - - )} -
    -
    +
    +
    +

    + {t( + getTranslationID( + "LicenseSummaryPage.label.licenseLabel" + ) + )} +

    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.totalLicense" + ) + )} +
    +
    {licenseSummaryInfo.totalLicense}
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.freeLicense" + ) + )} +
    +
    {licenseSummaryInfo.freeLicense}
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.reusableLicense" + ) + )} +
    +
    {licenseSummaryInfo.reusableLicense}
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.allocatedLicense" + ) + )} +
    +
    {licenseSummaryInfo.allocatedLicense}
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.expiringWithin14daysLicense" + ) + )} +
    +
    {licenseSummaryInfo.expiringWithin14daysLicense}
    +
    + {t( + getTranslationID("LicenseSummaryPage.label.shortage") + )} +
    +
    + 0 + ? styles.isAlert + : "" + } + > + {licenseSummaryInfo.shortage} + +
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.issueRequesting" + ) + )} +
    +
    {licenseSummaryInfo.issueRequesting}
    +
    +
    +
    +
    +

    + {t( + getTranslationID( + "LicenseSummaryPage.label.storageLabel" + ) + )} +

    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.storageSize" + ) + )} +
    +
    {licenseSummaryInfo.storageSize}GB
    +
    + {t( + getTranslationID("LicenseSummaryPage.label.usedSize") + )} +
    +
    {licenseSummaryInfo.usedSize}GB
    +
    + {t( + getTranslationID( + "LicenseSummaryPage.label.storageAvailable" + ) + )} +
    +
    + {licenseSummaryInfo.isStorageAvailable && ( + + )} + {!licenseSummaryInfo.isStorageAvailable && ( + + )} +
    +
    +
diff --git a/dictation_client/src/translation/de.json b/dictation_client/src/translation/de.json index 5bc34d0..30aea18 100644 --- a/dictation_client/src/translation/de.json +++ b/dictation_client/src/translation/de.json @@ -180,7 +180,9 @@ "shortage": "Mangel", "storageSize": "Lagerung verfügbar", "usedSize": "Gebrauchter Lagerung", - "storageAvailable": "Speicher nicht verfügbar (Menge überschritten)" + "storageAvailable": "Speicher nicht verfügbar (Menge überschritten)", + "licenseLabel": "(de)License", + "storageLabel": "(de)Storage" } }, "licenseOrderPage": { @@ -532,10 +534,10 @@ "title": "(de)Terms of Use has updated. Please confirm again.", "linkOfEula": "(de)Click here to read the terms of use.", "linkOfDpa": "(de)Click here to read the terms of use.", - "linkOfPrivacyNotice": "(de)Click here to read the terms of use.", "checkBoxForConsent": "(de)Yes, I agree to the terms of use.", "forOdds": "(de)for ODDS.", - "button": "(de)Continue" + "button": "(de)Continue", + "linkOfPrivacyNotice": "(de)Click here to read the terms of use." } }, "supportPage": { diff --git a/dictation_client/src/translation/en.json b/dictation_client/src/translation/en.json index 785e88a..90af47f 100644 --- a/dictation_client/src/translation/en.json +++ b/dictation_client/src/translation/en.json @@ -180,7 +180,9 @@ "shortage": "Shortage", "storageSize": "Storage Available", "usedSize": "Storage Used", - "storageAvailable": "Storage Unavailable (Exceeded Amount)" + "storageAvailable": "Storage Unavailable (Exceeded Amount)", + "licenseLabel": "License", + "storageLabel": "Storage" } }, "licenseOrderPage": { @@ -532,10 +534,10 @@ "title": "Terms of Use has updated. Please confirm again.", "linkOfEula": "Click here to read the terms of use.", "linkOfDpa": "Click here to read the terms of use.", - "linkOfPrivacyNotice": "Click here to read the terms of use.", "checkBoxForConsent": "Yes, I agree to the terms of use.", "forOdds": "for ODDS.", - "button": "Continue" + "button": "Continue", + "linkOfPrivacyNotice": "Click here to read the terms of use." } }, "supportPage": { diff --git a/dictation_client/src/translation/es.json b/dictation_client/src/translation/es.json index 9fae99a..7840ac8 100644 --- a/dictation_client/src/translation/es.json +++ b/dictation_client/src/translation/es.json @@ -180,7 +180,9 @@ "shortage": "Escasez", "storageSize": "Almacenamiento disponible", "usedSize": "Almacenamiento utilizado", - "storageAvailable": "Almacenamiento no disponible (cantidad excedida)" + "storageAvailable": "Almacenamiento no disponible (cantidad excedida)", + "licenseLabel": "(es)License", + "storageLabel": "(es)Storage" } }, "licenseOrderPage": { @@ -532,10 +534,10 @@ "title": "(es)Terms of Use has updated. Please confirm again.", "linkOfEula": "(es)Click here to read the terms of use.", "linkOfDpa": "(es)Click here to read the terms of use.", - "linkOfPrivacyNotice": "(es)Click here to read the terms of use.", "checkBoxForConsent": "(es)Yes, I agree to the terms of use.", "forOdds": "(es)for ODDS.", - "button": "(es)Continue" + "button": "(es)Continue", + "linkOfPrivacyNotice": "(es)Click here to read the terms of use." } }, "supportPage": { diff --git a/dictation_client/src/translation/fr.json b/dictation_client/src/translation/fr.json index d0a2bfa..803a2c4 100644 --- a/dictation_client/src/translation/fr.json +++ b/dictation_client/src/translation/fr.json @@ -180,7 +180,9 @@ "shortage": "Pénurie", "storageSize": "Stockage disponible", "usedSize": "Stockage utilisé", - "storageAvailable": "Stockage indisponible (montant dépassée)" + "storageAvailable": "Stockage indisponible (montant dépassée)", + "licenseLabel": "(fr)License", + "storageLabel": "(fr)Storage" } }, "licenseOrderPage": { @@ -532,10 +534,10 @@ "title": "(fr)Terms of Use has updated. Please confirm again.", "linkOfEula": "(fr)Click here to read the terms of use.", "linkOfDpa": "(fr)Click here to read the terms of use.", - "linkOfPrivacyNotice": "(fr)Click here to read the terms of use.", "checkBoxForConsent": "(fr)Yes, I agree to the terms of use.", "forOdds": "(fr)for ODDS.", - "button": "(fr)Continue" + "button": "(fr)Continue", + "linkOfPrivacyNotice": "(fr)Click here to read the terms of use." } }, "supportPage": {