aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/globalMessages.js
blob: 7b161860253c6ff2b84a62184e11103f9ba669fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.',
  },
  spellcheckerLanguage: {
    id: 'global.spellchecking.language',
    defaultMessage: '!!!Spell checking language',
  },
  spellcheckerSystemDefault: {
    id: 'global.spellchecker.useDefault',
    defaultMessage: '!!!Use System Default ({default})',
  },
  spellcheckerAutomaticDetection: {
    id: 'global.spellchecking.autodetect',
    defaultMessage: '!!!Detect language automatically',
  },
  spellcheckerAutomaticDetectionShort: {
    id: 'global.spellchecking.autodetect.short',
    defaultMessage: '!!!Automatic',
  },
});