aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/js/i18n/locales/en.js
blob: c21b73969479953a374f84d7e5d2c7e203e40e2d (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 (description, technologies, repositories).',
    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;