@rimelight/ui 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -3
- package/src/components/carousel/carousel-script.ts +188 -188
- package/src/components/carousel/index.ts +1 -1
- package/src/components/input-otp/InputOtpTypes.ts +6 -6
- package/src/components/radio-group/RadioGroupTypes.ts +6 -6
- package/src/components/select/SelectTypes.ts +13 -13
- package/src/components/switch/SwitchTypes.ts +6 -6
- package/src/components/toast/index.ts +1 -1
- package/src/components/toast/toast-manager.ts +234 -234
- package/src/components/toggle/ToggleTypes.ts +14 -14
- package/src/config/cookies.ts +5 -5
- package/src/config/index.ts +3 -3
- package/src/config/links.ts +4 -4
- package/src/config/site.config.ts +27 -45
- package/src/domain/cms/index.ts +1 -1
- package/src/domain/cms/types.ts +20 -20
- package/src/domain/i18n/constants.ts +21 -21
- package/src/domain/i18n/cookie-storage.ts +13 -13
- package/src/domain/i18n/country-to-locale-map.ts +67 -67
- package/src/domain/i18n/fetcher.ts +278 -268
- package/src/domain/i18n/flags.ts +16 -16
- package/src/domain/i18n/format.ts +90 -90
- package/src/domain/i18n/index.ts +10 -10
- package/src/domain/i18n/middleware/i18n.ts +161 -160
- package/src/domain/i18n/resolve-locale.ts +55 -55
- package/src/domain/i18n/schema.ts +29 -29
- package/src/domain/index.ts +4 -4
- package/src/domain/seo/constants.ts +6 -20
- package/src/domain/seo/index.ts +3 -3
- package/src/domain/seo/services/index.ts +3 -3
- package/src/domain/seo/services/llms.ts +56 -53
- package/src/domain/seo/services/robots.ts +12 -12
- package/src/domain/seo/services/sitemap.ts +56 -56
- package/src/domain/seo/utils.ts +36 -37
- package/src/domain/theme/constants.ts +6 -6
- package/src/domain/theme/index.ts +2 -2
- package/src/domain/theme/schema.ts +10 -10
- package/src/env.d.ts +49 -49
- package/src/integrations/index.ts +1 -0
- package/src/integrations/sri.ts +92 -0
- package/src/lib/component-preview.ts +73 -73
- package/src/lib/index.ts +6 -6
- package/src/lib/remark/remark-modified-time.ts +13 -13
- package/src/lib/showcase-preview-elements.ts +408 -408
- package/src/lib/showcase-renderer.ts +218 -218
- package/src/lib/showcase-utils.ts +189 -189
- package/src/lib/turnstile.ts +35 -35
- package/src/lib/utils/starwind/positioning.ts +318 -318
- package/src/locales/de/blog.json +9 -9
- package/src/locales/de/common.json +19 -19
- package/src/locales/de/errors.json +6 -6
- package/src/locales/de/home.json +20 -20
- package/src/locales/de/messages.json +8 -8
- package/src/locales/de/nav.json +13 -13
- package/src/locales/de/projects.json +9 -9
- package/src/locales/de/services.json +43 -43
- package/src/locales/en/blog.json +9 -9
- package/src/locales/en/chat.json +29 -29
- package/src/locales/en/common.json +19 -19
- package/src/locales/en/cookie_notice.json +11 -11
- package/src/locales/en/editor.json +24 -24
- package/src/locales/en/errors.json +6 -6
- package/src/locales/en/home.json +20 -20
- package/src/locales/en/messages.json +8 -8
- package/src/locales/en/nav.json +13 -13
- package/src/locales/en/projects.json +9 -9
- package/src/locales/en/services.json +43 -43
- package/src/locales/es/blog.json +9 -9
- package/src/locales/es/common.json +19 -19
- package/src/locales/es/errors.json +6 -6
- package/src/locales/es/home.json +20 -20
- package/src/locales/es/messages.json +8 -8
- package/src/locales/es/nav.json +13 -13
- package/src/locales/es/projects.json +9 -9
- package/src/locales/es/services.json +43 -43
- package/src/locales/ja/blog.json +9 -9
- package/src/locales/ja/common.json +19 -19
- package/src/locales/ja/errors.json +6 -6
- package/src/locales/ja/home.json +20 -20
- package/src/locales/ja/messages.json +8 -8
- package/src/locales/ja/nav.json +13 -13
- package/src/locales/ja/projects.json +9 -9
- package/src/locales/ja/services.json +43 -43
- package/src/locales/pt/blog.json +9 -9
- package/src/locales/pt/chat.json +29 -29
- package/src/locales/pt/common.json +19 -19
- package/src/locales/pt/cookie_notice.json +11 -11
- package/src/locales/pt/editor.json +24 -24
- package/src/locales/pt/errors.json +6 -6
- package/src/locales/pt/home.json +20 -20
- package/src/locales/pt/messages.json +8 -8
- package/src/locales/pt/nav.json +13 -13
- package/src/locales/pt/projects.json +9 -9
- package/src/locales/pt/services.json +43 -43
- package/src/middleware/index.ts +2 -0
- package/src/middleware/security.ts +15 -0
- package/src/middleware/sri.ts +78 -0
- package/src/utils/index.ts +2 -2
- package/src/utils/server/cookies.ts +98 -98
- package/src/utils/server/index.ts +1 -1
- package/src/utils/shared/deep-merge.ts +36 -36
- package/src/utils/shared/embed.ts +105 -105
- package/src/utils/shared/index.ts +3 -3
- package/src/utils/shared/parse-boolean.ts +14 -14
- package/worker-configuration.d.ts +0 -14791
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"seo": {
|
|
3
|
-
"title": "Zero-JS i18n Astro Starter für Cloudflare Workers",
|
|
4
|
-
"description": "Erstellen Sie mehrsprachige Apps schneller ohne Hydrations-Ballast. Volle Integration mit Cloudflare Workers & KV, automatisierte TypeScript-Generierung und Edge-Caching out-of-the-box."
|
|
5
|
-
},
|
|
6
|
-
"nav": {
|
|
7
|
-
"home": "Astro-Komponenten & Islands",
|
|
8
|
-
"blog": "Beispiele für i18n mit Markdown",
|
|
9
|
-
"mobileButton": "Menü"
|
|
10
|
-
},
|
|
11
|
-
"footer": {
|
|
12
|
-
"license": "Unter der MIT-Lizenz."
|
|
13
|
-
},
|
|
14
|
-
"notFound": {
|
|
15
|
-
"title": "404 — Seite nicht gefunden",
|
|
16
|
-
"message": "Die gesuchte Seite existiert nicht oder wurde verschoben.",
|
|
17
|
-
"backToHome": "Zurück zur Startseite"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"seo": {
|
|
3
|
+
"title": "Zero-JS i18n Astro Starter für Cloudflare Workers",
|
|
4
|
+
"description": "Erstellen Sie mehrsprachige Apps schneller ohne Hydrations-Ballast. Volle Integration mit Cloudflare Workers & KV, automatisierte TypeScript-Generierung und Edge-Caching out-of-the-box."
|
|
5
|
+
},
|
|
6
|
+
"nav": {
|
|
7
|
+
"home": "Astro-Komponenten & Islands",
|
|
8
|
+
"blog": "Beispiele für i18n mit Markdown",
|
|
9
|
+
"mobileButton": "Menü"
|
|
10
|
+
},
|
|
11
|
+
"footer": {
|
|
12
|
+
"license": "Unter der MIT-Lizenz."
|
|
13
|
+
},
|
|
14
|
+
"notFound": {
|
|
15
|
+
"title": "404 — Seite nicht gefunden",
|
|
16
|
+
"message": "Die gesuchte Seite existiert nicht oder wurde verschoben.",
|
|
17
|
+
"backToHome": "Zurück zur Startseite"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"404_title": "Seite nicht gefunden",
|
|
3
|
-
"404_description": "Die gesuchte Seite existiert nicht.",
|
|
4
|
-
"500_title": "Interner Serverfehler",
|
|
5
|
-
"500_description": "Auf unserer Seite ist etwas schiefgelaufen. Bitte versuchen Sie es später noch einmal."
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"404_title": "Seite nicht gefunden",
|
|
3
|
+
"404_description": "Die gesuchte Seite existiert nicht.",
|
|
4
|
+
"500_title": "Interner Serverfehler",
|
|
5
|
+
"500_description": "Auf unserer Seite ist etwas schiefgelaufen. Bitte versuchen Sie es später noch einmal."
|
|
6
|
+
}
|
package/src/locales/de/home.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Daniel Marchi | Webentwickler",
|
|
3
|
-
"meta_description": "Ich bin ein auf Astro und Hochleistungs-Websites spezialisierter Webentwickler.",
|
|
4
|
-
"hero_title": "Hallo, ich bin Daniel Marchi",
|
|
5
|
-
"hero_description": "Ich bin ein auf Astro und Hochleistungs-Websites spezialisierter Webentwickler.",
|
|
6
|
-
"hero_view_components": "Komponenten anzeigen",
|
|
7
|
-
"hero_contact_me": "Kontakt aufnehmen",
|
|
8
|
-
"stack_title": "Moderne Webentwicklung, moderner Stack",
|
|
9
|
-
"stack_description": "Ich helfe Einzelpersonen und Unternehmen beim Aufbau von Hochleistungs-Webanwendungen, die auf Edge-Plattformen bereitgestellt werden. Von der Architektur bis zum Deployment sorge ich dafür, dass Ihr Projekt auf Skalierbarkeit ausgelegt ist.",
|
|
10
|
-
"stack_view_services": "Dienstleistungen ansehen",
|
|
11
|
-
"stack_resume": "Lebenslauf",
|
|
12
|
-
"marquee_title": "Aufgebaut und bereitgestellt mit diesen erstaunlichen Technologien:",
|
|
13
|
-
"projects_title": "Aktuelle Projekte",
|
|
14
|
-
"projects_description": "Eine Auswahl meiner neuesten technischen Arbeiten und Open-Source-Projekte.",
|
|
15
|
-
"projects_view_all": "Alle Projekte anzeigen",
|
|
16
|
-
"cta_title": "Bereit, etwas Erstaunliches aufzubauen?",
|
|
17
|
-
"cta_description": "Ich stehe derzeit für neue Projekte und Beratungen zur Verfügung. Lassen Sie uns zusammenarbeiten, um Ihre Vision zum Leben zu erwecken.",
|
|
18
|
-
"cta_contact": "Kontakt aufnehmen",
|
|
19
|
-
"cta_resume": "Lebenslauf herunterladen"
|
|
20
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Daniel Marchi | Webentwickler",
|
|
3
|
+
"meta_description": "Ich bin ein auf Astro und Hochleistungs-Websites spezialisierter Webentwickler.",
|
|
4
|
+
"hero_title": "Hallo, ich bin Daniel Marchi",
|
|
5
|
+
"hero_description": "Ich bin ein auf Astro und Hochleistungs-Websites spezialisierter Webentwickler.",
|
|
6
|
+
"hero_view_components": "Komponenten anzeigen",
|
|
7
|
+
"hero_contact_me": "Kontakt aufnehmen",
|
|
8
|
+
"stack_title": "Moderne Webentwicklung, moderner Stack",
|
|
9
|
+
"stack_description": "Ich helfe Einzelpersonen und Unternehmen beim Aufbau von Hochleistungs-Webanwendungen, die auf Edge-Plattformen bereitgestellt werden. Von der Architektur bis zum Deployment sorge ich dafür, dass Ihr Projekt auf Skalierbarkeit ausgelegt ist.",
|
|
10
|
+
"stack_view_services": "Dienstleistungen ansehen",
|
|
11
|
+
"stack_resume": "Lebenslauf",
|
|
12
|
+
"marquee_title": "Aufgebaut und bereitgestellt mit diesen erstaunlichen Technologien:",
|
|
13
|
+
"projects_title": "Aktuelle Projekte",
|
|
14
|
+
"projects_description": "Eine Auswahl meiner neuesten technischen Arbeiten und Open-Source-Projekte.",
|
|
15
|
+
"projects_view_all": "Alle Projekte anzeigen",
|
|
16
|
+
"cta_title": "Bereit, etwas Erstaunliches aufzubauen?",
|
|
17
|
+
"cta_description": "Ich stehe derzeit für neue Projekte und Beratungen zur Verfügung. Lassen Sie uns zusammenarbeiten, um Ihre Vision zum Leben zu erwecken.",
|
|
18
|
+
"cta_contact": "Kontakt aufnehmen",
|
|
19
|
+
"cta_resume": "Lebenslauf herunterladen"
|
|
20
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"errors": {
|
|
3
|
-
"ui": {
|
|
4
|
-
"MISSING_TRANSLATED_UI": "Entschuldigung, diese Seite ist in der ausgewählten Sprache noch nicht vollständig verfügbar.",
|
|
5
|
-
"MISSING_TRANSLATED_CONTENT": "Entschuldigung, dieser Artikel ist in der ausgewählten Sprache noch nicht verfügbar."
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"ui": {
|
|
4
|
+
"MISSING_TRANSLATED_UI": "Entschuldigung, diese Seite ist in der ausgewählten Sprache noch nicht vollständig verfügbar.",
|
|
5
|
+
"MISSING_TRANSLATED_CONTENT": "Entschuldigung, dieser Artikel ist in der ausgewählten Sprache noch nicht verfügbar."
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|
package/src/locales/de/nav.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
{
|
|
2
|
-
"home": "Startseite",
|
|
3
|
-
"projects": "Projekte",
|
|
4
|
-
"blog": "Blog",
|
|
5
|
-
"about": "Über mich",
|
|
6
|
-
"services": "Dienstleistungen",
|
|
7
|
-
"resume": "Lebenslauf",
|
|
8
|
-
"contact": "Kontakt",
|
|
9
|
-
"components": "Komponenten",
|
|
10
|
-
"privacy_policy": "Datenschutzerklärung",
|
|
11
|
-
"terms_of_service": "Nutzungsbedingungen",
|
|
12
|
-
"cookie_policy": "Cookie-Richtlinie"
|
|
13
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"home": "Startseite",
|
|
3
|
+
"projects": "Projekte",
|
|
4
|
+
"blog": "Blog",
|
|
5
|
+
"about": "Über mich",
|
|
6
|
+
"services": "Dienstleistungen",
|
|
7
|
+
"resume": "Lebenslauf",
|
|
8
|
+
"contact": "Kontakt",
|
|
9
|
+
"components": "Komponenten",
|
|
10
|
+
"privacy_policy": "Datenschutzerklärung",
|
|
11
|
+
"terms_of_service": "Nutzungsbedingungen",
|
|
12
|
+
"cookie_policy": "Cookie-Richtlinie"
|
|
13
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Projekte | Daniel Marchi",
|
|
3
|
-
"hero_title": "Projekte",
|
|
4
|
-
"hero_description": "Eine Auswahl meiner Arbeiten und Open-Source-Beiträge.",
|
|
5
|
-
"latest": "Neuestes Projekt",
|
|
6
|
-
"latest_badge": "Neu",
|
|
7
|
-
"view_project": "Projekt ansehen",
|
|
8
|
-
"all": "Alle Projekte"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Projekte | Daniel Marchi",
|
|
3
|
+
"hero_title": "Projekte",
|
|
4
|
+
"hero_description": "Eine Auswahl meiner Arbeiten und Open-Source-Beiträge.",
|
|
5
|
+
"latest": "Neuestes Projekt",
|
|
6
|
+
"latest_badge": "Neu",
|
|
7
|
+
"view_project": "Projekt ansehen",
|
|
8
|
+
"all": "Alle Projekte"
|
|
9
|
+
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Dienstleistungen | Daniel Marchi",
|
|
3
|
-
"hero_title": "Premium Dienstleistungen",
|
|
4
|
-
"hero_description": "Ich biete hochwertige Entwicklungs- und Designdienstleistungen an, um Ihr Unternehmen wachsen zu lassen und sich in der digitalen Landschaft hervorzuheben.",
|
|
5
|
-
"capabilities_title": "Fähigkeiten",
|
|
6
|
-
"capabilities_description": "Eine Übersicht über die Kerndienstleistungen, die ich meinen Kunden anbiete.",
|
|
7
|
-
"web_dev_title": "Webentwicklung",
|
|
8
|
-
"web_dev_description": "Erstellung hochperformanter, barrierefreier und skalierbarer Webanwendungen mit modernen Technologien wie Astro, Vue und Nuxt.",
|
|
9
|
-
"ui_ux_title": "UI/UX Design",
|
|
10
|
-
"ui_ux_description": "Erstellung intuitiver und visuell beeindruckender Benutzeroberflächen mit Fokus auf Benutzererfahrung und Markenidentität.",
|
|
11
|
-
"perf_title": "Leistungsoptimierung",
|
|
12
|
-
"perf_description": "Audit und Optimierung Ihrer Website für Geschwindigkeit, SEO und Barrierefreiheit, um perfekte Lighthouse-Scores zu erzielen.",
|
|
13
|
-
"perf_security_title": "Leistung und Sicherheit",
|
|
14
|
-
"perf_security_description": "Ihre Benutzer verdienen ein schnelles und sicheres Erlebnis. Ich erstelle Websites, die sofort geladen werden und auf allen Geräten einwandfrei funktionieren.",
|
|
15
|
-
"testimonials_title": "Was unsere Benutzer sagen",
|
|
16
|
-
"testimonials_description": "Schließen Sie sich Tausenden von Entwicklern an, die mit Astronaut die nächste Generation des Webs aufbauen.",
|
|
17
|
-
"faq_title": "Häufig gestellte Fragen (FAQ)",
|
|
18
|
-
"faq_description": "Alles, was Sie über Astronaut wissen müssen und wie Sie damit erstaunliche Dinge bauen können.",
|
|
19
|
-
"cta_title": "Bereit loszulegen?",
|
|
20
|
-
"cta_description": "Lassen Sie uns an Ihrem nächsten großen Projekt zusammenarbeiten. Ich stehe derzeit für freiberufliche Tätigkeit und Beratung zur Verfügung.",
|
|
21
|
-
"cta_contact": "Kontakt aufnehmen",
|
|
22
|
-
"cta_portfolio": "Portfolio ansehen",
|
|
23
|
-
"badge_ceo": "CEO",
|
|
24
|
-
"badge_founder": "Gründer",
|
|
25
|
-
"badge_cto": "CTO",
|
|
26
|
-
"badge_senior_ui": "Senior UI Engineer",
|
|
27
|
-
"badge_chef": "Chef",
|
|
28
|
-
"badge_product_designer": "Product Designer",
|
|
29
|
-
"testimonial_1": "Astronaut ist zweifellos das beste Boilerplate, das ich je verwendet habe. Die Geschwindigkeit und die saubere Architektur passen perfekt dazu, wie ich bauen möchte.",
|
|
30
|
-
"testimonial_2": "Die Komponentenbibliothek und die Art und Weise, wie sie Tailwind 4 handhabt, ist ein Game Changer. Ich konnte mein Projekt in Rekordzeit starten.",
|
|
31
|
-
"testimonial_3": "Endlich ein Boilerplate, das sich nicht überladen anfühlt, mir aber alle Werkzeuge gibt, die ich brauche. Der SSR-Support auf Cloudflare ist fehlerfrei.",
|
|
32
|
-
"testimonial_4": "Der beste Ausgangspunkt für jedes moderne Webprojekt. Die Entwicklererfahrung ist Weltklasse und die Leistung ist unschlagbar.",
|
|
33
|
-
"testimonial_5": "Unglaubliche Liebe zum Detail in der Struktur. Es folgt allen Best Practices, ohne unnötige Komplexität hinzuzufügen.",
|
|
34
|
-
"testimonial_6": "Alles läuft so reibungslos! Übergänge, Komponenten, Logik - alles funktioniert einfach. Beste Entscheidung für mein neuestes Startup.",
|
|
35
|
-
"faq_category_general": "Allgemeines",
|
|
36
|
-
"faq_q1": "Was ist Astronaut?",
|
|
37
|
-
"faq_a1": "Astronaut ist ein produktionsbereites Boilerplate für Astro, das auf Geschwindigkeit, Leistung und Best Practices ausgelegt ist. Es verwendet Tailwind CSS 4, Nuxt UI-Muster und eine saubere Architektur.",
|
|
38
|
-
"faq_q2": "Wie fange ich an?",
|
|
39
|
-
"faq_a2": "Sie können einfach das Repository klonen, Abhängigkeiten mit pnpm installieren und den Dev-Server starten. Die Projektstruktur ist Standard-Astro, also werden Sie sich wie zu Hause fühlen.",
|
|
40
|
-
"faq_category_technical": "Technisches",
|
|
41
|
-
"faq_q3": "Unterstützt es Server-Side Rendering (SSR)?",
|
|
42
|
-
"faq_a3": "Ja, Astronaut unterstützt SSR vollständig und ist standardmäßig für den Cloudflare Workers voreingestellt, was Ihnen das Beste aus beiden Welten bietet: statische Geschwindigkeit und dynamische Leistung."
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Dienstleistungen | Daniel Marchi",
|
|
3
|
+
"hero_title": "Premium Dienstleistungen",
|
|
4
|
+
"hero_description": "Ich biete hochwertige Entwicklungs- und Designdienstleistungen an, um Ihr Unternehmen wachsen zu lassen und sich in der digitalen Landschaft hervorzuheben.",
|
|
5
|
+
"capabilities_title": "Fähigkeiten",
|
|
6
|
+
"capabilities_description": "Eine Übersicht über die Kerndienstleistungen, die ich meinen Kunden anbiete.",
|
|
7
|
+
"web_dev_title": "Webentwicklung",
|
|
8
|
+
"web_dev_description": "Erstellung hochperformanter, barrierefreier und skalierbarer Webanwendungen mit modernen Technologien wie Astro, Vue und Nuxt.",
|
|
9
|
+
"ui_ux_title": "UI/UX Design",
|
|
10
|
+
"ui_ux_description": "Erstellung intuitiver und visuell beeindruckender Benutzeroberflächen mit Fokus auf Benutzererfahrung und Markenidentität.",
|
|
11
|
+
"perf_title": "Leistungsoptimierung",
|
|
12
|
+
"perf_description": "Audit und Optimierung Ihrer Website für Geschwindigkeit, SEO und Barrierefreiheit, um perfekte Lighthouse-Scores zu erzielen.",
|
|
13
|
+
"perf_security_title": "Leistung und Sicherheit",
|
|
14
|
+
"perf_security_description": "Ihre Benutzer verdienen ein schnelles und sicheres Erlebnis. Ich erstelle Websites, die sofort geladen werden und auf allen Geräten einwandfrei funktionieren.",
|
|
15
|
+
"testimonials_title": "Was unsere Benutzer sagen",
|
|
16
|
+
"testimonials_description": "Schließen Sie sich Tausenden von Entwicklern an, die mit Astronaut die nächste Generation des Webs aufbauen.",
|
|
17
|
+
"faq_title": "Häufig gestellte Fragen (FAQ)",
|
|
18
|
+
"faq_description": "Alles, was Sie über Astronaut wissen müssen und wie Sie damit erstaunliche Dinge bauen können.",
|
|
19
|
+
"cta_title": "Bereit loszulegen?",
|
|
20
|
+
"cta_description": "Lassen Sie uns an Ihrem nächsten großen Projekt zusammenarbeiten. Ich stehe derzeit für freiberufliche Tätigkeit und Beratung zur Verfügung.",
|
|
21
|
+
"cta_contact": "Kontakt aufnehmen",
|
|
22
|
+
"cta_portfolio": "Portfolio ansehen",
|
|
23
|
+
"badge_ceo": "CEO",
|
|
24
|
+
"badge_founder": "Gründer",
|
|
25
|
+
"badge_cto": "CTO",
|
|
26
|
+
"badge_senior_ui": "Senior UI Engineer",
|
|
27
|
+
"badge_chef": "Chef",
|
|
28
|
+
"badge_product_designer": "Product Designer",
|
|
29
|
+
"testimonial_1": "Astronaut ist zweifellos das beste Boilerplate, das ich je verwendet habe. Die Geschwindigkeit und die saubere Architektur passen perfekt dazu, wie ich bauen möchte.",
|
|
30
|
+
"testimonial_2": "Die Komponentenbibliothek und die Art und Weise, wie sie Tailwind 4 handhabt, ist ein Game Changer. Ich konnte mein Projekt in Rekordzeit starten.",
|
|
31
|
+
"testimonial_3": "Endlich ein Boilerplate, das sich nicht überladen anfühlt, mir aber alle Werkzeuge gibt, die ich brauche. Der SSR-Support auf Cloudflare ist fehlerfrei.",
|
|
32
|
+
"testimonial_4": "Der beste Ausgangspunkt für jedes moderne Webprojekt. Die Entwicklererfahrung ist Weltklasse und die Leistung ist unschlagbar.",
|
|
33
|
+
"testimonial_5": "Unglaubliche Liebe zum Detail in der Struktur. Es folgt allen Best Practices, ohne unnötige Komplexität hinzuzufügen.",
|
|
34
|
+
"testimonial_6": "Alles läuft so reibungslos! Übergänge, Komponenten, Logik - alles funktioniert einfach. Beste Entscheidung für mein neuestes Startup.",
|
|
35
|
+
"faq_category_general": "Allgemeines",
|
|
36
|
+
"faq_q1": "Was ist Astronaut?",
|
|
37
|
+
"faq_a1": "Astronaut ist ein produktionsbereites Boilerplate für Astro, das auf Geschwindigkeit, Leistung und Best Practices ausgelegt ist. Es verwendet Tailwind CSS 4, Nuxt UI-Muster und eine saubere Architektur.",
|
|
38
|
+
"faq_q2": "Wie fange ich an?",
|
|
39
|
+
"faq_a2": "Sie können einfach das Repository klonen, Abhängigkeiten mit pnpm installieren und den Dev-Server starten. Die Projektstruktur ist Standard-Astro, also werden Sie sich wie zu Hause fühlen.",
|
|
40
|
+
"faq_category_technical": "Technisches",
|
|
41
|
+
"faq_q3": "Unterstützt es Server-Side Rendering (SSR)?",
|
|
42
|
+
"faq_a3": "Ja, Astronaut unterstützt SSR vollständig und ist standardmäßig für den Cloudflare Workers voreingestellt, was Ihnen das Beste aus beiden Welten bietet: statische Geschwindigkeit und dynamische Leistung."
|
|
43
|
+
}
|
package/src/locales/en/blog.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Blog | Daniel Marchi",
|
|
3
|
-
"hero_title": "Blog",
|
|
4
|
-
"hero_description": "My insights throughout my journey as a developer.",
|
|
5
|
-
"latest_article": "Latest Article",
|
|
6
|
-
"latest": "Latest",
|
|
7
|
-
"read_article": "Read Article",
|
|
8
|
-
"all_posts": "All Posts"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Blog | Daniel Marchi",
|
|
3
|
+
"hero_title": "Blog",
|
|
4
|
+
"hero_description": "My insights throughout my journey as a developer.",
|
|
5
|
+
"latest_article": "Latest Article",
|
|
6
|
+
"latest": "Latest",
|
|
7
|
+
"read_article": "Read Article",
|
|
8
|
+
"all_posts": "All Posts"
|
|
9
|
+
}
|
package/src/locales/en/chat.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Join a Chat Room",
|
|
3
|
-
"description": "Enter a room name to start chatting",
|
|
4
|
-
"heading": "Real-time Chat",
|
|
5
|
-
"intro": "Enter a room name below to join a conversation. Each room is a unique Durable Object instance!",
|
|
6
|
-
"label": "Room Name",
|
|
7
|
-
"placeholder": "e.g. general, help, coffee-break",
|
|
8
|
-
"button": "Join Room",
|
|
9
|
-
"room": {
|
|
10
|
-
"title": "Chat Room",
|
|
11
|
-
"connecting": "Connecting…",
|
|
12
|
-
"connected": "Connected",
|
|
13
|
-
"disconnected": "Disconnected",
|
|
14
|
-
"placeholder": "Type a message…",
|
|
15
|
-
"send": "Send",
|
|
16
|
-
"system": {
|
|
17
|
-
"joining": "Joining room…",
|
|
18
|
-
"error": "Connection error",
|
|
19
|
-
"joined": "joined the room",
|
|
20
|
-
"left": "left the room",
|
|
21
|
-
"reconnecting": "Reconnecting in {delay} seconds... (attempt {attempt}/{max})",
|
|
22
|
-
"fail_reconnect": "Failed to reconnect. Please refresh the page.",
|
|
23
|
-
"no_connect": "Cannot send message: not connected",
|
|
24
|
-
"prompt_user": "Enter your username:",
|
|
25
|
-
"you": "(You)",
|
|
26
|
-
"online_users": "Online Users:"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"title": "Join a Chat Room",
|
|
3
|
+
"description": "Enter a room name to start chatting",
|
|
4
|
+
"heading": "Real-time Chat",
|
|
5
|
+
"intro": "Enter a room name below to join a conversation. Each room is a unique Durable Object instance!",
|
|
6
|
+
"label": "Room Name",
|
|
7
|
+
"placeholder": "e.g. general, help, coffee-break",
|
|
8
|
+
"button": "Join Room",
|
|
9
|
+
"room": {
|
|
10
|
+
"title": "Chat Room",
|
|
11
|
+
"connecting": "Connecting…",
|
|
12
|
+
"connected": "Connected",
|
|
13
|
+
"disconnected": "Disconnected",
|
|
14
|
+
"placeholder": "Type a message…",
|
|
15
|
+
"send": "Send",
|
|
16
|
+
"system": {
|
|
17
|
+
"joining": "Joining room…",
|
|
18
|
+
"error": "Connection error",
|
|
19
|
+
"joined": "joined the room",
|
|
20
|
+
"left": "left the room",
|
|
21
|
+
"reconnecting": "Reconnecting in {delay} seconds... (attempt {attempt}/{max})",
|
|
22
|
+
"fail_reconnect": "Failed to reconnect. Please refresh the page.",
|
|
23
|
+
"no_connect": "Cannot send message: not connected",
|
|
24
|
+
"prompt_user": "Enter your username:",
|
|
25
|
+
"you": "(You)",
|
|
26
|
+
"online_users": "Online Users:"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"seo": {
|
|
3
|
-
"title": "Zero-JS i18n Astro Starter for Cloudflare Workers",
|
|
4
|
-
"description": "Ship multilingual apps faster without hydration bloat. Full integration with Cloudflare Workers & KV, automated TypeScript generation, and edge caching out of the box."
|
|
5
|
-
},
|
|
6
|
-
"nav": {
|
|
7
|
-
"home": "Astro components & islands",
|
|
8
|
-
"blog": "Markdown i18n examples",
|
|
9
|
-
"mobileButton": "Menu"
|
|
10
|
-
},
|
|
11
|
-
"footer": {
|
|
12
|
-
"license": "Under the MIT license."
|
|
13
|
-
},
|
|
14
|
-
"notFound": {
|
|
15
|
-
"title": "404 — Page not found",
|
|
16
|
-
"message": "The page you are looking for does not exist or has been moved.",
|
|
17
|
-
"backToHome": "Go back to homepage"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"seo": {
|
|
3
|
+
"title": "Zero-JS i18n Astro Starter for Cloudflare Workers",
|
|
4
|
+
"description": "Ship multilingual apps faster without hydration bloat. Full integration with Cloudflare Workers & KV, automated TypeScript generation, and edge caching out of the box."
|
|
5
|
+
},
|
|
6
|
+
"nav": {
|
|
7
|
+
"home": "Astro components & islands",
|
|
8
|
+
"blog": "Markdown i18n examples",
|
|
9
|
+
"mobileButton": "Menu"
|
|
10
|
+
},
|
|
11
|
+
"footer": {
|
|
12
|
+
"license": "Under the MIT license."
|
|
13
|
+
},
|
|
14
|
+
"notFound": {
|
|
15
|
+
"title": "404 — Page not found",
|
|
16
|
+
"message": "The page you are looking for does not exist or has been moved.",
|
|
17
|
+
"backToHome": "Go back to homepage"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Cookie Policy",
|
|
3
|
-
"description": "This website does not use cookies, this is a sample of how it could work in your website as per your",
|
|
4
|
-
"privacy_policy": "Privacy Policy",
|
|
5
|
-
"reject_all": "Reject All",
|
|
6
|
-
"accept_all": "Accept All",
|
|
7
|
-
"accepted_toast": "Cookies Accepted",
|
|
8
|
-
"accepted_description": "You have accepted all cookies.",
|
|
9
|
-
"rejected_toast": "Cookies Rejected",
|
|
10
|
-
"rejected_description": "You have rejected all cookies."
|
|
11
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"title": "Cookie Policy",
|
|
3
|
+
"description": "This website does not use cookies, this is a sample of how it could work in your website as per your",
|
|
4
|
+
"privacy_policy": "Privacy Policy",
|
|
5
|
+
"reject_all": "Reject All",
|
|
6
|
+
"accept_all": "Accept All",
|
|
7
|
+
"accepted_toast": "Cookies Accepted",
|
|
8
|
+
"accepted_description": "You have accepted all cookies.",
|
|
9
|
+
"rejected_toast": "Cookies Rejected",
|
|
10
|
+
"rejected_description": "You have rejected all cookies."
|
|
11
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Editor",
|
|
3
|
-
"description": "Collaborative real-time document editor",
|
|
4
|
-
"collaborative_editor": "Collaborative Editor",
|
|
5
|
-
"status": {
|
|
6
|
-
"connecting": "Connecting…",
|
|
7
|
-
"connected": "Connected",
|
|
8
|
-
"disconnected": "Disconnected"
|
|
9
|
-
},
|
|
10
|
-
"history": "History",
|
|
11
|
-
"version_history": "Version History",
|
|
12
|
-
"no_versions": "No versions yet.",
|
|
13
|
-
"placeholder": "Start typing… your changes are synced in real-time.",
|
|
14
|
-
"word_count": {
|
|
15
|
-
"word": "word",
|
|
16
|
-
"words": "words",
|
|
17
|
-
"character": "character",
|
|
18
|
-
"characters": "characters"
|
|
19
|
-
},
|
|
20
|
-
"save": {
|
|
21
|
-
"saved": "Saved"
|
|
22
|
-
},
|
|
23
|
-
"restore_confirm": "Restore this version? Current content will be replaced."
|
|
24
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"title": "Editor",
|
|
3
|
+
"description": "Collaborative real-time document editor",
|
|
4
|
+
"collaborative_editor": "Collaborative Editor",
|
|
5
|
+
"status": {
|
|
6
|
+
"connecting": "Connecting…",
|
|
7
|
+
"connected": "Connected",
|
|
8
|
+
"disconnected": "Disconnected"
|
|
9
|
+
},
|
|
10
|
+
"history": "History",
|
|
11
|
+
"version_history": "Version History",
|
|
12
|
+
"no_versions": "No versions yet.",
|
|
13
|
+
"placeholder": "Start typing… your changes are synced in real-time.",
|
|
14
|
+
"word_count": {
|
|
15
|
+
"word": "word",
|
|
16
|
+
"words": "words",
|
|
17
|
+
"character": "character",
|
|
18
|
+
"characters": "characters"
|
|
19
|
+
},
|
|
20
|
+
"save": {
|
|
21
|
+
"saved": "Saved"
|
|
22
|
+
},
|
|
23
|
+
"restore_confirm": "Restore this version? Current content will be replaced."
|
|
24
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"404_title": "Page Not Found",
|
|
3
|
-
"404_description": "The page you are looking for does not exist.",
|
|
4
|
-
"500_title": "Internal Server Error",
|
|
5
|
-
"500_description": "Something went wrong on our end. Please try again later."
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"404_title": "Page Not Found",
|
|
3
|
+
"404_description": "The page you are looking for does not exist.",
|
|
4
|
+
"500_title": "Internal Server Error",
|
|
5
|
+
"500_description": "Something went wrong on our end. Please try again later."
|
|
6
|
+
}
|
package/src/locales/en/home.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Daniel Marchi | Web Developer",
|
|
3
|
-
"meta_description": "I'm a web developer specialized in Astro and high-performance websites.",
|
|
4
|
-
"hero_title": "Hey, I'm Daniel Marchi",
|
|
5
|
-
"hero_description": "I'm a web developer specialized in Astro and high-performance websites.",
|
|
6
|
-
"hero_view_components": "View Components",
|
|
7
|
-
"hero_contact_me": "Contact Me",
|
|
8
|
-
"stack_title": "Modern Web, Modern Stack",
|
|
9
|
-
"stack_description": "I help individuals and companies build high-performance web applications deployed on the edge. From architecture to deployment, I ensure your project is built for scale.",
|
|
10
|
-
"stack_view_services": "View Services",
|
|
11
|
-
"stack_resume": "Resume",
|
|
12
|
-
"marquee_title": "Built and deployed with these amazing technologies:",
|
|
13
|
-
"projects_title": "Recent Projects",
|
|
14
|
-
"projects_description": "A selection of my latest technical work and open source projects.",
|
|
15
|
-
"projects_view_all": "View All Projects",
|
|
16
|
-
"cta_title": "Ready to Build Something Amazing?",
|
|
17
|
-
"cta_description": "I'm currently available for new projects and consulting. Let's work together to bring your vision to life.",
|
|
18
|
-
"cta_contact": "Get in Touch",
|
|
19
|
-
"cta_resume": "Download Resume"
|
|
20
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Daniel Marchi | Web Developer",
|
|
3
|
+
"meta_description": "I'm a web developer specialized in Astro and high-performance websites.",
|
|
4
|
+
"hero_title": "Hey, I'm Daniel Marchi",
|
|
5
|
+
"hero_description": "I'm a web developer specialized in Astro and high-performance websites.",
|
|
6
|
+
"hero_view_components": "View Components",
|
|
7
|
+
"hero_contact_me": "Contact Me",
|
|
8
|
+
"stack_title": "Modern Web, Modern Stack",
|
|
9
|
+
"stack_description": "I help individuals and companies build high-performance web applications deployed on the edge. From architecture to deployment, I ensure your project is built for scale.",
|
|
10
|
+
"stack_view_services": "View Services",
|
|
11
|
+
"stack_resume": "Resume",
|
|
12
|
+
"marquee_title": "Built and deployed with these amazing technologies:",
|
|
13
|
+
"projects_title": "Recent Projects",
|
|
14
|
+
"projects_description": "A selection of my latest technical work and open source projects.",
|
|
15
|
+
"projects_view_all": "View All Projects",
|
|
16
|
+
"cta_title": "Ready to Build Something Amazing?",
|
|
17
|
+
"cta_description": "I'm currently available for new projects and consulting. Let's work together to bring your vision to life.",
|
|
18
|
+
"cta_contact": "Get in Touch",
|
|
19
|
+
"cta_resume": "Download Resume"
|
|
20
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"errors": {
|
|
3
|
-
"ui": {
|
|
4
|
-
"MISSING_TRANSLATED_UI": "Sorry, this page is not yet fully available in your selected language.",
|
|
5
|
-
"MISSING_TRANSLATED_CONTENT": "Sorry, this article is not yet available in your selected language."
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"ui": {
|
|
4
|
+
"MISSING_TRANSLATED_UI": "Sorry, this page is not yet fully available in your selected language.",
|
|
5
|
+
"MISSING_TRANSLATED_CONTENT": "Sorry, this article is not yet available in your selected language."
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|
package/src/locales/en/nav.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
{
|
|
2
|
-
"home": "Home",
|
|
3
|
-
"projects": "Projects",
|
|
4
|
-
"blog": "Blog",
|
|
5
|
-
"about": "About",
|
|
6
|
-
"services": "Services",
|
|
7
|
-
"resume": "Resume",
|
|
8
|
-
"contact": "Contact",
|
|
9
|
-
"components": "Components",
|
|
10
|
-
"privacy_policy": "Privacy Policy",
|
|
11
|
-
"terms_of_service": "Terms of Service",
|
|
12
|
-
"cookie_policy": "Cookie Policy"
|
|
13
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"home": "Home",
|
|
3
|
+
"projects": "Projects",
|
|
4
|
+
"blog": "Blog",
|
|
5
|
+
"about": "About",
|
|
6
|
+
"services": "Services",
|
|
7
|
+
"resume": "Resume",
|
|
8
|
+
"contact": "Contact",
|
|
9
|
+
"components": "Components",
|
|
10
|
+
"privacy_policy": "Privacy Policy",
|
|
11
|
+
"terms_of_service": "Terms of Service",
|
|
12
|
+
"cookie_policy": "Cookie Policy"
|
|
13
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "Projects | Daniel Marchi",
|
|
3
|
-
"hero_title": "Projects",
|
|
4
|
-
"hero_description": "A showcase of my work and open source contributions.",
|
|
5
|
-
"latest": "Latest Project",
|
|
6
|
-
"latest_badge": "Latest",
|
|
7
|
-
"view_project": "View Project",
|
|
8
|
-
"all": "All Projects"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"meta_title": "Projects | Daniel Marchi",
|
|
3
|
+
"hero_title": "Projects",
|
|
4
|
+
"hero_description": "A showcase of my work and open source contributions.",
|
|
5
|
+
"latest": "Latest Project",
|
|
6
|
+
"latest_badge": "Latest",
|
|
7
|
+
"view_project": "View Project",
|
|
8
|
+
"all": "All Projects"
|
|
9
|
+
}
|