Merge branch 'IDTEAM-1.26.0' into 'main'
[ProtonMail-WebClient.git] / packages / pass / lib / password / memorable.ts
blob0da6b29b0e0c285d1ce3db10355a79431ad67898
1 import { c } from 'ttag';
3 import { SeperatorOptions } from './types';
5 export const getSeperatorTranslation = (seperator: SeperatorOptions) =>
6     ({
7         [SeperatorOptions.HYPHEN]: c('Option').t`Hyphens`,
8         [SeperatorOptions.SPACE]: c('Option').t`Spaces`,
9         [SeperatorOptions.PERIOD]: c('Option').t`Periods`,
10         [SeperatorOptions.COMMA]: c('Option').t`Commas`,
11         [SeperatorOptions.UNDERSCORE]: c('Option').t`Underscores`,
12         [SeperatorOptions.NUMBER]: c('Option').t`Numbers`,
13         [SeperatorOptions.NUMBER_OR_SYMBOL]: c('Option').t`Numbers and Symbols`,
14     })[seperator];