mirror of
https://github.com/rustfs/console.git
synced 2026-08-28 19:47:21 +08:00
feat: Add 7 new language packs (DE, ES, IT, JA, KO, PT-BR, RU) and refactor language switcher (#29)
* feat: 补充任务状态和操作相关的翻译键 - 添加小写版本的状态翻译键:waiting, in progress, success, failed, paused, canceled - 添加 Upload 翻译键 - 更新任务状态显示使用新的翻译键 - 统一翻译键命名规范 * feat: 为法语语言包补充任务状态和操作相关的翻译键 - 添加小写版本的状态翻译键:waiting, in progress, success, failed, paused, canceled - 添加 Upload 翻译键 - 修复 In Progress 参数名(deleting -> processing) - 更新 Success Status 和 Failed Status 翻译 * fix: 对齐所有语言包的翻译键 - 为法语语言包添加 Processing (with count) 键 - 为土耳其语语言包添加 success 和 Success Status 键 - 为中文和英文语言包添加 Success Status 键 - 确保所有语言包(中文、英文、土耳其语、法语)的键完全对齐 - 所有语言包现在都有 880 个键 * feat: 添加国际主流语言支持 新增语言包: - 日语 (ja-JP) - 日本語 - 韩语 (ko-KR) - 한국어 - 德语 (de-DE) - Deutsch - 西班牙语 (es-ES) - Español - 俄语 (ru-RU) - Русский - 葡萄牙语 (pt-BR) - Português - 意大利语 (it-IT) - Italiano 更新内容: - 更新 nuxt.config.ts 添加新语言配置 - 更新 language-switcher.vue 组件添加新语言选项 - 所有新语言包包含 880 个翻译键(目前使用英文作为占位符) 现在支持共 11 种语言:英语、中文、日语、韩语、德语、法语、西班牙语、葡萄牙语、意大利语、俄语、土耳其语 * fix: 暂时隐藏未翻译的语言选项 - 从语言选择器中移除尚未翻译的语言(日语、韩语、德语、西班牙语、葡萄牙语、意大利语、俄语) - 只保留已完整翻译的语言:英语、中文、法语、土耳其语 - 未翻译的语言配置已注释,待翻译完成后可重新启用 这些语言包文件已创建但内容为英文占位符,切换后会显示英文内容 * feat: 完成德语和日语语言包翻译 - 将德语文件 (de-DE.json) 中的所有英文值翻译为德语 - 将日语文件 (ja-JP.json) 中的所有英文值翻译为日语 - 技术术语(如 API、KMS、IAM、MQTT 等)保持英文或使用适当的本地化形式 - 遵循德语和日语的本地化习惯和语言环境 * feat: 完成意大利语、韩语、巴西葡萄牙语和俄语翻译 * feat: 完成西班牙语翻译 * refactor: remove duplicate language options in language-switcher - Generate options array dynamically from languageConfig - Eliminate redundant language definitions - Maintain single source of truth for language data * fix: input shadow
This commit is contained in:
@@ -65,6 +65,8 @@ Before committing any code changes, you MUST run and pass:
|
||||
- Follow conventional, action-oriented commit subjects (e.g. `feat: add bucket selector`).
|
||||
- Each pull request should include: a concise summary, linked issue or task, screenshots for UI work, and testing notes (`pnpm test:run`, `pnpm vue-tsc`, etc.).
|
||||
- Keep PRs scoped; large refactors should be coordinated in advance.
|
||||
- Commit message and PR title must be in English.
|
||||
- **⚠️ MANDATORY: PR descriptions MUST strictly follow the format specified in `.github/pull_request_template.md`**. All required sections must be filled out completely and accurately before submitting a PR.
|
||||
|
||||
## UI Theme Overrides
|
||||
|
||||
|
||||
@@ -25,22 +25,27 @@ const { locale, setLocale } = useI18n()
|
||||
const languageConfig = {
|
||||
en: { text: 'English', icon: 'ri:translate' },
|
||||
zh: { text: '中文', icon: 'ri:translate-2' },
|
||||
tr: { text: 'Türkçe', icon: 'ri:translate' },
|
||||
fr: { text: 'Français', icon: 'ri:translate' },
|
||||
tr: { text: 'Türkçe', icon: 'ri:translate' },
|
||||
ja: { text: '日本語', icon: 'ri:translate' },
|
||||
ko: { text: '한국어', icon: 'ri:translate' },
|
||||
de: { text: 'Deutsch', icon: 'ri:translate' },
|
||||
es: { text: 'Español', icon: 'ri:translate' },
|
||||
pt: { text: 'Português', icon: 'ri:translate' },
|
||||
it: { text: 'Italiano', icon: 'ri:translate' },
|
||||
ru: { text: 'Русский', icon: 'ri:translate' },
|
||||
} as const
|
||||
|
||||
const options = [
|
||||
{ label: 'English', key: 'en' },
|
||||
{ label: '中文', key: 'zh' },
|
||||
{ label: 'Türkçe', key: 'tr' },
|
||||
{ label: 'Français', key: 'fr' },
|
||||
]
|
||||
const options = Object.entries(languageConfig).map(([key, config]) => ({
|
||||
label: config.text,
|
||||
key,
|
||||
}))
|
||||
|
||||
const currentLanguage = computed(() => {
|
||||
return languageConfig[locale.value as keyof typeof languageConfig] || languageConfig.en
|
||||
})
|
||||
|
||||
const handleSelect = async (key: string) => {
|
||||
await setLocale(key as 'en' | 'zh' | 'tr' | 'fr')
|
||||
await setLocale(key as 'en' | 'zh' | 'fr' | 'tr' | 'ja' | 'ko' | 'de' | 'es' | 'pt' | 'it' | 'ru')
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -61,12 +61,8 @@ const handleEscape = (event: Event) => {
|
||||
|
||||
<template>
|
||||
<Dialog :open="modelValue" @update:open="handleUpdateOpen">
|
||||
<DialogContent
|
||||
:class="cn(sizeClassMap[size], props.class, contentClass)"
|
||||
@pointerDownOutside="handlePointerOutside"
|
||||
@interactOutside="handlePointerOutside"
|
||||
@escapeKeyDown="handleEscape"
|
||||
>
|
||||
<DialogContent :class="cn(sizeClassMap[size], props.class, contentClass)" @pointerDownOutside="handlePointerOutside" @interactOutside="handlePointerOutside"
|
||||
@escapeKeyDown="handleEscape">
|
||||
<DialogHeader v-if="title || description || $slots.header" class="text-left">
|
||||
<slot name="header">
|
||||
<DialogTitle v-if="title">{{ title }}</DialogTitle>
|
||||
@@ -74,7 +70,7 @@ const handleEscape = (event: Event) => {
|
||||
</slot>
|
||||
</DialogHeader>
|
||||
|
||||
<div class="max-h-[80vh] overflow-auto">
|
||||
<div class="max-h-[80vh]">
|
||||
<slot />
|
||||
</div>
|
||||
|
||||
|
||||
@@ -37,14 +37,14 @@ const subInfo = computed(() => props.task.subInfo)
|
||||
const statusText = computed(() => {
|
||||
const action = actionLabel.value
|
||||
const map: Record<string, string> = {
|
||||
pending: `${action} ${t('Waiting')}`,
|
||||
running: `${action} ${t('In Progress')}`,
|
||||
completed: `${action} ${t('Success Status')}`,
|
||||
failed: `${action} ${t('Failed Status')}`,
|
||||
paused: `${action} ${t('Paused')}`,
|
||||
canceled: `${action} ${t('Canceled')}`,
|
||||
pending: `${t(action)}${t('waiting')}`,
|
||||
running: `${t(action)}${t('in progress')}`,
|
||||
completed: `${t(action)}${t('success')}`,
|
||||
failed: `${t(action)}${t('failed')}`,
|
||||
paused: `${t(action)}${t('paused')}`,
|
||||
canceled: `${t(action)}${t('canceled')}`,
|
||||
}
|
||||
return map[props.task.status] ?? `${action} ${t('In Progress')}`
|
||||
return map[props.task.status] ?? `${t(action)}${t('in progress')}`
|
||||
})
|
||||
|
||||
const remove = () => store.removeTask(props.task.id)
|
||||
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(Konfigurationsdetails sind privat)",
|
||||
"(Configured)": "(Konfiguriert)",
|
||||
"API Base URL": "API-Basis-URL",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "Zugriffskontrolle",
|
||||
"Access Key": "Zugriffsschlüssel",
|
||||
"Access Key *": "Zugriffsschlüssel *",
|
||||
"Access Key is required": "Zugriffsschlüssel ist erforderlich",
|
||||
"Access Key length must be between 3 and 20 characters": "Die Länge des Zugriffsschlüssels muss zwischen 3 und 20 Zeichen liegen",
|
||||
"Access Keys": "Zugriffsschlüssel",
|
||||
"Access Policy": "Zugriffsrichtlinie",
|
||||
"Account": "Konto",
|
||||
"Action": "Aktion",
|
||||
"Actions": "Aktionen",
|
||||
"Active": "Aktiv",
|
||||
"Add": "Hinzufügen",
|
||||
"Add Access Key": "Zugriffsschlüssel hinzufügen",
|
||||
"Add Account": "Konto hinzufügen",
|
||||
"Add Event Destination": "Ereignisziel hinzufügen",
|
||||
"Add Event Subscription": "Ereignisabonnement hinzufügen",
|
||||
"Add Event Subscription to get started": "Ereignisabonnement hinzufügen, um zu beginnen",
|
||||
"Add Failed": "Hinzufügen fehlgeschlagen",
|
||||
"Add Lifecycle Rule": "Lebenszyklusregel hinzufügen",
|
||||
"Add Replication Rule": "Replikationsregel hinzufügen",
|
||||
"Add Site": "Standort hinzufügen",
|
||||
"Add Site Replication": "Standortreplikation hinzufügen",
|
||||
"Add Success": "Erfolgreich hinzugefügt",
|
||||
"Add Tag": "Tag hinzufügen",
|
||||
"Add Tier": "Tier hinzufügen",
|
||||
"Add User": "Benutzer hinzufügen",
|
||||
"Add User Group": "Benutzergruppe hinzufügen",
|
||||
"Add failed": "Hinzufügen fehlgeschlagen",
|
||||
"Add group members": "Gruppenmitglieder hinzufügen",
|
||||
"Add replication rules to sync objects across buckets.": "Replikationsregeln hinzufügen, um Objekte zwischen Buckets zu synchronisieren.",
|
||||
"Add success": "Erfolgreich hinzugefügt",
|
||||
"Add tiers to configure remote storage destinations.": "Tiers hinzufügen, um Remote-Speicherziele zu konfigurieren.",
|
||||
"Add to Group": "Zur Gruppe hinzufügen",
|
||||
"Add {type} Destination": "{type} Ziel hinzufügen",
|
||||
"Added successfully": "Erfolgreich hinzugefügt",
|
||||
"Adding to Upload Queue": "Zur Upload-Warteschlange hinzufügen",
|
||||
"Advanced Monitoring": "Erweiterte Überwachung",
|
||||
"Advanced Settings": "Erweiterte Einstellungen",
|
||||
"Algorithm": "Algorithmus",
|
||||
"Amazon Resource Name": "Amazon Resource Name",
|
||||
"Apache License": "Apache-Lizenz",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "AppRole-Rollen-ID von Vault",
|
||||
"AppRole Secret ID from Vault": "AppRole-Geheimnis-ID von Vault",
|
||||
"Are you sure you want to delete all selected keys?": "Sind Sie sicher, dass Sie alle ausgewählten Schlüssel löschen möchten?",
|
||||
"Are you sure you want to delete all selected user groups?": "Sind Sie sicher, dass Sie alle ausgewählten Benutzergruppen löschen möchten?",
|
||||
"Are you sure you want to delete all selected users?": "Sind Sie sicher, dass Sie alle ausgewählten Benutzer löschen möchten?",
|
||||
"Are you sure you want to delete the selected objects?": "Sind Sie sicher, dass Sie die ausgewählten Objekte löschen möchten?",
|
||||
"Are you sure you want to delete this bucket?": "Sind Sie sicher, dass Sie diesen Bucket löschen möchten?",
|
||||
"Are you sure you want to delete this destination?": "Sind Sie sicher, dass Sie dieses Ziel löschen möchten?",
|
||||
"Are you sure you want to delete this key?": "Sind Sie sicher, dass Sie diesen Schlüssel löschen möchten?",
|
||||
"Are you sure you want to delete this notification configuration?": "Sind Sie sicher, dass Sie diese Benachrichtigungskonfiguration löschen möchten?",
|
||||
"Are you sure you want to delete this object?": "Sind Sie sicher, dass Sie dieses Objekt löschen möchten?",
|
||||
"Are you sure you want to delete this policy?": "Sind Sie sicher, dass Sie diese Richtlinie löschen möchten?",
|
||||
"Are you sure you want to delete this replication rule?": "Sind Sie sicher, dass Sie diese Replikationsregel löschen möchten?",
|
||||
"Are you sure you want to delete this rule?": "Sind Sie sicher, dass Sie diese Regel löschen möchten?",
|
||||
"Are you sure you want to delete this tier?": "Sind Sie sicher, dass Sie dieses Tier löschen möchten?",
|
||||
"Are you sure you want to force delete this key?": "Sind Sie sicher, dass Sie diesen Schlüssel zwangsweise löschen möchten?",
|
||||
"Are you sure you want to remove encryption?": "Sind Sie sicher, dass Sie die Verschlüsselung entfernen möchten?",
|
||||
"Assign Policy": "Richtlinie zuweisen",
|
||||
"Asynchronous": "Asynchron",
|
||||
"Audit": "Audit",
|
||||
"Auth Method": "Authentifizierungsmethode",
|
||||
"Authentication Method": "Authentifizierungsmethode",
|
||||
"Authorization": "Autorisierung",
|
||||
"Auto": "Automatisch",
|
||||
"Automatically inherit the main account policy when enabled.": "Automatisch die Hauptkontorichtlinie übernehmen, wenn aktiviert.",
|
||||
"Available": "Verfügbar",
|
||||
"Backend": "Backend",
|
||||
"Backend Services": "Backend-Dienste",
|
||||
"Backend Status": "Backend-Status",
|
||||
"Backend Type": "Backend-Typ",
|
||||
"Bandwidth Limit": "Bandbreitenlimit",
|
||||
"Batch allocation policies": "Batch-Zuweisungsrichtlinien",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "Browser",
|
||||
"Browser Warning": "Browser-Warnung",
|
||||
"Bucket": "Bucket",
|
||||
"Bucket Configuration": "Bucket-Konfiguration",
|
||||
"Bucket Count": "Bucket-Anzahl",
|
||||
"Bucket Encryption Management": "Bucket-Verschlüsselungsverwaltung",
|
||||
"Bucket Events": "Bucket-Ereignisse",
|
||||
"Bucket Notification": "Bucket-Benachrichtigung",
|
||||
"Bucket Policy": "Bucket-Richtlinie",
|
||||
"Bucket Quota": "Bucket-Quota",
|
||||
"Bucket Replication": "Bucket-Replikation",
|
||||
"Bucket Setting": "Bucket-Einstellung",
|
||||
"Bucket encryption configured successfully": "Bucket-Verschlüsselung erfolgreich konfiguriert",
|
||||
"Bucket encryption removed successfully": "Bucket-Verschlüsselung erfolgreich entfernt",
|
||||
"Bucket is not empty": "Bucket ist nicht leer",
|
||||
"Bucket list refreshed": "Bucket-Liste aktualisiert",
|
||||
"Buckets": "Buckets",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "Cache aktiviert",
|
||||
"Cache Hits": "Cache-Treffer",
|
||||
"Cache Misses": "Cache-Fehltreffer",
|
||||
"Cache Statistics": "Cache-Statistiken",
|
||||
"Cache Status": "Cache-Status",
|
||||
"Cache TTL": "Cache-TTL",
|
||||
"Cache TTL (seconds)": "Cache-TTL (Sekunden)",
|
||||
"Cache Warning": "Cache-Warnung",
|
||||
"Cache clear completed with warnings": "Cache-Löschung mit Warnungen abgeschlossen",
|
||||
"Cache cleared successfully": "Cache erfolgreich gelöscht",
|
||||
"Cache time-to-live in seconds, default: 600": "Cache-Zeit-zu-Leben in Sekunden, Standard: 600",
|
||||
"Cancel": "Abbrechen",
|
||||
"Canceled": "Abgebrochen",
|
||||
"canceled": "Abgebrochen",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Passwort ändern",
|
||||
"Change Secret Key": "Geheimschlüssel ändern",
|
||||
"Change current account password": "Aktuelles Kontopasswort ändern",
|
||||
"Confirm New Secret Key": "Neuen Geheimschlüssel bestätigen",
|
||||
"Choose the encryption method for this bucket": "Verschlüsselungsmethode für diesen Bucket wählen",
|
||||
"Clear All": "Alle löschen",
|
||||
"Clear Cache": "Cache löschen",
|
||||
"Clear Records": "Datensätze löschen",
|
||||
"Click or drag ZIP file to this area to upload": "ZIP-Datei in diesen Bereich klicken oder ziehen zum Hochladen",
|
||||
"Close": "Schließen",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "Konfiguration",
|
||||
"Configuration Information": "Konfigurationsinformationen",
|
||||
"Configuration is saved locally in your browser": "Konfiguration wird lokal in Ihrem Browser gespeichert",
|
||||
"Configuration loaded successfully": "Konfiguration erfolgreich geladen",
|
||||
"Configuration reset successfully": "Konfiguration erfolgreich zurückgesetzt",
|
||||
"Configuration saved successfully": "Konfiguration erfolgreich gespeichert",
|
||||
"Configure": "Konfigurieren",
|
||||
"Configure Bucket Encryption": "Bucket-Verschlüsselung konfigurieren",
|
||||
"Configure Encryption": "Verschlüsselung konfigurieren",
|
||||
"Configure Encryption for {bucket}": "Verschlüsselung für {bucket} konfigurieren",
|
||||
"Configure KMS": "KMS konfigurieren",
|
||||
"Configure server-side encryption for your objects using external key management services.": "Serverseitige Verschlüsselung für Ihre Objekte mit externen Schlüsselverwaltungsdiensten konfigurieren.",
|
||||
"Configured": "Konfiguriert",
|
||||
"Confirm": "Bestätigen",
|
||||
"Confirm Delete": "Löschen bestätigen",
|
||||
"Confirm Force Delete": "Zwangsweise löschen bestätigen",
|
||||
"Confirm New Password": "Neues Passwort bestätigen",
|
||||
"Confirm Remove Encryption": "Verschlüsselung entfernen bestätigen",
|
||||
"Contact Support": "Support kontaktieren",
|
||||
"Copy": "Kopieren",
|
||||
"Copy Failed": "Kopieren fehlgeschlagen",
|
||||
"Copy Success": "Kopieren erfolgreich",
|
||||
"Copy Temporary URL": "Temporäre URL kopieren",
|
||||
"Create": "Erstellen",
|
||||
"Create Bucket": "Bucket erstellen",
|
||||
"Create Failed": "Erstellen fehlgeschlagen",
|
||||
"Create First Key": "Ersten Schlüssel erstellen",
|
||||
"Create Key": "Schlüssel erstellen",
|
||||
"Create New Key": "Neuen Schlüssel erstellen",
|
||||
"Create Success": "Erstellen erfolgreich",
|
||||
"Create User": "Benutzer erstellen",
|
||||
"Create a bucket to start storing objects.": "Einen Bucket erstellen, um mit der Speicherung von Objekten zu beginnen.",
|
||||
"Create a new access key to get started.": "Einen neuen Zugriffsschlüssel erstellen, um zu beginnen.",
|
||||
"Create a policy to manage access control templates.": "Eine Richtlinie erstellen, um Zugriffskontrollvorlagen zu verwalten.",
|
||||
"Create an event destination to forward notifications.": "Ein Ereignisziel erstellen, um Benachrichtigungen weiterzuleiten.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "Lebenszyklusregeln erstellen, um Objektübergänge und Ablaufzeiten zu automatisieren.",
|
||||
"Create your first KMS key to get started": "Ihren ersten KMS-Schlüssel erstellen, um zu beginnen",
|
||||
"Create your first bucket to configure encryption": "Ihren ersten Bucket erstellen, um Verschlüsselung zu konfigurieren",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "Schlüssel erstellen, rotieren und überprüfen, die von Ihrem KMS-Backend verwaltet werden.",
|
||||
"Created": "Erstellt",
|
||||
"Creation Date": "Erstellungsdatum",
|
||||
"Current Configuration": "Aktuelle Konfiguration",
|
||||
"Current KMS Type": "Aktueller KMS-Typ",
|
||||
"Current Password": "Aktuelles Passwort",
|
||||
"Current Prefix": "Aktuelles Präfix",
|
||||
"Current Site": "Aktueller Standort",
|
||||
"Current User Policy": "Aktuelle Benutzerrichtlinie",
|
||||
"Current Version": "Aktuelle Version",
|
||||
"Current user policy": "Aktuelle Benutzerrichtlinie",
|
||||
"Custom": "Benutzerdefiniert",
|
||||
"Customer Service": "Kundenservice",
|
||||
"DAYS": "TAGE",
|
||||
"Dark": "Dunkel",
|
||||
"Data Backup": "Datensicherung",
|
||||
"Data Key (DEK)": "Datenschlüssel (DEK)",
|
||||
"Data Keys (DEK)": "Datenschlüssel (DEK)",
|
||||
"Data Redundancy": "Datenredundanz",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "Datenschlüssel werden automatisch generiert, wenn Dateien verschlüsselt werden. Sie werden von Hauptschlüsseln verschlüsselt und für die tatsächliche Datenverschlüsselung verwendet.",
|
||||
"Day": "Tag",
|
||||
"Days After": "Tage danach",
|
||||
"Default Key ID": "Standard-Schlüssel-ID",
|
||||
"Default master key ID for SSE-KMS": "Standard-Hauptschlüssel-ID für SSE-KMS",
|
||||
"Delete": "Löschen",
|
||||
"Delete Failed": "Löschen fehlgeschlagen",
|
||||
"Delete Key": "Schlüssel löschen",
|
||||
"Delete Marker Handling": "Löschmarker-Verarbeitung",
|
||||
"Delete Record": "Datensatz löschen",
|
||||
"Delete Selected": "Ausgewählte löschen",
|
||||
"Delete Success": "Löschen erfolgreich",
|
||||
"Delete Tag Confirm": "Tag löschen bestätigen",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "Löschen...",
|
||||
"Description": "Beschreibung",
|
||||
"Destination Bucket": "Ziel-Bucket",
|
||||
"Detailed KMS Status": "Detaillierter KMS-Status",
|
||||
"Details": "Details",
|
||||
"Development Language Requirements": "Entwicklungssprachenanforderungen",
|
||||
"Disabled": "Deaktiviert",
|
||||
"Disk Bad Spot Check": "Festplatten-Fehlerstellen-Prüfung",
|
||||
"Disks": "Festplatten",
|
||||
"Documentation": "Dokumentation",
|
||||
"Download": "Herunterladen",
|
||||
"Download complete IAM configuration as ZIP file": "Vollständige IAM-Konfiguration als ZIP-Datei herunterladen",
|
||||
"Drag Drop Info": "Drag & Drop Info",
|
||||
"EC Mode": "EC-Modus",
|
||||
"Edit": "Bearbeiten",
|
||||
"Edit Configuration": "Konfiguration bearbeiten",
|
||||
"Edit Failed": "Bearbeiten fehlgeschlagen",
|
||||
"Edit Group": "Gruppe bearbeiten",
|
||||
"Edit Key": "Schlüssel bearbeiten",
|
||||
"Edit Policy": "Richtlinie bearbeiten",
|
||||
"Edit Success": "Bearbeiten erfolgreich",
|
||||
"Edit User": "Benutzer bearbeiten",
|
||||
"Emergency Response": "Notfallreaktion",
|
||||
"Enable Cache": "Cache aktivieren",
|
||||
"Enable Storage Encryption": "Speicherverschlüsselung aktivieren",
|
||||
"Enable caching for better performance, default: true": "Caching für bessere Leistung aktivieren, Standard: true",
|
||||
"Enable secure transport when connecting to endpoint.": "Sicheren Transport beim Verbinden mit Endpunkt aktivieren.",
|
||||
"Enabled": "Aktiviert",
|
||||
"Encryption": "Verschlüsselung",
|
||||
"Encryption Status": "Verschlüsselungsstatus",
|
||||
"Encryption Type": "Verschlüsselungstyp",
|
||||
"Encryption algorithm for the key.": "Verschlüsselungsalgorithmus für den Schlüssel.",
|
||||
"Endpoint": "Endpunkt",
|
||||
"Endpoint *": "Endpunkt *",
|
||||
"Endpoint is required": "Endpunkt ist erforderlich",
|
||||
"Enter AppRole Role ID": "AppRole-Rollen-ID eingeben",
|
||||
"Enter AppRole Secret ID": "AppRole-Geheimnis-ID eingeben",
|
||||
"Enter your Vault authentication token": "Ihr Vault-Authentifizierungstoken eingeben",
|
||||
"Enterprise": "Enterprise",
|
||||
"Enterprise License": "Enterprise-Lizenz",
|
||||
"Enterprise Service Level": "Enterprise-Servicelevel",
|
||||
"Error": "Fehler",
|
||||
"Event Destinations": "Ereignisziele",
|
||||
"Event Target created successfully": "Ereignisziel erfolgreich erstellt",
|
||||
"Events": "Ereignisse",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "Beispiel: http://localhost:9000 oder https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "Bestehende verschlüsselte Objekte bleiben verschlüsselt.",
|
||||
"Expiration": "Ablauf",
|
||||
"Expiration Delete Mark": "Ablauf-Löschmarker",
|
||||
"Expired": "Abgelaufen",
|
||||
"Expiry": "Ablaufzeit",
|
||||
"Export": "Exportieren",
|
||||
"Export Now": "Jetzt exportieren",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "Alle IAM-Konfigurationen einschließlich Benutzer, Gruppen, Richtlinien und Zugriffsschlüssel in einer ZIP-Datei exportieren.",
|
||||
"Exporting...": "Exportieren...",
|
||||
"External MinIO tier": "Externes MinIO-Tier",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Fehlgeschlagen({count})",
|
||||
"failed": "Fehlgeschlagen({count})",
|
||||
"Failed to clear cache": "Cache konnte nicht gelöscht werden",
|
||||
"Failed to configure bucket encryption": "Bucket-Verschlüsselung konnte nicht konfiguriert werden",
|
||||
"Failed to create event target": "Ereignisziel konnte nicht erstellt werden",
|
||||
"Failed to create rule": "Regel konnte nicht erstellt werden",
|
||||
"Failed to delete key": "Schlüssel konnte nicht gelöscht werden",
|
||||
"Failed to export IAM configuration": "IAM-Konfiguration konnte nicht exportiert werden",
|
||||
"Failed to fetch KMS keys": "KMS-Schlüssel konnten nicht abgerufen werden",
|
||||
"Failed to fetch data": "Daten konnten nicht abgerufen werden",
|
||||
"Failed to fetch object info": "Objektinformationen konnten nicht abgerufen werden",
|
||||
"Failed to fetch versions": "Versionen konnten nicht abgerufen werden",
|
||||
"Failed to force delete key": "Schlüssel konnte nicht zwangsweise gelöscht werden",
|
||||
"Failed to get data": "Daten konnten nicht abgerufen werden",
|
||||
"Failed to get detailed status": "Detaillierter Status konnte nicht abgerufen werden",
|
||||
"Failed to get key details": "Schlüsseldetails konnten nicht abgerufen werden",
|
||||
"Failed to import IAM configuration": "IAM-Konfiguration konnte nicht importiert werden",
|
||||
"Failed to load KMS status": "KMS-Status konnte nicht geladen werden",
|
||||
"Failed to load bucket list": "Bucket-Liste konnte nicht geladen werden",
|
||||
"Failed to load current configuration": "Aktuelle Konfiguration konnte nicht geladen werden",
|
||||
"Failed to load key list": "Schlüssel-Liste konnte nicht geladen werden",
|
||||
"Failed to refresh key list": "Schlüssel-Liste konnte nicht aktualisiert werden",
|
||||
"Failed to refresh status": "Status konnte nicht aktualisiert werden",
|
||||
"Failed to remove bucket encryption": "Bucket-Verschlüsselung konnte nicht entfernt werden",
|
||||
"Failed to save configuration": "Konfiguration konnte nicht gespeichert werden",
|
||||
"Failed to save key": "Schlüssel konnte nicht gespeichert werden",
|
||||
"Failed to set local development mode": "Lokaler Entwicklungsmodus konnte nicht gesetzt werden",
|
||||
"Failed to start KMS service": "KMS-Dienst konnte nicht gestartet werden",
|
||||
"Failed to stop KMS service": "KMS-Dienst konnte nicht gestoppt werden",
|
||||
"Feature Permissions": "Funktionsberechtigungen",
|
||||
"File Count Limit Exceeded": "Dateianzahllimit überschritten",
|
||||
"File Size Limit": "Dateigrößenlimit",
|
||||
"File size exceeds limit (10MB)": "Dateigröße überschreitet Limit (10MB)",
|
||||
"Files": "Dateien",
|
||||
"First": "Erste",
|
||||
"Folder": "Ordner",
|
||||
"Folder Processing Error": "Ordnerverarbeitungsfehler",
|
||||
"Force Delete": "Zwangsweise löschen",
|
||||
"Friday": "Freitag",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "Zukünftige Uploads zu diesem Bucket werden standardmäßig nicht verschlüsselt.",
|
||||
"GOVERNANCE": "GOVERNANCE",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "Von Hauptschlüsseln generiert, um Ihre Dateien zu verschlüsseln. Wird automatisch erstellt, wenn Daten verschlüsselt werden.",
|
||||
"Get Data Failed": "Daten abrufen fehlgeschlagen",
|
||||
"Get Help": "Hilfe erhalten",
|
||||
"Groups": "Gruppen",
|
||||
"HashiCorp Encryption": "HashiCorp-Verschlüsselung",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "Gesundheitsprüfungsintervall (Sekunden)",
|
||||
"High Memory Usage Warning": "Warnung bei hohem Speicherverbrauch",
|
||||
"High Performance": "Hohe Leistung",
|
||||
"Hit Rate": "Trefferquote",
|
||||
"IAM Configuration Export": "IAM-Konfigurationsexport",
|
||||
"IAM Configuration Import": "IAM-Konfigurationsimport",
|
||||
"IAM Policies": "IAM-Richtlinien",
|
||||
"IAM configuration exported successfully": "IAM-Konfiguration erfolgreich exportiert",
|
||||
"IAM configuration imported successfully": "IAM-Konfiguration erfolgreich importiert",
|
||||
"Identity Authentication Expansion": "Identitätsauthentifizierungserweiterung",
|
||||
"If no versions remain, delete references to this object": "Wenn keine Versionen mehr vorhanden sind, Verweise auf dieses Objekt löschen",
|
||||
"Import": "Importieren",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "IAM-Konfigurationen aus einer zuvor exportierten ZIP-Datei importieren.",
|
||||
"Import Now": "Jetzt importieren",
|
||||
"Import Success": "Import erfolgreich",
|
||||
"Import/Export": "Import/Export",
|
||||
"Importing...": "Importieren...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total} Aufgaben in Bearbeitung ({processing} werden verarbeitet, {completed} abgeschlossen)",
|
||||
"Inactive": "Inaktiv",
|
||||
"Include objects that already exist in the source bucket.": "Objekte einschließen, die bereits im Quell-Bucket vorhanden sind.",
|
||||
"Infinite Scaling": "Unbegrenzte Skalierung",
|
||||
"Info": "Info",
|
||||
"Infrastructure Health": "Infrastrukturgesundheit",
|
||||
"Inspect individual server health, disk utilization, and network status.": "Einzelne Servergesundheit, Festplattenauslastung und Netzwerkstatus überprüfen.",
|
||||
"Invalid server address format": "Ungültiges Serveradressformat",
|
||||
"JSON Editor": "JSON-Editor",
|
||||
"KMS Configuration": "KMS-Konfiguration",
|
||||
"KMS Key": "KMS-Schlüssel",
|
||||
"KMS Key ID": "KMS-Schlüssel-ID",
|
||||
"KMS Keys Management": "KMS-Schlüsselverwaltung",
|
||||
"KMS Status Overview": "KMS-Statusübersicht",
|
||||
"KMS Type": "KMS-Typ",
|
||||
"KMS is not configured, please configure it first": "KMS ist nicht konfiguriert, bitte zuerst konfigurieren",
|
||||
"KMS server has errors": "KMS-Server hat Fehler",
|
||||
"KMS server is configured but not running": "KMS-Server ist konfiguriert, läuft aber nicht",
|
||||
"KMS server is not configured": "KMS-Server ist nicht konfiguriert",
|
||||
"KMS server is running and healthy": "KMS-Server läuft und ist gesund",
|
||||
"KMS server is running but unhealthy": "KMS-Server läuft, ist aber nicht gesund",
|
||||
"KMS server is running, configuration details are private": "KMS-Server läuft, Konfigurationsdetails sind privat",
|
||||
"KMS server status unknown": "KMS-Server-Status unbekannt",
|
||||
"KMS service has errors": "KMS-Dienst hat Fehler",
|
||||
"KMS service is stopped": "KMS-Dienst ist gestoppt",
|
||||
"KMS service not initialized, please configure it first": "KMS-Dienst nicht initialisiert, bitte zuerst konfigurieren",
|
||||
"KMS service started successfully": "KMS-Dienst erfolgreich gestartet",
|
||||
"KMS service stopped successfully": "KMS-Dienst erfolgreich gestoppt",
|
||||
"KV Mount": "KV-Mount",
|
||||
"KV Mount Path": "KV-Mount-Pfad",
|
||||
"KV storage mount path, default: secret": "KV-Speicher-Mount-Pfad, Standard: secret",
|
||||
"Key": "Schlüssel",
|
||||
"Key Creation": "Schlüsselerstellung",
|
||||
"Key Directory": "Schlüsselverzeichnis",
|
||||
"Key Expiration": "Schlüsselablauf",
|
||||
"Key ID": "Schlüssel-ID",
|
||||
"Key List": "Schlüssel-Liste",
|
||||
"Key Login": "Schlüssel-Anmeldung",
|
||||
"Key Name": "Schlüsselname",
|
||||
"Key Path Prefix": "Schlüsselpfad-Präfix",
|
||||
"Key created successfully": "Schlüssel erfolgreich erstellt",
|
||||
"Key deleted successfully": "Schlüssel erfolgreich gelöscht",
|
||||
"Key force deleted successfully": "Schlüssel erfolgreich zwangsweise gelöscht",
|
||||
"Key is already pending deletion": "Schlüssel ist bereits zum Löschen vorgemerkt",
|
||||
"Key list refreshed": "Schlüssel-Liste aktualisiert",
|
||||
"Key services and configuration values reported by the cluster.": "Schlüsseldienste und Konfigurationswerte, die vom Cluster gemeldet werden.",
|
||||
"Key storage path prefix in KV store": "Schlüsselspeicherpfad-Präfix im KV-Speicher",
|
||||
"Large File Count Warning": "Warnung bei großer Dateianzahl",
|
||||
"Last": "Letzte",
|
||||
"Last Modified": "Zuletzt geändert",
|
||||
"Last Modified Time": "Zeit der letzten Änderung",
|
||||
"Last Normal Operation": "Letzte normale Operation",
|
||||
"Last Scan Activity": "Letzte Scan-Aktivität",
|
||||
"LastModified": "Zuletzt geändert",
|
||||
"Leave empty to use current host as default": "Leer lassen, um aktuellen Host als Standard zu verwenden",
|
||||
"Legal Hold": "Rechtliche Aufbewahrung",
|
||||
"License": "Lizenz",
|
||||
"License Details": "Lizenzdetails",
|
||||
"License Key": "Lizenzschlüssel",
|
||||
"License Valid Until": "Lizenz gültig bis",
|
||||
"Licensed Company": "Lizenzierte Firma",
|
||||
"Licensed Users": "Lizenzierte Benutzer",
|
||||
"Lifecycle": "Lebenszyklus",
|
||||
"Lifecycle Management": "Lebenszyklusverwaltung",
|
||||
"Light": "Hell",
|
||||
"Load Balancing": "Lastausgleich",
|
||||
"Loading buckets...": "Buckets werden geladen...",
|
||||
"Loading keys...": "Schlüssel werden geladen...",
|
||||
"Local development mode set successfully": "Lokaler Entwicklungsmodus erfolgreich gesetzt",
|
||||
"Login": "Anmelden",
|
||||
"Login Failed": "Anmeldung fehlgeschlagen",
|
||||
"Login Problems?": "Anmeldeprobleme?",
|
||||
"Login Success": "Anmeldung erfolgreich",
|
||||
"Logout": "Abmelden",
|
||||
"Logs": "Protokolle",
|
||||
"MNMD Mode": "MNMD-Modus",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "MQTT-Broker",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "MQTT Keep-Alive-Intervall",
|
||||
"MQTT_PASSWORD": "MQTT-Passwort",
|
||||
"MQTT_QOS": "MQTT-QoS",
|
||||
"MQTT_QUEUE_DIR": "MQTT-Warteschlangenverzeichnis",
|
||||
"MQTT_QUEUE_LIMIT": "MQTT-Warteschlangenlimit",
|
||||
"MQTT_RECONNECT_INTERVAL": "MQTT-Wiederverbindungsintervall",
|
||||
"MQTT_TOPIC": "MQTT-Thema",
|
||||
"MQTT_USERNAME": "MQTT-Benutzername",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "Hauptschlüssel-ID (Transit-Schlüsselname). Verwenden Sie geschäftsbezogene lesbare ID.",
|
||||
"Make sure the server address is accessible from your network": "Stellen Sie sicher, dass die Serveradresse von Ihrem Netzwerk aus erreichbar ist",
|
||||
"Manage how RustFS connects to your external key management service.": "Verwalten Sie, wie RustFS mit Ihrem externen Schlüsselverwaltungsdienst verbindet.",
|
||||
"Master Key": "Hauptschlüssel",
|
||||
"Master Key (CMK)": "Hauptschlüssel (CMK)",
|
||||
"Master Keys (CMK)": "Hauptschlüssel (CMK)",
|
||||
"Max 50TB": "Max. 50TB",
|
||||
"Members": "Mitglieder",
|
||||
"Memory Critical": "Speicher kritisch",
|
||||
"Memory High": "Speicher hoch",
|
||||
"Memory Low": "Speicher niedrig",
|
||||
"Memory Medium": "Speicher mittel",
|
||||
"Memory Usage": "Speicherverbrauch",
|
||||
"Memory Warning": "Speicherwarnung",
|
||||
"Metrics": "Metriken",
|
||||
"Minio": "Minio",
|
||||
"Mode": "Modus",
|
||||
"Monday": "Montag",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "Gesamte Speichernutzung und aktuelle Scanner-Aktivität auf einen Blick überwachen.",
|
||||
"More Configurations": "Weitere Konfigurationen",
|
||||
"Multi-Cloud Storage": "Multi-Cloud-Speicher",
|
||||
"Multipart Upload": "Multipart-Upload",
|
||||
"Name": "Name",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "Benötigen Sie Hilfe?",
|
||||
"Network": "Netzwerk",
|
||||
"New File": "Neue Datei",
|
||||
"New Folder": "Neuer Ordner",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "Neues Passwort",
|
||||
"New Secret Key": "Neuer Geheimschlüssel",
|
||||
"New Policy": "Neue Richtlinie",
|
||||
"New user has been created": "Neuer Benutzer wurde erstellt",
|
||||
"Next": "Weiter",
|
||||
"Next Page": "Nächste Seite",
|
||||
"No": "Nein",
|
||||
"No Access Keys": "Keine Zugriffsschlüssel",
|
||||
"No Buckets": "Keine Buckets",
|
||||
"No Data": "Keine Daten",
|
||||
"No Destinations": "Keine Ziele",
|
||||
"No KMS configuration found": "Keine KMS-Konfiguration gefunden",
|
||||
"No KMS keys found": "Keine KMS-Schlüssel gefunden",
|
||||
"No License": "Keine Lizenz",
|
||||
"No Objects": "Keine Objekte",
|
||||
"Show Deleted Objects": "Gelöschte Objekte anzeigen",
|
||||
"No Policies": "Keine Richtlinien",
|
||||
"No Selection": "Keine Auswahl",
|
||||
"No Tasks": "Keine Aufgaben",
|
||||
"No Tiers": "Keine Tiers",
|
||||
"No Versions": "Keine Versionen",
|
||||
"No bucket selected": "Kein Bucket ausgewählt",
|
||||
"No buckets found": "Keine Buckets gefunden",
|
||||
"No buckets match your search": "Keine Buckets entsprechen Ihrer Suche",
|
||||
"No status data available": "Keine Statusdaten verfügbar",
|
||||
"No valid events found after conversion": "Keine gültigen Ereignisse nach Konvertierung gefunden",
|
||||
"Non-current Version": "Nicht aktuelle Version",
|
||||
"Normal": "Normal",
|
||||
"Not Configured": "Nicht konfiguriert",
|
||||
"Not configured": "Nicht konfiguriert",
|
||||
"Not specified": "Nicht angegeben",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "Hinweis: AccessKey- und SecretKey-Werte sind für jeden Standort erforderlich, wenn Peer-Standorte hinzugefügt oder bearbeitet werden",
|
||||
"Notice": "Hinweis",
|
||||
"Number of retry attempts, default: 3": "Anzahl der Wiederholungsversuche, Standard: 3",
|
||||
"Object": "Objekt",
|
||||
"Object Count": "Objektanzahl",
|
||||
"Object Detail Description": "Objektdetailbeschreibung",
|
||||
"Object Details": "Objektdetails",
|
||||
"Object Lock": "Objektsperre",
|
||||
"Object Name": "Objektname",
|
||||
"Object Repair": "Objektreparatur",
|
||||
"Object Sharing": "Objektfreigabe",
|
||||
"Object Size": "Objektgröße",
|
||||
"Object Tags": "Objekt-Tags",
|
||||
"Object Type": "Objekttyp",
|
||||
"Object Version": "Objektversion",
|
||||
"Object Versions": "Objektversionen",
|
||||
"Object lock is not enabled, cannot set retention": "Objektsperre ist nicht aktiviert, Aufbewahrung kann nicht gesetzt werden",
|
||||
"Objects": "Objekte",
|
||||
"Off": "Aus",
|
||||
"Offline": "Offline",
|
||||
"On": "Ein",
|
||||
"On-site Deployment": "Vor-Ort-Bereitstellung",
|
||||
"On-site Technical Service": "Vor-Ort-Technischer Service",
|
||||
"One-hour Response": "Ein-Stunden-Antwort",
|
||||
"Online": "Online",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "Nur ZIP-Dateien werden unterstützt, und die Dateigröße sollte 10MB nicht überschreiten",
|
||||
"Overwrite Warning": "Überschreibwarnung",
|
||||
"Page will refresh automatically after saving configuration": "Seite wird nach dem Speichern der Konfiguration automatisch aktualisiert",
|
||||
"Page {current} of {total}": "Seite {current} von {total}",
|
||||
"Password": "Passwort",
|
||||
"Pause": "Pausieren",
|
||||
"Paused": "Pausiert",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "Pausiert",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Löschen ausstehend",
|
||||
"Performance": "Leistung",
|
||||
"Platinum Service": "Platin-Service",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "Bitte konfigurieren Sie Ihre RustFS-Serveradresse",
|
||||
"Please enter": "Bitte eingeben",
|
||||
"Please enter Access Key": "Bitte Zugriffsschlüssel eingeben",
|
||||
"Please enter STS key": "Bitte STS-Schlüssel eingeben",
|
||||
"Please enter STS session token": "Bitte STS-Sitzungstoken eingeben",
|
||||
"Please enter STS username": "Bitte STS-Benutzernamen eingeben",
|
||||
"Please enter Secret Key": "Bitte Geheimschlüssel eingeben",
|
||||
"Please enter Vault server address": "Bitte Vault-Serveradresse eingeben",
|
||||
"Please enter Vault token": "Bitte Vault-Token eingeben",
|
||||
"Please enter account": "Bitte Konto eingeben",
|
||||
"Please enter both Role ID and Secret ID": "Bitte sowohl Rollen-ID als auch Geheimnis-ID eingeben",
|
||||
"Please enter bucket": "Bitte Bucket eingeben",
|
||||
"Please enter current password": "Bitte aktuelles Passwort eingeben",
|
||||
"Please enter default key ID": "Bitte Standard-Schlüssel-ID eingeben",
|
||||
"Please enter endpoint": "Bitte Endpunkt eingeben",
|
||||
"Please enter key": "Bitte Schlüssel eingeben",
|
||||
"Please enter key name": "Bitte Schlüsselname eingeben",
|
||||
"Please enter name": "Bitte Namen eingeben",
|
||||
"Please enter new password": "Bitte neues Passwort eingeben",
|
||||
"Please enter new password again": "Bitte neues Passwort erneut eingeben",
|
||||
"Please enter password": "Bitte Passwort eingeben",
|
||||
"Please enter policy content": "Bitte Richtlinieninhalt eingeben",
|
||||
"Please enter policy name": "Bitte Richtlinienname eingeben",
|
||||
"Please enter prefix": "Bitte Präfix eingeben",
|
||||
"Please enter region": "Bitte Region eingeben",
|
||||
"Please enter rule name": "Bitte Regelname eingeben",
|
||||
"Please enter server address": "Bitte Serveradresse eingeben",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "Bitte Serveradresse eingeben (z.B. http://localhost:9000)",
|
||||
"Please enter storage class": "Bitte Speicherklasse eingeben",
|
||||
"Please enter suffix": "Bitte Suffix eingeben",
|
||||
"Please enter tag value": "Bitte Tag-Wert eingeben",
|
||||
"Please enter user group name": "Bitte Benutzergruppenname eingeben",
|
||||
"Please enter username": "Bitte Benutzernamen eingeben",
|
||||
"Please enter valid days": "Bitte gültige Tage eingeben",
|
||||
"Please enter valid health check interval": "Bitte gültiges Gesundheitsprüfungsintervall eingeben",
|
||||
"Please fill in at least one configuration item": "Bitte mindestens ein Konfigurationselement ausfüllen",
|
||||
"Please fill in complete retention information": "Bitte vollständige Aufbewahrungsinformationen ausfüllen",
|
||||
"Please fill in complete tag information": "Bitte vollständige Tag-Informationen ausfüllen",
|
||||
"Please fill in the correct format": "Bitte im korrekten Format ausfüllen",
|
||||
"Please provide credentials": "Bitte Anmeldedaten bereitstellen",
|
||||
"Please select KMS key": "Bitte KMS-Schlüssel auswählen",
|
||||
"Please select a KMS key for SSE-KMS encryption": "Bitte einen KMS-Schlüssel für SSE-KMS-Verschlüsselung auswählen",
|
||||
"Please select a ZIP file to import": "Bitte eine ZIP-Datei zum Importieren auswählen",
|
||||
"Please select at least one event": "Bitte mindestens ein Ereignis auswählen",
|
||||
"Please select at least one item": "Bitte mindestens ein Element auswählen",
|
||||
"Please select authentication method": "Bitte Authentifizierungsmethode auswählen",
|
||||
"Please select bucket": "Bitte Bucket auswählen",
|
||||
"Please select encryption type": "Bitte Verschlüsselungstyp auswählen",
|
||||
"Please select event target type": "Bitte Ereigniszieltyp auswählen",
|
||||
"Please select expiration date": "Bitte Ablaufdatum auswählen",
|
||||
"Please select expiry date": "Bitte Ablaufdatum auswählen",
|
||||
"Please select policy": "Bitte Richtlinie auswählen",
|
||||
"Please select resource name": "Bitte Ressourcennamen auswählen",
|
||||
"Please select rule type": "Bitte Regeltyp auswählen",
|
||||
"Please select storage type": "Bitte Speichertyp auswählen",
|
||||
"Policies": "Richtlinien",
|
||||
"Policy": "Richtlinie",
|
||||
"Policy Content": "Richtlinieninhalt",
|
||||
"Policy Name": "Richtlinienname",
|
||||
"Policy Original": "Originalrichtlinie",
|
||||
"Policy format invalid": "Richtlinienformat ungültig",
|
||||
"Prefix": "Präfix",
|
||||
"Prev": "Zurück",
|
||||
"Preview": "Vorschau",
|
||||
"Preview unavailable": "Vorschau nicht verfügbar",
|
||||
"Previous Page": "Vorherige Seite",
|
||||
"Priority": "Priorität",
|
||||
"Private": "Privat",
|
||||
"Processing": "Verarbeitung",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Öffentlich",
|
||||
"Public, Private, Custom": "Öffentlich, Privat, Benutzerdefiniert",
|
||||
"Read/Write Performance": "Lese-/Schreibleistung",
|
||||
"Reading Folder Files": "Ordnerdateien lesen",
|
||||
"Ready to import: {filename}": "Bereit zum Importieren: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "Echtzeitstatus von Cluster-Servern und Backend-Speichergeräten.",
|
||||
"Reduced Redundancy Parity": "Reduzierte Redundanz-Parität",
|
||||
"Reed-Solomon Matrix": "Reed-Solomon-Matrix",
|
||||
"Refresh": "Aktualisieren",
|
||||
"Region": "Region",
|
||||
"Reliable distributed file system": "Zuverlässiges verteiltes Dateisystem",
|
||||
"Remaining (3TB)": "Verbleibend (3TB)",
|
||||
"Remote Site": "Remote-Standort",
|
||||
"Remote Technical Support": "Remote-Technischer Support",
|
||||
"Remote Tiering": "Remote-Tiering",
|
||||
"Remove": "Entfernen",
|
||||
"Remove Encryption": "Verschlüsselung entfernen",
|
||||
"Replicate Delete Markers": "Löschmarker replizieren",
|
||||
"Replicate Existing Objects": "Bestehende Objekte replizieren",
|
||||
"Request timeout in seconds, default: 30": "Anfrage-Timeout in Sekunden, Standard: 30",
|
||||
"Required: Vault authentication token": "Erforderlich: Vault-Authentifizierungstoken",
|
||||
"Reset": "Zurücksetzen",
|
||||
"Reset to Default": "Auf Standard zurücksetzen",
|
||||
"Reset to default successfully": "Erfolgreich auf Standard zurückgesetzt",
|
||||
"Response Level": "Antwortebene",
|
||||
"Resume": "Fortsetzen",
|
||||
"Retention": "Aufbewahrung",
|
||||
"Retention Mode": "Modus",
|
||||
"Retention Period": "Aufbewahrungszeitraum",
|
||||
"Retention RetainUntilDate": "Aufbewahrung bis Datum",
|
||||
"Retention Save Failed": "Aufbewahrung speichern fehlgeschlagen",
|
||||
"Retention Unit": "Aufbewahrungseinheit",
|
||||
"Retry Attempts": "Wiederholungsversuche",
|
||||
"Role ID": "Rollen-ID",
|
||||
"Rows per page": "Zeilen pro Seite",
|
||||
"Rule ID": "Regel-ID",
|
||||
"Running": "Läuft",
|
||||
"Running (Unhealthy)": "Läuft (ungesund)",
|
||||
"Rust-based": "Rust-basiert",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "RustFS integrierter Kaltlagerung",
|
||||
"RustyVault Encryption": "RustyVault-Verschlüsselung",
|
||||
"S3 Compatibility": "S3-Kompatibilität",
|
||||
"S3 Compatible": "S3-kompatibel",
|
||||
"S3 Endpoint": "S3-Endpunkt",
|
||||
"S3 Region": "S3-Region",
|
||||
"SDK Support": "SDK-Unterstützung",
|
||||
"SNMD Mode": "SNMD-Modus",
|
||||
"SNND Mode": "SNND-Modus",
|
||||
"SSE Settings": "SSE-Einstellungen",
|
||||
"STS Key": "STS-Schlüssel",
|
||||
"STS Login": "STS-Anmeldung",
|
||||
"STS Session Token": "STS-Sitzungstoken",
|
||||
"STS Username": "STS-Benutzername",
|
||||
"Saturday": "Samstag",
|
||||
"Save": "Speichern",
|
||||
"Save Configuration": "Konfiguration speichern",
|
||||
"Save Failed": "Speichern fehlgeschlagen",
|
||||
"Save failed": "Speichern fehlgeschlagen",
|
||||
"Saved": "Gespeichert",
|
||||
"Scalability": "Skalierbarkeit",
|
||||
"Search": "Suchen",
|
||||
"Search Access Key": "Zugriffsschlüssel suchen",
|
||||
"Search Access User": "Zugriffsbenutzer suchen",
|
||||
"Search Account": "Konto suchen",
|
||||
"Search Group": "Gruppe suchen",
|
||||
"Search Policy": "Richtlinie suchen",
|
||||
"Search User": "Benutzer suchen",
|
||||
"Search User Group": "Benutzergruppe suchen",
|
||||
"Search buckets...": "Buckets suchen...",
|
||||
"Secret ID": "Geheimnis-ID",
|
||||
"Secret Key": "Geheimschlüssel",
|
||||
"Secret Key *": "Geheimschlüssel *",
|
||||
"Secret Key is required": "Geheimschlüssel ist erforderlich",
|
||||
"Secret Key length must be between 8 and 40 characters": "Die Länge des Geheimschlüssels muss zwischen 8 und 40 Zeichen liegen",
|
||||
"Secure & Reliable": "Sicher & Zuverlässig",
|
||||
"Secure Transport": "Sicherer Transport",
|
||||
"Select File": "Datei auswählen",
|
||||
"Select Folder": "Ordner auswählen",
|
||||
"Select Group": "Gruppe auswählen",
|
||||
"Select KMS key": "KMS-Schlüssel auswählen",
|
||||
"Select encryption algorithm": "Verschlüsselungsalgorithmus auswählen",
|
||||
"Select encryption type": "Verschlüsselungstyp auswählen",
|
||||
"Select events": "Ereignisse auswählen",
|
||||
"Select the KMS key to use for encryption": "KMS-Schlüssel für Verschlüsselung auswählen",
|
||||
"Select user group members": "Benutzergruppenmitglieder auswählen",
|
||||
"Select user group policies": "Benutzergruppenrichtlinien auswählen",
|
||||
"Selected Type": "Ausgewählter Typ",
|
||||
"Send events via MQTT broker": "Ereignisse über MQTT-Broker senden",
|
||||
"Server Address": "Serveradresse",
|
||||
"Server Configuration": "Serverkonfiguration",
|
||||
"Server Host": "Server-Host",
|
||||
"Server Information": "Serverinformationen",
|
||||
"Server List": "Server-Liste",
|
||||
"Server configuration saved successfully": "Serverkonfiguration erfolgreich gespeichert",
|
||||
"Server-Side Encryption (SSE) Configuration": "Serverseitige Verschlüsselung (SSE) Konfiguration",
|
||||
"Servers": "Server",
|
||||
"Service Email": "Service-E-Mail",
|
||||
"Service Hotline": "Service-Hotline",
|
||||
"Service Status": "Service-Status",
|
||||
"Set Policy": "Richtlinie setzen",
|
||||
"Set Retention": "Aufbewahrung setzen",
|
||||
"Set Tag": "Tag setzen",
|
||||
"Set Tags": "Tags setzen",
|
||||
"Set the prefix for the rule": "Präfix für die Regel setzen",
|
||||
"Set the time cycle for the rule": "Zeitzyklus für die Regel setzen",
|
||||
"Settings": "Einstellungen",
|
||||
"Single Machine Multiple Disks": "Einzelmaschine mehrere Festplatten",
|
||||
"Single Object": "Einzelnes Objekt",
|
||||
"Site Name": "Standortname",
|
||||
"Site Replication": "Standortreplikation",
|
||||
"Size": "Größe",
|
||||
"Skip": "Überspringen",
|
||||
"Sort by": "Sortieren nach",
|
||||
"Standard AWS S3 tier": "Standard AWS S3-Tier",
|
||||
"Standard Storage Parity": "Standard-Speicher-Parität",
|
||||
"Start KMS": "KMS starten",
|
||||
"Start Upload": "Upload starten",
|
||||
"Status": "Status",
|
||||
"Status refreshed successfully": "Status erfolgreich aktualisiert",
|
||||
"Stop KMS": "KMS stoppen",
|
||||
"Storage Class": "Speicherklasse",
|
||||
"Storage Space": "Speicherplatz",
|
||||
"Storage Type": "Speichertyp",
|
||||
"Storage Usage Statistics": "Speichernutzungsstatistiken",
|
||||
"Submit": "Absenden",
|
||||
"Subscribe to event notification": "Ereignisbenachrichtigung abonnieren",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Suffix",
|
||||
"Sunday": "Sonntag",
|
||||
"Support Level": "Support-Level",
|
||||
"Supported": "Unterstützt",
|
||||
"Supported CPU Architecture": "Unterstützte CPU-Architektur",
|
||||
"Supported OS": "Unterstütztes Betriebssystem",
|
||||
"Supports Erasure Coding": "Unterstützt Löschcodierung",
|
||||
"Supports HTTPS, TLS": "Unterstützt HTTPS, TLS",
|
||||
"Supports high concurrency operations": "Unterstützt Operationen mit hoher Nebenläufigkeit",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "Unterstützt die Verwaltung mehrerer Speicherfestplatten auf einem einzelnen Server, um die Speicherressourcennutzung zu verbessern und Verwaltung und Wartung zu vereinfachen",
|
||||
"Sync": "Synchronisieren",
|
||||
"Sync delete markers to destination bucket.": "Löschmarker zum Ziel-Bucket synchronisieren.",
|
||||
"Synchronous": "Synchron",
|
||||
"Tag": "Tag",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "Tag-Schlüssel",
|
||||
"Tag Key Placeholder": "Tag-Schlüssel Platzhalter",
|
||||
"Tag Name": "Tag-Name",
|
||||
"Tag Update Failed": "Tag aktualisieren fehlgeschlagen",
|
||||
"Tag Update Success": "Tag aktualisieren erfolgreich",
|
||||
"Tag Value": "Tag-Wert",
|
||||
"Tag Value Placeholder": "Tag-Wert Platzhalter",
|
||||
"Tags": "Tags",
|
||||
"Target Bucket": "Ziel-Bucket",
|
||||
"Task Completed": "Aufgabe abgeschlossen",
|
||||
"Task Management": "Aufgabenverwaltung",
|
||||
"Technical Parameters": "Technische Parameter",
|
||||
"Technical Training": "Technische Schulung",
|
||||
"Temporary URL": "Temporäre URL",
|
||||
"Temporary URL Expiration": "Temporäre URL Ablaufzeit",
|
||||
"Generate URL": "URL generieren",
|
||||
"URL generated successfully": "URL erfolgreich generiert",
|
||||
"Failed to generate URL": "URL konnte nicht generiert werden",
|
||||
"Total Duration": "Gesamtdauer",
|
||||
"Minutes": "Minuten",
|
||||
"Hours": "Stunden",
|
||||
"Days": "Tage",
|
||||
"Minutes must be between 0 and 59": "Minuten müssen zwischen 0 und 59 liegen",
|
||||
"Hours must be between 0 and 23": "Stunden müssen zwischen 0 und 23 liegen",
|
||||
"Hours must be between 0 and 24 when days is 0": "Stunden müssen zwischen 0 und 24 liegen, wenn Tage 0 ist",
|
||||
"Days must be between 0 and 7": "Tage müssen zwischen 0 und 7 liegen",
|
||||
"Total duration cannot exceed 7 days": "Gesamtdauer darf 7 Tage nicht überschreiten",
|
||||
"Please enter a valid expiration time": "Bitte gültige Ablaufzeit eingeben",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "Die exportierte Datei enthält sensible Informationen. Bitte bewahren Sie sie sicher auf.",
|
||||
"The two passwords are inconsistent": "Die beiden Passwörter stimmen nicht überein",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "Diese Aktion kann nicht rückgängig gemacht werden und umgeht den normalen Löschprozess.",
|
||||
"This action cannot be undone.": "Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||
"Thursday": "Donnerstag",
|
||||
"Tier": "Tier",
|
||||
"Tier Type": "Tier-Typ",
|
||||
"Tiered Storage": "Gestufter Speicher",
|
||||
"Tiering Transfer": "Tiering-Transfer",
|
||||
"Tiers": "Tiers",
|
||||
"Time Cycle": "Zeitzyklus",
|
||||
"Timeout": "Timeout",
|
||||
"Timeout (seconds)": "Timeout (Sekunden)",
|
||||
"Token": "Token",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "Höchste Verschlüsselungsschlüssel, die zum Verschlüsseln von Datenschlüsseln verwendet werden. Von KMS verwaltet und verlassen niemals das System.",
|
||||
"Total": "Gesamt",
|
||||
"Total Capacity": "Gesamtkapazität",
|
||||
"Total Files": "Gesamte Dateien",
|
||||
"Total Requests": "Gesamte Anfragen",
|
||||
"Transit Mount": "Transit-Mount",
|
||||
"Transit Mount Path": "Transit-Mount-Pfad",
|
||||
"Transit engine mount path, default: transit": "Transit-Engine-Mount-Pfad, Standard: transit",
|
||||
"Transition": "Übergang",
|
||||
"Trigger custom HTTP endpoints": "Benutzerdefinierte HTTP-Endpunkte auslösen",
|
||||
"Try adjusting your search terms": "Versuchen Sie, Ihre Suchbegriffe anzupassen",
|
||||
"Tuesday": "Dienstag",
|
||||
"Type": "Typ",
|
||||
"Understanding Key Types": "Schlüsseltypen verstehen",
|
||||
"Unknown": "Unbekannt",
|
||||
"Unknown Folder": "Unbekannter Ordner",
|
||||
"Unlimited": "Unbegrenzt",
|
||||
"Update Failed": "Aktualisieren fehlgeschlagen",
|
||||
"Update Key": "Schlüssel aktualisieren",
|
||||
"Update License": "Lizenz aktualisieren",
|
||||
"Update Success": "Aktualisieren erfolgreich",
|
||||
"Update failed": "Aktualisieren fehlgeschlagen",
|
||||
"Updated successfully": "Erfolgreich aktualisiert",
|
||||
"Upload": "Hochladen",
|
||||
"Upload File": "Datei hochladen",
|
||||
"Upload files or create folders to populate this bucket.": "Dateien hochladen oder Ordner erstellen, um diesen Bucket zu füllen.",
|
||||
"Uploading Status": "Upload-Status",
|
||||
"Uptime": "Betriebszeit",
|
||||
"Usage Report": "Nutzungsbericht",
|
||||
"Use AppRole authentication": "AppRole-Authentifizierung verwenden",
|
||||
"Use Main Account Policy": "Hauptkontorichtlinie verwenden",
|
||||
"Use TLS": "TLS verwenden",
|
||||
"Use Vault token for authentication": "Vault-Token für Authentifizierung verwenden",
|
||||
"Use main account policy": "Hauptkontorichtlinie verwenden",
|
||||
"Used": "Verwendet",
|
||||
"Used (7TB)": "Verwendet (7TB)",
|
||||
"Used Capacity": "Verwendete Kapazität",
|
||||
"User Groups": "Benutzergruppen",
|
||||
"User Name": "Benutzername",
|
||||
"Users": "Benutzer",
|
||||
"Validity": "Gültigkeit",
|
||||
"Vault Server": "Vault-Server",
|
||||
"Vault Server Address": "Vault-Serveradresse",
|
||||
"Vault Token": "Vault-Token",
|
||||
"Version": "Version",
|
||||
"Version 2.0, January 2004": "Version 2.0, Januar 2004",
|
||||
"Version Control": "Versionskontrolle",
|
||||
"VersionId": "Versions-ID",
|
||||
"Versions": "Versionen",
|
||||
"View Documentation": "Dokumentation anzeigen",
|
||||
"Virtualization Platform Support": "Virtualisierungsplattform-Unterstützung",
|
||||
"Visit website": "Website besuchen",
|
||||
"WARNING: This will immediately delete the key": "WARNUNG: Dies löscht den Schlüssel sofort",
|
||||
"WEBHOOK_AUTH_TOKEN": "Webhook-Authentifizierungstoken",
|
||||
"WEBHOOK_ENDPOINT": "Webhook-Endpunkt",
|
||||
"WEBHOOK_QUEUE_DIR": "Webhook-Warteschlangenverzeichnis",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhook-Warteschlangenlimit",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Warten",
|
||||
"waiting": "Warten",
|
||||
"Warning": "Warnung",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Mittwoch",
|
||||
"Weekly MB/s Change Trend": "Wöchentlicher MB/s Änderungstrend",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "JAHRE",
|
||||
"YYYY-MM-DD": "JJJJ-MM-TT",
|
||||
"YYYY-MM-DD HH:mm": "JJJJ-MM-TT HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "JJJJ-MM-TT HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "JJJJ-MM-TTTHH:mm",
|
||||
"Year": "Jahr",
|
||||
"Yes": "Ja",
|
||||
"Your browser does not support the audio tag": "Ihr Browser unterstützt das Audio-Tag nicht",
|
||||
"Your browser does not support the video tag": "Ihr Browser unterstützt das Video-Tag nicht",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "Passwortlänge darf nicht weniger als 8 Zeichen und nicht mehr als 16 Zeichen sein",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "Benutzernamenlänge darf nicht weniger als 8 Zeichen und nicht mehr als 16 Zeichen sein",
|
||||
"Validation failed": "Validierung fehlgeschlagen",
|
||||
"API request failed": "API-Anfrage fehlgeschlagen",
|
||||
"Operation failed": "Operation fehlgeschlagen",
|
||||
"Create a user to get started": "Einen Benutzer erstellen, um zu beginnen",
|
||||
"Get Notification Config Failed": "Benachrichtigungskonfiguration abrufen fehlgeschlagen",
|
||||
"empty is indicates permanent validity": "Leer bedeutet dauerhafte Gültigkeit",
|
||||
"Create user groups to organize permissions": "Benutzergruppen erstellen, um Berechtigungen zu organisieren",
|
||||
"Filter From This Page": "Von dieser Seite filtern"
|
||||
}
|
||||
+14
-6
@@ -111,6 +111,7 @@
|
||||
"Cache time-to-live in seconds, default: 600": "Cache time-to-live in seconds, default: 600",
|
||||
"Cancel": "Cancel",
|
||||
"Canceled": "Canceled",
|
||||
"canceled": "Canceled",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Change Password",
|
||||
"Change Secret Key": "Change Secret Key",
|
||||
@@ -251,7 +252,8 @@
|
||||
"Exporting...": "Exporting...",
|
||||
"External MinIO tier": "External MinIO tier",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Failed Status",
|
||||
"Failed Status": "Failed",
|
||||
"failed": "Failed",
|
||||
"Failed to clear cache": "Failed to clear cache",
|
||||
"Failed to configure bucket encryption": "Failed to configure bucket encryption",
|
||||
"Failed to create event target": "Failed to create event target",
|
||||
@@ -314,7 +316,8 @@
|
||||
"Import Success": "Import Success",
|
||||
"Import/Export": "Import/Export",
|
||||
"Importing...": "Importing...",
|
||||
"In Progress": "{total} tasks in progress ({deleting} deleting, {completed} completed)",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "In Progress",
|
||||
"Inactive": "Inactive",
|
||||
"Include objects that already exist in the source bucket.": "Include objects that already exist in the source bucket.",
|
||||
"Infinite Scaling": "Infinite Scaling",
|
||||
@@ -491,7 +494,9 @@
|
||||
"Page {current} of {total}": "Page {current} of {total}",
|
||||
"Password": "Password",
|
||||
"Pause": "Pause",
|
||||
"Paused": "Paused({count})",
|
||||
"Paused": "Paused",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "Paused",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Pending Deletion",
|
||||
"Performance": "Performance",
|
||||
@@ -565,7 +570,8 @@
|
||||
"Previous Page": "Previous Page",
|
||||
"Priority": "Priority",
|
||||
"Private": "Private",
|
||||
"Processing": "Processing({count})",
|
||||
"Processing": "Processing",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Public",
|
||||
"Public, Private, Custom": "Public, Private, Custom",
|
||||
@@ -694,7 +700,8 @@
|
||||
"Storage Usage Statistics": "Storage Usage Statistics",
|
||||
"Submit": "Submit",
|
||||
"Subscribe to event notification": "Subscribe to event notification",
|
||||
"Success Status": "Success Status",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Suffix",
|
||||
"Sunday": "Sunday",
|
||||
"Support Level": "Support Level",
|
||||
@@ -775,6 +782,7 @@
|
||||
"Update Success": "Update Success",
|
||||
"Update failed": "Update failed",
|
||||
"Updated successfully": "Updated successfully",
|
||||
"Upload": "Upload",
|
||||
"Upload File": "Upload File",
|
||||
"Upload files or create folders to populate this bucket.": "Upload files or create folders to populate this bucket.",
|
||||
"Uploading Status": "Uploading Status",
|
||||
@@ -810,6 +818,7 @@
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhook Queue Limit",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Waiting",
|
||||
"waiting": "Waiting",
|
||||
"Warning": "Warning",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Wednesday",
|
||||
@@ -857,7 +866,6 @@
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"success": "success",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(Los detalles de configuración son privados)",
|
||||
"(Configured)": "(Configurado)",
|
||||
"API Base URL": "URL Base de la API",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "Control de Acceso",
|
||||
"Access Key": "Clave de Acceso",
|
||||
"Access Key *": "Clave de Acceso *",
|
||||
"Access Key is required": "La clave de acceso es obligatoria",
|
||||
"Access Key length must be between 3 and 20 characters": "La longitud de la clave de acceso debe estar entre 3 y 20 caracteres",
|
||||
"Access Keys": "Claves de Acceso",
|
||||
"Access Policy": "Política de Acceso",
|
||||
"Account": "Cuenta",
|
||||
"Action": "Acción",
|
||||
"Actions": "Acciones",
|
||||
"Active": "Activo",
|
||||
"Add": "Añadir",
|
||||
"Add Access Key": "Añadir Clave de Acceso",
|
||||
"Add Account": "Añadir Cuenta",
|
||||
"Add Event Destination": "Añadir Destino de Evento",
|
||||
"Add Event Subscription": "Añadir Suscripción de Evento",
|
||||
"Add Event Subscription to get started": "Añade una suscripción de evento para comenzar",
|
||||
"Add Failed": "Error al Añadir",
|
||||
"Add Lifecycle Rule": "Añadir Regla de Ciclo de Vida",
|
||||
"Add Replication Rule": "Añadir Regla de Replicación",
|
||||
"Add Site": "Añadir Sitio",
|
||||
"Add Site Replication": "Añadir Replicación de Sitio",
|
||||
"Add Success": "Añadido Exitosamente",
|
||||
"Add Tag": "Añadir Etiqueta",
|
||||
"Add Tier": "Añadir Nivel",
|
||||
"Add User": "Añadir Usuario",
|
||||
"Add User Group": "Añadir Grupo de Usuarios",
|
||||
"Add failed": "Error al añadir",
|
||||
"Add group members": "Añadir miembros del grupo",
|
||||
"Add replication rules to sync objects across buckets.": "Añade reglas de replicación para sincronizar objetos entre buckets.",
|
||||
"Add success": "Añadido exitosamente",
|
||||
"Add tiers to configure remote storage destinations.": "Añade niveles para configurar destinos de almacenamiento remoto.",
|
||||
"Add to Group": "Añadir al Grupo",
|
||||
"Add {type} Destination": "Añadir Destino {type}",
|
||||
"Added successfully": "Añadido exitosamente",
|
||||
"Adding to Upload Queue": "Añadiendo a la Cola de Carga",
|
||||
"Advanced Monitoring": "Monitoreo Avanzado",
|
||||
"Advanced Settings": "Configuraciones Avanzadas",
|
||||
"Algorithm": "Algoritmo",
|
||||
"Amazon Resource Name": "Nombre de Recurso de Amazon",
|
||||
"Apache License": "Licencia Apache",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "ID de Rol AppRole de Vault",
|
||||
"AppRole Secret ID from Vault": "ID Secreto AppRole de Vault",
|
||||
"Are you sure you want to delete all selected keys?": "¿Está seguro de que desea eliminar todas las claves seleccionadas?",
|
||||
"Are you sure you want to delete all selected user groups?": "¿Está seguro de que desea eliminar todos los grupos de usuarios seleccionados?",
|
||||
"Are you sure you want to delete all selected users?": "¿Está seguro de que desea eliminar todos los usuarios seleccionados?",
|
||||
"Are you sure you want to delete the selected objects?": "¿Está seguro de que desea eliminar los objetos seleccionados?",
|
||||
"Are you sure you want to delete this bucket?": "¿Está seguro de que desea eliminar este bucket?",
|
||||
"Are you sure you want to delete this destination?": "¿Está seguro de que desea eliminar este destino?",
|
||||
"Are you sure you want to delete this key?": "¿Está seguro de que desea eliminar esta clave?",
|
||||
"Are you sure you want to delete this notification configuration?": "¿Está seguro de que desea eliminar esta configuración de notificación?",
|
||||
"Are you sure you want to delete this object?": "¿Está seguro de que desea eliminar este objeto?",
|
||||
"Are you sure you want to delete this policy?": "¿Está seguro de que desea eliminar esta política?",
|
||||
"Are you sure you want to delete this replication rule?": "¿Está seguro de que desea eliminar esta regla de replicación?",
|
||||
"Are you sure you want to delete this rule?": "¿Está seguro de que desea eliminar esta regla?",
|
||||
"Are you sure you want to delete this tier?": "¿Está seguro de que desea eliminar este nivel?",
|
||||
"Are you sure you want to force delete this key?": "¿Está seguro de que desea forzar la eliminación de esta clave?",
|
||||
"Are you sure you want to remove encryption?": "¿Está seguro de que desea eliminar el cifrado?",
|
||||
"Assign Policy": "Asignar Política",
|
||||
"Asynchronous": "Asíncrono",
|
||||
"Audit": "Auditoría",
|
||||
"Auth Method": "Método de Autenticación",
|
||||
"Authentication Method": "Método de Autenticación",
|
||||
"Authorization": "Autorización",
|
||||
"Auto": "Automático",
|
||||
"Automatically inherit the main account policy when enabled.": "Heredar automáticamente la política de la cuenta principal cuando esté habilitado.",
|
||||
"Available": "Disponible",
|
||||
"Backend": "Backend",
|
||||
"Backend Services": "Servicios Backend",
|
||||
"Backend Status": "Estado del Backend",
|
||||
"Backend Type": "Tipo de Backend",
|
||||
"Bandwidth Limit": "Límite de Ancho de Banda",
|
||||
"Batch allocation policies": "Políticas de asignación por lotes",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "Navegador",
|
||||
"Browser Warning": "Advertencia del Navegador",
|
||||
"Bucket": "Bucket",
|
||||
"Bucket Configuration": "Configuración del Bucket",
|
||||
"Bucket Count": "Recuento de Buckets",
|
||||
"Bucket Encryption Management": "Gestión de Cifrado del Bucket",
|
||||
"Bucket Events": "Eventos del Bucket",
|
||||
"Bucket Notification": "Notificación del Bucket",
|
||||
"Bucket Policy": "Política del Bucket",
|
||||
"Bucket Quota": "Cuota del Bucket",
|
||||
"Bucket Replication": "Replicación del Bucket",
|
||||
"Bucket Setting": "Configuración del Bucket",
|
||||
"Bucket encryption configured successfully": "Cifrado del bucket configurado exitosamente",
|
||||
"Bucket encryption removed successfully": "Cifrado del bucket eliminado exitosamente",
|
||||
"Bucket is not empty": "El bucket no está vacío",
|
||||
"Bucket list refreshed": "Lista de buckets actualizada",
|
||||
"Buckets": "Buckets",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "Caché Habilitado",
|
||||
"Cache Hits": "Aciertos de Caché",
|
||||
"Cache Misses": "Fallos de Caché",
|
||||
"Cache Statistics": "Estadísticas de Caché",
|
||||
"Cache Status": "Estado de la Caché",
|
||||
"Cache TTL": "TTL de la Caché",
|
||||
"Cache TTL (seconds)": "TTL de la Caché (segundos)",
|
||||
"Cache Warning": "Advertencia de Caché",
|
||||
"Cache clear completed with warnings": "Limpieza de caché completada con advertencias",
|
||||
"Cache cleared successfully": "Caché limpiada exitosamente",
|
||||
"Cache time-to-live in seconds, default: 600": "Tiempo de vida de la caché en segundos, predeterminado: 600",
|
||||
"Cancel": "Cancelar",
|
||||
"Canceled": "Cancelado",
|
||||
"canceled": "Cancelado",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Cambiar Contraseña",
|
||||
"Change Secret Key": "Cambiar Clave Secreta",
|
||||
"Change current account password": "Cambiar contraseña de la cuenta actual",
|
||||
"Confirm New Secret Key": "Confirmar Nueva Clave Secreta",
|
||||
"Choose the encryption method for this bucket": "Elija el método de cifrado para este bucket",
|
||||
"Clear All": "Limpiar Todo",
|
||||
"Clear Cache": "Limpiar Caché",
|
||||
"Clear Records": "Limpiar Registros",
|
||||
"Click or drag ZIP file to this area to upload": "Haga clic o arrastre el archivo ZIP a esta área para cargar",
|
||||
"Close": "Cerrar",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "Configuración",
|
||||
"Configuration Information": "Información de Configuración",
|
||||
"Configuration is saved locally in your browser": "La configuración se guarda localmente en su navegador",
|
||||
"Configuration loaded successfully": "Configuración cargada exitosamente",
|
||||
"Configuration reset successfully": "Configuración restablecida exitosamente",
|
||||
"Configuration saved successfully": "Configuración guardada exitosamente",
|
||||
"Configure": "Configurar",
|
||||
"Configure Bucket Encryption": "Configurar Cifrado del Bucket",
|
||||
"Configure Encryption": "Configurar Cifrado",
|
||||
"Configure Encryption for {bucket}": "Configurar Cifrado para {bucket}",
|
||||
"Configure KMS": "Configurar KMS",
|
||||
"Configure server-side encryption for your objects using external key management services.": "Configure el cifrado del lado del servidor para sus objetos utilizando servicios externos de gestión de claves.",
|
||||
"Configured": "Configurado",
|
||||
"Confirm": "Confirmar",
|
||||
"Confirm Delete": "Confirmar Eliminación",
|
||||
"Confirm Force Delete": "Confirmar Eliminación Forzada",
|
||||
"Confirm New Password": "Confirmar Nueva Contraseña",
|
||||
"Confirm Remove Encryption": "Confirmar Eliminación de Cifrado",
|
||||
"Contact Support": "Contactar Soporte",
|
||||
"Copy": "Copiar",
|
||||
"Copy Failed": "Error al Copiar",
|
||||
"Copy Success": "Copia Exitosa",
|
||||
"Copy Temporary URL": "Copiar URL Temporal",
|
||||
"Create": "Crear",
|
||||
"Create Bucket": "Crear Bucket",
|
||||
"Create Failed": "Error al Crear",
|
||||
"Create First Key": "Crear Primera Clave",
|
||||
"Create Key": "Crear Clave",
|
||||
"Create New Key": "Crear Nueva Clave",
|
||||
"Create Success": "Creación Exitosa",
|
||||
"Create User": "Crear Usuario",
|
||||
"Create a bucket to start storing objects.": "Cree un bucket para comenzar a almacenar objetos.",
|
||||
"Create a new access key to get started.": "Cree una nueva clave de acceso para comenzar.",
|
||||
"Create a policy to manage access control templates.": "Cree una política para gestionar plantillas de control de acceso.",
|
||||
"Create an event destination to forward notifications.": "Cree un destino de evento para reenviar notificaciones.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "Cree reglas de ciclo de vida para automatizar transiciones y expiración de objetos.",
|
||||
"Create your first KMS key to get started": "Cree su primera clave KMS para comenzar",
|
||||
"Create your first bucket to configure encryption": "Cree su primer bucket para configurar cifrado",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "Cree, rote e inspeccione las claves gestionadas por su backend KMS.",
|
||||
"Created": "Creado",
|
||||
"Creation Date": "Fecha de Creación",
|
||||
"Current Configuration": "Configuración Actual",
|
||||
"Current KMS Type": "Tipo de KMS Actual",
|
||||
"Current Password": "Contraseña Actual",
|
||||
"Current Prefix": "Prefijo Actual",
|
||||
"Current Site": "Sitio Actual",
|
||||
"Current User Policy": "Política de Usuario Actual",
|
||||
"Current Version": "Versión Actual",
|
||||
"Current user policy": "Política de usuario actual",
|
||||
"Custom": "Personalizado",
|
||||
"Customer Service": "Servicio al Cliente",
|
||||
"DAYS": "DÍAS",
|
||||
"Dark": "Oscuro",
|
||||
"Data Backup": "Respaldo de Datos",
|
||||
"Data Key (DEK)": "Clave de Datos (DEK)",
|
||||
"Data Keys (DEK)": "Claves de Datos (DEK)",
|
||||
"Data Redundancy": "Redundancia de Datos",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "Las claves de datos se generan automáticamente al cifrar archivos. Están cifradas por claves maestras y se utilizan para el cifrado real de datos.",
|
||||
"Day": "Día",
|
||||
"Days After": "Días Después",
|
||||
"Default Key ID": "ID de Clave Predeterminado",
|
||||
"Default master key ID for SSE-KMS": "ID de clave maestra predeterminado para SSE-KMS",
|
||||
"Delete": "Eliminar",
|
||||
"Delete Failed": "Error al Eliminar",
|
||||
"Delete Key": "Eliminar Clave",
|
||||
"Delete Marker Handling": "Manejo de Marcadores de Eliminación",
|
||||
"Delete Record": "Eliminar Registro",
|
||||
"Delete Selected": "Eliminar Seleccionados",
|
||||
"Delete Success": "Eliminación Exitosa",
|
||||
"Delete Tag Confirm": "Confirmar Eliminación de Etiqueta",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "Eliminando...",
|
||||
"Description": "Descripción",
|
||||
"Destination Bucket": "Bucket de Destino",
|
||||
"Detailed KMS Status": "Estado Detallado de KMS",
|
||||
"Details": "Detalles",
|
||||
"Development Language Requirements": "Requisitos de Idioma de Desarrollo",
|
||||
"Disabled": "Deshabilitado",
|
||||
"Disk Bad Spot Check": "Verificación de Puntos Malos del Disco",
|
||||
"Disks": "Discos",
|
||||
"Documentation": "Documentación",
|
||||
"Download": "Descargar",
|
||||
"Download complete IAM configuration as ZIP file": "Descargar configuración completa de IAM como archivo ZIP",
|
||||
"Drag Drop Info": "Información de Arrastrar y Soltar",
|
||||
"EC Mode": "Modo EC",
|
||||
"Edit": "Editar",
|
||||
"Edit Configuration": "Editar Configuración",
|
||||
"Edit Failed": "Error al Editar",
|
||||
"Edit Group": "Editar Grupo",
|
||||
"Edit Key": "Editar Clave",
|
||||
"Edit Policy": "Editar Política",
|
||||
"Edit Success": "Edición Exitosa",
|
||||
"Edit User": "Editar Usuario",
|
||||
"Emergency Response": "Respuesta de Emergencia",
|
||||
"Enable Cache": "Habilitar Caché",
|
||||
"Enable Storage Encryption": "Habilitar Cifrado de Almacenamiento",
|
||||
"Enable caching for better performance, default: true": "Habilitar caché para mejor rendimiento, predeterminado: true",
|
||||
"Enable secure transport when connecting to endpoint.": "Habilitar transporte seguro al conectar al endpoint.",
|
||||
"Enabled": "Habilitado",
|
||||
"Encryption": "Cifrado",
|
||||
"Encryption Status": "Estado del Cifrado",
|
||||
"Encryption Type": "Tipo de Cifrado",
|
||||
"Encryption algorithm for the key.": "Algoritmo de cifrado para la clave.",
|
||||
"Endpoint": "Endpoint",
|
||||
"Endpoint *": "Endpoint *",
|
||||
"Endpoint is required": "El endpoint es obligatorio",
|
||||
"Enter AppRole Role ID": "Ingrese el ID de Rol AppRole",
|
||||
"Enter AppRole Secret ID": "Ingrese el ID Secreto AppRole",
|
||||
"Enter your Vault authentication token": "Ingrese su token de autenticación de Vault",
|
||||
"Enterprise": "Enterprise",
|
||||
"Enterprise License": "Licencia Enterprise",
|
||||
"Enterprise Service Level": "Nivel de Servicio Enterprise",
|
||||
"Error": "Error",
|
||||
"Event Destinations": "Destinos de Evento",
|
||||
"Event Target created successfully": "Destino de evento creado exitosamente",
|
||||
"Events": "Eventos",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "Ejemplo: http://localhost:9000 o https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "Los objetos cifrados existentes permanecerán cifrados.",
|
||||
"Expiration": "Expiración",
|
||||
"Expiration Delete Mark": "Marca de Eliminación de Expiración",
|
||||
"Expired": "Expirado",
|
||||
"Expiry": "Expiración",
|
||||
"Export": "Exportar",
|
||||
"Export Now": "Exportar Ahora",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "Exporte todas las configuraciones de IAM incluyendo usuarios, grupos, políticas y claves de acceso en un archivo ZIP.",
|
||||
"Exporting...": "Exportando...",
|
||||
"External MinIO tier": "Nivel MinIO externo",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Fallido({count})",
|
||||
"failed": "Fallido({count})",
|
||||
"Failed to clear cache": "Error al limpiar la caché",
|
||||
"Failed to configure bucket encryption": "Error al configurar el cifrado del bucket",
|
||||
"Failed to create event target": "Error al crear destino de evento",
|
||||
"Failed to create rule": "Error al crear regla",
|
||||
"Failed to delete key": "Error al eliminar clave",
|
||||
"Failed to export IAM configuration": "Error al exportar configuración de IAM",
|
||||
"Failed to fetch KMS keys": "Error al obtener claves KMS",
|
||||
"Failed to fetch data": "Error al obtener datos",
|
||||
"Failed to fetch object info": "Error al obtener información del objeto",
|
||||
"Failed to fetch versions": "Error al obtener versiones",
|
||||
"Failed to force delete key": "Error al forzar eliminación de clave",
|
||||
"Failed to get data": "Error al obtener datos",
|
||||
"Failed to get detailed status": "Error al obtener estado detallado",
|
||||
"Failed to get key details": "Error al obtener detalles de la clave",
|
||||
"Failed to import IAM configuration": "Error al importar configuración de IAM",
|
||||
"Failed to load KMS status": "Error al cargar estado de KMS",
|
||||
"Failed to load bucket list": "Error al cargar lista de buckets",
|
||||
"Failed to load current configuration": "Error al cargar configuración actual",
|
||||
"Failed to load key list": "Error al cargar lista de claves",
|
||||
"Failed to refresh key list": "Error al actualizar lista de claves",
|
||||
"Failed to refresh status": "Error al actualizar estado",
|
||||
"Failed to remove bucket encryption": "Error al eliminar cifrado del bucket",
|
||||
"Failed to save configuration": "Error al guardar configuración",
|
||||
"Failed to save key": "Error al guardar clave",
|
||||
"Failed to set local development mode": "Error al establecer modo de desarrollo local",
|
||||
"Failed to start KMS service": "Error al iniciar servicio KMS",
|
||||
"Failed to stop KMS service": "Error al detener servicio KMS",
|
||||
"Feature Permissions": "Permisos de Funcionalidad",
|
||||
"File Count Limit Exceeded": "Límite de Recuento de Archivos Excedido",
|
||||
"File Size Limit": "Límite de Tamaño de Archivo",
|
||||
"File size exceeds limit (10MB)": "El tamaño del archivo excede el límite (10MB)",
|
||||
"Files": "Archivos",
|
||||
"First": "Primero",
|
||||
"Folder": "Carpeta",
|
||||
"Folder Processing Error": "Error de Procesamiento de Carpeta",
|
||||
"Force Delete": "Forzar Eliminación",
|
||||
"Friday": "Viernes",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "Las cargas futuras a este bucket no estarán cifradas por defecto.",
|
||||
"GOVERNANCE": "GOBIERNO",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "Generado a partir de claves maestras para cifrar sus archivos. Creado automáticamente al cifrar datos.",
|
||||
"Get Data Failed": "Error al Obtener Datos",
|
||||
"Get Help": "Obtener Ayuda",
|
||||
"Groups": "Grupos",
|
||||
"HashiCorp Encryption": "Cifrado HashiCorp",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "Intervalo de Verificación de Salud (segundos)",
|
||||
"High Memory Usage Warning": "Advertencia de Alto Uso de Memoria",
|
||||
"High Performance": "Alto Rendimiento",
|
||||
"Hit Rate": "Tasa de Aciertos",
|
||||
"IAM Configuration Export": "Exportación de Configuración de IAM",
|
||||
"IAM Configuration Import": "Importación de Configuración de IAM",
|
||||
"IAM Policies": "Políticas de IAM",
|
||||
"IAM configuration exported successfully": "Configuración de IAM exportada exitosamente",
|
||||
"IAM configuration imported successfully": "Configuración de IAM importada exitosamente",
|
||||
"Identity Authentication Expansion": "Expansión de Autenticación de Identidad",
|
||||
"If no versions remain, delete references to this object": "Si no quedan versiones, elimine las referencias a este objeto",
|
||||
"Import": "Importar",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "Importe configuraciones de IAM desde un archivo ZIP previamente exportado.",
|
||||
"Import Now": "Importar Ahora",
|
||||
"Import Success": "Importación Exitosa",
|
||||
"Import/Export": "Importar/Exportar",
|
||||
"Importing...": "Importando...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total} tareas en progreso ({processing} procesando, {completed} completadas)",
|
||||
"Inactive": "Inactivo",
|
||||
"Include objects that already exist in the source bucket.": "Incluir objetos que ya existen en el bucket de origen.",
|
||||
"Infinite Scaling": "Escalabilidad Infinita",
|
||||
"Info": "Información",
|
||||
"Infrastructure Health": "Salud de la Infraestructura",
|
||||
"Inspect individual server health, disk utilization, and network status.": "Inspeccione la salud del servidor individual, utilización del disco y estado de la red.",
|
||||
"Invalid server address format": "Formato de dirección de servidor inválido",
|
||||
"JSON Editor": "Editor JSON",
|
||||
"KMS Configuration": "Configuración de KMS",
|
||||
"KMS Key": "Clave KMS",
|
||||
"KMS Key ID": "ID de Clave KMS",
|
||||
"KMS Keys Management": "Gestión de Claves KMS",
|
||||
"KMS Status Overview": "Resumen del Estado de KMS",
|
||||
"KMS Type": "Tipo de KMS",
|
||||
"KMS is not configured, please configure it first": "KMS no está configurado, configúrelo primero",
|
||||
"KMS server has errors": "El servidor KMS tiene errores",
|
||||
"KMS server is configured but not running": "El servidor KMS está configurado pero no está en ejecución",
|
||||
"KMS server is not configured": "El servidor KMS no está configurado",
|
||||
"KMS server is running and healthy": "El servidor KMS está en ejecución y saludable",
|
||||
"KMS server is running but unhealthy": "El servidor KMS está en ejecución pero no saludable",
|
||||
"KMS server is running, configuration details are private": "El servidor KMS está en ejecución, los detalles de configuración son privados",
|
||||
"KMS server status unknown": "Estado del servidor KMS desconocido",
|
||||
"KMS service has errors": "El servicio KMS tiene errores",
|
||||
"KMS service is stopped": "El servicio KMS está detenido",
|
||||
"KMS service not initialized, please configure it first": "Servicio KMS no inicializado, configúrelo primero",
|
||||
"KMS service started successfully": "Servicio KMS iniciado exitosamente",
|
||||
"KMS service stopped successfully": "Servicio KMS detenido exitosamente",
|
||||
"KV Mount": "Montaje KV",
|
||||
"KV Mount Path": "Ruta de Montaje KV",
|
||||
"KV storage mount path, default: secret": "Ruta de montaje de almacenamiento KV, predeterminado: secret",
|
||||
"Key": "Clave",
|
||||
"Key Creation": "Creación de Clave",
|
||||
"Key Directory": "Directorio de Claves",
|
||||
"Key Expiration": "Expiración de Clave",
|
||||
"Key ID": "ID de Clave",
|
||||
"Key List": "Lista de Claves",
|
||||
"Key Login": "Inicio de Sesión por Clave",
|
||||
"Key Name": "Nombre de Clave",
|
||||
"Key Path Prefix": "Prefijo de Ruta de Clave",
|
||||
"Key created successfully": "Clave creada exitosamente",
|
||||
"Key deleted successfully": "Clave eliminada exitosamente",
|
||||
"Key force deleted successfully": "Clave eliminada forzadamente exitosamente",
|
||||
"Key is already pending deletion": "La clave ya está pendiente de eliminación",
|
||||
"Key list refreshed": "Lista de claves actualizada",
|
||||
"Key services and configuration values reported by the cluster.": "Servicios de claves y valores de configuración reportados por el clúster.",
|
||||
"Key storage path prefix in KV store": "Prefijo de ruta de almacenamiento de claves en el almacén KV",
|
||||
"Large File Count Warning": "Advertencia de Gran Recuento de Archivos",
|
||||
"Last": "Último",
|
||||
"Last Modified": "Última Modificación",
|
||||
"Last Modified Time": "Hora de Última Modificación",
|
||||
"Last Normal Operation": "Última Operación Normal",
|
||||
"Last Scan Activity": "Última Actividad de Escaneo",
|
||||
"LastModified": "Última Modificación",
|
||||
"Leave empty to use current host as default": "Deje vacío para usar el host actual como predeterminado",
|
||||
"Legal Hold": "Retención Legal",
|
||||
"License": "Licencia",
|
||||
"License Details": "Detalles de la Licencia",
|
||||
"License Key": "Clave de Licencia",
|
||||
"License Valid Until": "Licencia Válida Hasta",
|
||||
"Licensed Company": "Empresa Licenciada",
|
||||
"Licensed Users": "Usuarios Licenciados",
|
||||
"Lifecycle": "Ciclo de Vida",
|
||||
"Lifecycle Management": "Gestión del Ciclo de Vida",
|
||||
"Light": "Claro",
|
||||
"Load Balancing": "Balanceo de Carga",
|
||||
"Loading buckets...": "Cargando buckets...",
|
||||
"Loading keys...": "Cargando claves...",
|
||||
"Local development mode set successfully": "Modo de desarrollo local establecido exitosamente",
|
||||
"Login": "Iniciar Sesión",
|
||||
"Login Failed": "Error al Iniciar Sesión",
|
||||
"Login Problems?": "¿Problemas al Iniciar Sesión?",
|
||||
"Login Success": "Inicio de Sesión Exitoso",
|
||||
"Logout": "Cerrar Sesión",
|
||||
"Logs": "Registros",
|
||||
"MNMD Mode": "Modo MNMD",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "Broker MQTT",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "Intervalo Keep Alive MQTT",
|
||||
"MQTT_PASSWORD": "Contraseña MQTT",
|
||||
"MQTT_QOS": "QoS MQTT",
|
||||
"MQTT_QUEUE_DIR": "Directorio de Cola MQTT",
|
||||
"MQTT_QUEUE_LIMIT": "Límite de Cola MQTT",
|
||||
"MQTT_RECONNECT_INTERVAL": "Intervalo de Reconexión MQTT",
|
||||
"MQTT_TOPIC": "Tema MQTT",
|
||||
"MQTT_USERNAME": "Nombre de Usuario MQTT",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "ID de clave principal (nombre de clave Transit). Use un ID legible relacionado con el negocio.",
|
||||
"Make sure the server address is accessible from your network": "Asegúrese de que la dirección del servidor sea accesible desde su red",
|
||||
"Manage how RustFS connects to your external key management service.": "Gestione cómo RustFS se conecta a su servicio externo de gestión de claves.",
|
||||
"Master Key": "Clave Maestra",
|
||||
"Master Key (CMK)": "Clave Maestra (CMK)",
|
||||
"Master Keys (CMK)": "Claves Maestras (CMK)",
|
||||
"Max 50TB": "Máx 50TB",
|
||||
"Members": "Miembros",
|
||||
"Memory Critical": "Memoria Crítica",
|
||||
"Memory High": "Memoria Alta",
|
||||
"Memory Low": "Memoria Baja",
|
||||
"Memory Medium": "Memoria Media",
|
||||
"Memory Usage": "Uso de Memoria",
|
||||
"Memory Warning": "Advertencia de Memoria",
|
||||
"Metrics": "Métricas",
|
||||
"Minio": "Minio",
|
||||
"Mode": "Modo",
|
||||
"Monday": "Lunes",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "Monitoree el uso general del almacenamiento y la actividad reciente del escáner de un vistazo.",
|
||||
"More Configurations": "Más Configuraciones",
|
||||
"Multi-Cloud Storage": "Almacenamiento Multi-Nube",
|
||||
"Multipart Upload": "Carga Multiparte",
|
||||
"Name": "Nombre",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "¿Necesita ayuda?",
|
||||
"Network": "Red",
|
||||
"New File": "Nuevo Archivo",
|
||||
"New Folder": "Nueva Carpeta",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "Nueva Contraseña",
|
||||
"New Secret Key": "Nueva Clave Secreta",
|
||||
"New Policy": "Nueva Política",
|
||||
"New user has been created": "Nuevo usuario ha sido creado",
|
||||
"Next": "Siguiente",
|
||||
"Next Page": "Página Siguiente",
|
||||
"No": "No",
|
||||
"No Access Keys": "Sin Claves de Acceso",
|
||||
"No Buckets": "Sin Buckets",
|
||||
"No Data": "Sin Datos",
|
||||
"No Destinations": "Sin Destinos",
|
||||
"No KMS configuration found": "No se encontró configuración de KMS",
|
||||
"No KMS keys found": "No se encontraron claves KMS",
|
||||
"No License": "Sin Licencia",
|
||||
"No Objects": "Sin Objetos",
|
||||
"Show Deleted Objects": "Mostrar Objetos Eliminados",
|
||||
"No Policies": "Sin Políticas",
|
||||
"No Selection": "Sin Selección",
|
||||
"No Tasks": "Sin Tareas",
|
||||
"No Tiers": "Sin Niveles",
|
||||
"No Versions": "Sin Versiones",
|
||||
"No bucket selected": "No hay bucket seleccionado",
|
||||
"No buckets found": "No se encontraron buckets",
|
||||
"No buckets match your search": "No hay buckets que coincidan con su búsqueda",
|
||||
"No status data available": "No hay datos de estado disponibles",
|
||||
"No valid events found after conversion": "No se encontraron eventos válidos después de la conversión",
|
||||
"Non-current Version": "Versión No Actual",
|
||||
"Normal": "Normal",
|
||||
"Not Configured": "No Configurado",
|
||||
"Not configured": "No configurado",
|
||||
"Not specified": "No especificado",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "Nota: los valores AccessKey y SecretKey son obligatorios para cada sitio al añadir o editar sitios pares",
|
||||
"Notice": "Aviso",
|
||||
"Number of retry attempts, default: 3": "Número de intentos de reintento, predeterminado: 3",
|
||||
"Object": "Objeto",
|
||||
"Object Count": "Recuento de Objetos",
|
||||
"Object Detail Description": "Descripción Detallada del Objeto",
|
||||
"Object Details": "Detalles del Objeto",
|
||||
"Object Lock": "Bloqueo de Objeto",
|
||||
"Object Name": "Nombre del Objeto",
|
||||
"Object Repair": "Reparación de Objeto",
|
||||
"Object Sharing": "Compartir Objeto",
|
||||
"Object Size": "Tamaño del Objeto",
|
||||
"Object Tags": "Etiquetas del Objeto",
|
||||
"Object Type": "Tipo de Objeto",
|
||||
"Object Version": "Versión del Objeto",
|
||||
"Object Versions": "Versiones del Objeto",
|
||||
"Object lock is not enabled, cannot set retention": "El bloqueo de objeto no está habilitado, no se puede establecer retención",
|
||||
"Objects": "Objetos",
|
||||
"Off": "Desactivado",
|
||||
"Offline": "Desconectado",
|
||||
"On": "Activado",
|
||||
"On-site Deployment": "Despliegue en Sitio",
|
||||
"On-site Technical Service": "Servicio Técnico en Sitio",
|
||||
"One-hour Response": "Respuesta de Una Hora",
|
||||
"Online": "En Línea",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "Solo se admiten archivos ZIP y el tamaño del archivo no debe exceder 10MB",
|
||||
"Overwrite Warning": "Advertencia de Sobrescritura",
|
||||
"Page will refresh automatically after saving configuration": "La página se actualizará automáticamente después de guardar la configuración",
|
||||
"Page {current} of {total}": "Página {current} de {total}",
|
||||
"Password": "Contraseña",
|
||||
"Pause": "Pausar",
|
||||
"Paused": "En Pausa",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "En Pausa",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Eliminación Pendiente",
|
||||
"Performance": "Rendimiento",
|
||||
"Platinum Service": "Servicio Platino",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "Configure la dirección de su servidor RustFS",
|
||||
"Please enter": "Ingrese",
|
||||
"Please enter Access Key": "Ingrese la Clave de Acceso",
|
||||
"Please enter STS key": "Ingrese la clave STS",
|
||||
"Please enter STS session token": "Ingrese el token de sesión STS",
|
||||
"Please enter STS username": "Ingrese el nombre de usuario STS",
|
||||
"Please enter Secret Key": "Ingrese la Clave Secreta",
|
||||
"Please enter Vault server address": "Ingrese la dirección del servidor Vault",
|
||||
"Please enter Vault token": "Ingrese el token de Vault",
|
||||
"Please enter account": "Ingrese la cuenta",
|
||||
"Please enter both Role ID and Secret ID": "Ingrese tanto el ID de Rol como el ID Secreto",
|
||||
"Please enter bucket": "Ingrese el bucket",
|
||||
"Please enter current password": "Ingrese la contraseña actual",
|
||||
"Please enter default key ID": "Ingrese el ID de clave predeterminado",
|
||||
"Please enter endpoint": "Ingrese el endpoint",
|
||||
"Please enter key": "Ingrese la clave",
|
||||
"Please enter key name": "Ingrese el nombre de la clave",
|
||||
"Please enter name": "Ingrese el nombre",
|
||||
"Please enter new password": "Ingrese la nueva contraseña",
|
||||
"Please enter new password again": "Ingrese la nueva contraseña nuevamente",
|
||||
"Please enter password": "Ingrese la contraseña",
|
||||
"Please enter policy content": "Ingrese el contenido de la política",
|
||||
"Please enter policy name": "Ingrese el nombre de la política",
|
||||
"Please enter prefix": "Ingrese el prefijo",
|
||||
"Please enter region": "Ingrese la región",
|
||||
"Please enter rule name": "Ingrese el nombre de la regla",
|
||||
"Please enter server address": "Ingrese la dirección del servidor",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "Ingrese la dirección del servidor (ej., http://localhost:9000)",
|
||||
"Please enter storage class": "Ingrese la clase de almacenamiento",
|
||||
"Please enter suffix": "Ingrese el sufijo",
|
||||
"Please enter tag value": "Ingrese el valor de la etiqueta",
|
||||
"Please enter user group name": "Ingrese el nombre del grupo de usuarios",
|
||||
"Please enter username": "Ingrese el nombre de usuario",
|
||||
"Please enter valid days": "Ingrese días válidos",
|
||||
"Please enter valid health check interval": "Ingrese un intervalo de verificación de salud válido",
|
||||
"Please fill in at least one configuration item": "Complete al menos un elemento de configuración",
|
||||
"Please fill in complete retention information": "Complete la información completa de retención",
|
||||
"Please fill in complete tag information": "Complete la información completa de etiqueta",
|
||||
"Please fill in the correct format": "Complete en el formato correcto",
|
||||
"Please provide credentials": "Proporcione credenciales",
|
||||
"Please select KMS key": "Seleccione la clave KMS",
|
||||
"Please select a KMS key for SSE-KMS encryption": "Seleccione una clave KMS para el cifrado SSE-KMS",
|
||||
"Please select a ZIP file to import": "Seleccione un archivo ZIP para importar",
|
||||
"Please select at least one event": "Seleccione al menos un evento",
|
||||
"Please select at least one item": "Seleccione al menos un elemento",
|
||||
"Please select authentication method": "Seleccione el método de autenticación",
|
||||
"Please select bucket": "Seleccione el bucket",
|
||||
"Please select encryption type": "Seleccione el tipo de cifrado",
|
||||
"Please select event target type": "Seleccione el tipo de destino de evento",
|
||||
"Please select expiration date": "Seleccione la fecha de expiración",
|
||||
"Please select expiry date": "Seleccione la fecha de expiración",
|
||||
"Please select policy": "Seleccione la política",
|
||||
"Please select resource name": "Seleccione el nombre del recurso",
|
||||
"Please select rule type": "Seleccione el tipo de regla",
|
||||
"Please select storage type": "Seleccione el tipo de almacenamiento",
|
||||
"Policies": "Políticas",
|
||||
"Policy": "Política",
|
||||
"Policy Content": "Contenido de la Política",
|
||||
"Policy Name": "Nombre de la Política",
|
||||
"Policy Original": "Política Original",
|
||||
"Policy format invalid": "Formato de política inválido",
|
||||
"Prefix": "Prefijo",
|
||||
"Prev": "Anterior",
|
||||
"Preview": "Vista Previa",
|
||||
"Preview unavailable": "Vista previa no disponible",
|
||||
"Previous Page": "Página Anterior",
|
||||
"Priority": "Prioridad",
|
||||
"Private": "Privado",
|
||||
"Processing": "Procesando",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Público",
|
||||
"Public, Private, Custom": "Público, Privado, Personalizado",
|
||||
"Read/Write Performance": "Rendimiento de Lectura/Escritura",
|
||||
"Reading Folder Files": "Leyendo Archivos de Carpeta",
|
||||
"Ready to import: {filename}": "Listo para importar: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "Estado en tiempo real de los servidores del clúster y dispositivos de almacenamiento backend.",
|
||||
"Reduced Redundancy Parity": "Paridad de Redundancia Reducida",
|
||||
"Reed-Solomon Matrix": "Matriz Reed-Solomon",
|
||||
"Refresh": "Actualizar",
|
||||
"Region": "Región",
|
||||
"Reliable distributed file system": "Sistema de archivos distribuido confiable",
|
||||
"Remaining (3TB)": "Restante (3TB)",
|
||||
"Remote Site": "Sitio Remoto",
|
||||
"Remote Technical Support": "Soporte Técnico Remoto",
|
||||
"Remote Tiering": "Nivelación Remota",
|
||||
"Remove": "Eliminar",
|
||||
"Remove Encryption": "Eliminar Cifrado",
|
||||
"Replicate Delete Markers": "Replicar Marcadores de Eliminación",
|
||||
"Replicate Existing Objects": "Replicar Objetos Existentes",
|
||||
"Request timeout in seconds, default: 30": "Tiempo de espera de solicitud en segundos, predeterminado: 30",
|
||||
"Required: Vault authentication token": "Requerido: token de autenticación de Vault",
|
||||
"Reset": "Restablecer",
|
||||
"Reset to Default": "Restablecer a Predeterminado",
|
||||
"Reset to default successfully": "Restablecido a predeterminado exitosamente",
|
||||
"Response Level": "Nivel de Respuesta",
|
||||
"Resume": "Reanudar",
|
||||
"Retention": "Retención",
|
||||
"Retention Mode": "Modo",
|
||||
"Retention Period": "Período de Retención",
|
||||
"Retention RetainUntilDate": "Retención Hasta Fecha",
|
||||
"Retention Save Failed": "Error al Guardar Retención",
|
||||
"Retention Unit": "Unidad de Retención",
|
||||
"Retry Attempts": "Intentos de Reintento",
|
||||
"Role ID": "ID de Rol",
|
||||
"Rows per page": "Filas por página",
|
||||
"Rule ID": "ID de Regla",
|
||||
"Running": "En Ejecución",
|
||||
"Running (Unhealthy)": "En Ejecución (No Saludable)",
|
||||
"Rust-based": "Basado en Rust",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "Almacenamiento frío integrado RustFS",
|
||||
"RustyVault Encryption": "Cifrado RustyVault",
|
||||
"S3 Compatibility": "Compatibilidad S3",
|
||||
"S3 Compatible": "Compatible con S3",
|
||||
"S3 Endpoint": "Endpoint S3",
|
||||
"S3 Region": "Región S3",
|
||||
"SDK Support": "Soporte SDK",
|
||||
"SNMD Mode": "Modo SNMD",
|
||||
"SNND Mode": "Modo SNND",
|
||||
"SSE Settings": "Configuraciones SSE",
|
||||
"STS Key": "Clave STS",
|
||||
"STS Login": "Inicio de Sesión STS",
|
||||
"STS Session Token": "Token de Sesión STS",
|
||||
"STS Username": "Nombre de Usuario STS",
|
||||
"Saturday": "Sábado",
|
||||
"Save": "Guardar",
|
||||
"Save Configuration": "Guardar Configuración",
|
||||
"Save Failed": "Error al Guardar",
|
||||
"Save failed": "Error al guardar",
|
||||
"Saved": "Guardado",
|
||||
"Scalability": "Escalabilidad",
|
||||
"Search": "Buscar",
|
||||
"Search Access Key": "Buscar Clave de Acceso",
|
||||
"Search Access User": "Buscar Usuario de Acceso",
|
||||
"Search Account": "Buscar Cuenta",
|
||||
"Search Group": "Buscar Grupo",
|
||||
"Search Policy": "Buscar Política",
|
||||
"Search User": "Buscar Usuario",
|
||||
"Search User Group": "Buscar Grupo de Usuarios",
|
||||
"Search buckets...": "Buscar buckets...",
|
||||
"Secret ID": "ID Secreto",
|
||||
"Secret Key": "Clave Secreta",
|
||||
"Secret Key *": "Clave Secreta *",
|
||||
"Secret Key is required": "La clave secreta es obligatoria",
|
||||
"Secret Key length must be between 8 and 40 characters": "La longitud de la clave secreta debe estar entre 8 y 40 caracteres",
|
||||
"Secure & Reliable": "Seguro y Confiable",
|
||||
"Secure Transport": "Transporte Seguro",
|
||||
"Select File": "Seleccionar Archivo",
|
||||
"Select Folder": "Seleccionar Carpeta",
|
||||
"Select Group": "Seleccionar Grupo",
|
||||
"Select KMS key": "Seleccionar clave KMS",
|
||||
"Select encryption algorithm": "Seleccionar algoritmo de cifrado",
|
||||
"Select encryption type": "Seleccionar tipo de cifrado",
|
||||
"Select events": "Seleccionar eventos",
|
||||
"Select the KMS key to use for encryption": "Seleccione la clave KMS para usar en el cifrado",
|
||||
"Select user group members": "Seleccionar miembros del grupo de usuarios",
|
||||
"Select user group policies": "Seleccionar políticas del grupo de usuarios",
|
||||
"Selected Type": "Tipo Seleccionado",
|
||||
"Send events via MQTT broker": "Enviar eventos a través del broker MQTT",
|
||||
"Server Address": "Dirección del Servidor",
|
||||
"Server Configuration": "Configuración del Servidor",
|
||||
"Server Host": "Host del Servidor",
|
||||
"Server Information": "Información del Servidor",
|
||||
"Server List": "Lista de Servidores",
|
||||
"Server configuration saved successfully": "Configuración del servidor guardada exitosamente",
|
||||
"Server-Side Encryption (SSE) Configuration": "Configuración de Cifrado del Lado del Servidor (SSE)",
|
||||
"Servers": "Servidores",
|
||||
"Service Email": "Correo Electrónico del Servicio",
|
||||
"Service Hotline": "Línea Directa del Servicio",
|
||||
"Service Status": "Estado del Servicio",
|
||||
"Set Policy": "Establecer Política",
|
||||
"Set Retention": "Establecer Retención",
|
||||
"Set Tag": "Establecer Etiqueta",
|
||||
"Set Tags": "Establecer Etiquetas",
|
||||
"Set the prefix for the rule": "Establecer el prefijo para la regla",
|
||||
"Set the time cycle for the rule": "Establecer el ciclo de tiempo para la regla",
|
||||
"Settings": "Configuraciones",
|
||||
"Single Machine Multiple Disks": "Máquina Única Múltiples Discos",
|
||||
"Single Object": "Objeto Único",
|
||||
"Site Name": "Nombre del Sitio",
|
||||
"Site Replication": "Replicación de Sitio",
|
||||
"Size": "Tamaño",
|
||||
"Skip": "Omitir",
|
||||
"Sort by": "Ordenar por",
|
||||
"Standard AWS S3 tier": "Nivel AWS S3 estándar",
|
||||
"Standard Storage Parity": "Paridad de Almacenamiento Estándar",
|
||||
"Start KMS": "Iniciar KMS",
|
||||
"Start Upload": "Iniciar Carga",
|
||||
"Status": "Estado",
|
||||
"Status refreshed successfully": "Estado actualizado exitosamente",
|
||||
"Stop KMS": "Detener KMS",
|
||||
"Storage Class": "Clase de Almacenamiento",
|
||||
"Storage Space": "Espacio de Almacenamiento",
|
||||
"Storage Type": "Tipo de Almacenamiento",
|
||||
"Storage Usage Statistics": "Estadísticas de Uso de Almacenamiento",
|
||||
"Submit": "Enviar",
|
||||
"Subscribe to event notification": "Suscribirse a notificación de evento",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Sufijo",
|
||||
"Sunday": "Domingo",
|
||||
"Support Level": "Nivel de Soporte",
|
||||
"Supported": "Soportado",
|
||||
"Supported CPU Architecture": "Arquitectura de CPU Soportada",
|
||||
"Supported OS": "SO Soportado",
|
||||
"Supports Erasure Coding": "Soporta Codificación de Borrado",
|
||||
"Supports HTTPS, TLS": "Soporta HTTPS, TLS",
|
||||
"Supports high concurrency operations": "Soporta operaciones de alta concurrencia",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "Soporta la gestión de múltiples discos de almacenamiento en un solo servidor para mejorar la utilización de recursos de almacenamiento y simplificar la gestión y el mantenimiento",
|
||||
"Sync": "Sincronizar",
|
||||
"Sync delete markers to destination bucket.": "Sincronizar marcadores de eliminación al bucket de destino.",
|
||||
"Synchronous": "Síncrono",
|
||||
"Tag": "Etiqueta",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "Clave de Etiqueta",
|
||||
"Tag Key Placeholder": "Marcador de Posición de Clave de Etiqueta",
|
||||
"Tag Name": "Nombre de Etiqueta",
|
||||
"Tag Update Failed": "Error al Actualizar Etiqueta",
|
||||
"Tag Update Success": "Actualización de Etiqueta Exitosa",
|
||||
"Tag Value": "Valor de Etiqueta",
|
||||
"Tag Value Placeholder": "Marcador de Posición de Valor de Etiqueta",
|
||||
"Tags": "Etiquetas",
|
||||
"Target Bucket": "Bucket de Destino",
|
||||
"Task Completed": "Tarea Completada",
|
||||
"Task Management": "Gestión de Tareas",
|
||||
"Technical Parameters": "Parámetros Técnicos",
|
||||
"Technical Training": "Capacitación Técnica",
|
||||
"Temporary URL": "URL Temporal",
|
||||
"Temporary URL Expiration": "Expiración de URL Temporal",
|
||||
"Generate URL": "Generar URL",
|
||||
"URL generated successfully": "URL generado exitosamente",
|
||||
"Failed to generate URL": "Error al generar URL",
|
||||
"Total Duration": "Duración Total",
|
||||
"Minutes": "Minutos",
|
||||
"Hours": "Horas",
|
||||
"Days": "Días",
|
||||
"Minutes must be between 0 and 59": "Los minutos deben estar entre 0 y 59",
|
||||
"Hours must be between 0 and 23": "Las horas deben estar entre 0 y 23",
|
||||
"Hours must be between 0 and 24 when days is 0": "Las horas deben estar entre 0 y 24 cuando los días son 0",
|
||||
"Days must be between 0 and 7": "Los días deben estar entre 0 y 7",
|
||||
"Total duration cannot exceed 7 days": "La duración total no puede exceder 7 días",
|
||||
"Please enter a valid expiration time": "Ingrese un tiempo de expiración válido",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "El archivo exportado contiene información sensible. Manténgalo seguro.",
|
||||
"The two passwords are inconsistent": "Las dos contraseñas no coinciden",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "Esta acción no se puede deshacer y omitirá el proceso normal de eliminación.",
|
||||
"This action cannot be undone.": "Esta acción no se puede deshacer.",
|
||||
"Thursday": "Jueves",
|
||||
"Tier": "Nivel",
|
||||
"Tier Type": "Tipo de Nivel",
|
||||
"Tiered Storage": "Almacenamiento en Niveles",
|
||||
"Tiering Transfer": "Transferencia de Nivelación",
|
||||
"Tiers": "Niveles",
|
||||
"Time Cycle": "Ciclo de Tiempo",
|
||||
"Timeout": "Tiempo de Espera",
|
||||
"Timeout (seconds)": "Tiempo de Espera (segundos)",
|
||||
"Token": "Token",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "Claves de cifrado de nivel superior utilizadas para cifrar claves de datos. Gestionadas por KMS y nunca salen del sistema.",
|
||||
"Total": "Total",
|
||||
"Total Capacity": "Capacidad Total",
|
||||
"Total Files": "Total de Archivos",
|
||||
"Total Requests": "Total de Solicitudes",
|
||||
"Transit Mount": "Montaje Transit",
|
||||
"Transit Mount Path": "Ruta de Montaje Transit",
|
||||
"Transit engine mount path, default: transit": "Ruta de montaje del motor Transit, predeterminado: transit",
|
||||
"Transition": "Transición",
|
||||
"Trigger custom HTTP endpoints": "Activar endpoints HTTP personalizados",
|
||||
"Try adjusting your search terms": "Intente ajustar sus términos de búsqueda",
|
||||
"Tuesday": "Martes",
|
||||
"Type": "Tipo",
|
||||
"Understanding Key Types": "Comprensión de Tipos de Clave",
|
||||
"Unknown": "Desconocido",
|
||||
"Unknown Folder": "Carpeta Desconocida",
|
||||
"Unlimited": "Ilimitado",
|
||||
"Update Failed": "Error al Actualizar",
|
||||
"Update Key": "Actualizar Clave",
|
||||
"Update License": "Actualizar Licencia",
|
||||
"Update Success": "Actualización Exitosa",
|
||||
"Update failed": "Error al actualizar",
|
||||
"Updated successfully": "Actualizado exitosamente",
|
||||
"Upload": "Cargar",
|
||||
"Upload File": "Cargar Archivo",
|
||||
"Upload files or create folders to populate this bucket.": "Cargue archivos o cree carpetas para poblar este bucket.",
|
||||
"Uploading Status": "Estado de Carga",
|
||||
"Uptime": "Tiempo de Actividad",
|
||||
"Usage Report": "Informe de Uso",
|
||||
"Use AppRole authentication": "Usar autenticación AppRole",
|
||||
"Use Main Account Policy": "Usar Política de Cuenta Principal",
|
||||
"Use TLS": "Usar TLS",
|
||||
"Use Vault token for authentication": "Usar token de Vault para autenticación",
|
||||
"Use main account policy": "Usar política de cuenta principal",
|
||||
"Used": "Usado",
|
||||
"Used (7TB)": "Usado (7TB)",
|
||||
"Used Capacity": "Capacidad Usada",
|
||||
"User Groups": "Grupos de Usuarios",
|
||||
"User Name": "Nombre de Usuario",
|
||||
"Users": "Usuarios",
|
||||
"Validity": "Validez",
|
||||
"Vault Server": "Servidor Vault",
|
||||
"Vault Server Address": "Dirección del Servidor Vault",
|
||||
"Vault Token": "Token de Vault",
|
||||
"Version": "Versión",
|
||||
"Version 2.0, January 2004": "Versión 2.0, Enero de 2004",
|
||||
"Version Control": "Control de Versiones",
|
||||
"VersionId": "ID de Versión",
|
||||
"Versions": "Versiones",
|
||||
"View Documentation": "Ver Documentación",
|
||||
"Virtualization Platform Support": "Soporte de Plataforma de Virtualización",
|
||||
"Visit website": "Visitar sitio web",
|
||||
"WARNING: This will immediately delete the key": "ADVERTENCIA: Esto eliminará inmediatamente la clave",
|
||||
"WEBHOOK_AUTH_TOKEN": "Token de Autenticación Webhook",
|
||||
"WEBHOOK_ENDPOINT": "Endpoint Webhook",
|
||||
"WEBHOOK_QUEUE_DIR": "Directorio de Cola Webhook",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Límite de Cola Webhook",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Esperando",
|
||||
"waiting": "Esperando",
|
||||
"Warning": "Advertencia",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Miércoles",
|
||||
"Weekly MB/s Change Trend": "Tendencia de Cambio Semanal MB/s",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "AÑOS",
|
||||
"YYYY-MM-DD": "AAAA-MM-DD",
|
||||
"YYYY-MM-DD HH:mm": "AAAA-MM-DD HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "AAAA-MM-DD HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "AAAA-MM-DDTHH:mm",
|
||||
"Year": "Año",
|
||||
"Yes": "Sí",
|
||||
"Your browser does not support the audio tag": "Su navegador no admite la etiqueta de audio",
|
||||
"Your browser does not support the video tag": "Su navegador no admite la etiqueta de video",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "La longitud de la contraseña no puede ser menor de 8 caracteres y mayor de 16 caracteres",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "La longitud del nombre de usuario no puede ser menor de 8 caracteres y mayor de 16 caracteres",
|
||||
"Validation failed": "Validación fallida",
|
||||
"API request failed": "Error en la solicitud de la API",
|
||||
"Operation failed": "Operación fallida",
|
||||
"Create a user to get started": "Cree un usuario para comenzar",
|
||||
"Get Notification Config Failed": "Error al Obtener Configuración de Notificación",
|
||||
"empty is indicates permanent validity": "Vacío indica validez permanente",
|
||||
"Create user groups to organize permissions": "Cree grupos de usuarios para organizar permisos",
|
||||
"Filter From This Page": "Filtrar Desde Esta Página"
|
||||
}
|
||||
+14
-6
@@ -111,6 +111,7 @@
|
||||
"Cache time-to-live in seconds, default: 600": "Durée de vie du cache en secondes, par défaut : 600",
|
||||
"Cancel": "Annuler",
|
||||
"Canceled": "Annulé",
|
||||
"canceled": "Annulé",
|
||||
"Cannot Preview": "Impossible de prévisualiser le contenu de cet objet (type MIME : {contentType}), veuillez télécharger pour visualiser",
|
||||
"Change Password": "Changer le mot de passe",
|
||||
"Change Secret Key": "Changer la clé secrète",
|
||||
@@ -251,7 +252,8 @@
|
||||
"Exporting...": "Exportation...",
|
||||
"External MinIO tier": "Niveau MinIO externe",
|
||||
"Failed": "Échec({count})",
|
||||
"Failed Status": "Statut d'échec",
|
||||
"Failed Status": "Échec",
|
||||
"failed": "Échec",
|
||||
"Failed to clear cache": "Échec de l'effacement du cache",
|
||||
"Failed to configure bucket encryption": "Échec de la configuration du chiffrement du compartiment",
|
||||
"Failed to create event target": "Échec de la création de la cible d'événement",
|
||||
@@ -314,7 +316,8 @@
|
||||
"Import Success": "Importation réussie",
|
||||
"Import/Export": "Importer/Exporter",
|
||||
"Importing...": "Importation...",
|
||||
"In Progress": "{total} tâches en cours ({deleting} en suppression, {completed} terminées)",
|
||||
"In Progress": "{total} tâches en cours ({processing} en traitement, {completed} terminées)",
|
||||
"in progress": "En cours",
|
||||
"Inactive": "Inactif",
|
||||
"Include objects that already exist in the source bucket.": "Inclure les objets qui existent déjà dans le compartiment source.",
|
||||
"Infinite Scaling": "Évolutivité infinie",
|
||||
@@ -491,7 +494,9 @@
|
||||
"Page {current} of {total}": "Page {current} sur {total}",
|
||||
"Password": "Mot de passe",
|
||||
"Pause": "Pause",
|
||||
"Paused": "En pause({count})",
|
||||
"Paused": "En pause",
|
||||
"Paused (with count)": "En pause({count})",
|
||||
"paused": "En pause",
|
||||
"Pending": "En attente({count})",
|
||||
"Pending Deletion": "En attente de suppression",
|
||||
"Performance": "Performance",
|
||||
@@ -565,7 +570,8 @@
|
||||
"Previous Page": "Page précédente",
|
||||
"Priority": "Priorité",
|
||||
"Private": "Privé",
|
||||
"Processing": "Traitement({count})",
|
||||
"Processing": "Traitement",
|
||||
"Processing (with count)": "Traitement({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Public",
|
||||
"Public, Private, Custom": "Public, Privé, Personnalisé",
|
||||
@@ -694,7 +700,8 @@
|
||||
"Storage Usage Statistics": "Statistiques d'utilisation du stockage",
|
||||
"Submit": "Soumettre",
|
||||
"Subscribe to event notification": "S'abonner à la notification d'événement",
|
||||
"Success Status": "Statut de succès",
|
||||
"Success Status": "Succès",
|
||||
"success": "Succès",
|
||||
"Suffix": "Suffixe",
|
||||
"Sunday": "Dimanche",
|
||||
"Support Level": "Niveau de support",
|
||||
@@ -775,6 +782,7 @@
|
||||
"Update Success": "Mise à jour réussie",
|
||||
"Update failed": "Échec de la mise à jour",
|
||||
"Updated successfully": "Mis à jour avec succès",
|
||||
"Upload": "Télécharger",
|
||||
"Upload File": "Télécharger un fichier",
|
||||
"Upload files or create folders to populate this bucket.": "Téléchargez des fichiers ou créez des dossiers pour remplir ce compartiment.",
|
||||
"Uploading Status": "Statut du téléchargement",
|
||||
@@ -810,6 +818,7 @@
|
||||
"WEBHOOK_QUEUE_LIMIT": "Limite de file d'attente Webhook",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "En attente",
|
||||
"waiting": "En attente",
|
||||
"Warning": "Avertissement",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Mercredi",
|
||||
@@ -857,7 +866,6 @@
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"success": "success",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(I dettagli di configurazione sono privati)",
|
||||
"(Configured)": "(Configurato)",
|
||||
"API Base URL": "URL base API",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "Controllo accessi",
|
||||
"Access Key": "Chiave di accesso",
|
||||
"Access Key *": "Chiave di accesso *",
|
||||
"Access Key is required": "La chiave di accesso è obbligatoria",
|
||||
"Access Key length must be between 3 and 20 characters": "La lunghezza della chiave di accesso deve essere compresa tra 3 e 20 caratteri",
|
||||
"Access Keys": "Chiavi di accesso",
|
||||
"Access Policy": "Politica di accesso",
|
||||
"Account": "Account",
|
||||
"Action": "Azione",
|
||||
"Actions": "Azioni",
|
||||
"Active": "Attivo",
|
||||
"Add": "Aggiungi",
|
||||
"Add Access Key": "Aggiungi chiave di accesso",
|
||||
"Add Account": "Aggiungi account",
|
||||
"Add Event Destination": "Aggiungi destinazione evento",
|
||||
"Add Event Subscription": "Aggiungi sottoscrizione evento",
|
||||
"Add Event Subscription to get started": "Aggiungi una sottoscrizione evento per iniziare",
|
||||
"Add Failed": "Aggiunta non riuscita",
|
||||
"Add Lifecycle Rule": "Aggiungi regola del ciclo di vita",
|
||||
"Add Replication Rule": "Aggiungi regola di replica",
|
||||
"Add Site": "Aggiungi sito",
|
||||
"Add Site Replication": "Aggiungi replica sito",
|
||||
"Add Success": "Aggiunta riuscita",
|
||||
"Add Tag": "Aggiungi tag",
|
||||
"Add Tier": "Aggiungi tier",
|
||||
"Add User": "Aggiungi utente",
|
||||
"Add User Group": "Aggiungi gruppo utenti",
|
||||
"Add failed": "Aggiunta non riuscita",
|
||||
"Add group members": "Aggiungi membri del gruppo",
|
||||
"Add replication rules to sync objects across buckets.": "Aggiungi regole di replica per sincronizzare gli oggetti tra i bucket.",
|
||||
"Add success": "Aggiunta riuscita",
|
||||
"Add tiers to configure remote storage destinations.": "Aggiungi tier per configurare destinazioni di archiviazione remote.",
|
||||
"Add to Group": "Aggiungi al gruppo",
|
||||
"Add {type} Destination": "Aggiungi destinazione {type}",
|
||||
"Added successfully": "Aggiunto con successo",
|
||||
"Adding to Upload Queue": "Aggiunta alla coda di caricamento",
|
||||
"Advanced Monitoring": "Monitoraggio avanzato",
|
||||
"Advanced Settings": "Impostazioni avanzate",
|
||||
"Algorithm": "Algoritmo",
|
||||
"Amazon Resource Name": "Nome risorsa Amazon",
|
||||
"Apache License": "Licenza Apache",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "ID ruolo AppRole da Vault",
|
||||
"AppRole Secret ID from Vault": "ID segreto AppRole da Vault",
|
||||
"Are you sure you want to delete all selected keys?": "Sei sicuro di voler eliminare tutte le chiavi selezionate?",
|
||||
"Are you sure you want to delete all selected user groups?": "Sei sicuro di voler eliminare tutti i gruppi utenti selezionati?",
|
||||
"Are you sure you want to delete all selected users?": "Sei sicuro di voler eliminare tutti gli utenti selezionati?",
|
||||
"Are you sure you want to delete the selected objects?": "Sei sicuro di voler eliminare gli oggetti selezionati?",
|
||||
"Are you sure you want to delete this bucket?": "Sei sicuro di voler eliminare questo bucket?",
|
||||
"Are you sure you want to delete this destination?": "Sei sicuro di voler eliminare questa destinazione?",
|
||||
"Are you sure you want to delete this key?": "Sei sicuro di voler eliminare questa chiave?",
|
||||
"Are you sure you want to delete this notification configuration?": "Sei sicuro di voler eliminare questa configurazione di notifica?",
|
||||
"Are you sure you want to delete this object?": "Sei sicuro di voler eliminare questo oggetto?",
|
||||
"Are you sure you want to delete this policy?": "Sei sicuro di voler eliminare questa politica?",
|
||||
"Are you sure you want to delete this replication rule?": "Sei sicuro di voler eliminare questa regola di replica?",
|
||||
"Are you sure you want to delete this rule?": "Sei sicuro di voler eliminare questa regola?",
|
||||
"Are you sure you want to delete this tier?": "Sei sicuro di voler eliminare questo tier?",
|
||||
"Are you sure you want to force delete this key?": "Sei sicuro di voler forzare l'eliminazione di questa chiave?",
|
||||
"Are you sure you want to remove encryption?": "Sei sicuro di voler rimuovere la crittografia?",
|
||||
"Assign Policy": "Assegna politica",
|
||||
"Asynchronous": "Asincrono",
|
||||
"Audit": "Audit",
|
||||
"Auth Method": "Metodo di autenticazione",
|
||||
"Authentication Method": "Metodo di autenticazione",
|
||||
"Authorization": "Autorizzazione",
|
||||
"Auto": "Automatico",
|
||||
"Automatically inherit the main account policy when enabled.": "Eredita automaticamente la politica dell'account principale quando abilitato.",
|
||||
"Available": "Disponibile",
|
||||
"Backend": "Backend",
|
||||
"Backend Services": "Servizi backend",
|
||||
"Backend Status": "Stato backend",
|
||||
"Backend Type": "Tipo backend",
|
||||
"Bandwidth Limit": "Limite di larghezza di banda",
|
||||
"Batch allocation policies": "Politiche di allocazione batch",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "Browser",
|
||||
"Browser Warning": "Avviso browser",
|
||||
"Bucket": "Bucket",
|
||||
"Bucket Configuration": "Configurazione bucket",
|
||||
"Bucket Count": "Conteggio bucket",
|
||||
"Bucket Encryption Management": "Gestione crittografia bucket",
|
||||
"Bucket Events": "Eventi bucket",
|
||||
"Bucket Notification": "Notifica bucket",
|
||||
"Bucket Policy": "Politica bucket",
|
||||
"Bucket Quota": "Quota bucket",
|
||||
"Bucket Replication": "Replica bucket",
|
||||
"Bucket Setting": "Impostazione bucket",
|
||||
"Bucket encryption configured successfully": "Crittografia bucket configurata con successo",
|
||||
"Bucket encryption removed successfully": "Crittografia bucket rimossa con successo",
|
||||
"Bucket is not empty": "Il bucket non è vuoto",
|
||||
"Bucket list refreshed": "Elenco bucket aggiornato",
|
||||
"Buckets": "Bucket",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "Cache abilitata",
|
||||
"Cache Hits": "Accessi cache",
|
||||
"Cache Misses": "Mancati cache",
|
||||
"Cache Statistics": "Statistiche cache",
|
||||
"Cache Status": "Stato cache",
|
||||
"Cache TTL": "TTL cache",
|
||||
"Cache TTL (seconds)": "TTL cache (secondi)",
|
||||
"Cache Warning": "Avviso cache",
|
||||
"Cache clear completed with warnings": "Pulizia cache completata con avvisi",
|
||||
"Cache cleared successfully": "Cache pulita con successo",
|
||||
"Cache time-to-live in seconds, default: 600": "Tempo di vita cache in secondi, predefinito: 600",
|
||||
"Cancel": "Annulla",
|
||||
"Canceled": "Annullato",
|
||||
"canceled": "Annullato",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Cambia password",
|
||||
"Change Secret Key": "Cambia chiave segreta",
|
||||
"Change current account password": "Cambia password account corrente",
|
||||
"Confirm New Secret Key": "Conferma nuova chiave segreta",
|
||||
"Choose the encryption method for this bucket": "Scegli il metodo di crittografia per questo bucket",
|
||||
"Clear All": "Cancella tutto",
|
||||
"Clear Cache": "Pulisci cache",
|
||||
"Clear Records": "Cancella record",
|
||||
"Click or drag ZIP file to this area to upload": "Clicca o trascina il file ZIP in quest'area per caricare",
|
||||
"Close": "Chiudi",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "Configurazione",
|
||||
"Configuration Information": "Informazioni configurazione",
|
||||
"Configuration is saved locally in your browser": "La configurazione è salvata localmente nel tuo browser",
|
||||
"Configuration loaded successfully": "Configurazione caricata con successo",
|
||||
"Configuration reset successfully": "Configurazione reimpostata con successo",
|
||||
"Configuration saved successfully": "Configurazione salvata con successo",
|
||||
"Configure": "Configura",
|
||||
"Configure Bucket Encryption": "Configura crittografia bucket",
|
||||
"Configure Encryption": "Configura crittografia",
|
||||
"Configure Encryption for {bucket}": "Configura crittografia per {bucket}",
|
||||
"Configure KMS": "Configura KMS",
|
||||
"Configure server-side encryption for your objects using external key management services.": "Configura la crittografia lato server per i tuoi oggetti utilizzando servizi di gestione chiavi esterni.",
|
||||
"Configured": "Configurato",
|
||||
"Confirm": "Conferma",
|
||||
"Confirm Delete": "Conferma eliminazione",
|
||||
"Confirm Force Delete": "Conferma eliminazione forzata",
|
||||
"Confirm New Password": "Conferma nuova password",
|
||||
"Confirm Remove Encryption": "Conferma rimozione crittografia",
|
||||
"Contact Support": "Contatta supporto",
|
||||
"Copy": "Copia",
|
||||
"Copy Failed": "Copia non riuscita",
|
||||
"Copy Success": "Copia riuscita",
|
||||
"Copy Temporary URL": "Copia URL temporaneo",
|
||||
"Create": "Crea",
|
||||
"Create Bucket": "Crea bucket",
|
||||
"Create Failed": "Creazione non riuscita",
|
||||
"Create First Key": "Crea prima chiave",
|
||||
"Create Key": "Crea chiave",
|
||||
"Create New Key": "Crea nuova chiave",
|
||||
"Create Success": "Creazione riuscita",
|
||||
"Create User": "Crea utente",
|
||||
"Create a bucket to start storing objects.": "Crea un bucket per iniziare a memorizzare oggetti.",
|
||||
"Create a new access key to get started.": "Crea una nuova chiave di accesso per iniziare.",
|
||||
"Create a policy to manage access control templates.": "Crea una politica per gestire i modelli di controllo accessi.",
|
||||
"Create an event destination to forward notifications.": "Crea una destinazione evento per inoltrare le notifiche.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "Crea regole del ciclo di vita per automatizzare le transizioni e la scadenza degli oggetti.",
|
||||
"Create your first KMS key to get started": "Crea la tua prima chiave KMS per iniziare",
|
||||
"Create your first bucket to configure encryption": "Crea il tuo primo bucket per configurare la crittografia",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "Crea, ruota e ispeziona le chiavi gestite dal tuo backend KMS.",
|
||||
"Created": "Creato",
|
||||
"Creation Date": "Data di creazione",
|
||||
"Current Configuration": "Configurazione corrente",
|
||||
"Current KMS Type": "Tipo KMS corrente",
|
||||
"Current Password": "Password corrente",
|
||||
"Current Prefix": "Prefisso corrente",
|
||||
"Current Site": "Sito corrente",
|
||||
"Current User Policy": "Politica utente corrente",
|
||||
"Current Version": "Versione corrente",
|
||||
"Current user policy": "Politica utente corrente",
|
||||
"Custom": "Personalizzato",
|
||||
"Customer Service": "Servizio clienti",
|
||||
"DAYS": "GIORNI",
|
||||
"Dark": "Scuro",
|
||||
"Data Backup": "Backup dati",
|
||||
"Data Key (DEK)": "Chiave dati (DEK)",
|
||||
"Data Keys (DEK)": "Chiavi dati (DEK)",
|
||||
"Data Redundancy": "Ridondanza dati",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "Le chiavi dati vengono generate automaticamente durante la crittografia dei file. Sono crittografate dalle chiavi master e utilizzate per la crittografia effettiva dei dati.",
|
||||
"Day": "Giorno",
|
||||
"Days After": "Giorni dopo",
|
||||
"Default Key ID": "ID chiave predefinito",
|
||||
"Default master key ID for SSE-KMS": "ID chiave master predefinito per SSE-KMS",
|
||||
"Delete": "Elimina",
|
||||
"Delete Failed": "Eliminazione non riuscita",
|
||||
"Delete Key": "Elimina chiave",
|
||||
"Delete Marker Handling": "Gestione marker eliminazione",
|
||||
"Delete Record": "Elimina record",
|
||||
"Delete Selected": "Elimina selezionati",
|
||||
"Delete Success": "Eliminazione riuscita",
|
||||
"Delete Tag Confirm": "Conferma eliminazione tag",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "Eliminazione...",
|
||||
"Description": "Descrizione",
|
||||
"Destination Bucket": "Bucket destinazione",
|
||||
"Detailed KMS Status": "Stato KMS dettagliato",
|
||||
"Details": "Dettagli",
|
||||
"Development Language Requirements": "Requisiti linguaggio sviluppo",
|
||||
"Disabled": "Disabilitato",
|
||||
"Disk Bad Spot Check": "Controllo punti danneggiati disco",
|
||||
"Disks": "Dischi",
|
||||
"Documentation": "Documentazione",
|
||||
"Download": "Scarica",
|
||||
"Download complete IAM configuration as ZIP file": "Scarica configurazione IAM completa come file ZIP",
|
||||
"Drag Drop Info": "Info trascina e rilascia",
|
||||
"EC Mode": "Modalità EC",
|
||||
"Edit": "Modifica",
|
||||
"Edit Configuration": "Modifica configurazione",
|
||||
"Edit Failed": "Modifica non riuscita",
|
||||
"Edit Group": "Modifica gruppo",
|
||||
"Edit Key": "Modifica chiave",
|
||||
"Edit Policy": "Modifica politica",
|
||||
"Edit Success": "Modifica riuscita",
|
||||
"Edit User": "Modifica utente",
|
||||
"Emergency Response": "Risposta emergenza",
|
||||
"Enable Cache": "Abilita cache",
|
||||
"Enable Storage Encryption": "Abilita crittografia archiviazione",
|
||||
"Enable caching for better performance, default: true": "Abilita cache per migliori prestazioni, predefinito: true",
|
||||
"Enable secure transport when connecting to endpoint.": "Abilita trasporto sicuro quando ci si connette all'endpoint.",
|
||||
"Enabled": "Abilitato",
|
||||
"Encryption": "Crittografia",
|
||||
"Encryption Status": "Stato crittografia",
|
||||
"Encryption Type": "Tipo crittografia",
|
||||
"Encryption algorithm for the key.": "Algoritmo di crittografia per la chiave.",
|
||||
"Endpoint": "Endpoint",
|
||||
"Endpoint *": "Endpoint *",
|
||||
"Endpoint is required": "L'endpoint è obbligatorio",
|
||||
"Enter AppRole Role ID": "Inserisci ID ruolo AppRole",
|
||||
"Enter AppRole Secret ID": "Inserisci ID segreto AppRole",
|
||||
"Enter your Vault authentication token": "Inserisci il tuo token di autenticazione Vault",
|
||||
"Enterprise": "Enterprise",
|
||||
"Enterprise License": "Licenza Enterprise",
|
||||
"Enterprise Service Level": "Livello servizio Enterprise",
|
||||
"Error": "Errore",
|
||||
"Event Destinations": "Destinazioni evento",
|
||||
"Event Target created successfully": "Destinazione evento creata con successo",
|
||||
"Events": "Eventi",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "Esempio: http://localhost:9000 o https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "Gli oggetti crittografati esistenti rimarranno crittografati.",
|
||||
"Expiration": "Scadenza",
|
||||
"Expiration Delete Mark": "Marker eliminazione scadenza",
|
||||
"Expired": "Scaduto",
|
||||
"Expiry": "Scadenza",
|
||||
"Export": "Esporta",
|
||||
"Export Now": "Esporta ora",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "Esporta tutte le configurazioni IAM inclusi utenti, gruppi, politiche e chiavi di accesso in un file ZIP.",
|
||||
"Exporting...": "Esportazione...",
|
||||
"External MinIO tier": "Tier MinIO esterno",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Non riuscito({count})",
|
||||
"failed": "Non riuscito({count})",
|
||||
"Failed to clear cache": "Impossibile pulire la cache",
|
||||
"Failed to configure bucket encryption": "Impossibile configurare la crittografia bucket",
|
||||
"Failed to create event target": "Impossibile creare la destinazione evento",
|
||||
"Failed to create rule": "Impossibile creare la regola",
|
||||
"Failed to delete key": "Impossibile eliminare la chiave",
|
||||
"Failed to export IAM configuration": "Impossibile esportare la configurazione IAM",
|
||||
"Failed to fetch KMS keys": "Impossibile recuperare le chiavi KMS",
|
||||
"Failed to fetch data": "Impossibile recuperare i dati",
|
||||
"Failed to fetch object info": "Impossibile recuperare le informazioni oggetto",
|
||||
"Failed to fetch versions": "Impossibile recuperare le versioni",
|
||||
"Failed to force delete key": "Impossibile forzare l'eliminazione della chiave",
|
||||
"Failed to get data": "Impossibile recuperare i dati",
|
||||
"Failed to get detailed status": "Impossibile recuperare lo stato dettagliato",
|
||||
"Failed to get key details": "Impossibile recuperare i dettagli della chiave",
|
||||
"Failed to import IAM configuration": "Impossibile importare la configurazione IAM",
|
||||
"Failed to load KMS status": "Impossibile caricare lo stato KMS",
|
||||
"Failed to load bucket list": "Impossibile caricare l'elenco bucket",
|
||||
"Failed to load current configuration": "Impossibile caricare la configurazione corrente",
|
||||
"Failed to load key list": "Impossibile caricare l'elenco chiavi",
|
||||
"Failed to refresh key list": "Impossibile aggiornare l'elenco chiavi",
|
||||
"Failed to refresh status": "Impossibile aggiornare lo stato",
|
||||
"Failed to remove bucket encryption": "Impossibile rimuovere la crittografia bucket",
|
||||
"Failed to save configuration": "Impossibile salvare la configurazione",
|
||||
"Failed to save key": "Impossibile salvare la chiave",
|
||||
"Failed to set local development mode": "Impossibile impostare la modalità sviluppo locale",
|
||||
"Failed to start KMS service": "Impossibile avviare il servizio KMS",
|
||||
"Failed to stop KMS service": "Impossibile fermare il servizio KMS",
|
||||
"Feature Permissions": "Autorizzazioni funzionalità",
|
||||
"File Count Limit Exceeded": "Limite conteggio file superato",
|
||||
"File Size Limit": "Limite dimensione file",
|
||||
"File size exceeds limit (10MB)": "La dimensione del file supera il limite (10MB)",
|
||||
"Files": "File",
|
||||
"First": "Primo",
|
||||
"Folder": "Cartella",
|
||||
"Folder Processing Error": "Errore elaborazione cartella",
|
||||
"Force Delete": "Forza eliminazione",
|
||||
"Friday": "Venerdì",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "I caricamenti futuri su questo bucket non saranno crittografati per impostazione predefinita.",
|
||||
"GOVERNANCE": "GOVERNANCE",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "Generato dalle chiavi master per crittografare i tuoi file. Creato automaticamente durante la crittografia dei dati.",
|
||||
"Get Data Failed": "Recupero dati non riuscito",
|
||||
"Get Help": "Ottieni aiuto",
|
||||
"Groups": "Gruppi",
|
||||
"HashiCorp Encryption": "Crittografia HashiCorp",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "Intervallo controllo salute (secondi)",
|
||||
"High Memory Usage Warning": "Avviso utilizzo memoria elevato",
|
||||
"High Performance": "Alte prestazioni",
|
||||
"Hit Rate": "Tasso di successo",
|
||||
"IAM Configuration Export": "Esportazione configurazione IAM",
|
||||
"IAM Configuration Import": "Importazione configurazione IAM",
|
||||
"IAM Policies": "Politiche IAM",
|
||||
"IAM configuration exported successfully": "Configurazione IAM esportata con successo",
|
||||
"IAM configuration imported successfully": "Configurazione IAM importata con successo",
|
||||
"Identity Authentication Expansion": "Espansione autenticazione identità",
|
||||
"If no versions remain, delete references to this object": "Se non rimangono versioni, elimina i riferimenti a questo oggetto",
|
||||
"Import": "Importa",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "Importa configurazioni IAM da un file ZIP precedentemente esportato.",
|
||||
"Import Now": "Importa ora",
|
||||
"Import Success": "Importazione riuscita",
|
||||
"Import/Export": "Importa/Esporta",
|
||||
"Importing...": "Importazione...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total} attività in corso ({processing} in elaborazione, {completed} completate)",
|
||||
"Inactive": "Inattivo",
|
||||
"Include objects that already exist in the source bucket.": "Includi oggetti che esistono già nel bucket sorgente.",
|
||||
"Infinite Scaling": "Scalabilità infinita",
|
||||
"Info": "Info",
|
||||
"Infrastructure Health": "Salute infrastruttura",
|
||||
"Inspect individual server health, disk utilization, and network status.": "Ispeziona la salute del server individuale, l'utilizzo del disco e lo stato della rete.",
|
||||
"Invalid server address format": "Formato indirizzo server non valido",
|
||||
"JSON Editor": "Editor JSON",
|
||||
"KMS Configuration": "Configurazione KMS",
|
||||
"KMS Key": "Chiave KMS",
|
||||
"KMS Key ID": "ID chiave KMS",
|
||||
"KMS Keys Management": "Gestione chiavi KMS",
|
||||
"KMS Status Overview": "Panoramica stato KMS",
|
||||
"KMS Type": "Tipo KMS",
|
||||
"KMS is not configured, please configure it first": "KMS non è configurato, configuralo prima",
|
||||
"KMS server has errors": "Il server KMS ha errori",
|
||||
"KMS server is configured but not running": "Il server KMS è configurato ma non è in esecuzione",
|
||||
"KMS server is not configured": "Il server KMS non è configurato",
|
||||
"KMS server is running and healthy": "Il server KMS è in esecuzione e sano",
|
||||
"KMS server is running but unhealthy": "Il server KMS è in esecuzione ma non sano",
|
||||
"KMS server is running, configuration details are private": "Il server KMS è in esecuzione, i dettagli di configurazione sono privati",
|
||||
"KMS server status unknown": "Stato server KMS sconosciuto",
|
||||
"KMS service has errors": "Il servizio KMS ha errori",
|
||||
"KMS service is stopped": "Il servizio KMS è fermo",
|
||||
"KMS service not initialized, please configure it first": "Servizio KMS non inizializzato, configuralo prima",
|
||||
"KMS service started successfully": "Servizio KMS avviato con successo",
|
||||
"KMS service stopped successfully": "Servizio KMS fermato con successo",
|
||||
"KV Mount": "Montaggio KV",
|
||||
"KV Mount Path": "Percorso montaggio KV",
|
||||
"KV storage mount path, default: secret": "Percorso montaggio archiviazione KV, predefinito: secret",
|
||||
"Key": "Chiave",
|
||||
"Key Creation": "Creazione chiave",
|
||||
"Key Directory": "Directory chiave",
|
||||
"Key Expiration": "Scadenza chiave",
|
||||
"Key ID": "ID chiave",
|
||||
"Key List": "Elenco chiavi",
|
||||
"Key Login": "Accesso chiave",
|
||||
"Key Name": "Nome chiave",
|
||||
"Key Path Prefix": "Prefisso percorso chiave",
|
||||
"Key created successfully": "Chiave creata con successo",
|
||||
"Key deleted successfully": "Chiave eliminata con successo",
|
||||
"Key force deleted successfully": "Chiave eliminata forzatamente con successo",
|
||||
"Key is already pending deletion": "La chiave è già in attesa di eliminazione",
|
||||
"Key list refreshed": "Elenco chiavi aggiornato",
|
||||
"Key services and configuration values reported by the cluster.": "Servizi chiave e valori di configurazione segnalati dal cluster.",
|
||||
"Key storage path prefix in KV store": "Prefisso percorso archiviazione chiave nel negozio KV",
|
||||
"Large File Count Warning": "Avviso conteggio file elevato",
|
||||
"Last": "Ultimo",
|
||||
"Last Modified": "Ultima modifica",
|
||||
"Last Modified Time": "Ora ultima modifica",
|
||||
"Last Normal Operation": "Ultima operazione normale",
|
||||
"Last Scan Activity": "Ultima attività scansione",
|
||||
"LastModified": "Ultima modifica",
|
||||
"Leave empty to use current host as default": "Lascia vuoto per usare l'host corrente come predefinito",
|
||||
"Legal Hold": "Blocco legale",
|
||||
"License": "Licenza",
|
||||
"License Details": "Dettagli licenza",
|
||||
"License Key": "Chiave licenza",
|
||||
"License Valid Until": "Licenza valida fino a",
|
||||
"Licensed Company": "Azienda licenziata",
|
||||
"Licensed Users": "Utenti licenziati",
|
||||
"Lifecycle": "Ciclo di vita",
|
||||
"Lifecycle Management": "Gestione ciclo di vita",
|
||||
"Light": "Chiaro",
|
||||
"Load Balancing": "Bilanciamento del carico",
|
||||
"Loading buckets...": "Caricamento bucket...",
|
||||
"Loading keys...": "Caricamento chiavi...",
|
||||
"Local development mode set successfully": "Modalità sviluppo locale impostata con successo",
|
||||
"Login": "Accesso",
|
||||
"Login Failed": "Accesso non riuscito",
|
||||
"Login Problems?": "Problemi di accesso?",
|
||||
"Login Success": "Accesso riuscito",
|
||||
"Logout": "Disconnessione",
|
||||
"Logs": "Log",
|
||||
"MNMD Mode": "Modalità MNMD",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "Broker MQTT",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "Intervallo Keep Alive MQTT",
|
||||
"MQTT_PASSWORD": "Password MQTT",
|
||||
"MQTT_QOS": "QoS MQTT",
|
||||
"MQTT_QUEUE_DIR": "Directory coda MQTT",
|
||||
"MQTT_QUEUE_LIMIT": "Limite coda MQTT",
|
||||
"MQTT_RECONNECT_INTERVAL": "Intervallo riconnessione MQTT",
|
||||
"MQTT_TOPIC": "Argomento MQTT",
|
||||
"MQTT_USERNAME": "Nome utente MQTT",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "ID chiave principale (nome chiave Transit). Usa un ID leggibile correlato al business.",
|
||||
"Make sure the server address is accessible from your network": "Assicurati che l'indirizzo del server sia accessibile dalla tua rete",
|
||||
"Manage how RustFS connects to your external key management service.": "Gestisci come RustFS si connette al tuo servizio di gestione chiavi esterno.",
|
||||
"Master Key": "Chiave master",
|
||||
"Master Key (CMK)": "Chiave master (CMK)",
|
||||
"Master Keys (CMK)": "Chiavi master (CMK)",
|
||||
"Max 50TB": "Max 50TB",
|
||||
"Members": "Membri",
|
||||
"Memory Critical": "Memoria critica",
|
||||
"Memory High": "Memoria alta",
|
||||
"Memory Low": "Memoria bassa",
|
||||
"Memory Medium": "Memoria media",
|
||||
"Memory Usage": "Utilizzo memoria",
|
||||
"Memory Warning": "Avviso memoria",
|
||||
"Metrics": "Metriche",
|
||||
"Minio": "Minio",
|
||||
"Mode": "Modalità",
|
||||
"Monday": "Lunedì",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "Monitora l'utilizzo complessivo dell'archiviazione e l'attività recente dello scanner a colpo d'occhio.",
|
||||
"More Configurations": "Altre configurazioni",
|
||||
"Multi-Cloud Storage": "Archiviazione multi-cloud",
|
||||
"Multipart Upload": "Caricamento multipart",
|
||||
"Name": "Nome",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "Hai bisogno di aiuto?",
|
||||
"Network": "Rete",
|
||||
"New File": "Nuovo file",
|
||||
"New Folder": "Nuova cartella",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "Nuova password",
|
||||
"New Secret Key": "Nuova chiave segreta",
|
||||
"New Policy": "Nuova politica",
|
||||
"New user has been created": "Nuovo utente creato",
|
||||
"Next": "Successivo",
|
||||
"Next Page": "Pagina successiva",
|
||||
"No": "No",
|
||||
"No Access Keys": "Nessuna chiave di accesso",
|
||||
"No Buckets": "Nessun bucket",
|
||||
"No Data": "Nessun dato",
|
||||
"No Destinations": "Nessuna destinazione",
|
||||
"No KMS configuration found": "Nessuna configurazione KMS trovata",
|
||||
"No KMS keys found": "Nessuna chiave KMS trovata",
|
||||
"No License": "Nessuna licenza",
|
||||
"No Objects": "Nessun oggetto",
|
||||
"Show Deleted Objects": "Mostra oggetti eliminati",
|
||||
"No Policies": "Nessuna politica",
|
||||
"No Selection": "Nessuna selezione",
|
||||
"No Tasks": "Nessuna attività",
|
||||
"No Tiers": "Nessun tier",
|
||||
"No Versions": "Nessuna versione",
|
||||
"No bucket selected": "Nessun bucket selezionato",
|
||||
"No buckets found": "Nessun bucket trovato",
|
||||
"No buckets match your search": "Nessun bucket corrisponde alla tua ricerca",
|
||||
"No status data available": "Nessun dato di stato disponibile",
|
||||
"No valid events found after conversion": "Nessun evento valido trovato dopo la conversione",
|
||||
"Non-current Version": "Versione non corrente",
|
||||
"Normal": "Normale",
|
||||
"Not Configured": "Non configurato",
|
||||
"Not configured": "Non configurato",
|
||||
"Not specified": "Non specificato",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "Nota: i valori AccessKey e SecretKey sono obbligatori per ogni sito quando si aggiungono o modificano siti peer",
|
||||
"Notice": "Avviso",
|
||||
"Number of retry attempts, default: 3": "Numero di tentativi di ripetizione, predefinito: 3",
|
||||
"Object": "Oggetto",
|
||||
"Object Count": "Conteggio oggetti",
|
||||
"Object Detail Description": "Descrizione dettagli oggetto",
|
||||
"Object Details": "Dettagli oggetto",
|
||||
"Object Lock": "Blocco oggetto",
|
||||
"Object Name": "Nome oggetto",
|
||||
"Object Repair": "Riparazione oggetto",
|
||||
"Object Sharing": "Condivisione oggetto",
|
||||
"Object Size": "Dimensione oggetto",
|
||||
"Object Tags": "Tag oggetto",
|
||||
"Object Type": "Tipo oggetto",
|
||||
"Object Version": "Versione oggetto",
|
||||
"Object Versions": "Versioni oggetto",
|
||||
"Object lock is not enabled, cannot set retention": "Il blocco oggetto non è abilitato, impossibile impostare la conservazione",
|
||||
"Objects": "Oggetti",
|
||||
"Off": "Spento",
|
||||
"Offline": "Offline",
|
||||
"On": "Acceso",
|
||||
"On-site Deployment": "Distribuzione in loco",
|
||||
"On-site Technical Service": "Servizio tecnico in loco",
|
||||
"One-hour Response": "Risposta entro un'ora",
|
||||
"Online": "Online",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "Sono supportati solo file ZIP e la dimensione del file non dovrebbe superare 10MB",
|
||||
"Overwrite Warning": "Avviso sovrascrittura",
|
||||
"Page will refresh automatically after saving configuration": "La pagina si aggiornerà automaticamente dopo il salvataggio della configurazione",
|
||||
"Page {current} of {total}": "Pagina {current} di {total}",
|
||||
"Password": "Password",
|
||||
"Pause": "Pausa",
|
||||
"Paused": "In pausa",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "In pausa",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Eliminazione in attesa",
|
||||
"Performance": "Prestazioni",
|
||||
"Platinum Service": "Servizio Platinum",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "Configura l'indirizzo del server RustFS",
|
||||
"Please enter": "Inserisci",
|
||||
"Please enter Access Key": "Inserisci chiave di accesso",
|
||||
"Please enter STS key": "Inserisci chiave STS",
|
||||
"Please enter STS session token": "Inserisci token sessione STS",
|
||||
"Please enter STS username": "Inserisci nome utente STS",
|
||||
"Please enter Secret Key": "Inserisci chiave segreta",
|
||||
"Please enter Vault server address": "Inserisci indirizzo server Vault",
|
||||
"Please enter Vault token": "Inserisci token Vault",
|
||||
"Please enter account": "Inserisci account",
|
||||
"Please enter both Role ID and Secret ID": "Inserisci sia ID ruolo che ID segreto",
|
||||
"Please enter bucket": "Inserisci bucket",
|
||||
"Please enter current password": "Inserisci password corrente",
|
||||
"Please enter default key ID": "Inserisci ID chiave predefinito",
|
||||
"Please enter endpoint": "Inserisci endpoint",
|
||||
"Please enter key": "Inserisci chiave",
|
||||
"Please enter key name": "Inserisci nome chiave",
|
||||
"Please enter name": "Inserisci nome",
|
||||
"Please enter new password": "Inserisci nuova password",
|
||||
"Please enter new password again": "Inserisci nuovamente la nuova password",
|
||||
"Please enter password": "Inserisci password",
|
||||
"Please enter policy content": "Inserisci contenuto politica",
|
||||
"Please enter policy name": "Inserisci nome politica",
|
||||
"Please enter prefix": "Inserisci prefisso",
|
||||
"Please enter region": "Inserisci regione",
|
||||
"Please enter rule name": "Inserisci nome regola",
|
||||
"Please enter server address": "Inserisci indirizzo server",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "Inserisci indirizzo server (es. http://localhost:9000)",
|
||||
"Please enter storage class": "Inserisci classe di archiviazione",
|
||||
"Please enter suffix": "Inserisci suffisso",
|
||||
"Please enter tag value": "Inserisci valore tag",
|
||||
"Please enter user group name": "Inserisci nome gruppo utenti",
|
||||
"Please enter username": "Inserisci nome utente",
|
||||
"Please enter valid days": "Inserisci giorni validi",
|
||||
"Please enter valid health check interval": "Inserisci intervallo controllo salute valido",
|
||||
"Please fill in at least one configuration item": "Compila almeno un elemento di configurazione",
|
||||
"Please fill in complete retention information": "Compila informazioni di conservazione complete",
|
||||
"Please fill in complete tag information": "Compila informazioni tag complete",
|
||||
"Please fill in the correct format": "Compila nel formato corretto",
|
||||
"Please provide credentials": "Fornisci credenziali",
|
||||
"Please select KMS key": "Seleziona chiave KMS",
|
||||
"Please select a KMS key for SSE-KMS encryption": "Seleziona una chiave KMS per la crittografia SSE-KMS",
|
||||
"Please select a ZIP file to import": "Seleziona un file ZIP da importare",
|
||||
"Please select at least one event": "Seleziona almeno un evento",
|
||||
"Please select at least one item": "Seleziona almeno un elemento",
|
||||
"Please select authentication method": "Seleziona metodo di autenticazione",
|
||||
"Please select bucket": "Seleziona bucket",
|
||||
"Please select encryption type": "Seleziona tipo di crittografia",
|
||||
"Please select event target type": "Seleziona tipo destinazione evento",
|
||||
"Please select expiration date": "Seleziona data di scadenza",
|
||||
"Please select expiry date": "Seleziona data di scadenza",
|
||||
"Please select policy": "Seleziona politica",
|
||||
"Please select resource name": "Seleziona nome risorsa",
|
||||
"Please select rule type": "Seleziona tipo regola",
|
||||
"Please select storage type": "Seleziona tipo di archiviazione",
|
||||
"Policies": "Politiche",
|
||||
"Policy": "Politica",
|
||||
"Policy Content": "Contenuto politica",
|
||||
"Policy Name": "Nome politica",
|
||||
"Policy Original": "Politica originale",
|
||||
"Policy format invalid": "Formato politica non valido",
|
||||
"Prefix": "Prefisso",
|
||||
"Prev": "Precedente",
|
||||
"Preview": "Anteprima",
|
||||
"Preview unavailable": "Anteprima non disponibile",
|
||||
"Previous Page": "Pagina precedente",
|
||||
"Priority": "Priorità",
|
||||
"Private": "Privato",
|
||||
"Processing": "Elaborazione",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Pubblico",
|
||||
"Public, Private, Custom": "Pubblico, Privato, Personalizzato",
|
||||
"Read/Write Performance": "Prestazioni lettura/scrittura",
|
||||
"Reading Folder Files": "Lettura file cartella",
|
||||
"Ready to import: {filename}": "Pronto per importare: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "Stato in tempo reale dei server cluster e dei dispositivi di archiviazione backend.",
|
||||
"Reduced Redundancy Parity": "Parità ridondanza ridotta",
|
||||
"Reed-Solomon Matrix": "Matrice Reed-Solomon",
|
||||
"Refresh": "Aggiorna",
|
||||
"Region": "Regione",
|
||||
"Reliable distributed file system": "Sistema di file distribuito affidabile",
|
||||
"Remaining (3TB)": "Rimanente (3TB)",
|
||||
"Remote Site": "Sito remoto",
|
||||
"Remote Technical Support": "Supporto tecnico remoto",
|
||||
"Remote Tiering": "Tiering remoto",
|
||||
"Remove": "Rimuovi",
|
||||
"Remove Encryption": "Rimuovi crittografia",
|
||||
"Replicate Delete Markers": "Replica marker eliminazione",
|
||||
"Replicate Existing Objects": "Replica oggetti esistenti",
|
||||
"Request timeout in seconds, default: 30": "Timeout richiesta in secondi, predefinito: 30",
|
||||
"Required: Vault authentication token": "Obbligatorio: token di autenticazione Vault",
|
||||
"Reset": "Reimposta",
|
||||
"Reset to Default": "Reimposta al predefinito",
|
||||
"Reset to default successfully": "Reimpostato al predefinito con successo",
|
||||
"Response Level": "Livello risposta",
|
||||
"Resume": "Riprendi",
|
||||
"Retention": "Conservazione",
|
||||
"Retention Mode": "Modalità",
|
||||
"Retention Period": "Periodo conservazione",
|
||||
"Retention RetainUntilDate": "Conservazione fino a data",
|
||||
"Retention Save Failed": "Salvataggio conservazione non riuscito",
|
||||
"Retention Unit": "Unità conservazione",
|
||||
"Retry Attempts": "Tentativi di ripetizione",
|
||||
"Role ID": "ID ruolo",
|
||||
"Rows per page": "Righe per pagina",
|
||||
"Rule ID": "ID regola",
|
||||
"Running": "In esecuzione",
|
||||
"Running (Unhealthy)": "In esecuzione (non sano)",
|
||||
"Rust-based": "Basato su Rust",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "Archiviazione fredda integrata RustFS",
|
||||
"RustyVault Encryption": "Crittografia RustyVault",
|
||||
"S3 Compatibility": "Compatibilità S3",
|
||||
"S3 Compatible": "Compatibile S3",
|
||||
"S3 Endpoint": "Endpoint S3",
|
||||
"S3 Region": "Regione S3",
|
||||
"SDK Support": "Supporto SDK",
|
||||
"SNMD Mode": "Modalità SNMD",
|
||||
"SNND Mode": "Modalità SNND",
|
||||
"SSE Settings": "Impostazioni SSE",
|
||||
"STS Key": "Chiave STS",
|
||||
"STS Login": "Accesso STS",
|
||||
"STS Session Token": "Token sessione STS",
|
||||
"STS Username": "Nome utente STS",
|
||||
"Saturday": "Sabato",
|
||||
"Save": "Salva",
|
||||
"Save Configuration": "Salva configurazione",
|
||||
"Save Failed": "Salvataggio non riuscito",
|
||||
"Save failed": "Salvataggio non riuscito",
|
||||
"Saved": "Salvato",
|
||||
"Scalability": "Scalabilità",
|
||||
"Search": "Cerca",
|
||||
"Search Access Key": "Cerca chiave di accesso",
|
||||
"Search Access User": "Cerca utente accesso",
|
||||
"Search Account": "Cerca account",
|
||||
"Search Group": "Cerca gruppo",
|
||||
"Search Policy": "Cerca politica",
|
||||
"Search User": "Cerca utente",
|
||||
"Search User Group": "Cerca gruppo utenti",
|
||||
"Search buckets...": "Cerca bucket...",
|
||||
"Secret ID": "ID segreto",
|
||||
"Secret Key": "Chiave segreta",
|
||||
"Secret Key *": "Chiave segreta *",
|
||||
"Secret Key is required": "La chiave segreta è obbligatoria",
|
||||
"Secret Key length must be between 8 and 40 characters": "La lunghezza della chiave segreta deve essere compresa tra 8 e 40 caratteri",
|
||||
"Secure & Reliable": "Sicuro e affidabile",
|
||||
"Secure Transport": "Trasporto sicuro",
|
||||
"Select File": "Seleziona file",
|
||||
"Select Folder": "Seleziona cartella",
|
||||
"Select Group": "Seleziona gruppo",
|
||||
"Select KMS key": "Seleziona chiave KMS",
|
||||
"Select encryption algorithm": "Seleziona algoritmo di crittografia",
|
||||
"Select encryption type": "Seleziona tipo di crittografia",
|
||||
"Select events": "Seleziona eventi",
|
||||
"Select the KMS key to use for encryption": "Seleziona la chiave KMS da usare per la crittografia",
|
||||
"Select user group members": "Seleziona membri gruppo utenti",
|
||||
"Select user group policies": "Seleziona politiche gruppo utenti",
|
||||
"Selected Type": "Tipo selezionato",
|
||||
"Send events via MQTT broker": "Invia eventi tramite broker MQTT",
|
||||
"Server Address": "Indirizzo server",
|
||||
"Server Configuration": "Configurazione server",
|
||||
"Server Host": "Host server",
|
||||
"Server Information": "Informazioni server",
|
||||
"Server List": "Elenco server",
|
||||
"Server configuration saved successfully": "Configurazione server salvata con successo",
|
||||
"Server-Side Encryption (SSE) Configuration": "Configurazione crittografia lato server (SSE)",
|
||||
"Servers": "Server",
|
||||
"Service Email": "Email servizio",
|
||||
"Service Hotline": "Linea diretta servizio",
|
||||
"Service Status": "Stato servizio",
|
||||
"Set Policy": "Imposta politica",
|
||||
"Set Retention": "Imposta conservazione",
|
||||
"Set Tag": "Imposta tag",
|
||||
"Set Tags": "Imposta tag",
|
||||
"Set the prefix for the rule": "Imposta il prefisso per la regola",
|
||||
"Set the time cycle for the rule": "Imposta il ciclo temporale per la regola",
|
||||
"Settings": "Impostazioni",
|
||||
"Single Machine Multiple Disks": "Singola macchina più dischi",
|
||||
"Single Object": "Singolo oggetto",
|
||||
"Site Name": "Nome sito",
|
||||
"Site Replication": "Replica sito",
|
||||
"Size": "Dimensione",
|
||||
"Skip": "Salta",
|
||||
"Sort by": "Ordina per",
|
||||
"Standard AWS S3 tier": "Tier AWS S3 standard",
|
||||
"Standard Storage Parity": "Parità archiviazione standard",
|
||||
"Start KMS": "Avvia KMS",
|
||||
"Start Upload": "Avvia caricamento",
|
||||
"Status": "Stato",
|
||||
"Status refreshed successfully": "Stato aggiornato con successo",
|
||||
"Stop KMS": "Ferma KMS",
|
||||
"Storage Class": "Classe di archiviazione",
|
||||
"Storage Space": "Spazio archiviazione",
|
||||
"Storage Type": "Tipo di archiviazione",
|
||||
"Storage Usage Statistics": "Statistiche utilizzo archiviazione",
|
||||
"Submit": "Invia",
|
||||
"Subscribe to event notification": "Sottoscrivi notifica evento",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Suffisso",
|
||||
"Sunday": "Domenica",
|
||||
"Support Level": "Livello supporto",
|
||||
"Supported": "Supportato",
|
||||
"Supported CPU Architecture": "Architettura CPU supportata",
|
||||
"Supported OS": "OS supportato",
|
||||
"Supports Erasure Coding": "Supporta codifica cancellazione",
|
||||
"Supports HTTPS, TLS": "Supporta HTTPS, TLS",
|
||||
"Supports high concurrency operations": "Supporta operazioni ad alta concorrenza",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "Supporta la gestione di più dischi di archiviazione su un singolo server per migliorare l'utilizzo delle risorse di archiviazione e semplificare la gestione e la manutenzione",
|
||||
"Sync": "Sincronizza",
|
||||
"Sync delete markers to destination bucket.": "Sincronizza marker eliminazione al bucket destinazione.",
|
||||
"Synchronous": "Sincrono",
|
||||
"Tag": "Tag",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "Chiave tag",
|
||||
"Tag Key Placeholder": "Segnaposto chiave tag",
|
||||
"Tag Name": "Nome tag",
|
||||
"Tag Update Failed": "Aggiornamento tag non riuscito",
|
||||
"Tag Update Success": "Aggiornamento tag riuscito",
|
||||
"Tag Value": "Valore tag",
|
||||
"Tag Value Placeholder": "Segnaposto valore tag",
|
||||
"Tags": "Tag",
|
||||
"Target Bucket": "Bucket destinazione",
|
||||
"Task Completed": "Attività completata",
|
||||
"Task Management": "Gestione attività",
|
||||
"Technical Parameters": "Parametri tecnici",
|
||||
"Technical Training": "Formazione tecnica",
|
||||
"Temporary URL": "URL temporaneo",
|
||||
"Temporary URL Expiration": "Scadenza URL temporaneo",
|
||||
"Generate URL": "Genera URL",
|
||||
"URL generated successfully": "URL generato con successo",
|
||||
"Failed to generate URL": "Impossibile generare l'URL",
|
||||
"Total Duration": "Durata totale",
|
||||
"Minutes": "Minuti",
|
||||
"Hours": "Ore",
|
||||
"Days": "Giorni",
|
||||
"Minutes must be between 0 and 59": "I minuti devono essere compresi tra 0 e 59",
|
||||
"Hours must be between 0 and 23": "Le ore devono essere comprese tra 0 e 23",
|
||||
"Hours must be between 0 and 24 when days is 0": "Le ore devono essere comprese tra 0 e 24 quando i giorni sono 0",
|
||||
"Days must be between 0 and 7": "I giorni devono essere compresi tra 0 e 7",
|
||||
"Total duration cannot exceed 7 days": "La durata totale non può superare 7 giorni",
|
||||
"Please enter a valid expiration time": "Inserisci un tempo di scadenza valido",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "Il file esportato contiene informazioni sensibili. Conservalo in modo sicuro.",
|
||||
"The two passwords are inconsistent": "Le due password non corrispondono",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "Questa azione non può essere annullata e bypasserà il normale processo di eliminazione.",
|
||||
"This action cannot be undone.": "Questa azione non può essere annullata.",
|
||||
"Thursday": "Giovedì",
|
||||
"Tier": "Tier",
|
||||
"Tier Type": "Tipo tier",
|
||||
"Tiered Storage": "Archiviazione a livelli",
|
||||
"Tiering Transfer": "Trasferimento tiering",
|
||||
"Tiers": "Tier",
|
||||
"Time Cycle": "Ciclo temporale",
|
||||
"Timeout": "Timeout",
|
||||
"Timeout (seconds)": "Timeout (secondi)",
|
||||
"Token": "Token",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "Chiavi di crittografia di primo livello utilizzate per crittografare le chiavi dati. Gestite da KMS e non lasciano mai il sistema.",
|
||||
"Total": "Totale",
|
||||
"Total Capacity": "Capacità totale",
|
||||
"Total Files": "File totali",
|
||||
"Total Requests": "Richieste totali",
|
||||
"Transit Mount": "Montaggio Transit",
|
||||
"Transit Mount Path": "Percorso montaggio Transit",
|
||||
"Transit engine mount path, default: transit": "Percorso montaggio motore Transit, predefinito: transit",
|
||||
"Transition": "Transizione",
|
||||
"Trigger custom HTTP endpoints": "Attiva endpoint HTTP personalizzati",
|
||||
"Try adjusting your search terms": "Prova ad aggiustare i tuoi termini di ricerca",
|
||||
"Tuesday": "Martedì",
|
||||
"Type": "Tipo",
|
||||
"Understanding Key Types": "Comprensione tipi chiave",
|
||||
"Unknown": "Sconosciuto",
|
||||
"Unknown Folder": "Cartella sconosciuta",
|
||||
"Unlimited": "Illimitato",
|
||||
"Update Failed": "Aggiornamento non riuscito",
|
||||
"Update Key": "Aggiorna chiave",
|
||||
"Update License": "Aggiorna licenza",
|
||||
"Update Success": "Aggiornamento riuscito",
|
||||
"Update failed": "Aggiornamento non riuscito",
|
||||
"Updated successfully": "Aggiornato con successo",
|
||||
"Upload": "Carica",
|
||||
"Upload File": "Carica file",
|
||||
"Upload files or create folders to populate this bucket.": "Carica file o crea cartelle per popolare questo bucket.",
|
||||
"Uploading Status": "Stato caricamento",
|
||||
"Uptime": "Tempo di attività",
|
||||
"Usage Report": "Report utilizzo",
|
||||
"Use AppRole authentication": "Usa autenticazione AppRole",
|
||||
"Use Main Account Policy": "Usa politica account principale",
|
||||
"Use TLS": "Usa TLS",
|
||||
"Use Vault token for authentication": "Usa token Vault per autenticazione",
|
||||
"Use main account policy": "Usa politica account principale",
|
||||
"Used": "Utilizzato",
|
||||
"Used (7TB)": "Utilizzato (7TB)",
|
||||
"Used Capacity": "Capacità utilizzata",
|
||||
"User Groups": "Gruppi utenti",
|
||||
"User Name": "Nome utente",
|
||||
"Users": "Utenti",
|
||||
"Validity": "Validità",
|
||||
"Vault Server": "Server Vault",
|
||||
"Vault Server Address": "Indirizzo server Vault",
|
||||
"Vault Token": "Token Vault",
|
||||
"Version": "Versione",
|
||||
"Version 2.0, January 2004": "Versione 2.0, gennaio 2004",
|
||||
"Version Control": "Controllo versione",
|
||||
"VersionId": "ID versione",
|
||||
"Versions": "Versioni",
|
||||
"View Documentation": "Visualizza documentazione",
|
||||
"Virtualization Platform Support": "Supporto piattaforma virtualizzazione",
|
||||
"Visit website": "Visita sito web",
|
||||
"WARNING: This will immediately delete the key": "AVVISO: Questo eliminerà immediatamente la chiave",
|
||||
"WEBHOOK_AUTH_TOKEN": "Token autenticazione Webhook",
|
||||
"WEBHOOK_ENDPOINT": "Endpoint Webhook",
|
||||
"WEBHOOK_QUEUE_DIR": "Directory coda Webhook",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Limite coda Webhook",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "In attesa",
|
||||
"waiting": "In attesa",
|
||||
"Warning": "Avviso",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Mercoledì",
|
||||
"Weekly MB/s Change Trend": "Tendenza cambiamento settimanale MB/s",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "ANNI",
|
||||
"YYYY-MM-DD": "AAAA-MM-GG",
|
||||
"YYYY-MM-DD HH:mm": "AAAA-MM-GG HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "AAAA-MM-GG HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "AAAA-MM-GGTHH:mm",
|
||||
"Year": "Anno",
|
||||
"Yes": "Sì",
|
||||
"Your browser does not support the audio tag": "Il tuo browser non supporta il tag audio",
|
||||
"Your browser does not support the video tag": "Il tuo browser non supporta il tag video",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "La lunghezza della password non può essere inferiore a 8 caratteri e superiore a 16 caratteri",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "La lunghezza del nome utente non può essere inferiore a 8 caratteri e superiore a 16 caratteri",
|
||||
"Validation failed": "Validazione non riuscita",
|
||||
"API request failed": "Richiesta API non riuscita",
|
||||
"Operation failed": "Operazione non riuscita",
|
||||
"Create a user to get started": "Crea un utente per iniziare",
|
||||
"Get Notification Config Failed": "Recupero configurazione notifica non riuscito",
|
||||
"empty is indicates permanent validity": "Vuoto indica validità permanente",
|
||||
"Create user groups to organize permissions": "Crea gruppi utenti per organizzare le autorizzazioni",
|
||||
"Filter From This Page": "Filtra da questa pagina"
|
||||
}
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(設定の詳細は非公開です)",
|
||||
"(Configured)": "(設定済み)",
|
||||
"API Base URL": "APIベースURL",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "アクセス制御",
|
||||
"Access Key": "アクセスキー",
|
||||
"Access Key *": "アクセスキー *",
|
||||
"Access Key is required": "アクセスキーは必須です",
|
||||
"Access Key length must be between 3 and 20 characters": "アクセスキーの長さは3〜20文字である必要があります",
|
||||
"Access Keys": "アクセスキー",
|
||||
"Access Policy": "アクセスポリシー",
|
||||
"Account": "アカウント",
|
||||
"Action": "アクション",
|
||||
"Actions": "アクション",
|
||||
"Active": "アクティブ",
|
||||
"Add": "追加",
|
||||
"Add Access Key": "アクセスキーを追加",
|
||||
"Add Account": "アカウントを追加",
|
||||
"Add Event Destination": "イベント先を追加",
|
||||
"Add Event Subscription": "イベント購読を追加",
|
||||
"Add Event Subscription to get started": "開始するにはイベント購読を追加してください",
|
||||
"Add Failed": "追加に失敗しました",
|
||||
"Add Lifecycle Rule": "ライフサイクルルールを追加",
|
||||
"Add Replication Rule": "レプリケーションルールを追加",
|
||||
"Add Site": "サイトを追加",
|
||||
"Add Site Replication": "サイトレプリケーションを追加",
|
||||
"Add Success": "追加に成功しました",
|
||||
"Add Tag": "タグを追加",
|
||||
"Add Tier": "ティアを追加",
|
||||
"Add User": "ユーザーを追加",
|
||||
"Add User Group": "ユーザーグループを追加",
|
||||
"Add failed": "追加に失敗しました",
|
||||
"Add group members": "グループメンバーを追加",
|
||||
"Add replication rules to sync objects across buckets.": "バケット間でオブジェクトを同期するレプリケーションルールを追加します。",
|
||||
"Add success": "追加に成功しました",
|
||||
"Add tiers to configure remote storage destinations.": "リモートストレージ先を設定するティアを追加します。",
|
||||
"Add to Group": "グループに追加",
|
||||
"Add {type} Destination": "{type}先を追加",
|
||||
"Added successfully": "正常に追加されました",
|
||||
"Adding to Upload Queue": "アップロードキューに追加中",
|
||||
"Advanced Monitoring": "高度な監視",
|
||||
"Advanced Settings": "詳細設定",
|
||||
"Algorithm": "アルゴリズム",
|
||||
"Amazon Resource Name": "Amazon Resource Name",
|
||||
"Apache License": "Apacheライセンス",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "VaultからのAppRoleロールID",
|
||||
"AppRole Secret ID from Vault": "VaultからのAppRoleシークレットID",
|
||||
"Are you sure you want to delete all selected keys?": "選択したすべてのキーを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete all selected user groups?": "選択したすべてのユーザーグループを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete all selected users?": "選択したすべてのユーザーを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete the selected objects?": "選択したオブジェクトを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this bucket?": "このバケットを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this destination?": "この先を削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this key?": "このキーを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this notification configuration?": "この通知設定を削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this object?": "このオブジェクトを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this policy?": "このポリシーを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this replication rule?": "このレプリケーションルールを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this rule?": "このルールを削除してもよろしいですか?",
|
||||
"Are you sure you want to delete this tier?": "このティアを削除してもよろしいですか?",
|
||||
"Are you sure you want to force delete this key?": "このキーを強制削除してもよろしいですか?",
|
||||
"Are you sure you want to remove encryption?": "暗号化を削除してもよろしいですか?",
|
||||
"Assign Policy": "ポリシーを割り当て",
|
||||
"Asynchronous": "非同期",
|
||||
"Audit": "監査",
|
||||
"Auth Method": "認証方法",
|
||||
"Authentication Method": "認証方法",
|
||||
"Authorization": "認可",
|
||||
"Auto": "自動",
|
||||
"Automatically inherit the main account policy when enabled.": "有効にすると、メインアカウントポリシーを自動的に継承します。",
|
||||
"Available": "利用可能",
|
||||
"Backend": "バックエンド",
|
||||
"Backend Services": "バックエンドサービス",
|
||||
"Backend Status": "バックエンドステータス",
|
||||
"Backend Type": "バックエンドタイプ",
|
||||
"Bandwidth Limit": "帯域幅制限",
|
||||
"Batch allocation policies": "バッチ割り当てポリシー",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "ブラウザ",
|
||||
"Browser Warning": "ブラウザ警告",
|
||||
"Bucket": "バケット",
|
||||
"Bucket Configuration": "バケット設定",
|
||||
"Bucket Count": "バケット数",
|
||||
"Bucket Encryption Management": "バケット暗号化管理",
|
||||
"Bucket Events": "バケットイベント",
|
||||
"Bucket Notification": "バケット通知",
|
||||
"Bucket Policy": "バケットポリシー",
|
||||
"Bucket Quota": "バケットクォータ",
|
||||
"Bucket Replication": "バケットレプリケーション",
|
||||
"Bucket Setting": "バケット設定",
|
||||
"Bucket encryption configured successfully": "バケット暗号化が正常に設定されました",
|
||||
"Bucket encryption removed successfully": "バケット暗号化が正常に削除されました",
|
||||
"Bucket is not empty": "バケットは空ではありません",
|
||||
"Bucket list refreshed": "バケットリストが更新されました",
|
||||
"Buckets": "バケット",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "キャッシュ有効",
|
||||
"Cache Hits": "キャッシュヒット",
|
||||
"Cache Misses": "キャッシュミス",
|
||||
"Cache Statistics": "キャッシュ統計",
|
||||
"Cache Status": "キャッシュステータス",
|
||||
"Cache TTL": "キャッシュTTL",
|
||||
"Cache TTL (seconds)": "キャッシュTTL(秒)",
|
||||
"Cache Warning": "キャッシュ警告",
|
||||
"Cache clear completed with warnings": "警告付きでキャッシュクリアが完了しました",
|
||||
"Cache cleared successfully": "キャッシュが正常にクリアされました",
|
||||
"Cache time-to-live in seconds, default: 600": "キャッシュの生存時間(秒)、デフォルト: 600",
|
||||
"Cancel": "キャンセル",
|
||||
"Canceled": "キャンセル済み",
|
||||
"canceled": "キャンセル済み",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "パスワードを変更",
|
||||
"Change Secret Key": "シークレットキーを変更",
|
||||
"Change current account password": "現在のアカウントパスワードを変更",
|
||||
"Confirm New Secret Key": "新しいシークレットキーを確認",
|
||||
"Choose the encryption method for this bucket": "このバケットの暗号化方法を選択",
|
||||
"Clear All": "すべてクリア",
|
||||
"Clear Cache": "キャッシュをクリア",
|
||||
"Clear Records": "レコードをクリア",
|
||||
"Click or drag ZIP file to this area to upload": "ZIPファイルをクリックまたはドラッグしてこの領域にアップロード",
|
||||
"Close": "閉じる",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "設定",
|
||||
"Configuration Information": "設定情報",
|
||||
"Configuration is saved locally in your browser": "設定はブラウザにローカルに保存されます",
|
||||
"Configuration loaded successfully": "設定が正常に読み込まれました",
|
||||
"Configuration reset successfully": "設定が正常にリセットされました",
|
||||
"Configuration saved successfully": "設定が正常に保存されました",
|
||||
"Configure": "設定",
|
||||
"Configure Bucket Encryption": "バケット暗号化を設定",
|
||||
"Configure Encryption": "暗号化を設定",
|
||||
"Configure Encryption for {bucket}": "{bucket}の暗号化を設定",
|
||||
"Configure KMS": "KMSを設定",
|
||||
"Configure server-side encryption for your objects using external key management services.": "外部キー管理サービスを使用してオブジェクトのサーバー側暗号化を設定します。",
|
||||
"Configured": "設定済み",
|
||||
"Confirm": "確認",
|
||||
"Confirm Delete": "削除を確認",
|
||||
"Confirm Force Delete": "強制削除を確認",
|
||||
"Confirm New Password": "新しいパスワードを確認",
|
||||
"Confirm Remove Encryption": "暗号化の削除を確認",
|
||||
"Contact Support": "サポートに連絡",
|
||||
"Copy": "コピー",
|
||||
"Copy Failed": "コピーに失敗しました",
|
||||
"Copy Success": "コピーに成功しました",
|
||||
"Copy Temporary URL": "一時URLをコピー",
|
||||
"Create": "作成",
|
||||
"Create Bucket": "バケットを作成",
|
||||
"Create Failed": "作成に失敗しました",
|
||||
"Create First Key": "最初のキーを作成",
|
||||
"Create Key": "キーを作成",
|
||||
"Create New Key": "新しいキーを作成",
|
||||
"Create Success": "作成に成功しました",
|
||||
"Create User": "ユーザーを作成",
|
||||
"Create a bucket to start storing objects.": "オブジェクトの保存を開始するバケットを作成します。",
|
||||
"Create a new access key to get started.": "開始するには新しいアクセスキーを作成します。",
|
||||
"Create a policy to manage access control templates.": "アクセス制御テンプレートを管理するポリシーを作成します。",
|
||||
"Create an event destination to forward notifications.": "通知を転送するイベント先を作成します。",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "オブジェクトの移行と有効期限を自動化するライフサイクルルールを作成します。",
|
||||
"Create your first KMS key to get started": "開始するには最初のKMSキーを作成します",
|
||||
"Create your first bucket to configure encryption": "暗号化を設定する最初のバケットを作成します",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "KMSバックエンドで管理されるキーを作成、ローテーション、検査します。",
|
||||
"Created": "作成済み",
|
||||
"Creation Date": "作成日",
|
||||
"Current Configuration": "現在の設定",
|
||||
"Current KMS Type": "現在のKMSタイプ",
|
||||
"Current Password": "現在のパスワード",
|
||||
"Current Prefix": "現在のプレフィックス",
|
||||
"Current Site": "現在のサイト",
|
||||
"Current User Policy": "現在のユーザーポリシー",
|
||||
"Current Version": "現在のバージョン",
|
||||
"Current user policy": "現在のユーザーポリシー",
|
||||
"Custom": "カスタム",
|
||||
"Customer Service": "カスタマーサービス",
|
||||
"DAYS": "日",
|
||||
"Dark": "ダーク",
|
||||
"Data Backup": "データバックアップ",
|
||||
"Data Key (DEK)": "データキー(DEK)",
|
||||
"Data Keys (DEK)": "データキー(DEK)",
|
||||
"Data Redundancy": "データ冗長性",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "データキーは、ファイルを暗号化する際に自動的に生成されます。マスターキーで暗号化され、実際のデータ暗号化に使用されます。",
|
||||
"Day": "日",
|
||||
"Days After": "日後",
|
||||
"Default Key ID": "デフォルトキーID",
|
||||
"Default master key ID for SSE-KMS": "SSE-KMSのデフォルトマスターキーID",
|
||||
"Delete": "削除",
|
||||
"Delete Failed": "削除に失敗しました",
|
||||
"Delete Key": "キーを削除",
|
||||
"Delete Marker Handling": "削除マーカーの処理",
|
||||
"Delete Record": "レコードを削除",
|
||||
"Delete Selected": "選択したものを削除",
|
||||
"Delete Success": "削除に成功しました",
|
||||
"Delete Tag Confirm": "タグ削除の確認",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "削除中...",
|
||||
"Description": "説明",
|
||||
"Destination Bucket": "宛先バケット",
|
||||
"Detailed KMS Status": "詳細なKMSステータス",
|
||||
"Details": "詳細",
|
||||
"Development Language Requirements": "開発言語要件",
|
||||
"Disabled": "無効",
|
||||
"Disk Bad Spot Check": "ディスク不良スポットチェック",
|
||||
"Disks": "ディスク",
|
||||
"Documentation": "ドキュメント",
|
||||
"Download": "ダウンロード",
|
||||
"Download complete IAM configuration as ZIP file": "完全なIAM設定をZIPファイルとしてダウンロード",
|
||||
"Drag Drop Info": "ドラッグ&ドロップ情報",
|
||||
"EC Mode": "ECモード",
|
||||
"Edit": "編集",
|
||||
"Edit Configuration": "設定を編集",
|
||||
"Edit Failed": "編集に失敗しました",
|
||||
"Edit Group": "グループを編集",
|
||||
"Edit Key": "キーを編集",
|
||||
"Edit Policy": "ポリシーを編集",
|
||||
"Edit Success": "編集に成功しました",
|
||||
"Edit User": "ユーザーを編集",
|
||||
"Emergency Response": "緊急対応",
|
||||
"Enable Cache": "キャッシュを有効化",
|
||||
"Enable Storage Encryption": "ストレージ暗号化を有効化",
|
||||
"Enable caching for better performance, default: true": "パフォーマンス向上のためキャッシュを有効化、デフォルト: true",
|
||||
"Enable secure transport when connecting to endpoint.": "エンドポイントに接続する際にセキュアトランスポートを有効化します。",
|
||||
"Enabled": "有効",
|
||||
"Encryption": "暗号化",
|
||||
"Encryption Status": "暗号化ステータス",
|
||||
"Encryption Type": "暗号化タイプ",
|
||||
"Encryption algorithm for the key.": "キーの暗号化アルゴリズム。",
|
||||
"Endpoint": "エンドポイント",
|
||||
"Endpoint *": "エンドポイント *",
|
||||
"Endpoint is required": "エンドポイントは必須です",
|
||||
"Enter AppRole Role ID": "AppRoleロールIDを入力",
|
||||
"Enter AppRole Secret ID": "AppRoleシークレットIDを入力",
|
||||
"Enter your Vault authentication token": "Vault認証トークンを入力",
|
||||
"Enterprise": "エンタープライズ",
|
||||
"Enterprise License": "エンタープライズライセンス",
|
||||
"Enterprise Service Level": "エンタープライズサービスレベル",
|
||||
"Error": "エラー",
|
||||
"Event Destinations": "イベント先",
|
||||
"Event Target created successfully": "イベント先が正常に作成されました",
|
||||
"Events": "イベント",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "例: http://localhost:9000 または https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "既存の暗号化されたオブジェクトは暗号化されたままです。",
|
||||
"Expiration": "有効期限",
|
||||
"Expiration Delete Mark": "有効期限削除マーク",
|
||||
"Expired": "期限切れ",
|
||||
"Expiry": "有効期限",
|
||||
"Export": "エクスポート",
|
||||
"Export Now": "今すぐエクスポート",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "ユーザー、グループ、ポリシー、アクセスキーを含むすべてのIAM設定をZIPファイルでエクスポートします。",
|
||||
"Exporting...": "エクスポート中...",
|
||||
"External MinIO tier": "外部MinIOティア",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "失敗({count})",
|
||||
"failed": "失敗({count})",
|
||||
"Failed to clear cache": "キャッシュのクリアに失敗しました",
|
||||
"Failed to configure bucket encryption": "バケット暗号化の設定に失敗しました",
|
||||
"Failed to create event target": "イベント先の作成に失敗しました",
|
||||
"Failed to create rule": "ルールの作成に失敗しました",
|
||||
"Failed to delete key": "キーの削除に失敗しました",
|
||||
"Failed to export IAM configuration": "IAM設定のエクスポートに失敗しました",
|
||||
"Failed to fetch KMS keys": "KMSキーの取得に失敗しました",
|
||||
"Failed to fetch data": "データの取得に失敗しました",
|
||||
"Failed to fetch object info": "オブジェクト情報の取得に失敗しました",
|
||||
"Failed to fetch versions": "バージョンの取得に失敗しました",
|
||||
"Failed to force delete key": "キーの強制削除に失敗しました",
|
||||
"Failed to get data": "データの取得に失敗しました",
|
||||
"Failed to get detailed status": "詳細ステータスの取得に失敗しました",
|
||||
"Failed to get key details": "キー詳細の取得に失敗しました",
|
||||
"Failed to import IAM configuration": "IAM設定のインポートに失敗しました",
|
||||
"Failed to load KMS status": "KMSステータスの読み込みに失敗しました",
|
||||
"Failed to load bucket list": "バケットリストの読み込みに失敗しました",
|
||||
"Failed to load current configuration": "現在の設定の読み込みに失敗しました",
|
||||
"Failed to load key list": "キーリストの読み込みに失敗しました",
|
||||
"Failed to refresh key list": "キーリストの更新に失敗しました",
|
||||
"Failed to refresh status": "ステータスの更新に失敗しました",
|
||||
"Failed to remove bucket encryption": "バケット暗号化の削除に失敗しました",
|
||||
"Failed to save configuration": "設定の保存に失敗しました",
|
||||
"Failed to save key": "キーの保存に失敗しました",
|
||||
"Failed to set local development mode": "ローカル開発モードの設定に失敗しました",
|
||||
"Failed to start KMS service": "KMSサービスの開始に失敗しました",
|
||||
"Failed to stop KMS service": "KMSサービスの停止に失敗しました",
|
||||
"Feature Permissions": "機能権限",
|
||||
"File Count Limit Exceeded": "ファイル数制限を超過しました",
|
||||
"File Size Limit": "ファイルサイズ制限",
|
||||
"File size exceeds limit (10MB)": "ファイルサイズが制限(10MB)を超えています",
|
||||
"Files": "ファイル",
|
||||
"First": "最初",
|
||||
"Folder": "フォルダ",
|
||||
"Folder Processing Error": "フォルダ処理エラー",
|
||||
"Force Delete": "強制削除",
|
||||
"Friday": "金曜日",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "このバケットへの今後のアップロードは、デフォルトでは暗号化されません。",
|
||||
"GOVERNANCE": "ガバナンス",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "ファイルを暗号化するマスターキーから生成されます。データを暗号化する際に自動的に作成されます。",
|
||||
"Get Data Failed": "データの取得に失敗しました",
|
||||
"Get Help": "ヘルプを取得",
|
||||
"Groups": "グループ",
|
||||
"HashiCorp Encryption": "HashiCorp暗号化",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "ヘルスチェック間隔(秒)",
|
||||
"High Memory Usage Warning": "メモリ使用量の高い警告",
|
||||
"High Performance": "高性能",
|
||||
"Hit Rate": "ヒット率",
|
||||
"IAM Configuration Export": "IAM設定エクスポート",
|
||||
"IAM Configuration Import": "IAM設定インポート",
|
||||
"IAM Policies": "IAMポリシー",
|
||||
"IAM configuration exported successfully": "IAM設定が正常にエクスポートされました",
|
||||
"IAM configuration imported successfully": "IAM設定が正常にインポートされました",
|
||||
"Identity Authentication Expansion": "アイデンティティ認証拡張",
|
||||
"If no versions remain, delete references to this object": "バージョンが残っていない場合、このオブジェクトへの参照を削除",
|
||||
"Import": "インポート",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "以前にエクスポートしたZIPファイルからIAM設定をインポートします。",
|
||||
"Import Now": "今すぐインポート",
|
||||
"Import Success": "インポートに成功しました",
|
||||
"Import/Export": "インポート/エクスポート",
|
||||
"Importing...": "インポート中...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total}件のタスクが進行中({processing}件処理中、{completed}件完了)",
|
||||
"Inactive": "非アクティブ",
|
||||
"Include objects that already exist in the source bucket.": "ソースバケットに既に存在するオブジェクトを含めます。",
|
||||
"Infinite Scaling": "無限スケーリング",
|
||||
"Info": "情報",
|
||||
"Infrastructure Health": "インフラストラクチャの健全性",
|
||||
"Inspect individual server health, disk utilization, and network status.": "個々のサーバーの健全性、ディスク使用率、ネットワークステータスを検査します。",
|
||||
"Invalid server address format": "無効なサーバーアドレス形式",
|
||||
"JSON Editor": "JSONエディタ",
|
||||
"KMS Configuration": "KMS設定",
|
||||
"KMS Key": "KMSキー",
|
||||
"KMS Key ID": "KMSキーID",
|
||||
"KMS Keys Management": "KMSキー管理",
|
||||
"KMS Status Overview": "KMSステータス概要",
|
||||
"KMS Type": "KMSタイプ",
|
||||
"KMS is not configured, please configure it first": "KMSが設定されていません。まず設定してください",
|
||||
"KMS server has errors": "KMSサーバーにエラーがあります",
|
||||
"KMS server is configured but not running": "KMSサーバーは設定されていますが実行されていません",
|
||||
"KMS server is not configured": "KMSサーバーが設定されていません",
|
||||
"KMS server is running and healthy": "KMSサーバーは実行中で健全です",
|
||||
"KMS server is running but unhealthy": "KMSサーバーは実行中ですが健全ではありません",
|
||||
"KMS server is running, configuration details are private": "KMSサーバーは実行中です。設定の詳細は非公開です",
|
||||
"KMS server status unknown": "KMSサーバーステータス不明",
|
||||
"KMS service has errors": "KMSサービスにエラーがあります",
|
||||
"KMS service is stopped": "KMSサービスが停止しています",
|
||||
"KMS service not initialized, please configure it first": "KMSサービスが初期化されていません。まず設定してください",
|
||||
"KMS service started successfully": "KMSサービスが正常に開始されました",
|
||||
"KMS service stopped successfully": "KMSサービスが正常に停止されました",
|
||||
"KV Mount": "KVマウント",
|
||||
"KV Mount Path": "KVマウントパス",
|
||||
"KV storage mount path, default: secret": "KVストレージマウントパス、デフォルト: secret",
|
||||
"Key": "キー",
|
||||
"Key Creation": "キー作成",
|
||||
"Key Directory": "キーディレクトリ",
|
||||
"Key Expiration": "キー有効期限",
|
||||
"Key ID": "キーID",
|
||||
"Key List": "キーリスト",
|
||||
"Key Login": "キーログイン",
|
||||
"Key Name": "キー名",
|
||||
"Key Path Prefix": "キーパスプレフィックス",
|
||||
"Key created successfully": "キーが正常に作成されました",
|
||||
"Key deleted successfully": "キーが正常に削除されました",
|
||||
"Key force deleted successfully": "キーが正常に強制削除されました",
|
||||
"Key is already pending deletion": "キーは既に削除待ちです",
|
||||
"Key list refreshed": "キーリストが更新されました",
|
||||
"Key services and configuration values reported by the cluster.": "クラスターによって報告されるキーサービスと設定値。",
|
||||
"Key storage path prefix in KV store": "KVストア内のキーストレージパスプレフィックス",
|
||||
"Large File Count Warning": "大きなファイル数の警告",
|
||||
"Last": "最後",
|
||||
"Last Modified": "最終更新",
|
||||
"Last Modified Time": "最終更新時刻",
|
||||
"Last Normal Operation": "最後の通常操作",
|
||||
"Last Scan Activity": "最後のスキャンアクティビティ",
|
||||
"LastModified": "最終更新",
|
||||
"Leave empty to use current host as default": "デフォルトとして現在のホストを使用するには空のままにします",
|
||||
"Legal Hold": "法的保持",
|
||||
"License": "ライセンス",
|
||||
"License Details": "ライセンス詳細",
|
||||
"License Key": "ライセンスキー",
|
||||
"License Valid Until": "ライセンス有効期限",
|
||||
"Licensed Company": "ライセンス会社",
|
||||
"Licensed Users": "ライセンスユーザー",
|
||||
"Lifecycle": "ライフサイクル",
|
||||
"Lifecycle Management": "ライフサイクル管理",
|
||||
"Light": "ライト",
|
||||
"Load Balancing": "負荷分散",
|
||||
"Loading buckets...": "バケットを読み込み中...",
|
||||
"Loading keys...": "キーを読み込み中...",
|
||||
"Local development mode set successfully": "ローカル開発モードが正常に設定されました",
|
||||
"Login": "ログイン",
|
||||
"Login Failed": "ログインに失敗しました",
|
||||
"Login Problems?": "ログインの問題?",
|
||||
"Login Success": "ログインに成功しました",
|
||||
"Logout": "ログアウト",
|
||||
"Logs": "ログ",
|
||||
"MNMD Mode": "MNMDモード",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "MQTTブローカー",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "MQTTキープアライブ間隔",
|
||||
"MQTT_PASSWORD": "MQTTパスワード",
|
||||
"MQTT_QOS": "MQTT QoS",
|
||||
"MQTT_QUEUE_DIR": "MQTTキューディレクトリ",
|
||||
"MQTT_QUEUE_LIMIT": "MQTTキュー制限",
|
||||
"MQTT_RECONNECT_INTERVAL": "MQTT再接続間隔",
|
||||
"MQTT_TOPIC": "MQTTトピック",
|
||||
"MQTT_USERNAME": "MQTTユーザー名",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "メインキーID(Transitキー名)。ビジネス関連の読み取り可能なIDを使用します。",
|
||||
"Make sure the server address is accessible from your network": "サーバーアドレスがネットワークからアクセス可能であることを確認してください",
|
||||
"Manage how RustFS connects to your external key management service.": "RustFSが外部キー管理サービスに接続する方法を管理します。",
|
||||
"Master Key": "マスターキー",
|
||||
"Master Key (CMK)": "マスターキー(CMK)",
|
||||
"Master Keys (CMK)": "マスターキー(CMK)",
|
||||
"Max 50TB": "最大50TB",
|
||||
"Members": "メンバー",
|
||||
"Memory Critical": "メモリ重大",
|
||||
"Memory High": "メモリ高",
|
||||
"Memory Low": "メモリ低",
|
||||
"Memory Medium": "メモリ中",
|
||||
"Memory Usage": "メモリ使用量",
|
||||
"Memory Warning": "メモリ警告",
|
||||
"Metrics": "メトリクス",
|
||||
"Minio": "Minio",
|
||||
"Mode": "モード",
|
||||
"Monday": "月曜日",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "ストレージ使用量全体と最近のスキャナーアクティビティを一目で監視します。",
|
||||
"More Configurations": "その他の設定",
|
||||
"Multi-Cloud Storage": "マルチクラウドストレージ",
|
||||
"Multipart Upload": "マルチパートアップロード",
|
||||
"Name": "名前",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "ヘルプが必要ですか?",
|
||||
"Network": "ネットワーク",
|
||||
"New File": "新しいファイル",
|
||||
"New Folder": "新しいフォルダ",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "新しいパスワード",
|
||||
"New Secret Key": "新しいシークレットキー",
|
||||
"New Policy": "新しいポリシー",
|
||||
"New user has been created": "新しいユーザーが作成されました",
|
||||
"Next": "次へ",
|
||||
"Next Page": "次のページ",
|
||||
"No": "いいえ",
|
||||
"No Access Keys": "アクセスキーなし",
|
||||
"No Buckets": "バケットなし",
|
||||
"No Data": "データなし",
|
||||
"No Destinations": "先なし",
|
||||
"No KMS configuration found": "KMS設定が見つかりません",
|
||||
"No KMS keys found": "KMSキーが見つかりません",
|
||||
"No License": "ライセンスなし",
|
||||
"No Objects": "オブジェクトなし",
|
||||
"Show Deleted Objects": "削除されたオブジェクトを表示",
|
||||
"No Policies": "ポリシーなし",
|
||||
"No Selection": "選択なし",
|
||||
"No Tasks": "タスクなし",
|
||||
"No Tiers": "ティアなし",
|
||||
"No Versions": "バージョンなし",
|
||||
"No bucket selected": "バケットが選択されていません",
|
||||
"No buckets found": "バケットが見つかりません",
|
||||
"No buckets match your search": "検索に一致するバケットがありません",
|
||||
"No status data available": "ステータスデータが利用できません",
|
||||
"No valid events found after conversion": "変換後に有効なイベントが見つかりません",
|
||||
"Non-current Version": "現在でないバージョン",
|
||||
"Normal": "通常",
|
||||
"Not Configured": "設定されていません",
|
||||
"Not configured": "設定されていません",
|
||||
"Not specified": "指定されていません",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "注: ピアサイトを追加または編集する際、各サイトにAccessKeyとSecretKeyの値が必要です",
|
||||
"Notice": "通知",
|
||||
"Number of retry attempts, default: 3": "再試行回数、デフォルト: 3",
|
||||
"Object": "オブジェクト",
|
||||
"Object Count": "オブジェクト数",
|
||||
"Object Detail Description": "オブジェクト詳細説明",
|
||||
"Object Details": "オブジェクト詳細",
|
||||
"Object Lock": "オブジェクトロック",
|
||||
"Object Name": "オブジェクト名",
|
||||
"Object Repair": "オブジェクト修復",
|
||||
"Object Sharing": "オブジェクト共有",
|
||||
"Object Size": "オブジェクトサイズ",
|
||||
"Object Tags": "オブジェクトタグ",
|
||||
"Object Type": "オブジェクトタイプ",
|
||||
"Object Version": "オブジェクトバージョン",
|
||||
"Object Versions": "オブジェクトバージョン",
|
||||
"Object lock is not enabled, cannot set retention": "オブジェクトロックが有効になっていないため、保持を設定できません",
|
||||
"Objects": "オブジェクト",
|
||||
"Off": "オフ",
|
||||
"Offline": "オフライン",
|
||||
"On": "オン",
|
||||
"On-site Deployment": "オンプレミス展開",
|
||||
"On-site Technical Service": "オンプレミス技術サービス",
|
||||
"One-hour Response": "1時間応答",
|
||||
"Online": "オンライン",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "ZIPファイルのみサポートされ、ファイルサイズは10MBを超えないでください",
|
||||
"Overwrite Warning": "上書き警告",
|
||||
"Page will refresh automatically after saving configuration": "設定を保存すると、ページが自動的に更新されます",
|
||||
"Page {current} of {total}": "{total}ページ中{current}ページ",
|
||||
"Password": "パスワード",
|
||||
"Pause": "一時停止",
|
||||
"Paused": "一時停止中",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "一時停止中",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "削除保留中",
|
||||
"Performance": "パフォーマンス",
|
||||
"Platinum Service": "プラチナサービス",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "RustFSサーバーアドレスを設定してください",
|
||||
"Please enter": "入力してください",
|
||||
"Please enter Access Key": "アクセスキーを入力してください",
|
||||
"Please enter STS key": "STSキーを入力してください",
|
||||
"Please enter STS session token": "STSセッショントークンを入力してください",
|
||||
"Please enter STS username": "STSユーザー名を入力してください",
|
||||
"Please enter Secret Key": "シークレットキーを入力してください",
|
||||
"Please enter Vault server address": "Vaultサーバーアドレスを入力してください",
|
||||
"Please enter Vault token": "Vaultトークンを入力してください",
|
||||
"Please enter account": "アカウントを入力してください",
|
||||
"Please enter both Role ID and Secret ID": "ロールIDとシークレットIDの両方を入力してください",
|
||||
"Please enter bucket": "バケットを入力してください",
|
||||
"Please enter current password": "現在のパスワードを入力してください",
|
||||
"Please enter default key ID": "デフォルトキーIDを入力してください",
|
||||
"Please enter endpoint": "エンドポイントを入力してください",
|
||||
"Please enter key": "キーを入力してください",
|
||||
"Please enter key name": "キー名を入力してください",
|
||||
"Please enter name": "名前を入力してください",
|
||||
"Please enter new password": "新しいパスワードを入力してください",
|
||||
"Please enter new password again": "新しいパスワードを再度入力してください",
|
||||
"Please enter password": "パスワードを入力してください",
|
||||
"Please enter policy content": "ポリシー内容を入力してください",
|
||||
"Please enter policy name": "ポリシー名を入力してください",
|
||||
"Please enter prefix": "プレフィックスを入力してください",
|
||||
"Please enter region": "リージョンを入力してください",
|
||||
"Please enter rule name": "ルール名を入力してください",
|
||||
"Please enter server address": "サーバーアドレスを入力してください",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "サーバーアドレスを入力してください(例: http://localhost:9000)",
|
||||
"Please enter storage class": "ストレージクラスを入力してください",
|
||||
"Please enter suffix": "サフィックスを入力してください",
|
||||
"Please enter tag value": "タグ値を入力してください",
|
||||
"Please enter user group name": "ユーザーグループ名を入力してください",
|
||||
"Please enter username": "ユーザー名を入力してください",
|
||||
"Please enter valid days": "有効な日数を入力してください",
|
||||
"Please enter valid health check interval": "有効なヘルスチェック間隔を入力してください",
|
||||
"Please fill in at least one configuration item": "少なくとも1つの設定項目を入力してください",
|
||||
"Please fill in complete retention information": "完全な保持情報を入力してください",
|
||||
"Please fill in complete tag information": "完全なタグ情報を入力してください",
|
||||
"Please fill in the correct format": "正しい形式で入力してください",
|
||||
"Please provide credentials": "認証情報を提供してください",
|
||||
"Please select KMS key": "KMSキーを選択してください",
|
||||
"Please select a KMS key for SSE-KMS encryption": "SSE-KMS暗号化のKMSキーを選択してください",
|
||||
"Please select a ZIP file to import": "インポートするZIPファイルを選択してください",
|
||||
"Please select at least one event": "少なくとも1つのイベントを選択してください",
|
||||
"Please select at least one item": "少なくとも1つの項目を選択してください",
|
||||
"Please select authentication method": "認証方法を選択してください",
|
||||
"Please select bucket": "バケットを選択してください",
|
||||
"Please select encryption type": "暗号化タイプを選択してください",
|
||||
"Please select event target type": "イベント先タイプを選択してください",
|
||||
"Please select expiration date": "有効期限を選択してください",
|
||||
"Please select expiry date": "有効期限を選択してください",
|
||||
"Please select policy": "ポリシーを選択してください",
|
||||
"Please select resource name": "リソース名を選択してください",
|
||||
"Please select rule type": "ルールタイプを選択してください",
|
||||
"Please select storage type": "ストレージタイプを選択してください",
|
||||
"Policies": "ポリシー",
|
||||
"Policy": "ポリシー",
|
||||
"Policy Content": "ポリシー内容",
|
||||
"Policy Name": "ポリシー名",
|
||||
"Policy Original": "元のポリシー",
|
||||
"Policy format invalid": "ポリシー形式が無効です",
|
||||
"Prefix": "プレフィックス",
|
||||
"Prev": "前へ",
|
||||
"Preview": "プレビュー",
|
||||
"Preview unavailable": "プレビュー利用不可",
|
||||
"Previous Page": "前のページ",
|
||||
"Priority": "優先度",
|
||||
"Private": "プライベート",
|
||||
"Processing": "処理中",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "パブリック",
|
||||
"Public, Private, Custom": "パブリック、プライベート、カスタム",
|
||||
"Read/Write Performance": "読み書きパフォーマンス",
|
||||
"Reading Folder Files": "フォルダファイルを読み取り中",
|
||||
"Ready to import: {filename}": "インポート準備完了: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "クラスターサーバーとバックエンドストレージデバイスのリアルタイムステータス。",
|
||||
"Reduced Redundancy Parity": "削減冗長性パリティ",
|
||||
"Reed-Solomon Matrix": "リードソロモンマトリックス",
|
||||
"Refresh": "更新",
|
||||
"Region": "リージョン",
|
||||
"Reliable distributed file system": "信頼性の高い分散ファイルシステム",
|
||||
"Remaining (3TB)": "残り(3TB)",
|
||||
"Remote Site": "リモートサイト",
|
||||
"Remote Technical Support": "リモート技術サポート",
|
||||
"Remote Tiering": "リモートティアリング",
|
||||
"Remove": "削除",
|
||||
"Remove Encryption": "暗号化を削除",
|
||||
"Replicate Delete Markers": "削除マーカーをレプリケート",
|
||||
"Replicate Existing Objects": "既存のオブジェクトをレプリケート",
|
||||
"Request timeout in seconds, default: 30": "リクエストタイムアウト(秒)、デフォルト: 30",
|
||||
"Required: Vault authentication token": "必須: Vault認証トークン",
|
||||
"Reset": "リセット",
|
||||
"Reset to Default": "デフォルトにリセット",
|
||||
"Reset to default successfully": "デフォルトに正常にリセットされました",
|
||||
"Response Level": "応答レベル",
|
||||
"Resume": "再開",
|
||||
"Retention": "保持",
|
||||
"Retention Mode": "モード",
|
||||
"Retention Period": "保持期間",
|
||||
"Retention RetainUntilDate": "保持期限日",
|
||||
"Retention Save Failed": "保持の保存に失敗しました",
|
||||
"Retention Unit": "保持単位",
|
||||
"Retry Attempts": "再試行回数",
|
||||
"Role ID": "ロールID",
|
||||
"Rows per page": "ページあたりの行数",
|
||||
"Rule ID": "ルールID",
|
||||
"Running": "実行中",
|
||||
"Running (Unhealthy)": "実行中(不健全)",
|
||||
"Rust-based": "Rustベース",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "RustFS組み込みコールドストレージ",
|
||||
"RustyVault Encryption": "RustyVault暗号化",
|
||||
"S3 Compatibility": "S3互換性",
|
||||
"S3 Compatible": "S3互換",
|
||||
"S3 Endpoint": "S3エンドポイント",
|
||||
"S3 Region": "S3リージョン",
|
||||
"SDK Support": "SDKサポート",
|
||||
"SNMD Mode": "SNMDモード",
|
||||
"SNND Mode": "SNNDモード",
|
||||
"SSE Settings": "SSE設定",
|
||||
"STS Key": "STSキー",
|
||||
"STS Login": "STSログイン",
|
||||
"STS Session Token": "STSセッショントークン",
|
||||
"STS Username": "STSユーザー名",
|
||||
"Saturday": "土曜日",
|
||||
"Save": "保存",
|
||||
"Save Configuration": "設定を保存",
|
||||
"Save Failed": "保存に失敗しました",
|
||||
"Save failed": "保存に失敗しました",
|
||||
"Saved": "保存済み",
|
||||
"Scalability": "スケーラビリティ",
|
||||
"Search": "検索",
|
||||
"Search Access Key": "アクセスキーを検索",
|
||||
"Search Access User": "アクセスユーザーを検索",
|
||||
"Search Account": "アカウントを検索",
|
||||
"Search Group": "グループを検索",
|
||||
"Search Policy": "ポリシーを検索",
|
||||
"Search User": "ユーザーを検索",
|
||||
"Search User Group": "ユーザーグループを検索",
|
||||
"Search buckets...": "バケットを検索...",
|
||||
"Secret ID": "シークレットID",
|
||||
"Secret Key": "シークレットキー",
|
||||
"Secret Key *": "シークレットキー *",
|
||||
"Secret Key is required": "シークレットキーは必須です",
|
||||
"Secret Key length must be between 8 and 40 characters": "シークレットキーの長さは8〜40文字である必要があります",
|
||||
"Secure & Reliable": "安全で信頼性が高い",
|
||||
"Secure Transport": "セキュアトランスポート",
|
||||
"Select File": "ファイルを選択",
|
||||
"Select Folder": "フォルダを選択",
|
||||
"Select Group": "グループを選択",
|
||||
"Select KMS key": "KMSキーを選択",
|
||||
"Select encryption algorithm": "暗号化アルゴリズムを選択",
|
||||
"Select encryption type": "暗号化タイプを選択",
|
||||
"Select events": "イベントを選択",
|
||||
"Select the KMS key to use for encryption": "暗号化に使用するKMSキーを選択",
|
||||
"Select user group members": "ユーザーグループメンバーを選択",
|
||||
"Select user group policies": "ユーザーグループポリシーを選択",
|
||||
"Selected Type": "選択されたタイプ",
|
||||
"Send events via MQTT broker": "MQTTブローカー経由でイベントを送信",
|
||||
"Server Address": "サーバーアドレス",
|
||||
"Server Configuration": "サーバー設定",
|
||||
"Server Host": "サーバーホスト",
|
||||
"Server Information": "サーバー情報",
|
||||
"Server List": "サーバーリスト",
|
||||
"Server configuration saved successfully": "サーバー設定が正常に保存されました",
|
||||
"Server-Side Encryption (SSE) Configuration": "サーバー側暗号化(SSE)設定",
|
||||
"Servers": "サーバー",
|
||||
"Service Email": "サービスメール",
|
||||
"Service Hotline": "サービスホットライン",
|
||||
"Service Status": "サービスステータス",
|
||||
"Set Policy": "ポリシーを設定",
|
||||
"Set Retention": "保持を設定",
|
||||
"Set Tag": "タグを設定",
|
||||
"Set Tags": "タグを設定",
|
||||
"Set the prefix for the rule": "ルールのプレフィックスを設定",
|
||||
"Set the time cycle for the rule": "ルールの時間サイクルを設定",
|
||||
"Settings": "設定",
|
||||
"Single Machine Multiple Disks": "単一マシン複数ディスク",
|
||||
"Single Object": "単一オブジェクト",
|
||||
"Site Name": "サイト名",
|
||||
"Site Replication": "サイトレプリケーション",
|
||||
"Size": "サイズ",
|
||||
"Skip": "スキップ",
|
||||
"Sort by": "並び替え",
|
||||
"Standard AWS S3 tier": "標準AWS S3ティア",
|
||||
"Standard Storage Parity": "標準ストレージパリティ",
|
||||
"Start KMS": "KMSを開始",
|
||||
"Start Upload": "アップロードを開始",
|
||||
"Status": "ステータス",
|
||||
"Status refreshed successfully": "ステータスが正常に更新されました",
|
||||
"Stop KMS": "KMSを停止",
|
||||
"Storage Class": "ストレージクラス",
|
||||
"Storage Space": "ストレージスペース",
|
||||
"Storage Type": "ストレージタイプ",
|
||||
"Storage Usage Statistics": "ストレージ使用統計",
|
||||
"Submit": "送信",
|
||||
"Subscribe to event notification": "イベント通知を購読",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "サフィックス",
|
||||
"Sunday": "日曜日",
|
||||
"Support Level": "サポートレベル",
|
||||
"Supported": "サポート済み",
|
||||
"Supported CPU Architecture": "サポートされているCPUアーキテクチャ",
|
||||
"Supported OS": "サポートされているOS",
|
||||
"Supports Erasure Coding": "イレイジャーコーディングをサポート",
|
||||
"Supports HTTPS, TLS": "HTTPS、TLSをサポート",
|
||||
"Supports high concurrency operations": "高並行性操作をサポート",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "単一サーバーで複数のストレージディスクを管理して、ストレージリソースの利用を改善し、管理とメンテナンスを簡素化することをサポート",
|
||||
"Sync": "同期",
|
||||
"Sync delete markers to destination bucket.": "削除マーカーを宛先バケットに同期します。",
|
||||
"Synchronous": "同期",
|
||||
"Tag": "タグ",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "タグキー",
|
||||
"Tag Key Placeholder": "タグキープレースホルダー",
|
||||
"Tag Name": "タグ名",
|
||||
"Tag Update Failed": "タグの更新に失敗しました",
|
||||
"Tag Update Success": "タグの更新に成功しました",
|
||||
"Tag Value": "タグ値",
|
||||
"Tag Value Placeholder": "タグ値プレースホルダー",
|
||||
"Tags": "タグ",
|
||||
"Target Bucket": "ターゲットバケット",
|
||||
"Task Completed": "タスク完了",
|
||||
"Task Management": "タスク管理",
|
||||
"Technical Parameters": "技術パラメータ",
|
||||
"Technical Training": "技術トレーニング",
|
||||
"Temporary URL": "一時URL",
|
||||
"Temporary URL Expiration": "一時URL有効期限",
|
||||
"Generate URL": "URLを生成",
|
||||
"URL generated successfully": "URLが正常に生成されました",
|
||||
"Failed to generate URL": "URLの生成に失敗しました",
|
||||
"Total Duration": "総期間",
|
||||
"Minutes": "分",
|
||||
"Hours": "時間",
|
||||
"Days": "日",
|
||||
"Minutes must be between 0 and 59": "分は0〜59の間である必要があります",
|
||||
"Hours must be between 0 and 23": "時間は0〜23の間である必要があります",
|
||||
"Hours must be between 0 and 24 when days is 0": "日数が0の場合、時間は0〜24の間である必要があります",
|
||||
"Days must be between 0 and 7": "日数は0〜7の間である必要があります",
|
||||
"Total duration cannot exceed 7 days": "総期間は7日を超えることはできません",
|
||||
"Please enter a valid expiration time": "有効な有効期限を入力してください",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "エクスポートされたファイルには機密情報が含まれています。安全に保管してください。",
|
||||
"The two passwords are inconsistent": "2つのパスワードが一致しません",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "この操作は元に戻せず、通常の削除プロセスをバイパスします。",
|
||||
"This action cannot be undone.": "この操作は元に戻せません。",
|
||||
"Thursday": "木曜日",
|
||||
"Tier": "ティア",
|
||||
"Tier Type": "ティアタイプ",
|
||||
"Tiered Storage": "階層ストレージ",
|
||||
"Tiering Transfer": "ティアリング転送",
|
||||
"Tiers": "ティア",
|
||||
"Time Cycle": "時間サイクル",
|
||||
"Timeout": "タイムアウト",
|
||||
"Timeout (seconds)": "タイムアウト(秒)",
|
||||
"Token": "トークン",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "データキーを暗号化するために使用されるトップレベルの暗号化キー。KMSによって管理され、システムを離れることはありません。",
|
||||
"Total": "合計",
|
||||
"Total Capacity": "総容量",
|
||||
"Total Files": "総ファイル数",
|
||||
"Total Requests": "総リクエスト数",
|
||||
"Transit Mount": "Transitマウント",
|
||||
"Transit Mount Path": "Transitマウントパス",
|
||||
"Transit engine mount path, default: transit": "Transitエンジンマウントパス、デフォルト: transit",
|
||||
"Transition": "移行",
|
||||
"Trigger custom HTTP endpoints": "カスタムHTTPエンドポイントをトリガー",
|
||||
"Try adjusting your search terms": "検索語を調整してみてください",
|
||||
"Tuesday": "火曜日",
|
||||
"Type": "タイプ",
|
||||
"Understanding Key Types": "キータイプの理解",
|
||||
"Unknown": "不明",
|
||||
"Unknown Folder": "不明なフォルダ",
|
||||
"Unlimited": "無制限",
|
||||
"Update Failed": "更新に失敗しました",
|
||||
"Update Key": "キーを更新",
|
||||
"Update License": "ライセンスを更新",
|
||||
"Update Success": "更新に成功しました",
|
||||
"Update failed": "更新に失敗しました",
|
||||
"Updated successfully": "正常に更新されました",
|
||||
"Upload": "アップロード",
|
||||
"Upload File": "ファイルをアップロード",
|
||||
"Upload files or create folders to populate this bucket.": "このバケットを埋めるためにファイルをアップロードするか、フォルダを作成します。",
|
||||
"Uploading Status": "アップロードステータス",
|
||||
"Uptime": "稼働時間",
|
||||
"Usage Report": "使用レポート",
|
||||
"Use AppRole authentication": "AppRole認証を使用",
|
||||
"Use Main Account Policy": "メインアカウントポリシーを使用",
|
||||
"Use TLS": "TLSを使用",
|
||||
"Use Vault token for authentication": "認証にVaultトークンを使用",
|
||||
"Use main account policy": "メインアカウントポリシーを使用",
|
||||
"Used": "使用済み",
|
||||
"Used (7TB)": "使用済み(7TB)",
|
||||
"Used Capacity": "使用容量",
|
||||
"User Groups": "ユーザーグループ",
|
||||
"User Name": "ユーザー名",
|
||||
"Users": "ユーザー",
|
||||
"Validity": "有効性",
|
||||
"Vault Server": "Vaultサーバー",
|
||||
"Vault Server Address": "Vaultサーバーアドレス",
|
||||
"Vault Token": "Vaultトークン",
|
||||
"Version": "バージョン",
|
||||
"Version 2.0, January 2004": "バージョン2.0、2004年1月",
|
||||
"Version Control": "バージョン管理",
|
||||
"VersionId": "バージョンID",
|
||||
"Versions": "バージョン",
|
||||
"View Documentation": "ドキュメントを表示",
|
||||
"Virtualization Platform Support": "仮想化プラットフォームサポート",
|
||||
"Visit website": "ウェブサイトを訪問",
|
||||
"WARNING: This will immediately delete the key": "警告: これはキーを即座に削除します",
|
||||
"WEBHOOK_AUTH_TOKEN": "Webhook認証トークン",
|
||||
"WEBHOOK_ENDPOINT": "Webhookエンドポイント",
|
||||
"WEBHOOK_QUEUE_DIR": "Webhookキューディレクトリ",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhookキュー制限",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "待機中",
|
||||
"waiting": "待機中",
|
||||
"Warning": "警告",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "水曜日",
|
||||
"Weekly MB/s Change Trend": "週次MB/s変化トレンド",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "年",
|
||||
"YYYY-MM-DD": "YYYY-MM-DD",
|
||||
"YYYY-MM-DD HH:mm": "YYYY-MM-DD HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "YYYY-MM-DD HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "YYYY-MM-DDTHH:mm",
|
||||
"Year": "年",
|
||||
"Yes": "はい",
|
||||
"Your browser does not support the audio tag": "お使いのブラウザはaudioタグをサポートしていません",
|
||||
"Your browser does not support the video tag": "お使いのブラウザはvideoタグをサポートしていません",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "パスワードの長さは8文字未満、16文字を超えることはできません",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "ユーザー名の長さは8文字未満、16文字を超えることはできません",
|
||||
"Validation failed": "検証に失敗しました",
|
||||
"API request failed": "APIリクエストが失敗しました",
|
||||
"Operation failed": "操作に失敗しました",
|
||||
"Create a user to get started": "開始するにはユーザーを作成します",
|
||||
"Get Notification Config Failed": "通知設定の取得に失敗しました",
|
||||
"empty is indicates permanent validity": "空は永続的な有効性を示します",
|
||||
"Create user groups to organize permissions": "権限を整理するユーザーグループを作成します",
|
||||
"Filter From This Page": "このページからフィルター"
|
||||
}
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(구성 세부 정보는 비공개입니다)",
|
||||
"(Configured)": "(구성됨)",
|
||||
"API Base URL": "API 기본 URL",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "액세스 제어",
|
||||
"Access Key": "액세스 키",
|
||||
"Access Key *": "액세스 키 *",
|
||||
"Access Key is required": "액세스 키가 필요합니다",
|
||||
"Access Key length must be between 3 and 20 characters": "액세스 키 길이는 3자 이상 20자 이하여야 합니다",
|
||||
"Access Keys": "액세스 키",
|
||||
"Access Policy": "액세스 정책",
|
||||
"Account": "계정",
|
||||
"Action": "작업",
|
||||
"Actions": "작업",
|
||||
"Active": "활성",
|
||||
"Add": "추가",
|
||||
"Add Access Key": "액세스 키 추가",
|
||||
"Add Account": "계정 추가",
|
||||
"Add Event Destination": "이벤트 대상 추가",
|
||||
"Add Event Subscription": "이벤트 구독 추가",
|
||||
"Add Event Subscription to get started": "시작하려면 이벤트 구독을 추가하세요",
|
||||
"Add Failed": "추가 실패",
|
||||
"Add Lifecycle Rule": "수명 주기 규칙 추가",
|
||||
"Add Replication Rule": "복제 규칙 추가",
|
||||
"Add Site": "사이트 추가",
|
||||
"Add Site Replication": "사이트 복제 추가",
|
||||
"Add Success": "추가 성공",
|
||||
"Add Tag": "태그 추가",
|
||||
"Add Tier": "티어 추가",
|
||||
"Add User": "사용자 추가",
|
||||
"Add User Group": "사용자 그룹 추가",
|
||||
"Add failed": "추가 실패",
|
||||
"Add group members": "그룹 멤버 추가",
|
||||
"Add replication rules to sync objects across buckets.": "버킷 간 객체를 동기화하는 복제 규칙을 추가합니다.",
|
||||
"Add success": "추가 성공",
|
||||
"Add tiers to configure remote storage destinations.": "원격 스토리지 대상을 구성하는 티어를 추가합니다.",
|
||||
"Add to Group": "그룹에 추가",
|
||||
"Add {type} Destination": "{type} 대상 추가",
|
||||
"Added successfully": "성공적으로 추가됨",
|
||||
"Adding to Upload Queue": "업로드 대기열에 추가 중",
|
||||
"Advanced Monitoring": "고급 모니터링",
|
||||
"Advanced Settings": "고급 설정",
|
||||
"Algorithm": "알고리즘",
|
||||
"Amazon Resource Name": "Amazon 리소스 이름",
|
||||
"Apache License": "Apache 라이선스",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "Vault의 AppRole 역할 ID",
|
||||
"AppRole Secret ID from Vault": "Vault의 AppRole 시크릿 ID",
|
||||
"Are you sure you want to delete all selected keys?": "선택한 모든 키를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete all selected user groups?": "선택한 모든 사용자 그룹을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete all selected users?": "선택한 모든 사용자를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete the selected objects?": "선택한 객체를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this bucket?": "이 버킷을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this destination?": "이 대상을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this key?": "이 키를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this notification configuration?": "이 알림 구성을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this object?": "이 객체를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this policy?": "이 정책을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this replication rule?": "이 복제 규칙을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this rule?": "이 규칙을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this tier?": "이 티어를 삭제하시겠습니까?",
|
||||
"Are you sure you want to force delete this key?": "이 키를 강제 삭제하시겠습니까?",
|
||||
"Are you sure you want to remove encryption?": "암호화를 제거하시겠습니까?",
|
||||
"Assign Policy": "정책 할당",
|
||||
"Asynchronous": "비동기",
|
||||
"Audit": "감사",
|
||||
"Auth Method": "인증 방법",
|
||||
"Authentication Method": "인증 방법",
|
||||
"Authorization": "권한 부여",
|
||||
"Auto": "자동",
|
||||
"Automatically inherit the main account policy when enabled.": "활성화되면 메인 계정 정책을 자동으로 상속합니다.",
|
||||
"Available": "사용 가능",
|
||||
"Backend": "백엔드",
|
||||
"Backend Services": "백엔드 서비스",
|
||||
"Backend Status": "백엔드 상태",
|
||||
"Backend Type": "백엔드 유형",
|
||||
"Bandwidth Limit": "대역폭 제한",
|
||||
"Batch allocation policies": "일괄 할당 정책",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "브라우저",
|
||||
"Browser Warning": "브라우저 경고",
|
||||
"Bucket": "버킷",
|
||||
"Bucket Configuration": "버킷 구성",
|
||||
"Bucket Count": "버킷 수",
|
||||
"Bucket Encryption Management": "버킷 암호화 관리",
|
||||
"Bucket Events": "버킷 이벤트",
|
||||
"Bucket Notification": "버킷 알림",
|
||||
"Bucket Policy": "버킷 정책",
|
||||
"Bucket Quota": "버킷 할당량",
|
||||
"Bucket Replication": "버킷 복제",
|
||||
"Bucket Setting": "버킷 설정",
|
||||
"Bucket encryption configured successfully": "버킷 암호화가 성공적으로 구성됨",
|
||||
"Bucket encryption removed successfully": "버킷 암호화가 성공적으로 제거됨",
|
||||
"Bucket is not empty": "버킷이 비어 있지 않습니다",
|
||||
"Bucket list refreshed": "버킷 목록이 새로고침됨",
|
||||
"Buckets": "버킷",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "캐시 활성화",
|
||||
"Cache Hits": "캐시 적중",
|
||||
"Cache Misses": "캐시 미스",
|
||||
"Cache Statistics": "캐시 통계",
|
||||
"Cache Status": "캐시 상태",
|
||||
"Cache TTL": "캐시 TTL",
|
||||
"Cache TTL (seconds)": "캐시 TTL (초)",
|
||||
"Cache Warning": "캐시 경고",
|
||||
"Cache clear completed with warnings": "경고와 함께 캐시 지우기 완료",
|
||||
"Cache cleared successfully": "캐시가 성공적으로 지워짐",
|
||||
"Cache time-to-live in seconds, default: 600": "캐시 생존 시간(초), 기본값: 600",
|
||||
"Cancel": "취소",
|
||||
"Canceled": "취소됨",
|
||||
"canceled": "취소됨",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "비밀번호 변경",
|
||||
"Change Secret Key": "시크릿 키 변경",
|
||||
"Change current account password": "현재 계정 비밀번호 변경",
|
||||
"Confirm New Secret Key": "새 시크릿 키 확인",
|
||||
"Choose the encryption method for this bucket": "이 버킷의 암호화 방법 선택",
|
||||
"Clear All": "모두 지우기",
|
||||
"Clear Cache": "캐시 지우기",
|
||||
"Clear Records": "레코드 지우기",
|
||||
"Click or drag ZIP file to this area to upload": "ZIP 파일을 클릭하거나 이 영역으로 끌어서 업로드",
|
||||
"Close": "닫기",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "구성",
|
||||
"Configuration Information": "구성 정보",
|
||||
"Configuration is saved locally in your browser": "구성이 브라우저에 로컬로 저장됩니다",
|
||||
"Configuration loaded successfully": "구성이 성공적으로 로드됨",
|
||||
"Configuration reset successfully": "구성이 성공적으로 재설정됨",
|
||||
"Configuration saved successfully": "구성이 성공적으로 저장됨",
|
||||
"Configure": "구성",
|
||||
"Configure Bucket Encryption": "버킷 암호화 구성",
|
||||
"Configure Encryption": "암호화 구성",
|
||||
"Configure Encryption for {bucket}": "{bucket}의 암호화 구성",
|
||||
"Configure KMS": "KMS 구성",
|
||||
"Configure server-side encryption for your objects using external key management services.": "외부 키 관리 서비스를 사용하여 객체의 서버 측 암호화를 구성합니다.",
|
||||
"Configured": "구성됨",
|
||||
"Confirm": "확인",
|
||||
"Confirm Delete": "삭제 확인",
|
||||
"Confirm Force Delete": "강제 삭제 확인",
|
||||
"Confirm New Password": "새 비밀번호 확인",
|
||||
"Confirm Remove Encryption": "암호화 제거 확인",
|
||||
"Contact Support": "지원 문의",
|
||||
"Copy": "복사",
|
||||
"Copy Failed": "복사 실패",
|
||||
"Copy Success": "복사 성공",
|
||||
"Copy Temporary URL": "임시 URL 복사",
|
||||
"Create": "생성",
|
||||
"Create Bucket": "버킷 생성",
|
||||
"Create Failed": "생성 실패",
|
||||
"Create First Key": "첫 번째 키 생성",
|
||||
"Create Key": "키 생성",
|
||||
"Create New Key": "새 키 생성",
|
||||
"Create Success": "생성 성공",
|
||||
"Create User": "사용자 생성",
|
||||
"Create a bucket to start storing objects.": "객체 저장을 시작하려면 버킷을 생성하세요.",
|
||||
"Create a new access key to get started.": "시작하려면 새 액세스 키를 생성하세요.",
|
||||
"Create a policy to manage access control templates.": "액세스 제어 템플릿을 관리하는 정책을 생성하세요.",
|
||||
"Create an event destination to forward notifications.": "알림을 전달하는 이벤트 대상을 생성하세요.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "객체 전환 및 만료를 자동화하는 수명 주기 규칙을 생성하세요.",
|
||||
"Create your first KMS key to get started": "시작하려면 첫 번째 KMS 키를 생성하세요",
|
||||
"Create your first bucket to configure encryption": "암호화를 구성하려면 첫 번째 버킷을 생성하세요",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "KMS 백엔드에서 관리하는 키를 생성, 회전 및 검사합니다.",
|
||||
"Created": "생성됨",
|
||||
"Creation Date": "생성 날짜",
|
||||
"Current Configuration": "현재 구성",
|
||||
"Current KMS Type": "현재 KMS 유형",
|
||||
"Current Password": "현재 비밀번호",
|
||||
"Current Prefix": "현재 접두사",
|
||||
"Current Site": "현재 사이트",
|
||||
"Current User Policy": "현재 사용자 정책",
|
||||
"Current Version": "현재 버전",
|
||||
"Current user policy": "현재 사용자 정책",
|
||||
"Custom": "사용자 지정",
|
||||
"Customer Service": "고객 서비스",
|
||||
"DAYS": "일",
|
||||
"Dark": "다크",
|
||||
"Data Backup": "데이터 백업",
|
||||
"Data Key (DEK)": "데이터 키 (DEK)",
|
||||
"Data Keys (DEK)": "데이터 키 (DEK)",
|
||||
"Data Redundancy": "데이터 중복",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "데이터 키는 파일을 암호화할 때 자동으로 생성됩니다. 마스터 키로 암호화되며 실제 데이터 암호화에 사용됩니다.",
|
||||
"Day": "일",
|
||||
"Days After": "일 후",
|
||||
"Default Key ID": "기본 키 ID",
|
||||
"Default master key ID for SSE-KMS": "SSE-KMS의 기본 마스터 키 ID",
|
||||
"Delete": "삭제",
|
||||
"Delete Failed": "삭제 실패",
|
||||
"Delete Key": "키 삭제",
|
||||
"Delete Marker Handling": "삭제 마커 처리",
|
||||
"Delete Record": "레코드 삭제",
|
||||
"Delete Selected": "선택 항목 삭제",
|
||||
"Delete Success": "삭제 성공",
|
||||
"Delete Tag Confirm": "태그 삭제 확인",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "삭제 중...",
|
||||
"Description": "설명",
|
||||
"Destination Bucket": "대상 버킷",
|
||||
"Detailed KMS Status": "상세 KMS 상태",
|
||||
"Details": "세부 정보",
|
||||
"Development Language Requirements": "개발 언어 요구 사항",
|
||||
"Disabled": "비활성화",
|
||||
"Disk Bad Spot Check": "디스크 불량 지점 확인",
|
||||
"Disks": "디스크",
|
||||
"Documentation": "문서",
|
||||
"Download": "다운로드",
|
||||
"Download complete IAM configuration as ZIP file": "ZIP 파일로 전체 IAM 구성 다운로드",
|
||||
"Drag Drop Info": "드래그 앤 드롭 정보",
|
||||
"EC Mode": "EC 모드",
|
||||
"Edit": "편집",
|
||||
"Edit Configuration": "구성 편집",
|
||||
"Edit Failed": "편집 실패",
|
||||
"Edit Group": "그룹 편집",
|
||||
"Edit Key": "키 편집",
|
||||
"Edit Policy": "정책 편집",
|
||||
"Edit Success": "편집 성공",
|
||||
"Edit User": "사용자 편집",
|
||||
"Emergency Response": "긴급 대응",
|
||||
"Enable Cache": "캐시 활성화",
|
||||
"Enable Storage Encryption": "스토리지 암호화 활성화",
|
||||
"Enable caching for better performance, default: true": "더 나은 성능을 위해 캐싱 활성화, 기본값: true",
|
||||
"Enable secure transport when connecting to endpoint.": "엔드포인트에 연결할 때 보안 전송을 활성화합니다.",
|
||||
"Enabled": "활성화",
|
||||
"Encryption": "암호화",
|
||||
"Encryption Status": "암호화 상태",
|
||||
"Encryption Type": "암호화 유형",
|
||||
"Encryption algorithm for the key.": "키의 암호화 알고리즘.",
|
||||
"Endpoint": "엔드포인트",
|
||||
"Endpoint *": "엔드포인트 *",
|
||||
"Endpoint is required": "엔드포인트가 필요합니다",
|
||||
"Enter AppRole Role ID": "AppRole 역할 ID 입력",
|
||||
"Enter AppRole Secret ID": "AppRole 시크릿 ID 입력",
|
||||
"Enter your Vault authentication token": "Vault 인증 토큰 입력",
|
||||
"Enterprise": "엔터프라이즈",
|
||||
"Enterprise License": "엔터프라이즈 라이선스",
|
||||
"Enterprise Service Level": "엔터프라이즈 서비스 수준",
|
||||
"Error": "오류",
|
||||
"Event Destinations": "이벤트 대상",
|
||||
"Event Target created successfully": "이벤트 대상이 성공적으로 생성됨",
|
||||
"Events": "이벤트",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "예: http://localhost:9000 또는 https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "기존 암호화된 객체는 암호화된 상태로 유지됩니다.",
|
||||
"Expiration": "만료",
|
||||
"Expiration Delete Mark": "만료 삭제 마크",
|
||||
"Expired": "만료됨",
|
||||
"Expiry": "만료",
|
||||
"Export": "내보내기",
|
||||
"Export Now": "지금 내보내기",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "사용자, 그룹, 정책 및 액세스 키를 포함한 모든 IAM 구성을 ZIP 파일로 내보냅니다.",
|
||||
"Exporting...": "내보내는 중...",
|
||||
"External MinIO tier": "외부 MinIO 티어",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "실패({count})",
|
||||
"failed": "실패({count})",
|
||||
"Failed to clear cache": "캐시 지우기 실패",
|
||||
"Failed to configure bucket encryption": "버킷 암호화 구성 실패",
|
||||
"Failed to create event target": "이벤트 대상 생성 실패",
|
||||
"Failed to create rule": "규칙 생성 실패",
|
||||
"Failed to delete key": "키 삭제 실패",
|
||||
"Failed to export IAM configuration": "IAM 구성 내보내기 실패",
|
||||
"Failed to fetch KMS keys": "KMS 키 가져오기 실패",
|
||||
"Failed to fetch data": "데이터 가져오기 실패",
|
||||
"Failed to fetch object info": "객체 정보 가져오기 실패",
|
||||
"Failed to fetch versions": "버전 가져오기 실패",
|
||||
"Failed to force delete key": "키 강제 삭제 실패",
|
||||
"Failed to get data": "데이터 가져오기 실패",
|
||||
"Failed to get detailed status": "상세 상태 가져오기 실패",
|
||||
"Failed to get key details": "키 세부 정보 가져오기 실패",
|
||||
"Failed to import IAM configuration": "IAM 구성 가져오기 실패",
|
||||
"Failed to load KMS status": "KMS 상태 로드 실패",
|
||||
"Failed to load bucket list": "버킷 목록 로드 실패",
|
||||
"Failed to load current configuration": "현재 구성 로드 실패",
|
||||
"Failed to load key list": "키 목록 로드 실패",
|
||||
"Failed to refresh key list": "키 목록 새로고침 실패",
|
||||
"Failed to refresh status": "상태 새로고침 실패",
|
||||
"Failed to remove bucket encryption": "버킷 암호화 제거 실패",
|
||||
"Failed to save configuration": "구성 저장 실패",
|
||||
"Failed to save key": "키 저장 실패",
|
||||
"Failed to set local development mode": "로컬 개발 모드 설정 실패",
|
||||
"Failed to start KMS service": "KMS 서비스 시작 실패",
|
||||
"Failed to stop KMS service": "KMS 서비스 중지 실패",
|
||||
"Feature Permissions": "기능 권한",
|
||||
"File Count Limit Exceeded": "파일 수 제한 초과",
|
||||
"File Size Limit": "파일 크기 제한",
|
||||
"File size exceeds limit (10MB)": "파일 크기가 제한(10MB)을 초과합니다",
|
||||
"Files": "파일",
|
||||
"First": "첫 번째",
|
||||
"Folder": "폴더",
|
||||
"Folder Processing Error": "폴더 처리 오류",
|
||||
"Force Delete": "강제 삭제",
|
||||
"Friday": "금요일",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "이 버킷에 대한 향후 업로드는 기본적으로 암호화되지 않습니다.",
|
||||
"GOVERNANCE": "거버넌스",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "파일을 암호화하기 위해 마스터 키에서 생성됩니다. 데이터를 암호화할 때 자동으로 생성됩니다.",
|
||||
"Get Data Failed": "데이터 가져오기 실패",
|
||||
"Get Help": "도움말 보기",
|
||||
"Groups": "그룹",
|
||||
"HashiCorp Encryption": "HashiCorp 암호화",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "상태 확인 간격 (초)",
|
||||
"High Memory Usage Warning": "높은 메모리 사용 경고",
|
||||
"High Performance": "고성능",
|
||||
"Hit Rate": "적중률",
|
||||
"IAM Configuration Export": "IAM 구성 내보내기",
|
||||
"IAM Configuration Import": "IAM 구성 가져오기",
|
||||
"IAM Policies": "IAM 정책",
|
||||
"IAM configuration exported successfully": "IAM 구성이 성공적으로 내보내짐",
|
||||
"IAM configuration imported successfully": "IAM 구성이 성공적으로 가져와짐",
|
||||
"Identity Authentication Expansion": "신원 인증 확장",
|
||||
"If no versions remain, delete references to this object": "버전이 남아 있지 않으면 이 객체에 대한 참조를 삭제",
|
||||
"Import": "가져오기",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "이전에 내보낸 ZIP 파일에서 IAM 구성을 가져옵니다.",
|
||||
"Import Now": "지금 가져오기",
|
||||
"Import Success": "가져오기 성공",
|
||||
"Import/Export": "가져오기/내보내기",
|
||||
"Importing...": "가져오는 중...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total}개 작업 진행 중 ({processing}개 처리 중, {completed}개 완료)",
|
||||
"Inactive": "비활성",
|
||||
"Include objects that already exist in the source bucket.": "소스 버킷에 이미 존재하는 객체를 포함합니다.",
|
||||
"Infinite Scaling": "무한 확장",
|
||||
"Info": "정보",
|
||||
"Infrastructure Health": "인프라 상태",
|
||||
"Inspect individual server health, disk utilization, and network status.": "개별 서버 상태, 디스크 사용률 및 네트워크 상태를 검사합니다.",
|
||||
"Invalid server address format": "잘못된 서버 주소 형식",
|
||||
"JSON Editor": "JSON 편집기",
|
||||
"KMS Configuration": "KMS 구성",
|
||||
"KMS Key": "KMS 키",
|
||||
"KMS Key ID": "KMS 키 ID",
|
||||
"KMS Keys Management": "KMS 키 관리",
|
||||
"KMS Status Overview": "KMS 상태 개요",
|
||||
"KMS Type": "KMS 유형",
|
||||
"KMS is not configured, please configure it first": "KMS가 구성되지 않았습니다. 먼저 구성하세요",
|
||||
"KMS server has errors": "KMS 서버에 오류가 있습니다",
|
||||
"KMS server is configured but not running": "KMS 서버가 구성되었지만 실행되지 않습니다",
|
||||
"KMS server is not configured": "KMS 서버가 구성되지 않았습니다",
|
||||
"KMS server is running and healthy": "KMS 서버가 실행 중이며 정상입니다",
|
||||
"KMS server is running but unhealthy": "KMS 서버가 실행 중이지만 비정상입니다",
|
||||
"KMS server is running, configuration details are private": "KMS 서버가 실행 중입니다. 구성 세부 정보는 비공개입니다",
|
||||
"KMS server status unknown": "KMS 서버 상태 알 수 없음",
|
||||
"KMS service has errors": "KMS 서비스에 오류가 있습니다",
|
||||
"KMS service is stopped": "KMS 서비스가 중지됨",
|
||||
"KMS service not initialized, please configure it first": "KMS 서비스가 초기화되지 않았습니다. 먼저 구성하세요",
|
||||
"KMS service started successfully": "KMS 서비스가 성공적으로 시작됨",
|
||||
"KMS service stopped successfully": "KMS 서비스가 성공적으로 중지됨",
|
||||
"KV Mount": "KV 마운트",
|
||||
"KV Mount Path": "KV 마운트 경로",
|
||||
"KV storage mount path, default: secret": "KV 스토리지 마운트 경로, 기본값: secret",
|
||||
"Key": "키",
|
||||
"Key Creation": "키 생성",
|
||||
"Key Directory": "키 디렉터리",
|
||||
"Key Expiration": "키 만료",
|
||||
"Key ID": "키 ID",
|
||||
"Key List": "키 목록",
|
||||
"Key Login": "키 로그인",
|
||||
"Key Name": "키 이름",
|
||||
"Key Path Prefix": "키 경로 접두사",
|
||||
"Key created successfully": "키가 성공적으로 생성됨",
|
||||
"Key deleted successfully": "키가 성공적으로 삭제됨",
|
||||
"Key force deleted successfully": "키가 성공적으로 강제 삭제됨",
|
||||
"Key is already pending deletion": "키가 이미 삭제 대기 중입니다",
|
||||
"Key list refreshed": "키 목록이 새로고침됨",
|
||||
"Key services and configuration values reported by the cluster.": "클러스터에서 보고한 키 서비스 및 구성 값.",
|
||||
"Key storage path prefix in KV store": "KV 저장소의 키 저장 경로 접두사",
|
||||
"Large File Count Warning": "큰 파일 수 경고",
|
||||
"Last": "마지막",
|
||||
"Last Modified": "마지막 수정",
|
||||
"Last Modified Time": "마지막 수정 시간",
|
||||
"Last Normal Operation": "마지막 정상 작업",
|
||||
"Last Scan Activity": "마지막 스캔 활동",
|
||||
"LastModified": "마지막 수정",
|
||||
"Leave empty to use current host as default": "기본값으로 현재 호스트를 사용하려면 비워두세요",
|
||||
"Legal Hold": "법적 보관",
|
||||
"License": "라이선스",
|
||||
"License Details": "라이선스 세부 정보",
|
||||
"License Key": "라이선스 키",
|
||||
"License Valid Until": "라이선스 유효 기간",
|
||||
"Licensed Company": "라이선스 회사",
|
||||
"Licensed Users": "라이선스 사용자",
|
||||
"Lifecycle": "수명 주기",
|
||||
"Lifecycle Management": "수명 주기 관리",
|
||||
"Light": "라이트",
|
||||
"Load Balancing": "로드 밸런싱",
|
||||
"Loading buckets...": "버킷 로드 중...",
|
||||
"Loading keys...": "키 로드 중...",
|
||||
"Local development mode set successfully": "로컬 개발 모드가 성공적으로 설정됨",
|
||||
"Login": "로그인",
|
||||
"Login Failed": "로그인 실패",
|
||||
"Login Problems?": "로그인 문제?",
|
||||
"Login Success": "로그인 성공",
|
||||
"Logout": "로그아웃",
|
||||
"Logs": "로그",
|
||||
"MNMD Mode": "MNMD 모드",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "MQTT 브로커",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "MQTT Keep Alive 간격",
|
||||
"MQTT_PASSWORD": "MQTT 비밀번호",
|
||||
"MQTT_QOS": "MQTT QoS",
|
||||
"MQTT_QUEUE_DIR": "MQTT 큐 디렉터리",
|
||||
"MQTT_QUEUE_LIMIT": "MQTT 큐 제한",
|
||||
"MQTT_RECONNECT_INTERVAL": "MQTT 재연결 간격",
|
||||
"MQTT_TOPIC": "MQTT 토픽",
|
||||
"MQTT_USERNAME": "MQTT 사용자 이름",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "메인 키 ID (Transit 키 이름). 비즈니스 관련 읽기 가능한 ID를 사용하세요.",
|
||||
"Make sure the server address is accessible from your network": "서버 주소가 네트워크에서 액세스 가능한지 확인하세요",
|
||||
"Manage how RustFS connects to your external key management service.": "RustFS가 외부 키 관리 서비스에 연결하는 방법을 관리합니다.",
|
||||
"Master Key": "마스터 키",
|
||||
"Master Key (CMK)": "마스터 키 (CMK)",
|
||||
"Master Keys (CMK)": "마스터 키 (CMK)",
|
||||
"Max 50TB": "최대 50TB",
|
||||
"Members": "멤버",
|
||||
"Memory Critical": "메모리 위험",
|
||||
"Memory High": "메모리 높음",
|
||||
"Memory Low": "메모리 낮음",
|
||||
"Memory Medium": "메모리 중간",
|
||||
"Memory Usage": "메모리 사용량",
|
||||
"Memory Warning": "메모리 경고",
|
||||
"Metrics": "메트릭",
|
||||
"Minio": "Minio",
|
||||
"Mode": "모드",
|
||||
"Monday": "월요일",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "전체 스토리지 사용량과 최근 스캐너 활동을 한눈에 모니터링합니다.",
|
||||
"More Configurations": "추가 구성",
|
||||
"Multi-Cloud Storage": "멀티 클라우드 스토리지",
|
||||
"Multipart Upload": "멀티파트 업로드",
|
||||
"Name": "이름",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "도움이 필요하신가요?",
|
||||
"Network": "네트워크",
|
||||
"New File": "새 파일",
|
||||
"New Folder": "새 폴더",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "새 비밀번호",
|
||||
"New Secret Key": "새 시크릿 키",
|
||||
"New Policy": "새 정책",
|
||||
"New user has been created": "새 사용자가 생성됨",
|
||||
"Next": "다음",
|
||||
"Next Page": "다음 페이지",
|
||||
"No": "아니오",
|
||||
"No Access Keys": "액세스 키 없음",
|
||||
"No Buckets": "버킷 없음",
|
||||
"No Data": "데이터 없음",
|
||||
"No Destinations": "대상 없음",
|
||||
"No KMS configuration found": "KMS 구성을 찾을 수 없음",
|
||||
"No KMS keys found": "KMS 키를 찾을 수 없음",
|
||||
"No License": "라이선스 없음",
|
||||
"No Objects": "객체 없음",
|
||||
"Show Deleted Objects": "삭제된 객체 표시",
|
||||
"No Policies": "정책 없음",
|
||||
"No Selection": "선택 없음",
|
||||
"No Tasks": "작업 없음",
|
||||
"No Tiers": "티어 없음",
|
||||
"No Versions": "버전 없음",
|
||||
"No bucket selected": "버킷이 선택되지 않음",
|
||||
"No buckets found": "버킷을 찾을 수 없음",
|
||||
"No buckets match your search": "검색과 일치하는 버킷이 없음",
|
||||
"No status data available": "상태 데이터를 사용할 수 없음",
|
||||
"No valid events found after conversion": "변환 후 유효한 이벤트를 찾을 수 없음",
|
||||
"Non-current Version": "현재가 아닌 버전",
|
||||
"Normal": "정상",
|
||||
"Not Configured": "구성되지 않음",
|
||||
"Not configured": "구성되지 않음",
|
||||
"Not specified": "지정되지 않음",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "참고: 피어 사이트를 추가하거나 편집할 때 각 사이트에 AccessKey 및 SecretKey 값이 필요합니다",
|
||||
"Notice": "알림",
|
||||
"Number of retry attempts, default: 3": "재시도 횟수, 기본값: 3",
|
||||
"Object": "객체",
|
||||
"Object Count": "객체 수",
|
||||
"Object Detail Description": "객체 세부 설명",
|
||||
"Object Details": "객체 세부 정보",
|
||||
"Object Lock": "객체 잠금",
|
||||
"Object Name": "객체 이름",
|
||||
"Object Repair": "객체 복구",
|
||||
"Object Sharing": "객체 공유",
|
||||
"Object Size": "객체 크기",
|
||||
"Object Tags": "객체 태그",
|
||||
"Object Type": "객체 유형",
|
||||
"Object Version": "객체 버전",
|
||||
"Object Versions": "객체 버전",
|
||||
"Object lock is not enabled, cannot set retention": "객체 잠금이 활성화되지 않았습니다. 보관을 설정할 수 없습니다",
|
||||
"Objects": "객체",
|
||||
"Off": "끄기",
|
||||
"Offline": "오프라인",
|
||||
"On": "켜기",
|
||||
"On-site Deployment": "현장 배포",
|
||||
"On-site Technical Service": "현장 기술 서비스",
|
||||
"One-hour Response": "1시간 응답",
|
||||
"Online": "온라인",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "ZIP 파일만 지원되며 파일 크기는 10MB를 초과하지 않아야 합니다",
|
||||
"Overwrite Warning": "덮어쓰기 경고",
|
||||
"Page will refresh automatically after saving configuration": "구성을 저장한 후 페이지가 자동으로 새로고침됩니다",
|
||||
"Page {current} of {total}": "{total}개 중 {current}개 페이지",
|
||||
"Password": "비밀번호",
|
||||
"Pause": "일시 중지",
|
||||
"Paused": "일시 중지됨",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "일시 중지됨",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "삭제 대기 중",
|
||||
"Performance": "성능",
|
||||
"Platinum Service": "플래티넘 서비스",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "RustFS 서버 주소를 구성하세요",
|
||||
"Please enter": "입력하세요",
|
||||
"Please enter Access Key": "액세스 키를 입력하세요",
|
||||
"Please enter STS key": "STS 키를 입력하세요",
|
||||
"Please enter STS session token": "STS 세션 토큰을 입력하세요",
|
||||
"Please enter STS username": "STS 사용자 이름을 입력하세요",
|
||||
"Please enter Secret Key": "시크릿 키를 입력하세요",
|
||||
"Please enter Vault server address": "Vault 서버 주소를 입력하세요",
|
||||
"Please enter Vault token": "Vault 토큰을 입력하세요",
|
||||
"Please enter account": "계정을 입력하세요",
|
||||
"Please enter both Role ID and Secret ID": "역할 ID와 시크릿 ID를 모두 입력하세요",
|
||||
"Please enter bucket": "버킷을 입력하세요",
|
||||
"Please enter current password": "현재 비밀번호를 입력하세요",
|
||||
"Please enter default key ID": "기본 키 ID를 입력하세요",
|
||||
"Please enter endpoint": "엔드포인트를 입력하세요",
|
||||
"Please enter key": "키를 입력하세요",
|
||||
"Please enter key name": "키 이름을 입력하세요",
|
||||
"Please enter name": "이름을 입력하세요",
|
||||
"Please enter new password": "새 비밀번호를 입력하세요",
|
||||
"Please enter new password again": "새 비밀번호를 다시 입력하세요",
|
||||
"Please enter password": "비밀번호를 입력하세요",
|
||||
"Please enter policy content": "정책 내용을 입력하세요",
|
||||
"Please enter policy name": "정책 이름을 입력하세요",
|
||||
"Please enter prefix": "접두사를 입력하세요",
|
||||
"Please enter region": "리전을 입력하세요",
|
||||
"Please enter rule name": "규칙 이름을 입력하세요",
|
||||
"Please enter server address": "서버 주소를 입력하세요",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "서버 주소를 입력하세요 (예: http://localhost:9000)",
|
||||
"Please enter storage class": "스토리지 클래스를 입력하세요",
|
||||
"Please enter suffix": "접미사를 입력하세요",
|
||||
"Please enter tag value": "태그 값을 입력하세요",
|
||||
"Please enter user group name": "사용자 그룹 이름을 입력하세요",
|
||||
"Please enter username": "사용자 이름을 입력하세요",
|
||||
"Please enter valid days": "유효한 일수를 입력하세요",
|
||||
"Please enter valid health check interval": "유효한 상태 확인 간격을 입력하세요",
|
||||
"Please fill in at least one configuration item": "최소한 하나의 구성 항목을 입력하세요",
|
||||
"Please fill in complete retention information": "완전한 보관 정보를 입력하세요",
|
||||
"Please fill in complete tag information": "완전한 태그 정보를 입력하세요",
|
||||
"Please fill in the correct format": "올바른 형식으로 입력하세요",
|
||||
"Please provide credentials": "자격 증명을 제공하세요",
|
||||
"Please select KMS key": "KMS 키를 선택하세요",
|
||||
"Please select a KMS key for SSE-KMS encryption": "SSE-KMS 암호화를 위한 KMS 키를 선택하세요",
|
||||
"Please select a ZIP file to import": "가져올 ZIP 파일을 선택하세요",
|
||||
"Please select at least one event": "최소한 하나의 이벤트를 선택하세요",
|
||||
"Please select at least one item": "최소한 하나의 항목을 선택하세요",
|
||||
"Please select authentication method": "인증 방법을 선택하세요",
|
||||
"Please select bucket": "버킷을 선택하세요",
|
||||
"Please select encryption type": "암호화 유형을 선택하세요",
|
||||
"Please select event target type": "이벤트 대상 유형을 선택하세요",
|
||||
"Please select expiration date": "만료 날짜를 선택하세요",
|
||||
"Please select expiry date": "만료 날짜를 선택하세요",
|
||||
"Please select policy": "정책을 선택하세요",
|
||||
"Please select resource name": "리소스 이름을 선택하세요",
|
||||
"Please select rule type": "규칙 유형을 선택하세요",
|
||||
"Please select storage type": "스토리지 유형을 선택하세요",
|
||||
"Policies": "정책",
|
||||
"Policy": "정책",
|
||||
"Policy Content": "정책 내용",
|
||||
"Policy Name": "정책 이름",
|
||||
"Policy Original": "원본 정책",
|
||||
"Policy format invalid": "정책 형식이 잘못됨",
|
||||
"Prefix": "접두사",
|
||||
"Prev": "이전",
|
||||
"Preview": "미리보기",
|
||||
"Preview unavailable": "미리보기 사용 불가",
|
||||
"Previous Page": "이전 페이지",
|
||||
"Priority": "우선순위",
|
||||
"Private": "비공개",
|
||||
"Processing": "처리 중",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "공개",
|
||||
"Public, Private, Custom": "공개, 비공개, 사용자 지정",
|
||||
"Read/Write Performance": "읽기/쓰기 성능",
|
||||
"Reading Folder Files": "폴더 파일 읽는 중",
|
||||
"Ready to import: {filename}": "가져올 준비: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "클러스터 서버 및 백엔드 스토리지 장치의 실시간 상태.",
|
||||
"Reduced Redundancy Parity": "감소된 중복 패리티",
|
||||
"Reed-Solomon Matrix": "Reed-Solomon 행렬",
|
||||
"Refresh": "새로고침",
|
||||
"Region": "리전",
|
||||
"Reliable distributed file system": "신뢰할 수 있는 분산 파일 시스템",
|
||||
"Remaining (3TB)": "남음 (3TB)",
|
||||
"Remote Site": "원격 사이트",
|
||||
"Remote Technical Support": "원격 기술 지원",
|
||||
"Remote Tiering": "원격 티어링",
|
||||
"Remove": "제거",
|
||||
"Remove Encryption": "암호화 제거",
|
||||
"Replicate Delete Markers": "삭제 마커 복제",
|
||||
"Replicate Existing Objects": "기존 객체 복제",
|
||||
"Request timeout in seconds, default: 30": "요청 시간 초과(초), 기본값: 30",
|
||||
"Required: Vault authentication token": "필수: Vault 인증 토큰",
|
||||
"Reset": "재설정",
|
||||
"Reset to Default": "기본값으로 재설정",
|
||||
"Reset to default successfully": "기본값으로 성공적으로 재설정됨",
|
||||
"Response Level": "응답 수준",
|
||||
"Resume": "재개",
|
||||
"Retention": "보관",
|
||||
"Retention Mode": "모드",
|
||||
"Retention Period": "보관 기간",
|
||||
"Retention RetainUntilDate": "보관 유지 날짜",
|
||||
"Retention Save Failed": "보관 저장 실패",
|
||||
"Retention Unit": "보관 단위",
|
||||
"Retry Attempts": "재시도 횟수",
|
||||
"Role ID": "역할 ID",
|
||||
"Rows per page": "페이지당 행 수",
|
||||
"Rule ID": "규칙 ID",
|
||||
"Running": "실행 중",
|
||||
"Running (Unhealthy)": "실행 중 (비정상)",
|
||||
"Rust-based": "Rust 기반",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "RustFS 내장 콜드 스토리지",
|
||||
"RustyVault Encryption": "RustyVault 암호화",
|
||||
"S3 Compatibility": "S3 호환성",
|
||||
"S3 Compatible": "S3 호환",
|
||||
"S3 Endpoint": "S3 엔드포인트",
|
||||
"S3 Region": "S3 리전",
|
||||
"SDK Support": "SDK 지원",
|
||||
"SNMD Mode": "SNMD 모드",
|
||||
"SNND Mode": "SNND 모드",
|
||||
"SSE Settings": "SSE 설정",
|
||||
"STS Key": "STS 키",
|
||||
"STS Login": "STS 로그인",
|
||||
"STS Session Token": "STS 세션 토큰",
|
||||
"STS Username": "STS 사용자 이름",
|
||||
"Saturday": "토요일",
|
||||
"Save": "저장",
|
||||
"Save Configuration": "구성 저장",
|
||||
"Save Failed": "저장 실패",
|
||||
"Save failed": "저장 실패",
|
||||
"Saved": "저장됨",
|
||||
"Scalability": "확장성",
|
||||
"Search": "검색",
|
||||
"Search Access Key": "액세스 키 검색",
|
||||
"Search Access User": "액세스 사용자 검색",
|
||||
"Search Account": "계정 검색",
|
||||
"Search Group": "그룹 검색",
|
||||
"Search Policy": "정책 검색",
|
||||
"Search User": "사용자 검색",
|
||||
"Search User Group": "사용자 그룹 검색",
|
||||
"Search buckets...": "버킷 검색...",
|
||||
"Secret ID": "시크릿 ID",
|
||||
"Secret Key": "시크릿 키",
|
||||
"Secret Key *": "시크릿 키 *",
|
||||
"Secret Key is required": "시크릿 키가 필요합니다",
|
||||
"Secret Key length must be between 8 and 40 characters": "시크릿 키 길이는 8자 이상 40자 이하여야 합니다",
|
||||
"Secure & Reliable": "안전하고 신뢰할 수 있음",
|
||||
"Secure Transport": "보안 전송",
|
||||
"Select File": "파일 선택",
|
||||
"Select Folder": "폴더 선택",
|
||||
"Select Group": "그룹 선택",
|
||||
"Select KMS key": "KMS 키 선택",
|
||||
"Select encryption algorithm": "암호화 알고리즘 선택",
|
||||
"Select encryption type": "암호화 유형 선택",
|
||||
"Select events": "이벤트 선택",
|
||||
"Select the KMS key to use for encryption": "암호화에 사용할 KMS 키 선택",
|
||||
"Select user group members": "사용자 그룹 멤버 선택",
|
||||
"Select user group policies": "사용자 그룹 정책 선택",
|
||||
"Selected Type": "선택된 유형",
|
||||
"Send events via MQTT broker": "MQTT 브로커를 통해 이벤트 전송",
|
||||
"Server Address": "서버 주소",
|
||||
"Server Configuration": "서버 구성",
|
||||
"Server Host": "서버 호스트",
|
||||
"Server Information": "서버 정보",
|
||||
"Server List": "서버 목록",
|
||||
"Server configuration saved successfully": "서버 구성이 성공적으로 저장됨",
|
||||
"Server-Side Encryption (SSE) Configuration": "서버 측 암호화 (SSE) 구성",
|
||||
"Servers": "서버",
|
||||
"Service Email": "서비스 이메일",
|
||||
"Service Hotline": "서비스 핫라인",
|
||||
"Service Status": "서비스 상태",
|
||||
"Set Policy": "정책 설정",
|
||||
"Set Retention": "보관 설정",
|
||||
"Set Tag": "태그 설정",
|
||||
"Set Tags": "태그 설정",
|
||||
"Set the prefix for the rule": "규칙의 접두사 설정",
|
||||
"Set the time cycle for the rule": "규칙의 시간 주기 설정",
|
||||
"Settings": "설정",
|
||||
"Single Machine Multiple Disks": "단일 머신 다중 디스크",
|
||||
"Single Object": "단일 객체",
|
||||
"Site Name": "사이트 이름",
|
||||
"Site Replication": "사이트 복제",
|
||||
"Size": "크기",
|
||||
"Skip": "건너뛰기",
|
||||
"Sort by": "정렬 기준",
|
||||
"Standard AWS S3 tier": "표준 AWS S3 티어",
|
||||
"Standard Storage Parity": "표준 스토리지 패리티",
|
||||
"Start KMS": "KMS 시작",
|
||||
"Start Upload": "업로드 시작",
|
||||
"Status": "상태",
|
||||
"Status refreshed successfully": "상태가 성공적으로 새로고침됨",
|
||||
"Stop KMS": "KMS 중지",
|
||||
"Storage Class": "스토리지 클래스",
|
||||
"Storage Space": "스토리지 공간",
|
||||
"Storage Type": "스토리지 유형",
|
||||
"Storage Usage Statistics": "스토리지 사용 통계",
|
||||
"Submit": "제출",
|
||||
"Subscribe to event notification": "이벤트 알림 구독",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "접미사",
|
||||
"Sunday": "일요일",
|
||||
"Support Level": "지원 수준",
|
||||
"Supported": "지원됨",
|
||||
"Supported CPU Architecture": "지원되는 CPU 아키텍처",
|
||||
"Supported OS": "지원되는 OS",
|
||||
"Supports Erasure Coding": "이레이저 코딩 지원",
|
||||
"Supports HTTPS, TLS": "HTTPS, TLS 지원",
|
||||
"Supports high concurrency operations": "높은 동시성 작업 지원",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "단일 서버에서 여러 스토리지 디스크를 관리하여 스토리지 리소스 활용을 개선하고 관리 및 유지보수를 간소화하는 것을 지원",
|
||||
"Sync": "동기화",
|
||||
"Sync delete markers to destination bucket.": "삭제 마커를 대상 버킷에 동기화합니다.",
|
||||
"Synchronous": "동기",
|
||||
"Tag": "태그",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "태그 키",
|
||||
"Tag Key Placeholder": "태그 키 자리 표시자",
|
||||
"Tag Name": "태그 이름",
|
||||
"Tag Update Failed": "태그 업데이트 실패",
|
||||
"Tag Update Success": "태그 업데이트 성공",
|
||||
"Tag Value": "태그 값",
|
||||
"Tag Value Placeholder": "태그 값 자리 표시자",
|
||||
"Tags": "태그",
|
||||
"Target Bucket": "대상 버킷",
|
||||
"Task Completed": "작업 완료",
|
||||
"Task Management": "작업 관리",
|
||||
"Technical Parameters": "기술 매개변수",
|
||||
"Technical Training": "기술 교육",
|
||||
"Temporary URL": "임시 URL",
|
||||
"Temporary URL Expiration": "임시 URL 만료",
|
||||
"Generate URL": "URL 생성",
|
||||
"URL generated successfully": "URL이 성공적으로 생성됨",
|
||||
"Failed to generate URL": "URL 생성 실패",
|
||||
"Total Duration": "총 기간",
|
||||
"Minutes": "분",
|
||||
"Hours": "시간",
|
||||
"Days": "일",
|
||||
"Minutes must be between 0 and 59": "분은 0과 59 사이여야 합니다",
|
||||
"Hours must be between 0 and 23": "시간은 0과 23 사이여야 합니다",
|
||||
"Hours must be between 0 and 24 when days is 0": "일수가 0일 때 시간은 0과 24 사이여야 합니다",
|
||||
"Days must be between 0 and 7": "일수는 0과 7 사이여야 합니다",
|
||||
"Total duration cannot exceed 7 days": "총 기간은 7일을 초과할 수 없습니다",
|
||||
"Please enter a valid expiration time": "유효한 만료 시간을 입력하세요",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "내보낸 파일에 민감한 정보가 포함되어 있습니다. 안전하게 보관하세요.",
|
||||
"The two passwords are inconsistent": "두 비밀번호가 일치하지 않습니다",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "이 작업은 실행 취소할 수 없으며 일반 삭제 프로세스를 우회합니다.",
|
||||
"This action cannot be undone.": "이 작업은 실행 취소할 수 없습니다.",
|
||||
"Thursday": "목요일",
|
||||
"Tier": "티어",
|
||||
"Tier Type": "티어 유형",
|
||||
"Tiered Storage": "계층화된 스토리지",
|
||||
"Tiering Transfer": "티어링 전송",
|
||||
"Tiers": "티어",
|
||||
"Time Cycle": "시간 주기",
|
||||
"Timeout": "시간 초과",
|
||||
"Timeout (seconds)": "시간 초과 (초)",
|
||||
"Token": "토큰",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "데이터 키를 암호화하는 데 사용되는 최상위 암호화 키. KMS에서 관리하며 시스템을 벗어나지 않습니다.",
|
||||
"Total": "총",
|
||||
"Total Capacity": "총 용량",
|
||||
"Total Files": "총 파일 수",
|
||||
"Total Requests": "총 요청 수",
|
||||
"Transit Mount": "Transit 마운트",
|
||||
"Transit Mount Path": "Transit 마운트 경로",
|
||||
"Transit engine mount path, default: transit": "Transit 엔진 마운트 경로, 기본값: transit",
|
||||
"Transition": "전환",
|
||||
"Trigger custom HTTP endpoints": "사용자 지정 HTTP 엔드포인트 트리거",
|
||||
"Try adjusting your search terms": "검색어를 조정해 보세요",
|
||||
"Tuesday": "화요일",
|
||||
"Type": "유형",
|
||||
"Understanding Key Types": "키 유형 이해",
|
||||
"Unknown": "알 수 없음",
|
||||
"Unknown Folder": "알 수 없는 폴더",
|
||||
"Unlimited": "무제한",
|
||||
"Update Failed": "업데이트 실패",
|
||||
"Update Key": "키 업데이트",
|
||||
"Update License": "라이선스 업데이트",
|
||||
"Update Success": "업데이트 성공",
|
||||
"Update failed": "업데이트 실패",
|
||||
"Updated successfully": "성공적으로 업데이트됨",
|
||||
"Upload": "업로드",
|
||||
"Upload File": "파일 업로드",
|
||||
"Upload files or create folders to populate this bucket.": "이 버킷을 채우려면 파일을 업로드하거나 폴더를 생성하세요.",
|
||||
"Uploading Status": "업로드 상태",
|
||||
"Uptime": "가동 시간",
|
||||
"Usage Report": "사용 보고서",
|
||||
"Use AppRole authentication": "AppRole 인증 사용",
|
||||
"Use Main Account Policy": "메인 계정 정책 사용",
|
||||
"Use TLS": "TLS 사용",
|
||||
"Use Vault token for authentication": "인증에 Vault 토큰 사용",
|
||||
"Use main account policy": "메인 계정 정책 사용",
|
||||
"Used": "사용됨",
|
||||
"Used (7TB)": "사용됨 (7TB)",
|
||||
"Used Capacity": "사용된 용량",
|
||||
"User Groups": "사용자 그룹",
|
||||
"User Name": "사용자 이름",
|
||||
"Users": "사용자",
|
||||
"Validity": "유효성",
|
||||
"Vault Server": "Vault 서버",
|
||||
"Vault Server Address": "Vault 서버 주소",
|
||||
"Vault Token": "Vault 토큰",
|
||||
"Version": "버전",
|
||||
"Version 2.0, January 2004": "버전 2.0, 2004년 1월",
|
||||
"Version Control": "버전 관리",
|
||||
"VersionId": "버전 ID",
|
||||
"Versions": "버전",
|
||||
"View Documentation": "문서 보기",
|
||||
"Virtualization Platform Support": "가상화 플랫폼 지원",
|
||||
"Visit website": "웹사이트 방문",
|
||||
"WARNING: This will immediately delete the key": "경고: 이것은 키를 즉시 삭제합니다",
|
||||
"WEBHOOK_AUTH_TOKEN": "Webhook 인증 토큰",
|
||||
"WEBHOOK_ENDPOINT": "Webhook 엔드포인트",
|
||||
"WEBHOOK_QUEUE_DIR": "Webhook 큐 디렉터리",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhook 큐 제한",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "대기 중",
|
||||
"waiting": "대기 중",
|
||||
"Warning": "경고",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "수요일",
|
||||
"Weekly MB/s Change Trend": "주간 MB/s 변화 추세",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "년",
|
||||
"YYYY-MM-DD": "YYYY-MM-DD",
|
||||
"YYYY-MM-DD HH:mm": "YYYY-MM-DD HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "YYYY-MM-DD HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "YYYY-MM-DDTHH:mm",
|
||||
"Year": "년",
|
||||
"Yes": "예",
|
||||
"Your browser does not support the audio tag": "브라우저가 audio 태그를 지원하지 않습니다",
|
||||
"Your browser does not support the video tag": "브라우저가 video 태그를 지원하지 않습니다",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "비밀번호 길이는 8자 미만, 16자 초과일 수 없습니다",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "사용자 이름 길이는 8자 미만, 16자 초과일 수 없습니다",
|
||||
"Validation failed": "유효성 검사 실패",
|
||||
"API request failed": "API 요청 실패",
|
||||
"Operation failed": "작업 실패",
|
||||
"Create a user to get started": "시작하려면 사용자를 생성하세요",
|
||||
"Get Notification Config Failed": "알림 구성 가져오기 실패",
|
||||
"empty is indicates permanent validity": "비어 있으면 영구 유효성을 나타냅니다",
|
||||
"Create user groups to organize permissions": "권한을 구성하는 사용자 그룹을 생성하세요",
|
||||
"Filter From This Page": "이 페이지에서 필터링"
|
||||
}
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(Detalhes de configuração são privados)",
|
||||
"(Configured)": "(Configurado)",
|
||||
"API Base URL": "URL Base da API",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "Controle de Acesso",
|
||||
"Access Key": "Chave de Acesso",
|
||||
"Access Key *": "Chave de Acesso *",
|
||||
"Access Key is required": "Chave de acesso é obrigatória",
|
||||
"Access Key length must be between 3 and 20 characters": "O comprimento da chave de acesso deve estar entre 3 e 20 caracteres",
|
||||
"Access Keys": "Chaves de Acesso",
|
||||
"Access Policy": "Política de Acesso",
|
||||
"Account": "Conta",
|
||||
"Action": "Ação",
|
||||
"Actions": "Ações",
|
||||
"Active": "Ativo",
|
||||
"Add": "Adicionar",
|
||||
"Add Access Key": "Adicionar Chave de Acesso",
|
||||
"Add Account": "Adicionar Conta",
|
||||
"Add Event Destination": "Adicionar Destino de Evento",
|
||||
"Add Event Subscription": "Adicionar Assinatura de Evento",
|
||||
"Add Event Subscription to get started": "Adicione uma assinatura de evento para começar",
|
||||
"Add Failed": "Falha ao Adicionar",
|
||||
"Add Lifecycle Rule": "Adicionar Regra de Ciclo de Vida",
|
||||
"Add Replication Rule": "Adicionar Regra de Replicação",
|
||||
"Add Site": "Adicionar Site",
|
||||
"Add Site Replication": "Adicionar Replicação de Site",
|
||||
"Add Success": "Adição Bem-sucedida",
|
||||
"Add Tag": "Adicionar Tag",
|
||||
"Add Tier": "Adicionar Tier",
|
||||
"Add User": "Adicionar Usuário",
|
||||
"Add User Group": "Adicionar Grupo de Usuários",
|
||||
"Add failed": "Falha ao adicionar",
|
||||
"Add group members": "Adicionar membros do grupo",
|
||||
"Add replication rules to sync objects across buckets.": "Adicione regras de replicação para sincronizar objetos entre buckets.",
|
||||
"Add success": "Adição bem-sucedida",
|
||||
"Add tiers to configure remote storage destinations.": "Adicione tiers para configurar destinos de armazenamento remoto.",
|
||||
"Add to Group": "Adicionar ao Grupo",
|
||||
"Add {type} Destination": "Adicionar Destino {type}",
|
||||
"Added successfully": "Adicionado com sucesso",
|
||||
"Adding to Upload Queue": "Adicionando à Fila de Upload",
|
||||
"Advanced Monitoring": "Monitoramento Avançado",
|
||||
"Advanced Settings": "Configurações Avançadas",
|
||||
"Algorithm": "Algoritmo",
|
||||
"Amazon Resource Name": "Nome de Recurso Amazon",
|
||||
"Apache License": "Licença Apache",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "ID de Função AppRole do Vault",
|
||||
"AppRole Secret ID from Vault": "ID Secreto AppRole do Vault",
|
||||
"Are you sure you want to delete all selected keys?": "Tem certeza de que deseja excluir todas as chaves selecionadas?",
|
||||
"Are you sure you want to delete all selected user groups?": "Tem certeza de que deseja excluir todos os grupos de usuários selecionados?",
|
||||
"Are you sure you want to delete all selected users?": "Tem certeza de que deseja excluir todos os usuários selecionados?",
|
||||
"Are you sure you want to delete the selected objects?": "Tem certeza de que deseja excluir os objetos selecionados?",
|
||||
"Are you sure you want to delete this bucket?": "Tem certeza de que deseja excluir este bucket?",
|
||||
"Are you sure you want to delete this destination?": "Tem certeza de que deseja excluir este destino?",
|
||||
"Are you sure you want to delete this key?": "Tem certeza de que deseja excluir esta chave?",
|
||||
"Are you sure you want to delete this notification configuration?": "Tem certeza de que deseja excluir esta configuração de notificação?",
|
||||
"Are you sure you want to delete this object?": "Tem certeza de que deseja excluir este objeto?",
|
||||
"Are you sure you want to delete this policy?": "Tem certeza de que deseja excluir esta política?",
|
||||
"Are you sure you want to delete this replication rule?": "Tem certeza de que deseja excluir esta regra de replicação?",
|
||||
"Are you sure you want to delete this rule?": "Tem certeza de que deseja excluir esta regra?",
|
||||
"Are you sure you want to delete this tier?": "Tem certeza de que deseja excluir este tier?",
|
||||
"Are you sure you want to force delete this key?": "Tem certeza de que deseja forçar a exclusão desta chave?",
|
||||
"Are you sure you want to remove encryption?": "Tem certeza de que deseja remover a criptografia?",
|
||||
"Assign Policy": "Atribuir Política",
|
||||
"Asynchronous": "Assíncrono",
|
||||
"Audit": "Auditoria",
|
||||
"Auth Method": "Método de Autenticação",
|
||||
"Authentication Method": "Método de Autenticação",
|
||||
"Authorization": "Autorização",
|
||||
"Auto": "Automático",
|
||||
"Automatically inherit the main account policy when enabled.": "Herdar automaticamente a política da conta principal quando habilitado.",
|
||||
"Available": "Disponível",
|
||||
"Backend": "Backend",
|
||||
"Backend Services": "Serviços Backend",
|
||||
"Backend Status": "Status do Backend",
|
||||
"Backend Type": "Tipo de Backend",
|
||||
"Bandwidth Limit": "Limite de Largura de Banda",
|
||||
"Batch allocation policies": "Políticas de alocação em lote",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "Navegador",
|
||||
"Browser Warning": "Aviso do Navegador",
|
||||
"Bucket": "Bucket",
|
||||
"Bucket Configuration": "Configuração do Bucket",
|
||||
"Bucket Count": "Contagem de Buckets",
|
||||
"Bucket Encryption Management": "Gerenciamento de Criptografia do Bucket",
|
||||
"Bucket Events": "Eventos do Bucket",
|
||||
"Bucket Notification": "Notificação do Bucket",
|
||||
"Bucket Policy": "Política do Bucket",
|
||||
"Bucket Quota": "Cota do Bucket",
|
||||
"Bucket Replication": "Replicação do Bucket",
|
||||
"Bucket Setting": "Configuração do Bucket",
|
||||
"Bucket encryption configured successfully": "Criptografia do bucket configurada com sucesso",
|
||||
"Bucket encryption removed successfully": "Criptografia do bucket removida com sucesso",
|
||||
"Bucket is not empty": "O bucket não está vazio",
|
||||
"Bucket list refreshed": "Lista de buckets atualizada",
|
||||
"Buckets": "Buckets",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "Cache Habilitado",
|
||||
"Cache Hits": "Acertos de Cache",
|
||||
"Cache Misses": "Falhas de Cache",
|
||||
"Cache Statistics": "Estatísticas de Cache",
|
||||
"Cache Status": "Status do Cache",
|
||||
"Cache TTL": "TTL do Cache",
|
||||
"Cache TTL (seconds)": "TTL do Cache (segundos)",
|
||||
"Cache Warning": "Aviso de Cache",
|
||||
"Cache clear completed with warnings": "Limpeza de cache concluída com avisos",
|
||||
"Cache cleared successfully": "Cache limpo com sucesso",
|
||||
"Cache time-to-live in seconds, default: 600": "Tempo de vida do cache em segundos, padrão: 600",
|
||||
"Cancel": "Cancelar",
|
||||
"Canceled": "Cancelado",
|
||||
"canceled": "Cancelado",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Alterar Senha",
|
||||
"Change Secret Key": "Alterar Chave Secreta",
|
||||
"Change current account password": "Alterar senha da conta atual",
|
||||
"Confirm New Secret Key": "Confirmar Nova Chave Secreta",
|
||||
"Choose the encryption method for this bucket": "Escolha o método de criptografia para este bucket",
|
||||
"Clear All": "Limpar Tudo",
|
||||
"Clear Cache": "Limpar Cache",
|
||||
"Clear Records": "Limpar Registros",
|
||||
"Click or drag ZIP file to this area to upload": "Clique ou arraste o arquivo ZIP para esta área para fazer upload",
|
||||
"Close": "Fechar",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "Configuração",
|
||||
"Configuration Information": "Informações de Configuração",
|
||||
"Configuration is saved locally in your browser": "A configuração é salva localmente no seu navegador",
|
||||
"Configuration loaded successfully": "Configuração carregada com sucesso",
|
||||
"Configuration reset successfully": "Configuração redefinida com sucesso",
|
||||
"Configuration saved successfully": "Configuração salva com sucesso",
|
||||
"Configure": "Configurar",
|
||||
"Configure Bucket Encryption": "Configurar Criptografia do Bucket",
|
||||
"Configure Encryption": "Configurar Criptografia",
|
||||
"Configure Encryption for {bucket}": "Configurar Criptografia para {bucket}",
|
||||
"Configure KMS": "Configurar KMS",
|
||||
"Configure server-side encryption for your objects using external key management services.": "Configure a criptografia do lado do servidor para seus objetos usando serviços externos de gerenciamento de chaves.",
|
||||
"Configured": "Configurado",
|
||||
"Confirm": "Confirmar",
|
||||
"Confirm Delete": "Confirmar Exclusão",
|
||||
"Confirm Force Delete": "Confirmar Exclusão Forçada",
|
||||
"Confirm New Password": "Confirmar Nova Senha",
|
||||
"Confirm Remove Encryption": "Confirmar Remoção de Criptografia",
|
||||
"Contact Support": "Contatar Suporte",
|
||||
"Copy": "Copiar",
|
||||
"Copy Failed": "Falha ao Copiar",
|
||||
"Copy Success": "Cópia Bem-sucedida",
|
||||
"Copy Temporary URL": "Copiar URL Temporário",
|
||||
"Create": "Criar",
|
||||
"Create Bucket": "Criar Bucket",
|
||||
"Create Failed": "Falha ao Criar",
|
||||
"Create First Key": "Criar Primeira Chave",
|
||||
"Create Key": "Criar Chave",
|
||||
"Create New Key": "Criar Nova Chave",
|
||||
"Create Success": "Criação Bem-sucedida",
|
||||
"Create User": "Criar Usuário",
|
||||
"Create a bucket to start storing objects.": "Crie um bucket para começar a armazenar objetos.",
|
||||
"Create a new access key to get started.": "Crie uma nova chave de acesso para começar.",
|
||||
"Create a policy to manage access control templates.": "Crie uma política para gerenciar modelos de controle de acesso.",
|
||||
"Create an event destination to forward notifications.": "Crie um destino de evento para encaminhar notificações.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "Crie regras de ciclo de vida para automatizar transições e expiração de objetos.",
|
||||
"Create your first KMS key to get started": "Crie sua primeira chave KMS para começar",
|
||||
"Create your first bucket to configure encryption": "Crie seu primeiro bucket para configurar criptografia",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "Crie, rotacione e inspecione as chaves gerenciadas pelo seu backend KMS.",
|
||||
"Created": "Criado",
|
||||
"Creation Date": "Data de Criação",
|
||||
"Current Configuration": "Configuração Atual",
|
||||
"Current KMS Type": "Tipo de KMS Atual",
|
||||
"Current Password": "Senha Atual",
|
||||
"Current Prefix": "Prefixo Atual",
|
||||
"Current Site": "Site Atual",
|
||||
"Current User Policy": "Política de Usuário Atual",
|
||||
"Current Version": "Versão Atual",
|
||||
"Current user policy": "Política de usuário atual",
|
||||
"Custom": "Personalizado",
|
||||
"Customer Service": "Atendimento ao Cliente",
|
||||
"DAYS": "DIAS",
|
||||
"Dark": "Escuro",
|
||||
"Data Backup": "Backup de Dados",
|
||||
"Data Key (DEK)": "Chave de Dados (DEK)",
|
||||
"Data Keys (DEK)": "Chaves de Dados (DEK)",
|
||||
"Data Redundancy": "Redundância de Dados",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "As chaves de dados são geradas automaticamente ao criptografar arquivos. Elas são criptografadas por chaves mestras e usadas para criptografia real de dados.",
|
||||
"Day": "Dia",
|
||||
"Days After": "Dias Depois",
|
||||
"Default Key ID": "ID de Chave Padrão",
|
||||
"Default master key ID for SSE-KMS": "ID de chave mestra padrão para SSE-KMS",
|
||||
"Delete": "Excluir",
|
||||
"Delete Failed": "Falha ao Excluir",
|
||||
"Delete Key": "Excluir Chave",
|
||||
"Delete Marker Handling": "Tratamento de Marcador de Exclusão",
|
||||
"Delete Record": "Excluir Registro",
|
||||
"Delete Selected": "Excluir Selecionados",
|
||||
"Delete Success": "Exclusão Bem-sucedida",
|
||||
"Delete Tag Confirm": "Confirmar Exclusão de Tag",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "Excluindo...",
|
||||
"Description": "Descrição",
|
||||
"Destination Bucket": "Bucket de Destino",
|
||||
"Detailed KMS Status": "Status Detalhado do KMS",
|
||||
"Details": "Detalhes",
|
||||
"Development Language Requirements": "Requisitos de Linguagem de Desenvolvimento",
|
||||
"Disabled": "Desabilitado",
|
||||
"Disk Bad Spot Check": "Verificação de Pontos Ruins do Disco",
|
||||
"Disks": "Discos",
|
||||
"Documentation": "Documentação",
|
||||
"Download": "Baixar",
|
||||
"Download complete IAM configuration as ZIP file": "Baixar configuração completa do IAM como arquivo ZIP",
|
||||
"Drag Drop Info": "Informações de Arrastar e Soltar",
|
||||
"EC Mode": "Modo EC",
|
||||
"Edit": "Editar",
|
||||
"Edit Configuration": "Editar Configuração",
|
||||
"Edit Failed": "Falha ao Editar",
|
||||
"Edit Group": "Editar Grupo",
|
||||
"Edit Key": "Editar Chave",
|
||||
"Edit Policy": "Editar Política",
|
||||
"Edit Success": "Edição Bem-sucedida",
|
||||
"Edit User": "Editar Usuário",
|
||||
"Emergency Response": "Resposta de Emergência",
|
||||
"Enable Cache": "Habilitar Cache",
|
||||
"Enable Storage Encryption": "Habilitar Criptografia de Armazenamento",
|
||||
"Enable caching for better performance, default: true": "Habilitar cache para melhor desempenho, padrão: true",
|
||||
"Enable secure transport when connecting to endpoint.": "Habilitar transporte seguro ao conectar ao endpoint.",
|
||||
"Enabled": "Habilitado",
|
||||
"Encryption": "Criptografia",
|
||||
"Encryption Status": "Status de Criptografia",
|
||||
"Encryption Type": "Tipo de Criptografia",
|
||||
"Encryption algorithm for the key.": "Algoritmo de criptografia para a chave.",
|
||||
"Endpoint": "Endpoint",
|
||||
"Endpoint *": "Endpoint *",
|
||||
"Endpoint is required": "Endpoint é obrigatório",
|
||||
"Enter AppRole Role ID": "Digite o ID de Função AppRole",
|
||||
"Enter AppRole Secret ID": "Digite o ID Secreto AppRole",
|
||||
"Enter your Vault authentication token": "Digite seu token de autenticação do Vault",
|
||||
"Enterprise": "Enterprise",
|
||||
"Enterprise License": "Licença Enterprise",
|
||||
"Enterprise Service Level": "Nível de Serviço Enterprise",
|
||||
"Error": "Erro",
|
||||
"Event Destinations": "Destinos de Evento",
|
||||
"Event Target created successfully": "Destino de evento criado com sucesso",
|
||||
"Events": "Eventos",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "Exemplo: http://localhost:9000 ou https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "Objetos criptografados existentes permanecerão criptografados.",
|
||||
"Expiration": "Expiração",
|
||||
"Expiration Delete Mark": "Marca de Exclusão de Expiração",
|
||||
"Expired": "Expirado",
|
||||
"Expiry": "Expiração",
|
||||
"Export": "Exportar",
|
||||
"Export Now": "Exportar Agora",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "Exporte todas as configurações do IAM, incluindo usuários, grupos, políticas e chaves de acesso em um arquivo ZIP.",
|
||||
"Exporting...": "Exportando...",
|
||||
"External MinIO tier": "Tier MinIO externo",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Falhou({count})",
|
||||
"failed": "Falhou({count})",
|
||||
"Failed to clear cache": "Falha ao limpar cache",
|
||||
"Failed to configure bucket encryption": "Falha ao configurar criptografia do bucket",
|
||||
"Failed to create event target": "Falha ao criar destino de evento",
|
||||
"Failed to create rule": "Falha ao criar regra",
|
||||
"Failed to delete key": "Falha ao excluir chave",
|
||||
"Failed to export IAM configuration": "Falha ao exportar configuração do IAM",
|
||||
"Failed to fetch KMS keys": "Falha ao buscar chaves KMS",
|
||||
"Failed to fetch data": "Falha ao buscar dados",
|
||||
"Failed to fetch object info": "Falha ao buscar informações do objeto",
|
||||
"Failed to fetch versions": "Falha ao buscar versões",
|
||||
"Failed to force delete key": "Falha ao forçar exclusão da chave",
|
||||
"Failed to get data": "Falha ao obter dados",
|
||||
"Failed to get detailed status": "Falha ao obter status detalhado",
|
||||
"Failed to get key details": "Falha ao obter detalhes da chave",
|
||||
"Failed to import IAM configuration": "Falha ao importar configuração do IAM",
|
||||
"Failed to load KMS status": "Falha ao carregar status do KMS",
|
||||
"Failed to load bucket list": "Falha ao carregar lista de buckets",
|
||||
"Failed to load current configuration": "Falha ao carregar configuração atual",
|
||||
"Failed to load key list": "Falha ao carregar lista de chaves",
|
||||
"Failed to refresh key list": "Falha ao atualizar lista de chaves",
|
||||
"Failed to refresh status": "Falha ao atualizar status",
|
||||
"Failed to remove bucket encryption": "Falha ao remover criptografia do bucket",
|
||||
"Failed to save configuration": "Falha ao salvar configuração",
|
||||
"Failed to save key": "Falha ao salvar chave",
|
||||
"Failed to set local development mode": "Falha ao definir modo de desenvolvimento local",
|
||||
"Failed to start KMS service": "Falha ao iniciar serviço KMS",
|
||||
"Failed to stop KMS service": "Falha ao parar serviço KMS",
|
||||
"Feature Permissions": "Permissões de Funcionalidade",
|
||||
"File Count Limit Exceeded": "Limite de Contagem de Arquivos Excedido",
|
||||
"File Size Limit": "Limite de Tamanho de Arquivo",
|
||||
"File size exceeds limit (10MB)": "O tamanho do arquivo excede o limite (10MB)",
|
||||
"Files": "Arquivos",
|
||||
"First": "Primeiro",
|
||||
"Folder": "Pasta",
|
||||
"Folder Processing Error": "Erro de Processamento de Pasta",
|
||||
"Force Delete": "Forçar Exclusão",
|
||||
"Friday": "Sexta-feira",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "Uploads futuros para este bucket não serão criptografados por padrão.",
|
||||
"GOVERNANCE": "GOVERNANÇA",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "Gerado a partir de chaves mestras para criptografar seus arquivos. Criado automaticamente ao criptografar dados.",
|
||||
"Get Data Failed": "Falha ao Obter Dados",
|
||||
"Get Help": "Obter Ajuda",
|
||||
"Groups": "Grupos",
|
||||
"HashiCorp Encryption": "Criptografia HashiCorp",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "Intervalo de Verificação de Saúde (segundos)",
|
||||
"High Memory Usage Warning": "Aviso de Alto Uso de Memória",
|
||||
"High Performance": "Alto Desempenho",
|
||||
"Hit Rate": "Taxa de Acerto",
|
||||
"IAM Configuration Export": "Exportação de Configuração do IAM",
|
||||
"IAM Configuration Import": "Importação de Configuração do IAM",
|
||||
"IAM Policies": "Políticas do IAM",
|
||||
"IAM configuration exported successfully": "Configuração do IAM exportada com sucesso",
|
||||
"IAM configuration imported successfully": "Configuração do IAM importada com sucesso",
|
||||
"Identity Authentication Expansion": "Expansão de Autenticação de Identidade",
|
||||
"If no versions remain, delete references to this object": "Se não restarem versões, exclua referências a este objeto",
|
||||
"Import": "Importar",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "Importe configurações do IAM de um arquivo ZIP previamente exportado.",
|
||||
"Import Now": "Importar Agora",
|
||||
"Import Success": "Importação Bem-sucedida",
|
||||
"Import/Export": "Importar/Exportar",
|
||||
"Importing...": "Importando...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total} tarefas em progresso ({processing} processando, {completed} concluídas)",
|
||||
"Inactive": "Inativo",
|
||||
"Include objects that already exist in the source bucket.": "Incluir objetos que já existem no bucket de origem.",
|
||||
"Infinite Scaling": "Escalabilidade Infinita",
|
||||
"Info": "Informações",
|
||||
"Infrastructure Health": "Saúde da Infraestrutura",
|
||||
"Inspect individual server health, disk utilization, and network status.": "Inspecione a saúde do servidor individual, utilização do disco e status da rede.",
|
||||
"Invalid server address format": "Formato de endereço de servidor inválido",
|
||||
"JSON Editor": "Editor JSON",
|
||||
"KMS Configuration": "Configuração do KMS",
|
||||
"KMS Key": "Chave KMS",
|
||||
"KMS Key ID": "ID da Chave KMS",
|
||||
"KMS Keys Management": "Gerenciamento de Chaves KMS",
|
||||
"KMS Status Overview": "Visão Geral do Status do KMS",
|
||||
"KMS Type": "Tipo de KMS",
|
||||
"KMS is not configured, please configure it first": "KMS não está configurado, configure primeiro",
|
||||
"KMS server has errors": "O servidor KMS tem erros",
|
||||
"KMS server is configured but not running": "O servidor KMS está configurado mas não está em execução",
|
||||
"KMS server is not configured": "O servidor KMS não está configurado",
|
||||
"KMS server is running and healthy": "O servidor KMS está em execução e saudável",
|
||||
"KMS server is running but unhealthy": "O servidor KMS está em execução mas não está saudável",
|
||||
"KMS server is running, configuration details are private": "O servidor KMS está em execução, detalhes de configuração são privados",
|
||||
"KMS server status unknown": "Status do servidor KMS desconhecido",
|
||||
"KMS service has errors": "O serviço KMS tem erros",
|
||||
"KMS service is stopped": "O serviço KMS está parado",
|
||||
"KMS service not initialized, please configure it first": "Serviço KMS não inicializado, configure primeiro",
|
||||
"KMS service started successfully": "Serviço KMS iniciado com sucesso",
|
||||
"KMS service stopped successfully": "Serviço KMS parado com sucesso",
|
||||
"KV Mount": "Montagem KV",
|
||||
"KV Mount Path": "Caminho de Montagem KV",
|
||||
"KV storage mount path, default: secret": "Caminho de montagem de armazenamento KV, padrão: secret",
|
||||
"Key": "Chave",
|
||||
"Key Creation": "Criação de Chave",
|
||||
"Key Directory": "Diretório de Chaves",
|
||||
"Key Expiration": "Expiração da Chave",
|
||||
"Key ID": "ID da Chave",
|
||||
"Key List": "Lista de Chaves",
|
||||
"Key Login": "Login por Chave",
|
||||
"Key Name": "Nome da Chave",
|
||||
"Key Path Prefix": "Prefixo do Caminho da Chave",
|
||||
"Key created successfully": "Chave criada com sucesso",
|
||||
"Key deleted successfully": "Chave excluída com sucesso",
|
||||
"Key force deleted successfully": "Chave excluída forçadamente com sucesso",
|
||||
"Key is already pending deletion": "A chave já está pendente de exclusão",
|
||||
"Key list refreshed": "Lista de chaves atualizada",
|
||||
"Key services and configuration values reported by the cluster.": "Serviços de chave e valores de configuração relatados pelo cluster.",
|
||||
"Key storage path prefix in KV store": "Prefixo do caminho de armazenamento de chave no armazenamento KV",
|
||||
"Large File Count Warning": "Aviso de Grande Contagem de Arquivos",
|
||||
"Last": "Último",
|
||||
"Last Modified": "Última Modificação",
|
||||
"Last Modified Time": "Hora da Última Modificação",
|
||||
"Last Normal Operation": "Última Operação Normal",
|
||||
"Last Scan Activity": "Última Atividade de Varredura",
|
||||
"LastModified": "Última Modificação",
|
||||
"Leave empty to use current host as default": "Deixe vazio para usar o host atual como padrão",
|
||||
"Legal Hold": "Retenção Legal",
|
||||
"License": "Licença",
|
||||
"License Details": "Detalhes da Licença",
|
||||
"License Key": "Chave de Licença",
|
||||
"License Valid Until": "Licença Válida Até",
|
||||
"Licensed Company": "Empresa Licenciada",
|
||||
"Licensed Users": "Usuários Licenciados",
|
||||
"Lifecycle": "Ciclo de Vida",
|
||||
"Lifecycle Management": "Gerenciamento de Ciclo de Vida",
|
||||
"Light": "Claro",
|
||||
"Load Balancing": "Balanceamento de Carga",
|
||||
"Loading buckets...": "Carregando buckets...",
|
||||
"Loading keys...": "Carregando chaves...",
|
||||
"Local development mode set successfully": "Modo de desenvolvimento local definido com sucesso",
|
||||
"Login": "Login",
|
||||
"Login Failed": "Falha no Login",
|
||||
"Login Problems?": "Problemas de Login?",
|
||||
"Login Success": "Login Bem-sucedido",
|
||||
"Logout": "Sair",
|
||||
"Logs": "Logs",
|
||||
"MNMD Mode": "Modo MNMD",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "Corretor MQTT",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "Intervalo Keep Alive MQTT",
|
||||
"MQTT_PASSWORD": "Senha MQTT",
|
||||
"MQTT_QOS": "QoS MQTT",
|
||||
"MQTT_QUEUE_DIR": "Diretório de Fila MQTT",
|
||||
"MQTT_QUEUE_LIMIT": "Limite de Fila MQTT",
|
||||
"MQTT_RECONNECT_INTERVAL": "Intervalo de Reconexão MQTT",
|
||||
"MQTT_TOPIC": "Tópico MQTT",
|
||||
"MQTT_USERNAME": "Nome de Usuário MQTT",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "ID de chave principal (nome da chave Transit). Use um ID legível relacionado ao negócio.",
|
||||
"Make sure the server address is accessible from your network": "Certifique-se de que o endereço do servidor está acessível da sua rede",
|
||||
"Manage how RustFS connects to your external key management service.": "Gerencie como o RustFS se conecta ao seu serviço externo de gerenciamento de chaves.",
|
||||
"Master Key": "Chave Mestra",
|
||||
"Master Key (CMK)": "Chave Mestra (CMK)",
|
||||
"Master Keys (CMK)": "Chaves Mestras (CMK)",
|
||||
"Max 50TB": "Máx 50TB",
|
||||
"Members": "Membros",
|
||||
"Memory Critical": "Memória Crítica",
|
||||
"Memory High": "Memória Alta",
|
||||
"Memory Low": "Memória Baixa",
|
||||
"Memory Medium": "Memória Média",
|
||||
"Memory Usage": "Uso de Memória",
|
||||
"Memory Warning": "Aviso de Memória",
|
||||
"Metrics": "Métricas",
|
||||
"Minio": "Minio",
|
||||
"Mode": "Modo",
|
||||
"Monday": "Segunda-feira",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "Monitore o uso geral de armazenamento e a atividade recente do scanner de relance.",
|
||||
"More Configurations": "Mais Configurações",
|
||||
"Multi-Cloud Storage": "Armazenamento Multi-Cloud",
|
||||
"Multipart Upload": "Upload Multipart",
|
||||
"Name": "Nome",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "Precisa de ajuda?",
|
||||
"Network": "Rede",
|
||||
"New File": "Novo Arquivo",
|
||||
"New Folder": "Nova Pasta",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "Nova Senha",
|
||||
"New Secret Key": "Nova Chave Secreta",
|
||||
"New Policy": "Nova Política",
|
||||
"New user has been created": "Novo usuário foi criado",
|
||||
"Next": "Próximo",
|
||||
"Next Page": "Próxima Página",
|
||||
"No": "Não",
|
||||
"No Access Keys": "Sem Chaves de Acesso",
|
||||
"No Buckets": "Sem Buckets",
|
||||
"No Data": "Sem Dados",
|
||||
"No Destinations": "Sem Destinos",
|
||||
"No KMS configuration found": "Nenhuma configuração KMS encontrada",
|
||||
"No KMS keys found": "Nenhuma chave KMS encontrada",
|
||||
"No License": "Sem Licença",
|
||||
"No Objects": "Sem Objetos",
|
||||
"Show Deleted Objects": "Mostrar Objetos Excluídos",
|
||||
"No Policies": "Sem Políticas",
|
||||
"No Selection": "Sem Seleção",
|
||||
"No Tasks": "Sem Tarefas",
|
||||
"No Tiers": "Sem Tiers",
|
||||
"No Versions": "Sem Versões",
|
||||
"No bucket selected": "Nenhum bucket selecionado",
|
||||
"No buckets found": "Nenhum bucket encontrado",
|
||||
"No buckets match your search": "Nenhum bucket corresponde à sua pesquisa",
|
||||
"No status data available": "Nenhum dado de status disponível",
|
||||
"No valid events found after conversion": "Nenhum evento válido encontrado após a conversão",
|
||||
"Non-current Version": "Versão Não Atual",
|
||||
"Normal": "Normal",
|
||||
"Not Configured": "Não Configurado",
|
||||
"Not configured": "Não configurado",
|
||||
"Not specified": "Não especificado",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "Nota: valores de AccessKey e SecretKey são obrigatórios para cada site ao adicionar ou editar sites pares",
|
||||
"Notice": "Aviso",
|
||||
"Number of retry attempts, default: 3": "Número de tentativas de repetição, padrão: 3",
|
||||
"Object": "Objeto",
|
||||
"Object Count": "Contagem de Objetos",
|
||||
"Object Detail Description": "Descrição Detalhada do Objeto",
|
||||
"Object Details": "Detalhes do Objeto",
|
||||
"Object Lock": "Bloqueio de Objeto",
|
||||
"Object Name": "Nome do Objeto",
|
||||
"Object Repair": "Reparo de Objeto",
|
||||
"Object Sharing": "Compartilhamento de Objeto",
|
||||
"Object Size": "Tamanho do Objeto",
|
||||
"Object Tags": "Tags do Objeto",
|
||||
"Object Type": "Tipo de Objeto",
|
||||
"Object Version": "Versão do Objeto",
|
||||
"Object Versions": "Versões do Objeto",
|
||||
"Object lock is not enabled, cannot set retention": "O bloqueio de objeto não está habilitado, não é possível definir retenção",
|
||||
"Objects": "Objetos",
|
||||
"Off": "Desligado",
|
||||
"Offline": "Offline",
|
||||
"On": "Ligado",
|
||||
"On-site Deployment": "Implantação no Local",
|
||||
"On-site Technical Service": "Serviço Técnico no Local",
|
||||
"One-hour Response": "Resposta de Uma Hora",
|
||||
"Online": "Online",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "Apenas arquivos ZIP são suportados e o tamanho do arquivo não deve exceder 10MB",
|
||||
"Overwrite Warning": "Aviso de Sobrescrita",
|
||||
"Page will refresh automatically after saving configuration": "A página será atualizada automaticamente após salvar a configuração",
|
||||
"Page {current} of {total}": "Página {current} de {total}",
|
||||
"Password": "Senha",
|
||||
"Pause": "Pausar",
|
||||
"Paused": "Pausado",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "Pausado",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Exclusão Pendente",
|
||||
"Performance": "Desempenho",
|
||||
"Platinum Service": "Serviço Platinum",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "Configure o endereço do servidor RustFS",
|
||||
"Please enter": "Digite",
|
||||
"Please enter Access Key": "Digite a Chave de Acesso",
|
||||
"Please enter STS key": "Digite a chave STS",
|
||||
"Please enter STS session token": "Digite o token de sessão STS",
|
||||
"Please enter STS username": "Digite o nome de usuário STS",
|
||||
"Please enter Secret Key": "Digite a Chave Secreta",
|
||||
"Please enter Vault server address": "Digite o endereço do servidor Vault",
|
||||
"Please enter Vault token": "Digite o token do Vault",
|
||||
"Please enter account": "Digite a conta",
|
||||
"Please enter both Role ID and Secret ID": "Digite o ID de Função e o ID Secreto",
|
||||
"Please enter bucket": "Digite o bucket",
|
||||
"Please enter current password": "Digite a senha atual",
|
||||
"Please enter default key ID": "Digite o ID de chave padrão",
|
||||
"Please enter endpoint": "Digite o endpoint",
|
||||
"Please enter key": "Digite a chave",
|
||||
"Please enter key name": "Digite o nome da chave",
|
||||
"Please enter name": "Digite o nome",
|
||||
"Please enter new password": "Digite a nova senha",
|
||||
"Please enter new password again": "Digite a nova senha novamente",
|
||||
"Please enter password": "Digite a senha",
|
||||
"Please enter policy content": "Digite o conteúdo da política",
|
||||
"Please enter policy name": "Digite o nome da política",
|
||||
"Please enter prefix": "Digite o prefixo",
|
||||
"Please enter region": "Digite a região",
|
||||
"Please enter rule name": "Digite o nome da regra",
|
||||
"Please enter server address": "Digite o endereço do servidor",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "Digite o endereço do servidor (ex.: http://localhost:9000)",
|
||||
"Please enter storage class": "Digite a classe de armazenamento",
|
||||
"Please enter suffix": "Digite o sufixo",
|
||||
"Please enter tag value": "Digite o valor da tag",
|
||||
"Please enter user group name": "Digite o nome do grupo de usuários",
|
||||
"Please enter username": "Digite o nome de usuário",
|
||||
"Please enter valid days": "Digite dias válidos",
|
||||
"Please enter valid health check interval": "Digite um intervalo de verificação de saúde válido",
|
||||
"Please fill in at least one configuration item": "Preencha pelo menos um item de configuração",
|
||||
"Please fill in complete retention information": "Preencha informações completas de retenção",
|
||||
"Please fill in complete tag information": "Preencha informações completas de tag",
|
||||
"Please fill in the correct format": "Preencha no formato correto",
|
||||
"Please provide credentials": "Forneça credenciais",
|
||||
"Please select KMS key": "Selecione a chave KMS",
|
||||
"Please select a KMS key for SSE-KMS encryption": "Selecione uma chave KMS para criptografia SSE-KMS",
|
||||
"Please select a ZIP file to import": "Selecione um arquivo ZIP para importar",
|
||||
"Please select at least one event": "Selecione pelo menos um evento",
|
||||
"Please select at least one item": "Selecione pelo menos um item",
|
||||
"Please select authentication method": "Selecione o método de autenticação",
|
||||
"Please select bucket": "Selecione o bucket",
|
||||
"Please select encryption type": "Selecione o tipo de criptografia",
|
||||
"Please select event target type": "Selecione o tipo de destino de evento",
|
||||
"Please select expiration date": "Selecione a data de expiração",
|
||||
"Please select expiry date": "Selecione a data de expiração",
|
||||
"Please select policy": "Selecione a política",
|
||||
"Please select resource name": "Selecione o nome do recurso",
|
||||
"Please select rule type": "Selecione o tipo de regra",
|
||||
"Please select storage type": "Selecione o tipo de armazenamento",
|
||||
"Policies": "Políticas",
|
||||
"Policy": "Política",
|
||||
"Policy Content": "Conteúdo da Política",
|
||||
"Policy Name": "Nome da Política",
|
||||
"Policy Original": "Política Original",
|
||||
"Policy format invalid": "Formato de política inválido",
|
||||
"Prefix": "Prefixo",
|
||||
"Prev": "Anterior",
|
||||
"Preview": "Visualizar",
|
||||
"Preview unavailable": "Visualização indisponível",
|
||||
"Previous Page": "Página Anterior",
|
||||
"Priority": "Prioridade",
|
||||
"Private": "Privado",
|
||||
"Processing": "Processando",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Público",
|
||||
"Public, Private, Custom": "Público, Privado, Personalizado",
|
||||
"Read/Write Performance": "Desempenho de Leitura/Gravação",
|
||||
"Reading Folder Files": "Lendo Arquivos da Pasta",
|
||||
"Ready to import: {filename}": "Pronto para importar: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "Status em tempo real dos servidores de cluster e dispositivos de armazenamento backend.",
|
||||
"Reduced Redundancy Parity": "Paridade de Redundância Reduzida",
|
||||
"Reed-Solomon Matrix": "Matriz Reed-Solomon",
|
||||
"Refresh": "Atualizar",
|
||||
"Region": "Região",
|
||||
"Reliable distributed file system": "Sistema de arquivos distribuído confiável",
|
||||
"Remaining (3TB)": "Restante (3TB)",
|
||||
"Remote Site": "Site Remoto",
|
||||
"Remote Technical Support": "Suporte Técnico Remoto",
|
||||
"Remote Tiering": "Tiering Remoto",
|
||||
"Remove": "Remover",
|
||||
"Remove Encryption": "Remover Criptografia",
|
||||
"Replicate Delete Markers": "Replicar Marcadores de Exclusão",
|
||||
"Replicate Existing Objects": "Replicar Objetos Existentes",
|
||||
"Request timeout in seconds, default: 30": "Tempo limite da solicitação em segundos, padrão: 30",
|
||||
"Required: Vault authentication token": "Obrigatório: token de autenticação do Vault",
|
||||
"Reset": "Redefinir",
|
||||
"Reset to Default": "Redefinir para Padrão",
|
||||
"Reset to default successfully": "Redefinido para padrão com sucesso",
|
||||
"Response Level": "Nível de Resposta",
|
||||
"Resume": "Retomar",
|
||||
"Retention": "Retenção",
|
||||
"Retention Mode": "Modo",
|
||||
"Retention Period": "Período de Retenção",
|
||||
"Retention RetainUntilDate": "Retenção RetainUntilDate",
|
||||
"Retention Save Failed": "Falha ao Salvar Retenção",
|
||||
"Retention Unit": "Unidade de Retenção",
|
||||
"Retry Attempts": "Tentativas de Repetição",
|
||||
"Role ID": "ID de Função",
|
||||
"Rows per page": "Linhas por página",
|
||||
"Rule ID": "ID da Regra",
|
||||
"Running": "Em Execução",
|
||||
"Running (Unhealthy)": "Em Execução (Não Saudável)",
|
||||
"Rust-based": "Baseado em Rust",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "Armazenamento frio integrado RustFS",
|
||||
"RustyVault Encryption": "Criptografia RustyVault",
|
||||
"S3 Compatibility": "Compatibilidade S3",
|
||||
"S3 Compatible": "Compatível com S3",
|
||||
"S3 Endpoint": "Endpoint S3",
|
||||
"S3 Region": "Região S3",
|
||||
"SDK Support": "Suporte SDK",
|
||||
"SNMD Mode": "Modo SNMD",
|
||||
"SNND Mode": "Modo SNND",
|
||||
"SSE Settings": "Configurações SSE",
|
||||
"STS Key": "Chave STS",
|
||||
"STS Login": "Login STS",
|
||||
"STS Session Token": "Token de Sessão STS",
|
||||
"STS Username": "Nome de Usuário STS",
|
||||
"Saturday": "Sábado",
|
||||
"Save": "Salvar",
|
||||
"Save Configuration": "Salvar Configuração",
|
||||
"Save Failed": "Falha ao Salvar",
|
||||
"Save failed": "Falha ao salvar",
|
||||
"Saved": "Salvo",
|
||||
"Scalability": "Escalabilidade",
|
||||
"Search": "Pesquisar",
|
||||
"Search Access Key": "Pesquisar Chave de Acesso",
|
||||
"Search Access User": "Pesquisar Usuário de Acesso",
|
||||
"Search Account": "Pesquisar Conta",
|
||||
"Search Group": "Pesquisar Grupo",
|
||||
"Search Policy": "Pesquisar Política",
|
||||
"Search User": "Pesquisar Usuário",
|
||||
"Search User Group": "Pesquisar Grupo de Usuários",
|
||||
"Search buckets...": "Pesquisar buckets...",
|
||||
"Secret ID": "ID Secreto",
|
||||
"Secret Key": "Chave Secreta",
|
||||
"Secret Key *": "Chave Secreta *",
|
||||
"Secret Key is required": "Chave secreta é obrigatória",
|
||||
"Secret Key length must be between 8 and 40 characters": "O comprimento da chave secreta deve estar entre 8 e 40 caracteres",
|
||||
"Secure & Reliable": "Seguro e Confiável",
|
||||
"Secure Transport": "Transporte Seguro",
|
||||
"Select File": "Selecionar Arquivo",
|
||||
"Select Folder": "Selecionar Pasta",
|
||||
"Select Group": "Selecionar Grupo",
|
||||
"Select KMS key": "Selecionar chave KMS",
|
||||
"Select encryption algorithm": "Selecionar algoritmo de criptografia",
|
||||
"Select encryption type": "Selecionar tipo de criptografia",
|
||||
"Select events": "Selecionar eventos",
|
||||
"Select the KMS key to use for encryption": "Selecione a chave KMS para usar na criptografia",
|
||||
"Select user group members": "Selecionar membros do grupo de usuários",
|
||||
"Select user group policies": "Selecionar políticas do grupo de usuários",
|
||||
"Selected Type": "Tipo Selecionado",
|
||||
"Send events via MQTT broker": "Enviar eventos via corretor MQTT",
|
||||
"Server Address": "Endereço do Servidor",
|
||||
"Server Configuration": "Configuração do Servidor",
|
||||
"Server Host": "Host do Servidor",
|
||||
"Server Information": "Informações do Servidor",
|
||||
"Server List": "Lista de Servidores",
|
||||
"Server configuration saved successfully": "Configuração do servidor salva com sucesso",
|
||||
"Server-Side Encryption (SSE) Configuration": "Configuração de Criptografia do Lado do Servidor (SSE)",
|
||||
"Servers": "Servidores",
|
||||
"Service Email": "E-mail de Serviço",
|
||||
"Service Hotline": "Linha Direta de Serviço",
|
||||
"Service Status": "Status do Serviço",
|
||||
"Set Policy": "Definir Política",
|
||||
"Set Retention": "Definir Retenção",
|
||||
"Set Tag": "Definir Tag",
|
||||
"Set Tags": "Definir Tags",
|
||||
"Set the prefix for the rule": "Definir o prefixo para a regra",
|
||||
"Set the time cycle for the rule": "Definir o ciclo de tempo para a regra",
|
||||
"Settings": "Configurações",
|
||||
"Single Machine Multiple Disks": "Máquina Única Múltiplos Discos",
|
||||
"Single Object": "Objeto Único",
|
||||
"Site Name": "Nome do Site",
|
||||
"Site Replication": "Replicação de Site",
|
||||
"Size": "Tamanho",
|
||||
"Skip": "Pular",
|
||||
"Sort by": "Ordenar por",
|
||||
"Standard AWS S3 tier": "Tier AWS S3 padrão",
|
||||
"Standard Storage Parity": "Paridade de Armazenamento Padrão",
|
||||
"Start KMS": "Iniciar KMS",
|
||||
"Start Upload": "Iniciar Upload",
|
||||
"Status": "Status",
|
||||
"Status refreshed successfully": "Status atualizado com sucesso",
|
||||
"Stop KMS": "Parar KMS",
|
||||
"Storage Class": "Classe de Armazenamento",
|
||||
"Storage Space": "Espaço de Armazenamento",
|
||||
"Storage Type": "Tipo de Armazenamento",
|
||||
"Storage Usage Statistics": "Estatísticas de Uso de Armazenamento",
|
||||
"Submit": "Enviar",
|
||||
"Subscribe to event notification": "Assinar notificação de evento",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Sufixo",
|
||||
"Sunday": "Domingo",
|
||||
"Support Level": "Nível de Suporte",
|
||||
"Supported": "Suportado",
|
||||
"Supported CPU Architecture": "Arquitetura de CPU Suportada",
|
||||
"Supported OS": "OS Suportado",
|
||||
"Supports Erasure Coding": "Suporta Codificação de Exclusão",
|
||||
"Supports HTTPS, TLS": "Suporta HTTPS, TLS",
|
||||
"Supports high concurrency operations": "Suporta operações de alta concorrência",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "Suporta gerenciamento de múltiplos discos de armazenamento em um único servidor para melhorar a utilização de recursos de armazenamento e simplificar gerenciamento e manutenção",
|
||||
"Sync": "Sincronizar",
|
||||
"Sync delete markers to destination bucket.": "Sincronizar marcadores de exclusão para o bucket de destino.",
|
||||
"Synchronous": "Síncrono",
|
||||
"Tag": "Tag",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "Chave de Tag",
|
||||
"Tag Key Placeholder": "Espaço Reservado para Chave de Tag",
|
||||
"Tag Name": "Nome da Tag",
|
||||
"Tag Update Failed": "Falha ao Atualizar Tag",
|
||||
"Tag Update Success": "Atualização de Tag Bem-sucedida",
|
||||
"Tag Value": "Valor da Tag",
|
||||
"Tag Value Placeholder": "Espaço Reservado para Valor de Tag",
|
||||
"Tags": "Tags",
|
||||
"Target Bucket": "Bucket de Destino",
|
||||
"Task Completed": "Tarefa Concluída",
|
||||
"Task Management": "Gerenciamento de Tarefas",
|
||||
"Technical Parameters": "Parâmetros Técnicos",
|
||||
"Technical Training": "Treinamento Técnico",
|
||||
"Temporary URL": "URL Temporário",
|
||||
"Temporary URL Expiration": "Expiração de URL Temporário",
|
||||
"Generate URL": "Gerar URL",
|
||||
"URL generated successfully": "URL gerado com sucesso",
|
||||
"Failed to generate URL": "Falha ao gerar URL",
|
||||
"Total Duration": "Duração Total",
|
||||
"Minutes": "Minutos",
|
||||
"Hours": "Horas",
|
||||
"Days": "Dias",
|
||||
"Minutes must be between 0 and 59": "Os minutos devem estar entre 0 e 59",
|
||||
"Hours must be between 0 and 23": "As horas devem estar entre 0 e 23",
|
||||
"Hours must be between 0 and 24 when days is 0": "As horas devem estar entre 0 e 24 quando os dias são 0",
|
||||
"Days must be between 0 and 7": "Os dias devem estar entre 0 e 7",
|
||||
"Total duration cannot exceed 7 days": "A duração total não pode exceder 7 dias",
|
||||
"Please enter a valid expiration time": "Digite um tempo de expiração válido",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "O arquivo exportado contém informações sensíveis. Mantenha-o seguro.",
|
||||
"The two passwords are inconsistent": "As duas senhas são inconsistentes",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "Esta ação não pode ser desfeita e contornará o processo normal de exclusão.",
|
||||
"This action cannot be undone.": "Esta ação não pode ser desfeita.",
|
||||
"Thursday": "Quinta-feira",
|
||||
"Tier": "Tier",
|
||||
"Tier Type": "Tipo de Tier",
|
||||
"Tiered Storage": "Armazenamento em Camadas",
|
||||
"Tiering Transfer": "Transferência de Tiering",
|
||||
"Tiers": "Tiers",
|
||||
"Time Cycle": "Ciclo de Tempo",
|
||||
"Timeout": "Tempo Limite",
|
||||
"Timeout (seconds)": "Tempo Limite (segundos)",
|
||||
"Token": "Token",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "Chaves de criptografia de nível superior usadas para criptografar chaves de dados. Gerenciadas pelo KMS e nunca saem do sistema.",
|
||||
"Total": "Total",
|
||||
"Total Capacity": "Capacidade Total",
|
||||
"Total Files": "Total de Arquivos",
|
||||
"Total Requests": "Total de Solicitações",
|
||||
"Transit Mount": "Montagem Transit",
|
||||
"Transit Mount Path": "Caminho de Montagem Transit",
|
||||
"Transit engine mount path, default: transit": "Caminho de montagem do mecanismo Transit, padrão: transit",
|
||||
"Transition": "Transição",
|
||||
"Trigger custom HTTP endpoints": "Acionar endpoints HTTP personalizados",
|
||||
"Try adjusting your search terms": "Tente ajustar seus termos de pesquisa",
|
||||
"Tuesday": "Terça-feira",
|
||||
"Type": "Tipo",
|
||||
"Understanding Key Types": "Entendendo Tipos de Chave",
|
||||
"Unknown": "Desconhecido",
|
||||
"Unknown Folder": "Pasta Desconhecida",
|
||||
"Unlimited": "Ilimitado",
|
||||
"Update Failed": "Falha ao Atualizar",
|
||||
"Update Key": "Atualizar Chave",
|
||||
"Update License": "Atualizar Licença",
|
||||
"Update Success": "Atualização Bem-sucedida",
|
||||
"Update failed": "Falha ao atualizar",
|
||||
"Updated successfully": "Atualizado com sucesso",
|
||||
"Upload": "Upload",
|
||||
"Upload File": "Fazer Upload de Arquivo",
|
||||
"Upload files or create folders to populate this bucket.": "Faça upload de arquivos ou crie pastas para preencher este bucket.",
|
||||
"Uploading Status": "Status de Upload",
|
||||
"Uptime": "Tempo de Atividade",
|
||||
"Usage Report": "Relatório de Uso",
|
||||
"Use AppRole authentication": "Usar autenticação AppRole",
|
||||
"Use Main Account Policy": "Usar Política da Conta Principal",
|
||||
"Use TLS": "Usar TLS",
|
||||
"Use Vault token for authentication": "Usar token do Vault para autenticação",
|
||||
"Use main account policy": "Usar política da conta principal",
|
||||
"Used": "Usado",
|
||||
"Used (7TB)": "Usado (7TB)",
|
||||
"Used Capacity": "Capacidade Usada",
|
||||
"User Groups": "Grupos de Usuários",
|
||||
"User Name": "Nome de Usuário",
|
||||
"Users": "Usuários",
|
||||
"Validity": "Validade",
|
||||
"Vault Server": "Servidor Vault",
|
||||
"Vault Server Address": "Endereço do Servidor Vault",
|
||||
"Vault Token": "Token do Vault",
|
||||
"Version": "Versão",
|
||||
"Version 2.0, January 2004": "Versão 2.0, Janeiro de 2004",
|
||||
"Version Control": "Controle de Versão",
|
||||
"VersionId": "ID da Versão",
|
||||
"Versions": "Versões",
|
||||
"View Documentation": "Ver Documentação",
|
||||
"Virtualization Platform Support": "Suporte a Plataforma de Virtualização",
|
||||
"Visit website": "Visitar site",
|
||||
"WARNING: This will immediately delete the key": "AVISO: Isso excluirá a chave imediatamente",
|
||||
"WEBHOOK_AUTH_TOKEN": "Token de Autenticação Webhook",
|
||||
"WEBHOOK_ENDPOINT": "Endpoint Webhook",
|
||||
"WEBHOOK_QUEUE_DIR": "Diretório de Fila Webhook",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Limite de Fila Webhook",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Aguardando",
|
||||
"waiting": "Aguardando",
|
||||
"Warning": "Aviso",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Quarta-feira",
|
||||
"Weekly MB/s Change Trend": "Tendência de Mudança Semanal MB/s",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "ANOS",
|
||||
"YYYY-MM-DD": "AAAA-MM-DD",
|
||||
"YYYY-MM-DD HH:mm": "AAAA-MM-DD HH:mm",
|
||||
"YYYY-MM-DD HH:mm:ss": "AAAA-MM-DD HH:mm:ss",
|
||||
"YYYY-MM-DDTHH:mm": "AAAA-MM-DDTHH:mm",
|
||||
"Year": "Ano",
|
||||
"Yes": "Sim",
|
||||
"Your browser does not support the audio tag": "Seu navegador não suporta a tag de áudio",
|
||||
"Your browser does not support the video tag": "Seu navegador não suporta a tag de vídeo",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "O comprimento da senha não pode ser menor que 8 caracteres e maior que 16 caracteres",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "O comprimento do nome de usuário não pode ser menor que 8 caracteres e maior que 16 caracteres",
|
||||
"Validation failed": "Validação falhou",
|
||||
"API request failed": "Falha na solicitação da API",
|
||||
"Operation failed": "Operação falhou",
|
||||
"Create a user to get started": "Crie um usuário para começar",
|
||||
"Get Notification Config Failed": "Falha ao Obter Configuração de Notificação",
|
||||
"empty is indicates permanent validity": "Vazio indica validade permanente",
|
||||
"Create user groups to organize permissions": "Crie grupos de usuários para organizar permissões",
|
||||
"Filter From This Page": "Filtrar Desta Página"
|
||||
}
|
||||
@@ -0,0 +1,882 @@
|
||||
{
|
||||
"(Configuration details are private)": "(Детали конфигурации являются приватными)",
|
||||
"(Configured)": "(Настроено)",
|
||||
"API Base URL": "Базовый URL API",
|
||||
"ARN": "ARN",
|
||||
"AWS S3": "AWS S3",
|
||||
"Access Control": "Контроль доступа",
|
||||
"Access Key": "Ключ доступа",
|
||||
"Access Key *": "Ключ доступа *",
|
||||
"Access Key is required": "Ключ доступа обязателен",
|
||||
"Access Key length must be between 3 and 20 characters": "Длина ключа доступа должна быть от 3 до 20 символов",
|
||||
"Access Keys": "Ключи доступа",
|
||||
"Access Policy": "Политика доступа",
|
||||
"Account": "Учетная запись",
|
||||
"Action": "Действие",
|
||||
"Actions": "Действия",
|
||||
"Active": "Активный",
|
||||
"Add": "Добавить",
|
||||
"Add Access Key": "Добавить ключ доступа",
|
||||
"Add Account": "Добавить учетную запись",
|
||||
"Add Event Destination": "Добавить назначение события",
|
||||
"Add Event Subscription": "Добавить подписку на событие",
|
||||
"Add Event Subscription to get started": "Добавьте подписку на событие, чтобы начать",
|
||||
"Add Failed": "Ошибка добавления",
|
||||
"Add Lifecycle Rule": "Добавить правило жизненного цикла",
|
||||
"Add Replication Rule": "Добавить правило репликации",
|
||||
"Add Site": "Добавить сайт",
|
||||
"Add Site Replication": "Добавить репликацию сайта",
|
||||
"Add Success": "Успешно добавлено",
|
||||
"Add Tag": "Добавить тег",
|
||||
"Add Tier": "Добавить уровень",
|
||||
"Add User": "Добавить пользователя",
|
||||
"Add User Group": "Добавить группу пользователей",
|
||||
"Add failed": "Ошибка добавления",
|
||||
"Add group members": "Добавить участников группы",
|
||||
"Add replication rules to sync objects across buckets.": "Добавьте правила репликации для синхронизации объектов между бакетами.",
|
||||
"Add success": "Успешно добавлено",
|
||||
"Add tiers to configure remote storage destinations.": "Добавьте уровни для настройки удаленных хранилищ.",
|
||||
"Add to Group": "Добавить в группу",
|
||||
"Add {type} Destination": "Добавить назначение {type}",
|
||||
"Added successfully": "Успешно добавлено",
|
||||
"Adding to Upload Queue": "Добавление в очередь загрузки",
|
||||
"Advanced Monitoring": "Расширенный мониторинг",
|
||||
"Advanced Settings": "Расширенные настройки",
|
||||
"Algorithm": "Алгоритм",
|
||||
"Amazon Resource Name": "Имя ресурса Amazon",
|
||||
"Apache License": "Лицензия Apache",
|
||||
"AppRole": "AppRole",
|
||||
"AppRole Role ID from Vault": "ID роли AppRole из Vault",
|
||||
"AppRole Secret ID from Vault": "Секретный ID AppRole из Vault",
|
||||
"Are you sure you want to delete all selected keys?": "Вы уверены, что хотите удалить все выбранные ключи?",
|
||||
"Are you sure you want to delete all selected user groups?": "Вы уверены, что хотите удалить все выбранные группы пользователей?",
|
||||
"Are you sure you want to delete all selected users?": "Вы уверены, что хотите удалить всех выбранных пользователей?",
|
||||
"Are you sure you want to delete the selected objects?": "Вы уверены, что хотите удалить выбранные объекты?",
|
||||
"Are you sure you want to delete this bucket?": "Вы уверены, что хотите удалить этот бакет?",
|
||||
"Are you sure you want to delete this destination?": "Вы уверены, что хотите удалить это назначение?",
|
||||
"Are you sure you want to delete this key?": "Вы уверены, что хотите удалить этот ключ?",
|
||||
"Are you sure you want to delete this notification configuration?": "Вы уверены, что хотите удалить эту конфигурацию уведомлений?",
|
||||
"Are you sure you want to delete this object?": "Вы уверены, что хотите удалить этот объект?",
|
||||
"Are you sure you want to delete this policy?": "Вы уверены, что хотите удалить эту политику?",
|
||||
"Are you sure you want to delete this replication rule?": "Вы уверены, что хотите удалить это правило репликации?",
|
||||
"Are you sure you want to delete this rule?": "Вы уверены, что хотите удалить это правило?",
|
||||
"Are you sure you want to delete this tier?": "Вы уверены, что хотите удалить этот уровень?",
|
||||
"Are you sure you want to force delete this key?": "Вы уверены, что хотите принудительно удалить этот ключ?",
|
||||
"Are you sure you want to remove encryption?": "Вы уверены, что хотите удалить шифрование?",
|
||||
"Assign Policy": "Назначить политику",
|
||||
"Asynchronous": "Асинхронный",
|
||||
"Audit": "Аудит",
|
||||
"Auth Method": "Метод аутентификации",
|
||||
"Authentication Method": "Метод аутентификации",
|
||||
"Authorization": "Авторизация",
|
||||
"Auto": "Автоматически",
|
||||
"Automatically inherit the main account policy when enabled.": "Автоматически наследовать политику основной учетной записи при включении.",
|
||||
"Available": "Доступно",
|
||||
"Backend": "Бэкенд",
|
||||
"Backend Services": "Сервисы бэкенда",
|
||||
"Backend Status": "Статус бэкенда",
|
||||
"Backend Type": "Тип бэкенда",
|
||||
"Bandwidth Limit": "Ограничение пропускной способности",
|
||||
"Batch allocation policies": "Политики пакетного выделения",
|
||||
"Bitrot": "Bitrot",
|
||||
"Browser": "Браузер",
|
||||
"Browser Warning": "Предупреждение браузера",
|
||||
"Bucket": "Бакет",
|
||||
"Bucket Configuration": "Конфигурация бакета",
|
||||
"Bucket Count": "Количество бакетов",
|
||||
"Bucket Encryption Management": "Управление шифрованием бакета",
|
||||
"Bucket Events": "События бакета",
|
||||
"Bucket Notification": "Уведомления бакета",
|
||||
"Bucket Policy": "Политика бакета",
|
||||
"Bucket Quota": "Квота бакета",
|
||||
"Bucket Replication": "Репликация бакета",
|
||||
"Bucket Setting": "Настройка бакета",
|
||||
"Bucket encryption configured successfully": "Шифрование бакета успешно настроено",
|
||||
"Bucket encryption removed successfully": "Шифрование бакета успешно удалено",
|
||||
"Bucket is not empty": "Бакет не пуст",
|
||||
"Bucket list refreshed": "Список бакетов обновлен",
|
||||
"Buckets": "Бакеты",
|
||||
"COMMENT_KEY": "Comment",
|
||||
"COMPLIANCE": "COMPLIANCE",
|
||||
"Cache Enabled": "Кэш включен",
|
||||
"Cache Hits": "Попадания в кэш",
|
||||
"Cache Misses": "Промахи кэша",
|
||||
"Cache Statistics": "Статистика кэша",
|
||||
"Cache Status": "Статус кэша",
|
||||
"Cache TTL": "TTL кэша",
|
||||
"Cache TTL (seconds)": "TTL кэша (секунды)",
|
||||
"Cache Warning": "Предупреждение кэша",
|
||||
"Cache clear completed with warnings": "Очистка кэша завершена с предупреждениями",
|
||||
"Cache cleared successfully": "Кэш успешно очищен",
|
||||
"Cache time-to-live in seconds, default: 600": "Время жизни кэша в секундах, по умолчанию: 600",
|
||||
"Cancel": "Отмена",
|
||||
"Canceled": "Отменено",
|
||||
"canceled": "Отменено",
|
||||
"Cannot Preview": "Cannot preview this object content (MIME type: {contentType}), please download to view",
|
||||
"Change Password": "Изменить пароль",
|
||||
"Change Secret Key": "Изменить секретный ключ",
|
||||
"Change current account password": "Изменить пароль текущей учетной записи",
|
||||
"Confirm New Secret Key": "Подтвердить новый секретный ключ",
|
||||
"Choose the encryption method for this bucket": "Выберите метод шифрования для этого бакета",
|
||||
"Clear All": "Очистить все",
|
||||
"Clear Cache": "Очистить кэш",
|
||||
"Clear Records": "Очистить записи",
|
||||
"Click or drag ZIP file to this area to upload": "Нажмите или перетащите ZIP-файл в эту область для загрузки",
|
||||
"Close": "Закрыть",
|
||||
"Completed": "Completed({count})",
|
||||
"Configuration": "Конфигурация",
|
||||
"Configuration Information": "Информация о конфигурации",
|
||||
"Configuration is saved locally in your browser": "Конфигурация сохраняется локально в вашем браузере",
|
||||
"Configuration loaded successfully": "Конфигурация успешно загружена",
|
||||
"Configuration reset successfully": "Конфигурация успешно сброшена",
|
||||
"Configuration saved successfully": "Конфигурация успешно сохранена",
|
||||
"Configure": "Настроить",
|
||||
"Configure Bucket Encryption": "Настроить шифрование бакета",
|
||||
"Configure Encryption": "Настроить шифрование",
|
||||
"Configure Encryption for {bucket}": "Настроить шифрование для {bucket}",
|
||||
"Configure KMS": "Настроить KMS",
|
||||
"Configure server-side encryption for your objects using external key management services.": "Настройте шифрование на стороне сервера для ваших объектов с использованием внешних служб управления ключами.",
|
||||
"Configured": "Настроено",
|
||||
"Confirm": "Подтвердить",
|
||||
"Confirm Delete": "Подтвердить удаление",
|
||||
"Confirm Force Delete": "Подтвердить принудительное удаление",
|
||||
"Confirm New Password": "Подтвердить новый пароль",
|
||||
"Confirm Remove Encryption": "Подтвердить удаление шифрования",
|
||||
"Contact Support": "Связаться с поддержкой",
|
||||
"Copy": "Копировать",
|
||||
"Copy Failed": "Ошибка копирования",
|
||||
"Copy Success": "Копирование успешно",
|
||||
"Copy Temporary URL": "Копировать временный URL",
|
||||
"Create": "Создать",
|
||||
"Create Bucket": "Создать бакет",
|
||||
"Create Failed": "Ошибка создания",
|
||||
"Create First Key": "Создать первый ключ",
|
||||
"Create Key": "Создать ключ",
|
||||
"Create New Key": "Создать новый ключ",
|
||||
"Create Success": "Создание успешно",
|
||||
"Create User": "Создать пользователя",
|
||||
"Create a bucket to start storing objects.": "Создайте бакет, чтобы начать хранить объекты.",
|
||||
"Create a new access key to get started.": "Создайте новый ключ доступа, чтобы начать.",
|
||||
"Create a policy to manage access control templates.": "Создайте политику для управления шаблонами контроля доступа.",
|
||||
"Create an event destination to forward notifications.": "Создайте назначение события для пересылки уведомлений.",
|
||||
"Create lifecycle rules to automate object transitions and expiration.": "Создайте правила жизненного цикла для автоматизации переходов и истечения срока действия объектов.",
|
||||
"Create your first KMS key to get started": "Создайте свой первый ключ KMS, чтобы начать",
|
||||
"Create your first bucket to configure encryption": "Создайте свой первый бакет для настройки шифрования",
|
||||
"Create, rotate, and inspect the keys managed by your KMS backend.": "Создавайте, ротируйте и проверяйте ключи, управляемые вашим бэкендом KMS.",
|
||||
"Created": "Создано",
|
||||
"Creation Date": "Дата создания",
|
||||
"Current Configuration": "Текущая конфигурация",
|
||||
"Current KMS Type": "Текущий тип KMS",
|
||||
"Current Password": "Текущий пароль",
|
||||
"Current Prefix": "Текущий префикс",
|
||||
"Current Site": "Текущий сайт",
|
||||
"Current User Policy": "Текущая политика пользователя",
|
||||
"Current Version": "Текущая версия",
|
||||
"Current user policy": "Текущая политика пользователя",
|
||||
"Custom": "Пользовательский",
|
||||
"Customer Service": "Служба поддержки",
|
||||
"DAYS": "ДНИ",
|
||||
"Dark": "Темная",
|
||||
"Data Backup": "Резервное копирование данных",
|
||||
"Data Key (DEK)": "Ключ данных (DEK)",
|
||||
"Data Keys (DEK)": "Ключи данных (DEK)",
|
||||
"Data Redundancy": "Избыточность данных",
|
||||
"Data keys are automatically generated when encrypting files. They are encrypted by master keys and used for actual data encryption.": "Ключи данных автоматически генерируются при шифровании файлов. Они шифруются мастер-ключами и используются для фактического шифрования данных.",
|
||||
"Day": "День",
|
||||
"Days After": "Дней после",
|
||||
"Default Key ID": "ID ключа по умолчанию",
|
||||
"Default master key ID for SSE-KMS": "ID мастер-ключа по умолчанию для SSE-KMS",
|
||||
"Delete": "Удалить",
|
||||
"Delete Failed": "Ошибка удаления",
|
||||
"Delete Key": "Удалить ключ",
|
||||
"Delete Marker Handling": "Обработка маркеров удаления",
|
||||
"Delete Record": "Удалить запись",
|
||||
"Delete Selected": "Удалить выбранные",
|
||||
"Delete Success": "Удаление успешно",
|
||||
"Delete Tag Confirm": "Подтвердить удаление тега",
|
||||
"Deleting": "Deleting({count})",
|
||||
"Deleting...": "Удаление...",
|
||||
"Description": "Описание",
|
||||
"Destination Bucket": "Бакет назначения",
|
||||
"Detailed KMS Status": "Подробный статус KMS",
|
||||
"Details": "Детали",
|
||||
"Development Language Requirements": "Требования к языку разработки",
|
||||
"Disabled": "Отключено",
|
||||
"Disk Bad Spot Check": "Проверка плохих участков диска",
|
||||
"Disks": "Диски",
|
||||
"Documentation": "Документация",
|
||||
"Download": "Скачать",
|
||||
"Download complete IAM configuration as ZIP file": "Скачать полную конфигурацию IAM в виде ZIP-файла",
|
||||
"Drag Drop Info": "Информация о перетаскивании",
|
||||
"EC Mode": "Режим EC",
|
||||
"Edit": "Редактировать",
|
||||
"Edit Configuration": "Редактировать конфигурацию",
|
||||
"Edit Failed": "Ошибка редактирования",
|
||||
"Edit Group": "Редактировать группу",
|
||||
"Edit Key": "Редактировать ключ",
|
||||
"Edit Policy": "Редактировать политику",
|
||||
"Edit Success": "Редактирование успешно",
|
||||
"Edit User": "Редактировать пользователя",
|
||||
"Emergency Response": "Экстренное реагирование",
|
||||
"Enable Cache": "Включить кэш",
|
||||
"Enable Storage Encryption": "Включить шифрование хранилища",
|
||||
"Enable caching for better performance, default: true": "Включить кэширование для лучшей производительности, по умолчанию: true",
|
||||
"Enable secure transport when connecting to endpoint.": "Включить безопасный транспорт при подключении к конечной точке.",
|
||||
"Enabled": "Включено",
|
||||
"Encryption": "Шифрование",
|
||||
"Encryption Status": "Статус шифрования",
|
||||
"Encryption Type": "Тип шифрования",
|
||||
"Encryption algorithm for the key.": "Алгоритм шифрования для ключа.",
|
||||
"Endpoint": "Конечная точка",
|
||||
"Endpoint *": "Конечная точка *",
|
||||
"Endpoint is required": "Конечная точка обязательна",
|
||||
"Enter AppRole Role ID": "Введите ID роли AppRole",
|
||||
"Enter AppRole Secret ID": "Введите секретный ID AppRole",
|
||||
"Enter your Vault authentication token": "Введите токен аутентификации Vault",
|
||||
"Enterprise": "Enterprise",
|
||||
"Enterprise License": "Лицензия Enterprise",
|
||||
"Enterprise Service Level": "Уровень обслуживания Enterprise",
|
||||
"Error": "Ошибка",
|
||||
"Event Destinations": "Назначения событий",
|
||||
"Event Target created successfully": "Назначение события успешно создано",
|
||||
"Events": "События",
|
||||
"Example: http://localhost:9000 or https://your-domain.com": "Пример: http://localhost:9000 или https://your-domain.com",
|
||||
"Existing encrypted objects will remain encrypted.": "Существующие зашифрованные объекты останутся зашифрованными.",
|
||||
"Expiration": "Истечение срока",
|
||||
"Expiration Delete Mark": "Маркер удаления истечения срока",
|
||||
"Expired": "Истек",
|
||||
"Expiry": "Истечение срока",
|
||||
"Export": "Экспорт",
|
||||
"Export Now": "Экспортировать сейчас",
|
||||
"Export all IAM configurations including users, groups, policies, and access keys in a ZIP file.": "Экспортируйте все конфигурации IAM, включая пользователей, группы, политики и ключи доступа в ZIP-файл.",
|
||||
"Exporting...": "Экспорт...",
|
||||
"External MinIO tier": "Внешний уровень MinIO",
|
||||
"Failed": "Failed({count})",
|
||||
"Failed Status": "Ошибка({count})",
|
||||
"failed": "Ошибка({count})",
|
||||
"Failed to clear cache": "Не удалось очистить кэш",
|
||||
"Failed to configure bucket encryption": "Не удалось настроить шифрование бакета",
|
||||
"Failed to create event target": "Не удалось создать назначение события",
|
||||
"Failed to create rule": "Не удалось создать правило",
|
||||
"Failed to delete key": "Не удалось удалить ключ",
|
||||
"Failed to export IAM configuration": "Не удалось экспортировать конфигурацию IAM",
|
||||
"Failed to fetch KMS keys": "Не удалось получить ключи KMS",
|
||||
"Failed to fetch data": "Не удалось получить данные",
|
||||
"Failed to fetch object info": "Не удалось получить информацию об объекте",
|
||||
"Failed to fetch versions": "Не удалось получить версии",
|
||||
"Failed to force delete key": "Не удалось принудительно удалить ключ",
|
||||
"Failed to get data": "Не удалось получить данные",
|
||||
"Failed to get detailed status": "Не удалось получить подробный статус",
|
||||
"Failed to get key details": "Не удалось получить детали ключа",
|
||||
"Failed to import IAM configuration": "Не удалось импортировать конфигурацию IAM",
|
||||
"Failed to load KMS status": "Не удалось загрузить статус KMS",
|
||||
"Failed to load bucket list": "Не удалось загрузить список бакетов",
|
||||
"Failed to load current configuration": "Не удалось загрузить текущую конфигурацию",
|
||||
"Failed to load key list": "Не удалось загрузить список ключей",
|
||||
"Failed to refresh key list": "Не удалось обновить список ключей",
|
||||
"Failed to refresh status": "Не удалось обновить статус",
|
||||
"Failed to remove bucket encryption": "Не удалось удалить шифрование бакета",
|
||||
"Failed to save configuration": "Не удалось сохранить конфигурацию",
|
||||
"Failed to save key": "Не удалось сохранить ключ",
|
||||
"Failed to set local development mode": "Не удалось установить режим локальной разработки",
|
||||
"Failed to start KMS service": "Не удалось запустить службу KMS",
|
||||
"Failed to stop KMS service": "Не удалось остановить службу KMS",
|
||||
"Feature Permissions": "Разрешения функций",
|
||||
"File Count Limit Exceeded": "Превышен лимит количества файлов",
|
||||
"File Size Limit": "Ограничение размера файла",
|
||||
"File size exceeds limit (10MB)": "Размер файла превышает лимит (10MB)",
|
||||
"Files": "Файлы",
|
||||
"First": "Первый",
|
||||
"Folder": "Папка",
|
||||
"Folder Processing Error": "Ошибка обработки папки",
|
||||
"Force Delete": "Принудительное удаление",
|
||||
"Friday": "Пятница",
|
||||
"Future uploads to this bucket will not be encrypted by default.": "Будущие загрузки в этот бакет не будут зашифрованы по умолчанию.",
|
||||
"GOVERNANCE": "УПРАВЛЕНИЕ",
|
||||
"Generated from master keys to encrypt your files. Automatically created when encrypting data.": "Сгенерировано из мастер-ключей для шифрования ваших файлов. Автоматически создается при шифровании данных.",
|
||||
"Get Data Failed": "Ошибка получения данных",
|
||||
"Get Help": "Получить помощь",
|
||||
"Groups": "Группы",
|
||||
"HashiCorp Encryption": "Шифрование HashiCorp",
|
||||
"HashiCorp Vault Transit Engine": "HashiCorp Vault Transit Engine",
|
||||
"Health Check Interval (seconds)": "Интервал проверки работоспособности (секунды)",
|
||||
"High Memory Usage Warning": "Предупреждение о высоком использовании памяти",
|
||||
"High Performance": "Высокая производительность",
|
||||
"Hit Rate": "Процент попаданий",
|
||||
"IAM Configuration Export": "Экспорт конфигурации IAM",
|
||||
"IAM Configuration Import": "Импорт конфигурации IAM",
|
||||
"IAM Policies": "Политики IAM",
|
||||
"IAM configuration exported successfully": "Конфигурация IAM успешно экспортирована",
|
||||
"IAM configuration imported successfully": "Конфигурация IAM успешно импортирована",
|
||||
"Identity Authentication Expansion": "Расширение аутентификации идентичности",
|
||||
"If no versions remain, delete references to this object": "Если версий не осталось, удалите ссылки на этот объект",
|
||||
"Import": "Импорт",
|
||||
"Import IAM configurations from a previously exported ZIP file.": "Импортируйте конфигурации IAM из ранее экспортированного ZIP-файла.",
|
||||
"Import Now": "Импортировать сейчас",
|
||||
"Import Success": "Импорт успешен",
|
||||
"Import/Export": "Импорт/Экспорт",
|
||||
"Importing...": "Импорт...",
|
||||
"In Progress": "{total} tasks in progress ({processing} processing, {completed} completed)",
|
||||
"in progress": "{total} задач в процессе ({processing} обрабатывается, {completed} завершено)",
|
||||
"Inactive": "Неактивный",
|
||||
"Include objects that already exist in the source bucket.": "Включить объекты, которые уже существуют в исходном бакете.",
|
||||
"Infinite Scaling": "Бесконечное масштабирование",
|
||||
"Info": "Информация",
|
||||
"Infrastructure Health": "Состояние инфраструктуры",
|
||||
"Inspect individual server health, disk utilization, and network status.": "Проверьте состояние отдельного сервера, использование диска и статус сети.",
|
||||
"Invalid server address format": "Неверный формат адреса сервера",
|
||||
"JSON Editor": "Редактор JSON",
|
||||
"KMS Configuration": "Конфигурация KMS",
|
||||
"KMS Key": "Ключ KMS",
|
||||
"KMS Key ID": "ID ключа KMS",
|
||||
"KMS Keys Management": "Управление ключами KMS",
|
||||
"KMS Status Overview": "Обзор статуса KMS",
|
||||
"KMS Type": "Тип KMS",
|
||||
"KMS is not configured, please configure it first": "KMS не настроен, сначала настройте его",
|
||||
"KMS server has errors": "Сервер KMS имеет ошибки",
|
||||
"KMS server is configured but not running": "Сервер KMS настроен, но не запущен",
|
||||
"KMS server is not configured": "Сервер KMS не настроен",
|
||||
"KMS server is running and healthy": "Сервер KMS работает и исправен",
|
||||
"KMS server is running but unhealthy": "Сервер KMS работает, но неисправен",
|
||||
"KMS server is running, configuration details are private": "Сервер KMS работает, детали конфигурации являются приватными",
|
||||
"KMS server status unknown": "Статус сервера KMS неизвестен",
|
||||
"KMS service has errors": "Служба KMS имеет ошибки",
|
||||
"KMS service is stopped": "Служба KMS остановлена",
|
||||
"KMS service not initialized, please configure it first": "Служба KMS не инициализирована, сначала настройте ее",
|
||||
"KMS service started successfully": "Служба KMS успешно запущена",
|
||||
"KMS service stopped successfully": "Служба KMS успешно остановлена",
|
||||
"KV Mount": "Монтирование KV",
|
||||
"KV Mount Path": "Путь монтирования KV",
|
||||
"KV storage mount path, default: secret": "Путь монтирования хранилища KV, по умолчанию: secret",
|
||||
"Key": "Ключ",
|
||||
"Key Creation": "Создание ключа",
|
||||
"Key Directory": "Каталог ключей",
|
||||
"Key Expiration": "Истечение срока действия ключа",
|
||||
"Key ID": "ID ключа",
|
||||
"Key List": "Список ключей",
|
||||
"Key Login": "Вход по ключу",
|
||||
"Key Name": "Имя ключа",
|
||||
"Key Path Prefix": "Префикс пути ключа",
|
||||
"Key created successfully": "Ключ успешно создан",
|
||||
"Key deleted successfully": "Ключ успешно удален",
|
||||
"Key force deleted successfully": "Ключ успешно принудительно удален",
|
||||
"Key is already pending deletion": "Ключ уже ожидает удаления",
|
||||
"Key list refreshed": "Список ключей обновлен",
|
||||
"Key services and configuration values reported by the cluster.": "Службы ключей и значения конфигурации, о которых сообщает кластер.",
|
||||
"Key storage path prefix in KV store": "Префикс пути хранения ключа в хранилище KV",
|
||||
"Large File Count Warning": "Предупреждение о большом количестве файлов",
|
||||
"Last": "Последний",
|
||||
"Last Modified": "Последнее изменение",
|
||||
"Last Modified Time": "Время последнего изменения",
|
||||
"Last Normal Operation": "Последняя нормальная операция",
|
||||
"Last Scan Activity": "Последняя активность сканирования",
|
||||
"LastModified": "Последнее изменение",
|
||||
"Leave empty to use current host as default": "Оставьте пустым, чтобы использовать текущий хост по умолчанию",
|
||||
"Legal Hold": "Юридическое удержание",
|
||||
"License": "Лицензия",
|
||||
"License Details": "Детали лицензии",
|
||||
"License Key": "Ключ лицензии",
|
||||
"License Valid Until": "Лицензия действительна до",
|
||||
"Licensed Company": "Лицензированная компания",
|
||||
"Licensed Users": "Лицензированные пользователи",
|
||||
"Lifecycle": "Жизненный цикл",
|
||||
"Lifecycle Management": "Управление жизненным циклом",
|
||||
"Light": "Светлая",
|
||||
"Load Balancing": "Балансировка нагрузки",
|
||||
"Loading buckets...": "Загрузка бакетов...",
|
||||
"Loading keys...": "Загрузка ключей...",
|
||||
"Local development mode set successfully": "Режим локальной разработки успешно установлен",
|
||||
"Login": "Вход",
|
||||
"Login Failed": "Ошибка входа",
|
||||
"Login Problems?": "Проблемы со входом?",
|
||||
"Login Success": "Вход успешен",
|
||||
"Logout": "Выход",
|
||||
"Logs": "Журналы",
|
||||
"MNMD Mode": "Режим MNMD",
|
||||
"MQTT": "MQTT",
|
||||
"MQTT_BROKER": "Брокер MQTT",
|
||||
"MQTT_KEEP_ALIVE_INTERVAL": "Интервал Keep Alive MQTT",
|
||||
"MQTT_PASSWORD": "Пароль MQTT",
|
||||
"MQTT_QOS": "QoS MQTT",
|
||||
"MQTT_QUEUE_DIR": "Каталог очереди MQTT",
|
||||
"MQTT_QUEUE_LIMIT": "Лимит очереди MQTT",
|
||||
"MQTT_RECONNECT_INTERVAL": "Интервал переподключения MQTT",
|
||||
"MQTT_TOPIC": "Тема MQTT",
|
||||
"MQTT_USERNAME": "Имя пользователя MQTT",
|
||||
"Main key ID (Transit key name). Use business-related readable ID.": "ID основного ключа (имя ключа Transit). Используйте читаемый ID, связанный с бизнесом.",
|
||||
"Make sure the server address is accessible from your network": "Убедитесь, что адрес сервера доступен из вашей сети",
|
||||
"Manage how RustFS connects to your external key management service.": "Управляйте тем, как RustFS подключается к вашей внешней службе управления ключами.",
|
||||
"Master Key": "Мастер-ключ",
|
||||
"Master Key (CMK)": "Мастер-ключ (CMK)",
|
||||
"Master Keys (CMK)": "Мастер-ключи (CMK)",
|
||||
"Max 50TB": "Макс 50TB",
|
||||
"Members": "Участники",
|
||||
"Memory Critical": "Критическая память",
|
||||
"Memory High": "Высокая память",
|
||||
"Memory Low": "Низкая память",
|
||||
"Memory Medium": "Средняя память",
|
||||
"Memory Usage": "Использование памяти",
|
||||
"Memory Warning": "Предупреждение памяти",
|
||||
"Metrics": "Метрики",
|
||||
"Minio": "Minio",
|
||||
"Mode": "Режим",
|
||||
"Monday": "Понедельник",
|
||||
"Monitor overall storage usage and recent scanner activity at a glance.": "Отслеживайте общее использование хранилища и недавнюю активность сканера с первого взгляда.",
|
||||
"More Configurations": "Больше конфигураций",
|
||||
"Multi-Cloud Storage": "Мультиоблачное хранилище",
|
||||
"Multipart Upload": "Многокомпонентная загрузка",
|
||||
"Name": "Имя",
|
||||
"Name Placeholder": "Please enter {type} name",
|
||||
"Need help?": "Нужна помощь?",
|
||||
"Network": "Сеть",
|
||||
"New File": "Новый файл",
|
||||
"New Folder": "Новая папка",
|
||||
"New Form": "New {type}",
|
||||
"New Password": "Новый пароль",
|
||||
"New Secret Key": "Новый секретный ключ",
|
||||
"New Policy": "Новая политика",
|
||||
"New user has been created": "Новый пользователь создан",
|
||||
"Next": "Следующий",
|
||||
"Next Page": "Следующая страница",
|
||||
"No": "Нет",
|
||||
"No Access Keys": "Нет ключей доступа",
|
||||
"No Buckets": "Нет бакетов",
|
||||
"No Data": "Нет данных",
|
||||
"No Destinations": "Нет назначений",
|
||||
"No KMS configuration found": "Конфигурация KMS не найдена",
|
||||
"No KMS keys found": "Ключи KMS не найдены",
|
||||
"No License": "Нет лицензии",
|
||||
"No Objects": "Нет объектов",
|
||||
"Show Deleted Objects": "Показать удаленные объекты",
|
||||
"No Policies": "Нет политик",
|
||||
"No Selection": "Нет выбора",
|
||||
"No Tasks": "Нет задач",
|
||||
"No Tiers": "Нет уровней",
|
||||
"No Versions": "Нет версий",
|
||||
"No bucket selected": "Бакет не выбран",
|
||||
"No buckets found": "Бакеты не найдены",
|
||||
"No buckets match your search": "Нет бакетов, соответствующих вашему поиску",
|
||||
"No status data available": "Данные о статусе недоступны",
|
||||
"No valid events found after conversion": "После преобразования не найдено действительных событий",
|
||||
"Non-current Version": "Не текущая версия",
|
||||
"Normal": "Нормальный",
|
||||
"Not Configured": "Не настроено",
|
||||
"Not configured": "Не настроено",
|
||||
"Not specified": "Не указано",
|
||||
"Note: AccessKey and SecretKey values are required for each site when adding or editing peer sites": "Примечание: значения AccessKey и SecretKey обязательны для каждого сайта при добавлении или редактировании одноранговых сайтов",
|
||||
"Notice": "Уведомление",
|
||||
"Number of retry attempts, default: 3": "Количество попыток повтора, по умолчанию: 3",
|
||||
"Object": "Объект",
|
||||
"Object Count": "Количество объектов",
|
||||
"Object Detail Description": "Подробное описание объекта",
|
||||
"Object Details": "Детали объекта",
|
||||
"Object Lock": "Блокировка объекта",
|
||||
"Object Name": "Имя объекта",
|
||||
"Object Repair": "Ремонт объекта",
|
||||
"Object Sharing": "Общий доступ к объекту",
|
||||
"Object Size": "Размер объекта",
|
||||
"Object Tags": "Теги объекта",
|
||||
"Object Type": "Тип объекта",
|
||||
"Object Version": "Версия объекта",
|
||||
"Object Versions": "Версии объекта",
|
||||
"Object lock is not enabled, cannot set retention": "Блокировка объекта не включена, невозможно установить удержание",
|
||||
"Objects": "Объекты",
|
||||
"Off": "Выключено",
|
||||
"Offline": "Офлайн",
|
||||
"On": "Включено",
|
||||
"On-site Deployment": "Развертывание на месте",
|
||||
"On-site Technical Service": "Техническое обслуживание на месте",
|
||||
"One-hour Response": "Ответ в течение часа",
|
||||
"Online": "Онлайн",
|
||||
"Only ZIP files are supported, and file size should not exceed 10MB": "Поддерживаются только ZIP-файлы, размер файла не должен превышать 10MB",
|
||||
"Overwrite Warning": "Предупреждение о перезаписи",
|
||||
"Page will refresh automatically after saving configuration": "Страница автоматически обновится после сохранения конфигурации",
|
||||
"Page {current} of {total}": "Страница {current} из {total}",
|
||||
"Password": "Пароль",
|
||||
"Pause": "Пауза",
|
||||
"Paused": "Приостановлено",
|
||||
"Paused (with count)": "Paused({count})",
|
||||
"paused": "Приостановлено",
|
||||
"Pending": "Pending({count})",
|
||||
"Pending Deletion": "Ожидает удаления",
|
||||
"Performance": "Производительность",
|
||||
"Platinum Service": "Платиновое обслуживание",
|
||||
"Please Enter storage class": "Please Enter storage class(e.g., STANDARD, IA, GLACIER)",
|
||||
"Please configure your RustFS server address": "Настройте адрес сервера RustFS",
|
||||
"Please enter": "Введите",
|
||||
"Please enter Access Key": "Введите ключ доступа",
|
||||
"Please enter STS key": "Введите ключ STS",
|
||||
"Please enter STS session token": "Введите токен сессии STS",
|
||||
"Please enter STS username": "Введите имя пользователя STS",
|
||||
"Please enter Secret Key": "Введите секретный ключ",
|
||||
"Please enter Vault server address": "Введите адрес сервера Vault",
|
||||
"Please enter Vault token": "Введите токен Vault",
|
||||
"Please enter account": "Введите учетную запись",
|
||||
"Please enter both Role ID and Secret ID": "Введите ID роли и секретный ID",
|
||||
"Please enter bucket": "Введите бакет",
|
||||
"Please enter current password": "Введите текущий пароль",
|
||||
"Please enter default key ID": "Введите ID ключа по умолчанию",
|
||||
"Please enter endpoint": "Введите конечную точку",
|
||||
"Please enter key": "Введите ключ",
|
||||
"Please enter key name": "Введите имя ключа",
|
||||
"Please enter name": "Введите имя",
|
||||
"Please enter new password": "Введите новый пароль",
|
||||
"Please enter new password again": "Введите новый пароль еще раз",
|
||||
"Please enter password": "Введите пароль",
|
||||
"Please enter policy content": "Введите содержимое политики",
|
||||
"Please enter policy name": "Введите имя политики",
|
||||
"Please enter prefix": "Введите префикс",
|
||||
"Please enter region": "Введите регион",
|
||||
"Please enter rule name": "Введите имя правила",
|
||||
"Please enter server address": "Введите адрес сервера",
|
||||
"Please enter server address (e.g., http://localhost:9000)": "Введите адрес сервера (например, http://localhost:9000)",
|
||||
"Please enter storage class": "Введите класс хранилища",
|
||||
"Please enter suffix": "Введите суффикс",
|
||||
"Please enter tag value": "Введите значение тега",
|
||||
"Please enter user group name": "Введите имя группы пользователей",
|
||||
"Please enter username": "Введите имя пользователя",
|
||||
"Please enter valid days": "Введите действительные дни",
|
||||
"Please enter valid health check interval": "Введите действительный интервал проверки работоспособности",
|
||||
"Please fill in at least one configuration item": "Заполните хотя бы один элемент конфигурации",
|
||||
"Please fill in complete retention information": "Заполните полную информацию об удержании",
|
||||
"Please fill in complete tag information": "Заполните полную информацию о теге",
|
||||
"Please fill in the correct format": "Заполните в правильном формате",
|
||||
"Please provide credentials": "Предоставьте учетные данные",
|
||||
"Please select KMS key": "Выберите ключ KMS",
|
||||
"Please select a KMS key for SSE-KMS encryption": "Выберите ключ KMS для шифрования SSE-KMS",
|
||||
"Please select a ZIP file to import": "Выберите ZIP-файл для импорта",
|
||||
"Please select at least one event": "Выберите хотя бы одно событие",
|
||||
"Please select at least one item": "Выберите хотя бы один элемент",
|
||||
"Please select authentication method": "Выберите метод аутентификации",
|
||||
"Please select bucket": "Выберите бакет",
|
||||
"Please select encryption type": "Выберите тип шифрования",
|
||||
"Please select event target type": "Выберите тип назначения события",
|
||||
"Please select expiration date": "Выберите дату истечения срока",
|
||||
"Please select expiry date": "Выберите дату истечения срока",
|
||||
"Please select policy": "Выберите политику",
|
||||
"Please select resource name": "Выберите имя ресурса",
|
||||
"Please select rule type": "Выберите тип правила",
|
||||
"Please select storage type": "Выберите тип хранилища",
|
||||
"Policies": "Политики",
|
||||
"Policy": "Политика",
|
||||
"Policy Content": "Содержимое политики",
|
||||
"Policy Name": "Имя политики",
|
||||
"Policy Original": "Оригинальная политика",
|
||||
"Policy format invalid": "Неверный формат политики",
|
||||
"Prefix": "Префикс",
|
||||
"Prev": "Предыдущий",
|
||||
"Preview": "Предварительный просмотр",
|
||||
"Preview unavailable": "Предварительный просмотр недоступен",
|
||||
"Previous Page": "Предыдущая страница",
|
||||
"Priority": "Приоритет",
|
||||
"Private": "Приватный",
|
||||
"Processing": "Обработка",
|
||||
"Processing (with count)": "Processing({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Публичный",
|
||||
"Public, Private, Custom": "Публичный, Приватный, Пользовательский",
|
||||
"Read/Write Performance": "Производительность чтения/записи",
|
||||
"Reading Folder Files": "Чтение файлов папки",
|
||||
"Ready to import: {filename}": "Готово к импорту: {filename}",
|
||||
"Real-time status of cluster servers and backend storage devices.": "Статус в реальном времени серверов кластера и устройств хранения бэкенда.",
|
||||
"Reduced Redundancy Parity": "Парность с уменьшенной избыточностью",
|
||||
"Reed-Solomon Matrix": "Матрица Рида-Соломона",
|
||||
"Refresh": "Обновить",
|
||||
"Region": "Регион",
|
||||
"Reliable distributed file system": "Надежная распределенная файловая система",
|
||||
"Remaining (3TB)": "Осталось (3TB)",
|
||||
"Remote Site": "Удаленный сайт",
|
||||
"Remote Technical Support": "Удаленная техническая поддержка",
|
||||
"Remote Tiering": "Удаленное многоуровневое хранение",
|
||||
"Remove": "Удалить",
|
||||
"Remove Encryption": "Удалить шифрование",
|
||||
"Replicate Delete Markers": "Реплицировать маркеры удаления",
|
||||
"Replicate Existing Objects": "Реплицировать существующие объекты",
|
||||
"Request timeout in seconds, default: 30": "Таймаут запроса в секундах, по умолчанию: 30",
|
||||
"Required: Vault authentication token": "Обязательно: токен аутентификации Vault",
|
||||
"Reset": "Сброс",
|
||||
"Reset to Default": "Сбросить на значения по умолчанию",
|
||||
"Reset to default successfully": "Успешно сброшено на значения по умолчанию",
|
||||
"Response Level": "Уровень ответа",
|
||||
"Resume": "Возобновить",
|
||||
"Retention": "Удержание",
|
||||
"Retention Mode": "Режим",
|
||||
"Retention Period": "Период удержания",
|
||||
"Retention RetainUntilDate": "Удержание до даты",
|
||||
"Retention Save Failed": "Ошибка сохранения удержания",
|
||||
"Retention Unit": "Единица удержания",
|
||||
"Retry Attempts": "Попытки повтора",
|
||||
"Role ID": "ID роли",
|
||||
"Rows per page": "Строк на странице",
|
||||
"Rule ID": "ID правила",
|
||||
"Running": "Запущен",
|
||||
"Running (Unhealthy)": "Запущен (неисправен)",
|
||||
"Rust-based": "На основе Rust",
|
||||
"RustFS": "RustFS",
|
||||
"RustFS built-in cold storage": "Встроенное холодное хранилище RustFS",
|
||||
"RustyVault Encryption": "Шифрование RustyVault",
|
||||
"S3 Compatibility": "Совместимость с S3",
|
||||
"S3 Compatible": "Совместим с S3",
|
||||
"S3 Endpoint": "Конечная точка S3",
|
||||
"S3 Region": "Регион S3",
|
||||
"SDK Support": "Поддержка SDK",
|
||||
"SNMD Mode": "Режим SNMD",
|
||||
"SNND Mode": "Режим SNND",
|
||||
"SSE Settings": "Настройки SSE",
|
||||
"STS Key": "Ключ STS",
|
||||
"STS Login": "Вход STS",
|
||||
"STS Session Token": "Токен сессии STS",
|
||||
"STS Username": "Имя пользователя STS",
|
||||
"Saturday": "Суббота",
|
||||
"Save": "Сохранить",
|
||||
"Save Configuration": "Сохранить конфигурацию",
|
||||
"Save Failed": "Ошибка сохранения",
|
||||
"Save failed": "Ошибка сохранения",
|
||||
"Saved": "Сохранено",
|
||||
"Scalability": "Масштабируемость",
|
||||
"Search": "Поиск",
|
||||
"Search Access Key": "Поиск ключа доступа",
|
||||
"Search Access User": "Поиск пользователя доступа",
|
||||
"Search Account": "Поиск учетной записи",
|
||||
"Search Group": "Поиск группы",
|
||||
"Search Policy": "Поиск политики",
|
||||
"Search User": "Поиск пользователя",
|
||||
"Search User Group": "Поиск группы пользователей",
|
||||
"Search buckets...": "Поиск бакетов...",
|
||||
"Secret ID": "Секретный ID",
|
||||
"Secret Key": "Секретный ключ",
|
||||
"Secret Key *": "Секретный ключ *",
|
||||
"Secret Key is required": "Секретный ключ обязателен",
|
||||
"Secret Key length must be between 8 and 40 characters": "Длина секретного ключа должна быть от 8 до 40 символов",
|
||||
"Secure & Reliable": "Безопасный и надежный",
|
||||
"Secure Transport": "Безопасный транспорт",
|
||||
"Select File": "Выбрать файл",
|
||||
"Select Folder": "Выбрать папку",
|
||||
"Select Group": "Выбрать группу",
|
||||
"Select KMS key": "Выбрать ключ KMS",
|
||||
"Select encryption algorithm": "Выбрать алгоритм шифрования",
|
||||
"Select encryption type": "Выбрать тип шифрования",
|
||||
"Select events": "Выбрать события",
|
||||
"Select the KMS key to use for encryption": "Выберите ключ KMS для использования при шифровании",
|
||||
"Select user group members": "Выбрать участников группы пользователей",
|
||||
"Select user group policies": "Выбрать политики группы пользователей",
|
||||
"Selected Type": "Выбранный тип",
|
||||
"Send events via MQTT broker": "Отправлять события через брокер MQTT",
|
||||
"Server Address": "Адрес сервера",
|
||||
"Server Configuration": "Конфигурация сервера",
|
||||
"Server Host": "Хост сервера",
|
||||
"Server Information": "Информация о сервере",
|
||||
"Server List": "Список серверов",
|
||||
"Server configuration saved successfully": "Конфигурация сервера успешно сохранена",
|
||||
"Server-Side Encryption (SSE) Configuration": "Конфигурация шифрования на стороне сервера (SSE)",
|
||||
"Servers": "Серверы",
|
||||
"Service Email": "Электронная почта службы",
|
||||
"Service Hotline": "Горячая линия службы",
|
||||
"Service Status": "Статус службы",
|
||||
"Set Policy": "Установить политику",
|
||||
"Set Retention": "Установить удержание",
|
||||
"Set Tag": "Установить тег",
|
||||
"Set Tags": "Установить теги",
|
||||
"Set the prefix for the rule": "Установить префикс для правила",
|
||||
"Set the time cycle for the rule": "Установить временной цикл для правила",
|
||||
"Settings": "Настройки",
|
||||
"Single Machine Multiple Disks": "Одна машина несколько дисков",
|
||||
"Single Object": "Один объект",
|
||||
"Site Name": "Имя сайта",
|
||||
"Site Replication": "Репликация сайта",
|
||||
"Size": "Размер",
|
||||
"Skip": "Пропустить",
|
||||
"Sort by": "Сортировать по",
|
||||
"Standard AWS S3 tier": "Стандартный уровень AWS S3",
|
||||
"Standard Storage Parity": "Стандартная парность хранилища",
|
||||
"Start KMS": "Запустить KMS",
|
||||
"Start Upload": "Начать загрузку",
|
||||
"Status": "Статус",
|
||||
"Status refreshed successfully": "Статус успешно обновлен",
|
||||
"Stop KMS": "Остановить KMS",
|
||||
"Storage Class": "Класс хранилища",
|
||||
"Storage Space": "Пространство хранилища",
|
||||
"Storage Type": "Тип хранилища",
|
||||
"Storage Usage Statistics": "Статистика использования хранилища",
|
||||
"Submit": "Отправить",
|
||||
"Subscribe to event notification": "Подписаться на уведомления о событиях",
|
||||
"Success Status": "Success",
|
||||
"success": "Success",
|
||||
"Suffix": "Суффикс",
|
||||
"Sunday": "Воскресенье",
|
||||
"Support Level": "Уровень поддержки",
|
||||
"Supported": "Поддерживается",
|
||||
"Supported CPU Architecture": "Поддерживаемая архитектура CPU",
|
||||
"Supported OS": "Поддерживаемая ОС",
|
||||
"Supports Erasure Coding": "Поддерживает кодирование стирания",
|
||||
"Supports HTTPS, TLS": "Поддерживает HTTPS, TLS",
|
||||
"Supports high concurrency operations": "Поддерживает операции с высокой параллельностью",
|
||||
"Supports managing multiple storage disks on a single server to improve storage resource utilization and simplify management and maintenance": "Поддерживает управление несколькими дисками хранения на одном сервере для улучшения использования ресурсов хранения и упрощения управления и обслуживания",
|
||||
"Sync": "Синхронизировать",
|
||||
"Sync delete markers to destination bucket.": "Синхронизировать маркеры удаления с бакетом назначения.",
|
||||
"Synchronous": "Синхронный",
|
||||
"Tag": "Тег",
|
||||
"Tag Delete Failed": "Tag delete failed: {error}",
|
||||
"Tag Key": "Ключ тега",
|
||||
"Tag Key Placeholder": "Заполнитель ключа тега",
|
||||
"Tag Name": "Имя тега",
|
||||
"Tag Update Failed": "Ошибка обновления тега",
|
||||
"Tag Update Success": "Обновление тега успешно",
|
||||
"Tag Value": "Значение тега",
|
||||
"Tag Value Placeholder": "Заполнитель значения тега",
|
||||
"Tags": "Теги",
|
||||
"Target Bucket": "Бакет назначения",
|
||||
"Task Completed": "Задача завершена",
|
||||
"Task Management": "Управление задачами",
|
||||
"Technical Parameters": "Технические параметры",
|
||||
"Technical Training": "Техническое обучение",
|
||||
"Temporary URL": "Временный URL",
|
||||
"Temporary URL Expiration": "Истечение срока действия временного URL",
|
||||
"Generate URL": "Сгенерировать URL",
|
||||
"URL generated successfully": "URL успешно сгенерирован",
|
||||
"Failed to generate URL": "Не удалось сгенерировать URL",
|
||||
"Total Duration": "Общая продолжительность",
|
||||
"Minutes": "Минуты",
|
||||
"Hours": "Часы",
|
||||
"Days": "Дни",
|
||||
"Minutes must be between 0 and 59": "Минуты должны быть от 0 до 59",
|
||||
"Hours must be between 0 and 23": "Часы должны быть от 0 до 23",
|
||||
"Hours must be between 0 and 24 when days is 0": "Часы должны быть от 0 до 24, когда дни равны 0",
|
||||
"Days must be between 0 and 7": "Дни должны быть от 0 до 7",
|
||||
"Total duration cannot exceed 7 days": "Общая продолжительность не может превышать 7 дней",
|
||||
"Please enter a valid expiration time": "Введите действительное время истечения срока",
|
||||
"The exported file contains sensitive information. Please keep it secure.": "Экспортированный файл содержит конфиденциальную информацию. Храните его в безопасности.",
|
||||
"The two passwords are inconsistent": "Два пароля не совпадают",
|
||||
"This action cannot be undone and will bypass the normal deletion process.": "Это действие нельзя отменить, и оно обойдет обычный процесс удаления.",
|
||||
"This action cannot be undone.": "Это действие нельзя отменить.",
|
||||
"Thursday": "Четверг",
|
||||
"Tier": "Уровень",
|
||||
"Tier Type": "Тип уровня",
|
||||
"Tiered Storage": "Многоуровневое хранилище",
|
||||
"Tiering Transfer": "Передача многоуровневого хранения",
|
||||
"Tiers": "Уровни",
|
||||
"Time Cycle": "Временной цикл",
|
||||
"Timeout": "Таймаут",
|
||||
"Timeout (seconds)": "Таймаут (секунды)",
|
||||
"Token": "Токен",
|
||||
"Top-level encryption keys used to encrypt data keys. Managed by KMS and never leave the system.": "Ключи шифрования верхнего уровня, используемые для шифрования ключей данных. Управляются KMS и никогда не покидают систему.",
|
||||
"Total": "Всего",
|
||||
"Total Capacity": "Общая емкость",
|
||||
"Total Files": "Всего файлов",
|
||||
"Total Requests": "Всего запросов",
|
||||
"Transit Mount": "Монтирование Transit",
|
||||
"Transit Mount Path": "Путь монтирования Transit",
|
||||
"Transit engine mount path, default: transit": "Путь монтирования механизма Transit, по умолчанию: transit",
|
||||
"Transition": "Переход",
|
||||
"Trigger custom HTTP endpoints": "Активировать пользовательские HTTP конечные точки",
|
||||
"Try adjusting your search terms": "Попробуйте изменить условия поиска",
|
||||
"Tuesday": "Вторник",
|
||||
"Type": "Тип",
|
||||
"Understanding Key Types": "Понимание типов ключей",
|
||||
"Unknown": "Неизвестно",
|
||||
"Unknown Folder": "Неизвестная папка",
|
||||
"Unlimited": "Неограниченно",
|
||||
"Update Failed": "Ошибка обновления",
|
||||
"Update Key": "Обновить ключ",
|
||||
"Update License": "Обновить лицензию",
|
||||
"Update Success": "Обновление успешно",
|
||||
"Update failed": "Ошибка обновления",
|
||||
"Updated successfully": "Успешно обновлено",
|
||||
"Upload": "Загрузить",
|
||||
"Upload File": "Загрузить файл",
|
||||
"Upload files or create folders to populate this bucket.": "Загрузите файлы или создайте папки для заполнения этого бакета.",
|
||||
"Uploading Status": "Статус загрузки",
|
||||
"Uptime": "Время работы",
|
||||
"Usage Report": "Отчет об использовании",
|
||||
"Use AppRole authentication": "Использовать аутентификацию AppRole",
|
||||
"Use Main Account Policy": "Использовать политику основной учетной записи",
|
||||
"Use TLS": "Использовать TLS",
|
||||
"Use Vault token for authentication": "Использовать токен Vault для аутентификации",
|
||||
"Use main account policy": "Использовать политику основной учетной записи",
|
||||
"Used": "Использовано",
|
||||
"Used (7TB)": "Использовано (7TB)",
|
||||
"Used Capacity": "Использованная емкость",
|
||||
"User Groups": "Группы пользователей",
|
||||
"User Name": "Имя пользователя",
|
||||
"Users": "Пользователи",
|
||||
"Validity": "Действительность",
|
||||
"Vault Server": "Сервер Vault",
|
||||
"Vault Server Address": "Адрес сервера Vault",
|
||||
"Vault Token": "Токен Vault",
|
||||
"Version": "Версия",
|
||||
"Version 2.0, January 2004": "Версия 2.0, январь 2004",
|
||||
"Version Control": "Контроль версий",
|
||||
"VersionId": "ID версии",
|
||||
"Versions": "Версии",
|
||||
"View Documentation": "Просмотр документации",
|
||||
"Virtualization Platform Support": "Поддержка платформы виртуализации",
|
||||
"Visit website": "Посетить веб-сайт",
|
||||
"WARNING: This will immediately delete the key": "ПРЕДУПРЕЖДЕНИЕ: Это немедленно удалит ключ",
|
||||
"WEBHOOK_AUTH_TOKEN": "Токен аутентификации Webhook",
|
||||
"WEBHOOK_ENDPOINT": "Конечная точка Webhook",
|
||||
"WEBHOOK_QUEUE_DIR": "Каталог очереди Webhook",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Лимит очереди Webhook",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Ожидание",
|
||||
"waiting": "Ожидание",
|
||||
"Warning": "Предупреждение",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Среда",
|
||||
"Weekly MB/s Change Trend": "Тенденция изменения еженедельного MB/s",
|
||||
"X-Amz-Algorithm": "X-Amz-Algorithm",
|
||||
"X-Amz-Content-Sha256": "X-Amz-Content-Sha256",
|
||||
"X-Amz-Credential": "X-Amz-Credential",
|
||||
"X-Amz-Date": "X-Amz-Date",
|
||||
"X-Amz-Expires": "X-Amz-Expires",
|
||||
"X-Amz-Security-Token": "X-Amz-Security-Token",
|
||||
"X-Amz-Signature": "X-Amz-Signature",
|
||||
"X-Amz-SignedHeaders": "X-Amz-SignedHeaders",
|
||||
"X-Amz-Target": "X-Amz-Target",
|
||||
"YEARS": "ГОДЫ",
|
||||
"YYYY-MM-DD": "ГГГГ-ММ-ДД",
|
||||
"YYYY-MM-DD HH:mm": "ГГГГ-ММ-ДД ЧЧ:мм",
|
||||
"YYYY-MM-DD HH:mm:ss": "ГГГГ-ММ-ДД ЧЧ:мм:сс",
|
||||
"YYYY-MM-DDTHH:mm": "ГГГГ-ММ-ДДТЧЧ:мм",
|
||||
"Year": "Год",
|
||||
"Yes": "Да",
|
||||
"Your browser does not support the audio tag": "Ваш браузер не поддерживает тег audio",
|
||||
"Your browser does not support the video tag": "Ваш браузер не поддерживает тег video",
|
||||
"a": "a",
|
||||
"animationComplete": "animationComplete",
|
||||
"animationStart": "animationStart",
|
||||
"button": "button",
|
||||
"change": "change",
|
||||
"changePoliciesSuccess": "changePoliciesSuccess",
|
||||
"close": "close",
|
||||
"content-length": "content-length",
|
||||
"div": "div",
|
||||
"e.g., app-default": "e.g., app-default",
|
||||
"e.g., https://vault.example.com:8200": "e.g., https://vault.example.com:8200",
|
||||
"en-US": "en-US",
|
||||
"notice": "notice",
|
||||
"password length cannot be less than 8 characters and greater than 16 characters": "Длина пароля не может быть менее 8 символов и более 16 символов",
|
||||
"plain": "plain",
|
||||
"preview": "preview",
|
||||
"refresh-parent": "refresh-parent",
|
||||
"rustfs-master": "rustfs-master",
|
||||
"rustfs/kms/keys": "rustfs/kms/keys",
|
||||
"s3fs": "s3fs",
|
||||
"saved": "saved",
|
||||
"search": "search",
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
"update:visible": "update:visible",
|
||||
"username length cannot be less than 8 characters and greater than 16 characters": "Длина имени пользователя не может быть менее 8 символов и более 16 символов",
|
||||
"Validation failed": "Проверка не удалась",
|
||||
"API request failed": "Ошибка запроса API",
|
||||
"Operation failed": "Операция не удалась",
|
||||
"Create a user to get started": "Создайте пользователя, чтобы начать",
|
||||
"Get Notification Config Failed": "Ошибка получения конфигурации уведомлений",
|
||||
"empty is indicates permanent validity": "Пустое значение указывает на постоянную действительность",
|
||||
"Create user groups to organize permissions": "Создайте группы пользователей для организации разрешений",
|
||||
"Filter From This Page": "Фильтровать с этой страницы"
|
||||
}
|
||||
+13
-6
@@ -111,6 +111,7 @@
|
||||
"Cache time-to-live in seconds, default: 600": "Cache time-to-live in seconds, default: 600",
|
||||
"Cancel": "İptal",
|
||||
"Canceled": "İptal Edildi",
|
||||
"canceled": "İptal Edildi",
|
||||
"Cannot Preview": "Bu nesne içeriği önizlenemiyor (MIME türü: {contentType}), lütfen görüntülemek için indirin",
|
||||
"Change Password": "Change Password",
|
||||
"Change Secret Key": "Change Secret Key",
|
||||
@@ -251,7 +252,8 @@
|
||||
"Exporting...": "Dışa Aktarılıyor...",
|
||||
"External MinIO tier": "External MinIO tier",
|
||||
"Failed": "Başarısız({count})",
|
||||
"Failed Status": "Başarılı Durum",
|
||||
"failed": "Başarısız",
|
||||
"Failed Status": "Başarısız",
|
||||
"Failed to clear cache": "Failed to clear cache",
|
||||
"Failed to configure bucket encryption": "Failed to configure bucket encryption",
|
||||
"Failed to create event target": "Etkinlik hedefi oluşturulamadı",
|
||||
@@ -314,7 +316,8 @@
|
||||
"Import Success": "Import Success",
|
||||
"Import/Export": "İçe/Dışa Aktar",
|
||||
"Importing...": "İçe Aktarılıyor...",
|
||||
"In Progress": "{total} görev devam ediyor ({deleting} siliniyor, {completed} tamamlandı)",
|
||||
"In Progress": "{total} görev devam ediyor ({processing} işleniyor, {completed} tamamlandı)",
|
||||
"in progress": "Devam Ediyor",
|
||||
"Inactive": "Pasif",
|
||||
"Include objects that already exist in the source bucket.": "Include objects that already exist in the source bucket.",
|
||||
"Infinite Scaling": "Sınırsız Ölçeklendirme",
|
||||
@@ -491,7 +494,9 @@
|
||||
"Page {current} of {total}": "{total} sayfadan {current}. sayfa",
|
||||
"Password": "Şifre",
|
||||
"Pause": "Duraklat",
|
||||
"Paused": "Duraklatıldı({count})",
|
||||
"Paused": "Duraklatıldı",
|
||||
"Paused (with count)": "Duraklatıldı({count})",
|
||||
"paused": "Duraklatıldı",
|
||||
"Pending": "Beklemede({count})",
|
||||
"Pending Deletion": "Silme Bekliyor",
|
||||
"Performance": "Performans",
|
||||
@@ -565,7 +570,8 @@
|
||||
"Previous Page": "Önceki Sayfa",
|
||||
"Priority": "Öncelik",
|
||||
"Private": "Özel",
|
||||
"Processing": "İşleniyor({count})",
|
||||
"Processing": "İşleniyor",
|
||||
"Processing (with count)": "İşleniyor({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "Genel",
|
||||
"Public, Private, Custom": "Genel, Özel, Özelleştirme",
|
||||
@@ -694,7 +700,7 @@
|
||||
"Storage Usage Statistics": "Depolama Kullanım İstatistikleri",
|
||||
"Submit": "Gönder",
|
||||
"Subscribe to event notification": "Etkinlik bildirimine abone ol",
|
||||
"Success Status": "Başarı Durumu",
|
||||
"success": "Başarılı",
|
||||
"Suffix": "Son Ek",
|
||||
"Sunday": "Pazar",
|
||||
"Support Level": "Destek Seviyesi",
|
||||
@@ -775,6 +781,7 @@
|
||||
"Update Success": "Güncelleme Başarılı",
|
||||
"Update failed": "Update failed",
|
||||
"Updated successfully": "Updated successfully",
|
||||
"Upload": "Yükle",
|
||||
"Upload File": "Dosya Yükle",
|
||||
"Upload files or create folders to populate this bucket.": "Upload files or create folders to populate this bucket.",
|
||||
"Uploading Status": "Yükleme Durumu",
|
||||
@@ -810,6 +817,7 @@
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhook Kuyruk Limiti",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "Bekliyor",
|
||||
"waiting": "Bekliyor",
|
||||
"Warning": "Uyarı",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "Çarşamba",
|
||||
@@ -857,7 +865,6 @@
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"success": "success",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
|
||||
+14
-7
@@ -111,6 +111,7 @@
|
||||
"Cache time-to-live in seconds, default: 600": "缓存生存时间(秒),默认:600",
|
||||
"Cancel": "取消",
|
||||
"Canceled": "已取消",
|
||||
"canceled": "已取消",
|
||||
"Cannot Preview": "无法预览该对象的内容(MIME类型:{contentType}),请下载查看",
|
||||
"Change Password": "更改密码",
|
||||
"Change Secret Key": "更改密钥",
|
||||
@@ -252,7 +253,8 @@
|
||||
"Exporting...": "导出中...",
|
||||
"External MinIO tier": "外部 MinIO 存储层",
|
||||
"Failed": "已失败({count})",
|
||||
"Failed Status": "上传失败",
|
||||
"Failed Status": "失败",
|
||||
"failed": "失败",
|
||||
"Failed to clear cache": "清除缓存失败",
|
||||
"Failed to configure bucket encryption": "配置存储桶加密失败",
|
||||
"Failed to create event target": "创建事件目标失败",
|
||||
@@ -315,7 +317,8 @@
|
||||
"Import Success": "导入成功",
|
||||
"Import/Export": "导入 / 导出",
|
||||
"Importing...": "导入中...",
|
||||
"In Progress": "{total} 任务进行中(进行中 {deleting} 个,已成功 {completed} 个)",
|
||||
"In Progress": "{total} 任务进行中(进行中 {processing} 个,已成功 {completed} 个)",
|
||||
"in progress": "进行中",
|
||||
"Inactive": "未激活",
|
||||
"Include objects that already exist in the source bucket.": "包含源存储桶中已存在的对象。",
|
||||
"Infinite Scaling": "无限扩容",
|
||||
@@ -492,7 +495,9 @@
|
||||
"Page {current} of {total}": "第 {current} 页,共 {total} 页",
|
||||
"Password": "密码",
|
||||
"Pause": "暂停",
|
||||
"Paused": "已暂停({count})",
|
||||
"Paused": "已暂停",
|
||||
"Paused (with count)": "已暂停({count})",
|
||||
"paused": "已暂停",
|
||||
"Pending": "待处理({count})",
|
||||
"Pending Deletion": "删除中",
|
||||
"Performance": "性能",
|
||||
@@ -566,7 +571,8 @@
|
||||
"Previous Page": "上一页",
|
||||
"Priority": "优先级",
|
||||
"Private": "私有",
|
||||
"Processing": "进行中({count})",
|
||||
"Processing": "进行中",
|
||||
"Processing (with count)": "进行中({count})",
|
||||
"Prometheus": "Prometheus",
|
||||
"Public": "公有",
|
||||
"Public, Private, Custom": "公共、私有、自定义",
|
||||
@@ -695,7 +701,7 @@
|
||||
"Storage Usage Statistics": "存储使用统计",
|
||||
"Submit": "提交",
|
||||
"Subscribe to event notification": "订阅事件通知",
|
||||
"Success Status": "上传成功",
|
||||
"success": "成功",
|
||||
"Suffix": "后缀",
|
||||
"Sunday": "星期日",
|
||||
"Support Level": "支持级别",
|
||||
@@ -775,6 +781,7 @@
|
||||
"Update Success": "更新成功",
|
||||
"Update failed": "更新失败",
|
||||
"Updated successfully": "更新成功",
|
||||
"Upload": "上传",
|
||||
"Upload File": "上传文件",
|
||||
"Upload files or create folders to populate this bucket.": "上传文件或创建文件夹以填充此存储桶。",
|
||||
"Uploading Status": "上传中",
|
||||
@@ -809,7 +816,8 @@
|
||||
"WEBHOOK_QUEUE_DIR": "Webhook 队列目录",
|
||||
"WEBHOOK_QUEUE_LIMIT": "Webhook 队列限制",
|
||||
"WORM": "WORM",
|
||||
"Waiting": "等待上传",
|
||||
"Waiting": "等待中",
|
||||
"waiting": "等待中",
|
||||
"Warning": "警告",
|
||||
"Webhook": "Webhook",
|
||||
"Wednesday": "星期三",
|
||||
@@ -857,7 +865,6 @@
|
||||
"secret": "secret",
|
||||
"sha256": "sha256",
|
||||
"submit": "submit",
|
||||
"success": "success",
|
||||
"transit": "transit",
|
||||
"update:name": "update:name",
|
||||
"update:show": "update:show",
|
||||
|
||||
+50
-8
@@ -74,6 +74,30 @@ export default defineNuxtConfig({
|
||||
name: 'English',
|
||||
file: 'en-US.json',
|
||||
},
|
||||
{
|
||||
code: 'zh',
|
||||
iso: 'zh-CN',
|
||||
name: '中文',
|
||||
file: 'zh-CN.json',
|
||||
},
|
||||
{
|
||||
code: 'ja',
|
||||
iso: 'ja-JP',
|
||||
name: '日本語',
|
||||
file: 'ja-JP.json',
|
||||
},
|
||||
{
|
||||
code: 'ko',
|
||||
iso: 'ko-KR',
|
||||
name: '한국어',
|
||||
file: 'ko-KR.json',
|
||||
},
|
||||
{
|
||||
code: 'de',
|
||||
iso: 'de-DE',
|
||||
name: 'Deutsch',
|
||||
file: 'de-DE.json',
|
||||
},
|
||||
{
|
||||
code: 'fr',
|
||||
iso: 'fr-FR',
|
||||
@@ -81,16 +105,34 @@ export default defineNuxtConfig({
|
||||
file: 'fr-FR.json',
|
||||
},
|
||||
{
|
||||
code: 'tr',
|
||||
iso: 'tr-TR',
|
||||
name: 'Turkish',
|
||||
file: 'tr-TR.json',
|
||||
code: 'es',
|
||||
iso: 'es-ES',
|
||||
name: 'Español',
|
||||
file: 'es-ES.json',
|
||||
},
|
||||
{
|
||||
code: 'zh',
|
||||
iso: 'zh-CN',
|
||||
name: '中文',
|
||||
file: 'zh-CN.json',
|
||||
code: 'pt',
|
||||
iso: 'pt-BR',
|
||||
name: 'Português',
|
||||
file: 'pt-BR.json',
|
||||
},
|
||||
{
|
||||
code: 'it',
|
||||
iso: 'it-IT',
|
||||
name: 'Italiano',
|
||||
file: 'it-IT.json',
|
||||
},
|
||||
{
|
||||
code: 'ru',
|
||||
iso: 'ru-RU',
|
||||
name: 'Русский',
|
||||
file: 'ru-RU.json',
|
||||
},
|
||||
{
|
||||
code: 'tr',
|
||||
iso: 'tr-TR',
|
||||
name: 'Türkçe',
|
||||
file: 'tr-TR.json',
|
||||
},
|
||||
],
|
||||
langDir: 'locales',
|
||||
|
||||
@@ -82,6 +82,7 @@
|
||||
"@types/aws4": "^1.11.6",
|
||||
"@types/lodash": "^4.17.20",
|
||||
"@types/node-forge": "^1.3.12",
|
||||
"@vitalets/google-translate-api": "^9.2.1",
|
||||
"@vitest/coverage-v8": "^3.2.4",
|
||||
"@vitest/ui": "^3.2.4",
|
||||
"@vueuse/core": "^13.5.0",
|
||||
|
||||
Generated
+20
@@ -189,6 +189,9 @@ importers:
|
||||
'@types/node-forge':
|
||||
specifier: ^1.3.12
|
||||
version: 1.3.14
|
||||
'@vitalets/google-translate-api':
|
||||
specifier: ^9.2.1
|
||||
version: 9.2.1
|
||||
'@vitest/coverage-v8':
|
||||
specifier: ^3.2.4
|
||||
version: 3.2.4(vitest@3.2.4)
|
||||
@@ -2497,6 +2500,9 @@ packages:
|
||||
'@types/geojson@7946.0.16':
|
||||
resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==}
|
||||
|
||||
'@types/http-errors@1.8.2':
|
||||
resolution: {integrity: sha512-EqX+YQxINb+MeXaIqYDASb6U6FCHbWjkj4a1CKDBks3d/QiB2+PqBLyO72vLDgAO1wUI4O+9gweRcQK11bTL/w==}
|
||||
|
||||
'@types/istanbul-lib-coverage@2.0.6':
|
||||
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
|
||||
|
||||
@@ -2633,6 +2639,10 @@ packages:
|
||||
engines: {node: '>=18'}
|
||||
hasBin: true
|
||||
|
||||
'@vitalets/google-translate-api@9.2.1':
|
||||
resolution: {integrity: sha512-zlwQWSjXUZhbZQ6qwtIQ7GdYXFQmJ4wYqzcrYJUxtvzQQwUP+uKUb/SRJaBOQuBntjBjzcdcJoLFrpCKUbIkOg==}
|
||||
engines: {node: '>=14'}
|
||||
|
||||
'@vitejs/plugin-vue-jsx@5.1.1':
|
||||
resolution: {integrity: sha512-uQkfxzlF8SGHJJVH966lFTdjM/lGcwJGzwAHpVqAPDD/QcsqoUGa+q31ox1BrUfi+FLP2ChVp7uLXE3DkHyDdQ==}
|
||||
engines: {node: ^20.19.0 || >=22.12.0}
|
||||
@@ -9604,6 +9614,8 @@ snapshots:
|
||||
|
||||
'@types/geojson@7946.0.16': {}
|
||||
|
||||
'@types/http-errors@1.8.2': {}
|
||||
|
||||
'@types/istanbul-lib-coverage@2.0.6': {}
|
||||
|
||||
'@types/json-schema@7.0.15': {}
|
||||
@@ -9817,6 +9829,14 @@ snapshots:
|
||||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@vitalets/google-translate-api@9.2.1':
|
||||
dependencies:
|
||||
'@types/http-errors': 1.8.2
|
||||
http-errors: 2.0.0
|
||||
node-fetch: 2.7.0
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
|
||||
'@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
||||
dependencies:
|
||||
'@babel/core': 7.28.5
|
||||
|
||||
@@ -13,19 +13,12 @@ if ! pnpm install --frozen-lockfile --dry-run > /dev/null 2>&1; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Run Prettier format check (must pass)
|
||||
echo "🎨 Running Prettier format check..."
|
||||
pnpm prettier --check . || {
|
||||
echo "❌ Prettier format check failed"
|
||||
# Run lint check (TypeScript type check + Prettier format check) (must pass)
|
||||
echo "🔍 Running lint check (TypeScript + Prettier)..."
|
||||
pnpm run lint || {
|
||||
echo "❌ Lint check failed"
|
||||
echo " Run 'pnpm lint:fix' to auto-fix formatting issues"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Run TypeScript type check (must pass)
|
||||
echo "📘 Running TypeScript type check..."
|
||||
pnpm vue-tsc --noEmit || {
|
||||
echo "❌ TypeScript type check failed"
|
||||
echo " Fix all TypeScript errors before committing"
|
||||
echo " Fix any TypeScript errors manually"
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
|
||||
// 读取英文语言包
|
||||
const enPath = 'i18n/locales/en-US.json'
|
||||
const en = JSON.parse(fs.readFileSync(enPath, 'utf8'))
|
||||
const keys = Object.keys(en)
|
||||
|
||||
// 语言映射配置
|
||||
const languages = {
|
||||
'ja-JP': {
|
||||
name: '日语',
|
||||
translations: {},
|
||||
},
|
||||
'ko-KR': {
|
||||
name: '韩语',
|
||||
translations: {},
|
||||
},
|
||||
'de-DE': {
|
||||
name: '德语',
|
||||
translations: {},
|
||||
},
|
||||
'es-ES': {
|
||||
name: '西班牙语',
|
||||
translations: {},
|
||||
},
|
||||
'pt-BR': {
|
||||
name: '葡萄牙语',
|
||||
translations: {},
|
||||
},
|
||||
'it-IT': {
|
||||
name: '意大利语',
|
||||
translations: {},
|
||||
},
|
||||
'ru-RU': {
|
||||
name: '俄语',
|
||||
translations: {},
|
||||
},
|
||||
}
|
||||
|
||||
console.log(`开始翻译 ${keys.length} 个键到 ${Object.keys(languages).length} 种语言...`)
|
||||
|
||||
// 这里需要实际的翻译逻辑
|
||||
// 由于没有翻译API,我们先创建一个占位符结构
|
||||
// 实际翻译需要调用翻译服务或手动翻译
|
||||
|
||||
Object.keys(languages).forEach(locale => {
|
||||
const lang = languages[locale]
|
||||
console.log(`\n处理 ${lang.name} (${locale})...`)
|
||||
|
||||
keys.forEach(key => {
|
||||
// 暂时保持英文,实际应该调用翻译API
|
||||
lang.translations[key] = en[key]
|
||||
})
|
||||
|
||||
// 保存文件
|
||||
const filePath = `i18n/locales/${locale}.json`
|
||||
const content = JSON.stringify(lang.translations, null, 2) + '\n'
|
||||
fs.writeFileSync(filePath, content, 'utf8')
|
||||
console.log(`已保存 ${filePath}`)
|
||||
})
|
||||
|
||||
console.log('\n翻译完成!')
|
||||
+4
-19
@@ -1,15 +1,12 @@
|
||||
import type { SiteConfig } from '~/types/config'
|
||||
import { handleConfigError } from './error-handler'
|
||||
import { logger } from './logger'
|
||||
import {
|
||||
createDefaultConfig,
|
||||
getStoredHostConfig,
|
||||
fetchRawConfigFromServer,
|
||||
getCurrentBrowserConfig,
|
||||
getServerDefaultConfig,
|
||||
fetchConfigFromServer,
|
||||
fetchRawConfigFromServer,
|
||||
fetchVersionConfigFromServer,
|
||||
getStoredHostConfig,
|
||||
} from './config-helpers'
|
||||
import { handleConfigError } from './error-handler'
|
||||
import { logger } from './logger'
|
||||
|
||||
export interface RustFSConfig {
|
||||
serverHost: string
|
||||
@@ -67,18 +64,6 @@ export const configManager = {
|
||||
return null
|
||||
},
|
||||
|
||||
// 从服务器获取配置 (当前浏览器host:9001/config.json)
|
||||
async loadConfigFromServer(): Promise<SiteConfig | null> {
|
||||
try {
|
||||
const result = await fetchConfigFromServer()
|
||||
return result.config
|
||||
} catch (error) {
|
||||
const configError = handleConfigError(error, 'server config loading')
|
||||
logger.warn('Failed to load config from server:', configError.message)
|
||||
return null
|
||||
}
|
||||
},
|
||||
|
||||
// 加载配置:优先使用localStorage,然后尝试服务器配置,当前host,最后是runtimeconfig
|
||||
async loadConfig(): Promise<SiteConfig> {
|
||||
// 检查缓存
|
||||
|
||||
Reference in New Issue
Block a user