-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
de.js
103 lines (92 loc) · 2.44 KB
/
de.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
export default {
/**
* NAMING RULES
*
* {type_of_vue_file}: {
* {component_name}: {
* {noun_or_abbr}: 'String'
* }
* }
*
* e.g.
*
* components: {
* hero: {
* title: 'Do they <strong>Hacktoberfest?</strong>',
* tagline: 'Check if a project takes part in <strong>Hacktoberfest</strong>',
* }
* }
*
* Usage:
*
* $t('components.announcement.button')
*/
/**
* Layout strings
*
* Strings used in /layouts/**.vue files
*/
/**
* Page strings
*
* Strings used in /pages/**.vue files
*/
/**
* Component strings
*
* Strings used in /components/**.vue files
*/
components: {
announcement: {
button: 'Inoffizielle Seite',
text:
'Dies ist eine inoffizielle Website. Klicke hier für die offizielle Hacktoberfest-Website.',
},
navigation: {
home: 'Home',
details: 'Details',
check: 'Überprüfe ein Repository',
},
check_repository: {
title: 'Nimmt ein Projekt am <strong>Hacktoberfest</strong> teil?',
error: 'Fehler',
retry: 'Eine weiteres Projekt überprüfen?',
success:
'Dieses Projekt nimmt bisher am <strong>Hacktoberfest</strong> teil.',
failure:
'Dieses Projekt nimmt bisher nicht am <strong>Hacktoberfest</strong> teil.',
results_are_in: 'Ergebnisse stehen bereit für',
cta: 'Wirklich?',
noRepoFound: 'Keine bisherigen repo checks gefunden... bis jetzt!',
},
color_picker: {
label: 'Dark Mode',
},
footer: {
presented_by: 'Hacktoberfest präsentiert von',
offical_site: 'Offizielle Hacktoberfest-Site',
},
hero: {
title: 'Nimmt ein Projekt am <strong>Hacktoberfest</strong> teil?',
tagline:
'Prüfen Sie ob ein Projekt dieses Jahr am hacktoberfest teilnimmt, indem Sie die URL des Repositories eingeben.',
cta: 'Ein Repository prüfen',
},
lang_picker: {
alt: 'Sprache',
},
logo: {
alt: 'Hacktoberfest Logo',
},
repository: {
has_topic: '<code>hacktoberfest</code> topic',
has_pr: '<code>hacktoberfest-accepted</code> PRs',
no_topic: 'Fehlendes <code>hacktoberfest</code> topic',
no_pr: 'Keine <code>hacktoberfest-accepted</code> PRs',
banned: 'Vom Hacktoberfest ausgeschlossen',
remove: 'Entfernen',
refresh: 'Aktualisieren',
issues_need_help: 'Probleme brauchen Hilfe',
},
},
}