-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslations.js
344 lines (344 loc) · 14 KB
/
translations.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
const translations = {
en: {
nav: {
home: "Home",
services: "Services",
expertise: "Expertise",
contact: "Contact Us"
},
hero: {
title: "Transform Your Infrastructure with Cloud & Kubernetes Expertise",
subtitle: "Expert consulting and implementation services for cloud, DevOps, and container orchestration.",
cta: "Get Started"
},
services: {
title: "Our Services",
subtitle: "Comprehensive cloud and Kubernetes solutions for modern enterprises",
kubernetes: {
title: "Kubernetes Implementation",
description: "End-to-end Kubernetes cluster setup, configuration, and optimization for your enterprise needs."
},
cloud: {
title: "Cloud Consulting",
description: "Strategic cloud adoption, architecture design, and migration services for AWS, Azure, and GCP."
},
devops: {
title: "DevOps Services",
description: "Implementation of CI/CD pipelines, automation, and DevOps best practices for efficient delivery."
},
hosting: {
title: "Managed Hosting",
description: "Reliable and secure hosting solutions with 24/7 monitoring and support."
},
migration: {
title: "Migration Services",
description: "Seamless migration of your applications to cloud and Kubernetes with zero downtime."
},
security: {
title: "Security & Compliance",
description: "Implement robust security practices and ensure compliance with industry standards."
}
},
cncf: {
title: "Technology Stack",
subtitle: "We specialize in implementing and managing modern cloud-native technologies",
note: "And many more technologies including: Argo CD, Flux CD, Harbor, Cilium, Linkerd, Helm, and other cloud-native tools.",
categories: {
service_mesh: {
title: "Service Mesh & Networking",
description: "Advanced networking and service management",
tools: "Tools we use:",
toolsList: [
"Istio",
"Linkerd",
"Cilium",
"Calico",
"Kong",
"Envoy"
]
},
monitoring: {
title: "Monitoring & Metrics",
description: "Comprehensive monitoring solutions",
tools: "Tools we use:",
toolsList: [
"Prometheus",
"Thanos",
"Grafana",
"AlertManager",
"Victoria Metrics",
"Datadog"
]
},
logging: {
title: "Logging & Tracing",
description: "Centralized logging infrastructure",
tools: "Tools we use:",
toolsList: [
"Loki",
"Elasticsearch",
"Fluentd",
"Jaeger",
"OpenTelemetry",
"Kibana"
]
},
storage: {
title: "Storage & Data",
description: "Distributed storage systems",
tools: "Tools we use:",
toolsList: [
"Rook-Ceph",
"Longhorn",
"MinIO",
"Velero",
"OpenEBS",
"Portworx"
]
}
}
},
expertise: {
title: "Why Choose Us",
subtitle: "Expert team with proven experience in cloud and Kubernetes solutions",
experts: {
title: "Certified Experts",
description: "Our team consists of certified cloud and Kubernetes professionals with years of experience."
},
operations: {
title: "Operational Excellence",
description: "Comprehensive cloud and Kubernetes operations management for efficient infrastructure."
},
solutions: {
title: "Custom Solutions",
description: "Tailored solutions designed to meet your specific business requirements."
},
tools: {
title: "Comprehensive Tooling",
description: "Expertise with cloud-native tools and enterprise solutions across major platforms."
},
platforms: {
title: "Platform Expertise",
description: "Deep experience with cloud platforms, CNCF tools, and enterprise solutions."
},
track: {
title: "Proven Track Record",
description: "Successfully delivered projects for enterprises across various industries."
}
},
contact: {
title: "Get in Touch",
subtitle: "Let's discuss how we can help transform your infrastructure",
form: {
name: "Name",
email: "Email",
message: "Message",
send: "Send Message"
}
},
footer: {
description: "Expert cloud and Kubernetes consulting for modern enterprises.",
quickLinks: "Quick Links",
contactInfo: "Contact Info",
copyright: "© 2024 Relain. All rights reserved.",
impressum: "Legal Notice"
},
impressum: {
title: "Legal Notice",
companyInfo: {
title: "Company Information",
name: "Relain GmbH",
address: "Südliche Münchnerstrasse 60c",
city: "82031 Grünwald",
country: "Germany",
email: "[email protected]",
phone: "+49 89 123456789"
},
management: {
title: "Management",
ceos: "CEOs: Philipp Müller, Daniel Sel",
registration: "Commercial Register: HRB 123456 B",
court: "District Court: Munich",
vatId: "VAT ID: DE123456789"
},
responsibility: {
title: "Responsible for Content",
name: "Philipp Müller, Daniel Sel",
address: "Südliche Münchnerstrasse 60c",
city: "82031 Grünwald",
country: "Germany"
}
}
},
de: {
nav: {
home: "Startseite",
services: "Dienstleistungen",
expertise: "Expertise",
contact: "Kontakt"
},
hero: {
title: "Transformieren Sie Ihre Infrastruktur mit Cloud & Kubernetes-Expertise",
subtitle: "Experten-Beratung und Implementierungsdienste für Cloud, DevOps und Container-Orchestrierung.",
cta: "Jetzt Starten"
},
services: {
title: "Unsere Dienstleistungen",
subtitle: "Umfassende Cloud- und Kubernetes-Lösungen für moderne Unternehmen",
kubernetes: {
title: "Kubernetes-Implementierung",
description: "End-to-End Kubernetes-Cluster-Einrichtung, Konfiguration und Optimierung für Ihre Unternehmensanforderungen."
},
cloud: {
title: "Cloud-Beratung",
description: "Strategische Cloud-Adoption, Architekturdesign und Migrationsdienste für AWS, Azure und GCP."
},
devops: {
title: "DevOps-Services",
description: "Implementierung von CI/CD-Pipelines, Automatisierung und DevOps-Best-Practices für effiziente Bereitstellung."
},
hosting: {
title: "Managed Hosting",
description: "Zuverlässige und sichere Hosting-Lösungen mit 24/7-Überwachung und Support."
},
migration: {
title: "Migrationsdienste",
description: "Nahtlose Migration Ihrer Anwendungen zu Cloud und Kubernetes ohne Ausfallzeiten."
},
security: {
title: "Sicherheit & Compliance",
description: "Implementierung robuster Sicherheitspraktiken und Gewährleistung der Einhaltung von Industriestandards."
}
},
cncf: {
title: "Technologie-Stack",
subtitle: "Wir sind spezialisiert auf die Implementierung und Verwaltung moderner Cloud-Native-Technologien",
note: "Und viele weitere Technologien wie: Argo CD, Flux CD, Harbor, Cilium, Linkerd, Helm und andere Cloud-Native-Tools.",
categories: {
service_mesh: {
title: "Service Mesh & Netzwerk",
description: "Fortschrittliches Netzwerk- und Service-Management",
tools: "Unsere Tools:",
toolsList: [
"Istio",
"Linkerd",
"Cilium",
"Calico",
"Kong",
"Envoy"
]
},
monitoring: {
title: "Monitoring & Metriken",
description: "Umfassende Monitoring-Lösungen",
tools: "Unsere Tools:",
toolsList: [
"Prometheus",
"Thanos",
"Grafana",
"AlertManager",
"Victoria Metrics",
"Datadog"
]
},
logging: {
title: "Logging & Tracing",
description: "Zentralisierte Logging-Infrastruktur",
tools: "Unsere Tools:",
toolsList: [
"Loki",
"Elasticsearch",
"Fluentd",
"Jaeger",
"OpenTelemetry",
"Kibana"
]
},
storage: {
title: "Speicher & Daten",
description: "Verteilte Speichersysteme",
tools: "Unsere Tools:",
toolsList: [
"Rook-Ceph",
"Longhorn",
"MinIO",
"Velero",
"OpenEBS",
"Portworx"
]
}
}
},
expertise: {
title: "Warum Relain Wählen",
subtitle: "Expertenteam mit bewährter Erfahrung in Cloud- und Kubernetes-Lösungen",
experts: {
title: "Zertifizierte Experten",
description: "Unser Team besteht aus zertifizierten Cloud- und Kubernetes-Fachleuten mit langjähriger Erfahrung."
},
operations: {
title: "Operative Exzellenz",
description: "Umfassendes Cloud- und Kubernetes-Betriebsmanagement für effiziente Infrastruktur."
},
solutions: {
title: "Maßgeschneiderte Lösungen",
description: "Individuelle Lösungen, die auf Ihre spezifischen Geschäftsanforderungen zugeschnitten sind."
},
tools: {
title: "Umfassende Werkzeuge",
description: "Expertise mit Cloud-Native-Tools und Enterprise-Lösungen auf allen wichtigen Plattformen."
},
platforms: {
title: "Plattform-Expertise",
description: "Umfangreiche Erfahrung mit Cloud-Plattformen, CNCF-Tools und Enterprise-Lösungen."
},
track: {
title: "Bewährte Erfolgsbilanz",
description: "Erfolgreich durchgeführte Projekte für Unternehmen verschiedener Branchen."
}
},
contact: {
title: "Kontaktieren Sie Uns",
subtitle: "Lassen Sie uns besprechen, wie wir Ihre Infrastruktur transformieren können",
form: {
name: "Name",
email: "E-Mail",
message: "Nachricht",
send: "Nachricht Senden"
}
},
footer: {
description: "Expert Cloud- und Kubernetes-Beratung für moderne Unternehmen.",
quickLinks: "Schnellzugriff",
contactInfo: "Kontaktinformationen",
copyright: "© 2024 Relain. Alle Rechte vorbehalten.",
impressum: "Impressum"
},
impressum: {
title: "Impressum",
companyInfo: {
title: "Unternehmensangaben",
name: "Relain GmbH",
address: "Südliche Münchnerstrasse 60c",
city: "82031 Grünwald",
country: "Deutschland",
email: "[email protected]",
phone: "+49 89 123456789"
},
management: {
title: "Geschäftsführung",
ceos: "Geschäftsführer: Philipp Müller, Daniel Sel",
registration: "Handelsregister: HRB 123456 B",
court: "Amtsgericht: München",
vatId: "USt-IdNr.: DE123456789"
},
responsibility: {
title: "Inhaltlich Verantwortlicher",
name: "Philipp Müller, Daniel Sel",
address: "Südliche Münchnerstrasse 60c",
city: "82031 Grünwald",
country: "Deutschland"
}
}
}
};