-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add fixed translations for add row label
- Loading branch information
1 parent
a06fa34
commit 2b5a9ec
Showing
8 changed files
with
84 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
frontend/src/features/verifiable-fields/components/VerifiableFieldContainer/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Language } from '~shared/types' | ||
|
||
type VerifyTranslations = { | ||
Verify: string | ||
Verified: string | ||
} | ||
|
||
export const VERIFY_LABEL_TRANSLATIONS: Record<Language, VerifyTranslations> = { | ||
[Language.ENGLISH]: { Verify: 'Verify', Verified: 'Verified' }, | ||
[Language.CHINESE]: { Verify: '验证', Verified: '已验证' }, | ||
[Language.MALAY]: { Verify: 'Sahkan', Verified: 'Disahkan' }, | ||
[Language.TAMIL]: { | ||
Verify: 'சரிபார்க்கவும்', | ||
Verified: 'சரிபார்க்கப்பட்டது', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters