aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/globalMessages.js
blob: 2c724ff6f628cc6bb7871d4451ce83818f029c24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { defineMessages } from 'react-intl';

export default defineMessages({
  upgradeAccount: {
    id: 'global.premium.upgradeAccount',
    defaultMessage: '!!!Please upgrade your account to add a new service.',
  },
  APIUnhealthy: {
    id: 'global.api.unhealthy',
    defaultMessage: '!!!Can\'t connect to Franz Online Services',
  },
  notConnectedToTheInternet: {
    id: 'global.notConnectedToTheInternet',
    defaultMessage: '!!!You are not connected to the internet.',
  },
});