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
33
34
35
36
|
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: {
legalNotice: {
txt: 'Legal notice',
link: 'legal-notice.php',
},
license: 'License MIT',
},
};
export default en;
|