aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/js/i18n/locales/en.js
blob: d548757fbc9729b7a4fdbb0fc97d6a364041a126 (plain)
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
const en = {
  branding: {
    description: 'Front-end developer',
  },
  nav: {
    title: 'Apps list:',
  },
  main: {
    instructions:
      'Select an app inside menu to see a live preview and app details.',
    project: {
      details: {
        about: 'About {{name}}',
        repo: {
          one: 'Repository:',
          other: 'Repositories:',
          zero: 'Repositories:',
        },
        tech: {
          one: 'Technology:',
          other: 'Technologies:',
          zero: 'Technologies:',
        },
      },
    },
  },
  footer: {
    license: 'License MIT',
  },
};

export default en;