@od-oneapp/internationalization 2026.1.1301
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/README.md +164 -0
- package/dist/client-next.d.mts +4 -0
- package/dist/client-next.mjs +4 -0
- package/dist/client.d.mts +24 -0
- package/dist/client.d.mts.map +1 -0
- package/dist/client.mjs +16 -0
- package/dist/client.mjs.map +1 -0
- package/dist/en-BG_-Eo3m.mjs +192 -0
- package/dist/en-BG_-Eo3m.mjs.map +1 -0
- package/dist/middleware-DgXJ2JFB.mjs +10 -0
- package/dist/middleware-DgXJ2JFB.mjs.map +1 -0
- package/dist/middleware.d.mts +10 -0
- package/dist/middleware.d.mts.map +1 -0
- package/dist/middleware.mjs +17 -0
- package/dist/middleware.mjs.map +1 -0
- package/dist/navigation-BCo6Vugt.mjs +39 -0
- package/dist/navigation-BCo6Vugt.mjs.map +1 -0
- package/dist/navigation-BSuDX6-H.d.mts +20 -0
- package/dist/navigation-BSuDX6-H.d.mts.map +1 -0
- package/dist/navigation-Di2SkyuD.mjs +20 -0
- package/dist/navigation-Di2SkyuD.mjs.map +1 -0
- package/dist/next-intl-server-CnBEO3Z3.mjs +25 -0
- package/dist/next-intl-server-CnBEO3Z3.mjs.map +1 -0
- package/dist/react19-cache-DHL04P0L.mjs +485 -0
- package/dist/react19-cache-DHL04P0L.mjs.map +1 -0
- package/dist/request.d.mts +5 -0
- package/dist/request.d.mts.map +1 -0
- package/dist/request.mjs +114 -0
- package/dist/request.mjs.map +1 -0
- package/dist/routing-CK71AHzC.mjs +80 -0
- package/dist/routing-CK71AHzC.mjs.map +1 -0
- package/dist/routing-Cqn-FuJK.mjs +9 -0
- package/dist/routing-Cqn-FuJK.mjs.map +1 -0
- package/dist/routing.d.mts +13 -0
- package/dist/routing.d.mts.map +1 -0
- package/dist/routing.mjs +3 -0
- package/dist/server-CiAHG84s.d.mts +167 -0
- package/dist/server-CiAHG84s.d.mts.map +1 -0
- package/dist/server-next.d.mts +37 -0
- package/dist/server-next.d.mts.map +1 -0
- package/dist/server-next.mjs +52 -0
- package/dist/server-next.mjs.map +1 -0
- package/dist/server.d.mts +3 -0
- package/dist/server.mjs +12 -0
- package/dist/server.mjs.map +1 -0
- package/package.json +104 -0
- package/src/__tests__/client.test.ts +37 -0
- package/src/__tests__/dictionary-loader.test.ts +228 -0
- package/src/__tests__/exports.test.ts +76 -0
- package/src/__tests__/extend.test.ts +55 -0
- package/src/__tests__/integration.test.ts +341 -0
- package/src/__tests__/middleware.test.ts +38 -0
- package/src/__tests__/navigation.test.ts +64 -0
- package/src/__tests__/request.test.ts +151 -0
- package/src/__tests__/routing.test.ts +39 -0
- package/src/__tests__/security.test.ts +293 -0
- package/src/__tests__/test-utils.ts +28 -0
- package/src/__tests__/vitest.d.ts +13 -0
- package/src/client-next.ts +31 -0
- package/src/client.ts +27 -0
- package/src/dictionaries/de.json +193 -0
- package/src/dictionaries/en.json +193 -0
- package/src/dictionaries/es.json +193 -0
- package/src/dictionaries/fr.json +193 -0
- package/src/dictionaries/pt.json +193 -0
- package/src/index.ts +24 -0
- package/src/middleware.ts +27 -0
- package/src/navigation.ts +91 -0
- package/src/request.ts +126 -0
- package/src/routing.export.ts +11 -0
- package/src/routing.ts +63 -0
- package/src/server-next.ts +57 -0
- package/src/server.ts +39 -0
- package/src/shared/constants.ts +42 -0
- package/src/shared/dictionary-loader.ts +599 -0
- package/src/shared/next-intl-adapter.ts +80 -0
- package/src/shared/next-intl-server.ts +45 -0
- package/src/shared/react19-cache.ts +132 -0
- package/src/types.ts +55 -0
- package/src/utils/extend.ts +48 -0
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"locale": "Deutsch",
|
|
4
|
+
"language": "Sprache"
|
|
5
|
+
},
|
|
6
|
+
"web": {
|
|
7
|
+
"global": {
|
|
8
|
+
"primaryCta": "Vereinbaren Sie einen Anruf",
|
|
9
|
+
"secondaryCta": "Anmelden"
|
|
10
|
+
},
|
|
11
|
+
"header": {
|
|
12
|
+
"home": "Startseite",
|
|
13
|
+
"product": {
|
|
14
|
+
"title": "Produkt",
|
|
15
|
+
"description": "Die Verwaltung eines kleinen Unternehmens ist heute bereits schwierig.",
|
|
16
|
+
"pricing": "Preise"
|
|
17
|
+
},
|
|
18
|
+
"blog": "Blog",
|
|
19
|
+
"docs": "Dokumente",
|
|
20
|
+
"contact": "Kontakt",
|
|
21
|
+
"signIn": "Anmelden",
|
|
22
|
+
"signUp": "Loslegen"
|
|
23
|
+
},
|
|
24
|
+
"home": {
|
|
25
|
+
"meta": {
|
|
26
|
+
"title": "Transformieren Sie Ihre Geschäftsabläufe noch heute",
|
|
27
|
+
"description": "In der heutigen schnelllebigen Welt verdient Ihr Unternehmen mehr als veraltete Handelssysteme. Unsere innovative Plattform optimiert die Abläufe, reduziert die Komplexität und hilft kleinen Unternehmen, in der modernen Wirtschaft erfolgreich zu sein."
|
|
28
|
+
},
|
|
29
|
+
"hero": {
|
|
30
|
+
"announcement": "Lesen Sie unseren neuesten Artikel"
|
|
31
|
+
},
|
|
32
|
+
"cases": {
|
|
33
|
+
"title": "Erfolgsgeschichten aus aller Welt"
|
|
34
|
+
},
|
|
35
|
+
"features": {
|
|
36
|
+
"title": "Leistungsstarke Werkzeuge für moderne Unternehmen",
|
|
37
|
+
"description": "Entdecken Sie, wie unsere hochmodernen Funktionen Ihre täglichen Abläufe revolutionieren können.",
|
|
38
|
+
"items": [
|
|
39
|
+
{
|
|
40
|
+
"title": "Optimierte Abläufe",
|
|
41
|
+
"description": "Unsere Plattform optimiert die Abläufe, reduziert die Komplexität und hilft kleinen Unternehmen, in der modernen Wirtschaft erfolgreich zu sein."
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"title": "Echtzeit-Analysen",
|
|
45
|
+
"description": "Erhalten Sie sofortige Einblicke in Ihre Unternehmensleistung mit umfassenden Analyse- und Berichtswerkzeugen."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"title": "Automatisierte Arbeitsabläufe",
|
|
49
|
+
"description": "Sparen Sie Zeit und reduzieren Sie Fehler mit intelligenter Automatisierung, die sich wiederholende Aufgaben für Sie übernimmt."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"title": "Sichere Transaktionen",
|
|
53
|
+
"description": "Seien Sie unbesorgt, denn Ihre Geschäftsabläufe sind durch Sicherheits- und Verschlüsselungsmaßnahmen auf Unternehmensniveau geschützt."
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"stats": {
|
|
58
|
+
"title": "Echte Ergebnisse, echte Auswirkungen",
|
|
59
|
+
"description": "Schließen Sie sich Tausenden von Unternehmen an, die ihre Abläufe mit unserer Plattform transformiert haben. Unsere Lösungen haben Unternehmen geholfen, die Verwaltungskosten um 60 % zu senken und die Handelseffizienz im Durchschnitt um 45 % zu steigern.",
|
|
60
|
+
"items": [
|
|
61
|
+
{
|
|
62
|
+
"title": "Monatlich aktive Nutzer",
|
|
63
|
+
"metric": "100000",
|
|
64
|
+
"delta": "10",
|
|
65
|
+
"type": "Einheit"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"title": "Täglich aktive Nutzer",
|
|
69
|
+
"metric": "10000",
|
|
70
|
+
"delta": "-5",
|
|
71
|
+
"type": "Einheit"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"title": "Monatlich wiederkehrende Einnahmen",
|
|
75
|
+
"metric": "100000",
|
|
76
|
+
"delta": "20",
|
|
77
|
+
"type": "Währung"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"title": "Kosten pro Akquisition",
|
|
81
|
+
"metric": "100",
|
|
82
|
+
"delta": "-10",
|
|
83
|
+
"type": "Währung"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"testimonials": {
|
|
88
|
+
"title": "Hören Sie von unserer florierenden Gemeinschaft",
|
|
89
|
+
"items": [
|
|
90
|
+
{
|
|
91
|
+
"title": "Beste Entscheidung",
|
|
92
|
+
"description": "Unser Ziel war es, den Handel für kleine und mittlere Unternehmen zu optimieren, um es einfacher und schneller als je zuvor zu machen, und das haben wir gemeinsam erreicht.",
|
|
93
|
+
"author": {
|
|
94
|
+
"name": "Hayden Bleasel",
|
|
95
|
+
"image": "https://github.com/haydenbleasel.png"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"title": "Wendepunkt",
|
|
100
|
+
"description": "Diese Plattform hat revolutioniert, wie wir unsere täglichen Abläufe handhaben. Die Effizienzgewinne waren bemerkenswert.",
|
|
101
|
+
"author": {
|
|
102
|
+
"name": "Lee Robinson",
|
|
103
|
+
"image": "https://github.com/leerob.png"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"title": "Übertraf die Erwartungen",
|
|
108
|
+
"description": "Die Implementierung verlief reibungslos und die Ergebnisse waren sofort sichtbar. Unser Team hat sich schnell angepasst und die Produktivität ist in die Höhe geschossen.",
|
|
109
|
+
"author": {
|
|
110
|
+
"name": "shadcn",
|
|
111
|
+
"image": "https://github.com/shadcn.png"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"title": "Hervorragender Support",
|
|
116
|
+
"description": "Die Plattform ist nicht nur leistungsstark, sondern das Kundenserviceteam war auch außergewöhnlich darin, uns zu helfen, ihr Potenzial zu maximieren.",
|
|
117
|
+
"author": {
|
|
118
|
+
"name": "Pontus Abrahamsson",
|
|
119
|
+
"image": "https://github.com/pontusab.png"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"faq": {
|
|
125
|
+
"title": "Häufige Fragen, Expertenantworten",
|
|
126
|
+
"description": "Erhalten Sie schnelle Antworten auf Ihre dringendsten Fragen zu unserer Plattform. Wir haben alles zusammengestellt, was Sie über die Transformation Ihrer Geschäftsabläufe und den Einstieg in moderne Handelslösungen wissen müssen.",
|
|
127
|
+
"cta": "Haben Sie Fragen? Kontaktieren Sie uns",
|
|
128
|
+
"items": [
|
|
129
|
+
{
|
|
130
|
+
"question": "Was ist die Plattform?",
|
|
131
|
+
"answer": "Die Plattform ist eine Handelsplattform, die es Ihnen ermöglicht, mit Vertrauen zu handeln."
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"question": "Wie sicher ist die Plattform?",
|
|
135
|
+
"answer": "Unsere Plattform verwendet Sicherheitsmaßnahmen auf Unternehmensniveau, einschließlich End-to-End-Verschlüsselung und Multi-Faktor-Authentifizierung, um sicherzustellen, dass Ihre Handelsaktivitäten vollständig sicher bleiben."
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"question": "Welche Handelsfunktionen sind verfügbar?",
|
|
139
|
+
"answer": "Die Plattform bietet umfassende Handelswerkzeuge, einschließlich Echtzeit-Marktdaten, fortschrittlicher Charting, automatisierter Handelsstrategien und detaillierter Analysen zur Unterstützung fundierter Entscheidungen."
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"question": "Wie funktioniert die Preisgestaltung?",
|
|
143
|
+
"answer": "Wir bieten flexible Preisstufen an, die mit den Bedürfnissen Ihres Unternehmens skalieren, von Einsteigerplänen für Einzelhändler bis hin zu Unternehmenslösungen für große Organisationen."
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"question": "Welche Art von Unterstützung bieten Sie?",
|
|
147
|
+
"answer": "Unser engagiertes Support-Team ist rund um die Uhr über mehrere Kanäle erreichbar, einschließlich Live-Chat, E-Mail und Telefon. Wir bieten auch umfangreiche Dokumentation und Schulungsressourcen."
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"cta": {
|
|
152
|
+
"title": "Starten Sie Ihre Geschäftstransformation",
|
|
153
|
+
"description": "Schließen Sie sich Tausenden von zukunftsorientierten Unternehmen an, die ihre Abläufe bereits modernisiert haben. Unsere Plattform bietet die Werkzeuge, Unterstützung und Effizienz, die Sie benötigen, um in der heutigen wettbewerbsintensiven Markt erfolgreich zu sein. Beginnen Sie in wenigen Minuten."
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"blog": {
|
|
157
|
+
"meta": {
|
|
158
|
+
"title": "Blog",
|
|
159
|
+
"description": "Gedanken, Ideen und Meinungen."
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"contact": {
|
|
163
|
+
"meta": {
|
|
164
|
+
"title": "Lassen Sie uns über Ihr Unternehmen sprechen",
|
|
165
|
+
"description": "Vereinbaren Sie einen Termin mit unserem Team, um zu besprechen, wie wir Ihre Abläufe optimieren und das Wachstum Ihres Unternehmens vorantreiben können."
|
|
166
|
+
},
|
|
167
|
+
"hero": {
|
|
168
|
+
"benefits": [
|
|
169
|
+
{
|
|
170
|
+
"title": "Personalisierte Beratung",
|
|
171
|
+
"description": "Erhalten Sie maßgeschneiderte Lösungen und Expertenrat, die auf die Bedürfnisse Ihres Unternehmens zugeschnitten sind."
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"title": "Nahtlose Integration",
|
|
175
|
+
"description": "Wir integrieren uns nahtlos in Ihre bestehenden Systeme, um einen reibungslosen Übergang und minimale Störungen zu gewährleisten."
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"title": "Expertenrat",
|
|
179
|
+
"description": "Unser Expertenteam wird Sie durch den Prozess führen und sicherstellen, dass Sie das Beste aus unserer Plattform herausholen."
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"form": {
|
|
183
|
+
"title": "Vereinbaren Sie ein Treffen",
|
|
184
|
+
"date": "Datum",
|
|
185
|
+
"firstName": "Vorname",
|
|
186
|
+
"lastName": "Nachname",
|
|
187
|
+
"resume": "Lebenslauf hochladen",
|
|
188
|
+
"cta": "Buchen Sie das Treffen"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"locale": "English",
|
|
4
|
+
"language": "Language"
|
|
5
|
+
},
|
|
6
|
+
"web": {
|
|
7
|
+
"global": {
|
|
8
|
+
"primaryCta": "Book a call",
|
|
9
|
+
"secondaryCta": "Sign up"
|
|
10
|
+
},
|
|
11
|
+
"header": {
|
|
12
|
+
"home": "Home",
|
|
13
|
+
"product": {
|
|
14
|
+
"title": "Product",
|
|
15
|
+
"description": "Managing a small business today is already tough.",
|
|
16
|
+
"pricing": "Pricing"
|
|
17
|
+
},
|
|
18
|
+
"blog": "Blog",
|
|
19
|
+
"docs": "Docs",
|
|
20
|
+
"contact": "Contact",
|
|
21
|
+
"signIn": "Sign in",
|
|
22
|
+
"signUp": "Get started"
|
|
23
|
+
},
|
|
24
|
+
"home": {
|
|
25
|
+
"meta": {
|
|
26
|
+
"title": "Transform Your Business Operations Today",
|
|
27
|
+
"description": "In today's fast-paced world, your business deserves better than outdated trading systems. Our innovative platform streamlines operations, reduces complexity, and helps small businesses thrive in the modern economy."
|
|
28
|
+
},
|
|
29
|
+
"hero": {
|
|
30
|
+
"announcement": "Read our latest article"
|
|
31
|
+
},
|
|
32
|
+
"cases": {
|
|
33
|
+
"title": "Empowering Success Stories Across the Globe"
|
|
34
|
+
},
|
|
35
|
+
"features": {
|
|
36
|
+
"title": "Powerful Tools for Modern Business",
|
|
37
|
+
"description": "Discover how our cutting-edge features can revolutionize your daily operations.",
|
|
38
|
+
"items": [
|
|
39
|
+
{
|
|
40
|
+
"title": "Streamlined Operations",
|
|
41
|
+
"description": "Our platform streamlines operations, reduces complexity, and helps small businesses thrive in the modern economy."
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"title": "Real-Time Analytics",
|
|
45
|
+
"description": "Get instant insights into your business performance with comprehensive analytics and reporting tools."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"title": "Automated Workflows",
|
|
49
|
+
"description": "Save time and reduce errors with intelligent automation that handles repetitive tasks for you."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"title": "Secure Transactions",
|
|
53
|
+
"description": "Rest easy knowing your business operations are protected by enterprise-grade security and encryption."
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"stats": {
|
|
58
|
+
"title": "Real Results, Real Impact",
|
|
59
|
+
"description": "Join thousands of businesses that have transformed their operations with our platform. Our solutions have helped companies reduce administrative overhead by 60% and increase trading efficiency by 45% on average.",
|
|
60
|
+
"items": [
|
|
61
|
+
{
|
|
62
|
+
"title": "Monthly active users",
|
|
63
|
+
"metric": "100000",
|
|
64
|
+
"delta": "10",
|
|
65
|
+
"type": "unit"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"title": "Daily active users",
|
|
69
|
+
"metric": "10000",
|
|
70
|
+
"delta": "-5",
|
|
71
|
+
"type": "unit"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"title": "Monthly recurring revenue",
|
|
75
|
+
"metric": "100000",
|
|
76
|
+
"delta": "20",
|
|
77
|
+
"type": "currency"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"title": "Cost per acquisition",
|
|
81
|
+
"metric": "100",
|
|
82
|
+
"delta": "-10",
|
|
83
|
+
"type": "currency"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"testimonials": {
|
|
88
|
+
"title": "Hear from Our Thriving Community",
|
|
89
|
+
"items": [
|
|
90
|
+
{
|
|
91
|
+
"title": "Best decision",
|
|
92
|
+
"description": "Our goal was to streamline SMB trade, making it easier and faster than ever and we did it together.",
|
|
93
|
+
"author": {
|
|
94
|
+
"name": "Hayden Bleasel",
|
|
95
|
+
"image": "https://github.com/haydenbleasel.png"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"title": "Game changer",
|
|
100
|
+
"description": "This platform revolutionized how we handle our day-to-day operations. The efficiency gains have been remarkable.",
|
|
101
|
+
"author": {
|
|
102
|
+
"name": "Lee Robinson",
|
|
103
|
+
"image": "https://github.com/leerob.png"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"title": "Exceeded expectations",
|
|
108
|
+
"description": "Implementation was smooth and the results were immediate. Our team adapted quickly and productivity soared.",
|
|
109
|
+
"author": {
|
|
110
|
+
"name": "shadcn",
|
|
111
|
+
"image": "https://github.com/shadcn.png"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"title": "Outstanding support",
|
|
116
|
+
"description": "Not only is the platform powerful, but the customer support team has been exceptional in helping us maximize its potential.",
|
|
117
|
+
"author": {
|
|
118
|
+
"name": "Pontus Abrahamsson",
|
|
119
|
+
"image": "https://github.com/pontusab.png"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"faq": {
|
|
125
|
+
"title": "Common Questions, Expert Answers",
|
|
126
|
+
"description": "Get quick answers to your most pressing questions about our platform. We've compiled everything you need to know about transforming your business operations and getting started with modern trading solutions.",
|
|
127
|
+
"cta": "Any questions? Reach out",
|
|
128
|
+
"items": [
|
|
129
|
+
{
|
|
130
|
+
"question": "What is the platform?",
|
|
131
|
+
"answer": "The platform is a trading platform that allows you to trade with confidence."
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"question": "How secure is the platform?",
|
|
135
|
+
"answer": "Our platform employs enterprise-grade security measures, including end-to-end encryption and multi-factor authentication, to ensure your trading activities remain completely secure."
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"question": "What trading features are available?",
|
|
139
|
+
"answer": "The platform offers comprehensive trading tools including real-time market data, advanced charting, automated trading strategies, and detailed analytics to support informed decision-making."
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"question": "How does pricing work?",
|
|
143
|
+
"answer": "We offer flexible pricing tiers designed to scale with your business needs, from starter plans for individual traders to enterprise solutions for large organizations."
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"question": "What kind of support do you provide?",
|
|
147
|
+
"answer": "Our dedicated support team is available 24/7 through multiple channels including live chat, email, and phone. We also provide extensive documentation and training resources."
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"cta": {
|
|
152
|
+
"title": "Start Your Business Transformation",
|
|
153
|
+
"description": "Join thousands of forward-thinking businesses who have already modernized their operations. Our platform offers the tools, support, and efficiency you need to succeed in today's competitive market. Get started in minutes."
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"blog": {
|
|
157
|
+
"meta": {
|
|
158
|
+
"title": "Blog",
|
|
159
|
+
"description": "Thoughts, ideas, and opinions."
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"contact": {
|
|
163
|
+
"meta": {
|
|
164
|
+
"title": "Let's Talk About Your Business",
|
|
165
|
+
"description": "Schedule a consultation with our team to discuss how we can help streamline your operations and drive growth for your business."
|
|
166
|
+
},
|
|
167
|
+
"hero": {
|
|
168
|
+
"benefits": [
|
|
169
|
+
{
|
|
170
|
+
"title": "Personalized Consultation",
|
|
171
|
+
"description": "Get tailored solutions and expert advice specific to your business needs."
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"title": "Seamless Integration",
|
|
175
|
+
"description": "We seamlessly integrate with your existing systems to ensure a smooth transition and minimal disruption."
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"title": "Expert Guidance",
|
|
179
|
+
"description": "Our team of experts will guide you through the process, ensuring you get the most out of our platform."
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"form": {
|
|
183
|
+
"title": "Book a meeting",
|
|
184
|
+
"date": "Date",
|
|
185
|
+
"firstName": "First name",
|
|
186
|
+
"lastName": "Last name",
|
|
187
|
+
"resume": "Upload resume",
|
|
188
|
+
"cta": "Book the meeting"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"locale": "Español",
|
|
4
|
+
"language": "Idioma"
|
|
5
|
+
},
|
|
6
|
+
"web": {
|
|
7
|
+
"global": {
|
|
8
|
+
"primaryCta": "Reservar una llamada",
|
|
9
|
+
"secondaryCta": "Regístrate"
|
|
10
|
+
},
|
|
11
|
+
"header": {
|
|
12
|
+
"home": "Inicio",
|
|
13
|
+
"product": {
|
|
14
|
+
"title": "Producto",
|
|
15
|
+
"description": "Gestionar un pequeño negocio hoy en día ya es difícil.",
|
|
16
|
+
"pricing": "Precios"
|
|
17
|
+
},
|
|
18
|
+
"blog": "Blog",
|
|
19
|
+
"docs": "Documentos",
|
|
20
|
+
"contact": "Contacto",
|
|
21
|
+
"signIn": "Iniciar sesión",
|
|
22
|
+
"signUp": "Comenzar"
|
|
23
|
+
},
|
|
24
|
+
"home": {
|
|
25
|
+
"meta": {
|
|
26
|
+
"title": "Transforma las operaciones de tu negocio hoy",
|
|
27
|
+
"description": "En el mundo acelerado de hoy, tu negocio merece algo mejor que sistemas de comercio obsoletos. Nuestra plataforma innovadora simplifica las operaciones, reduce la complejidad y ayuda a las pequeñas empresas a prosperar en la economía moderna."
|
|
28
|
+
},
|
|
29
|
+
"hero": {
|
|
30
|
+
"announcement": "Lee nuestro último artículo"
|
|
31
|
+
},
|
|
32
|
+
"cases": {
|
|
33
|
+
"title": "Empoderando historias de éxito en todo el mundo"
|
|
34
|
+
},
|
|
35
|
+
"features": {
|
|
36
|
+
"title": "Herramientas poderosas para el negocio moderno",
|
|
37
|
+
"description": "Descubre cómo nuestras características de vanguardia pueden revolucionar tus operaciones diarias.",
|
|
38
|
+
"items": [
|
|
39
|
+
{
|
|
40
|
+
"title": "Operaciones simplificadas",
|
|
41
|
+
"description": "Nuestra plataforma simplifica las operaciones, reduce la complejidad y ayuda a las pequeñas empresas a prosperar en la economía moderna."
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"title": "Análisis en tiempo real",
|
|
45
|
+
"description": "Obtén información instantánea sobre el rendimiento de tu negocio con herramientas de análisis e informes completos."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"title": "Flujos de trabajo automatizados",
|
|
49
|
+
"description": "Ahorra tiempo y reduce errores con automatización inteligente que maneja tareas repetitivas por ti."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"title": "Transacciones seguras",
|
|
53
|
+
"description": "Descansa tranquilo sabiendo que las operaciones de tu negocio están protegidas por seguridad y cifrado de nivel empresarial."
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"stats": {
|
|
58
|
+
"title": "Resultados reales, impacto real",
|
|
59
|
+
"description": "Únete a miles de empresas que han transformado sus operaciones con nuestra plataforma. Nuestras soluciones han ayudado a las empresas a reducir los costos administrativos en un 60% y aumentar la eficiencia comercial en un 45% en promedio.",
|
|
60
|
+
"items": [
|
|
61
|
+
{
|
|
62
|
+
"title": "Usuarios activos mensuales",
|
|
63
|
+
"metric": "100000",
|
|
64
|
+
"delta": "10",
|
|
65
|
+
"type": "unidad"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"title": "Usuarios activos diarios",
|
|
69
|
+
"metric": "10000",
|
|
70
|
+
"delta": "-5",
|
|
71
|
+
"type": "unidad"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"title": "Ingresos recurrentes mensuales",
|
|
75
|
+
"metric": "100000",
|
|
76
|
+
"delta": "20",
|
|
77
|
+
"type": "moneda"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"title": "Costo por adquisición",
|
|
81
|
+
"metric": "100",
|
|
82
|
+
"delta": "-10",
|
|
83
|
+
"type": "moneda"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"testimonials": {
|
|
88
|
+
"title": "Escucha a nuestra comunidad próspera",
|
|
89
|
+
"items": [
|
|
90
|
+
{
|
|
91
|
+
"title": "Mejor decisión",
|
|
92
|
+
"description": "Nuestro objetivo era simplificar el comercio de las pequeñas y medianas empresas, haciéndolo más fácil y rápido que nunca, y lo logramos juntos.",
|
|
93
|
+
"author": {
|
|
94
|
+
"name": "Hayden Bleasel",
|
|
95
|
+
"image": "https://github.com/haydenbleasel.png"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"title": "Cambio radical",
|
|
100
|
+
"description": "Esta plataforma revolucionó la forma en que manejamos nuestras operaciones diarias. Las ganancias de eficiencia han sido notables.",
|
|
101
|
+
"author": {
|
|
102
|
+
"name": "Lee Robinson",
|
|
103
|
+
"image": "https://github.com/leerob.png"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"title": "Superó las expectativas",
|
|
108
|
+
"description": "La implementación fue fluida y los resultados fueron inmediatos. Nuestro equipo se adaptó rápidamente y la productividad se disparó.",
|
|
109
|
+
"author": {
|
|
110
|
+
"name": "shadcn",
|
|
111
|
+
"image": "https://github.com/shadcn.png"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"title": "Soporte excepcional",
|
|
116
|
+
"description": "No solo la plataforma es poderosa, sino que el equipo de atención al cliente ha sido excepcional en ayudarnos a maximizar su potencial.",
|
|
117
|
+
"author": {
|
|
118
|
+
"name": "Pontus Abrahamsson",
|
|
119
|
+
"image": "https://github.com/pontusab.png"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"faq": {
|
|
125
|
+
"title": "Preguntas comunes, respuestas de expertos",
|
|
126
|
+
"description": "Obtén respuestas rápidas a tus preguntas más urgentes sobre nuestra plataforma. Hemos recopilado todo lo que necesitas saber sobre la transformación de las operaciones de tu negocio y cómo comenzar con soluciones comerciales modernas.",
|
|
127
|
+
"cta": "¿Tienes preguntas? Contáctanos",
|
|
128
|
+
"items": [
|
|
129
|
+
{
|
|
130
|
+
"question": "¿Qué es la plataforma?",
|
|
131
|
+
"answer": "La plataforma es una plataforma de comercio que te permite comerciar con confianza."
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"question": "¿Qué tan segura es la plataforma?",
|
|
135
|
+
"answer": "Nuestra plataforma emplea medidas de seguridad de nivel empresarial, incluyendo cifrado de extremo a extremo y autenticación multifactor, para asegurar que tus actividades comerciales permanezcan completamente seguras."
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"question": "¿Qué características de comercio están disponibles?",
|
|
139
|
+
"answer": "La plataforma ofrece herramientas de comercio completas que incluyen datos de mercado en tiempo real, gráficos avanzados, estrategias de comercio automatizadas y análisis detallados para apoyar la toma de decisiones informadas."
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"question": "¿Cómo funciona la fijación de precios?",
|
|
143
|
+
"answer": "Ofrecemos niveles de precios flexibles diseñados para escalar con las necesidades de tu negocio, desde planes iniciales para comerciantes individuales hasta soluciones empresariales para grandes organizaciones."
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"question": "¿Qué tipo de soporte proporcionan?",
|
|
147
|
+
"answer": "Nuestro equipo de soporte dedicado está disponible 24/7 a través de múltiples canales, incluyendo chat en vivo, correo electrónico y teléfono. También proporcionamos documentación extensa y recursos de capacitación."
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"cta": {
|
|
152
|
+
"title": "Comienza la transformación de tu negocio",
|
|
153
|
+
"description": "Únete a miles de empresas con visión de futuro que ya han modernizado sus operaciones. Nuestra plataforma ofrece las herramientas, el soporte y la eficiencia que necesitas para tener éxito en el competitivo mercado actual. Comienza en minutos."
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"blog": {
|
|
157
|
+
"meta": {
|
|
158
|
+
"title": "Blog",
|
|
159
|
+
"description": "Pensamientos, ideas y opiniones."
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"contact": {
|
|
163
|
+
"meta": {
|
|
164
|
+
"title": "Hablemos sobre tu negocio",
|
|
165
|
+
"description": "Programa una consulta con nuestro equipo para discutir cómo podemos ayudar a simplificar tus operaciones y fomentar el crecimiento de tu negocio."
|
|
166
|
+
},
|
|
167
|
+
"hero": {
|
|
168
|
+
"benefits": [
|
|
169
|
+
{
|
|
170
|
+
"title": "Consulta personalizada",
|
|
171
|
+
"description": "Obtén soluciones a medida y asesoramiento experto específico para las necesidades de tu negocio."
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"title": "Integración sin problemas",
|
|
175
|
+
"description": "Nos integramos sin problemas con tus sistemas existentes para asegurar una transición suave y una mínima interrupción."
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"title": "Orientación experta",
|
|
179
|
+
"description": "Nuestro equipo de expertos te guiará a través del proceso, asegurando que obtengas el máximo provecho de nuestra plataforma."
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"form": {
|
|
183
|
+
"title": "Reservar una reunión",
|
|
184
|
+
"date": "Fecha",
|
|
185
|
+
"firstName": "Nombre",
|
|
186
|
+
"lastName": "Apellido",
|
|
187
|
+
"resume": "Subir currículum",
|
|
188
|
+
"cta": "Reservar la reunión"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|