-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1734 from dev-protocol/domain-localization
Domain localization
- Loading branch information
Showing
6 changed files
with
100 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import type { ClubsI18nParts } from '@devprotocol/clubs-core' | ||
|
||
export const Strings = { | ||
Header: { | ||
en: () => 'It All Starts with a Domain', | ||
ja: () => '', | ||
}, | ||
SubHeader: { | ||
en: () => 'You can use your preferred domain for your club.', | ||
ja: () => '', | ||
}, | ||
DomainAvailable: { | ||
en: () => 'Domain available', | ||
ja: () => '', | ||
}, | ||
DomainUnavailable: { | ||
en: () => 'Domain unavailable', | ||
ja: () => '', | ||
}, | ||
Continue: { | ||
en: () => 'Continue', | ||
ja: () => '', | ||
}, | ||
} satisfies ClubsI18nParts |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import type { ClubsI18nParts } from '@devprotocol/clubs-core' | ||
|
||
export const Strings = { | ||
EmailSending: { | ||
en: () => 'Sending a magic link', | ||
ja: () => '', | ||
}, | ||
EmailSent: { | ||
en: () => 'Check your inbox', | ||
ja: () => '', | ||
}, | ||
Continue: { | ||
en: () => 'Continue', | ||
ja: () => '', | ||
}, | ||
EmailPlaceholder: { | ||
en: () => 'Your email', | ||
ja: () => '', | ||
}, | ||
} satisfies ClubsI18nParts |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { ClubsI18nParts } from '@devprotocol/clubs-core' | ||
|
||
export const Strings = { | ||
Header: { | ||
en: () => 'Connect Your Account', | ||
ja: () => '', | ||
}, | ||
SubHeader: { | ||
en: () => 'Link your account to your club.', | ||
ja: () => '', | ||
}, | ||
WalletCheck: { | ||
en: () => 'Already have a wallet?', | ||
ja: () => '', | ||
}, | ||
} satisfies ClubsI18nParts |