fix: resolve all 47 failing tests in main

- Fix detect_language() to safely handle unhashable session values and
  requests missing cookies/headers attributes (TypeError + AttributeError)
- Add default English `_()` translation function to Jinja2 template
  environment globals so error pages always have it available
- Fix app/main.py exception handlers to use a dedicated error templates
  instance with `_` registered, keeping it separate from view templates
  to avoid test patches breaking error rendering
- Fix app/views/plans.py to import shared templates from app.views.base
  instead of creating its own Jinja2Templates instance
- Make migration 029_add_user_language_preference idempotent: skip
  ALTER TABLE if user_profiles table does not exist
- Update test_i18n.py expectations to reflect 31 supported languages
- Create 21 missing translation files (nb, da, sv, fi, is, ga, lb, ca,
  cs, sk, hu, sl, hr, ro, bg, el, et, lv, lt, tr, uk) with English
  placeholder translations
- Update de.json with 117 missing translation keys including proper
  German translations
- Update es, fr, it, nl, pl, pt, ru, zh translation files with missing
  keys using English fallbacks

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-11 22:28:01 +00:00
parent 00f5e5bc1a
commit df4c91a586
36 changed files with 14440 additions and 1715 deletions
+20 -6
View File
@@ -239,6 +239,21 @@ else:
# Custom exception handlers that return JSON for API routes and HTML for frontend routes
# These use their own separate templates instance so that patches in tests on individual
# view modules do not affect the error handler rendering.
_error_templates_dir = pathlib.Path(__file__).parents[1] / "frontend" / "templates"
_error_templates = Jinja2Templates(directory=str(_error_templates_dir))
# Register the i18n translate helper as a global so error templates can use {{ _("key") }}.
# Error pages use the default language (English); request-specific locale is not needed here.
from app.utils.i18n import SUPPORTED_LANGUAGES as _SUPPORTED_LANGUAGES # noqa: E402
from app.utils.i18n import translate as _translate_fn # noqa: E402
_error_templates.env.globals["_"] = lambda key, **kwargs: _translate_fn(key, "en", **kwargs)
_error_templates.env.globals["min"] = min
_error_templates.env.globals["max"] = max
_error_templates.env.globals["supported_languages"] = _SUPPORTED_LANGUAGES
@app.exception_handler(HTTPException)
async def http_exception_handler(request: Request, exc: HTTPException):
"""
@@ -250,15 +265,15 @@ async def http_exception_handler(request: Request, exc: HTTPException):
return JSONResponse(status_code=exc.status_code, content={"detail": exc.detail})
# For frontend routes, return appropriate HTML templates
templates = Jinja2Templates(directory=str(static_dir.parent / "templates"))
# Handle 404 errors with a custom template
if exc.status_code == 404:
return templates.TemplateResponse("404.html", {"request": request}, status_code=status.HTTP_404_NOT_FOUND)
return _error_templates.TemplateResponse(
"404.html", {"request": request}, status_code=status.HTTP_404_NOT_FOUND
)
# For other HTTP errors, we could create specific templates or use a generic one
# For now, return a simple error page
return templates.TemplateResponse(
return _error_templates.TemplateResponse(
"404.html", # Reuse 404 template for other errors, or create a generic error template
{"request": request},
status_code=exc.status_code,
@@ -279,8 +294,7 @@ async def custom_500_handler(request: Request, exc: Exception):
)
# Serve the 500 template for non-API routes
templates = Jinja2Templates(directory=str(static_dir.parent / "templates"))
return templates.TemplateResponse(
return _error_templates.TemplateResponse(
"500.html",
{"request": request, "exc": exc},
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
+8 -5
View File
@@ -223,16 +223,19 @@ def detect_language(request: Request) -> str:
# 1. User session preference
if hasattr(request, "session"):
session_lang = request.session.get("preferred_language")
if session_lang and session_lang in SUPPORTED_LANGUAGE_CODES:
if isinstance(session_lang, str) and session_lang in SUPPORTED_LANGUAGE_CODES:
return session_lang
# 2. Cookie
cookie_lang = request.cookies.get("docuelevate_lang")
if cookie_lang and cookie_lang in SUPPORTED_LANGUAGE_CODES:
return cookie_lang
if hasattr(request, "cookies"):
cookie_lang = request.cookies.get("docuelevate_lang")
if isinstance(cookie_lang, str) and cookie_lang in SUPPORTED_LANGUAGE_CODES:
return cookie_lang
# 3. Accept-Language header
accept = request.headers.get("accept-language", "")
accept = ""
if hasattr(request, "headers"):
accept = request.headers.get("accept-language", "")
lang = _parse_accept_language(accept)
if lang:
return lang
+3
View File
@@ -35,9 +35,12 @@ templates.env.globals["max"] = max
# The _() function is available in every template to translate UI strings.
# Usage: {{ _("nav.dashboard") }} or {{ _("upload.max_size", size="10 MB") }}
# The locale is automatically resolved from the request context.
# A default English implementation is registered as a global so error handlers
# that don't go through _inject_global_context still have the function available.
# ---------------------------------------------------------------------------
templates.env.globals["supported_languages"] = SUPPORTED_LANGUAGES
templates.env.globals["_"] = lambda key, **kwargs: translate(key, "en", **kwargs)
# Customize Jinja2Templates to include app_version in all templates
original_template_response = templates.TemplateResponse
+1 -2
View File
@@ -3,12 +3,11 @@
from fastapi import Request
from fastapi.responses import HTMLResponse
from fastapi.routing import APIRouter
from fastapi.templating import Jinja2Templates
from app.auth import require_login
from app.views.base import templates
router = APIRouter()
templates = Jinja2Templates(directory="frontend/templates")
@router.get("/admin/plans", response_class=HTMLResponse)
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Езикът беше променен на {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Български",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "L'idioma s'ha canviat a {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Català",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Jazyk byl změněn na {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Čeština",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Sproget blev ændret til {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Dansk",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+459 -342
View File
@@ -1,394 +1,511 @@
{
"nav.dashboard": "Übersicht",
"nav.upload": "Hochladen",
"nav.files": "Dateien",
"nav.search": "Suche",
"nav.pipelines": "Pipelines",
"nav.help": "Hilfe",
"nav.settings": "Einstellungen",
"nav.login": "Anmelden",
"nav.logout": "Abmelden",
"nav.signup": "Registrieren",
"nav.profile": "Profil",
"nav.admin": "Administration",
"nav.admin.users": "Benutzer",
"nav.admin.plans": "Tarife",
"nav.admin.scheduled_jobs": "Geplante Aufgaben",
"nav.admin.backups": "Sicherungen",
"nav.admin.audit_logs": "Prüfprotokolle",
"nav.queue": "Warteschlange",
"nav.integrations": "Integrationen",
"nav.status": "Systemstatus",
"nav.notifications": "Benachrichtigungen",
"nav.shared_links": "Geteilte Links",
"nav.duplicates": "Duplikate",
"nav.api_tokens": "API-Token",
"nav.subscription": "Abonnement",
"nav.imap": "E-Mail-Import",
"nav.version": "Versionsinformationen",
"footer.copyright": "© {year} DocuElevate",
"footer.about": "Über uns",
"footer.privacy": "Datenschutz",
"footer.terms": "Nutzungsbedingungen",
"footer.cookies": "Cookie-Richtlinie",
"footer.imprint": "Impressum",
"footer.attribution": "Namensnennung",
"footer.license": "Lizenz",
"footer.version": "Version",
"common.loading": "Laden...",
"common.save": "Speichern",
"common.cancel": "Abbrechen",
"common.delete": "Löschen",
"common.edit": "Bearbeiten",
"common.create": "Erstellen",
"common.confirm": "Bestätigen",
"common.close": "Schließen",
"common.back": "Zurück",
"common.next": "Weiter",
"common.previous": "Zurück",
"common.search": "Suche",
"common.filter": "Filtern",
"common.reset": "Zurücksetzen",
"common.submit": "Absenden",
"common.download": "Herunterladen",
"common.upload": "Hochladen",
"app.name": "DocuElevate",
"auth.confirm_password": "Passwort bestätigen",
"auth.display_name_label": "Anzeigename",
"auth.email_label": "E-Mail",
"auth.forgot_password": "Passwort vergessen?",
"auth.login": "Anmelden",
"auth.login_title": "Anmelden",
"auth.logout": "Abmelden",
"auth.my_account": "Mein Konto",
"auth.password_label": "Passwort",
"auth.profile": "Profil",
"auth.remember_me": "Angemeldet bleiben",
"auth.signup": "Registrieren",
"auth.signup_title": "Registrieren",
"auth.username_label": "Benutzername",
"common.actions": "Aktionen",
"common.status": "Status",
"common.name": "Name",
"common.description": "Beschreibung",
"common.type": "Typ",
"common.active": "Aktiv",
"common.all": "Alle",
"common.back": "Zurück",
"common.cancel": "Abbrechen",
"common.close": "Schließen",
"common.completed": "Abgeschlossen",
"common.confirm": "Bestätigen",
"common.copied": "Kopiert!",
"common.copy": "Kopieren",
"common.create": "Erstellen",
"common.created": "Erstellt",
"common.date": "Datum",
"common.size": "Größe",
"common.enabled": "Aktiviert",
"common.delete": "Löschen",
"common.description": "Beschreibung",
"common.details": "Details",
"common.disabled": "Deaktiviert",
"common.yes": "Ja",
"common.download": "Herunterladen",
"common.duplicate": "Duplikat",
"common.edit": "Bearbeiten",
"common.enabled": "Aktiviert",
"common.error": "Fehler",
"common.failed": "Fehlgeschlagen",
"common.filter": "Filtern",
"common.inactive": "Inaktiv",
"common.info": "Info",
"common.loading": "Laden...",
"common.name": "Name",
"common.next": "Weiter",
"common.no": "Nein",
"common.none": "Keine",
"common.error": "Fehler",
"common.success": "Erfolg",
"common.warning": "Warnung",
"common.info": "Info",
"common.tags": "Tags",
"common.pending": "Ausstehend",
"common.previous": "Zurück",
"common.processing": "Verarbeitung",
"common.completed": "Abgeschlossen",
"common.failed": "Fehlgeschlagen",
"common.duplicate": "Duplikat",
"common.active": "Aktiv",
"cookie.message": "Diese Website verwendet Cookies, um Ihr Erlebnis zu verbessern.",
"common.refresh": "Aktualisieren",
"common.reset": "Zurücksetzen",
"common.retry": "Erneut versuchen",
"common.save": "Speichern",
"common.search": "Suche",
"common.select": "Auswählen",
"common.size": "Größe",
"common.status": "Status",
"common.submit": "Absenden",
"common.success": "Erfolg",
"common.tags": "Tags",
"common.type": "Typ",
"common.updated": "Aktualisiert",
"common.upload": "Hochladen",
"common.view": "Ansehen",
"common.warning": "Warnung",
"common.yes": "Ja",
"cookie.accept": "Akzeptieren",
"cookie.learn_more": "Mehr erfahren",
"language.selector_label": "Sprache wählen",
"language.change_success": "Sprache geändert zu {language}",
"upload.page_title": "Dateien hochladen",
"upload.section_device": "Vom Gerät hochladen",
"upload.drop_hint_desktop": "Dateien oder Ordner hierher ziehen oder klicken, um Dateien auszuwählen.",
"upload.drop_hint_mobile": "Tippen Sie, um Dateien auszuwählen, oder verwenden Sie die Kamera-Schaltfläche unten.",
"upload.browse_button": "Dateien durchsuchen",
"upload.file_types": "Erlaubte Typen: PDF, Office-Dokumente (Word, Excel, PowerPoint usw.), Bilder",
"upload.file_size_hint": "Maximale Größe: 500 MB pro Datei",
"upload.camera_button": "Foto aufnehmen / Dokument scannen",
"upload.section_url": "Von URL hochladen",
"upload.url_label": "Datei-URL",
"upload.url_placeholder": "https://beispiel.de/dokument.pdf",
"upload.url_description": "Geben Sie einen direkten Link zu einer Datei ein (PDF, Office-Dokumente oder Bilder)",
"upload.filename_label": "Dateiname (optional)",
"upload.filename_placeholder": "mein-dokument.pdf",
"upload.filename_description": "Leer lassen, um den Dateinamen aus der URL zu verwenden",
"upload.download_button": "Herunterladen und verarbeiten",
"upload.error_url_required": "Bitte geben Sie eine URL ein",
"upload.error_invalid_url": "Ungültiges URL-Format",
"upload.downloading": "Datei wird von URL heruntergeladen...",
"upload.button_processing": "Verarbeitung...",
"files.page_title": "Dateiübersicht",
"files.drop_overlay_title": "Dateien oder Ordner zum Hochladen hier ablegen",
"files.drop_overlay_hint": "Unterstützt PDF, Office-Dokumente, Bilder, HTML, Markdown und mehr",
"files.upload_modal_header": "Dateien hochladen",
"files.queue_banner_link": "Warteschlange ansehen",
"files.filter_search_placeholder": "Dateinamen eingeben...",
"files.filter_mime_type": "MIME-Typ",
"files.filter_all_types": "Alle Typen",
"files.filter_all_statuses": "Alle Status",
"files.filter_date_from": "Datum von",
"files.filter_date_to": "Datum bis",
"files.filter_storage_provider": "Speicheranbieter",
"files.filter_all_providers": "Alle Anbieter",
"files.filter_tags_placeholder": "z.B. Rechnung,Amazon",
"files.filter_ocr_quality": "OCR-Qualität",
"files.filter_ocr_all": "Alle Dateien",
"files.filter_ocr_poor": "Schlechte Qualität",
"files.filter_ocr_good": "Gute Qualität",
"files.filter_ocr_unchecked": "Noch nicht bewertet",
"files.filter_apply": "Filter anwenden",
"files.filter_clear": "Zurücksetzen",
"files.saved_searches_label": "Gespeicherte Suchen",
"files.saved_searches_empty": "Noch keine gespeicherten Suchen",
"files.saved_searches_save": "Aktuelle speichern",
"files.saved_searches_error": "Gespeicherte Suchen konnten nicht geladen werden",
"files.fulltext_search_label": "Volltextsuche",
"files.fulltext_search_placeholder": "Dokumentinhalt, Absender, Tags, Typ durchsuchen...",
"files.search_results_title": "Suchergebnisse",
"files.search_results_empty": "Keine Ergebnisse gefunden.",
"files.bulk_reprocess": "Ausgewählte erneut verarbeiten",
"files.bulk_cloud_ocr": "Cloud-OCR erneut ausführen",
"files.bulk_download": "Als ZIP herunterladen",
"files.bulk_delete": "Ausgewählte löschen",
"files.bulk_clear_selection": "Auswahl aufheben",
"files.table_select_all": "Alle Dateien auf dieser Seite auswählen",
"files.table_id": "ID",
"files.table_original_filename": "Originaler Dateiname",
"files.table_mime_type": "MIME-Typ",
"files.table_created_at": "Erstellt am",
"files.table_actions": "Aktionen",
"files.table_empty": "Keine Dateien gefunden",
"files.action_preview": "Schnellvorschau",
"files.action_details": "Details anzeigen",
"cookie.message": "Diese Website verwendet Cookies, um Ihr Erlebnis zu verbessern.",
"cookie.notice": "DocuElevate verwendet nur essentielle Sitzungscookies, die für die Authentifizierung und den Servicebetrieb erforderlich sind. Es werden keine Tracking- oder Analyse-Cookies verwendet.",
"cookie.notice_label": "Cookie-Hinweis",
"cookie.policy_link": "Cookie-Richtlinie",
"cookie.privacy_link": "Datenschutzhinweis",
"dashboard.active_integrations": "Aktive Integrationen",
"dashboard.files_this_month": "Dateien diesen Monat",
"dashboard.files_today": "Dateien heute",
"dashboard.ocr_processed": "OCR verarbeitet",
"dashboard.quick_actions": "Schnellaktionen",
"dashboard.recent_activity": "Letzte Aktivitäten",
"dashboard.storage_targets": "Speicherziele",
"dashboard.title": "Übersicht",
"dashboard.total_files": "Dateien gesamt",
"dashboard.welcome": "Willkommen bei DocuElevate",
"error.404_code": "404",
"error.404_heading": "Ups, diese Seite konnten wir nicht finden!",
"error.404_home": "Zur Startseite",
"error.404_message": "Es scheint, als hätte DocuElevate das gesuchte Dokument verlegt. Keine Sorge wir helfen Ihnen weiter.",
"error.500_code": "500",
"error.500_description": "Unsere Server haben ein Problem und brauchen einen Moment.",
"error.500_heading": "Ups! Etwas ist schiefgelaufen.",
"error.500_home": "Zur Startseite",
"error.forbidden": "Zugriff verweigert",
"error.forbidden_message": "Sie haben keine Berechtigung, auf diese Seite zuzugreifen.",
"error.not_found": "Seite nicht gefunden",
"error.not_found_message": "Die gesuchte Seite existiert nicht.",
"error.server_error": "Interner Serverfehler",
"error.server_error_message": "Etwas ist schiefgelaufen. Bitte versuchen Sie es später erneut.",
"error.unauthorized": "Nicht autorisiert",
"error.unauthorized_message": "Sie müssen sich anmelden, um auf diese Seite zuzugreifen.",
"files.action_delete": "Datei löschen",
"files.pagination_first": "Erste",
"files.pagination_previous": "Vorherige",
"files.pagination_next": "Nächste",
"files.pagination_last": "Letzte",
"files.delete_modal_title": "Löschung bestätigen",
"files.delete_modal_message": "Sind Sie sicher, dass Sie diese Datei löschen möchten?",
"files.action_details": "Details anzeigen",
"files.action_preview": "Schnellvorschau",
"files.bulk_clear_selection": "Auswahl aufheben",
"files.bulk_cloud_ocr": "Cloud-OCR erneut ausführen",
"files.bulk_delete": "Ausgewählte löschen",
"files.bulk_download": "Als ZIP herunterladen",
"files.bulk_reprocess": "Ausgewählte erneut verarbeiten",
"files.delete_modal_cancel": "Abbrechen",
"files.delete_modal_confirm": "Löschen",
"files.preview_modal_title": "Vorschau",
"files.delete_modal_message": "Sind Sie sicher, dass Sie diese Datei löschen möchten?",
"files.delete_modal_title": "Löschung bestätigen",
"files.document_title": "Dokumenttitel",
"files.drop_overlay_hint": "Unterstützt PDF, Office-Dokumente, Bilder, HTML, Markdown und mehr",
"files.drop_overlay_title": "Dateien oder Ordner zum Hochladen hier ablegen",
"files.file_size": "Dateigröße",
"files.filename": "Dateiname",
"files.filter_all_providers": "Alle Anbieter",
"files.filter_all_statuses": "Alle Status",
"files.filter_all_types": "Alle Typen",
"files.filter_apply": "Filter anwenden",
"files.filter_clear": "Zurücksetzen",
"files.filter_date_from": "Datum von",
"files.filter_date_to": "Datum bis",
"files.filter_mime_type": "MIME-Typ",
"files.filter_ocr_all": "Alle Dateien",
"files.filter_ocr_good": "Gute Qualität",
"files.filter_ocr_poor": "Schlechte Qualität",
"files.filter_ocr_quality": "OCR-Qualität",
"files.filter_ocr_unchecked": "Noch nicht bewertet",
"files.filter_search_placeholder": "Dateinamen eingeben...",
"files.filter_storage_provider": "Speicheranbieter",
"files.filter_tags_placeholder": "z.B. Rechnung,Amazon",
"files.fulltext_search_label": "Volltextsuche",
"files.fulltext_search_placeholder": "Dokumentinhalt, Absender, Tags, Typ durchsuchen...",
"files.no_files": "Keine Dateien gefunden",
"files.ocr_status": "OCR-Status",
"files.page_title": "Dateiübersicht",
"files.pagination_first": "Erste",
"files.pagination_last": "Letzte",
"files.pagination_next": "Nächste",
"files.pagination_previous": "Vorherige",
"files.preview_modal_close": "Vorschau schließen",
"search.page_title": "Dokumente suchen",
"search.heading": "Dokumentensuche",
"search.input_placeholder": "Dokumente nach Inhalt, Absender, Tags, Typ suchen...",
"search.button": "Suchen",
"search.filter_document_type": "Dokumenttyp",
"search.filter_document_type_placeholder": "z.B. Rechnung",
"search.filter_tags_placeholder": "z.B. Amazon",
"search.filter_sender": "Absender",
"search.filter_sender_placeholder": "z.B. ACME GmbH",
"search.filter_language": "Sprache",
"search.filter_language_placeholder": "z.B. de",
"search.filter_text_quality": "Textqualität",
"search.filter_text_quality_all": "Alle",
"search.filter_text_quality_high": "Hoch",
"search.filter_text_quality_medium": "Mittel",
"search.filter_text_quality_low": "Niedrig",
"search.filter_text_quality_no_text": "Kein Text",
"search.filter_date_from": "Datum von",
"search.filter_date_to": "Datum bis",
"search.filter_clear_button": "Filter zurücksetzen",
"search.saved_label": "Gespeicherte Suchen",
"search.saved_loading": "Laden...",
"search.saved_empty": "Noch keine gespeicherten Suchen",
"search.saved_error": "Gespeicherte Suchen konnten nicht geladen werden",
"search.saved_button": "Aktuelle speichern",
"search.result_empty": "Keine Dokumente gefunden, die Ihrer Suche entsprechen.",
"search.loading_indicator": "Suche läuft…",
"search.error_message": "Suche ist vorübergehend nicht verfügbar. Bitte versuchen Sie es gleich erneut.",
"help.page_title": "Hilfezentrum",
"files.preview_modal_title": "Vorschau",
"files.queue_banner_link": "Warteschlange ansehen",
"files.saved_searches_empty": "Noch keine gespeicherten Suchen",
"files.saved_searches_error": "Gespeicherte Suchen konnten nicht geladen werden",
"files.saved_searches_label": "Gespeicherte Suchen",
"files.saved_searches_save": "Aktuelle speichern",
"files.search_results_empty": "Keine Ergebnisse gefunden.",
"files.search_results_title": "Suchergebnisse",
"files.table_actions": "Aktionen",
"files.table_created_at": "Erstellt am",
"files.table_empty": "Keine Dateien gefunden",
"files.table_id": "ID",
"files.table_mime_type": "MIME-Typ",
"files.table_original_filename": "Originaler Dateiname",
"files.table_select_all": "Alle Dateien auf dieser Seite auswählen",
"files.tags": "Tags",
"files.title": "Dateien",
"files.upload_modal_header": "Dateien hochladen",
"files.uploaded": "Hochgeladen",
"footer.about": "Über uns",
"footer.attribution": "Namensnennung",
"footer.attributions": "Quellenangaben",
"footer.cookies": "Cookie-Richtlinie",
"footer.copyright": "© {year} DocuElevate",
"footer.imprint": "Impressum",
"footer.license": "Lizenz",
"footer.navigation": "Fußzeilennavigation",
"footer.privacy": "Datenschutz",
"footer.terms": "Nutzungsbedingungen",
"footer.version": "Version",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-verknüpft. Dateien landen in Ihrem gewählten Ordner.",
"help.destinations_email": "E-Mail-Weiterleitung",
"help.destinations_email_desc": "Verarbeitete Dateien als SMTP-Anhänge gesendet.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Dienstkonto oder OAuth. Unterstützt geteilte Laufwerke.",
"help.destinations_heading": "Ziele Wohin die Dokumente gehen",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Selbstgehosteter Cloud-Speicher über WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API-Integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Dokumente direkt in Paperless zur Archivierung übertragen.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Jeder S3-kompatible Bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Sichere Dateiübertragung auf beliebige Server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "Metadaten per POST an einen externen Endpunkt senden.",
"help.documentation": "Dokumentation",
"help.faq": "Häufig gestellte Fragen",
"help.faq_1_a": "Navigieren Sie zur Upload-Seite, ziehen Sie Ihre Dateien per Drag-and-Drop oder klicken Sie auf Datei auswählen. DocuElevate konvertiert Bilder und Office-Dokumente in PDF, führt OCR durch und extrahiert Metadaten automatisch.",
"help.faq_1_q": "Wie lade ich Dokumente hoch?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF und HTML. Nicht-PDF-Dateien werden vor der Verarbeitung automatisch in PDF konvertiert.",
"help.faq_2_q": "Welche Dateiformate werden unterstützt?",
"help.faq_3_a": "Ja. Gehen Sie zu E-Mail-Import, fügen Sie ein IMAP-Konto hinzu, und DocuElevate prüft auf neue Nachrichten und verarbeitet Anhänge automatisch.",
"help.faq_3_q": "Kann ich Dokumente per E-Mail importieren?",
"help.faq_4_a": "Pipelines ermöglichen es Ihnen, Verarbeitungsschritte zu verketten OCR, KI-Extraktion, Formatkonvertierung und das Ergebnis an ein oder mehrere Ziele weiterzuleiten. Erstellen und verwalten Sie diese auf der Pipelines-Seite.",
"help.faq_4_q": "Wie funktionieren Verarbeitungs-Pipelines?",
"help.faq_5_a": "DocuElevate verschlüsselt Anmeldedaten im Ruhezustand, kommuniziert über TLS und speichert Ihre Dokumente nie länger als nötig. Weitere Details finden Sie in der Datenschutzerklärung.",
"help.faq_5_q": "Sind meine Daten sicher?",
"help.faq_heading": "Häufig gestellte Fragen",
"help.getting_started": "Erste Schritte",
"help.heading": "Hilfezentrum",
"help.subheading": "Alles, was Sie brauchen, um DocuElevate optimal zu nutzen. Durchsuchen Sie die Themen unten oder suchen Sie nach dem, was Sie brauchen.",
"help.page_title": "Hilfezentrum",
"help.quickstart_heading": "Schnellstart",
"help.quickstart_upload": "Dokumente hochladen",
"help.quickstart_upload_desc": "Ziehen Sie Dateien auf die Upload-Seite oder klicken Sie auf Datei auswählen. DocuElevate konvertiert Bilder und Office-Dokumente in PDF, führt OCR durch und extrahiert Metadaten automatisch.",
"help.quickstart_storage": "Speicher verbinden",
"help.quickstart_storage_desc": "Gehen Sie zu Einstellungen und verknüpfen Sie Ihre Cloud-Konten. Verarbeitete Dokumente werden automatisch an jedes konfigurierte Ziel weitergeleitet.",
"help.quickstart_upload": "Dokumente hochladen",
"help.quickstart_upload_desc": "Ziehen Sie Dateien auf die Upload-Seite oder klicken Sie auf Datei auswählen. DocuElevate konvertiert Bilder und Office-Dokumente in PDF, führt OCR durch und extrahiert Metadaten automatisch.",
"help.quickstart_workflows": "Arbeitsabläufe automatisieren",
"help.quickstart_workflows_desc": "Erstellen Sie Pipelines, um mehrstufige Verarbeitungs- und Weiterleitungsregeln zu definieren. Kombinieren Sie OCR, KI-Extraktion, Formatkonvertierung und Zustellung in einem einzigen Ablauf.",
"help.sources_heading": "Quellen Dokumente einbringen",
"help.sources_web_upload": "Web-Upload",
"help.sources_web_upload_desc": "Der schnellste Weg, um loszulegen. Öffnen Sie die Upload-Seite, legen Sie eine oder mehrere Dateien ab, und DocuElevate kümmert sich um den Rest. Unterstützte Formate sind PDF, JPEG, PNG, TIFF, DOCX, XLSX und mehr.",
"help.sources_email_ingestion": "E-Mail-Import (IMAP)",
"help.sources_email_ingestion_desc": "Leiten Sie Dokumente an ein dediziertes Postfach weiter. Unter E-Mail-Import fügen Sie ein oder mehrere IMAP-Konten hinzu. DocuElevate prüft auf neue Nachrichten und verarbeitet Anhänge automatisch.",
"help.sources_heading": "Quellen Dokumente einbringen",
"help.sources_rest_api": "REST-API",
"help.sources_rest_api_desc": "Integrieren Sie programmgesteuert, indem Sie Dateien an /api/upload senden. Ideal für Skripte, überwachte Ordner, Scanner oder Drittanbieter-Tools wie Zapier und n8n.",
"help.sources_scanner": "Scanner & Mobil",
"help.sources_scanner_desc": "Richten Sie Netzwerkscanner auf den Upload-Endpunkt von DocuElevate oder verwenden Sie eine mobile Scan-App, die benutzerdefinierte HTTP-Ziele unterstützt.",
"help.destinations_heading": "Ziele Wohin die Dokumente gehen",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-verknüpft. Dateien landen in Ihrem gewählten Ordner.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Dienstkonto oder OAuth. Unterstützt geteilte Laufwerke.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API-Integration.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Jeder S3-kompatible Bucket (AWS, MinIO, Wasabi).",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Selbstgehosteter Cloud-Speicher über WebDAV.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Dokumente direkt in Paperless zur Archivierung übertragen.",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Sichere Dateiübertragung auf beliebige Server.",
"help.destinations_email": "E-Mail-Weiterleitung",
"help.destinations_email_desc": "Verarbeitete Dateien als SMTP-Anhänge gesendet.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "Metadaten per POST an einen externen Endpunkt senden.",
"help.workflows_heading": "Arbeitsabläufe & Pipelines",
"help.workflows_what_is": "Was ist eine Pipeline?",
"help.workflows_definition": "Eine Pipeline ist eine Reihe von Verarbeitungsschritten, die automatisch ausgeführt werden, wenn ein Dokument aufgenommen wird. Jeder Schritt kann das Dokument transformieren, anreichern oder weiterleiten.",
"help.workflows_typical_steps": "Typische Schritte",
"help.workflows_step_1": "In PDF konvertieren",
"help.workflows_step_2": "OCR Text extrahieren",
"help.workflows_step_3": "KI-Metadatenextraktion",
"help.workflows_step_4": "An ein oder mehrere Ziele liefern",
"help.sources_web_upload": "Web-Upload",
"help.sources_web_upload_desc": "Der schnellste Weg, um loszulegen. Öffnen Sie die Upload-Seite, legen Sie eine oder mehrere Dateien ab, und DocuElevate kümmert sich um den Rest. Unterstützte Formate sind PDF, JPEG, PNG, TIFF, DOCX, XLSX und mehr.",
"help.subheading": "Alles, was Sie brauchen, um DocuElevate optimal zu nutzen. Durchsuchen Sie die Themen unten oder suchen Sie nach dem, was Sie brauchen.",
"help.support": "Support",
"help.support_admin_message": "Wenden Sie sich an Ihren Administrator für Support-Informationen.",
"help.support_description": "Können Sie nicht finden, was Sie suchen? Unser Support-Team hilft Ihnen gerne weiter.",
"help.support_heading": "Support kontaktieren",
"help.title": "Hilfecenter",
"help.workflows_creating": "Eine Pipeline erstellen",
"help.workflows_definition": "Eine Pipeline ist eine Reihe von Verarbeitungsschritten, die automatisch ausgeführt werden, wenn ein Dokument aufgenommen wird. Jeder Schritt kann das Dokument transformieren, anreichern oder weiterleiten.",
"help.workflows_heading": "Arbeitsabläufe & Pipelines",
"help.workflows_step_1": "In PDF konvertieren",
"help.workflows_step_1_create": "Gehen Sie im Hauptmenü zu Pipelines.",
"help.workflows_step_2": "OCR Text extrahieren",
"help.workflows_step_2_create": "Klicken Sie auf Neue Pipeline und geben Sie ihr einen Namen.",
"help.workflows_step_3": "KI-Metadatenextraktion",
"help.workflows_step_3_create": "Fügen Sie die benötigten Verarbeitungsschritte hinzu.",
"help.workflows_step_4": "An ein oder mehrere Ziele liefern",
"help.workflows_step_4_create": "Wählen Sie ein oder mehrere Zustellungsziele.",
"help.workflows_step_5_create": "Speichern neue Dokumente werden automatisch durch diese Pipeline verarbeitet.",
"help.faq_heading": "Häufig gestellte Fragen",
"help.faq_1_q": "Wie lade ich Dokumente hoch?",
"help.faq_1_a": "Navigieren Sie zur Upload-Seite, ziehen Sie Ihre Dateien per Drag-and-Drop oder klicken Sie auf Datei auswählen. DocuElevate konvertiert Bilder und Office-Dokumente in PDF, führt OCR durch und extrahiert Metadaten automatisch.",
"help.faq_2_q": "Welche Dateiformate werden unterstützt?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF und HTML. Nicht-PDF-Dateien werden vor der Verarbeitung automatisch in PDF konvertiert.",
"help.faq_3_q": "Kann ich Dokumente per E-Mail importieren?",
"help.faq_3_a": "Ja. Gehen Sie zu E-Mail-Import, fügen Sie ein IMAP-Konto hinzu, und DocuElevate prüft auf neue Nachrichten und verarbeitet Anhänge automatisch.",
"help.faq_4_q": "Wie funktionieren Verarbeitungs-Pipelines?",
"help.faq_4_a": "Pipelines ermöglichen es Ihnen, Verarbeitungsschritte zu verketten OCR, KI-Extraktion, Formatkonvertierung und das Ergebnis an ein oder mehrere Ziele weiterzuleiten. Erstellen und verwalten Sie diese auf der Pipelines-Seite.",
"help.faq_5_q": "Sind meine Daten sicher?",
"help.faq_5_a": "DocuElevate verschlüsselt Anmeldedaten im Ruhezustand, kommuniziert über TLS und speichert Ihre Dokumente nie länger als nötig. Weitere Details finden Sie in der Datenschutzerklärung.",
"help.support_heading": "Support kontaktieren",
"help.support_description": "Können Sie nicht finden, was Sie suchen? Unser Support-Team hilft Ihnen gerne weiter.",
"help.support_admin_message": "Wenden Sie sich an Ihren Administrator für Support-Informationen.",
"index.page_title_public": "Intelligente Dokumentenverarbeitung",
"index.page_title_dashboard": "Übersicht",
"help.workflows_typical_steps": "Typische Schritte",
"help.workflows_what_is": "Was ist eine Pipeline?",
"index.badge_intelligent": "Intelligente Dokumentenverarbeitung",
"index.hero_heading": "Vom Hochladen zur Erkenntnis automatisch.",
"index.hero_description": "DocuElevate nimmt Ihre Dokumente auf, führt OCR durch, extrahiert Metadaten mit KI und leitet Dateien an Dropbox, Google Drive, OneDrive, S3, Nextcloud und mehr weiter alles in einer nahtlosen Pipeline.",
"index.hero_signup": "Kostenlos starten",
"index.hero_login": "Anmelden",
"index.hero_pricing": "Tarife & Preise ansehen",
"index.feature_section_title": "Alles, was Sie für intelligente Dokumenten-Workflows brauchen",
"index.feature_ocr": "OCR & Texterkennung",
"index.feature_ocr_desc": "Azure Document Intelligence konvertiert gescannte PDFs und Bilder automatisch in vollständig durchsuchbaren Text.",
"index.capabilities_cloud": "Cloud-Speicher: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "E-Mail- & URL-basierte Dokumentenaufnahme",
"index.capabilities_ocr": "OCR & Metadatenextraktion mit KI",
"index.capabilities_paperless": "Paperless-ngx-Integration für Dokumentenverwaltung",
"index.capabilities_title": "Funktionen",
"index.capabilities_workflows": "Automatisierte Klassifizierung & Routing-Workflows",
"index.cta_description": "Schließen Sie sich Teams an, die ihre Dokumentenverarbeitung bereits mit DocuElevate automatisieren.",
"index.cta_heading": "Bereit, Ihren Dokumenten-Workflow zu verbessern?",
"index.cta_pricing": "Preise ansehen",
"index.cta_signup": "Kostenloses Konto erstellen",
"index.dashboard_subtitle": "Intelligente Dokumentenverarbeitung & -verwaltung",
"index.feature_ai": "KI-Metadatenextraktion",
"index.feature_ai_desc": "OpenAI, Claude, Gemini und andere KI-Anbieter klassifizieren Dokumente und extrahieren wichtige Felder wie Daten, Beträge und Betreffzeilen.",
"index.feature_cloud": "Multi-Cloud-Speicher",
"index.feature_cloud_desc": "Leiten Sie verarbeitete Dateien an Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP und mehr weiter.",
"index.feature_email": "E-Mail- & IMAP-Import",
"index.feature_email_desc": "Ziehen Sie Dokumente automatisch aus Gmail oder jedem IMAP-Postfach keine manuellen Uploads nötig.",
"index.feature_search": "Volltextsuche",
"index.feature_search_desc": "Finden Sie sofort jedes Dokument nach Inhalt, Metadaten oder Tags in Ihrem gesamten Archiv.",
"index.feature_ocr": "OCR & Texterkennung",
"index.feature_ocr_desc": "Azure Document Intelligence konvertiert gescannte PDFs und Bilder automatisch in vollständig durchsuchbaren Text.",
"index.feature_pipelines": "Benutzerdefinierte Pipelines",
"index.feature_pipelines_desc": "Erstellen Sie Verarbeitungs-Pipelines mit konfigurierbaren Schritten OCR, KI-Extraktion, Formatkonvertierung und Speicher-Routing in beliebiger Reihenfolge.",
"index.cta_heading": "Bereit, Ihren Dokumenten-Workflow zu verbessern?",
"index.cta_description": "Schließen Sie sich Teams an, die ihre Dokumentenverarbeitung bereits mit DocuElevate automatisieren.",
"index.cta_signup": "Kostenloses Konto erstellen",
"index.cta_pricing": "Preise ansehen",
"index.dashboard_subtitle": "Intelligente Dokumentenverarbeitung & -verwaltung",
"index.platform_overview": "Plattformübersicht",
"index.stat_total_files": "Dateien gesamt",
"index.stat_files_today": "Dateien heute",
"index.stat_files_month": "Dateien diesen Monat",
"index.stat_active_users": "Aktive Benutzer",
"index.usage_my_usage": "Meine Nutzung",
"index.usage_lifetime": "Dateien gesamt",
"index.usage_today": "Dateien heute",
"index.usage_month": "Dateien diesen Monat",
"index.usage_unlimited": "Unbegrenzt",
"index.tier_plan": "Tarif",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "Alle Details ansehen",
"index.quick_actions": "Schnellaktionen",
"index.quick_upload": "Dokument hochladen",
"index.quick_upload_desc": "Eine neue Datei verarbeiten",
"index.quick_documents": "Meine Dokumente",
"index.quick_documents_desc": "Ihre verarbeiteten Dateien durchsuchen",
"index.quick_subscription": "Mein Abonnement",
"index.quick_subscription_desc": "Tarif & Nutzungsdetails anzeigen",
"index.quick_search": "Suche",
"index.quick_search_desc": "Volltextsuche über Dokumente",
"index.upgrade_plan": "Tarif upgraden",
"index.upgrade_description": "Mehr Dokumente, mehr Ziele und Prioritäts-Support freischalten.",
"index.upgrade_daily_limits": "Höhere tägliche & monatliche Limits",
"index.upgrade_destinations": "Mehr Speicherziele",
"index.upgrade_ocr_pages": "Mehr OCR-Seiten",
"index.upgrade_view_pricing": "Tarife & Preise ansehen",
"index.integrations_title": "Integrationen",
"index.integrations_active": "Aktive Integrationen",
"index.integrations_storage": "Speicherziele",
"index.integrations_view_status": "Systemstatus anzeigen",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligente Dokumentenverarbeitung & -verwaltung",
"index.capabilities_title": "Funktionen",
"index.capabilities_ocr": "OCR & Metadatenextraktion mit KI",
"index.capabilities_cloud": "Cloud-Speicher: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_paperless": "Paperless-ngx-Integration für Dokumentenverwaltung",
"index.capabilities_ingestion": "E-Mail- & URL-basierte Dokumentenaufnahme",
"index.capabilities_workflows": "Automatisierte Klassifizierung & Routing-Workflows",
"index.feature_search": "Volltextsuche",
"index.feature_search_desc": "Finden Sie sofort jedes Dokument nach Inhalt, Metadaten oder Tags in Ihrem gesamten Archiv.",
"index.feature_section_title": "Alles, was Sie für intelligente Dokumenten-Workflows brauchen",
"index.getting_started": "Erste Schritte",
"index.getting_started_1": "Integrationen über Systemstatus konfigurieren",
"index.getting_started_2": "Erstes Dokument hochladen",
"index.getting_started_3": "Ergebnisse in Dateien überprüfen",
"index.getting_started_learn": "Mehr über DocuElevate erfahren",
"error.404_code": "404",
"error.404_heading": "Ups, diese Seite konnten wir nicht finden!",
"error.404_message": "Es scheint, als hätte DocuElevate das gesuchte Dokument verlegt. Keine Sorge wir helfen Ihnen weiter.",
"error.404_home": "Zur Startseite",
"error.500_code": "500",
"error.500_heading": "Ups! Etwas ist schiefgelaufen.",
"error.500_description": "Unsere Server haben ein Problem und brauchen einen Moment.",
"error.500_home": "Zur Startseite",
"pipelines.page_title": "Verarbeitungs-Pipelines",
"pipelines.system_label": "System",
"pipelines.default_label": "Standard",
"pipelines.inactive_label": "Inaktiv",
"pipelines.disabled_label": "Deaktiviert",
"pipelines.enabled_label": "Aktiviert",
"pipelines.empty_state": "Noch keine Pipelines",
"pipelines.set_default": "Als meine Standard-Pipeline festlegen",
"pipelines.description_label": "Beschreibung",
"pipelines.active_label": "Aktiv",
"integrations.page_title": "Integrationen",
"integrations.imap_settings": "IMAP-Einstellungen",
"integrations.host_label": "Host",
"integrations.port_label": "Port",
"integrations.username_label": "Benutzername",
"integrations.password_label": "Passwort",
"integrations.folder_label": "Ordner",
"index.hero_description": "DocuElevate nimmt Ihre Dokumente auf, führt OCR durch, extrahiert Metadaten mit KI und leitet Dateien an Dropbox, Google Drive, OneDrive, S3, Nextcloud und mehr weiter alles in einer nahtlosen Pipeline.",
"index.hero_heading": "Vom Hochladen zur Erkenntnis automatisch.",
"index.hero_login": "Anmelden",
"index.hero_pricing": "Tarife & Preise ansehen",
"index.hero_signup": "Kostenlos starten",
"index.integrations_active": "Aktive Integrationen",
"index.integrations_storage": "Speicherziele",
"index.integrations_title": "Integrationen",
"index.integrations_view_status": "Systemstatus anzeigen",
"index.page_title_dashboard": "Übersicht",
"index.page_title_public": "Intelligente Dokumentenverarbeitung",
"index.platform_overview": "Plattformübersicht",
"index.quick_actions": "Schnellaktionen",
"index.quick_documents": "Meine Dokumente",
"index.quick_documents_desc": "Ihre verarbeiteten Dateien durchsuchen",
"index.quick_search": "Suche",
"index.quick_search_desc": "Volltextsuche über Dokumente",
"index.quick_subscription": "Mein Abonnement",
"index.quick_subscription_desc": "Tarif & Nutzungsdetails anzeigen",
"index.quick_upload": "Dokument hochladen",
"index.quick_upload_desc": "Eine neue Datei verarbeiten",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligente Dokumentenverarbeitung & -verwaltung",
"index.stat_active_users": "Aktive Benutzer",
"index.stat_files_month": "Dateien diesen Monat",
"index.stat_files_today": "Dateien heute",
"index.stat_total_files": "Dateien gesamt",
"index.tier_plan": "Tarif",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "Alle Details ansehen",
"index.upgrade_daily_limits": "Höhere tägliche & monatliche Limits",
"index.upgrade_description": "Mehr Dokumente, mehr Ziele und Prioritäts-Support freischalten.",
"index.upgrade_destinations": "Mehr Speicherziele",
"index.upgrade_ocr_pages": "Mehr OCR-Seiten",
"index.upgrade_plan": "Tarif upgraden",
"index.upgrade_view_pricing": "Tarife & Preise ansehen",
"index.usage_lifetime": "Dateien gesamt",
"index.usage_month": "Dateien diesen Monat",
"index.usage_my_usage": "Meine Nutzung",
"index.usage_today": "Dateien heute",
"index.usage_unlimited": "Unbegrenzt",
"integrations.configure": "Konfigurieren",
"integrations.connect": "Verbinden",
"integrations.connected": "Verbunden",
"integrations.disconnect": "Trennen",
"integrations.empty_state": "Keine Integrationen konfiguriert",
"status.page_title": "Systemstatus",
"status.app_version": "App-Version",
"status.build_date": "Build-Datum",
"status.last_check": "Letzte Prüfung",
"status.container_id": "Container-ID",
"status.git_commit": "Git-Commit",
"status.setting_label": "Einstellung",
"status.value_label": "Wert",
"notifications.page_title": "Benachrichtigungen",
"notifications.manage_desc": "Verwalten Sie Ihren Posteingang, Ziele und Ereignispräferenzen",
"notifications.tab_inbox": "Posteingang",
"notifications.tab_settings": "Einstellungen",
"notifications.filter_all": "Alle",
"notifications.filter_unread": "Nur ungelesene",
"notifications.filter_read": "Nur gelesene",
"notifications.mark_all_read_btn": "Alle als gelesen markieren",
"auth.login_title": "Anmelden",
"auth.signup_title": "Registrieren",
"auth.forgot_password": "Passwort vergessen?",
"auth.remember_me": "Angemeldet bleiben",
"auth.email_label": "E-Mail",
"auth.password_label": "Passwort",
"auth.confirm_password": "Passwort bestätigen",
"auth.username_label": "Benutzername",
"auth.display_name_label": "Anzeigename",
"language.nb": "Norsk",
"language.da": "Dansk",
"language.sv": "Svenska",
"language.fi": "Suomi",
"language.is": "Íslenska",
"language.ga": "Gaeilge",
"language.hu": "Magyar",
"integrations.folder_label": "Ordner",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP-Einstellungen",
"integrations.not_connected": "Nicht verbunden",
"integrations.page_title": "Integrationen",
"integrations.password_label": "Passwort",
"integrations.port_label": "Port",
"integrations.title": "Integrationen",
"integrations.username_label": "Benutzername",
"language.bg": "Български",
"language.ca": "Català",
"language.change_success": "Sprache geändert zu {language}",
"language.changed": "Sprache geändert zu {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "Englisch",
"language.es": "Spanisch",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Französisch",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italienisch",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Niederländisch",
"language.pl": "Polnisch",
"language.pt": "Portugiesisch",
"language.ro": "Română",
"language.ru": "Russisch",
"language.selector": "Sprache",
"language.selector_label": "Sprache wählen",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.hr": "Hrvatski",
"language.ro": "Română",
"language.bg": "Български",
"language.uk": "Українська",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.el": "Ελληνικά",
"language.et": "Eesti",
"language.lv": "Latviešu",
"language.lt": "Lietuvių",
"language.lb": "Lëtzebuergesch",
"language.ca": "Català"
"language.uk": "Українська",
"language.zh": "Chinesisch",
"nav.about": "Über uns",
"nav.admin": "Administration",
"nav.admin.audit_logs": "Prüfprotokolle",
"nav.admin.backups": "Sicherungen",
"nav.admin.plans": "Tarife",
"nav.admin.scheduled_jobs": "Geplante Aufgaben",
"nav.admin.users": "Benutzer",
"nav.admin_actions": "Admin-Aktionen",
"nav.admin_menu": "Admin-Menü",
"nav.api_docs": "API-Dokumentation",
"nav.api_tokens": "API-Token",
"nav.backup_restore": "Sicherung & Wiederherstellung",
"nav.credentials": "Zugangsdaten",
"nav.dark_mode": "Dunkelmodus",
"nav.dashboard": "Übersicht",
"nav.developer_docs": "Entwicklerdokumentation",
"nav.duplicates": "Duplikate",
"nav.file_manager": "Dateimanager",
"nav.files": "Dateien",
"nav.help": "Hilfe",
"nav.help_center": "Hilfecenter",
"nav.imap": "E-Mail-Import",
"nav.integrations": "Integrationen",
"nav.light_mode": "Hellmodus",
"nav.login": "Anmelden",
"nav.logout": "Abmelden",
"nav.main_navigation": "Hauptnavigation",
"nav.notifications": "Benachrichtigungen",
"nav.open_main_menu": "Hauptmenü öffnen",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan-Designer",
"nav.pricing": "Preise",
"nav.profile": "Profil",
"nav.queue": "Warteschlange",
"nav.queue_monitor": "Warteschlangen-Monitor",
"nav.scheduled_jobs": "Geplante Aufgaben",
"nav.search": "Suche",
"nav.settings": "Einstellungen",
"nav.shared_links": "Geteilte Links",
"nav.signup": "Registrieren",
"nav.similarity": "Ähnlichkeit",
"nav.skip_to_content": "Zum Hauptinhalt springen",
"nav.status": "Systemstatus",
"nav.subscription": "Abonnement",
"nav.toggle_dark_mode": "Dunkelmodus umschalten",
"nav.toggle_nav": "Navigationsmenü umschalten",
"nav.upload": "Hochladen",
"nav.users": "Benutzer",
"nav.version": "Versionsinformationen",
"notifications.filter_all": "Alle",
"notifications.filter_read": "Nur gelesene",
"notifications.filter_unread": "Nur ungelesene",
"notifications.manage_desc": "Verwalten Sie Ihren Posteingang, Ziele und Ereignispräferenzen",
"notifications.mark_all_read": "Alle als gelesen markieren",
"notifications.mark_all_read_btn": "Alle als gelesen markieren",
"notifications.mark_read": "Als gelesen markieren",
"notifications.no_notifications": "Keine Benachrichtigungen",
"notifications.page_title": "Benachrichtigungen",
"notifications.tab_inbox": "Posteingang",
"notifications.tab_settings": "Einstellungen",
"notifications.title": "Benachrichtigungen",
"notifications.unread_count": "{count} ungelesene Benachrichtigungen",
"pipelines.active_label": "Aktiv",
"pipelines.create": "Pipeline erstellen",
"pipelines.default_label": "Standard",
"pipelines.description_label": "Beschreibung",
"pipelines.disabled_label": "Deaktiviert",
"pipelines.edit": "Pipeline bearbeiten",
"pipelines.empty_state": "Noch keine Pipelines",
"pipelines.enabled_label": "Aktiviert",
"pipelines.inactive_label": "Inaktiv",
"pipelines.page_title": "Verarbeitungs-Pipelines",
"pipelines.set_default": "Als meine Standard-Pipeline festlegen",
"pipelines.system_label": "System",
"pipelines.title": "Verarbeitungs-Pipelines",
"search.button": "Suchen",
"search.error_message": "Suche ist vorübergehend nicht verfügbar. Bitte versuchen Sie es gleich erneut.",
"search.filter_clear_button": "Filter zurücksetzen",
"search.filter_date_from": "Datum von",
"search.filter_date_to": "Datum bis",
"search.filter_document_type": "Dokumenttyp",
"search.filter_document_type_placeholder": "z.B. Rechnung",
"search.filter_language": "Sprache",
"search.filter_language_placeholder": "z.B. de",
"search.filter_sender": "Absender",
"search.filter_sender_placeholder": "z.B. ACME GmbH",
"search.filter_tags_placeholder": "z.B. Amazon",
"search.filter_text_quality": "Textqualität",
"search.filter_text_quality_all": "Alle",
"search.filter_text_quality_high": "Hoch",
"search.filter_text_quality_low": "Niedrig",
"search.filter_text_quality_medium": "Mittel",
"search.filter_text_quality_no_text": "Kein Text",
"search.heading": "Dokumentensuche",
"search.input_placeholder": "Dokumente nach Inhalt, Absender, Tags, Typ suchen...",
"search.loading_indicator": "Suche läuft…",
"search.no_results": "Keine Ergebnisse gefunden",
"search.page_title": "Dokumente suchen",
"search.placeholder": "Nach Dateiname, Inhalt, Tags suchen...",
"search.result_empty": "Keine Dokumente gefunden, die Ihrer Suche entsprechen.",
"search.results_count": "{count} Ergebnisse gefunden",
"search.saved_button": "Aktuelle speichern",
"search.saved_empty": "Noch keine gespeicherten Suchen",
"search.saved_error": "Gespeicherte Suchen konnten nicht geladen werden",
"search.saved_label": "Gespeicherte Suchen",
"search.saved_loading": "Laden...",
"search.title": "Dokumente suchen",
"settings.reset_confirm": "Möchten Sie diese Einstellung wirklich zurücksetzen?",
"settings.save_error": "Einstellung konnte nicht gespeichert werden",
"settings.save_success": "Einstellung erfolgreich gespeichert",
"settings.title": "Einstellungen",
"status.app_version": "App-Version",
"status.build_date": "Build-Datum",
"status.container_id": "Container-ID",
"status.git_commit": "Git-Commit",
"status.last_check": "Letzte Prüfung",
"status.page_title": "Systemstatus",
"status.setting_label": "Einstellung",
"status.value_label": "Wert",
"upload.browse_button": "Dateien durchsuchen",
"upload.button_processing": "Verarbeitung...",
"upload.camera_button": "Foto aufnehmen / Dokument scannen",
"upload.download_button": "Herunterladen und verarbeiten",
"upload.downloading": "Datei wird von URL heruntergeladen...",
"upload.drag_drop": "Dateien hierher ziehen oder zum Durchsuchen klicken",
"upload.drop_hint_desktop": "Dateien oder Ordner hierher ziehen oder klicken, um Dateien auszuwählen.",
"upload.drop_hint_mobile": "Tippen Sie, um Dateien auszuwählen, oder verwenden Sie die Kamera-Schaltfläche unten.",
"upload.error": "Upload fehlgeschlagen",
"upload.error_invalid_url": "Ungültiges URL-Format",
"upload.error_url_required": "Bitte geben Sie eine URL ein",
"upload.file_size_hint": "Maximale Größe: 500 MB pro Datei",
"upload.file_types": "Erlaubte Typen: PDF, Office-Dokumente (Word, Excel, PowerPoint usw.), Bilder",
"upload.filename_description": "Leer lassen, um den Dateinamen aus der URL zu verwenden",
"upload.filename_label": "Dateiname (optional)",
"upload.filename_placeholder": "mein-dokument.pdf",
"upload.max_size": "Maximale Dateigröße: {size}",
"upload.page_title": "Dateien hochladen",
"upload.section_device": "Vom Gerät hochladen",
"upload.section_url": "Von URL hochladen",
"upload.select_file": "Datei auswählen",
"upload.success": "Datei erfolgreich hochgeladen",
"upload.title": "Dokument hochladen",
"upload.uploading": "Wird hochgeladen...",
"upload.url_description": "Geben Sie einen direkten Link zu einer Datei ein (PDF, Office-Dokumente oder Bilder)",
"upload.url_label": "Datei-URL",
"upload.url_placeholder": "https://beispiel.de/dokument.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Η γλώσσα άλλαξε σε {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Ελληνικά",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Panel",
"nav.upload": "Subir",
"nav.files": "Archivos",
"nav.search": "Buscar",
"nav.pipelines": "Pipelines",
"nav.integrations": "Integraciones",
"nav.help": "Ayuda",
"nav.notifications": "Notificaciones",
"nav.pricing": "Precios",
"nav.about": "Acerca de",
"nav.admin": "Admin",
"nav.settings": "Configuración",
"nav.users": "Usuarios",
"nav.plan_designer": "Diseñador de planes",
"nav.credentials": "Credenciales",
"nav.file_manager": "Gestor de archivos",
"nav.duplicates": "Duplicados",
"nav.similarity": "Similitud",
"nav.queue_monitor": "Monitor de cola",
"nav.scheduled_jobs": "Tareas programadas",
"nav.backup_restore": "Copia de seguridad y restauración",
"nav.status": "Estado",
"nav.api_docs": "Documentación API",
"nav.developer_docs": "Documentación para desarrolladores",
"nav.dark_mode": "Modo oscuro",
"nav.light_mode": "Modo claro",
"nav.toggle_dark_mode": "Alternar modo oscuro",
"nav.toggle_nav": "Alternar menú de navegación",
"nav.open_main_menu": "Abrir menú principal",
"nav.skip_to_content": "Ir al contenido principal",
"nav.main_navigation": "Navegación principal",
"nav.admin_menu": "Menú de administración",
"nav.admin_actions": "Acciones de administración",
"nav.help_center": "Centro de ayuda",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Iniciar sesión",
"auth.login_title": "Log In",
"auth.logout": "Cerrar sesión",
"auth.signup": "Registrarse",
"auth.my_account": "Mi cuenta",
"auth.password_label": "Password",
"auth.profile": "Perfil",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Privacidad",
"footer.imprint": "Aviso legal",
"footer.terms": "Términos",
"footer.cookies": "Cookies",
"footer.license": "Licencia",
"footer.attributions": "Atribuciones",
"footer.version": "Versión {version}",
"footer.navigation": "Navegación del pie de página",
"auth.remember_me": "Remember me",
"auth.signup": "Registrarse",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Acciones",
"common.active": "Activo",
"common.all": "Todo",
"common.back": "Atrás",
"common.cancel": "Cancelar",
"common.close": "Cerrar",
"common.completed": "Completado",
"common.confirm": "Confirmar",
"common.copied": "¡Copiado!",
"common.copy": "Copiar",
"common.created": "Creado",
"common.date": "Fecha",
"common.delete": "Eliminar",
"common.description": "Descripción",
"common.details": "Detalles",
"common.disabled": "Deshabilitado",
"common.download": "Descargar",
"common.edit": "Editar",
"common.enabled": "Habilitado",
"common.error": "Error",
"common.failed": "Fallido",
"common.filter": "Filtrar",
"common.inactive": "Inactivo",
"common.info": "Información",
"common.loading": "Cargando...",
"common.name": "Nombre",
"common.next": "Siguiente",
"common.no": "No",
"common.none": "Ninguno",
"common.pending": "Pendiente",
"common.processing": "Procesando",
"common.refresh": "Actualizar",
"common.reset": "Restablecer",
"common.retry": "Reintentar",
"common.save": "Guardar",
"common.search": "Buscar",
"common.select": "Seleccionar",
"common.size": "Tamaño",
"common.status": "Estado",
"common.success": "Éxito",
"common.type": "Tipo",
"common.updated": "Actualizado",
"common.upload": "Subir",
"common.view": "Ver",
"common.warning": "Advertencia",
"common.yes": "Sí",
"cookie.accept": "Entendido",
"cookie.notice": "DocuElevate utiliza solo cookies de sesión esenciales necesarias para la autenticación y el funcionamiento del servicio. No se utilizan cookies de seguimiento ni analíticas.",
"cookie.notice_label": "Aviso de cookies",
"cookie.policy_link": "Política de cookies",
"cookie.privacy_link": "Aviso de privacidad",
"cookie.accept": "Entendido",
"cookie.notice_label": "Aviso de cookies",
"common.save": "Guardar",
"common.cancel": "Cancelar",
"common.delete": "Eliminar",
"common.edit": "Editar",
"common.close": "Cerrar",
"common.confirm": "Confirmar",
"common.back": "Atrás",
"common.next": "Siguiente",
"common.loading": "Cargando...",
"common.error": "Error",
"common.success": "Éxito",
"common.warning": "Advertencia",
"common.info": "Información",
"common.yes": "Sí",
"common.no": "No",
"common.search": "Buscar",
"common.filter": "Filtrar",
"common.reset": "Restablecer",
"common.refresh": "Actualizar",
"common.download": "Descargar",
"common.actions": "Acciones",
"common.details": "Detalles",
"common.name": "Nombre",
"common.description": "Descripción",
"common.type": "Tipo",
"common.status": "Estado",
"common.date": "Fecha",
"common.size": "Tamaño",
"common.created": "Creado",
"common.updated": "Actualizado",
"common.enabled": "Habilitado",
"common.disabled": "Deshabilitado",
"common.active": "Activo",
"common.inactive": "Inactivo",
"common.all": "Todo",
"common.none": "Ninguno",
"common.select": "Seleccionar",
"common.upload": "Subir",
"common.processing": "Procesando",
"common.completed": "Completado",
"common.failed": "Fallido",
"common.pending": "Pendiente",
"common.retry": "Reintentar",
"common.view": "Ver",
"common.copy": "Copiar",
"common.copied": "¡Copiado!",
"language.selector": "Idioma",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Idioma cambiado a {language}",
"dashboard.active_integrations": "Integraciones activas",
"dashboard.files_this_month": "Archivos este mes",
"dashboard.files_today": "Archivos hoy",
"dashboard.ocr_processed": "OCR procesados",
"dashboard.quick_actions": "Acciones rápidas",
"dashboard.recent_activity": "Actividad reciente",
"dashboard.storage_targets": "Destinos de almacenamiento",
"dashboard.title": "Panel",
"dashboard.total_files": "Total de archivos",
"dashboard.files_today": "Archivos hoy",
"dashboard.files_this_month": "Archivos este mes",
"dashboard.ocr_processed": "OCR procesados",
"dashboard.active_integrations": "Integraciones activas",
"dashboard.storage_targets": "Destinos de almacenamiento",
"dashboard.recent_activity": "Actividad reciente",
"dashboard.quick_actions": "Acciones rápidas",
"dashboard.welcome": "Bienvenido a DocuElevate",
"upload.title": "Subir documento",
"upload.drag_drop": "Arrastre archivos aquí o haga clic para buscar",
"upload.select_file": "Seleccionar archivo",
"upload.uploading": "Subiendo...",
"upload.success": "Archivo subido con éxito",
"upload.error": "Error al subir",
"upload.max_size": "Tamaño máximo del archivo: {size}",
"files.title": "Archivos",
"files.no_files": "No se encontraron archivos",
"files.filename": "Nombre del archivo",
"files.document_title": "Título del documento",
"files.uploaded": "Subido",
"files.file_size": "Tamaño del archivo",
"files.ocr_status": "Estado OCR",
"files.tags": "Etiquetas",
"search.title": "Buscar documentos",
"search.placeholder": "Buscar por nombre, contenido, etiquetas...",
"search.no_results": "No se encontraron resultados",
"search.results_count": "{count} resultados encontrados",
"settings.title": "Configuración",
"settings.save_success": "Configuración guardada con éxito",
"settings.save_error": "Error al guardar la configuración",
"settings.reset_confirm": "¿Está seguro de que desea restablecer esta configuración?",
"integrations.title": "Integraciones",
"integrations.connect": "Conectar",
"integrations.disconnect": "Desconectar",
"integrations.connected": "Conectado",
"integrations.not_connected": "No conectado",
"integrations.configure": "Configurar",
"pipelines.title": "Pipelines de procesamiento",
"pipelines.create": "Crear pipeline",
"pipelines.edit": "Editar pipeline",
"help.title": "Centro de ayuda",
"help.getting_started": "Primeros pasos",
"help.faq": "Preguntas frecuentes",
"help.documentation": "Documentación",
"help.support": "Soporte",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Prohibido",
"error.forbidden_message": "No tiene permiso para acceder a esta página.",
"error.not_found": "Página no encontrada",
"error.not_found_message": "La página que busca no existe.",
"error.server_error": "Error interno del servidor",
"error.server_error_message": "Algo salió mal. Inténtelo de nuevo más tarde.",
"error.unauthorized": "No autorizado",
"error.unauthorized_message": "Debe iniciar sesión para acceder a esta página.",
"error.forbidden": "Prohibido",
"error.forbidden_message": "No tiene permiso para acceder a esta página.",
"notifications.title": "Notificaciones",
"notifications.mark_read": "Marcar como leído",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Título del documento",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Tamaño del archivo",
"files.filename": "Nombre del archivo",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No se encontraron archivos",
"files.ocr_status": "Estado OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Etiquetas",
"files.title": "Archivos",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Subido",
"footer.attributions": "Atribuciones",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Aviso legal",
"footer.license": "Licencia",
"footer.navigation": "Navegación del pie de página",
"footer.privacy": "Privacidad",
"footer.terms": "Términos",
"footer.version": "Versión {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentación",
"help.faq": "Preguntas frecuentes",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Primeros pasos",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Soporte",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Centro de ayuda",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configurar",
"integrations.connect": "Conectar",
"integrations.connected": "Conectado",
"integrations.disconnect": "Desconectar",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "No conectado",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integraciones",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Idioma cambiado a {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Idioma",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "Acerca de",
"nav.admin": "Admin",
"nav.admin_actions": "Acciones de administración",
"nav.admin_menu": "Menú de administración",
"nav.api_docs": "Documentación API",
"nav.backup_restore": "Copia de seguridad y restauración",
"nav.credentials": "Credenciales",
"nav.dark_mode": "Modo oscuro",
"nav.dashboard": "Panel",
"nav.developer_docs": "Documentación para desarrolladores",
"nav.duplicates": "Duplicados",
"nav.file_manager": "Gestor de archivos",
"nav.files": "Archivos",
"nav.help": "Ayuda",
"nav.help_center": "Centro de ayuda",
"nav.integrations": "Integraciones",
"nav.light_mode": "Modo claro",
"nav.main_navigation": "Navegación principal",
"nav.notifications": "Notificaciones",
"nav.open_main_menu": "Abrir menú principal",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Diseñador de planes",
"nav.pricing": "Precios",
"nav.queue_monitor": "Monitor de cola",
"nav.scheduled_jobs": "Tareas programadas",
"nav.search": "Buscar",
"nav.settings": "Configuración",
"nav.similarity": "Similitud",
"nav.skip_to_content": "Ir al contenido principal",
"nav.status": "Estado",
"nav.toggle_dark_mode": "Alternar modo oscuro",
"nav.toggle_nav": "Alternar menú de navegación",
"nav.upload": "Subir",
"nav.users": "Usuarios",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Marcar todo como leído",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Marcar como leído",
"notifications.no_notifications": "Sin notificaciones",
"notifications.unread_count": "{count} notificaciones no leídas"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notificaciones",
"notifications.unread_count": "{count} notificaciones no leídas",
"pipelines.active_label": "Active",
"pipelines.create": "Crear pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Editar pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Pipelines de procesamiento",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No se encontraron resultados",
"search.page_title": "Search Documents",
"search.placeholder": "Buscar por nombre, contenido, etiquetas...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} resultados encontrados",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Buscar documentos",
"settings.reset_confirm": "¿Está seguro de que desea restablecer esta configuración?",
"settings.save_error": "Error al guardar la configuración",
"settings.save_success": "Configuración guardada con éxito",
"settings.title": "Configuración",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Arrastre archivos aquí o haga clic para buscar",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Error al subir",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Tamaño máximo del archivo: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Seleccionar archivo",
"upload.success": "Archivo subido con éxito",
"upload.title": "Subir documento",
"upload.uploading": "Subiendo...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Keel muudeti keelele {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Eesti",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Kieli vaihdettiin kieleen {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Suomi",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Tableau de bord",
"nav.upload": "Téléverser",
"nav.files": "Fichiers",
"nav.search": "Recherche",
"nav.pipelines": "Pipelines",
"nav.integrations": "Intégrations",
"nav.help": "Aide",
"nav.notifications": "Notifications",
"nav.pricing": "Tarifs",
"nav.about": "À propos",
"nav.admin": "Admin",
"nav.settings": "Paramètres",
"nav.users": "Utilisateurs",
"nav.plan_designer": "Concepteur de plans",
"nav.credentials": "Identifiants",
"nav.file_manager": "Gestionnaire de fichiers",
"nav.duplicates": "Doublons",
"nav.similarity": "Similarité",
"nav.queue_monitor": "File d'attente",
"nav.scheduled_jobs": "Tâches planifiées",
"nav.backup_restore": "Sauvegarde et restauration",
"nav.status": "Statut",
"nav.api_docs": "Documentation API",
"nav.developer_docs": "Documentation développeur",
"nav.dark_mode": "Mode sombre",
"nav.light_mode": "Mode clair",
"nav.toggle_dark_mode": "Basculer le mode sombre",
"nav.toggle_nav": "Basculer le menu de navigation",
"nav.open_main_menu": "Ouvrir le menu principal",
"nav.skip_to_content": "Aller au contenu principal",
"nav.main_navigation": "Navigation principale",
"nav.admin_menu": "Menu admin",
"nav.admin_actions": "Actions admin",
"nav.help_center": "Centre d'aide",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Se connecter",
"auth.login_title": "Log In",
"auth.logout": "Se déconnecter",
"auth.signup": "S'inscrire",
"auth.my_account": "Mon compte",
"auth.password_label": "Password",
"auth.profile": "Profil",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Confidentialité",
"footer.imprint": "Mentions légales",
"footer.terms": "Conditions",
"footer.cookies": "Cookies",
"footer.license": "Licence",
"footer.attributions": "Attributions",
"footer.version": "Version {version}",
"footer.navigation": "Navigation du pied de page",
"auth.remember_me": "Remember me",
"auth.signup": "S'inscrire",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Actif",
"common.all": "Tout",
"common.back": "Retour",
"common.cancel": "Annuler",
"common.close": "Fermer",
"common.completed": "Terminé",
"common.confirm": "Confirmer",
"common.copied": "Copié !",
"common.copy": "Copier",
"common.created": "Créé",
"common.date": "Date",
"common.delete": "Supprimer",
"common.description": "Description",
"common.details": "Détails",
"common.disabled": "Désactivé",
"common.download": "Télécharger",
"common.edit": "Modifier",
"common.enabled": "Activé",
"common.error": "Erreur",
"common.failed": "Échoué",
"common.filter": "Filtrer",
"common.inactive": "Inactif",
"common.info": "Info",
"common.loading": "Chargement...",
"common.name": "Nom",
"common.next": "Suivant",
"common.no": "Non",
"common.none": "Aucun",
"common.pending": "En attente",
"common.processing": "En cours de traitement",
"common.refresh": "Actualiser",
"common.reset": "Réinitialiser",
"common.retry": "Réessayer",
"common.save": "Enregistrer",
"common.search": "Rechercher",
"common.select": "Sélectionner",
"common.size": "Taille",
"common.status": "Statut",
"common.success": "Succès",
"common.type": "Type",
"common.updated": "Mis à jour",
"common.upload": "Téléverser",
"common.view": "Voir",
"common.warning": "Avertissement",
"common.yes": "Oui",
"cookie.accept": "Compris",
"cookie.notice": "DocuElevate utilise uniquement des cookies de session essentiels nécessaires à l'authentification et au fonctionnement du service. Aucun cookie de suivi ou d'analyse n'est utilisé.",
"cookie.notice_label": "Avis relatif aux cookies",
"cookie.policy_link": "Politique de cookies",
"cookie.privacy_link": "Avis de confidentialité",
"cookie.accept": "Compris",
"cookie.notice_label": "Avis relatif aux cookies",
"common.save": "Enregistrer",
"common.cancel": "Annuler",
"common.delete": "Supprimer",
"common.edit": "Modifier",
"common.close": "Fermer",
"common.confirm": "Confirmer",
"common.back": "Retour",
"common.next": "Suivant",
"common.loading": "Chargement...",
"common.error": "Erreur",
"common.success": "Succès",
"common.warning": "Avertissement",
"common.info": "Info",
"common.yes": "Oui",
"common.no": "Non",
"common.search": "Rechercher",
"common.filter": "Filtrer",
"common.reset": "Réinitialiser",
"common.refresh": "Actualiser",
"common.download": "Télécharger",
"common.actions": "Actions",
"common.details": "Détails",
"common.name": "Nom",
"common.description": "Description",
"common.type": "Type",
"common.status": "Statut",
"common.date": "Date",
"common.size": "Taille",
"common.created": "Créé",
"common.updated": "Mis à jour",
"common.enabled": "Activé",
"common.disabled": "Désactivé",
"common.active": "Actif",
"common.inactive": "Inactif",
"common.all": "Tout",
"common.none": "Aucun",
"common.select": "Sélectionner",
"common.upload": "Téléverser",
"common.processing": "En cours de traitement",
"common.completed": "Terminé",
"common.failed": "Échoué",
"common.pending": "En attente",
"common.retry": "Réessayer",
"common.view": "Voir",
"common.copy": "Copier",
"common.copied": "Copié !",
"language.selector": "Langue",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Langue changée en {language}",
"dashboard.active_integrations": "Intégrations actives",
"dashboard.files_this_month": "Fichiers ce mois-ci",
"dashboard.files_today": "Fichiers aujourd'hui",
"dashboard.ocr_processed": "OCR traités",
"dashboard.quick_actions": "Actions rapides",
"dashboard.recent_activity": "Activité récente",
"dashboard.storage_targets": "Destinations de stockage",
"dashboard.title": "Tableau de bord",
"dashboard.total_files": "Total des fichiers",
"dashboard.files_today": "Fichiers aujourd'hui",
"dashboard.files_this_month": "Fichiers ce mois-ci",
"dashboard.ocr_processed": "OCR traités",
"dashboard.active_integrations": "Intégrations actives",
"dashboard.storage_targets": "Destinations de stockage",
"dashboard.recent_activity": "Activité récente",
"dashboard.quick_actions": "Actions rapides",
"dashboard.welcome": "Bienvenue sur DocuElevate",
"upload.title": "Téléverser un document",
"upload.drag_drop": "Glissez-déposez vos fichiers ici ou cliquez pour parcourir",
"upload.select_file": "Sélectionner un fichier",
"upload.uploading": "Téléversement en cours...",
"upload.success": "Fichier téléversé avec succès",
"upload.error": "Échec du téléversement",
"upload.max_size": "Taille maximale du fichier : {size}",
"files.title": "Fichiers",
"files.no_files": "Aucun fichier trouvé",
"files.filename": "Nom du fichier",
"files.document_title": "Titre du document",
"files.uploaded": "Téléversé",
"files.file_size": "Taille du fichier",
"files.ocr_status": "Statut OCR",
"files.tags": "Étiquettes",
"search.title": "Rechercher des documents",
"search.placeholder": "Rechercher par nom, contenu, étiquettes...",
"search.no_results": "Aucun résultat trouvé",
"search.results_count": "{count} résultats trouvés",
"settings.title": "Paramètres",
"settings.save_success": "Paramètre enregistré avec succès",
"settings.save_error": "Échec de l'enregistrement du paramètre",
"settings.reset_confirm": "Êtes-vous sûr de vouloir réinitialiser ce paramètre ?",
"integrations.title": "Intégrations",
"integrations.connect": "Connecter",
"integrations.disconnect": "Déconnecter",
"integrations.connected": "Connecté",
"integrations.not_connected": "Non connecté",
"integrations.configure": "Configurer",
"pipelines.title": "Pipelines de traitement",
"pipelines.create": "Créer un pipeline",
"pipelines.edit": "Modifier le pipeline",
"help.title": "Centre d'aide",
"help.getting_started": "Premiers pas",
"help.faq": "Questions fréquentes",
"help.documentation": "Documentation",
"help.support": "Support",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Interdit",
"error.forbidden_message": "Vous n'avez pas la permission d'accéder à cette page.",
"error.not_found": "Page non trouvée",
"error.not_found_message": "La page que vous recherchez n'existe pas.",
"error.server_error": "Erreur interne du serveur",
"error.server_error_message": "Quelque chose s'est mal passé. Veuillez réessayer plus tard.",
"error.unauthorized": "Non autorisé",
"error.unauthorized_message": "Vous devez vous connecter pour accéder à cette page.",
"error.forbidden": "Interdit",
"error.forbidden_message": "Vous n'avez pas la permission d'accéder à cette page.",
"notifications.title": "Notifications",
"notifications.mark_read": "Marquer comme lu",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Titre du document",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Taille du fichier",
"files.filename": "Nom du fichier",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Aucun fichier trouvé",
"files.ocr_status": "Statut OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Étiquettes",
"files.title": "Fichiers",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Téléversé",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Mentions légales",
"footer.license": "Licence",
"footer.navigation": "Navigation du pied de page",
"footer.privacy": "Confidentialité",
"footer.terms": "Conditions",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Questions fréquentes",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Premiers pas",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Centre d'aide",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configurer",
"integrations.connect": "Connecter",
"integrations.connected": "Connecté",
"integrations.disconnect": "Déconnecter",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Non connecté",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Intégrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Langue changée en {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Langue",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "À propos",
"nav.admin": "Admin",
"nav.admin_actions": "Actions admin",
"nav.admin_menu": "Menu admin",
"nav.api_docs": "Documentation API",
"nav.backup_restore": "Sauvegarde et restauration",
"nav.credentials": "Identifiants",
"nav.dark_mode": "Mode sombre",
"nav.dashboard": "Tableau de bord",
"nav.developer_docs": "Documentation développeur",
"nav.duplicates": "Doublons",
"nav.file_manager": "Gestionnaire de fichiers",
"nav.files": "Fichiers",
"nav.help": "Aide",
"nav.help_center": "Centre d'aide",
"nav.integrations": "Intégrations",
"nav.light_mode": "Mode clair",
"nav.main_navigation": "Navigation principale",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Ouvrir le menu principal",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Concepteur de plans",
"nav.pricing": "Tarifs",
"nav.queue_monitor": "File d'attente",
"nav.scheduled_jobs": "Tâches planifiées",
"nav.search": "Recherche",
"nav.settings": "Paramètres",
"nav.similarity": "Similarité",
"nav.skip_to_content": "Aller au contenu principal",
"nav.status": "Statut",
"nav.toggle_dark_mode": "Basculer le mode sombre",
"nav.toggle_nav": "Basculer le menu de navigation",
"nav.upload": "Téléverser",
"nav.users": "Utilisateurs",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Tout marquer comme lu",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Marquer comme lu",
"notifications.no_notifications": "Aucune notification",
"notifications.unread_count": "{count} notifications non lues"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} notifications non lues",
"pipelines.active_label": "Active",
"pipelines.create": "Créer un pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Modifier le pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Pipelines de traitement",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Aucun résultat trouvé",
"search.page_title": "Search Documents",
"search.placeholder": "Rechercher par nom, contenu, étiquettes...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} résultats trouvés",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Rechercher des documents",
"settings.reset_confirm": "Êtes-vous sûr de vouloir réinitialiser ce paramètre ?",
"settings.save_error": "Échec de l'enregistrement du paramètre",
"settings.save_success": "Paramètre enregistré avec succès",
"settings.title": "Paramètres",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Glissez-déposez vos fichiers ici ou cliquez pour parcourir",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Échec du téléversement",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Taille maximale du fichier : {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Sélectionner un fichier",
"upload.success": "Fichier téléversé avec succès",
"upload.title": "Téléverser un document",
"upload.uploading": "Téléversement en cours...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Athraíodh an teanga go {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Gaeilge",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Jezik je promijenjen na {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Hrvatski",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "A nyelv megváltozott erre: {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Magyar",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Tungumálið var breytt í {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Íslenska",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Cruscotto",
"nav.upload": "Carica",
"nav.files": "File",
"nav.search": "Cerca",
"nav.pipelines": "Pipeline",
"nav.integrations": "Integrazioni",
"nav.help": "Aiuto",
"nav.notifications": "Notifiche",
"nav.pricing": "Prezzi",
"nav.about": "Informazioni",
"nav.admin": "Admin",
"nav.settings": "Impostazioni",
"nav.users": "Utenti",
"nav.plan_designer": "Designer dei piani",
"nav.credentials": "Credenziali",
"nav.file_manager": "Gestore file",
"nav.duplicates": "Duplicati",
"nav.similarity": "Similarità",
"nav.queue_monitor": "Monitor coda",
"nav.scheduled_jobs": "Attività pianificate",
"nav.backup_restore": "Backup e ripristino",
"nav.status": "Stato",
"nav.api_docs": "Documentazione API",
"nav.developer_docs": "Documentazione sviluppatore",
"nav.dark_mode": "Modalità scura",
"nav.light_mode": "Modalità chiara",
"nav.toggle_dark_mode": "Attiva/disattiva modalità scura",
"nav.toggle_nav": "Attiva/disattiva menu di navigazione",
"nav.open_main_menu": "Apri menu principale",
"nav.skip_to_content": "Vai al contenuto principale",
"nav.main_navigation": "Navigazione principale",
"nav.admin_menu": "Menu admin",
"nav.admin_actions": "Azioni admin",
"nav.help_center": "Centro assistenza",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Accedi",
"auth.login_title": "Log In",
"auth.logout": "Esci",
"auth.signup": "Registrati",
"auth.my_account": "Il mio account",
"auth.password_label": "Password",
"auth.profile": "Profilo",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Privacy",
"footer.imprint": "Note legali",
"footer.terms": "Termini",
"footer.cookies": "Cookie",
"footer.license": "Licenza",
"footer.attributions": "Attribuzioni",
"footer.version": "Versione {version}",
"footer.navigation": "Navigazione a piè di pagina",
"auth.remember_me": "Remember me",
"auth.signup": "Registrati",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Azioni",
"common.active": "Attivo",
"common.all": "Tutto",
"common.back": "Indietro",
"common.cancel": "Annulla",
"common.close": "Chiudi",
"common.completed": "Completato",
"common.confirm": "Conferma",
"common.copied": "Copiato!",
"common.copy": "Copia",
"common.created": "Creato",
"common.date": "Data",
"common.delete": "Elimina",
"common.description": "Descrizione",
"common.details": "Dettagli",
"common.disabled": "Disabilitato",
"common.download": "Scarica",
"common.edit": "Modifica",
"common.enabled": "Abilitato",
"common.error": "Errore",
"common.failed": "Fallito",
"common.filter": "Filtra",
"common.inactive": "Inattivo",
"common.info": "Info",
"common.loading": "Caricamento...",
"common.name": "Nome",
"common.next": "Avanti",
"common.no": "No",
"common.none": "Nessuno",
"common.pending": "In attesa",
"common.processing": "In elaborazione",
"common.refresh": "Aggiorna",
"common.reset": "Reimposta",
"common.retry": "Riprova",
"common.save": "Salva",
"common.search": "Cerca",
"common.select": "Seleziona",
"common.size": "Dimensione",
"common.status": "Stato",
"common.success": "Successo",
"common.type": "Tipo",
"common.updated": "Aggiornato",
"common.upload": "Carica",
"common.view": "Visualizza",
"common.warning": "Avviso",
"common.yes": "Sì",
"cookie.accept": "Ho capito",
"cookie.notice": "DocuElevate utilizza solo cookie di sessione essenziali necessari per l'autenticazione e il funzionamento del servizio. Non vengono utilizzati cookie di tracciamento o analisi.",
"cookie.notice_label": "Avviso sui cookie",
"cookie.policy_link": "Politica sui cookie",
"cookie.privacy_link": "Informativa sulla privacy",
"cookie.accept": "Ho capito",
"cookie.notice_label": "Avviso sui cookie",
"common.save": "Salva",
"common.cancel": "Annulla",
"common.delete": "Elimina",
"common.edit": "Modifica",
"common.close": "Chiudi",
"common.confirm": "Conferma",
"common.back": "Indietro",
"common.next": "Avanti",
"common.loading": "Caricamento...",
"common.error": "Errore",
"common.success": "Successo",
"common.warning": "Avviso",
"common.info": "Info",
"common.yes": "Sì",
"common.no": "No",
"common.search": "Cerca",
"common.filter": "Filtra",
"common.reset": "Reimposta",
"common.refresh": "Aggiorna",
"common.download": "Scarica",
"common.actions": "Azioni",
"common.details": "Dettagli",
"common.name": "Nome",
"common.description": "Descrizione",
"common.type": "Tipo",
"common.status": "Stato",
"common.date": "Data",
"common.size": "Dimensione",
"common.created": "Creato",
"common.updated": "Aggiornato",
"common.enabled": "Abilitato",
"common.disabled": "Disabilitato",
"common.active": "Attivo",
"common.inactive": "Inattivo",
"common.all": "Tutto",
"common.none": "Nessuno",
"common.select": "Seleziona",
"common.upload": "Carica",
"common.processing": "In elaborazione",
"common.completed": "Completato",
"common.failed": "Fallito",
"common.pending": "In attesa",
"common.retry": "Riprova",
"common.view": "Visualizza",
"common.copy": "Copia",
"common.copied": "Copiato!",
"language.selector": "Lingua",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Lingua cambiata in {language}",
"dashboard.active_integrations": "Integrazioni attive",
"dashboard.files_this_month": "File questo mese",
"dashboard.files_today": "File oggi",
"dashboard.ocr_processed": "OCR elaborati",
"dashboard.quick_actions": "Azioni rapide",
"dashboard.recent_activity": "Attività recente",
"dashboard.storage_targets": "Destinazioni di archiviazione",
"dashboard.title": "Cruscotto",
"dashboard.total_files": "File totali",
"dashboard.files_today": "File oggi",
"dashboard.files_this_month": "File questo mese",
"dashboard.ocr_processed": "OCR elaborati",
"dashboard.active_integrations": "Integrazioni attive",
"dashboard.storage_targets": "Destinazioni di archiviazione",
"dashboard.recent_activity": "Attività recente",
"dashboard.quick_actions": "Azioni rapide",
"dashboard.welcome": "Benvenuto su DocuElevate",
"upload.title": "Carica documento",
"upload.drag_drop": "Trascina i file qui o fai clic per sfogliare",
"upload.select_file": "Seleziona file",
"upload.uploading": "Caricamento in corso...",
"upload.success": "File caricato con successo",
"upload.error": "Caricamento fallito",
"upload.max_size": "Dimensione massima del file: {size}",
"files.title": "File",
"files.no_files": "Nessun file trovato",
"files.filename": "Nome del file",
"files.document_title": "Titolo del documento",
"files.uploaded": "Caricato",
"files.file_size": "Dimensione del file",
"files.ocr_status": "Stato OCR",
"files.tags": "Tag",
"search.title": "Cerca documenti",
"search.placeholder": "Cerca per nome, contenuto, tag...",
"search.no_results": "Nessun risultato trovato",
"search.results_count": "{count} risultati trovati",
"settings.title": "Impostazioni",
"settings.save_success": "Impostazione salvata con successo",
"settings.save_error": "Salvataggio impostazione fallito",
"settings.reset_confirm": "Sei sicuro di voler reimpostare questa impostazione?",
"integrations.title": "Integrazioni",
"integrations.connect": "Connetti",
"integrations.disconnect": "Disconnetti",
"integrations.connected": "Connesso",
"integrations.not_connected": "Non connesso",
"integrations.configure": "Configura",
"pipelines.title": "Pipeline di elaborazione",
"pipelines.create": "Crea pipeline",
"pipelines.edit": "Modifica pipeline",
"help.title": "Centro assistenza",
"help.getting_started": "Per iniziare",
"help.faq": "Domande frequenti",
"help.documentation": "Documentazione",
"help.support": "Supporto",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Vietato",
"error.forbidden_message": "Non hai il permesso di accedere a questa pagina.",
"error.not_found": "Pagina non trovata",
"error.not_found_message": "La pagina che stai cercando non esiste.",
"error.server_error": "Errore interno del server",
"error.server_error_message": "Qualcosa è andato storto. Riprova più tardi.",
"error.unauthorized": "Non autorizzato",
"error.unauthorized_message": "Devi accedere per visualizzare questa pagina.",
"error.forbidden": "Vietato",
"error.forbidden_message": "Non hai il permesso di accedere a questa pagina.",
"notifications.title": "Notifiche",
"notifications.mark_read": "Segna come letto",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Titolo del documento",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Dimensione del file",
"files.filename": "Nome del file",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Nessun file trovato",
"files.ocr_status": "Stato OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tag",
"files.title": "File",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Caricato",
"footer.attributions": "Attribuzioni",
"footer.cookies": "Cookie",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Note legali",
"footer.license": "Licenza",
"footer.navigation": "Navigazione a piè di pagina",
"footer.privacy": "Privacy",
"footer.terms": "Termini",
"footer.version": "Versione {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentazione",
"help.faq": "Domande frequenti",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Per iniziare",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Supporto",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Centro assistenza",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configura",
"integrations.connect": "Connetti",
"integrations.connected": "Connesso",
"integrations.disconnect": "Disconnetti",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Non connesso",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrazioni",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Lingua cambiata in {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Lingua",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "Informazioni",
"nav.admin": "Admin",
"nav.admin_actions": "Azioni admin",
"nav.admin_menu": "Menu admin",
"nav.api_docs": "Documentazione API",
"nav.backup_restore": "Backup e ripristino",
"nav.credentials": "Credenziali",
"nav.dark_mode": "Modalità scura",
"nav.dashboard": "Cruscotto",
"nav.developer_docs": "Documentazione sviluppatore",
"nav.duplicates": "Duplicati",
"nav.file_manager": "Gestore file",
"nav.files": "File",
"nav.help": "Aiuto",
"nav.help_center": "Centro assistenza",
"nav.integrations": "Integrazioni",
"nav.light_mode": "Modalità chiara",
"nav.main_navigation": "Navigazione principale",
"nav.notifications": "Notifiche",
"nav.open_main_menu": "Apri menu principale",
"nav.pipelines": "Pipeline",
"nav.plan_designer": "Designer dei piani",
"nav.pricing": "Prezzi",
"nav.queue_monitor": "Monitor coda",
"nav.scheduled_jobs": "Attività pianificate",
"nav.search": "Cerca",
"nav.settings": "Impostazioni",
"nav.similarity": "Similarità",
"nav.skip_to_content": "Vai al contenuto principale",
"nav.status": "Stato",
"nav.toggle_dark_mode": "Attiva/disattiva modalità scura",
"nav.toggle_nav": "Attiva/disattiva menu di navigazione",
"nav.upload": "Carica",
"nav.users": "Utenti",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Segna tutto come letto",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Segna come letto",
"notifications.no_notifications": "Nessuna notifica",
"notifications.unread_count": "{count} notifiche non lette"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifiche",
"notifications.unread_count": "{count} notifiche non lette",
"pipelines.active_label": "Active",
"pipelines.create": "Crea pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Modifica pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Pipeline di elaborazione",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Nessun risultato trovato",
"search.page_title": "Search Documents",
"search.placeholder": "Cerca per nome, contenuto, tag...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} risultati trovati",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Cerca documenti",
"settings.reset_confirm": "Sei sicuro di voler reimpostare questa impostazione?",
"settings.save_error": "Salvataggio impostazione fallito",
"settings.save_success": "Impostazione salvata con successo",
"settings.title": "Impostazioni",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Trascina i file qui o fai clic per sfogliare",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Caricamento fallito",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Dimensione massima del file: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Seleziona file",
"upload.success": "File caricato con successo",
"upload.title": "Carica documento",
"upload.uploading": "Caricamento in corso...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "D'Sprooch gouf op {language} geännert",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Lëtzebuergesch",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Kalba pakeista į {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Lietuvių",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Valoda tika nomainīta uz {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Latviešu",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Språket ble endret til {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Norsk",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Dashboard",
"nav.upload": "Uploaden",
"nav.files": "Bestanden",
"nav.search": "Zoeken",
"nav.pipelines": "Pipelines",
"nav.integrations": "Integraties",
"nav.help": "Help",
"nav.notifications": "Meldingen",
"nav.pricing": "Prijzen",
"nav.about": "Over ons",
"nav.admin": "Admin",
"nav.settings": "Instellingen",
"nav.users": "Gebruikers",
"nav.plan_designer": "Planontwerper",
"nav.credentials": "Referenties",
"nav.file_manager": "Bestandsbeheer",
"nav.duplicates": "Duplicaten",
"nav.similarity": "Gelijkenis",
"nav.queue_monitor": "Wachtrijmonitor",
"nav.scheduled_jobs": "Geplande taken",
"nav.backup_restore": "Back-up en herstel",
"nav.status": "Status",
"nav.api_docs": "API-documentatie",
"nav.developer_docs": "Ontwikkelaarsdocumentatie",
"nav.dark_mode": "Donkere modus",
"nav.light_mode": "Lichte modus",
"nav.toggle_dark_mode": "Donkere modus schakelen",
"nav.toggle_nav": "Navigatiemenu schakelen",
"nav.open_main_menu": "Hoofdmenu openen",
"nav.skip_to_content": "Ga naar hoofdinhoud",
"nav.main_navigation": "Hoofdnavigatie",
"nav.admin_menu": "Admin-menu",
"nav.admin_actions": "Admin-acties",
"nav.help_center": "Helpcentrum",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Inloggen",
"auth.login_title": "Log In",
"auth.logout": "Uitloggen",
"auth.signup": "Registreren",
"auth.my_account": "Mijn account",
"auth.password_label": "Password",
"auth.profile": "Profiel",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Privacy",
"footer.imprint": "Colofon",
"footer.terms": "Voorwaarden",
"footer.cookies": "Cookies",
"footer.license": "Licentie",
"footer.attributions": "Attributies",
"footer.version": "Versie {version}",
"footer.navigation": "Voettekstnavigatie",
"auth.remember_me": "Remember me",
"auth.signup": "Registreren",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Acties",
"common.active": "Actief",
"common.all": "Alles",
"common.back": "Terug",
"common.cancel": "Annuleren",
"common.close": "Sluiten",
"common.completed": "Voltooid",
"common.confirm": "Bevestigen",
"common.copied": "Gekopieerd!",
"common.copy": "Kopiëren",
"common.created": "Aangemaakt",
"common.date": "Datum",
"common.delete": "Verwijderen",
"common.description": "Beschrijving",
"common.details": "Details",
"common.disabled": "Uitgeschakeld",
"common.download": "Downloaden",
"common.edit": "Bewerken",
"common.enabled": "Ingeschakeld",
"common.error": "Fout",
"common.failed": "Mislukt",
"common.filter": "Filteren",
"common.inactive": "Inactief",
"common.info": "Info",
"common.loading": "Laden...",
"common.name": "Naam",
"common.next": "Volgende",
"common.no": "Nee",
"common.none": "Geen",
"common.pending": "In afwachting",
"common.processing": "Verwerken",
"common.refresh": "Vernieuwen",
"common.reset": "Herstellen",
"common.retry": "Opnieuw proberen",
"common.save": "Opslaan",
"common.search": "Zoeken",
"common.select": "Selecteren",
"common.size": "Grootte",
"common.status": "Status",
"common.success": "Succes",
"common.type": "Type",
"common.updated": "Bijgewerkt",
"common.upload": "Uploaden",
"common.view": "Bekijken",
"common.warning": "Waarschuwing",
"common.yes": "Ja",
"cookie.accept": "Begrepen",
"cookie.notice": "DocuElevate gebruikt alleen essentiële sessiecookies die nodig zijn voor authenticatie en werking van de service. Er worden geen tracking- of analysecookies gebruikt.",
"cookie.notice_label": "Cookiemelding",
"cookie.policy_link": "Cookiebeleid",
"cookie.privacy_link": "Privacyverklaring",
"cookie.accept": "Begrepen",
"cookie.notice_label": "Cookiemelding",
"common.save": "Opslaan",
"common.cancel": "Annuleren",
"common.delete": "Verwijderen",
"common.edit": "Bewerken",
"common.close": "Sluiten",
"common.confirm": "Bevestigen",
"common.back": "Terug",
"common.next": "Volgende",
"common.loading": "Laden...",
"common.error": "Fout",
"common.success": "Succes",
"common.warning": "Waarschuwing",
"common.info": "Info",
"common.yes": "Ja",
"common.no": "Nee",
"common.search": "Zoeken",
"common.filter": "Filteren",
"common.reset": "Herstellen",
"common.refresh": "Vernieuwen",
"common.download": "Downloaden",
"common.actions": "Acties",
"common.details": "Details",
"common.name": "Naam",
"common.description": "Beschrijving",
"common.type": "Type",
"common.status": "Status",
"common.date": "Datum",
"common.size": "Grootte",
"common.created": "Aangemaakt",
"common.updated": "Bijgewerkt",
"common.enabled": "Ingeschakeld",
"common.disabled": "Uitgeschakeld",
"common.active": "Actief",
"common.inactive": "Inactief",
"common.all": "Alles",
"common.none": "Geen",
"common.select": "Selecteren",
"common.upload": "Uploaden",
"common.processing": "Verwerken",
"common.completed": "Voltooid",
"common.failed": "Mislukt",
"common.pending": "In afwachting",
"common.retry": "Opnieuw proberen",
"common.view": "Bekijken",
"common.copy": "Kopiëren",
"common.copied": "Gekopieerd!",
"language.selector": "Taal",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Taal gewijzigd naar {language}",
"dashboard.active_integrations": "Actieve integraties",
"dashboard.files_this_month": "Bestanden deze maand",
"dashboard.files_today": "Bestanden vandaag",
"dashboard.ocr_processed": "OCR verwerkt",
"dashboard.quick_actions": "Snelle acties",
"dashboard.recent_activity": "Recente activiteit",
"dashboard.storage_targets": "Opslagdoelen",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Totaal bestanden",
"dashboard.files_today": "Bestanden vandaag",
"dashboard.files_this_month": "Bestanden deze maand",
"dashboard.ocr_processed": "OCR verwerkt",
"dashboard.active_integrations": "Actieve integraties",
"dashboard.storage_targets": "Opslagdoelen",
"dashboard.recent_activity": "Recente activiteit",
"dashboard.quick_actions": "Snelle acties",
"dashboard.welcome": "Welkom bij DocuElevate",
"upload.title": "Document uploaden",
"upload.drag_drop": "Sleep bestanden hierheen of klik om te bladeren",
"upload.select_file": "Bestand selecteren",
"upload.uploading": "Uploaden...",
"upload.success": "Bestand succesvol geüpload",
"upload.error": "Upload mislukt",
"upload.max_size": "Maximale bestandsgrootte: {size}",
"files.title": "Bestanden",
"files.no_files": "Geen bestanden gevonden",
"files.filename": "Bestandsnaam",
"files.document_title": "Documenttitel",
"files.uploaded": "Geüpload",
"files.file_size": "Bestandsgrootte",
"files.ocr_status": "OCR-status",
"files.tags": "Tags",
"search.title": "Documenten zoeken",
"search.placeholder": "Zoeken op naam, inhoud, tags...",
"search.no_results": "Geen resultaten gevonden",
"search.results_count": "{count} resultaten gevonden",
"settings.title": "Instellingen",
"settings.save_success": "Instelling succesvol opgeslagen",
"settings.save_error": "Instelling opslaan mislukt",
"settings.reset_confirm": "Weet u zeker dat u deze instelling wilt herstellen?",
"integrations.title": "Integraties",
"integrations.connect": "Verbinden",
"integrations.disconnect": "Verbreken",
"integrations.connected": "Verbonden",
"integrations.not_connected": "Niet verbonden",
"integrations.configure": "Configureren",
"pipelines.title": "Verwerkingspipelines",
"pipelines.create": "Pipeline maken",
"pipelines.edit": "Pipeline bewerken",
"help.title": "Helpcentrum",
"help.getting_started": "Aan de slag",
"help.faq": "Veelgestelde vragen",
"help.documentation": "Documentatie",
"help.support": "Ondersteuning",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Verboden",
"error.forbidden_message": "U heeft geen toestemming om deze pagina te openen.",
"error.not_found": "Pagina niet gevonden",
"error.not_found_message": "De pagina die u zoekt bestaat niet.",
"error.server_error": "Interne serverfout",
"error.server_error_message": "Er is iets misgegaan. Probeer het later opnieuw.",
"error.unauthorized": "Niet geautoriseerd",
"error.unauthorized_message": "U moet inloggen om deze pagina te openen.",
"error.forbidden": "Verboden",
"error.forbidden_message": "U heeft geen toestemming om deze pagina te openen.",
"notifications.title": "Meldingen",
"notifications.mark_read": "Markeren als gelezen",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Documenttitel",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Bestandsgrootte",
"files.filename": "Bestandsnaam",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Geen bestanden gevonden",
"files.ocr_status": "OCR-status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Bestanden",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Geüpload",
"footer.attributions": "Attributies",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Colofon",
"footer.license": "Licentie",
"footer.navigation": "Voettekstnavigatie",
"footer.privacy": "Privacy",
"footer.terms": "Voorwaarden",
"footer.version": "Versie {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentatie",
"help.faq": "Veelgestelde vragen",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Aan de slag",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Ondersteuning",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Helpcentrum",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configureren",
"integrations.connect": "Verbinden",
"integrations.connected": "Verbonden",
"integrations.disconnect": "Verbreken",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Niet verbonden",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integraties",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Taal gewijzigd naar {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Taal",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "Over ons",
"nav.admin": "Admin",
"nav.admin_actions": "Admin-acties",
"nav.admin_menu": "Admin-menu",
"nav.api_docs": "API-documentatie",
"nav.backup_restore": "Back-up en herstel",
"nav.credentials": "Referenties",
"nav.dark_mode": "Donkere modus",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Ontwikkelaarsdocumentatie",
"nav.duplicates": "Duplicaten",
"nav.file_manager": "Bestandsbeheer",
"nav.files": "Bestanden",
"nav.help": "Help",
"nav.help_center": "Helpcentrum",
"nav.integrations": "Integraties",
"nav.light_mode": "Lichte modus",
"nav.main_navigation": "Hoofdnavigatie",
"nav.notifications": "Meldingen",
"nav.open_main_menu": "Hoofdmenu openen",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Planontwerper",
"nav.pricing": "Prijzen",
"nav.queue_monitor": "Wachtrijmonitor",
"nav.scheduled_jobs": "Geplande taken",
"nav.search": "Zoeken",
"nav.settings": "Instellingen",
"nav.similarity": "Gelijkenis",
"nav.skip_to_content": "Ga naar hoofdinhoud",
"nav.status": "Status",
"nav.toggle_dark_mode": "Donkere modus schakelen",
"nav.toggle_nav": "Navigatiemenu schakelen",
"nav.upload": "Uploaden",
"nav.users": "Gebruikers",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Alles als gelezen markeren",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Markeren als gelezen",
"notifications.no_notifications": "Geen meldingen",
"notifications.unread_count": "{count} ongelezen meldingen"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Meldingen",
"notifications.unread_count": "{count} ongelezen meldingen",
"pipelines.active_label": "Active",
"pipelines.create": "Pipeline maken",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Pipeline bewerken",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Verwerkingspipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Geen resultaten gevonden",
"search.page_title": "Search Documents",
"search.placeholder": "Zoeken op naam, inhoud, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} resultaten gevonden",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Documenten zoeken",
"settings.reset_confirm": "Weet u zeker dat u deze instelling wilt herstellen?",
"settings.save_error": "Instelling opslaan mislukt",
"settings.save_success": "Instelling succesvol opgeslagen",
"settings.title": "Instellingen",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Sleep bestanden hierheen of klik om te bladeren",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload mislukt",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximale bestandsgrootte: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Bestand selecteren",
"upload.success": "Bestand succesvol geüpload",
"upload.title": "Document uploaden",
"upload.uploading": "Uploaden...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Pulpit",
"nav.upload": "Prześlij",
"nav.files": "Pliki",
"nav.search": "Szukaj",
"nav.pipelines": "Potoki",
"nav.integrations": "Integracje",
"nav.help": "Pomoc",
"nav.notifications": "Powiadomienia",
"nav.pricing": "Cennik",
"nav.about": "O nas",
"nav.admin": "Admin",
"nav.settings": "Ustawienia",
"nav.users": "Użytkownicy",
"nav.plan_designer": "Projektant planów",
"nav.credentials": "Poświadczenia",
"nav.file_manager": "Menedżer plików",
"nav.duplicates": "Duplikaty",
"nav.similarity": "Podobieństwo",
"nav.queue_monitor": "Monitor kolejki",
"nav.scheduled_jobs": "Zaplanowane zadania",
"nav.backup_restore": "Kopia zapasowa i przywracanie",
"nav.status": "Status",
"nav.api_docs": "Dokumentacja API",
"nav.developer_docs": "Dokumentacja dla programistów",
"nav.dark_mode": "Tryb ciemny",
"nav.light_mode": "Tryb jasny",
"nav.toggle_dark_mode": "Przełącz tryb ciemny",
"nav.toggle_nav": "Przełącz menu nawigacji",
"nav.open_main_menu": "Otwórz menu główne",
"nav.skip_to_content": "Przejdź do treści głównej",
"nav.main_navigation": "Nawigacja główna",
"nav.admin_menu": "Menu administratora",
"nav.admin_actions": "Akcje administratora",
"nav.help_center": "Centrum pomocy",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Zaloguj się",
"auth.login_title": "Log In",
"auth.logout": "Wyloguj się",
"auth.signup": "Zarejestruj się",
"auth.my_account": "Moje konto",
"auth.password_label": "Password",
"auth.profile": "Profil",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Prywatność",
"footer.imprint": "Impressum",
"footer.terms": "Regulamin",
"footer.cookies": "Cookies",
"footer.license": "Licencja",
"footer.attributions": "Atrybuty",
"footer.version": "Wersja {version}",
"footer.navigation": "Nawigacja stopki",
"auth.remember_me": "Remember me",
"auth.signup": "Zarejestruj się",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Akcje",
"common.active": "Aktywny",
"common.all": "Wszystko",
"common.back": "Wstecz",
"common.cancel": "Anuluj",
"common.close": "Zamknij",
"common.completed": "Zakończono",
"common.confirm": "Potwierdź",
"common.copied": "Skopiowano!",
"common.copy": "Kopiuj",
"common.created": "Utworzono",
"common.date": "Data",
"common.delete": "Usuń",
"common.description": "Opis",
"common.details": "Szczegóły",
"common.disabled": "Wyłączony",
"common.download": "Pobierz",
"common.edit": "Edytuj",
"common.enabled": "Włączony",
"common.error": "Błąd",
"common.failed": "Nieudane",
"common.filter": "Filtruj",
"common.inactive": "Nieaktywny",
"common.info": "Informacja",
"common.loading": "Ładowanie...",
"common.name": "Nazwa",
"common.next": "Dalej",
"common.no": "Nie",
"common.none": "Brak",
"common.pending": "Oczekujące",
"common.processing": "Przetwarzanie",
"common.refresh": "Odśwież",
"common.reset": "Resetuj",
"common.retry": "Ponów",
"common.save": "Zapisz",
"common.search": "Szukaj",
"common.select": "Wybierz",
"common.size": "Rozmiar",
"common.status": "Status",
"common.success": "Sukces",
"common.type": "Typ",
"common.updated": "Zaktualizowano",
"common.upload": "Prześlij",
"common.view": "Wyświetl",
"common.warning": "Ostrzeżenie",
"common.yes": "Tak",
"cookie.accept": "Rozumiem",
"cookie.notice": "DocuElevate używa wyłącznie niezbędnych plików cookie sesji wymaganych do uwierzytelniania i działania usługi. Nie są używane pliki cookie śledzące ani analityczne.",
"cookie.notice_label": "Informacja o plikach cookie",
"cookie.policy_link": "Polityka plików cookie",
"cookie.privacy_link": "Informacja o prywatności",
"cookie.accept": "Rozumiem",
"cookie.notice_label": "Informacja o plikach cookie",
"common.save": "Zapisz",
"common.cancel": "Anuluj",
"common.delete": "Usuń",
"common.edit": "Edytuj",
"common.close": "Zamknij",
"common.confirm": "Potwierdź",
"common.back": "Wstecz",
"common.next": "Dalej",
"common.loading": "Ładowanie...",
"common.error": "Błąd",
"common.success": "Sukces",
"common.warning": "Ostrzeżenie",
"common.info": "Informacja",
"common.yes": "Tak",
"common.no": "Nie",
"common.search": "Szukaj",
"common.filter": "Filtruj",
"common.reset": "Resetuj",
"common.refresh": "Odśwież",
"common.download": "Pobierz",
"common.actions": "Akcje",
"common.details": "Szczegóły",
"common.name": "Nazwa",
"common.description": "Opis",
"common.type": "Typ",
"common.status": "Status",
"common.date": "Data",
"common.size": "Rozmiar",
"common.created": "Utworzono",
"common.updated": "Zaktualizowano",
"common.enabled": "Włączony",
"common.disabled": "Wyłączony",
"common.active": "Aktywny",
"common.inactive": "Nieaktywny",
"common.all": "Wszystko",
"common.none": "Brak",
"common.select": "Wybierz",
"common.upload": "Prześlij",
"common.processing": "Przetwarzanie",
"common.completed": "Zakończono",
"common.failed": "Nieudane",
"common.pending": "Oczekujące",
"common.retry": "Ponów",
"common.view": "Wyświetl",
"common.copy": "Kopiuj",
"common.copied": "Skopiowano!",
"language.selector": "Język",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Język zmieniony na {language}",
"dashboard.active_integrations": "Aktywne integracje",
"dashboard.files_this_month": "Pliki w tym miesiącu",
"dashboard.files_today": "Pliki dzisiaj",
"dashboard.ocr_processed": "OCR przetworzone",
"dashboard.quick_actions": "Szybkie akcje",
"dashboard.recent_activity": "Ostatnia aktywność",
"dashboard.storage_targets": "Cele przechowywania",
"dashboard.title": "Pulpit",
"dashboard.total_files": "Pliki ogółem",
"dashboard.files_today": "Pliki dzisiaj",
"dashboard.files_this_month": "Pliki w tym miesiącu",
"dashboard.ocr_processed": "OCR przetworzone",
"dashboard.active_integrations": "Aktywne integracje",
"dashboard.storage_targets": "Cele przechowywania",
"dashboard.recent_activity": "Ostatnia aktywność",
"dashboard.quick_actions": "Szybkie akcje",
"dashboard.welcome": "Witamy w DocuElevate",
"upload.title": "Prześlij dokument",
"upload.drag_drop": "Przeciągnij pliki tutaj lub kliknij, aby przeglądać",
"upload.select_file": "Wybierz plik",
"upload.uploading": "Przesyłanie...",
"upload.success": "Plik przesłany pomyślnie",
"upload.error": "Przesyłanie nie powiodło się",
"upload.max_size": "Maksymalny rozmiar pliku: {size}",
"files.title": "Pliki",
"files.no_files": "Nie znaleziono plików",
"files.filename": "Nazwa pliku",
"files.document_title": "Tytuł dokumentu",
"files.uploaded": "Przesłano",
"files.file_size": "Rozmiar pliku",
"files.ocr_status": "Status OCR",
"files.tags": "Tagi",
"search.title": "Szukaj dokumentów",
"search.placeholder": "Szukaj wg nazwy, treści, tagów...",
"search.no_results": "Nie znaleziono wyników",
"search.results_count": "Znaleziono {count} wyników",
"settings.title": "Ustawienia",
"settings.save_success": "Ustawienie zapisane pomyślnie",
"settings.save_error": "Nie udało się zapisać ustawienia",
"settings.reset_confirm": "Czy na pewno chcesz zresetować to ustawienie?",
"integrations.title": "Integracje",
"integrations.connect": "Połącz",
"integrations.disconnect": "Rozłącz",
"integrations.connected": "Połączono",
"integrations.not_connected": "Nie połączono",
"integrations.configure": "Konfiguruj",
"pipelines.title": "Potoki przetwarzania",
"pipelines.create": "Utwórz potok",
"pipelines.edit": "Edytuj potok",
"help.title": "Centrum pomocy",
"help.getting_started": "Pierwsze kroki",
"help.faq": "Często zadawane pytania",
"help.documentation": "Dokumentacja",
"help.support": "Wsparcie",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Zabroniono",
"error.forbidden_message": "Nie masz uprawnień do dostępu do tej strony.",
"error.not_found": "Nie znaleziono strony",
"error.not_found_message": "Szukana strona nie istnieje.",
"error.server_error": "Wewnętrzny błąd serwera",
"error.server_error_message": "Coś poszło nie tak. Spróbuj ponownie później.",
"error.unauthorized": "Brak autoryzacji",
"error.unauthorized_message": "Musisz się zalogować, aby uzyskać dostęp do tej strony.",
"error.forbidden": "Zabroniono",
"error.forbidden_message": "Nie masz uprawnień do dostępu do tej strony.",
"notifications.title": "Powiadomienia",
"notifications.mark_read": "Oznacz jako przeczytane",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Tytuł dokumentu",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Rozmiar pliku",
"files.filename": "Nazwa pliku",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Nie znaleziono plików",
"files.ocr_status": "Status OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tagi",
"files.title": "Pliki",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Przesłano",
"footer.attributions": "Atrybuty",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Impressum",
"footer.license": "Licencja",
"footer.navigation": "Nawigacja stopki",
"footer.privacy": "Prywatność",
"footer.terms": "Regulamin",
"footer.version": "Wersja {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Dokumentacja",
"help.faq": "Często zadawane pytania",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Pierwsze kroki",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Wsparcie",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Centrum pomocy",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Konfiguruj",
"integrations.connect": "Połącz",
"integrations.connected": "Połączono",
"integrations.disconnect": "Rozłącz",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Nie połączono",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integracje",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Język zmieniony na {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Język",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "O nas",
"nav.admin": "Admin",
"nav.admin_actions": "Akcje administratora",
"nav.admin_menu": "Menu administratora",
"nav.api_docs": "Dokumentacja API",
"nav.backup_restore": "Kopia zapasowa i przywracanie",
"nav.credentials": "Poświadczenia",
"nav.dark_mode": "Tryb ciemny",
"nav.dashboard": "Pulpit",
"nav.developer_docs": "Dokumentacja dla programistów",
"nav.duplicates": "Duplikaty",
"nav.file_manager": "Menedżer plików",
"nav.files": "Pliki",
"nav.help": "Pomoc",
"nav.help_center": "Centrum pomocy",
"nav.integrations": "Integracje",
"nav.light_mode": "Tryb jasny",
"nav.main_navigation": "Nawigacja główna",
"nav.notifications": "Powiadomienia",
"nav.open_main_menu": "Otwórz menu główne",
"nav.pipelines": "Potoki",
"nav.plan_designer": "Projektant planów",
"nav.pricing": "Cennik",
"nav.queue_monitor": "Monitor kolejki",
"nav.scheduled_jobs": "Zaplanowane zadania",
"nav.search": "Szukaj",
"nav.settings": "Ustawienia",
"nav.similarity": "Podobieństwo",
"nav.skip_to_content": "Przejdź do treści głównej",
"nav.status": "Status",
"nav.toggle_dark_mode": "Przełącz tryb ciemny",
"nav.toggle_nav": "Przełącz menu nawigacji",
"nav.upload": "Prześlij",
"nav.users": "Użytkownicy",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Oznacz wszystkie jako przeczytane",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Oznacz jako przeczytane",
"notifications.no_notifications": "Brak powiadomień",
"notifications.unread_count": "{count} nieprzeczytanych powiadomień"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Powiadomienia",
"notifications.unread_count": "{count} nieprzeczytanych powiadomień",
"pipelines.active_label": "Active",
"pipelines.create": "Utwórz potok",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edytuj potok",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Potoki przetwarzania",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Nie znaleziono wyników",
"search.page_title": "Search Documents",
"search.placeholder": "Szukaj wg nazwy, treści, tagów...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "Znaleziono {count} wyników",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Szukaj dokumentów",
"settings.reset_confirm": "Czy na pewno chcesz zresetować to ustawienie?",
"settings.save_error": "Nie udało się zapisać ustawienia",
"settings.save_success": "Ustawienie zapisane pomyślnie",
"settings.title": "Ustawienia",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Przeciągnij pliki tutaj lub kliknij, aby przeglądać",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Przesyłanie nie powiodło się",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maksymalny rozmiar pliku: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Wybierz plik",
"upload.success": "Plik przesłany pomyślnie",
"upload.title": "Prześlij dokument",
"upload.uploading": "Przesyłanie...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Painel",
"nav.upload": "Carregar",
"nav.files": "Ficheiros",
"nav.search": "Pesquisar",
"nav.pipelines": "Pipelines",
"nav.integrations": "Integrações",
"nav.help": "Ajuda",
"nav.notifications": "Notificações",
"nav.pricing": "Preços",
"nav.about": "Sobre",
"nav.admin": "Admin",
"nav.settings": "Definições",
"nav.users": "Utilizadores",
"nav.plan_designer": "Designer de planos",
"nav.credentials": "Credenciais",
"nav.file_manager": "Gestor de ficheiros",
"nav.duplicates": "Duplicados",
"nav.similarity": "Similaridade",
"nav.queue_monitor": "Monitor de fila",
"nav.scheduled_jobs": "Tarefas agendadas",
"nav.backup_restore": "Cópia de segurança e restauro",
"nav.status": "Estado",
"nav.api_docs": "Documentação API",
"nav.developer_docs": "Documentação para programadores",
"nav.dark_mode": "Modo escuro",
"nav.light_mode": "Modo claro",
"nav.toggle_dark_mode": "Alternar modo escuro",
"nav.toggle_nav": "Alternar menu de navegação",
"nav.open_main_menu": "Abrir menu principal",
"nav.skip_to_content": "Ir para o conteúdo principal",
"nav.main_navigation": "Navegação principal",
"nav.admin_menu": "Menu de administração",
"nav.admin_actions": "Ações de administração",
"nav.help_center": "Centro de ajuda",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Iniciar sessão",
"auth.login_title": "Log In",
"auth.logout": "Terminar sessão",
"auth.signup": "Registar",
"auth.my_account": "A minha conta",
"auth.password_label": "Password",
"auth.profile": "Perfil",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Privacidade",
"footer.imprint": "Aviso legal",
"footer.terms": "Termos",
"footer.cookies": "Cookies",
"footer.license": "Licença",
"footer.attributions": "Atribuições",
"footer.version": "Versão {version}",
"footer.navigation": "Navegação do rodapé",
"auth.remember_me": "Remember me",
"auth.signup": "Registar",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Ações",
"common.active": "Ativo",
"common.all": "Tudo",
"common.back": "Voltar",
"common.cancel": "Cancelar",
"common.close": "Fechar",
"common.completed": "Concluído",
"common.confirm": "Confirmar",
"common.copied": "Copiado!",
"common.copy": "Copiar",
"common.created": "Criado",
"common.date": "Data",
"common.delete": "Eliminar",
"common.description": "Descrição",
"common.details": "Detalhes",
"common.disabled": "Desativado",
"common.download": "Descarregar",
"common.edit": "Editar",
"common.enabled": "Ativado",
"common.error": "Erro",
"common.failed": "Falhado",
"common.filter": "Filtrar",
"common.inactive": "Inativo",
"common.info": "Informação",
"common.loading": "A carregar...",
"common.name": "Nome",
"common.next": "Seguinte",
"common.no": "Não",
"common.none": "Nenhum",
"common.pending": "Pendente",
"common.processing": "A processar",
"common.refresh": "Atualizar",
"common.reset": "Repor",
"common.retry": "Tentar novamente",
"common.save": "Guardar",
"common.search": "Pesquisar",
"common.select": "Selecionar",
"common.size": "Tamanho",
"common.status": "Estado",
"common.success": "Sucesso",
"common.type": "Tipo",
"common.updated": "Atualizado",
"common.upload": "Carregar",
"common.view": "Ver",
"common.warning": "Aviso",
"common.yes": "Sim",
"cookie.accept": "Entendido",
"cookie.notice": "O DocuElevate utiliza apenas cookies de sessão essenciais necessários para a autenticação e o funcionamento do serviço. Não são utilizados cookies de rastreamento ou analíticos.",
"cookie.notice_label": "Aviso de cookies",
"cookie.policy_link": "Política de cookies",
"cookie.privacy_link": "Aviso de privacidade",
"cookie.accept": "Entendido",
"cookie.notice_label": "Aviso de cookies",
"common.save": "Guardar",
"common.cancel": "Cancelar",
"common.delete": "Eliminar",
"common.edit": "Editar",
"common.close": "Fechar",
"common.confirm": "Confirmar",
"common.back": "Voltar",
"common.next": "Seguinte",
"common.loading": "A carregar...",
"common.error": "Erro",
"common.success": "Sucesso",
"common.warning": "Aviso",
"common.info": "Informação",
"common.yes": "Sim",
"common.no": "Não",
"common.search": "Pesquisar",
"common.filter": "Filtrar",
"common.reset": "Repor",
"common.refresh": "Atualizar",
"common.download": "Descarregar",
"common.actions": "Ações",
"common.details": "Detalhes",
"common.name": "Nome",
"common.description": "Descrição",
"common.type": "Tipo",
"common.status": "Estado",
"common.date": "Data",
"common.size": "Tamanho",
"common.created": "Criado",
"common.updated": "Atualizado",
"common.enabled": "Ativado",
"common.disabled": "Desativado",
"common.active": "Ativo",
"common.inactive": "Inativo",
"common.all": "Tudo",
"common.none": "Nenhum",
"common.select": "Selecionar",
"common.upload": "Carregar",
"common.processing": "A processar",
"common.completed": "Concluído",
"common.failed": "Falhado",
"common.pending": "Pendente",
"common.retry": "Tentar novamente",
"common.view": "Ver",
"common.copy": "Copiar",
"common.copied": "Copiado!",
"language.selector": "Idioma",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Idioma alterado para {language}",
"dashboard.active_integrations": "Integrações ativas",
"dashboard.files_this_month": "Ficheiros este mês",
"dashboard.files_today": "Ficheiros hoje",
"dashboard.ocr_processed": "OCR processados",
"dashboard.quick_actions": "Ações rápidas",
"dashboard.recent_activity": "Atividade recente",
"dashboard.storage_targets": "Destinos de armazenamento",
"dashboard.title": "Painel",
"dashboard.total_files": "Total de ficheiros",
"dashboard.files_today": "Ficheiros hoje",
"dashboard.files_this_month": "Ficheiros este mês",
"dashboard.ocr_processed": "OCR processados",
"dashboard.active_integrations": "Integrações ativas",
"dashboard.storage_targets": "Destinos de armazenamento",
"dashboard.recent_activity": "Atividade recente",
"dashboard.quick_actions": "Ações rápidas",
"dashboard.welcome": "Bem-vindo ao DocuElevate",
"upload.title": "Carregar documento",
"upload.drag_drop": "Arraste ficheiros para aqui ou clique para procurar",
"upload.select_file": "Selecionar ficheiro",
"upload.uploading": "A carregar...",
"upload.success": "Ficheiro carregado com sucesso",
"upload.error": "Falha ao carregar",
"upload.max_size": "Tamanho máximo do ficheiro: {size}",
"files.title": "Ficheiros",
"files.no_files": "Nenhum ficheiro encontrado",
"files.filename": "Nome do ficheiro",
"files.document_title": "Título do documento",
"files.uploaded": "Carregado",
"files.file_size": "Tamanho do ficheiro",
"files.ocr_status": "Estado OCR",
"files.tags": "Etiquetas",
"search.title": "Pesquisar documentos",
"search.placeholder": "Pesquisar por nome, conteúdo, etiquetas...",
"search.no_results": "Nenhum resultado encontrado",
"search.results_count": "{count} resultados encontrados",
"settings.title": "Definições",
"settings.save_success": "Definição guardada com sucesso",
"settings.save_error": "Falha ao guardar definição",
"settings.reset_confirm": "Tem a certeza de que pretende repor esta definição?",
"integrations.title": "Integrações",
"integrations.connect": "Ligar",
"integrations.disconnect": "Desligar",
"integrations.connected": "Ligado",
"integrations.not_connected": "Não ligado",
"integrations.configure": "Configurar",
"pipelines.title": "Pipelines de processamento",
"pipelines.create": "Criar pipeline",
"pipelines.edit": "Editar pipeline",
"help.title": "Centro de ajuda",
"help.getting_started": "Primeiros passos",
"help.faq": "Perguntas frequentes",
"help.documentation": "Documentação",
"help.support": "Suporte",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Proibido",
"error.forbidden_message": "Não tem permissão para aceder a esta página.",
"error.not_found": "Página não encontrada",
"error.not_found_message": "A página que procura não existe.",
"error.server_error": "Erro interno do servidor",
"error.server_error_message": "Algo correu mal. Tente novamente mais tarde.",
"error.unauthorized": "Não autorizado",
"error.unauthorized_message": "Precisa de iniciar sessão para aceder a esta página.",
"error.forbidden": "Proibido",
"error.forbidden_message": "Não tem permissão para aceder a esta página.",
"notifications.title": "Notificações",
"notifications.mark_read": "Marcar como lida",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Título do documento",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Tamanho do ficheiro",
"files.filename": "Nome do ficheiro",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Nenhum ficheiro encontrado",
"files.ocr_status": "Estado OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Etiquetas",
"files.title": "Ficheiros",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Carregado",
"footer.attributions": "Atribuições",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Aviso legal",
"footer.license": "Licença",
"footer.navigation": "Navegação do rodapé",
"footer.privacy": "Privacidade",
"footer.terms": "Termos",
"footer.version": "Versão {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentação",
"help.faq": "Perguntas frequentes",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Primeiros passos",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Suporte",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Centro de ajuda",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configurar",
"integrations.connect": "Ligar",
"integrations.connected": "Ligado",
"integrations.disconnect": "Desligar",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Não ligado",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrações",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Idioma alterado para {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Idioma",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "Sobre",
"nav.admin": "Admin",
"nav.admin_actions": "Ações de administração",
"nav.admin_menu": "Menu de administração",
"nav.api_docs": "Documentação API",
"nav.backup_restore": "Cópia de segurança e restauro",
"nav.credentials": "Credenciais",
"nav.dark_mode": "Modo escuro",
"nav.dashboard": "Painel",
"nav.developer_docs": "Documentação para programadores",
"nav.duplicates": "Duplicados",
"nav.file_manager": "Gestor de ficheiros",
"nav.files": "Ficheiros",
"nav.help": "Ajuda",
"nav.help_center": "Centro de ajuda",
"nav.integrations": "Integrações",
"nav.light_mode": "Modo claro",
"nav.main_navigation": "Navegação principal",
"nav.notifications": "Notificações",
"nav.open_main_menu": "Abrir menu principal",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Designer de planos",
"nav.pricing": "Preços",
"nav.queue_monitor": "Monitor de fila",
"nav.scheduled_jobs": "Tarefas agendadas",
"nav.search": "Pesquisar",
"nav.settings": "Definições",
"nav.similarity": "Similaridade",
"nav.skip_to_content": "Ir para o conteúdo principal",
"nav.status": "Estado",
"nav.toggle_dark_mode": "Alternar modo escuro",
"nav.toggle_nav": "Alternar menu de navegação",
"nav.upload": "Carregar",
"nav.users": "Utilizadores",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Marcar todas como lidas",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Marcar como lida",
"notifications.no_notifications": "Sem notificações",
"notifications.unread_count": "{count} notificações por ler"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notificações",
"notifications.unread_count": "{count} notificações por ler",
"pipelines.active_label": "Active",
"pipelines.create": "Criar pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Editar pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Pipelines de processamento",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Nenhum resultado encontrado",
"search.page_title": "Search Documents",
"search.placeholder": "Pesquisar por nome, conteúdo, etiquetas...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} resultados encontrados",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Pesquisar documentos",
"settings.reset_confirm": "Tem a certeza de que pretende repor esta definição?",
"settings.save_error": "Falha ao guardar definição",
"settings.save_success": "Definição guardada com sucesso",
"settings.title": "Definições",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Arraste ficheiros para aqui ou clique para procurar",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Falha ao carregar",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Tamanho máximo do ficheiro: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Selecionar ficheiro",
"upload.success": "Ficheiro carregado com sucesso",
"upload.title": "Carregar documento",
"upload.uploading": "A carregar...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Limba a fost schimbată în {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Română",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "Панель управления",
"nav.upload": "Загрузить",
"nav.files": "Файлы",
"nav.search": "Поиск",
"nav.pipelines": "Конвейеры",
"nav.integrations": "Интеграции",
"nav.help": "Помощь",
"nav.notifications": "Уведомления",
"nav.pricing": "Цены",
"nav.about": "О нас",
"nav.admin": "Админ",
"nav.settings": "Настройки",
"nav.users": "Пользователи",
"nav.plan_designer": "Конструктор планов",
"nav.credentials": "Учётные данные",
"nav.file_manager": "Менеджер файлов",
"nav.duplicates": "Дубликаты",
"nav.similarity": "Сходство",
"nav.queue_monitor": "Монитор очереди",
"nav.scheduled_jobs": "Запланированные задачи",
"nav.backup_restore": "Резервное копирование и восстановление",
"nav.status": "Статус",
"nav.api_docs": "Документация API",
"nav.developer_docs": "Документация для разработчиков",
"nav.dark_mode": "Тёмная тема",
"nav.light_mode": "Светлая тема",
"nav.toggle_dark_mode": "Переключить тёмную тему",
"nav.toggle_nav": "Переключить меню навигации",
"nav.open_main_menu": "Открыть главное меню",
"nav.skip_to_content": "Перейти к основному содержанию",
"nav.main_navigation": "Основная навигация",
"nav.admin_menu": "Меню администратора",
"nav.admin_actions": "Действия администратора",
"nav.help_center": "Центр помощи",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Войти",
"auth.login_title": "Log In",
"auth.logout": "Выйти",
"auth.signup": "Регистрация",
"auth.my_account": "Мой аккаунт",
"auth.password_label": "Password",
"auth.profile": "Профиль",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "Конфиденциальность",
"footer.imprint": "Выходные данные",
"footer.terms": "Условия",
"footer.cookies": "Файлы cookie",
"footer.license": "Лицензия",
"footer.attributions": "Атрибуции",
"footer.version": "Версия {version}",
"footer.navigation": "Навигация подвала",
"auth.remember_me": "Remember me",
"auth.signup": "Регистрация",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Действия",
"common.active": "Активно",
"common.all": "Все",
"common.back": "Назад",
"common.cancel": "Отмена",
"common.close": "Закрыть",
"common.completed": "Завершено",
"common.confirm": "Подтвердить",
"common.copied": "Скопировано!",
"common.copy": "Копировать",
"common.created": "Создано",
"common.date": "Дата",
"common.delete": "Удалить",
"common.description": "Описание",
"common.details": "Подробности",
"common.disabled": "Отключено",
"common.download": "Скачать",
"common.edit": "Редактировать",
"common.enabled": "Включено",
"common.error": "Ошибка",
"common.failed": "Ошибка",
"common.filter": "Фильтр",
"common.inactive": "Неактивно",
"common.info": "Информация",
"common.loading": "Загрузка...",
"common.name": "Название",
"common.next": "Далее",
"common.no": "Нет",
"common.none": "Нет",
"common.pending": "В ожидании",
"common.processing": "Обработка",
"common.refresh": "Обновить",
"common.reset": "Сбросить",
"common.retry": "Повторить",
"common.save": "Сохранить",
"common.search": "Поиск",
"common.select": "Выбрать",
"common.size": "Размер",
"common.status": "Статус",
"common.success": "Успешно",
"common.type": "Тип",
"common.updated": "Обновлено",
"common.upload": "Загрузить",
"common.view": "Просмотр",
"common.warning": "Предупреждение",
"common.yes": "Да",
"cookie.accept": "Понятно",
"cookie.notice": "DocuElevate использует только необходимые сессионные файлы cookie для аутентификации и работы сервиса. Файлы cookie для отслеживания и аналитики не используются.",
"cookie.notice_label": "Уведомление о файлах cookie",
"cookie.policy_link": "Политика файлов cookie",
"cookie.privacy_link": "Уведомление о конфиденциальности",
"cookie.accept": "Понятно",
"cookie.notice_label": "Уведомление о файлах cookie",
"common.save": "Сохранить",
"common.cancel": "Отмена",
"common.delete": "Удалить",
"common.edit": "Редактировать",
"common.close": "Закрыть",
"common.confirm": "Подтвердить",
"common.back": "Назад",
"common.next": "Далее",
"common.loading": "Загрузка...",
"common.error": "Ошибка",
"common.success": "Успешно",
"common.warning": "Предупреждение",
"common.info": "Информация",
"common.yes": "Да",
"common.no": "Нет",
"common.search": "Поиск",
"common.filter": "Фильтр",
"common.reset": "Сбросить",
"common.refresh": "Обновить",
"common.download": "Скачать",
"common.actions": "Действия",
"common.details": "Подробности",
"common.name": "Название",
"common.description": "Описание",
"common.type": "Тип",
"common.status": "Статус",
"common.date": "Дата",
"common.size": "Размер",
"common.created": "Создано",
"common.updated": "Обновлено",
"common.enabled": "Включено",
"common.disabled": "Отключено",
"common.active": "Активно",
"common.inactive": "Неактивно",
"common.all": "Все",
"common.none": "Нет",
"common.select": "Выбрать",
"common.upload": "Загрузить",
"common.processing": "Обработка",
"common.completed": "Завершено",
"common.failed": "Ошибка",
"common.pending": "В ожидании",
"common.retry": "Повторить",
"common.view": "Просмотр",
"common.copy": "Копировать",
"common.copied": "Скопировано!",
"language.selector": "Язык",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "Язык изменён на {language}",
"dashboard.active_integrations": "Активные интеграции",
"dashboard.files_this_month": "Файлы за месяц",
"dashboard.files_today": "Файлы сегодня",
"dashboard.ocr_processed": "OCR обработано",
"dashboard.quick_actions": "Быстрые действия",
"dashboard.recent_activity": "Последняя активность",
"dashboard.storage_targets": "Хранилища",
"dashboard.title": "Панель управления",
"dashboard.total_files": "Всего файлов",
"dashboard.files_today": "Файлы сегодня",
"dashboard.files_this_month": "Файлы за месяц",
"dashboard.ocr_processed": "OCR обработано",
"dashboard.active_integrations": "Активные интеграции",
"dashboard.storage_targets": "Хранилища",
"dashboard.recent_activity": "Последняя активность",
"dashboard.quick_actions": "Быстрые действия",
"dashboard.welcome": "Добро пожаловать в DocuElevate",
"upload.title": "Загрузить документ",
"upload.drag_drop": "Перетащите файлы сюда или нажмите для выбора",
"upload.select_file": "Выбрать файл",
"upload.uploading": "Загрузка...",
"upload.success": "Файл успешно загружен",
"upload.error": "Ошибка загрузки",
"upload.max_size": "Максимальный размер файла: {size}",
"files.title": "Файлы",
"files.no_files": "Файлы не найдены",
"files.filename": "Имя файла",
"files.document_title": "Название документа",
"files.uploaded": "Загружено",
"files.file_size": "Размер файла",
"files.ocr_status": "Статус OCR",
"files.tags": "Теги",
"search.title": "Поиск документов",
"search.placeholder": "Поиск по имени, содержимому, тегам...",
"search.no_results": "Результаты не найдены",
"search.results_count": "Найдено результатов: {count}",
"settings.title": "Настройки",
"settings.save_success": "Настройка сохранена",
"settings.save_error": "Не удалось сохранить настройку",
"settings.reset_confirm": "Вы уверены, что хотите сбросить эту настройку?",
"integrations.title": "Интеграции",
"integrations.connect": "Подключить",
"integrations.disconnect": "Отключить",
"integrations.connected": "Подключено",
"integrations.not_connected": "Не подключено",
"integrations.configure": "Настроить",
"pipelines.title": "Конвейеры обработки",
"pipelines.create": "Создать конвейер",
"pipelines.edit": "Редактировать конвейер",
"help.title": "Центр помощи",
"help.getting_started": "Начало работы",
"help.faq": "Часто задаваемые вопросы",
"help.documentation": "Документация",
"help.support": "Поддержка",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Доступ запрещён",
"error.forbidden_message": "У вас нет прав для доступа к этой странице.",
"error.not_found": "Страница не найдена",
"error.not_found_message": "Запрашиваемая страница не существует.",
"error.server_error": "Внутренняя ошибка сервера",
"error.server_error_message": "Что-то пошло не так. Пожалуйста, попробуйте позже.",
"error.unauthorized": "Не авторизован",
"error.unauthorized_message": "Для доступа к этой странице необходимо войти в систему.",
"error.forbidden": "Доступ запрещён",
"error.forbidden_message": "У вас нет прав для доступа к этой странице.",
"notifications.title": "Уведомления",
"notifications.mark_read": "Отметить как прочитанное",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Название документа",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "Размер файла",
"files.filename": "Имя файла",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "Файлы не найдены",
"files.ocr_status": "Статус OCR",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Теги",
"files.title": "Файлы",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Загружено",
"footer.attributions": "Атрибуции",
"footer.cookies": "Файлы cookie",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Выходные данные",
"footer.license": "Лицензия",
"footer.navigation": "Навигация подвала",
"footer.privacy": "Конфиденциальность",
"footer.terms": "Условия",
"footer.version": "Версия {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Документация",
"help.faq": "Часто задаваемые вопросы",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Начало работы",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Поддержка",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Центр помощи",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Настроить",
"integrations.connect": "Подключить",
"integrations.connected": "Подключено",
"integrations.disconnect": "Отключить",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Не подключено",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Интеграции",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Язык изменён на {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Язык",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "О нас",
"nav.admin": "Админ",
"nav.admin_actions": "Действия администратора",
"nav.admin_menu": "Меню администратора",
"nav.api_docs": "Документация API",
"nav.backup_restore": "Резервное копирование и восстановление",
"nav.credentials": "Учётные данные",
"nav.dark_mode": "Тёмная тема",
"nav.dashboard": "Панель управления",
"nav.developer_docs": "Документация для разработчиков",
"nav.duplicates": "Дубликаты",
"nav.file_manager": "Менеджер файлов",
"nav.files": "Файлы",
"nav.help": "Помощь",
"nav.help_center": "Центр помощи",
"nav.integrations": "Интеграции",
"nav.light_mode": "Светлая тема",
"nav.main_navigation": "Основная навигация",
"nav.notifications": "Уведомления",
"nav.open_main_menu": "Открыть главное меню",
"nav.pipelines": "Конвейеры",
"nav.plan_designer": "Конструктор планов",
"nav.pricing": "Цены",
"nav.queue_monitor": "Монитор очереди",
"nav.scheduled_jobs": "Запланированные задачи",
"nav.search": "Поиск",
"nav.settings": "Настройки",
"nav.similarity": "Сходство",
"nav.skip_to_content": "Перейти к основному содержанию",
"nav.status": "Статус",
"nav.toggle_dark_mode": "Переключить тёмную тему",
"nav.toggle_nav": "Переключить меню навигации",
"nav.upload": "Загрузить",
"nav.users": "Пользователи",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Отметить все как прочитанные",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Отметить как прочитанное",
"notifications.no_notifications": "Нет уведомлений",
"notifications.unread_count": "{count} непрочитанных уведомлений"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Уведомления",
"notifications.unread_count": "{count} непрочитанных уведомлений",
"pipelines.active_label": "Active",
"pipelines.create": "Создать конвейер",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Редактировать конвейер",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Конвейеры обработки",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "Результаты не найдены",
"search.page_title": "Search Documents",
"search.placeholder": "Поиск по имени, содержимому, тегам...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "Найдено результатов: {count}",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Поиск документов",
"settings.reset_confirm": "Вы уверены, что хотите сбросить эту настройку?",
"settings.save_error": "Не удалось сохранить настройку",
"settings.save_success": "Настройка сохранена",
"settings.title": "Настройки",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Перетащите файлы сюда или нажмите для выбора",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Ошибка загрузки",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Максимальный размер файла: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Выбрать файл",
"upload.success": "Файл успешно загружен",
"upload.title": "Загрузить документ",
"upload.uploading": "Загрузка...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Jazyk bol zmenený na {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Slovenčina",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Jezik je bil spremenjen na {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Slovenščina",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Språket ändrades till {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Svenska",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Dil {language} olarak değiştirildi",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Türkçe",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+485
View File
@@ -0,0 +1,485 @@
{
"app.name": "DocuElevate",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "Log In",
"auth.login_title": "Log In",
"auth.logout": "Log Out",
"auth.my_account": "My Account",
"auth.password_label": "Password",
"auth.profile": "Profile",
"auth.remember_me": "Remember me",
"auth.signup": "Sign Up",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "Actions",
"common.active": "Active",
"common.all": "All",
"common.back": "Back",
"common.cancel": "Cancel",
"common.close": "Close",
"common.completed": "Completed",
"common.confirm": "Confirm",
"common.copied": "Copied!",
"common.copy": "Copy",
"common.created": "Created",
"common.date": "Date",
"common.delete": "Delete",
"common.description": "Description",
"common.details": "Details",
"common.disabled": "Disabled",
"common.download": "Download",
"common.edit": "Edit",
"common.enabled": "Enabled",
"common.error": "Error",
"common.failed": "Failed",
"common.filter": "Filter",
"common.inactive": "Inactive",
"common.info": "Info",
"common.loading": "Loading...",
"common.name": "Name",
"common.next": "Next",
"common.no": "No",
"common.none": "None",
"common.pending": "Pending",
"common.processing": "Processing",
"common.refresh": "Refresh",
"common.reset": "Reset",
"common.retry": "Retry",
"common.save": "Save",
"common.search": "Search",
"common.select": "Select",
"common.size": "Size",
"common.status": "Status",
"common.success": "Success",
"common.type": "Type",
"common.updated": "Updated",
"common.upload": "Upload",
"common.view": "View",
"common.warning": "Warning",
"common.yes": "Yes",
"cookie.accept": "Got it",
"cookie.notice": "DocuElevate uses only essential session cookies required for authentication and service operation. No tracking or analytics cookies are used.",
"cookie.notice_label": "Cookie notice",
"cookie.policy_link": "Cookie Policy",
"cookie.privacy_link": "Privacy Notice",
"dashboard.active_integrations": "Active Integrations",
"dashboard.files_this_month": "Files This Month",
"dashboard.files_today": "Files Today",
"dashboard.ocr_processed": "OCR Processed",
"dashboard.quick_actions": "Quick Actions",
"dashboard.recent_activity": "Recent Activity",
"dashboard.storage_targets": "Storage Targets",
"dashboard.title": "Dashboard",
"dashboard.total_files": "Total Files",
"dashboard.welcome": "Welcome to DocuElevate",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "Forbidden",
"error.forbidden_message": "You do not have permission to access this page.",
"error.not_found": "Page not found",
"error.not_found_message": "The page you are looking for does not exist.",
"error.server_error": "Internal Server Error",
"error.server_error_message": "Something went wrong. Please try again later.",
"error.unauthorized": "Unauthorized",
"error.unauthorized_message": "You need to log in to access this page.",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "Document Title",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "File Size",
"files.filename": "Filename",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "No files found",
"files.ocr_status": "OCR Status",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "Tags",
"files.title": "Files",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "Uploaded",
"footer.attributions": "Attributions",
"footer.cookies": "Cookies",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "Imprint",
"footer.license": "License",
"footer.navigation": "Footer navigation",
"footer.privacy": "Privacy",
"footer.terms": "Terms",
"footer.version": "Version {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "Documentation",
"help.faq": "Frequently Asked Questions",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "Getting Started",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "Support",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "Help Center",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "Configure",
"integrations.connect": "Connect",
"integrations.connected": "Connected",
"integrations.disconnect": "Disconnect",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "Not Connected",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "Integrations",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "Мову змінено на {language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "Українська",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "About",
"nav.admin": "Admin",
"nav.admin_actions": "Admin actions",
"nav.admin_menu": "Admin menu",
"nav.api_docs": "API Docs",
"nav.backup_restore": "Backup & Restore",
"nav.credentials": "Credentials",
"nav.dark_mode": "Dark Mode",
"nav.dashboard": "Dashboard",
"nav.developer_docs": "Developer Docs",
"nav.duplicates": "Duplicates",
"nav.file_manager": "File Manager",
"nav.files": "Files",
"nav.help": "Help",
"nav.help_center": "Help Center",
"nav.integrations": "Integrations",
"nav.light_mode": "Light Mode",
"nav.main_navigation": "Main navigation",
"nav.notifications": "Notifications",
"nav.open_main_menu": "Open main menu",
"nav.pipelines": "Pipelines",
"nav.plan_designer": "Plan Designer",
"nav.pricing": "Pricing",
"nav.queue_monitor": "Queue Monitor",
"nav.scheduled_jobs": "Scheduled Jobs",
"nav.search": "Search",
"nav.settings": "Settings",
"nav.similarity": "Similarity",
"nav.skip_to_content": "Skip to main content",
"nav.status": "Status",
"nav.toggle_dark_mode": "Toggle dark mode",
"nav.toggle_nav": "Toggle navigation menu",
"nav.upload": "Upload",
"nav.users": "Users",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "Mark All as Read",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "Mark as Read",
"notifications.no_notifications": "No notifications",
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "Notifications",
"notifications.unread_count": "{count} unread notifications",
"pipelines.active_label": "Active",
"pipelines.create": "Create Pipeline",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "Edit Pipeline",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "Processing Pipelines",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "No results found",
"search.page_title": "Search Documents",
"search.placeholder": "Search by filename, content, tags...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "{count} results found",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "Search Documents",
"settings.reset_confirm": "Are you sure you want to reset this setting?",
"settings.save_error": "Failed to save setting",
"settings.save_success": "Setting saved successfully",
"settings.title": "Settings",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "Drag & drop files here or click to browse",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "Upload failed",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "Maximum file size: {size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "Select File",
"upload.success": "File uploaded successfully",
"upload.title": "Upload Document",
"upload.uploading": "Uploading...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
+464 -169
View File
@@ -1,190 +1,485 @@
{
"app.name": "DocuElevate",
"nav.dashboard": "仪表盘",
"nav.upload": "上传",
"nav.files": "文件",
"nav.search": "搜索",
"nav.pipelines": "处理流程",
"nav.integrations": "集成",
"nav.help": "帮助",
"nav.notifications": "通知",
"nav.pricing": "价格",
"nav.about": "关于",
"nav.admin": "管理",
"nav.settings": "设置",
"nav.users": "用户",
"nav.plan_designer": "方案设计",
"nav.credentials": "凭据",
"nav.file_manager": "文件管理器",
"nav.duplicates": "重复文件",
"nav.similarity": "相似度",
"nav.queue_monitor": "队列监控",
"nav.scheduled_jobs": "计划任务",
"nav.backup_restore": "备份与恢复",
"nav.status": "状态",
"nav.api_docs": "API 文档",
"nav.developer_docs": "开发者文档",
"nav.dark_mode": "深色模式",
"nav.light_mode": "浅色模式",
"nav.toggle_dark_mode": "切换深色模式",
"nav.toggle_nav": "切换导航菜单",
"nav.open_main_menu": "打开主菜单",
"nav.skip_to_content": "跳至主要内容",
"nav.main_navigation": "主导航",
"nav.admin_menu": "管理菜单",
"nav.admin_actions": "管理操作",
"nav.help_center": "帮助中心",
"auth.confirm_password": "Confirm Password",
"auth.display_name_label": "Display Name",
"auth.email_label": "Email",
"auth.forgot_password": "Forgot Password?",
"auth.login": "登录",
"auth.login_title": "Log In",
"auth.logout": "退出",
"auth.signup": "注册",
"auth.my_account": "我的账户",
"auth.password_label": "Password",
"auth.profile": "个人资料",
"footer.copyright": "DocuElevate {year}",
"footer.privacy": "隐私",
"footer.imprint": "法律声明",
"footer.terms": "条款",
"footer.cookies": "Cookie",
"footer.license": "许可",
"footer.attributions": "致谢",
"footer.version": "版本 {version}",
"footer.navigation": "页脚导航",
"auth.remember_me": "Remember me",
"auth.signup": "注册",
"auth.signup_title": "Sign Up",
"auth.username_label": "Username",
"common.actions": "操作",
"common.active": "活跃",
"common.all": "全部",
"common.back": "返回",
"common.cancel": "取消",
"common.close": "关闭",
"common.completed": "已完成",
"common.confirm": "确认",
"common.copied": "已复制!",
"common.copy": "复制",
"common.created": "创建时间",
"common.date": "日期",
"common.delete": "删除",
"common.description": "描述",
"common.details": "详情",
"common.disabled": "已禁用",
"common.download": "下载",
"common.edit": "编辑",
"common.enabled": "已启用",
"common.error": "错误",
"common.failed": "失败",
"common.filter": "筛选",
"common.inactive": "不活跃",
"common.info": "信息",
"common.loading": "加载中...",
"common.name": "名称",
"common.next": "下一步",
"common.no": "否",
"common.none": "无",
"common.pending": "待处理",
"common.processing": "处理中",
"common.refresh": "刷新",
"common.reset": "重置",
"common.retry": "重试",
"common.save": "保存",
"common.search": "搜索",
"common.select": "选择",
"common.size": "大小",
"common.status": "状态",
"common.success": "成功",
"common.type": "类型",
"common.updated": "更新时间",
"common.upload": "上传",
"common.view": "查看",
"common.warning": "警告",
"common.yes": "是",
"cookie.accept": "我知道了",
"cookie.notice": "DocuElevate 仅使用身份验证和服务运行所需的基本会话 Cookie。不使用任何跟踪或分析 Cookie。",
"cookie.notice_label": "Cookie 通知",
"cookie.policy_link": "Cookie 政策",
"cookie.privacy_link": "隐私声明",
"cookie.accept": "我知道了",
"cookie.notice_label": "Cookie 通知",
"common.save": "保存",
"common.cancel": "取消",
"common.delete": "删除",
"common.edit": "编辑",
"common.close": "关闭",
"common.confirm": "确认",
"common.back": "返回",
"common.next": "下一步",
"common.loading": "加载中...",
"common.error": "错误",
"common.success": "成功",
"common.warning": "警告",
"common.info": "信息",
"common.yes": "是",
"common.no": "否",
"common.search": "搜索",
"common.filter": "筛选",
"common.reset": "重置",
"common.refresh": "刷新",
"common.download": "下载",
"common.actions": "操作",
"common.details": "详情",
"common.name": "名称",
"common.description": "描述",
"common.type": "类型",
"common.status": "状态",
"common.date": "日期",
"common.size": "大小",
"common.created": "创建时间",
"common.updated": "更新时间",
"common.enabled": "已启用",
"common.disabled": "已禁用",
"common.active": "活跃",
"common.inactive": "不活跃",
"common.all": "全部",
"common.none": "无",
"common.select": "选择",
"common.upload": "上传",
"common.processing": "处理中",
"common.completed": "已完成",
"common.failed": "失败",
"common.pending": "待处理",
"common.retry": "重试",
"common.view": "查看",
"common.copy": "复制",
"common.copied": "已复制!",
"language.selector": "语言",
"language.en": "English",
"language.de": "Deutsch",
"language.fr": "Français",
"language.es": "Español",
"language.it": "Italiano",
"language.pt": "Português",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.zh": "中文",
"language.ru": "Русский",
"language.changed": "语言已更改为{language}",
"dashboard.active_integrations": "活跃集成",
"dashboard.files_this_month": "本月文件",
"dashboard.files_today": "今日文件",
"dashboard.ocr_processed": "OCR 已处理",
"dashboard.quick_actions": "快捷操作",
"dashboard.recent_activity": "最近活动",
"dashboard.storage_targets": "存储目标",
"dashboard.title": "仪表盘",
"dashboard.total_files": "文件总数",
"dashboard.files_today": "今日文件",
"dashboard.files_this_month": "本月文件",
"dashboard.ocr_processed": "OCR 已处理",
"dashboard.active_integrations": "活跃集成",
"dashboard.storage_targets": "存储目标",
"dashboard.recent_activity": "最近活动",
"dashboard.quick_actions": "快捷操作",
"dashboard.welcome": "欢迎使用 DocuElevate",
"upload.title": "上传文档",
"upload.drag_drop": "将文件拖放到此处或点击浏览",
"upload.select_file": "选择文件",
"upload.uploading": "上传中...",
"upload.success": "文件上传成功",
"upload.error": "上传失败",
"upload.max_size": "最大文件大小:{size}",
"files.title": "文件",
"files.no_files": "未找到文件",
"files.filename": "文件名",
"files.document_title": "文档标题",
"files.uploaded": "已上传",
"files.file_size": "文件大小",
"files.ocr_status": "OCR 状态",
"files.tags": "标签",
"search.title": "搜索文档",
"search.placeholder": "按文件名、内容、标签搜索...",
"search.no_results": "未找到结果",
"search.results_count": "找到 {count} 个结果",
"settings.title": "设置",
"settings.save_success": "设置保存成功",
"settings.save_error": "设置保存失败",
"settings.reset_confirm": "确定要重置此设置吗?",
"integrations.title": "集成",
"integrations.connect": "连接",
"integrations.disconnect": "断开",
"integrations.connected": "已连接",
"integrations.not_connected": "未连接",
"integrations.configure": "配置",
"pipelines.title": "处理流程",
"pipelines.create": "创建流程",
"pipelines.edit": "编辑流程",
"help.title": "帮助中心",
"help.getting_started": "入门指南",
"help.faq": "常见问题",
"help.documentation": "文档",
"help.support": "支持",
"error.404_code": "404",
"error.404_heading": "Oops, we couldnt find that page!",
"error.404_home": "Return Home",
"error.404_message": "It seems DocuElevate has misplaced the document you were looking for. Dont worry weve got your back.",
"error.500_code": "500",
"error.500_description": "Our servers encountered a mishap and need a moment.",
"error.500_heading": "Oops! Something Went Wrong.",
"error.500_home": "Go Home",
"error.forbidden": "禁止访问",
"error.forbidden_message": "您没有权限访问此页面。",
"error.not_found": "页面未找到",
"error.not_found_message": "您要查找的页面不存在。",
"error.server_error": "服务器内部错误",
"error.server_error_message": "出了点问题,请稍后再试。",
"error.unauthorized": "未授权",
"error.unauthorized_message": "您需要登录才能访问此页面。",
"error.forbidden": "禁止访问",
"error.forbidden_message": "您没有权限访问此页面。",
"notifications.title": "通知",
"notifications.mark_read": "标记为已读",
"files.action_delete": "Delete file",
"files.action_details": "View details",
"files.action_preview": "Quick preview",
"files.bulk_clear_selection": "Clear Selection",
"files.bulk_cloud_ocr": "Re-run Cloud OCR",
"files.bulk_delete": "Delete Selected",
"files.bulk_download": "Download as ZIP",
"files.bulk_reprocess": "Reprocess Selected",
"files.delete_modal_cancel": "Cancel",
"files.delete_modal_confirm": "Delete",
"files.delete_modal_message": "Are you sure you want to delete this file?",
"files.delete_modal_title": "Confirm Deletion",
"files.document_title": "文档标题",
"files.drop_overlay_hint": "Supports PDF, Office docs, images, HTML, Markdown, and more",
"files.drop_overlay_title": "Drop files or folders anywhere to upload",
"files.file_size": "文件大小",
"files.filename": "文件名",
"files.filter_all_providers": "All Providers",
"files.filter_all_statuses": "All Statuses",
"files.filter_all_types": "All Types",
"files.filter_apply": "Apply Filters",
"files.filter_clear": "Clear",
"files.filter_date_from": "Date From",
"files.filter_date_to": "Date To",
"files.filter_mime_type": "MIME Type",
"files.filter_ocr_all": "All Files",
"files.filter_ocr_good": "Good quality",
"files.filter_ocr_poor": "Poor quality",
"files.filter_ocr_quality": "OCR Quality",
"files.filter_ocr_unchecked": "Not yet assessed",
"files.filter_search_placeholder": "Enter filename...",
"files.filter_storage_provider": "Storage Provider",
"files.filter_tags_placeholder": "e.g. invoice,amazon",
"files.fulltext_search_label": "Full-Text Search",
"files.fulltext_search_placeholder": "Search document content, sender, tags, type...",
"files.no_files": "未找到文件",
"files.ocr_status": "OCR 状态",
"files.page_title": "File Records",
"files.pagination_first": "First",
"files.pagination_last": "Last",
"files.pagination_next": "Next",
"files.pagination_previous": "Previous",
"files.preview_modal_close": "Close preview",
"files.preview_modal_title": "Preview",
"files.queue_banner_link": "View Queue",
"files.saved_searches_empty": "No saved searches yet",
"files.saved_searches_error": "Could not load saved searches",
"files.saved_searches_label": "Saved Searches",
"files.saved_searches_save": "Save Current",
"files.search_results_empty": "No results found.",
"files.search_results_title": "Search Results",
"files.table_actions": "Actions",
"files.table_created_at": "Created At",
"files.table_empty": "No files found",
"files.table_id": "ID",
"files.table_mime_type": "MIME Type",
"files.table_original_filename": "Original Filename",
"files.table_select_all": "Select all files on this page",
"files.tags": "标签",
"files.title": "文件",
"files.upload_modal_header": "Uploading Files",
"files.uploaded": "已上传",
"footer.attributions": "致谢",
"footer.cookies": "Cookie",
"footer.copyright": "DocuElevate {year}",
"footer.imprint": "法律声明",
"footer.license": "许可",
"footer.navigation": "页脚导航",
"footer.privacy": "隐私",
"footer.terms": "条款",
"footer.version": "版本 {version}",
"help.destinations_dropbox": "Dropbox",
"help.destinations_dropbox_desc": "OAuth-linked. Files land in your chosen folder.",
"help.destinations_email": "Email Forwarding",
"help.destinations_email_desc": "Processed files sent as SMTP attachments.",
"help.destinations_google_drive": "Google Drive",
"help.destinations_google_drive_desc": "Service account or OAuth. Supports shared drives.",
"help.destinations_heading": "Destinations Where Documents Go",
"help.destinations_nextcloud": "Nextcloud / WebDAV",
"help.destinations_nextcloud_desc": "Self-hosted cloud storage via WebDAV.",
"help.destinations_onedrive": "OneDrive",
"help.destinations_onedrive_desc": "Microsoft Graph API integration.",
"help.destinations_paperless": "Paperless-ngx",
"help.destinations_paperless_desc": "Push documents straight into Paperless for archival.",
"help.destinations_s3": "Amazon S3",
"help.destinations_s3_desc": "Any S3-compatible bucket (AWS, MinIO, Wasabi).",
"help.destinations_sftp": "SFTP / FTP",
"help.destinations_sftp_desc": "Secure file transfer to any server.",
"help.destinations_webhook": "Webhook",
"help.destinations_webhook_desc": "POST metadata to any external endpoint.",
"help.documentation": "文档",
"help.faq": "常见问题",
"help.faq_1_a": "Navigate to the Upload page, drag-and-drop your files or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.faq_1_q": "How do I upload documents?",
"help.faq_2_a": "PDF, JPEG, PNG, TIFF, BMP, GIF, DOCX, XLSX, PPTX, ODT, ODS, TXT, RTF, and HTML. Non-PDF files are automatically converted to PDF before processing.",
"help.faq_2_q": "Which file formats are supported?",
"help.faq_3_a": "Yes. Go to Email Ingestion, add an IMAP account, and DocuElevate will poll for new messages and process attachments automatically.",
"help.faq_3_q": "Can I ingest documents from email?",
"help.faq_4_a": "Pipelines let you chain processing steps OCR, AI extraction, format conversion and route the result to one or more destinations. Create and manage them from the Pipelines page.",
"help.faq_4_q": "How do processing pipelines work?",
"help.faq_5_a": "DocuElevate encrypts credentials at rest, communicates over TLS, and never stores your documents longer than necessary. See the Privacy Notice for full details.",
"help.faq_5_q": "Is my data secure?",
"help.faq_heading": "Frequently Asked Questions",
"help.getting_started": "入门指南",
"help.heading": "Help Center",
"help.page_title": "Help Center",
"help.quickstart_heading": "Quick Start",
"help.quickstart_storage": "Connect Storage",
"help.quickstart_storage_desc": "Head to Settings and link your cloud accounts. Processed documents are automatically routed to every destination you configure.",
"help.quickstart_upload": "Upload Documents",
"help.quickstart_upload_desc": "Drag & drop files onto the Upload page or click Choose File. DocuElevate converts images and office documents to PDF, runs OCR, and extracts metadata automatically.",
"help.quickstart_workflows": "Automate Workflows",
"help.quickstart_workflows_desc": "Create Pipelines to define multi-step processing and routing rules. Combine OCR, AI extraction, format conversion, and delivery in a single flow.",
"help.sources_email_ingestion": "Email Ingestion (IMAP)",
"help.sources_email_ingestion_desc": "Forward documents to a dedicated mailbox. Under Email Ingestion, add one or more IMAP accounts. DocuElevate polls for new messages and processes attachments automatically.",
"help.sources_heading": "Sources Getting Documents In",
"help.sources_rest_api": "REST API",
"help.sources_rest_api_desc": "Integrate programmatically by POST-ing files to /api/upload. Ideal for scripts, watched folders, scanners, or third-party tools like Zapier and n8n.",
"help.sources_scanner": "Scanner & Mobile",
"help.sources_scanner_desc": "Point network scanners at DocuElevate's upload endpoint or use any mobile scanning app that supports custom HTTP destinations.",
"help.sources_web_upload": "Web Upload",
"help.sources_web_upload_desc": "The fastest way to get started. Open the Upload page, drop one or more files, and DocuElevate takes care of the rest. Supported formats include PDF, JPEG, PNG, TIFF, DOCX, XLSX, and more.",
"help.subheading": "Everything you need to get the most out of DocuElevate. Browse topics below or search for what you need.",
"help.support": "支持",
"help.support_admin_message": "Contact your administrator for support information.",
"help.support_description": "Cant find what youre looking for? Our support team is here to help.",
"help.support_heading": "Contact Support",
"help.title": "帮助中心",
"help.workflows_creating": "Creating a Pipeline",
"help.workflows_definition": "A Pipeline is a series of processing steps that run automatically whenever a document is ingested. Each step can transform, enrich, or route the document.",
"help.workflows_heading": "Workflows & Pipelines",
"help.workflows_step_1": "Convert to PDF",
"help.workflows_step_1_create": "Go to Pipelines in the main menu.",
"help.workflows_step_2": "OCR extract text",
"help.workflows_step_2_create": "Click New Pipeline and give it a name.",
"help.workflows_step_3": "AI metadata extraction",
"help.workflows_step_3_create": "Add the processing steps you need.",
"help.workflows_step_4": "Deliver to one or more destinations",
"help.workflows_step_4_create": "Choose one or more delivery destinations.",
"help.workflows_step_5_create": "Save new documents will be processed through this pipeline automatically.",
"help.workflows_typical_steps": "Typical Steps",
"help.workflows_what_is": "What is a Pipeline?",
"index.badge_intelligent": "Intelligent Document Processing",
"index.capabilities_cloud": "Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud",
"index.capabilities_ingestion": "Email & URL-based document ingestion",
"index.capabilities_ocr": "OCR & metadata extraction with AI",
"index.capabilities_paperless": "Paperless-ngx integration for document management",
"index.capabilities_title": "Capabilities",
"index.capabilities_workflows": "Automated classification & routing workflows",
"index.cta_description": "Join teams already automating their document processing with DocuElevate.",
"index.cta_heading": "Ready to elevate your document workflow?",
"index.cta_pricing": "See pricing",
"index.cta_signup": "Create a free account",
"index.dashboard_subtitle": "Intelligent document processing & management",
"index.feature_ai": "AI Metadata Extraction",
"index.feature_ai_desc": "OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.",
"index.feature_cloud": "Multi-Cloud Storage",
"index.feature_cloud_desc": "Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.",
"index.feature_email": "Email & IMAP Ingestion",
"index.feature_email_desc": "Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.",
"index.feature_ocr": "OCR & Text Extraction",
"index.feature_ocr_desc": "Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.",
"index.feature_pipelines": "Custom Pipelines",
"index.feature_pipelines_desc": "Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.",
"index.feature_search": "Full-Text Search",
"index.feature_search_desc": "Instantly find any document by content, metadata, or tags across your entire archive.",
"index.feature_section_title": "Everything you need for smart document workflows",
"index.getting_started": "Getting Started",
"index.getting_started_1": "Configure integrations via System Status",
"index.getting_started_2": "Upload your first document",
"index.getting_started_3": "Review results in Files",
"index.getting_started_learn": "Learn more about DocuElevate",
"index.hero_description": "DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.",
"index.hero_heading": "From upload to insight — automatically.",
"index.hero_login": "Log In",
"index.hero_pricing": "View Plans & Pricing",
"index.hero_signup": "Get Started — its free",
"index.integrations_active": "Active integrations",
"index.integrations_storage": "Storage targets",
"index.integrations_title": "Integrations",
"index.integrations_view_status": "View system status",
"index.page_title_dashboard": "Dashboard",
"index.page_title_public": "Intelligent Document Processing",
"index.platform_overview": "Platform overview",
"index.quick_actions": "Quick Actions",
"index.quick_documents": "My Documents",
"index.quick_documents_desc": "Browse your processed files",
"index.quick_search": "Search",
"index.quick_search_desc": "Full-text search across documents",
"index.quick_subscription": "My Subscription",
"index.quick_subscription_desc": "View plan & usage details",
"index.quick_upload": "Upload Document",
"index.quick_upload_desc": "Process a new file",
"index.single_user_heading": "DocuElevate Dashboard",
"index.single_user_subtitle": "Intelligent document processing & management",
"index.stat_active_users": "Active users",
"index.stat_files_month": "Files this month",
"index.stat_files_today": "Files today",
"index.stat_total_files": "Total files",
"index.tier_plan": "Plan",
"index.tier_upgrade": "Upgrade",
"index.tier_view_details": "View full details",
"index.upgrade_daily_limits": "Higher daily & monthly limits",
"index.upgrade_description": "Unlock more documents, more destinations and priority support.",
"index.upgrade_destinations": "More storage destinations",
"index.upgrade_ocr_pages": "More OCR pages",
"index.upgrade_plan": "Upgrade your plan",
"index.upgrade_view_pricing": "View plans & pricing",
"index.usage_lifetime": "Lifetime files",
"index.usage_month": "Files this month",
"index.usage_my_usage": "My usage",
"index.usage_today": "Files today",
"index.usage_unlimited": "Unlimited",
"integrations.configure": "配置",
"integrations.connect": "连接",
"integrations.connected": "已连接",
"integrations.disconnect": "断开",
"integrations.empty_state": "No integrations configured",
"integrations.folder_label": "Folder",
"integrations.host_label": "Host",
"integrations.imap_settings": "IMAP Settings",
"integrations.not_connected": "未连接",
"integrations.page_title": "Integrations",
"integrations.password_label": "Password",
"integrations.port_label": "Port",
"integrations.title": "集成",
"integrations.username_label": "Username",
"language.bg": "Български",
"language.ca": "Català",
"language.changed": "语言已更改为{language}",
"language.cs": "Čeština",
"language.da": "Dansk",
"language.de": "Deutsch",
"language.el": "Ελληνικά",
"language.en": "English",
"language.es": "Español",
"language.et": "Eesti",
"language.fi": "Suomi",
"language.fr": "Français",
"language.ga": "Gaeilge",
"language.hr": "Hrvatski",
"language.hu": "Magyar",
"language.is": "Íslenska",
"language.it": "Italiano",
"language.lb": "Lëtzebuergesch",
"language.lt": "Lietuvių",
"language.lv": "Latviešu",
"language.nb": "Norsk",
"language.nl": "Nederlands",
"language.pl": "Polski",
"language.pt": "Português",
"language.ro": "Română",
"language.ru": "Русский",
"language.selector": "语言",
"language.sk": "Slovenčina",
"language.sl": "Slovenščina",
"language.sv": "Svenska",
"language.tr": "Türkçe",
"language.uk": "Українська",
"language.zh": "中文",
"nav.about": "关于",
"nav.admin": "管理",
"nav.admin_actions": "管理操作",
"nav.admin_menu": "管理菜单",
"nav.api_docs": "API 文档",
"nav.backup_restore": "备份与恢复",
"nav.credentials": "凭据",
"nav.dark_mode": "深色模式",
"nav.dashboard": "仪表盘",
"nav.developer_docs": "开发者文档",
"nav.duplicates": "重复文件",
"nav.file_manager": "文件管理器",
"nav.files": "文件",
"nav.help": "帮助",
"nav.help_center": "帮助中心",
"nav.integrations": "集成",
"nav.light_mode": "浅色模式",
"nav.main_navigation": "主导航",
"nav.notifications": "通知",
"nav.open_main_menu": "打开主菜单",
"nav.pipelines": "处理流程",
"nav.plan_designer": "方案设计",
"nav.pricing": "价格",
"nav.queue_monitor": "队列监控",
"nav.scheduled_jobs": "计划任务",
"nav.search": "搜索",
"nav.settings": "设置",
"nav.similarity": "相似度",
"nav.skip_to_content": "跳至主要内容",
"nav.status": "状态",
"nav.toggle_dark_mode": "切换深色模式",
"nav.toggle_nav": "切换导航菜单",
"nav.upload": "上传",
"nav.users": "用户",
"notifications.filter_all": "All",
"notifications.filter_read": "Read only",
"notifications.filter_unread": "Unread only",
"notifications.manage_desc": "Manage your notification inbox, targets, and event preferences",
"notifications.mark_all_read": "全部标记为已读",
"notifications.mark_all_read_btn": "Mark all read",
"notifications.mark_read": "标记为已读",
"notifications.no_notifications": "没有通知",
"notifications.unread_count": "{count} 条未读通知"
"notifications.page_title": "Notifications",
"notifications.tab_inbox": "Inbox",
"notifications.tab_settings": "Settings",
"notifications.title": "通知",
"notifications.unread_count": "{count} 条未读通知",
"pipelines.active_label": "Active",
"pipelines.create": "创建流程",
"pipelines.default_label": "Default",
"pipelines.description_label": "Description",
"pipelines.disabled_label": "Disabled",
"pipelines.edit": "编辑流程",
"pipelines.empty_state": "No pipelines yet",
"pipelines.enabled_label": "Enabled",
"pipelines.inactive_label": "Inactive",
"pipelines.page_title": "Processing Pipelines",
"pipelines.set_default": "Set as my default pipeline",
"pipelines.system_label": "System",
"pipelines.title": "处理流程",
"search.button": "Search",
"search.error_message": "Search is temporarily unavailable. Please try again in a moment.",
"search.filter_clear_button": "Clear Filters",
"search.filter_date_from": "Date From",
"search.filter_date_to": "Date To",
"search.filter_document_type": "Document Type",
"search.filter_document_type_placeholder": "e.g. Invoice",
"search.filter_language": "Language",
"search.filter_language_placeholder": "e.g. de",
"search.filter_sender": "Sender",
"search.filter_sender_placeholder": "e.g. ACME Corp",
"search.filter_tags_placeholder": "e.g. amazon",
"search.filter_text_quality": "Text Quality",
"search.filter_text_quality_all": "All",
"search.filter_text_quality_high": "High",
"search.filter_text_quality_low": "Low",
"search.filter_text_quality_medium": "Medium",
"search.filter_text_quality_no_text": "No text",
"search.heading": "Document Search",
"search.input_placeholder": "Search documents by content, sender, tags, type...",
"search.loading_indicator": "Searching…",
"search.no_results": "未找到结果",
"search.page_title": "Search Documents",
"search.placeholder": "按文件名、内容、标签搜索...",
"search.result_empty": "No documents found matching your query.",
"search.results_count": "找到 {count} 个结果",
"search.saved_button": "Save Current",
"search.saved_empty": "No saved searches yet",
"search.saved_error": "Could not load saved searches",
"search.saved_label": "Saved Searches",
"search.saved_loading": "Loading...",
"search.title": "搜索文档",
"settings.reset_confirm": "确定要重置此设置吗?",
"settings.save_error": "设置保存失败",
"settings.save_success": "设置保存成功",
"settings.title": "设置",
"status.app_version": "App Version",
"status.build_date": "Build Date",
"status.container_id": "Container ID",
"status.git_commit": "Git Commit",
"status.last_check": "Last Check",
"status.page_title": "System Status",
"status.setting_label": "Setting",
"status.value_label": "Value",
"upload.browse_button": "Browse Files",
"upload.button_processing": "Processing...",
"upload.camera_button": "Take Photo / Scan Document",
"upload.download_button": "Download and Process",
"upload.downloading": "Downloading file from URL...",
"upload.drag_drop": "将文件拖放到此处或点击浏览",
"upload.drop_hint_desktop": "Drag & drop files or folders here, or click to select files.",
"upload.drop_hint_mobile": "Tap to select files or use the camera button below.",
"upload.error": "上传失败",
"upload.error_invalid_url": "Invalid URL format",
"upload.error_url_required": "Please enter a URL",
"upload.file_size_hint": "Maximum size: 500 MB per file",
"upload.file_types": "Allowed types: PDF, Office documents (Word, Excel, PowerPoint, etc.), Images",
"upload.filename_description": "Leave empty to use filename from URL",
"upload.filename_label": "Filename (optional)",
"upload.filename_placeholder": "my-document.pdf",
"upload.max_size": "最大文件大小:{size}",
"upload.page_title": "Upload Files",
"upload.section_device": "Upload from Device",
"upload.section_url": "Upload from URL",
"upload.select_file": "选择文件",
"upload.success": "文件上传成功",
"upload.title": "上传文档",
"upload.uploading": "上传中...",
"upload.url_description": "Enter a direct link to a file (PDF, Office documents, or images)",
"upload.url_label": "File URL",
"upload.url_placeholder": "https://example.com/document.pdf"
}
@@ -17,12 +17,24 @@ depends_on: Union[str, None] = None
def upgrade() -> None:
"""Add preferred_language column to user_profiles table."""
op.add_column(
"user_profiles",
sa.Column("preferred_language", sa.String(10), nullable=True, server_default=None),
)
conn = op.get_bind()
inspector = sa.inspect(conn)
if "user_profiles" not in inspector.get_table_names():
return
existing_columns = {col["name"] for col in inspector.get_columns("user_profiles")}
if "preferred_language" not in existing_columns:
op.add_column(
"user_profiles",
sa.Column("preferred_language", sa.String(10), nullable=True, server_default=None),
)
def downgrade() -> None:
"""Remove preferred_language column from user_profiles table."""
op.drop_column("user_profiles", "preferred_language")
conn = op.get_bind()
inspector = sa.inspect(conn)
if "user_profiles" not in inspector.get_table_names():
return
existing_columns = {col["name"] for col in inspector.get_columns("user_profiles")}
if "preferred_language" in existing_columns:
op.drop_column("user_profiles", "preferred_language")
+35 -3
View File
@@ -326,11 +326,43 @@ class TestSupportedLanguages:
@pytest.mark.unit
def test_ten_languages_supported(self) -> None:
assert len(SUPPORTED_LANGUAGES) == 10
assert len(SUPPORTED_LANGUAGES) == 31
@pytest.mark.unit
def test_supported_codes_set(self) -> None:
expected = {"en", "de", "fr", "es", "it", "pt", "nl", "pl", "zh", "ru"}
expected = {
"en",
"de",
"fr",
"es",
"it",
"pt",
"nl",
"pl",
"zh",
"ru",
"nb",
"da",
"sv",
"fi",
"is",
"ga",
"lb",
"ca",
"cs",
"sk",
"hu",
"sl",
"hr",
"ro",
"bg",
"el",
"et",
"lv",
"lt",
"tr",
"uk",
}
assert SUPPORTED_LANGUAGE_CODES == expected
@pytest.mark.unit
@@ -353,7 +385,7 @@ class TestI18nAPI:
assert response.status_code == 200
data = response.json()
assert "languages" in data
assert len(data["languages"]) == 10
assert len(data["languages"]) == 31
assert data["default"] == "en"
# Verify each language has required fields
for lang in data["languages"]: