Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / helpers / premium.ts
blob8675c8f264f7bfc7725a861b8ae22676f383a325
1 import { c } from 'ttag';
3 export const getPremium = (appName1: string, appName2?: string, appName3?: string) => {
4     if (!appName2 && !appName3) {
5         return c('specialoffer: Deal details').t`Premium ${appName1}`;
6     }
7     if (!appName3) {
8         return c('specialoffer: Deal details').t`Premium ${appName1} & ${appName2}`;
9     }
10     return c('specialoffer: Deal details').t`Premium ${appName1} & ${appName2} & ${appName3}`;