Merged in feat/lokalise-rebuild (pull request #2993)

Feat/lokalise rebuild

* chore(lokalise): update translation ids

* chore(lokalise): easier to switch between projects

* chore(lokalise): update translation ids

* .

* .

* .

* .

* .

* .

* chore(lokalise): update translation ids

* chore(lokalise): update translation ids

* .

* .

* .

* chore(lokalise): update translation ids

* chore(lokalise): update translation ids

* .

* .

* chore(lokalise): update translation ids

* chore(lokalise): update translation ids

* chore(lokalise): new translations

* merge

* switch to errors for missing id's

* merge

* sync translations


Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-10-22 11:00:03 +00:00
parent bdfe2ab213
commit aafad9781f
499 changed files with 93363 additions and 99164 deletions

View File

@@ -28,9 +28,11 @@ export default function DigitalTeamMemberCardAlert() {
variant="inline"
type={AlertTypeEnum.Success}
heading={intl.formatMessage({
id: "myPages.teamMemberCardAdded",
defaultMessage: "Team Member Card added",
})}
text={intl.formatMessage({
id: "myPages.accessYourTeamMemberCard",
defaultMessage:
"Access your Team Member Card here on My Pages Overview.",
})}

View File

@@ -49,6 +49,7 @@ export default function DigitalTeamMemberCardClient({
<Typography variant="Body/Paragraph/mdRegular">
<p className={styles.footer}>
{intl.formatMessage({
id: "myPages.bookDiscountedStaysForSelfFamilyAndFriends",
defaultMessage:
"Book discounted stays for yourself, family and friends!",
})}
@@ -62,6 +63,7 @@ export default function DigitalTeamMemberCardClient({
>
<span className={styles.link}>
{intl.formatMessage({
id: "myPages.checkOutAllYourBenefits",
defaultMessage: "Check out all your benefits",
})}
<MaterialIcon icon="open_in_new" size={20} color="CurrentColor" />

View File

@@ -120,8 +120,14 @@ export default function DigitalTeamMemberCardContent({
<div className={styles.top}>
<span>
{employeeInfo?.retired
? intl.formatMessage({ defaultMessage: "Senior Team Member" })
: intl.formatMessage({ defaultMessage: "Team Member" })}
? intl.formatMessage({
id: "myPages.seniorTeamMember",
defaultMessage: "Senior Team Member",
})
: intl.formatMessage({
id: "myPages.teamMember",
defaultMessage: "Team Member",
})}
</span>
<span>{employeeInfo?.country || notAvailableText}</span>
</div>
@@ -158,8 +164,14 @@ export default function DigitalTeamMemberCardContent({
<span>{employeeInfo?.location || notAvailableText}</span>
<span>
{employeeInfo?.retired
? intl.formatMessage({ defaultMessage: "Retired" })
: intl.formatMessage({ defaultMessage: "Employee" })}
? intl.formatMessage({
id: "myPages.retired",
defaultMessage: "Retired",
})
: intl.formatMessage({
id: "myPages.employee",
defaultMessage: "Employee",
})}
</span>
</div>
</Typography>