@crownpeak/dqm-react-component 1.1.0 → 1.2.0
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/CHANGELOG.md +16 -0
- package/README.md +52 -24
- package/dist/DQMSidebar.d.ts.map +1 -1
- package/dist/ErrorBoundary.d.ts.map +1 -1
- package/dist/__tests__/setup.d.ts +1 -0
- package/dist/__tests__/setup.d.ts.map +1 -0
- package/dist/__tests__/utils.d.ts +145 -0
- package/dist/__tests__/utils.d.ts.map +1 -0
- package/dist/auth-ui/assets/index-YKFZYENy.js +158 -0
- package/dist/auth-ui/index.html +1 -1
- package/dist/components/auth/DQMLogin.d.ts.map +1 -1
- package/dist/components/auth/index.d.ts +0 -1
- package/dist/components/auth/index.d.ts.map +1 -1
- package/dist/components/cards/AISummaryCard.d.ts +2 -0
- package/dist/components/cards/AISummaryCard.d.ts.map +1 -0
- package/dist/components/cards/index.d.ts +1 -0
- package/dist/components/cards/index.d.ts.map +1 -1
- package/dist/components/common/LanguageSwitch.d.ts +5 -0
- package/dist/components/common/LanguageSwitch.d.ts.map +1 -0
- package/dist/components/common/LanguageSwitchBase.d.ts +16 -0
- package/dist/components/common/LanguageSwitchBase.d.ts.map +1 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/components/common/index.d.ts.map +1 -1
- package/dist/components/modals/AISettingsDialog.d.ts +61 -0
- package/dist/components/modals/AISettingsDialog.d.ts.map +1 -0
- package/dist/components/modals/HighlightModal.d.ts +45 -0
- package/dist/components/modals/HighlightModal.d.ts.map +1 -0
- package/dist/components/modals/LoginOverlay.d.ts +22 -0
- package/dist/components/modals/LoginOverlay.d.ts.map +1 -0
- package/dist/components/modals/index.d.ts +9 -0
- package/dist/components/modals/index.d.ts.map +1 -0
- package/dist/components/renderers/BrowserViewRenderer.d.ts.map +1 -1
- package/dist/components/renderers/ShadowDOMRenderer.d.ts.map +1 -1
- package/dist/components/sidebar/index.d.ts +1 -0
- package/dist/components/sidebar/index.d.ts.map +1 -1
- package/dist/context/ai/AIContext.d.ts +13 -0
- package/dist/context/ai/AIContext.d.ts.map +1 -0
- package/dist/context/ai/index.d.ts +12 -0
- package/dist/context/ai/index.d.ts.map +1 -0
- package/dist/context/ai/types.d.ts +161 -0
- package/dist/context/ai/types.d.ts.map +1 -0
- package/dist/context/ai/useAIEngine.d.ts +10 -0
- package/dist/context/ai/useAIEngine.d.ts.map +1 -0
- package/dist/context/ai/useAISummary.d.ts +10 -0
- package/dist/context/ai/useAISummary.d.ts.map +1 -0
- package/dist/context/ai/useAITranslation.d.ts +10 -0
- package/dist/context/ai/useAITranslation.d.ts.map +1 -0
- package/dist/context/ai/useTranslationCache.d.ts +9 -0
- package/dist/context/ai/useTranslationCache.d.ts.map +1 -0
- package/dist/dqm-widget.esm.js +394 -264
- package/dist/dqm-widget.iife.js +76 -25
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/useAnalysis.d.ts +43 -0
- package/dist/hooks/useAnalysis.d.ts.map +1 -0
- package/dist/hooks/useAuthentication.d.ts +49 -0
- package/dist/hooks/useAuthentication.d.ts.map +1 -0
- package/dist/hooks/useHighlightActions.d.ts +37 -0
- package/dist/hooks/useHighlightActions.d.ts.map +1 -0
- package/dist/hooks/useHighlights.d.ts +72 -0
- package/dist/hooks/useHighlights.d.ts.map +1 -0
- package/dist/html-pages/DQMWidget.d.ts.map +1 -1
- package/dist/html-pages/index.d.ts.map +1 -1
- package/dist/i18n/auth/de.d.ts +25 -0
- package/dist/i18n/auth/de.d.ts.map +1 -0
- package/dist/i18n/auth/en.d.ts +26 -0
- package/dist/i18n/auth/en.d.ts.map +1 -0
- package/dist/i18n/auth/es.d.ts +25 -0
- package/dist/i18n/auth/es.d.ts.map +1 -0
- package/dist/i18n/auth/index.d.ts +8 -0
- package/dist/i18n/auth/index.d.ts.map +1 -0
- package/dist/i18n/common/de.d.ts +18 -0
- package/dist/i18n/common/de.d.ts.map +1 -0
- package/dist/i18n/common/en.d.ts +19 -0
- package/dist/i18n/common/en.d.ts.map +1 -0
- package/dist/i18n/common/es.d.ts +18 -0
- package/dist/i18n/common/es.d.ts.map +1 -0
- package/dist/i18n/common/index.d.ts +8 -0
- package/dist/i18n/common/index.d.ts.map +1 -0
- package/dist/i18n/demo/de.d.ts +104 -0
- package/dist/i18n/demo/de.d.ts.map +1 -0
- package/dist/i18n/demo/en.d.ts +105 -0
- package/dist/i18n/demo/en.d.ts.map +1 -0
- package/dist/i18n/demo/es.d.ts +104 -0
- package/dist/i18n/demo/es.d.ts.map +1 -0
- package/dist/i18n/demo/index.d.ts +8 -0
- package/dist/i18n/demo/index.d.ts.map +1 -0
- package/dist/i18n/index.d.ts +673 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/sidebar/de.d.ts +89 -0
- package/dist/i18n/sidebar/de.d.ts.map +1 -0
- package/dist/i18n/sidebar/en.d.ts +90 -0
- package/dist/i18n/sidebar/en.d.ts.map +1 -0
- package/dist/i18n/sidebar/es.d.ts +89 -0
- package/dist/i18n/sidebar/es.d.ts.map +1 -0
- package/dist/i18n/sidebar/index.d.ts +8 -0
- package/dist/i18n/sidebar/index.d.ts.map +1 -0
- package/dist/i18n.d.ts +8 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/index.cjs +61 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.html +3 -3
- package/dist/index.js +17795 -7252
- package/dist/index.js.map +1 -1
- package/dist/locale.d.ts +25 -0
- package/dist/locale.d.ts.map +1 -0
- package/dist/mocks/browser.d.ts +23 -0
- package/dist/mocks/browser.d.ts.map +1 -0
- package/dist/mocks/handlers.d.ts +32 -0
- package/dist/mocks/handlers.d.ts.map +1 -0
- package/dist/mocks/index.d.ts +7 -0
- package/dist/mocks/index.d.ts.map +1 -0
- package/dist/mocks/server.d.ts +24 -0
- package/dist/mocks/server.d.ts.map +1 -0
- package/dist/server/routes/auth.js +0 -10
- package/dist/server/routes/auth.js.map +1 -1
- package/dist/store/api/dqmApi.d.ts +1793 -0
- package/dist/store/api/dqmApi.d.ts.map +1 -0
- package/dist/store/api/index.d.ts +6 -0
- package/dist/store/api/index.d.ts.map +1 -0
- package/dist/store/index.d.ts +57 -0
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/localeSlice.d.ts +6 -0
- package/dist/store/localeSlice.d.ts.map +1 -0
- package/dist/store/slices/aiSlice.d.ts +134 -0
- package/dist/store/slices/aiSlice.d.ts.map +1 -0
- package/dist/store/slices/analysisSlice.d.ts +54 -0
- package/dist/store/slices/analysisSlice.d.ts.map +1 -0
- package/dist/store/slices/authSlice.d.ts +170 -0
- package/dist/store/slices/authSlice.d.ts.map +1 -0
- package/dist/store/slices/highlightSlice.d.ts +188 -0
- package/dist/store/slices/highlightSlice.d.ts.map +1 -0
- package/dist/store/slices/index.d.ts +12 -0
- package/dist/store/slices/index.d.ts.map +1 -0
- package/dist/types.d.ts +27 -8
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/aiJsonClient.d.ts +23 -0
- package/dist/utils/aiJsonClient.d.ts.map +1 -0
- package/dist/utils/colors/GenerateCategoryColors.d.ts.map +1 -1
- package/dist/utils/logger.d.ts +107 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/openaiJsonClient.d.ts +8 -0
- package/dist/utils/openaiJsonClient.d.ts.map +1 -0
- package/dist/utils/sanitizeHtmlDocument.d.ts +4 -0
- package/dist/utils/sanitizeHtmlDocument.d.ts.map +1 -0
- package/dist/utils/secureStorage.d.ts +95 -0
- package/dist/utils/secureStorage.d.ts.map +1 -0
- package/dist/utils/storage.d.ts.map +1 -1
- package/dist/utils/translationCache.d.ts +45 -0
- package/dist/utils/translationCache.d.ts.map +1 -0
- package/dist/utils/translationUtils.d.ts +52 -0
- package/dist/utils/translationUtils.d.ts.map +1 -0
- package/package.json +48 -10
- package/AUTHENTICATION.md +0 -281
- package/BACKEND-API.md +0 -1829
- package/DEVELOPMENT.md +0 -374
- package/EXAMPLES.md +0 -381
- package/QUICKSTART.md +0 -207
- package/dist/auth-ui/assets/index-CczTRrba.js +0 -158
- package/dist/components/auth/OAuth2CallbackHandler.d.ts +0 -15
- package/dist/components/auth/OAuth2CallbackHandler.d.ts.map +0 -1
|
@@ -0,0 +1,673 @@
|
|
|
1
|
+
import { default as i18n } from 'i18next';
|
|
2
|
+
/**
|
|
3
|
+
* Combine translations into i18next resource format
|
|
4
|
+
*/
|
|
5
|
+
declare const resources: {
|
|
6
|
+
readonly en: {
|
|
7
|
+
readonly common: {
|
|
8
|
+
readonly language: "Language";
|
|
9
|
+
readonly language_switch_label: "Language";
|
|
10
|
+
readonly language_en: "English";
|
|
11
|
+
readonly language_de: "German";
|
|
12
|
+
readonly language_es: "Spanish";
|
|
13
|
+
readonly source_url: "URL overridden";
|
|
14
|
+
readonly source_user: "Custom selected";
|
|
15
|
+
readonly source_navigator: "Browser setting";
|
|
16
|
+
readonly source_default: "Default locale";
|
|
17
|
+
readonly reset: "Reset";
|
|
18
|
+
readonly logout: "Logout";
|
|
19
|
+
};
|
|
20
|
+
readonly sidebar: {
|
|
21
|
+
readonly title: "Digital Quality and Accessibility";
|
|
22
|
+
readonly ready_title: "Ready to Analyze";
|
|
23
|
+
readonly ready_body: "Click \"Run Quality Check\" to analyze the current page for accessibility and quality issues.";
|
|
24
|
+
readonly run_quality_check: "Run Quality Check";
|
|
25
|
+
readonly analyzing: "Analyzing...";
|
|
26
|
+
readonly access_denied: "Access Denied";
|
|
27
|
+
readonly config_required: "Configuration Required";
|
|
28
|
+
readonly auth_error: "Authentication Error";
|
|
29
|
+
readonly close: "Close";
|
|
30
|
+
readonly close_sidebar: "Close sidebar";
|
|
31
|
+
readonly fab_tooltip: "DQM Quality Analysis";
|
|
32
|
+
readonly ai_settings: "AI Assistant";
|
|
33
|
+
readonly ai_backend_api: "ChatGPT (API)";
|
|
34
|
+
readonly summary_label: "Summary";
|
|
35
|
+
readonly summary_stats: "AI stats – attempts: {{attempts}}, empty: {{empty}}, mode: {{mode}}, duration: {{duration}}ms";
|
|
36
|
+
readonly openai_info: "Uses an OpenAI-compatible Chat Completions API. A browser call usually requires a CORS-enabled proxy.";
|
|
37
|
+
readonly openai_model: "OpenAI model";
|
|
38
|
+
readonly openai_base_url: "OpenAI base URL";
|
|
39
|
+
readonly openai_api_key: "OpenAI API key";
|
|
40
|
+
readonly openai_missing_key: "OpenAI API key is missing.";
|
|
41
|
+
readonly translation_enable: "Auto-translate DQM results";
|
|
42
|
+
readonly summary_enable: "AI summary card";
|
|
43
|
+
readonly ai_model_hint: "Model choice affects translation and summary quality/speed.";
|
|
44
|
+
readonly ai_cache_clear: "Clear AI cache";
|
|
45
|
+
readonly translation_not_needed: "UI language is English; translation is not needed.";
|
|
46
|
+
readonly translation_target_lang: "Target language: {{lang}}";
|
|
47
|
+
readonly translation_when: "AI features run automatically after an analysis completes, when you change the UI language, or when you enable them here.";
|
|
48
|
+
readonly ai_limitations: "AI can be wrong or hallucinate – please verify results.";
|
|
49
|
+
readonly summary_api_only: "AI features use ChatGPT (API) for translation and summaries.";
|
|
50
|
+
readonly summary_disclaimer: "Note: Summaries may contain errors or hallucinations. Please verify.";
|
|
51
|
+
readonly translation_full_power: "Full translation (may take longer)";
|
|
52
|
+
readonly translation_model: "Model: {{model}}";
|
|
53
|
+
readonly translation_downloading: "Initializing AI…";
|
|
54
|
+
readonly translation_translating: "Translating results…";
|
|
55
|
+
readonly translation_progress: "{{done}} / {{total}} checkpoints";
|
|
56
|
+
readonly translation_ready: "Translation is ready.";
|
|
57
|
+
readonly translation_partial: "Translation stopped early to keep performance snappy. Some items remain untranslated.";
|
|
58
|
+
readonly translation_incomplete: "Some items could not be translated reliably and remain unchanged.";
|
|
59
|
+
readonly translation_restart: "Translate missing items";
|
|
60
|
+
readonly summary_restart: "Restart summary";
|
|
61
|
+
readonly summary_title: "AI Summary";
|
|
62
|
+
readonly summary_regenerate: "Regenerate";
|
|
63
|
+
readonly summary_generating: "Generating summary…";
|
|
64
|
+
readonly summary_failed: "Summary failed";
|
|
65
|
+
readonly summary_empty: "No summary available yet.";
|
|
66
|
+
readonly summary_disabled: "Enable the AI summary in the AI Assistant settings to get an executive overview of the most important issues.";
|
|
67
|
+
readonly overall_quality: "Overall Quality";
|
|
68
|
+
readonly passed: "Passed";
|
|
69
|
+
readonly failed: "Failed";
|
|
70
|
+
readonly show_all_errors: "Show Page with all Errors";
|
|
71
|
+
readonly quality_breakdown: "Quality Breakdown";
|
|
72
|
+
readonly all_passed: "All Passed";
|
|
73
|
+
readonly x_of_y_passed: "{{passed}} of {{total}} passed";
|
|
74
|
+
readonly percent_passed: "{{percent}}% passed";
|
|
75
|
+
readonly failed_checkpoints: "Failed Checkpoints";
|
|
76
|
+
readonly filter_by_category: "Filter by Category";
|
|
77
|
+
readonly showing_categories: "Showing {{count}} of {{total}} categories";
|
|
78
|
+
readonly showing_all_categories: "Showing all of {{total}} categories";
|
|
79
|
+
readonly show_all: "Show All";
|
|
80
|
+
readonly view_in_browser: "View in Browser";
|
|
81
|
+
readonly view_source: "View Source";
|
|
82
|
+
readonly analysis_failed: "Analysis Failed";
|
|
83
|
+
readonly retry: "Retry";
|
|
84
|
+
readonly no_highlighted_content: "No highlighted content available.";
|
|
85
|
+
readonly failed_load_browser: "Failed to load browser view. Please try again.";
|
|
86
|
+
readonly loading_views: "Loading both views...";
|
|
87
|
+
readonly highlighted_errors: "Highlighted Errors";
|
|
88
|
+
readonly browser_view: "Browser View";
|
|
89
|
+
readonly source_view: "Source View";
|
|
90
|
+
readonly x_of_y: "{{current}} of {{total}}";
|
|
91
|
+
readonly prev_highlight: "Previous highlight";
|
|
92
|
+
readonly next_highlight: "Next highlight";
|
|
93
|
+
readonly reload_highlights: "Reload highlights";
|
|
94
|
+
readonly open_in_new_tab: "Open in new tab";
|
|
95
|
+
readonly enable_js: "Enable JavaScript";
|
|
96
|
+
readonly disable_js: "Disable JavaScript";
|
|
97
|
+
readonly no_source_content: "No source content available for this checkpoint.";
|
|
98
|
+
readonly failed_load_all_errors: "Failed to load page with all errors. Please try again.";
|
|
99
|
+
readonly failed_load_highlights: "Failed to load highlighted content. Please try again.";
|
|
100
|
+
readonly failed_load_source: "Failed to load source view. Please try again.";
|
|
101
|
+
readonly dqm_disabled: "DQM is disabled. Permission denied.";
|
|
102
|
+
readonly dqm_not_configured: "DQM is not configured. Please provide API credentials via props, localStorage, or configure an authentication backend.";
|
|
103
|
+
};
|
|
104
|
+
readonly auth: {
|
|
105
|
+
readonly heading: "DQM Authentication";
|
|
106
|
+
readonly subheading: "Please authenticate to access quality analysis";
|
|
107
|
+
readonly enter_credentials: "Enter credentials directly";
|
|
108
|
+
readonly website_id: "Website ID";
|
|
109
|
+
readonly website_id_helper: "Your website identifier";
|
|
110
|
+
readonly api_key: "API Key";
|
|
111
|
+
readonly api_key_helper: "Your Crownpeak DQM API key";
|
|
112
|
+
readonly continue: "Continue";
|
|
113
|
+
readonly or: "OR";
|
|
114
|
+
readonly login_backend: "Login with Backend Session";
|
|
115
|
+
readonly no_credentials: "Don't have credentials?";
|
|
116
|
+
readonly get_started: "Get started with Crownpeak DQM";
|
|
117
|
+
readonly errors: {
|
|
118
|
+
readonly missing_fields: "Please enter both API Key and Website ID";
|
|
119
|
+
readonly non_ascii_key: "API key contains non-ASCII characters";
|
|
120
|
+
readonly backend_missing: "Backend URL not configured";
|
|
121
|
+
readonly failed_redirect: "Failed to redirect to login page";
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
readonly demo: {
|
|
125
|
+
readonly login_title: "DQM Widget Test";
|
|
126
|
+
readonly login_subtitle: "Enter your DQM credentials to view the landing page";
|
|
127
|
+
readonly login_website_id: "Website ID";
|
|
128
|
+
readonly login_api_key: "DQM API Key";
|
|
129
|
+
readonly login_cta: "View Landing Page";
|
|
130
|
+
readonly hero_title: "Your Digital Quality Command Center";
|
|
131
|
+
readonly hero_subtitle: "Run accessibility and quality checks in seconds with guided highlights and actionable remediation steps.";
|
|
132
|
+
readonly hero_cta: "Run a Demo Scan";
|
|
133
|
+
readonly features_title: "Everything you need to ship accessible experiences";
|
|
134
|
+
readonly feature1_title: "One-click quality scans";
|
|
135
|
+
readonly feature1_body: "Trigger Crownpeak DQM analysis directly from your page without leaving your workflow.";
|
|
136
|
+
readonly feature2_title: "Guided remediation";
|
|
137
|
+
readonly feature2_body: "Jump to highlighted issues with source and browser views for faster fixes.";
|
|
138
|
+
readonly feature3_title: "Team-ready insights";
|
|
139
|
+
readonly feature3_body: "Share actionable reports, trends, and checkpoints with your team.";
|
|
140
|
+
readonly stats_title: "Trusted by teams everywhere";
|
|
141
|
+
readonly stat_active_customers: "Active customers";
|
|
142
|
+
readonly stat_uptime: "Uptime guarantee";
|
|
143
|
+
readonly stat_countries: "Countries served";
|
|
144
|
+
readonly stat_support: "Expert support";
|
|
145
|
+
readonly testimonials_title: "What teams are saying";
|
|
146
|
+
readonly testimonial1_quote: "The DQM sidebar cut our accessibility triage time in half. Highlights and source view are game changers.";
|
|
147
|
+
readonly testimonial1_name: "Jordan Lee";
|
|
148
|
+
readonly testimonial1_title: "Lead Accessibility Engineer, Northwind";
|
|
149
|
+
readonly testimonial2_quote: "We finally have a repeatable process to ship compliant pages. The guided navigation keeps everyone aligned.";
|
|
150
|
+
readonly testimonial2_name: "Priya Desai";
|
|
151
|
+
readonly testimonial2_title: "Digital Experience Manager, Fabrikam";
|
|
152
|
+
readonly testimonial3_quote: "Fast, reliable, and easy to roll out across teams. DQM makes quality measurable.";
|
|
153
|
+
readonly testimonial3_name: "Alex Müller";
|
|
154
|
+
readonly testimonial3_title: "Product Director, Contoso";
|
|
155
|
+
readonly pricing_title: "Simple, transparent pricing";
|
|
156
|
+
readonly pricing_subtitle: "Choose the plan that works best for your team";
|
|
157
|
+
readonly plan_starter: "Starter";
|
|
158
|
+
readonly plan_starter_feat1: "10 GB storage";
|
|
159
|
+
readonly plan_starter_feat2: "100 GB bandwidth";
|
|
160
|
+
readonly plan_starter_feat3: "Email support";
|
|
161
|
+
readonly plan_starter_feat4: "99.9% uptime";
|
|
162
|
+
readonly plan_cta_outline: "Get started";
|
|
163
|
+
readonly plan_badge_popular: "Popular";
|
|
164
|
+
readonly plan_pro: "Professional";
|
|
165
|
+
readonly plan_pro_feat1: "100 GB storage";
|
|
166
|
+
readonly plan_pro_feat2: "1 TB bandwidth";
|
|
167
|
+
readonly plan_pro_feat3: "Priority support";
|
|
168
|
+
readonly plan_pro_feat4: "99.99% uptime";
|
|
169
|
+
readonly plan_pro_feat5: "Advanced analytics";
|
|
170
|
+
readonly plan_cta_primary: "Get started";
|
|
171
|
+
readonly plan_enterprise: "Enterprise";
|
|
172
|
+
readonly plan_enterprise_price: "Custom";
|
|
173
|
+
readonly plan_ent_feat1: "Unlimited storage";
|
|
174
|
+
readonly plan_ent_feat2: "Unlimited bandwidth";
|
|
175
|
+
readonly plan_ent_feat3: "24/7 phone support";
|
|
176
|
+
readonly plan_ent_feat4: "99.99% uptime SLA";
|
|
177
|
+
readonly plan_ent_feat5: "Dedicated manager";
|
|
178
|
+
readonly plan_cta_contact: "Contact Sales";
|
|
179
|
+
readonly cta_title: "Ready to get started?";
|
|
180
|
+
readonly cta_subtitle: "Join thousands of companies already using Cloudify. No credit card required.";
|
|
181
|
+
readonly cta_button: "Start your free trial";
|
|
182
|
+
readonly footer_brand: "Cloudify";
|
|
183
|
+
readonly footer_tagline: "Modern cloud infrastructure for the next generation of applications.";
|
|
184
|
+
readonly footer_icon_speed: "Performance insights";
|
|
185
|
+
readonly footer_icon_security: "Security highlights";
|
|
186
|
+
readonly footer_icon_growth: "Growth metrics";
|
|
187
|
+
readonly footer_col_product: "Product";
|
|
188
|
+
readonly footer_col_company: "Company";
|
|
189
|
+
readonly footer_col_resources: "Resources";
|
|
190
|
+
readonly footer_col_support: "Support";
|
|
191
|
+
readonly footer_link_features: "Features";
|
|
192
|
+
readonly footer_link_pricing: "Pricing";
|
|
193
|
+
readonly footer_link_integrations: "Integrations";
|
|
194
|
+
readonly footer_link_docs: "Documentation";
|
|
195
|
+
readonly footer_link_contact: "Contact Us";
|
|
196
|
+
readonly footer_link_about: "About";
|
|
197
|
+
readonly footer_link_blog: "Blog";
|
|
198
|
+
readonly footer_link_careers: "Careers";
|
|
199
|
+
readonly footer_link_press: "Press";
|
|
200
|
+
readonly footer_link_presskit: "Press Kit";
|
|
201
|
+
readonly footer_link_faq: "FAQ";
|
|
202
|
+
readonly footer_link_guides: "Guides";
|
|
203
|
+
readonly footer_link_api: "API Docs";
|
|
204
|
+
readonly footer_link_community: "Community";
|
|
205
|
+
readonly footer_link_status: "Status";
|
|
206
|
+
readonly footer_link_help: "Help Center";
|
|
207
|
+
readonly footer_link_terms: "Terms of Service";
|
|
208
|
+
readonly footer_link_privacy: "Privacy Policy";
|
|
209
|
+
readonly footer_link_cookies: "Cookie Policy";
|
|
210
|
+
readonly footer_copyright: "© 2025 Cloudify. All rights reserved. |";
|
|
211
|
+
readonly editor_title: "HTML Editor";
|
|
212
|
+
readonly debug_mode: "Debug Mode Active";
|
|
213
|
+
readonly debug_desc: "The DQM Widget will analyze the custom HTML from the editor instead of the page content. Your HTML is automatically saved to IndexedDB.";
|
|
214
|
+
readonly tab_editor: "HTML Editor";
|
|
215
|
+
readonly tab_preview: "Preview";
|
|
216
|
+
readonly loading_html: "Loading HTML from IndexedDB...";
|
|
217
|
+
readonly reset_default: "Reset to Default";
|
|
218
|
+
readonly preview_html: "Preview HTML";
|
|
219
|
+
readonly auto_saved: "Auto-saved to IndexedDB";
|
|
220
|
+
readonly close: "Close";
|
|
221
|
+
readonly analyze_custom_html: "Analyze Custom HTML";
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
readonly de: {
|
|
225
|
+
readonly common: {
|
|
226
|
+
readonly language: "Sprache";
|
|
227
|
+
readonly language_switch_label: "Sprache";
|
|
228
|
+
readonly language_en: "Englisch";
|
|
229
|
+
readonly language_de: "Deutsch";
|
|
230
|
+
readonly language_es: "Spanisch";
|
|
231
|
+
readonly source_url: "URL-Override";
|
|
232
|
+
readonly source_user: "Durch Benutzer ausgewählt";
|
|
233
|
+
readonly source_navigator: "Browser-Einstellung";
|
|
234
|
+
readonly source_default: "Standard-Sprache";
|
|
235
|
+
readonly reset: "Zurücksetzen";
|
|
236
|
+
readonly logout: "Abmelden";
|
|
237
|
+
};
|
|
238
|
+
readonly sidebar: {
|
|
239
|
+
readonly title: "Digitale Qualität und Barrierefreiheit";
|
|
240
|
+
readonly ready_title: "Bereit für Analyse";
|
|
241
|
+
readonly ready_body: "Klicken Sie auf \"Qualitätsprüfung starten\", um die aktuelle Seite auf Barrierefreiheits- und Qualitätsprobleme zu prüfen.";
|
|
242
|
+
readonly run_quality_check: "Qualitätsprüfung starten";
|
|
243
|
+
readonly analyzing: "Analyse läuft...";
|
|
244
|
+
readonly access_denied: "Zugriff verweigert";
|
|
245
|
+
readonly config_required: "Konfiguration erforderlich";
|
|
246
|
+
readonly auth_error: "Authentifizierungsfehler";
|
|
247
|
+
readonly close: "Schließen";
|
|
248
|
+
readonly close_sidebar: "Seitenleiste schließen";
|
|
249
|
+
readonly fab_tooltip: "DQM Qualitätsanalyse";
|
|
250
|
+
readonly ai_settings: "KI-Assistent";
|
|
251
|
+
readonly ai_backend_api: "ChatGPT (API)";
|
|
252
|
+
readonly summary_label: "Zusammenfassung";
|
|
253
|
+
readonly summary_stats: "KI-Statistik – Versuche: {{attempts}}, leer: {{empty}}, Modus: {{mode}}, Dauer: {{duration}}ms";
|
|
254
|
+
readonly openai_info: "Nutzt eine OpenAI-kompatible Chat-Completions-API. Ein Browser-Aufruf benötigt meist einen CORS-fähigen Proxy.";
|
|
255
|
+
readonly openai_model: "OpenAI-Modell";
|
|
256
|
+
readonly openai_base_url: "OpenAI Base-URL";
|
|
257
|
+
readonly openai_api_key: "OpenAI API-Key";
|
|
258
|
+
readonly openai_missing_key: "OpenAI API-Key fehlt.";
|
|
259
|
+
readonly translation_enable: "DQM-Ergebnisse automatisch übersetzen";
|
|
260
|
+
readonly summary_enable: "KI-Zusammenfassung";
|
|
261
|
+
readonly ai_model_hint: "Die Modellauswahl beeinflusst Übersetzung und Zusammenfassung (Qualität/Tempo).";
|
|
262
|
+
readonly ai_cache_clear: "KI-Cache löschen";
|
|
263
|
+
readonly translation_not_needed: "Die UI-Sprache ist Englisch; eine Übersetzung ist nicht nötig.";
|
|
264
|
+
readonly translation_target_lang: "Zielsprache: {{lang}}";
|
|
265
|
+
readonly translation_when: "KI-Funktionen laufen automatisch nach Abschluss der Analyse, beim Wechsel der UI-Sprache oder sobald Sie sie hier aktivieren.";
|
|
266
|
+
readonly ai_limitations: "KI kann sich irren oder halluzinieren – bitte Ergebnisse prüfen.";
|
|
267
|
+
readonly summary_api_only: "KI-Funktionen nutzen ChatGPT (API) für Übersetzungen und Zusammenfassungen.";
|
|
268
|
+
readonly summary_disclaimer: "Hinweis: Zusammenfassungen können Fehler oder Halluzinationen enthalten. Bitte fachlich prüfen.";
|
|
269
|
+
readonly translation_full_power: "Vollständige Übersetzung (kann länger dauern)";
|
|
270
|
+
readonly translation_model: "Modell: {{model}}";
|
|
271
|
+
readonly translation_downloading: "KI wird initialisiert…";
|
|
272
|
+
readonly translation_translating: "Ergebnisse werden übersetzt…";
|
|
273
|
+
readonly translation_progress: "{{done}} / {{total}} Prüfpunkte";
|
|
274
|
+
readonly translation_ready: "Übersetzung ist bereit.";
|
|
275
|
+
readonly translation_partial: "Die Übersetzung wurde vorzeitig beendet, um die Performance hoch zu halten. Einige Inhalte bleiben unübersetzt.";
|
|
276
|
+
readonly translation_incomplete: "Einige Inhalte konnten nicht zuverlässig übersetzt werden und bleiben unverändert.";
|
|
277
|
+
readonly translation_restart: "Fehlende Übersetzungen nachholen";
|
|
278
|
+
readonly summary_restart: "Zusammenfassung neu starten";
|
|
279
|
+
readonly summary_title: "KI-Zusammenfassung";
|
|
280
|
+
readonly summary_regenerate: "Neu generieren";
|
|
281
|
+
readonly summary_generating: "Zusammenfassung wird erstellt…";
|
|
282
|
+
readonly summary_failed: "Zusammenfassung fehlgeschlagen";
|
|
283
|
+
readonly summary_empty: "Noch keine Zusammenfassung verfügbar.";
|
|
284
|
+
readonly summary_disabled: "Aktivieren Sie die KI-Zusammenfassung in den KI-Assistent-Einstellungen, um eine kompakte Übersicht der wichtigsten Punkte zu erhalten.";
|
|
285
|
+
readonly overall_quality: "Gesamtqualität";
|
|
286
|
+
readonly passed: "Bestanden";
|
|
287
|
+
readonly failed: "Fehlgeschlagen";
|
|
288
|
+
readonly show_all_errors: "Seite mit allen Fehlern anzeigen";
|
|
289
|
+
readonly quality_breakdown: "Qualitätsübersicht";
|
|
290
|
+
readonly all_passed: "Alle bestanden";
|
|
291
|
+
readonly x_of_y_passed: "{{passed}} von {{total}} bestanden";
|
|
292
|
+
readonly percent_passed: "{{percent}}% bestanden";
|
|
293
|
+
readonly failed_checkpoints: "Fehlgeschlagene Prüfpunkte";
|
|
294
|
+
readonly filter_by_category: "Nach Kategorie filtern";
|
|
295
|
+
readonly showing_categories: "{{count}} von {{total}} Kategorien angezeigt";
|
|
296
|
+
readonly showing_all_categories: "Alle {{total}} Kategorien angezeigt";
|
|
297
|
+
readonly show_all: "Alle anzeigen";
|
|
298
|
+
readonly view_in_browser: "Im Browser anzeigen";
|
|
299
|
+
readonly view_source: "Quellcode anzeigen";
|
|
300
|
+
readonly analysis_failed: "Analyse fehlgeschlagen";
|
|
301
|
+
readonly retry: "Wiederholen";
|
|
302
|
+
readonly no_highlighted_content: "Keine hervorgehobenen Inhalte verfügbar.";
|
|
303
|
+
readonly failed_load_browser: "Browseransicht konnte nicht geladen werden. Bitte erneut versuchen.";
|
|
304
|
+
readonly loading_views: "Beide Ansichten werden geladen...";
|
|
305
|
+
readonly highlighted_errors: "Hervorgehobene Fehler";
|
|
306
|
+
readonly browser_view: "Browseransicht";
|
|
307
|
+
readonly source_view: "Quellansicht";
|
|
308
|
+
readonly x_of_y: "{{current}} von {{total}}";
|
|
309
|
+
readonly prev_highlight: "Vorheriger Fehler";
|
|
310
|
+
readonly next_highlight: "Nächster Fehler";
|
|
311
|
+
readonly reload_highlights: "Hervorhebungen neu laden";
|
|
312
|
+
readonly open_in_new_tab: "In neuem Tab öffnen";
|
|
313
|
+
readonly enable_js: "JavaScript aktivieren";
|
|
314
|
+
readonly disable_js: "JavaScript deaktivieren";
|
|
315
|
+
readonly no_source_content: "Kein Quellcode für diesen Prüfpunkt verfügbar.";
|
|
316
|
+
readonly failed_load_all_errors: "Seite mit allen Fehlern konnte nicht geladen werden. Bitte erneut versuchen.";
|
|
317
|
+
readonly failed_load_highlights: "Hervorgehobene Inhalte konnten nicht geladen werden. Bitte erneut versuchen.";
|
|
318
|
+
readonly failed_load_source: "Quellansicht konnte nicht geladen werden. Bitte erneut versuchen.";
|
|
319
|
+
readonly dqm_disabled: "DQM ist deaktiviert. Zugriff verweigert.";
|
|
320
|
+
readonly dqm_not_configured: "DQM ist nicht konfiguriert. Bitte geben Sie API-Zugangsdaten über Props, localStorage oder ein Authentifizierungs-Backend an.";
|
|
321
|
+
};
|
|
322
|
+
readonly auth: {
|
|
323
|
+
readonly heading: "DQM-Authentifizierung";
|
|
324
|
+
readonly subheading: "Bitte authentifizieren Sie sich für die Qualitätsanalyse";
|
|
325
|
+
readonly enter_credentials: "Zugangsdaten direkt eingeben";
|
|
326
|
+
readonly website_id: "Website-ID";
|
|
327
|
+
readonly website_id_helper: "Ihre Website-Kennung";
|
|
328
|
+
readonly api_key: "API-Schlüssel";
|
|
329
|
+
readonly api_key_helper: "Ihr Crownpeak DQM API-Schlüssel";
|
|
330
|
+
readonly continue: "Weiter";
|
|
331
|
+
readonly or: "ODER";
|
|
332
|
+
readonly login_backend: "Mit Backend-Sitzung anmelden";
|
|
333
|
+
readonly no_credentials: "Keine Zugangsdaten?";
|
|
334
|
+
readonly get_started: "Jetzt mit Crownpeak DQM starten";
|
|
335
|
+
readonly errors: {
|
|
336
|
+
readonly missing_fields: "Bitte API-Schlüssel und Website-ID eingeben";
|
|
337
|
+
readonly non_ascii_key: "API-Schlüssel enthält Nicht-ASCII-Zeichen";
|
|
338
|
+
readonly backend_missing: "Backend-URL nicht konfiguriert";
|
|
339
|
+
readonly failed_redirect: "Weiterleitung zur Login-Seite fehlgeschlagen";
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
readonly demo: {
|
|
343
|
+
readonly login_title: "DQM Widget Test";
|
|
344
|
+
readonly login_subtitle: "Geben Sie Ihre DQM-Zugangsdaten ein, um die Landing Page zu sehen";
|
|
345
|
+
readonly login_website_id: "Website-ID";
|
|
346
|
+
readonly login_api_key: "DQM API-Schlüssel";
|
|
347
|
+
readonly login_cta: "Landing Page anzeigen";
|
|
348
|
+
readonly hero_title: "Ihr Command Center für digitale Qualität";
|
|
349
|
+
readonly hero_subtitle: "Führen Sie Barrierefreiheits- und Qualitätschecks in Sekunden durch – mit geführten Highlights und klaren Handlungsschritten.";
|
|
350
|
+
readonly hero_cta: "Demo-Scan starten";
|
|
351
|
+
readonly features_title: "Alles für barrierefreie Erlebnisse";
|
|
352
|
+
readonly feature1_title: "Qualitätschecks mit einem Klick";
|
|
353
|
+
readonly feature1_body: "Starten Sie Crownpeak DQM direkt von der Seite aus, ohne den Workflow zu verlassen.";
|
|
354
|
+
readonly feature2_title: "Geführte Behebung";
|
|
355
|
+
readonly feature2_body: "Springen Sie zu markierten Problemen mit Quell- und Browseransicht für schnellere Fixes.";
|
|
356
|
+
readonly feature3_title: "Teamfähige Insights";
|
|
357
|
+
readonly feature3_body: "Teilen Sie Berichte, Trends und Checkpoints mit Ihrem Team.";
|
|
358
|
+
readonly stats_title: "Vertrauen von Teams weltweit";
|
|
359
|
+
readonly stat_active_customers: "Aktive Kunden";
|
|
360
|
+
readonly stat_uptime: "Verfügbarkeitsgarantie";
|
|
361
|
+
readonly stat_countries: "Länder im Einsatz";
|
|
362
|
+
readonly stat_support: "Experten-Support";
|
|
363
|
+
readonly testimonials_title: "Das sagen Teams";
|
|
364
|
+
readonly testimonial1_quote: "Die DQM-Sidebar hat unsere Accessibility-Triage halbiert. Highlights und Quellansicht sind ein Game Changer.";
|
|
365
|
+
readonly testimonial1_name: "Jordan Lee";
|
|
366
|
+
readonly testimonial1_title: "Lead Accessibility Engineer, Northwind";
|
|
367
|
+
readonly testimonial2_quote: "Endlich ein reproduzierbarer Prozess für konforme Seiten. Die geführte Navigation hält alle auf Kurs.";
|
|
368
|
+
readonly testimonial2_name: "Priya Desai";
|
|
369
|
+
readonly testimonial2_title: "Digital Experience Manager, Fabrikam";
|
|
370
|
+
readonly testimonial3_quote: "Schnell, zuverlässig und leicht auszurollen. DQM macht Qualität messbar.";
|
|
371
|
+
readonly testimonial3_name: "Alex Müller";
|
|
372
|
+
readonly testimonial3_title: "Product Director, Contoso";
|
|
373
|
+
readonly pricing_title: "Einfache, transparente Preise";
|
|
374
|
+
readonly pricing_subtitle: "Wählen Sie den passenden Plan für Ihr Team";
|
|
375
|
+
readonly plan_starter: "Starter";
|
|
376
|
+
readonly plan_starter_feat1: "10 GB Speicher";
|
|
377
|
+
readonly plan_starter_feat2: "100 GB Bandbreite";
|
|
378
|
+
readonly plan_starter_feat3: "E-Mail-Support";
|
|
379
|
+
readonly plan_starter_feat4: "99,9 % Verfügbarkeit";
|
|
380
|
+
readonly plan_cta_outline: "Jetzt starten";
|
|
381
|
+
readonly plan_badge_popular: "Beliebt";
|
|
382
|
+
readonly plan_pro: "Professional";
|
|
383
|
+
readonly plan_pro_feat1: "100 GB Speicher";
|
|
384
|
+
readonly plan_pro_feat2: "1 TB Bandbreite";
|
|
385
|
+
readonly plan_pro_feat3: "Priorisierter Support";
|
|
386
|
+
readonly plan_pro_feat4: "99,99 % Verfügbarkeit";
|
|
387
|
+
readonly plan_pro_feat5: "Erweiterte Analysen";
|
|
388
|
+
readonly plan_cta_primary: "Jetzt starten";
|
|
389
|
+
readonly plan_enterprise: "Enterprise";
|
|
390
|
+
readonly plan_enterprise_price: "Individuell";
|
|
391
|
+
readonly plan_ent_feat1: "Unbegrenzter Speicher";
|
|
392
|
+
readonly plan_ent_feat2: "Unbegrenzte Bandbreite";
|
|
393
|
+
readonly plan_ent_feat3: "24/7 Telefon-Support";
|
|
394
|
+
readonly plan_ent_feat4: "99,99 % SLA";
|
|
395
|
+
readonly plan_ent_feat5: "Dedizierter Manager";
|
|
396
|
+
readonly plan_cta_contact: "Vertrieb kontaktieren";
|
|
397
|
+
readonly cta_title: "Bereit zum Start?";
|
|
398
|
+
readonly cta_subtitle: "Schließen Sie sich Tausenden Unternehmen an, die bereits Cloudify nutzen. Keine Kreditkarte erforderlich.";
|
|
399
|
+
readonly cta_button: "Kostenlosen Test starten";
|
|
400
|
+
readonly footer_brand: "Cloudify";
|
|
401
|
+
readonly footer_tagline: "Moderne Cloud-Infrastruktur für die nächste Generation von Anwendungen.";
|
|
402
|
+
readonly footer_icon_speed: "Performance-Insights";
|
|
403
|
+
readonly footer_icon_security: "Sicherheits-Highlights";
|
|
404
|
+
readonly footer_icon_growth: "Wachstumsmetriken";
|
|
405
|
+
readonly footer_col_product: "Produkt";
|
|
406
|
+
readonly footer_col_company: "Unternehmen";
|
|
407
|
+
readonly footer_col_resources: "Ressourcen";
|
|
408
|
+
readonly footer_col_support: "Support";
|
|
409
|
+
readonly footer_link_features: "Funktionen";
|
|
410
|
+
readonly footer_link_pricing: "Preise";
|
|
411
|
+
readonly footer_link_integrations: "Integrationen";
|
|
412
|
+
readonly footer_link_docs: "Dokumentation";
|
|
413
|
+
readonly footer_link_contact: "Kontakt";
|
|
414
|
+
readonly footer_link_about: "Über uns";
|
|
415
|
+
readonly footer_link_blog: "Blog";
|
|
416
|
+
readonly footer_link_careers: "Karriere";
|
|
417
|
+
readonly footer_link_press: "Presse";
|
|
418
|
+
readonly footer_link_presskit: "Pressekit";
|
|
419
|
+
readonly footer_link_faq: "FAQ";
|
|
420
|
+
readonly footer_link_guides: "Leitfäden";
|
|
421
|
+
readonly footer_link_api: "API-Dokumentation";
|
|
422
|
+
readonly footer_link_community: "Community";
|
|
423
|
+
readonly footer_link_status: "Status";
|
|
424
|
+
readonly footer_link_help: "Hilfecenter";
|
|
425
|
+
readonly footer_link_terms: "Nutzungsbedingungen";
|
|
426
|
+
readonly footer_link_privacy: "Datenschutz";
|
|
427
|
+
readonly footer_link_cookies: "Cookie-Richtlinie";
|
|
428
|
+
readonly footer_copyright: "© 2025 Cloudify. Alle Rechte vorbehalten. |";
|
|
429
|
+
readonly editor_title: "HTML-Editor";
|
|
430
|
+
readonly debug_mode: "Debug-Modus aktiv";
|
|
431
|
+
readonly debug_desc: "Das DQM-Widget analysiert den benutzerdefinierten HTML-Code aus dem Editor anstelle des Seiteninhalts. Ihr HTML wird automatisch in IndexedDB gespeichert.";
|
|
432
|
+
readonly tab_editor: "HTML-Editor";
|
|
433
|
+
readonly tab_preview: "Vorschau";
|
|
434
|
+
readonly loading_html: "HTML wird aus IndexedDB geladen...";
|
|
435
|
+
readonly reset_default: "Auf Standard zurücksetzen";
|
|
436
|
+
readonly preview_html: "HTML ansehen";
|
|
437
|
+
readonly auto_saved: "Automatisch in IndexedDB gespeichert";
|
|
438
|
+
readonly close: "Schließen";
|
|
439
|
+
readonly analyze_custom_html: "Benutzerdefiniertes HTML analysieren";
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
readonly es: {
|
|
443
|
+
readonly common: {
|
|
444
|
+
readonly language: "Idioma";
|
|
445
|
+
readonly language_switch_label: "Idioma";
|
|
446
|
+
readonly language_en: "Inglés";
|
|
447
|
+
readonly language_de: "Alemán";
|
|
448
|
+
readonly language_es: "Español";
|
|
449
|
+
readonly source_url: "URL sobrescrita";
|
|
450
|
+
readonly source_user: "Seleccionado manualmente";
|
|
451
|
+
readonly source_navigator: "Configuración del navegador";
|
|
452
|
+
readonly source_default: "Idioma predeterminado";
|
|
453
|
+
readonly reset: "Restablecer";
|
|
454
|
+
readonly logout: "Cerrar sesión";
|
|
455
|
+
};
|
|
456
|
+
readonly sidebar: {
|
|
457
|
+
readonly title: "Calidad digital y accesibilidad";
|
|
458
|
+
readonly ready_title: "Listo para analizar";
|
|
459
|
+
readonly ready_body: "Haz clic en \"Ejecutar comprobación de calidad\" para analizar la página actual en busca de problemas de accesibilidad y calidad.";
|
|
460
|
+
readonly run_quality_check: "Ejecutar comprobación de calidad";
|
|
461
|
+
readonly analyzing: "Analizando...";
|
|
462
|
+
readonly access_denied: "Acceso denegado";
|
|
463
|
+
readonly config_required: "Configuración requerida";
|
|
464
|
+
readonly auth_error: "Error de autenticación";
|
|
465
|
+
readonly close: "Cerrar";
|
|
466
|
+
readonly close_sidebar: "Cerrar barra lateral";
|
|
467
|
+
readonly fab_tooltip: "Análisis de calidad DQM";
|
|
468
|
+
readonly ai_settings: "Asistente de IA";
|
|
469
|
+
readonly ai_backend_api: "ChatGPT (API)";
|
|
470
|
+
readonly summary_label: "Resumen";
|
|
471
|
+
readonly summary_stats: "Estadísticas IA – intentos: {{attempts}}, vacías: {{empty}}, modo: {{mode}}, duración: {{duration}}ms";
|
|
472
|
+
readonly openai_info: "Usa una API compatible con OpenAI Chat Completions. Normalmente, una llamada desde el navegador requiere un proxy con CORS.";
|
|
473
|
+
readonly openai_model: "Modelo de OpenAI";
|
|
474
|
+
readonly openai_base_url: "URL base de OpenAI";
|
|
475
|
+
readonly openai_api_key: "Clave API de OpenAI";
|
|
476
|
+
readonly openai_missing_key: "Falta la clave API de OpenAI.";
|
|
477
|
+
readonly translation_enable: "Traducir automáticamente los resultados de DQM";
|
|
478
|
+
readonly summary_enable: "Tarjeta de resumen de IA";
|
|
479
|
+
readonly ai_model_hint: "La elección del modelo afecta la traducción y el resumen (calidad/velocidad).";
|
|
480
|
+
readonly ai_cache_clear: "Borrar caché de IA";
|
|
481
|
+
readonly translation_not_needed: "El idioma de la interfaz es inglés; no es necesario traducir.";
|
|
482
|
+
readonly translation_target_lang: "Idioma de destino: {{lang}}";
|
|
483
|
+
readonly translation_when: "Las funciones de IA se ejecutan automáticamente al finalizar un análisis, al cambiar el idioma de la UI o al activarlas aquí.";
|
|
484
|
+
readonly ai_limitations: "La IA puede equivocarse o alucinar; verifica los resultados.";
|
|
485
|
+
readonly summary_api_only: "Las funciones de IA utilizan ChatGPT (API) para traducciones y resúmenes.";
|
|
486
|
+
readonly summary_disclaimer: "Nota: los resúmenes pueden contener errores o alucinaciones. Verifica el contenido.";
|
|
487
|
+
readonly translation_full_power: "Traducción completa (puede tardar más)";
|
|
488
|
+
readonly translation_model: "Modelo: {{model}}";
|
|
489
|
+
readonly translation_downloading: "Inicializando IA…";
|
|
490
|
+
readonly translation_translating: "Traduciendo resultados…";
|
|
491
|
+
readonly translation_progress: "{{done}} / {{total}} checkpoints";
|
|
492
|
+
readonly translation_ready: "La traducción está lista.";
|
|
493
|
+
readonly translation_partial: "La traducción se detuvo antes para mantener un buen rendimiento. Algunos elementos quedan sin traducir.";
|
|
494
|
+
readonly translation_incomplete: "Algunos elementos no se pudieron traducir de forma fiable y permanecen sin cambios.";
|
|
495
|
+
readonly translation_restart: "Traducir elementos faltantes";
|
|
496
|
+
readonly summary_restart: "Reiniciar resumen";
|
|
497
|
+
readonly summary_title: "Resumen de IA";
|
|
498
|
+
readonly summary_regenerate: "Regenerar";
|
|
499
|
+
readonly summary_generating: "Generando resumen…";
|
|
500
|
+
readonly summary_failed: "Falló el resumen";
|
|
501
|
+
readonly summary_empty: "Aún no hay resumen disponible.";
|
|
502
|
+
readonly summary_disabled: "Activa el resumen de IA en los ajustes del asistente para obtener una visión general de los puntos más importantes.";
|
|
503
|
+
readonly overall_quality: "Calidad general";
|
|
504
|
+
readonly passed: "Aprobado";
|
|
505
|
+
readonly failed: "Fallido";
|
|
506
|
+
readonly show_all_errors: "Mostrar página con todos los errores";
|
|
507
|
+
readonly quality_breakdown: "Desglose de calidad";
|
|
508
|
+
readonly all_passed: "Todo aprobado";
|
|
509
|
+
readonly x_of_y_passed: "{{passed}} de {{total}} aprobados";
|
|
510
|
+
readonly percent_passed: "{{percent}}% aprobados";
|
|
511
|
+
readonly failed_checkpoints: "Checkpoints fallidos";
|
|
512
|
+
readonly filter_by_category: "Filtrar por categoría";
|
|
513
|
+
readonly showing_categories: "Mostrando {{count}} de {{total}} categorías";
|
|
514
|
+
readonly showing_all_categories: "Mostrando todas las {{total}} categorías";
|
|
515
|
+
readonly show_all: "Mostrar todo";
|
|
516
|
+
readonly view_in_browser: "Ver en el navegador";
|
|
517
|
+
readonly view_source: "Ver fuente";
|
|
518
|
+
readonly analysis_failed: "El análisis falló";
|
|
519
|
+
readonly retry: "Reintentar";
|
|
520
|
+
readonly no_highlighted_content: "No hay contenido resaltado disponible.";
|
|
521
|
+
readonly failed_load_browser: "No se pudo cargar la vista del navegador. Inténtalo de nuevo.";
|
|
522
|
+
readonly loading_views: "Cargando ambas vistas...";
|
|
523
|
+
readonly highlighted_errors: "Errores resaltados";
|
|
524
|
+
readonly browser_view: "Vista del navegador";
|
|
525
|
+
readonly source_view: "Vista de fuente";
|
|
526
|
+
readonly x_of_y: "{{current}} de {{total}}";
|
|
527
|
+
readonly prev_highlight: "Resaltado anterior";
|
|
528
|
+
readonly next_highlight: "Siguiente resaltado";
|
|
529
|
+
readonly reload_highlights: "Recargar resaltados";
|
|
530
|
+
readonly open_in_new_tab: "Abrir en una pestaña nueva";
|
|
531
|
+
readonly enable_js: "Habilitar JavaScript";
|
|
532
|
+
readonly disable_js: "Deshabilitar JavaScript";
|
|
533
|
+
readonly no_source_content: "No hay contenido de fuente disponible para este checkpoint.";
|
|
534
|
+
readonly failed_load_all_errors: "No se pudo cargar la página con todos los errores. Inténtalo de nuevo.";
|
|
535
|
+
readonly failed_load_highlights: "No se pudo cargar el contenido resaltado. Inténtalo de nuevo.";
|
|
536
|
+
readonly failed_load_source: "No se pudo cargar la vista de fuente. Inténtalo de nuevo.";
|
|
537
|
+
readonly dqm_disabled: "DQM está deshabilitado. Permiso denegado.";
|
|
538
|
+
readonly dqm_not_configured: "DQM no está configurado. Proporciona credenciales de API vía props, localStorage o configura un backend de autenticación.";
|
|
539
|
+
};
|
|
540
|
+
readonly auth: {
|
|
541
|
+
readonly heading: "Autenticación DQM";
|
|
542
|
+
readonly subheading: "Autentícate para acceder al análisis de calidad";
|
|
543
|
+
readonly enter_credentials: "Introducir credenciales directamente";
|
|
544
|
+
readonly website_id: "ID del sitio web";
|
|
545
|
+
readonly website_id_helper: "Tu identificador de sitio web";
|
|
546
|
+
readonly api_key: "Clave API";
|
|
547
|
+
readonly api_key_helper: "Tu clave API de Crownpeak DQM";
|
|
548
|
+
readonly continue: "Continuar";
|
|
549
|
+
readonly or: "O";
|
|
550
|
+
readonly login_backend: "Iniciar sesión con sesión del backend";
|
|
551
|
+
readonly no_credentials: "¿No tienes credenciales?";
|
|
552
|
+
readonly get_started: "Comienza con Crownpeak DQM";
|
|
553
|
+
readonly errors: {
|
|
554
|
+
readonly missing_fields: "Introduce tanto la clave API como el ID del sitio web";
|
|
555
|
+
readonly non_ascii_key: "La clave API contiene caracteres no ASCII";
|
|
556
|
+
readonly backend_missing: "La URL del backend no está configurada";
|
|
557
|
+
readonly failed_redirect: "No se pudo redirigir a la página de inicio de sesión";
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
readonly demo: {
|
|
561
|
+
readonly login_title: "Prueba del widget DQM";
|
|
562
|
+
readonly login_subtitle: "Introduce tus credenciales de DQM para ver la página de destino";
|
|
563
|
+
readonly login_website_id: "ID del sitio web";
|
|
564
|
+
readonly login_api_key: "Clave API de DQM";
|
|
565
|
+
readonly login_cta: "Ver página de destino";
|
|
566
|
+
readonly hero_title: "Tu centro de mando de calidad digital";
|
|
567
|
+
readonly hero_subtitle: "Ejecuta comprobaciones de accesibilidad y calidad en segundos con resaltados guiados y pasos de corrección accionables.";
|
|
568
|
+
readonly hero_cta: "Ejecutar un escaneo de demostración";
|
|
569
|
+
readonly features_title: "Todo lo que necesitas para publicar experiencias accesibles";
|
|
570
|
+
readonly feature1_title: "Escaneos de calidad con un clic";
|
|
571
|
+
readonly feature1_body: "Dispara el análisis de Crownpeak DQM directamente desde tu página sin salir de tu flujo de trabajo.";
|
|
572
|
+
readonly feature2_title: "Corrección guiada";
|
|
573
|
+
readonly feature2_body: "Ve a los problemas resaltados con vistas de fuente y navegador para corregir más rápido.";
|
|
574
|
+
readonly feature3_title: "Información lista para el equipo";
|
|
575
|
+
readonly feature3_body: "Comparte informes accionables, tendencias y checkpoints con tu equipo.";
|
|
576
|
+
readonly stats_title: "Confiado por equipos en todas partes";
|
|
577
|
+
readonly stat_active_customers: "Clientes activos";
|
|
578
|
+
readonly stat_uptime: "Garantía de disponibilidad";
|
|
579
|
+
readonly stat_countries: "Países atendidos";
|
|
580
|
+
readonly stat_support: "Soporte experto";
|
|
581
|
+
readonly testimonials_title: "Lo que dicen los equipos";
|
|
582
|
+
readonly testimonial1_quote: "La barra lateral de DQM redujo nuestro tiempo de triaje de accesibilidad a la mitad. Los resaltados y la vista de fuente son clave.";
|
|
583
|
+
readonly testimonial1_name: "Jordan Lee";
|
|
584
|
+
readonly testimonial1_title: "Ingeniero/a líder de accesibilidad, Northwind";
|
|
585
|
+
readonly testimonial2_quote: "Por fin tenemos un proceso repetible para publicar páginas conformes. La navegación guiada mantiene a todos alineados.";
|
|
586
|
+
readonly testimonial2_name: "Priya Desai";
|
|
587
|
+
readonly testimonial2_title: "Gerente de experiencia digital, Fabrikam";
|
|
588
|
+
readonly testimonial3_quote: "Rápido, fiable y fácil de desplegar en equipos. DQM hace la calidad medible.";
|
|
589
|
+
readonly testimonial3_name: "Alex Müller";
|
|
590
|
+
readonly testimonial3_title: "Director/a de producto, Contoso";
|
|
591
|
+
readonly pricing_title: "Precios simples y transparentes";
|
|
592
|
+
readonly pricing_subtitle: "Elige el plan que funcione para tu equipo";
|
|
593
|
+
readonly plan_starter: "Inicial";
|
|
594
|
+
readonly plan_starter_feat1: "10 GB de almacenamiento";
|
|
595
|
+
readonly plan_starter_feat2: "100 GB de ancho de banda";
|
|
596
|
+
readonly plan_starter_feat3: "Soporte por email";
|
|
597
|
+
readonly plan_starter_feat4: "99.9% de disponibilidad";
|
|
598
|
+
readonly plan_cta_outline: "Comenzar";
|
|
599
|
+
readonly plan_badge_popular: "Popular";
|
|
600
|
+
readonly plan_pro: "Profesional";
|
|
601
|
+
readonly plan_pro_feat1: "100 GB de almacenamiento";
|
|
602
|
+
readonly plan_pro_feat2: "1 TB de ancho de banda";
|
|
603
|
+
readonly plan_pro_feat3: "Soporte prioritario";
|
|
604
|
+
readonly plan_pro_feat4: "99.99% de disponibilidad";
|
|
605
|
+
readonly plan_pro_feat5: "Analítica avanzada";
|
|
606
|
+
readonly plan_cta_primary: "Comenzar";
|
|
607
|
+
readonly plan_enterprise: "Empresarial";
|
|
608
|
+
readonly plan_enterprise_price: "Personalizado";
|
|
609
|
+
readonly plan_ent_feat1: "Almacenamiento ilimitado";
|
|
610
|
+
readonly plan_ent_feat2: "Ancho de banda ilimitado";
|
|
611
|
+
readonly plan_ent_feat3: "Soporte telefónico 24/7";
|
|
612
|
+
readonly plan_ent_feat4: "SLA de 99.99% de disponibilidad";
|
|
613
|
+
readonly plan_ent_feat5: "Gerente dedicado";
|
|
614
|
+
readonly plan_cta_contact: "Contactar ventas";
|
|
615
|
+
readonly cta_title: "¿Listo para empezar?";
|
|
616
|
+
readonly cta_subtitle: "Únete a miles de empresas que ya usan Cloudify. No se requiere tarjeta de crédito.";
|
|
617
|
+
readonly cta_button: "Comenzar prueba gratuita";
|
|
618
|
+
readonly footer_brand: "Cloudify";
|
|
619
|
+
readonly footer_tagline: "Infraestructura moderna para la próxima generación de aplicaciones.";
|
|
620
|
+
readonly footer_icon_speed: "Información de rendimiento";
|
|
621
|
+
readonly footer_icon_security: "Aspectos de seguridad";
|
|
622
|
+
readonly footer_icon_growth: "Métricas de crecimiento";
|
|
623
|
+
readonly footer_col_product: "Producto";
|
|
624
|
+
readonly footer_col_company: "Compañía";
|
|
625
|
+
readonly footer_col_resources: "Recursos";
|
|
626
|
+
readonly footer_col_support: "Soporte";
|
|
627
|
+
readonly footer_link_features: "Funciones";
|
|
628
|
+
readonly footer_link_pricing: "Precios";
|
|
629
|
+
readonly footer_link_integrations: "Integraciones";
|
|
630
|
+
readonly footer_link_docs: "Documentación";
|
|
631
|
+
readonly footer_link_contact: "Contáctanos";
|
|
632
|
+
readonly footer_link_about: "Acerca de";
|
|
633
|
+
readonly footer_link_blog: "Blog";
|
|
634
|
+
readonly footer_link_careers: "Carreras";
|
|
635
|
+
readonly footer_link_press: "Prensa";
|
|
636
|
+
readonly footer_link_presskit: "Kit de prensa";
|
|
637
|
+
readonly footer_link_faq: "Preguntas frecuentes";
|
|
638
|
+
readonly footer_link_guides: "Guías";
|
|
639
|
+
readonly footer_link_api: "Docs de API";
|
|
640
|
+
readonly footer_link_community: "Comunidad";
|
|
641
|
+
readonly footer_link_status: "Estado";
|
|
642
|
+
readonly footer_link_help: "Centro de ayuda";
|
|
643
|
+
readonly footer_link_terms: "Términos del servicio";
|
|
644
|
+
readonly footer_link_privacy: "Política de privacidad";
|
|
645
|
+
readonly footer_link_cookies: "Política de cookies";
|
|
646
|
+
readonly footer_copyright: "© 2025 Cloudify. Todos los derechos reservados. |";
|
|
647
|
+
readonly editor_title: "Editor HTML";
|
|
648
|
+
readonly debug_mode: "Modo de depuración activo";
|
|
649
|
+
readonly debug_desc: "El widget DQM analizará el HTML personalizado del editor en lugar del contenido de la página. Tu HTML se guarda automáticamente en IndexedDB.";
|
|
650
|
+
readonly tab_editor: "Editor HTML";
|
|
651
|
+
readonly tab_preview: "Vista previa";
|
|
652
|
+
readonly loading_html: "Cargando HTML desde IndexedDB...";
|
|
653
|
+
readonly reset_default: "Restablecer a valores predeterminados";
|
|
654
|
+
readonly preview_html: "Vista previa HTML";
|
|
655
|
+
readonly auto_saved: "Guardado automático en IndexedDB";
|
|
656
|
+
readonly close: "Cerrar";
|
|
657
|
+
readonly analyze_custom_html: "Analizar HTML personalizado";
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
export type TranslationResources = typeof resources;
|
|
662
|
+
export type AvailableLanguage = keyof TranslationResources;
|
|
663
|
+
/**
|
|
664
|
+
* Resolve a locale code to an available language
|
|
665
|
+
* Handles regional variants (de-AT → de) and unknown locales (→ en)
|
|
666
|
+
*/
|
|
667
|
+
export declare const resolveLanguage: (locale: string) => AvailableLanguage;
|
|
668
|
+
export default i18n;
|
|
669
|
+
export type { CommonTranslationKeys } from './common/en';
|
|
670
|
+
export type { SidebarTranslationKeys } from './sidebar/en';
|
|
671
|
+
export type { AuthTranslationKeys } from './auth/en';
|
|
672
|
+
export type { DemoTranslationKeys } from './demo/en';
|
|
673
|
+
//# sourceMappingURL=index.d.ts.map
|