| import i18n from 'i18n-calypso'; | |
| export default { | |
| sixDigit2faPlaceholder: i18n.translate( 'E.g. %(example)s', { args: { example: '123456' } } ), | |
| sevenDigit2faPlaceholder: i18n.translate( 'E.g. %(example)s', { args: { example: '1234567' } } ), | |
| eightDigitBackupCodePlaceholder: i18n.translate( 'E.g. %(example)s', { | |
| args: { example: '12345678' }, | |
| } ), | |
| }; | |