diff --git a/web/src/components/AppearanceSelect.tsx b/web/src/components/AppearanceSelect.tsx index 2cddf1f8..60e00aa8 100644 --- a/web/src/components/AppearanceSelect.tsx +++ b/web/src/components/AppearanceSelect.tsx @@ -15,11 +15,11 @@ const AppearanceSelect: FC = (props: Props) => { const { onChange, value, className } = props; const { t } = useTranslation(); - const getPrefixIcon = (apperance: Appearance) => { + const getPrefixIcon = (appearance: Appearance) => { const className = "w-4 h-auto"; - if (apperance === "light") { + if (appearance === "light") { return ; - } else if (apperance === "dark") { + } else if (appearance === "dark") { return ; } else { return ; @@ -43,7 +43,7 @@ const AppearanceSelect: FC = (props: Props) => { > {appearanceList.map((item) => ( ))} diff --git a/web/src/components/Settings/MemberSection.tsx b/web/src/components/Settings/MemberSection.tsx index 9daa9157..c9b45c15 100644 --- a/web/src/components/Settings/MemberSection.tsx +++ b/web/src/components/Settings/MemberSection.tsx @@ -101,7 +101,7 @@ const PreferencesSection = () => { const handleDeleteUserClick = (user: User) => { showCommonDialog({ title: `Delete Member`, - content: `Are you sure to delete ${user.username}? THIS ACTION IS IRREVERSIABLE.❗️`, + content: `Are you sure to delete ${user.username}? THIS ACTION IS IRREVERSIBLE.❗️`, style: "warning", dialogName: "delete-user-dialog", onConfirm: async () => { diff --git a/web/src/components/Settings/SSOSection.tsx b/web/src/components/Settings/SSOSection.tsx index 26d7b4a5..6a7fed6a 100644 --- a/web/src/components/Settings/SSOSection.tsx +++ b/web/src/components/Settings/SSOSection.tsx @@ -24,7 +24,7 @@ const SSOSection = () => { const handleDeleteIdentityProvider = async (identityProvider: IdentityProvider) => { showCommonDialog({ title: "Confirm delete", - content: "Are you sure to delete this SSO? THIS ACTION IS IRREVERSIABLE❗", + content: "Are you sure to delete this SSO? THIS ACTION IS IRREVERSIBLE❗", style: "warning", dialogName: "delete-identity-provider-dialog", onConfirm: async () => { diff --git a/web/src/locales/de.json b/web/src/locales/de.json index d281c084..ff333222 100644 --- a/web/src/locales/de.json +++ b/web/src/locales/de.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Über Memos", - "email": "E-Mail", - "password": "Passwort", - "repeat-password-short": "Wiederholen", - "repeat-password": "Wiederhole das Passwort", - "new-password": "Neues Passwort", - "repeat-new-password": "Neues Passwort wiederholen", - "username": "Nutzername", - "nickname": "Nickname", - "save": "Speichern", - "close": "Schließen", - "cancel": "Abbrechen", - "create": "Erstellen", - "change": "Ändern", - "confirm": "Bestätigen", - "reset": "Zurücksetzen", - "language": "Sprache", - "version": "Version", - "pin": "Anpinnen", - "unpin": "Pin lösen", - "edit": "Bearbeiten", - "restore": "Wiederherstellen", - "delete": "Löschen", - "null": "Null", - "share": "Teilen", - "archive": "Archivieren", - "basic": "Allgemeines", - "admin": "Administration", - "explore": "Erkunden", - "sign-in": "Anmelden", - "sign-up": "Registrieren", - "sign-out": "Abmelden", - "back-to-home": "Zurück zur Startseite", - "type": "Typ", - "shortcuts": "Verknüpfungen", - "title": "Titel", - "filter": "Filter", - "tags": "Tags", - "yourself": "Du selbst", - "archived-at": "Archiviert am", - "changed": "Verändert", - "update-on": "Verändert am", - "fold": "Einklappen", - "expand": "Erweitern", - "image": "Bild", - "link": "Link", - "vacuum": "Aufräumen", - "select": "Auswählen", - "avatar": "Avatar", - "database": "Database" - }, - "slogan": "Eine quelloffene, selbst gehostete Sammlung an Memos zur Wissensverwaltung und Vernetzung.", - "auth": { - "signup-as-host": "Als Host registrieren", - "host-tip": "Du registrierst dich als Host dieser Seite.", - "not-host-tip": "Kontaktiere den Host dieser Seite, wenn du noch kein Konto hast." - }, - "sidebar": { - "daily-review": "Tagesbilanz", - "resources": "Ressourcen", - "setting": "Einstellung", - "archived": "Archiviert" - }, - "daily-review": { - "oops-nothing": "Ups, hier ist nichts." - }, - "resources": { - "no-resources": "Keine Ressourcen.", - "fetching-data": "Lade Daten...", - "upload": "Hochladen", - "preview": "Vorschau", - "copy-link": "Link kopieren", - "delete-resource": "Ressource löschen", - "warning-text": "Möchtest du diese Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗", - "linked-amount": "Anzahl verlinkter Memos", - "rename": "Umbenennen", - "warning-text-unused": "Möchtest du diese ungenutzte Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗", - "no-unused-resources": "Keine ungenutzten Ressourcen", - "name": "Name", - "clear": "Clear", - "description": "View your static resources in memos. e.g. images" - }, - "archived": { - "archived-memos": "Archivierte Memos", - "no-archived-memos": "Keine archivierten Memos", - "fetching-data": "Lade Daten..." - }, - "editor": { - "cancel-edit": "Bearbeiten abbrechen", - "save": "Speichern", - "placeholder": "Ein Gedanke...", - "only-image-supported": "Nur Bilder werden unterstützt.", - "cant-empty": "Inhalt kann nicht leer sein", - "local": "Lokal", - "resources": "Ressourcen", - "editing": "Editing..." - }, - "memo": { - "view-detail": "Details anzeigen", - "copy": "Kopieren", - "visibility": { - "private": "Nur für dich sichtbar", - "protected": "Für Mitglieder sichtbar", - "public": "Für alle sichtbar", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "Lade Daten...", - "fetch-more": "Klicke hier, um mehr zu laden" - }, - "shortcut-list": { - "shortcut-title": "Titel der Verknüpfung", - "create-shortcut": "Verknüpfung erstellen", - "edit-shortcut": "Verknüpfung bearbeiten", - "fill-previous": "Bitte vorherigen Filterwert ausfüllen", - "title-required": "Titel wird benötigt", - "value-required": "Filterwert wird benötigt", - "eligible-memo": "eligible memo" - }, - "filter": { - "new-filter": "Neuer Filter", - "type": { - "tag": "Tag", - "type": "Typ", - "text": "Text", - "display-time": "angezeigte Zeit", - "visibility": "Sichtbarkeit" - }, - "operator": { - "contains": "enthält", - "not-contains": "enthält nicht", - "is": "ist", - "is-not": "ist nicht", - "before": "vor", - "after": "nach" - }, - "value": { - "not-tagged": "Keine Tags", - "linked": "Hat Links" - }, - "text-placeholder": "Beginne einen Regex mit ^" - }, - "tag-list": { - "tip-text": "Erstelle einen Tag mit `#tag`" - }, - "search": { - "quickly-filter": "Schnellfilter" - }, - "setting": { - "my-account": "Mein Konto", - "preference": "Einstellungen", - "member": "Mitglieder", - "member-list": "Mitgliederliste", - "system": "System", - "account-section": { - "title": "Konto-Informationen", - "update-information": "Informationen ändern", - "change-password": "Passwort ändern" - }, - "preference-section": { - "theme": "Erscheinungsbild", - "default-memo-visibility": "Standard Sichtbarkeit von Memos", - "enable-folding-memo": "Einklappen von Memos aktivieren", - "editor-font-style": "Textstil des Editors", - "mobile-editor-style": "Stil des mobilen Editors", - "default-memo-sort-option": "Angezeigter Memo-Zeitpunkt", - "created_ts": "Erstellungszeitpunkt", - "updated_ts": "Änderungszeitpunkt", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Mitglied hinzufügen" - }, - "system-section": { - "server-name": "Servername", - "customize-server": { - "title": "Server bearbeiten", - "default": "Standard: \"memos\"", - "icon-url": "Icon-URL" - }, - "database-file-size": "Dateigröße der Datenbank", - "allow-user-signup": "Erlaube Registrierung neuer Mitglieder", - "additional-style": "Zusätzlicher Stil", - "additional-script": "Zusätzliches Skript", - "additional-style-placeholder": "Zusätzliches CSS", - "additional-script-placeholder": "Zusätzliches JavaScript", - "disable-public-memos": "Disable public memos" - }, - "apperance-option": { - "system": "System", - "light": "Hell", - "dark": "Dunkel" - }, - "storage": "Storage", - "sso": "SSO", - "storage-section": { - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage" - } - }, - "amount-text": { - "memo_one": "MEMO", - "memo_other": "MEMOS", - "tag_one": "TAG", - "tag_other": "TAGS", - "day_one": "TAG", - "day_other": "TAGE" - }, - "message": { - "no-memos": "Keine Memos 🌃", - "memos-ready": "Alle Memos geladen 🎉", - "restored-successfully": "Erfolgreich wiederhergestellt", - "memo-updated-datetime": "Erstellungszeitpunkt geändert.", - "invalid-created-datetime": "Ungültiger Erstellungszeitpunkt", - "change-memo-created-time": "Erstellungszeitpunkt ändern", - "memo-not-found": "Memo nicht gefunden.", - "fill-all": "Bitte alle Felder ausfüllen.", - "password-not-match": "Passwörter stimmen nicht überein", - "new-password-not-match": "Neue Passwörter stimmen nicht überein.", - "image-load-failed": "Laden des Bildes fehlgeschlagen", - "fill-form": "Bitte das Formular ausfüllen", - "login-failed": "Anmeldung fehlgeschlagen", - "signup-failed": "Registrierung fehlgeschlagen", - "user-not-found": "Nutzer nicht gefunden", - "password-changed": "Passwort geändert", - "private-only": "Dieses Memo ist privat.", - "copied": "Kopiert", - "succeed-copy-content": "Inhalt erfolgreich kopiert", - "succeed-copy-link": "Link erfolgreich kopiert", - "change-resource-filename": "Dateinamen der Ressource ändern", - "resource-filename-updated": "Dateiname der Ressource geändert.", - "invalid-resource-filename": "Ungültiger Dateiname.", - "click-to-save-the-image": "Klicken um Bild zu speichern", - "generating-the-screenshot": "Erstelle Screenshot...", - "count-selected-resources": "Insgesamt markiert", - "too-short": "Zu kurz", - "too-long": "Zu lang", - "not-allow-space": "Keine Leerzeichen erlaubt", - "not-allow-chinese": "Keine chinesischen Zeichen erlaubt", - "succeed-vacuum-database": "Aufräumen der Datenbank erfolgreich", - "succeed-update-additional-style": "Zusätzlicher Stil wurde erfolgreich aktualisiert", - "succeed-copy-resource-link": "Link zur Ressource wurde erfolgreich kopiert", - "succeed-update-customized-profile": "Server-Einstlelungen wurden erfolgreich gespeichert", - "succeed-update-additional-script": "Zusätzliches Skript wurde erfolgreich aktualisiert", - "update-succeed": "Update erfolgreich", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Montag", - "mon": "Mo", - "tuesday": "Dienstag", - "tue": "Di", - "wednesday": "Mittwoch", - "wed": "Mi", - "thursday": "Donnerstag", - "thu": "Do", - "friday": "Freitag", - "fri": "Fr", - "saturday": "Samstag", - "sat": "Sa", - "sunday": "Sonntag", - "sun": "So" + "common": { + "about": "Über Memos", + "email": "E-Mail", + "password": "Passwort", + "repeat-password-short": "Wiederholen", + "repeat-password": "Wiederhole das Passwort", + "new-password": "Neues Passwort", + "repeat-new-password": "Neues Passwort wiederholen", + "username": "Nutzername", + "nickname": "Nickname", + "save": "Speichern", + "close": "Schließen", + "cancel": "Abbrechen", + "create": "Erstellen", + "change": "Ändern", + "confirm": "Bestätigen", + "reset": "Zurücksetzen", + "language": "Sprache", + "version": "Version", + "pin": "Anpinnen", + "unpin": "Pin lösen", + "edit": "Bearbeiten", + "restore": "Wiederherstellen", + "delete": "Löschen", + "null": "Null", + "share": "Teilen", + "archive": "Archivieren", + "basic": "Allgemeines", + "admin": "Administration", + "explore": "Erkunden", + "sign-in": "Anmelden", + "sign-up": "Registrieren", + "sign-out": "Abmelden", + "back-to-home": "Zurück zur Startseite", + "type": "Typ", + "shortcuts": "Verknüpfungen", + "title": "Titel", + "filter": "Filter", + "tags": "Tags", + "yourself": "Du selbst", + "archived-at": "Archiviert am", + "changed": "Verändert", + "update-on": "Verändert am", + "fold": "Einklappen", + "expand": "Erweitern", + "image": "Bild", + "link": "Link", + "vacuum": "Aufräumen", + "select": "Auswählen", + "avatar": "Avatar", + "database": "Database" + }, + "slogan": "Eine quelloffene, selbst gehostete Sammlung an Memos zur Wissensverwaltung und Vernetzung.", + "auth": { + "signup-as-host": "Als Host registrieren", + "host-tip": "Du registrierst dich als Host dieser Seite.", + "not-host-tip": "Kontaktiere den Host dieser Seite, wenn du noch kein Konto hast." + }, + "sidebar": { + "daily-review": "Tagesbilanz", + "resources": "Ressourcen", + "setting": "Einstellung", + "archived": "Archiviert" + }, + "daily-review": { + "oops-nothing": "Ups, hier ist nichts." + }, + "resources": { + "no-resources": "Keine Ressourcen.", + "fetching-data": "Lade Daten...", + "upload": "Hochladen", + "preview": "Vorschau", + "copy-link": "Link kopieren", + "delete-resource": "Ressource löschen", + "warning-text": "Möchtest du diese Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗", + "linked-amount": "Anzahl verlinkter Memos", + "rename": "Umbenennen", + "warning-text-unused": "Möchtest du diese ungenutzte Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗", + "no-unused-resources": "Keine ungenutzten Ressourcen", + "name": "Name", + "clear": "Clear", + "description": "View your static resources in memos. e.g. images" + }, + "archived": { + "archived-memos": "Archivierte Memos", + "no-archived-memos": "Keine archivierten Memos", + "fetching-data": "Lade Daten..." + }, + "editor": { + "cancel-edit": "Bearbeiten abbrechen", + "save": "Speichern", + "placeholder": "Ein Gedanke...", + "only-image-supported": "Nur Bilder werden unterstützt.", + "cant-empty": "Inhalt kann nicht leer sein", + "local": "Lokal", + "resources": "Ressourcen", + "editing": "Editing..." + }, + "memo": { + "view-detail": "Details anzeigen", + "copy": "Kopieren", + "visibility": { + "private": "Nur für dich sichtbar", + "protected": "Für Mitglieder sichtbar", + "public": "Für alle sichtbar", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "Lade Daten...", + "fetch-more": "Klicke hier, um mehr zu laden" + }, + "shortcut-list": { + "shortcut-title": "Titel der Verknüpfung", + "create-shortcut": "Verknüpfung erstellen", + "edit-shortcut": "Verknüpfung bearbeiten", + "fill-previous": "Bitte vorherigen Filterwert ausfüllen", + "title-required": "Titel wird benötigt", + "value-required": "Filterwert wird benötigt", + "eligible-memo": "eligible memo" + }, + "filter": { + "new-filter": "Neuer Filter", + "type": { + "tag": "Tag", + "type": "Typ", + "text": "Text", + "display-time": "angezeigte Zeit", + "visibility": "Sichtbarkeit" + }, + "operator": { + "contains": "enthält", + "not-contains": "enthält nicht", + "is": "ist", + "is-not": "ist nicht", + "before": "vor", + "after": "nach" + }, + "value": { + "not-tagged": "Keine Tags", + "linked": "Hat Links" + }, + "text-placeholder": "Beginne einen Regex mit ^" + }, + "tag-list": { + "tip-text": "Erstelle einen Tag mit `#tag`" + }, + "search": { + "quickly-filter": "Schnellfilter" + }, + "setting": { + "my-account": "Mein Konto", + "preference": "Einstellungen", + "member": "Mitglieder", + "member-list": "Mitgliederliste", + "system": "System", + "account-section": { + "title": "Konto-Informationen", + "update-information": "Informationen ändern", + "change-password": "Passwort ändern" + }, + "preference-section": { + "theme": "Erscheinungsbild", + "default-memo-visibility": "Standard Sichtbarkeit von Memos", + "enable-folding-memo": "Einklappen von Memos aktivieren", + "editor-font-style": "Textstil des Editors", + "mobile-editor-style": "Stil des mobilen Editors", + "default-memo-sort-option": "Angezeigter Memo-Zeitpunkt", + "created_ts": "Erstellungszeitpunkt", + "updated_ts": "Änderungszeitpunkt", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Mitglied hinzufügen" + }, + "system-section": { + "server-name": "Servername", + "customize-server": { + "title": "Server bearbeiten", + "default": "Standard: \"memos\"", + "icon-url": "Icon-URL" + }, + "database-file-size": "Dateigröße der Datenbank", + "allow-user-signup": "Erlaube Registrierung neuer Mitglieder", + "additional-style": "Zusätzlicher Stil", + "additional-script": "Zusätzliches Skript", + "additional-style-placeholder": "Zusätzliches CSS", + "additional-script-placeholder": "Zusätzliches JavaScript", + "disable-public-memos": "Disable public memos" + }, + "appearance-option": { + "system": "System", + "light": "Hell", + "dark": "Dunkel" + }, + "storage": "Storage", + "sso": "SSO", + "storage-section": { + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage" + } + }, + "amount-text": { + "memo_one": "MEMO", + "memo_other": "MEMOS", + "tag_one": "TAG", + "tag_other": "TAGS", + "day_one": "TAG", + "day_other": "TAGE" + }, + "message": { + "no-memos": "Keine Memos 🌃", + "memos-ready": "Alle Memos geladen 🎉", + "restored-successfully": "Erfolgreich wiederhergestellt", + "memo-updated-datetime": "Erstellungszeitpunkt geändert.", + "invalid-created-datetime": "Ungültiger Erstellungszeitpunkt", + "change-memo-created-time": "Erstellungszeitpunkt ändern", + "memo-not-found": "Memo nicht gefunden.", + "fill-all": "Bitte alle Felder ausfüllen.", + "password-not-match": "Passwörter stimmen nicht überein", + "new-password-not-match": "Neue Passwörter stimmen nicht überein.", + "image-load-failed": "Laden des Bildes fehlgeschlagen", + "fill-form": "Bitte das Formular ausfüllen", + "login-failed": "Anmeldung fehlgeschlagen", + "signup-failed": "Registrierung fehlgeschlagen", + "user-not-found": "Nutzer nicht gefunden", + "password-changed": "Passwort geändert", + "private-only": "Dieses Memo ist privat.", + "copied": "Kopiert", + "succeed-copy-content": "Inhalt erfolgreich kopiert", + "succeed-copy-link": "Link erfolgreich kopiert", + "change-resource-filename": "Dateinamen der Ressource ändern", + "resource-filename-updated": "Dateiname der Ressource geändert.", + "invalid-resource-filename": "Ungültiger Dateiname.", + "click-to-save-the-image": "Klicken um Bild zu speichern", + "generating-the-screenshot": "Erstelle Screenshot...", + "count-selected-resources": "Insgesamt markiert", + "too-short": "Zu kurz", + "too-long": "Zu lang", + "not-allow-space": "Keine Leerzeichen erlaubt", + "not-allow-chinese": "Keine chinesischen Zeichen erlaubt", + "succeed-vacuum-database": "Aufräumen der Datenbank erfolgreich", + "succeed-update-additional-style": "Zusätzlicher Stil wurde erfolgreich aktualisiert", + "succeed-copy-resource-link": "Link zur Ressource wurde erfolgreich kopiert", + "succeed-update-customized-profile": "Server-Einstlelungen wurden erfolgreich gespeichert", + "succeed-update-additional-script": "Zusätzliches Skript wurde erfolgreich aktualisiert", + "update-succeed": "Update erfolgreich", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Montag", + "mon": "Mo", + "tuesday": "Dienstag", + "tue": "Di", + "wednesday": "Mittwoch", + "wed": "Mi", + "thursday": "Donnerstag", + "thu": "Do", + "friday": "Freitag", + "fri": "Fr", + "saturday": "Samstag", + "sat": "Sa", + "sunday": "Sonntag", + "sun": "So" + } } diff --git a/web/src/locales/en.json b/web/src/locales/en.json index b9cdb42c..e7e5afa3 100644 --- a/web/src/locales/en.json +++ b/web/src/locales/en.json @@ -196,7 +196,7 @@ "additional-style-placeholder": "Additional CSS code", "additional-script-placeholder": "Additional JavaScript code" }, - "apperance-option": { + "appearance-option": { "system": "Follow system", "light": "Always light", "dark": "Always dark" diff --git a/web/src/locales/es.json b/web/src/locales/es.json index a81bd303..c7f38d73 100644 --- a/web/src/locales/es.json +++ b/web/src/locales/es.json @@ -1,274 +1,274 @@ { - "common": { - "about": "Acerca de", - "email": "Email", - "password": "Contraseña", - "repeat-password-short": "Repetir", - "repeat-password": "Repetir la contraseña", - "new-password": "Nueva contraseña", - "repeat-new-password": "Repetir la nueva contraseña", - "username": "Usuario", - "nickname": "Apodo", - "save": "Guardar", - "close": "Cerrar", - "cancel": "Cancelar", - "create": "Crear", - "change": "Cambiar", - "confirm": "Confirmar", - "reset": "Restablecer", - "language": "Idioma", - "version": "Versión", - "pin": "Enganchar", - "unpin": "Desenganchar", - "edit": "Editar", - "restore": "Restaurar", - "delete": "Eliminar", - "null": "Nulo", - "share": "Compartir", - "archive": "Archivar", - "basic": "Básico", - "admin": "Administrador", - "explore": "Explorar", - "sign-in": "Iniciar sesión", - "sign-up": "Registrarse", - "sign-out": "Cerrar sesión", - "back-to-home": "Volver al Inicio", - "type": "Tipo", - "shortcuts": "Atajos", - "title": "Título", - "filter": "Filtros", - "tags": "Etiquetas", - "yourself": "Tu", - "archived-at": "Archivado en", - "changed": "cambiado", - "update-on": "Actualización de", - "fold": "Plegar", - "expand": "Expandir", - "image": "Imagen", - "link": "Enlace", - "vacuum": "Vaciar", - "select": "Seleccionar", - "database": "Base de datos", - "avatar": "Avatar" - }, - "slogan": "Un código abierto, centro de notas autoalojado con la gestión del conocimiento y la socialización.", - "auth": { - "signup-as-host": "Registrarse como Anfitrión", - "host-tip": "Te estás registrando como Anfitrión del Sitio.", - "not-host-tip": "Si no tienes una cuenta, ponte en contacto con el anfitrión del sitio." - }, - "sidebar": { - "daily-review": "Resumen diario", - "resources": "Recursos", - "setting": "Ajustes", - "archived": "Archivado" - }, - "daily-review": { - "oops-nothing": "Ups, no hay nada." - }, - "resources": { - "description": "Visualiza tus recursos estáticos en notas. p.ej., imágenes", - "no-resources": "Sin recursos.", - "fetching-data": "obteniendo datos...", - "upload": "Subir", - "preview": "Vista previa", - "copy-link": "Copiar Enlace", - "delete-resource": "Borrar Recurso", - "warning-text": "¿Está seguro de eliminar este recurso? ESTA ACCIÓN ES IRREVERSIBLE❗", - "linked-amount": "Importe de la nota vinculado", - "rename": "Renombrar", - "warning-text-unused": "¿Está seguro de eliminar estos recursos no utilizados? ESTA ACCIÓN ES IRREVERSIBLE❗", - "no-unused-resources": "No hay recursos sin utilizar", - "name": "Nombre", - "clear": "Limpiar" - }, - "archived": { - "archived-memos": "Notas Archivadas", - "no-archived-memos": "No hay notas archivadas.", - "fetching-data": "obteniendo datos..." - }, - "editor": { - "editing": "Editando...", - "cancel-edit": "Cancelar edición", - "save": "Guardar", - "placeholder": "Alguna idea...", - "only-image-supported": "Solo se admiten archivos de imagen.", - "cant-empty": "El contenido no puede estar vacío", - "local": "Local", - "resources": "Recursos" - }, - "memo": { - "view-detail": "Ver Detalles", - "copy": "Copiar", - "visibility": { - "private": "Solo visible para ti", - "protected": "Visible para los miembros", - "public": "Todo el mundo lo puede ver", - "disabled": "Las notas públicas están deshabilitadas" - } - }, - "memo-list": { - "fetching-data": "obteniendo datos...", - "fetch-more": "Click aqui para obtener más información" - }, - "shortcut-list": { - "shortcut-title": "título del atajo", - "create-shortcut": "Crear Atajo", - "edit-shortcut": "Editar Atajo", - "eligible-memo": "nota elegible", - "fill-previous": "Introduce el valor del filtro anterior", - "title-required": "El título es obligatorio", - "value-required": "El valor del filtro es obligatorio" - }, - "filter": { - "new-filter": "Nuevo Filtro", - "type": { - "tag": "Etiqueta", - "type": "Tipo", - "text": "Texto", - "display-time": "Fecha y Hora de Visualización", - "visibility": "Visibilidad" - }, - "operator": { - "contains": "Contiene", - "not-contains": "No contiene", - "is": "Es", - "is-not": "No Es", - "before": "Antes", - "after": "Después" - }, - "value": { - "not-tagged": "Sin etiquetas", - "linked": "Con enlaces" - }, - "text-placeholder": "Empieza por ^ para usar regex" - }, - "tag-list": { - "tip-text": "Escribe '#etiqueta' para crearlo" - }, - "search": { - "quickly-filter": "Filtro rápido" - }, - "setting": { - "my-account": "Mi Cuenta", - "preference": "Preferencias", - "member": "Miembros", - "member-list": "Lista de miembros", - "system": "Sistema", - "account-section": { - "title": "Información de la Cuenta", - "update-information": "Actualizar Información", - "change-password": "Cambiar Contraseña" - }, - "preference-section": { - "theme": "Tema", - "default-memo-visibility": "Visibilidad predeterminada de las notas", - "enable-folding-memo": "Habilitar nota plegable", - "editor-font-style": "Estilo de fuente del editor", - "mobile-editor-style": "Estilo del editor móvil", - "default-memo-sort-option": "Hora de visualización de la nota", - "created_ts": "Hora de Creación", - "updated_ts": "Hora de Actualización", - "enable-double-click": "Habilitar doble clic para editar" - }, - "member-section": { - "create-a-member": "Crear un miembro" - }, - "system-section": { - "server-name": "Nombre del Servidor", - "customize-server": { - "title": "Personalizar Servidor", - "default": "Por defecto es memos", - "icon-url": "Icono URL" - }, - "database-file-size": "Tamaño de la Base de Datos", - "allow-user-signup": "Permitir el registro de usuarios", - "additional-style": "Estilos adicionales", - "additional-script": "Scripts adicionales", - "additional-style-placeholder": "Código CSS adicional", - "additional-script-placeholder": "Código JavaScript adicional", - "disable-public-memos": "Deshabilitar notas públicas" - }, - "apperance-option": { - "system": "Según el sistema", - "light": "Siempre claro", - "dark": "Siempre oscuro" - }, - "storage": "Almacenamiento", - "sso": "SSO", - "storage-section": { - "storage-services-list": "Lista de servicios de almacenamiento", - "create-a-service": "Crear un servicio", - "update-a-service": "Actualizar un servicio", - "warning-text": "¿Está seguro de eliminar este servicio de almacenamiento? ESTA ACCIÓN ES IRREVERSIBLE❗", - "delete-storage": "Eliminar almacenamiento" - } - }, - "amount-text": { - "memo_one": "NOTA", - "memo_many": "NOTAS", - "memo_other": "NOTAS", - "tag_one": "ETIQUETA", - "tag_many": "ETIQUETAS", - "tag_other": "ETIQUETAS", - "day_one": "DIA", - "day_many": "DIAS", - "day_other": "DIAS" - }, - "message": { - "no-memos": "no hay notas 🌃", - "memos-ready": "todas las notas están listas 🎉", - "restored-successfully": "Restaurado con éxito", - "memo-updated-datetime": "Fecha de creación de la nota modificada.", - "invalid-created-datetime": "Fecha de creación no válida.", - "change-memo-created-time": "Cambiar la hora de creación de la nota", - "memo-not-found": "Nota no encontrada.", - "fill-all": "Rellena todos los campos.", - "password-not-match": "Las contraseñas no coinciden.", - "new-password-not-match": "Las nuevas contraseñas no coinciden.", - "image-load-failed": "Error al subir la imagen", - "fill-form": "Rellena este formulario", - "login-failed": "Error al iniciar sesión", - "signup-failed": "Error al registrarse", - "user-not-found": "Usuario no encontrado", - "password-changed": "Contraseña cambiada", - "private-only": "Esta nota es privada.", - "copied": "Copiado", - "succeed-copy-content": "Contenido copiado correctamente.", - "succeed-copy-link": "Enlace copiado correctamente.", - "change-resource-filename": "Cambiar el nombre de un archivo de recursos", - "resource-filename-updated": "El nombre del archivo de recursos se ha cambiado correctamente..", - "invalid-resource-filename": "Nombre de archivo de recursos no válido.", - "click-to-save-the-image": "Haz clic para guardar la imagen", - "generating-the-screenshot": "Generando la captura de pantalla...", - "count-selected-resources": "Total seleccionado", - "too-short": "Demasiado corto", - "too-long": "Demasiado largo", - "not-allow-space": "No se admiten espacios", - "not-allow-chinese": "El chino no está permitido", - "succeed-vacuum-database": "Exito al limpiar la base de datos", - "succeed-update-additional-style": "Estilo adicional actualizado con éxito.", - "succeed-copy-resource-link": "Enlace del recurso copiado con éxito.", - "succeed-update-customized-profile": "Perfil personalizado con éxito.", - "succeed-update-additional-script": "Script adicional actualizado con éxito.", - "update-succeed": "Actualización exitosa", - "succeed-copy-code": "Código copiado con éxito.", - "page-not-found": "404 - Página no encontrada 😥" - }, - "days": { - "monday": "Lunes", - "mon": "Lun", - "tuesday": "Martes", - "tue": "Mart", - "wednesday": "Miércoles", - "wed": "Miérc", - "thursday": "Jueves", - "thu": "Juev", - "friday": "Viernes", - "fri": "Vier", - "saturday": "Sábado", - "sat": "Sáb", - "sunday": "Domingo", - "sun": "Dom" + "common": { + "about": "Acerca de", + "email": "Email", + "password": "Contraseña", + "repeat-password-short": "Repetir", + "repeat-password": "Repetir la contraseña", + "new-password": "Nueva contraseña", + "repeat-new-password": "Repetir la nueva contraseña", + "username": "Usuario", + "nickname": "Apodo", + "save": "Guardar", + "close": "Cerrar", + "cancel": "Cancelar", + "create": "Crear", + "change": "Cambiar", + "confirm": "Confirmar", + "reset": "Restablecer", + "language": "Idioma", + "version": "Versión", + "pin": "Enganchar", + "unpin": "Desenganchar", + "edit": "Editar", + "restore": "Restaurar", + "delete": "Eliminar", + "null": "Nulo", + "share": "Compartir", + "archive": "Archivar", + "basic": "Básico", + "admin": "Administrador", + "explore": "Explorar", + "sign-in": "Iniciar sesión", + "sign-up": "Registrarse", + "sign-out": "Cerrar sesión", + "back-to-home": "Volver al Inicio", + "type": "Tipo", + "shortcuts": "Atajos", + "title": "Título", + "filter": "Filtros", + "tags": "Etiquetas", + "yourself": "Tu", + "archived-at": "Archivado en", + "changed": "cambiado", + "update-on": "Actualización de", + "fold": "Plegar", + "expand": "Expandir", + "image": "Imagen", + "link": "Enlace", + "vacuum": "Vaciar", + "select": "Seleccionar", + "database": "Base de datos", + "avatar": "Avatar" + }, + "slogan": "Un código abierto, centro de notas autoalojado con la gestión del conocimiento y la socialización.", + "auth": { + "signup-as-host": "Registrarse como Anfitrión", + "host-tip": "Te estás registrando como Anfitrión del Sitio.", + "not-host-tip": "Si no tienes una cuenta, ponte en contacto con el anfitrión del sitio." + }, + "sidebar": { + "daily-review": "Resumen diario", + "resources": "Recursos", + "setting": "Ajustes", + "archived": "Archivado" + }, + "daily-review": { + "oops-nothing": "Ups, no hay nada." + }, + "resources": { + "description": "Visualiza tus recursos estáticos en notas. p.ej., imágenes", + "no-resources": "Sin recursos.", + "fetching-data": "obteniendo datos...", + "upload": "Subir", + "preview": "Vista previa", + "copy-link": "Copiar Enlace", + "delete-resource": "Borrar Recurso", + "warning-text": "¿Está seguro de eliminar este recurso? ESTA ACCIÓN ES IRREVERSIBLE❗", + "linked-amount": "Importe de la nota vinculado", + "rename": "Renombrar", + "warning-text-unused": "¿Está seguro de eliminar estos recursos no utilizados? ESTA ACCIÓN ES IRREVERSIBLE❗", + "no-unused-resources": "No hay recursos sin utilizar", + "name": "Nombre", + "clear": "Limpiar" + }, + "archived": { + "archived-memos": "Notas Archivadas", + "no-archived-memos": "No hay notas archivadas.", + "fetching-data": "obteniendo datos..." + }, + "editor": { + "editing": "Editando...", + "cancel-edit": "Cancelar edición", + "save": "Guardar", + "placeholder": "Alguna idea...", + "only-image-supported": "Solo se admiten archivos de imagen.", + "cant-empty": "El contenido no puede estar vacío", + "local": "Local", + "resources": "Recursos" + }, + "memo": { + "view-detail": "Ver Detalles", + "copy": "Copiar", + "visibility": { + "private": "Solo visible para ti", + "protected": "Visible para los miembros", + "public": "Todo el mundo lo puede ver", + "disabled": "Las notas públicas están deshabilitadas" } + }, + "memo-list": { + "fetching-data": "obteniendo datos...", + "fetch-more": "Click aqui para obtener más información" + }, + "shortcut-list": { + "shortcut-title": "título del atajo", + "create-shortcut": "Crear Atajo", + "edit-shortcut": "Editar Atajo", + "eligible-memo": "nota elegible", + "fill-previous": "Introduce el valor del filtro anterior", + "title-required": "El título es obligatorio", + "value-required": "El valor del filtro es obligatorio" + }, + "filter": { + "new-filter": "Nuevo Filtro", + "type": { + "tag": "Etiqueta", + "type": "Tipo", + "text": "Texto", + "display-time": "Fecha y Hora de Visualización", + "visibility": "Visibilidad" + }, + "operator": { + "contains": "Contiene", + "not-contains": "No contiene", + "is": "Es", + "is-not": "No Es", + "before": "Antes", + "after": "Después" + }, + "value": { + "not-tagged": "Sin etiquetas", + "linked": "Con enlaces" + }, + "text-placeholder": "Empieza por ^ para usar regex" + }, + "tag-list": { + "tip-text": "Escribe '#etiqueta' para crearlo" + }, + "search": { + "quickly-filter": "Filtro rápido" + }, + "setting": { + "my-account": "Mi Cuenta", + "preference": "Preferencias", + "member": "Miembros", + "member-list": "Lista de miembros", + "system": "Sistema", + "account-section": { + "title": "Información de la Cuenta", + "update-information": "Actualizar Información", + "change-password": "Cambiar Contraseña" + }, + "preference-section": { + "theme": "Tema", + "default-memo-visibility": "Visibilidad predeterminada de las notas", + "enable-folding-memo": "Habilitar nota plegable", + "editor-font-style": "Estilo de fuente del editor", + "mobile-editor-style": "Estilo del editor móvil", + "default-memo-sort-option": "Hora de visualización de la nota", + "created_ts": "Hora de Creación", + "updated_ts": "Hora de Actualización", + "enable-double-click": "Habilitar doble clic para editar" + }, + "member-section": { + "create-a-member": "Crear un miembro" + }, + "system-section": { + "server-name": "Nombre del Servidor", + "customize-server": { + "title": "Personalizar Servidor", + "default": "Por defecto es memos", + "icon-url": "Icono URL" + }, + "database-file-size": "Tamaño de la Base de Datos", + "allow-user-signup": "Permitir el registro de usuarios", + "additional-style": "Estilos adicionales", + "additional-script": "Scripts adicionales", + "additional-style-placeholder": "Código CSS adicional", + "additional-script-placeholder": "Código JavaScript adicional", + "disable-public-memos": "Deshabilitar notas públicas" + }, + "appearance-option": { + "system": "Según el sistema", + "light": "Siempre claro", + "dark": "Siempre oscuro" + }, + "storage": "Almacenamiento", + "sso": "SSO", + "storage-section": { + "storage-services-list": "Lista de servicios de almacenamiento", + "create-a-service": "Crear un servicio", + "update-a-service": "Actualizar un servicio", + "warning-text": "¿Está seguro de eliminar este servicio de almacenamiento? ESTA ACCIÓN ES IRREVERSIBLE❗", + "delete-storage": "Eliminar almacenamiento" + } + }, + "amount-text": { + "memo_one": "NOTA", + "memo_many": "NOTAS", + "memo_other": "NOTAS", + "tag_one": "ETIQUETA", + "tag_many": "ETIQUETAS", + "tag_other": "ETIQUETAS", + "day_one": "DIA", + "day_many": "DIAS", + "day_other": "DIAS" + }, + "message": { + "no-memos": "no hay notas 🌃", + "memos-ready": "todas las notas están listas 🎉", + "restored-successfully": "Restaurado con éxito", + "memo-updated-datetime": "Fecha de creación de la nota modificada.", + "invalid-created-datetime": "Fecha de creación no válida.", + "change-memo-created-time": "Cambiar la hora de creación de la nota", + "memo-not-found": "Nota no encontrada.", + "fill-all": "Rellena todos los campos.", + "password-not-match": "Las contraseñas no coinciden.", + "new-password-not-match": "Las nuevas contraseñas no coinciden.", + "image-load-failed": "Error al subir la imagen", + "fill-form": "Rellena este formulario", + "login-failed": "Error al iniciar sesión", + "signup-failed": "Error al registrarse", + "user-not-found": "Usuario no encontrado", + "password-changed": "Contraseña cambiada", + "private-only": "Esta nota es privada.", + "copied": "Copiado", + "succeed-copy-content": "Contenido copiado correctamente.", + "succeed-copy-link": "Enlace copiado correctamente.", + "change-resource-filename": "Cambiar el nombre de un archivo de recursos", + "resource-filename-updated": "El nombre del archivo de recursos se ha cambiado correctamente..", + "invalid-resource-filename": "Nombre de archivo de recursos no válido.", + "click-to-save-the-image": "Haz clic para guardar la imagen", + "generating-the-screenshot": "Generando la captura de pantalla...", + "count-selected-resources": "Total seleccionado", + "too-short": "Demasiado corto", + "too-long": "Demasiado largo", + "not-allow-space": "No se admiten espacios", + "not-allow-chinese": "El chino no está permitido", + "succeed-vacuum-database": "Exito al limpiar la base de datos", + "succeed-update-additional-style": "Estilo adicional actualizado con éxito.", + "succeed-copy-resource-link": "Enlace del recurso copiado con éxito.", + "succeed-update-customized-profile": "Perfil personalizado con éxito.", + "succeed-update-additional-script": "Script adicional actualizado con éxito.", + "update-succeed": "Actualización exitosa", + "succeed-copy-code": "Código copiado con éxito.", + "page-not-found": "404 - Página no encontrada 😥" + }, + "days": { + "monday": "Lunes", + "mon": "Lun", + "tuesday": "Martes", + "tue": "Mart", + "wednesday": "Miércoles", + "wed": "Miérc", + "thursday": "Jueves", + "thu": "Juev", + "friday": "Viernes", + "fri": "Vier", + "saturday": "Sábado", + "sat": "Sáb", + "sunday": "Domingo", + "sun": "Dom" + } } diff --git a/web/src/locales/fr.json b/web/src/locales/fr.json index 31714606..bbd2edae 100644 --- a/web/src/locales/fr.json +++ b/web/src/locales/fr.json @@ -1,271 +1,271 @@ { - "common": { - "about": "À propos", - "email": "Email", - "password": "Mot de passe", - "repeat-password-short": "Repeat", - "repeat-password": "Repeat the password", - "new-password": "Nouveau mot de passe", - "repeat-new-password": "Répétez le nouveau mot de passe", - "username": "Nom d'utilisateur", - "nickname": "Surnom", - "save": "Enregistrer", - "close": "Fermer", - "cancel": "Annuler", - "create": "Créer", - "change": "Changer", - "confirm": "Confirmer", - "reset": "Réinitialiser", - "language": "Langue", - "version": "Version", - "pin": "Épinglé", - "unpin": "Détacher", - "edit": "Modifier", - "restore": "Restaurer", - "delete": "Supprimer", - "null": "Nulle", - "share": "Partager", - "archive": "Archive", - "basic": "Base", - "admin": "Admin", - "explore": "Explorez", - "sign-in": "Se connecter", - "sign-up": "S'inscrire", - "sign-out": "Se déconnecter", - "back-to-home": "Retour à l'accueil", - "type": "Type", - "shortcuts": "Raccourcis", - "title": "Titre", - "filter": "Filtre", - "tags": "Étiquettes", - "yourself": "Vous-même", - "archived-at": "Archivé à", - "changed": "modifié", - "update-on": "Mise à jour sur", - "fold": "Plier", - "expand": "Développer", - "image": "Image", - "link": "Link", - "vacuum": "Vacuum", - "select": "Select", - "avatar": "Avatar", - "database": "Database" - }, - "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", - "auth": { - "signup-as-host": "S'inscrire en tant qu'hôte", - "host-tip": "Vous vous inscrivez en tant qu'hébergeur du site.", - "not-host-tip": "Si vous n'avez pas de compte, veuillez contacter l'hôte du site." - }, - "sidebar": { - "daily-review": "Bilan quotidien", - "resources": "Ressources", - "setting": "Réglage", - "archived": "Archivé" - }, - "daily-review": { - "oops-nothing": "Oups, il n'y a rien." - }, - "resources": { - "description": "Visualisez vos ressources statiques dans des mémos, par exemple des images.", - "no-resources": "Aucune ressource.", - "fetching-data": "récupération des données...", - "upload": "Télécharger", - "preview": "Aperçu", - "copy-link": "Copier le lien", - "delete-resource": "Supprimer la ressource", - "warning-text": "Êtes-vous sûr de vouloir supprimer cette ressource ? CETTE ACTION EST IRRÉVERSIBLE❗", - "linked-amount": "Montant du mémo lié", - "rename": "Renommer", - "warning-text-unused": "Etes-vous sûr de vouloir supprimer ces ressources inutilisées ? CETTE ACTION EST IRRÉVERSIBLE❗", - "no-unused-resources": "Aucune ressource inutilisée", - "name": "Name", - "clear": "Clear" - }, - "archived": { - "archived-memos": "Mémos archivés", - "no-archived-memos": "Aucun mémo archivé.", - "fetching-data": "récupération des données..." - }, - "editor": { - "editing": "Édition...", - "cancel-edit": "Annuler l'édition", - "save": "Sauvegarder", - "placeholder": "Une idée...", - "only-image-supported": "Seul le fichier image est pris en charge.", - "cant-empty": "Le contenu ne doit pas être vide", - "local": "Local", - "resources": "Resources" - }, - "memo": { - "view-detail": "Voir le détail", - "copy": "Copier", - "visibility": { - "private": "Privé", - "protected": "Visible par les membres", - "public": "Tous peuvent voir", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "récupération des données...", - "fetch-more": "Cliquez ici pour en savoir plus" - }, - "shortcut-list": { - "shortcut-title": "titre du raccourci", - "create-shortcut": "Créer un raccourci", - "edit-shortcut": "Editer un raccourci", - "eligible-memo": "mémo admissible", - "fill-previous": "Veuillez remplir la valeur du filtre précédent", - "title-required": "Le titre est requis", - "value-required": "La valeur du filtre est requise" - }, - "filter": { - "new-filter": "Nouveau filtre", - "type": { - "tag": "Tag", - "type": "Type", - "text": "Text", - "display-time": "Display Time", - "visibility": "Visibility" - }, - "operator": { - "contains": "Contient", - "not-contains": "Ne contient pas", - "is": "Est", - "is-not": "N'est pas", - "before": "Avant", - "after": "Après" - }, - "value": { - "not-tagged": "Pas d'étiquette", - "linked": "A des liens" - }, - "text-placeholder": "Commence par ^ pour utiliser regex" - }, - "tag-list": { - "tip-text": "Entrez `#tag ` pour créer" - }, - "search": { - "quickly-filter": "Filtrer rapidement" - }, - "setting": { - "my-account": "Mon compte", - "preference": "Préférence", - "member": "Membre", - "member-list": "Liste des membres", - "system": "Système", - "account-section": { - "title": "Informations sur le compte", - "update-information": "Mettre à jour les informations", - "change-password": "Modifier le mot de passe" - }, - "preference-section": { - "theme": "Thème", - "default-memo-visibility": "Visibilité du mémo par défaut", - "enable-folding-memo": "Activer le mémo pliable", - "editor-font-style": "Style de police de l'éditeur", - "mobile-editor-style": "Style de l'éditeur mobile", - "default-memo-sort-option": "Memo display time", - "created_ts": "Heure de création", - "updated_ts": "Heure de mise à jour", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Créer un membre" - }, - "system-section": { - "server-name": "Server Name", - "customize-server": { - "title": "Customize Server", - "default": "Default is memos", - "icon-url": "Icon URL" - }, - "database-file-size": "Taille de la base de données", - "allow-user-signup": "Autoriser l'inscription des utilisateurs", - "additional-style": "Style supplémentaire", - "additional-script": "Script supplémentaire", - "additional-style-placeholder": "Codes CSS supplémentaires", - "additional-script-placeholder": "Codes JavaScript supplémentaires", - "disable-public-memos": "Disable public memos" - }, - "storage-section": { - "delete-storage": "Delete Storage", - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗" - }, - "storage": "Storage", - "sso": "SSO", - "apperance-option": { - "system": "Follow system", - "light": "Always light", - "dark": "Always dark" - } - }, - "amount-text": { - "memo_one": "MEMO", - "tag_one": "ÉTIQUETTE", - "day_one": "JOUR", - "day_other": "DAYS", - "memo_other": "MEMOS", - "tag_other": "TAGS" - }, - "message": { - "no-memos": "pas de mémos 🌃", - "memos-ready": "tous les mémos sont prêts 🎉", - "restored-successfully": "Restauré avec succès", - "memo-updated-datetime": "La date et l'heure de création du mémo ont été modifiées.", - "invalid-created-datetime": "Date/heure de création non valide.", - "change-memo-created-time": "Modifier l'heure de création du mémo", - "memo-not-found": "Mémo introuvable", - "fill-all": "Veuillez remplir tous les champs.", - "new-password-not-match": "Les mots de passe ne correspondent pas", - "image-load-failed": "Le chargement de l'image a échoué", - "fill-form": "Veuillez remplir ce formulaire", - "login-failed": "Connexion échouée", - "signup-failed": "L'inscription a échoué", - "user-not-found": "Utilisateur introuvable", - "password-not-match": "Passwords do not match.", - "password-changed": "Mot de passe modifié", - "private-only": "Ce mémo est uniquement privé.", - "copied": "Copié", - "succeed-copy-content": "La copie dans le presse-papiers a été effectuée avec succès", - "succeed-copy-link": "Succeed to copy link to clipboard.", - "change-resource-filename": "Changer le nom du fichier de ressources", - "resource-filename-updated": "Le nom de fichier de la ressource a changé.", - "invalid-resource-filename": "Nom de fichier invalide.", - "click-to-save-the-image": "Cliquez pour enregistrer l'image", - "generating-the-screenshot": "Génération de la capture d'écran...", - "count-selected-resources": "Total selected", - "too-short": "Too short", - "too-long": "Too long", - "not-allow-space": "Don't allow space", - "not-allow-chinese": "Don't allow chinese", - "succeed-vacuum-database": "Succeed to vacuum database", - "succeed-update-additional-style": "Succeed to update additional style", - "succeed-copy-resource-link": "Succeed to copy resource link to clipboard", - "succeed-update-customized-profile": "Succeed to update customized profile", - "succeed-update-additional-script": "Succeed to update additional script", - "update-succeed": "Update succeed", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Lundi", - "mon": "Lu", - "tuesday": "Mardi", - "tue": "Ma", - "wednesday": "Mercredi", - "wed": "Me", - "thursday": "Jeudi", - "thu": "Je", - "friday": "Vendredi", - "fri": "Ve", - "saturday": "Samedi", - "sat": "Sa", - "sunday": "Dimanche", - "sun": "Di" + "common": { + "about": "À propos", + "email": "Email", + "password": "Mot de passe", + "repeat-password-short": "Repeat", + "repeat-password": "Repeat the password", + "new-password": "Nouveau mot de passe", + "repeat-new-password": "Répétez le nouveau mot de passe", + "username": "Nom d'utilisateur", + "nickname": "Surnom", + "save": "Enregistrer", + "close": "Fermer", + "cancel": "Annuler", + "create": "Créer", + "change": "Changer", + "confirm": "Confirmer", + "reset": "Réinitialiser", + "language": "Langue", + "version": "Version", + "pin": "Épinglé", + "unpin": "Détacher", + "edit": "Modifier", + "restore": "Restaurer", + "delete": "Supprimer", + "null": "Nulle", + "share": "Partager", + "archive": "Archive", + "basic": "Base", + "admin": "Admin", + "explore": "Explorez", + "sign-in": "Se connecter", + "sign-up": "S'inscrire", + "sign-out": "Se déconnecter", + "back-to-home": "Retour à l'accueil", + "type": "Type", + "shortcuts": "Raccourcis", + "title": "Titre", + "filter": "Filtre", + "tags": "Étiquettes", + "yourself": "Vous-même", + "archived-at": "Archivé à", + "changed": "modifié", + "update-on": "Mise à jour sur", + "fold": "Plier", + "expand": "Développer", + "image": "Image", + "link": "Link", + "vacuum": "Vacuum", + "select": "Select", + "avatar": "Avatar", + "database": "Database" + }, + "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", + "auth": { + "signup-as-host": "S'inscrire en tant qu'hôte", + "host-tip": "Vous vous inscrivez en tant qu'hébergeur du site.", + "not-host-tip": "Si vous n'avez pas de compte, veuillez contacter l'hôte du site." + }, + "sidebar": { + "daily-review": "Bilan quotidien", + "resources": "Ressources", + "setting": "Réglage", + "archived": "Archivé" + }, + "daily-review": { + "oops-nothing": "Oups, il n'y a rien." + }, + "resources": { + "description": "Visualisez vos ressources statiques dans des mémos, par exemple des images.", + "no-resources": "Aucune ressource.", + "fetching-data": "récupération des données...", + "upload": "Télécharger", + "preview": "Aperçu", + "copy-link": "Copier le lien", + "delete-resource": "Supprimer la ressource", + "warning-text": "Êtes-vous sûr de vouloir supprimer cette ressource ? CETTE ACTION EST IRRÉVERSIBLE❗", + "linked-amount": "Montant du mémo lié", + "rename": "Renommer", + "warning-text-unused": "Etes-vous sûr de vouloir supprimer ces ressources inutilisées ? CETTE ACTION EST IRRÉVERSIBLE❗", + "no-unused-resources": "Aucune ressource inutilisée", + "name": "Name", + "clear": "Clear" + }, + "archived": { + "archived-memos": "Mémos archivés", + "no-archived-memos": "Aucun mémo archivé.", + "fetching-data": "récupération des données..." + }, + "editor": { + "editing": "Édition...", + "cancel-edit": "Annuler l'édition", + "save": "Sauvegarder", + "placeholder": "Une idée...", + "only-image-supported": "Seul le fichier image est pris en charge.", + "cant-empty": "Le contenu ne doit pas être vide", + "local": "Local", + "resources": "Resources" + }, + "memo": { + "view-detail": "Voir le détail", + "copy": "Copier", + "visibility": { + "private": "Privé", + "protected": "Visible par les membres", + "public": "Tous peuvent voir", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "récupération des données...", + "fetch-more": "Cliquez ici pour en savoir plus" + }, + "shortcut-list": { + "shortcut-title": "titre du raccourci", + "create-shortcut": "Créer un raccourci", + "edit-shortcut": "Editer un raccourci", + "eligible-memo": "mémo admissible", + "fill-previous": "Veuillez remplir la valeur du filtre précédent", + "title-required": "Le titre est requis", + "value-required": "La valeur du filtre est requise" + }, + "filter": { + "new-filter": "Nouveau filtre", + "type": { + "tag": "Tag", + "type": "Type", + "text": "Text", + "display-time": "Display Time", + "visibility": "Visibility" + }, + "operator": { + "contains": "Contient", + "not-contains": "Ne contient pas", + "is": "Est", + "is-not": "N'est pas", + "before": "Avant", + "after": "Après" + }, + "value": { + "not-tagged": "Pas d'étiquette", + "linked": "A des liens" + }, + "text-placeholder": "Commence par ^ pour utiliser regex" + }, + "tag-list": { + "tip-text": "Entrez `#tag ` pour créer" + }, + "search": { + "quickly-filter": "Filtrer rapidement" + }, + "setting": { + "my-account": "Mon compte", + "preference": "Préférence", + "member": "Membre", + "member-list": "Liste des membres", + "system": "Système", + "account-section": { + "title": "Informations sur le compte", + "update-information": "Mettre à jour les informations", + "change-password": "Modifier le mot de passe" + }, + "preference-section": { + "theme": "Thème", + "default-memo-visibility": "Visibilité du mémo par défaut", + "enable-folding-memo": "Activer le mémo pliable", + "editor-font-style": "Style de police de l'éditeur", + "mobile-editor-style": "Style de l'éditeur mobile", + "default-memo-sort-option": "Memo display time", + "created_ts": "Heure de création", + "updated_ts": "Heure de mise à jour", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Créer un membre" + }, + "system-section": { + "server-name": "Server Name", + "customize-server": { + "title": "Customize Server", + "default": "Default is memos", + "icon-url": "Icon URL" + }, + "database-file-size": "Taille de la base de données", + "allow-user-signup": "Autoriser l'inscription des utilisateurs", + "additional-style": "Style supplémentaire", + "additional-script": "Script supplémentaire", + "additional-style-placeholder": "Codes CSS supplémentaires", + "additional-script-placeholder": "Codes JavaScript supplémentaires", + "disable-public-memos": "Disable public memos" + }, + "storage-section": { + "delete-storage": "Delete Storage", + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗" + }, + "storage": "Storage", + "sso": "SSO", + "appearance-option": { + "system": "Follow system", + "light": "Always light", + "dark": "Always dark" + } + }, + "amount-text": { + "memo_one": "MEMO", + "tag_one": "ÉTIQUETTE", + "day_one": "JOUR", + "day_other": "DAYS", + "memo_other": "MEMOS", + "tag_other": "TAGS" + }, + "message": { + "no-memos": "pas de mémos 🌃", + "memos-ready": "tous les mémos sont prêts 🎉", + "restored-successfully": "Restauré avec succès", + "memo-updated-datetime": "La date et l'heure de création du mémo ont été modifiées.", + "invalid-created-datetime": "Date/heure de création non valide.", + "change-memo-created-time": "Modifier l'heure de création du mémo", + "memo-not-found": "Mémo introuvable", + "fill-all": "Veuillez remplir tous les champs.", + "new-password-not-match": "Les mots de passe ne correspondent pas", + "image-load-failed": "Le chargement de l'image a échoué", + "fill-form": "Veuillez remplir ce formulaire", + "login-failed": "Connexion échouée", + "signup-failed": "L'inscription a échoué", + "user-not-found": "Utilisateur introuvable", + "password-not-match": "Passwords do not match.", + "password-changed": "Mot de passe modifié", + "private-only": "Ce mémo est uniquement privé.", + "copied": "Copié", + "succeed-copy-content": "La copie dans le presse-papiers a été effectuée avec succès", + "succeed-copy-link": "Succeed to copy link to clipboard.", + "change-resource-filename": "Changer le nom du fichier de ressources", + "resource-filename-updated": "Le nom de fichier de la ressource a changé.", + "invalid-resource-filename": "Nom de fichier invalide.", + "click-to-save-the-image": "Cliquez pour enregistrer l'image", + "generating-the-screenshot": "Génération de la capture d'écran...", + "count-selected-resources": "Total selected", + "too-short": "Too short", + "too-long": "Too long", + "not-allow-space": "Don't allow space", + "not-allow-chinese": "Don't allow chinese", + "succeed-vacuum-database": "Succeed to vacuum database", + "succeed-update-additional-style": "Succeed to update additional style", + "succeed-copy-resource-link": "Succeed to copy resource link to clipboard", + "succeed-update-customized-profile": "Succeed to update customized profile", + "succeed-update-additional-script": "Succeed to update additional script", + "update-succeed": "Update succeed", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Lundi", + "mon": "Lu", + "tuesday": "Mardi", + "tue": "Ma", + "wednesday": "Mercredi", + "wed": "Me", + "thursday": "Jeudi", + "thu": "Je", + "friday": "Vendredi", + "fri": "Ve", + "saturday": "Samedi", + "sat": "Sa", + "sunday": "Dimanche", + "sun": "Di" + } } diff --git a/web/src/locales/it.json b/web/src/locales/it.json index d53d2047..fc705ecf 100644 --- a/web/src/locales/it.json +++ b/web/src/locales/it.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Informazioni", - "email": "Email", - "password": "Password", - "repeat-password-short": "Ripeti", - "repeat-password": "Ripeti la password", - "new-password": "Nuova password", - "repeat-new-password": "Ripeti la nuova password", - "username": "Nome utente", - "nickname": "Soprannome", - "save": "Salva", - "close": "Chiudi", - "cancel": "Cancella", - "create": "Crea", - "change": "Cambia", - "confirm": "Conferma", - "reset": "Ripristina", - "language": "Lingua", - "version": "Versione", - "pin": "Attacca", - "unpin": "Stacca", - "edit": "Modifica", - "restore": "Ripristina", - "delete": "Rimuovi", - "null": "Null", - "share": "Condividi", - "archive": "Archivia", - "basic": "Base", - "admin": "Amministratore", - "explore": "Esplora", - "sign-in": "Accedi", - "sign-up": "Registrati", - "sign-out": "Esci", - "back-to-home": "Ritorna alla Home", - "type": "Tipo", - "shortcuts": "Scorciatoie", - "title": "Titolo", - "filter": "Filtro", - "tags": "Etichette", - "yourself": "Te stesso", - "archived-at": "Archiviato il", - "changed": "cambiato", - "update-on": "Aggiornato il", - "fold": "Piega", - "expand": "Espandi", - "image": "Immagine", - "link": "Link", - "vacuum": "Pulisci", - "select": "Seleziona", - "avatar": "Avatar", - "database": "Database" - }, - "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", - "auth": { - "signup-as-host": "Registrati come Host", - "host-tip": "Ti stai registrando come Host del sito.", - "not-host-tip": "Se non hai un account, contatta l'host del sito." - }, - "sidebar": { - "daily-review": "Oggi", - "resources": "Risorse", - "setting": "Impostazioni", - "archived": "Archiviati" - }, - "daily-review": { - "oops-nothing": "Oops, non c'è niente." - }, - "resources": { - "description": "Visualizza le tue risorse statiche nei memo. es: immagini", - "no-resources": "Nessuna risorsa.", - "fetching-data": "recupero i dati...", - "upload": "Carica", - "preview": "Anteprima", - "copy-link": "Copia link", - "delete-resource": "Cancella risorsa", - "warning-text": "Sei sicuro di voler eliminare questa risorsa? QUESTA AZIONE È IRREVERSIBILE❗", - "linked-amount": "Linked memo amount", - "rename": "Rinomina", - "warning-text-unused": "Sei sicuro di voler eliminare queste risorse? QUESTA AZIONE È IRREVERSIBILE❗", - "no-unused-resources": "Nessuna risorsa inutilizzata", - "name": "Nome", - "clear": "Clear" - }, - "archived": { - "archived-memos": "Memo archiviati", - "no-archived-memos": "Nessun memo archiviato.", - "fetching-data": "recupero i dati..." - }, - "editor": { - "editing": "Modifica in corso...", - "cancel-edit": "Annulla modifica", - "save": "Salva", - "placeholder": "Idee...", - "only-image-supported": "Solo file immagine supportati.", - "cant-empty": "Il contenuto non può essere vuoto", - "local": "Locale", - "resources": "Risorse" - }, - "memo": { - "view-detail": "Vedi dettagli", - "copy": "Copia", - "visibility": { - "private": "Visibile solo a te", - "protected": "Visibile ai membri", - "public": "Visibile a tutti", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "recupero i dati...", - "fetch-more": "Clicca per caricare più dati" - }, - "shortcut-list": { - "shortcut-title": "titolo Scorciatoia", - "create-shortcut": "Crea Scorciatoia", - "edit-shortcut": "Modifica Scorciatoia", - "eligible-memo": "eligible memo", - "fill-previous": "Compila il valore del filtro precedente", - "title-required": "Il titolo è obbligatorio", - "value-required": "Il valore del filtro è obbligatorio" - }, - "filter": { - "new-filter": "Nuovo Filtro", - "type": { - "tag": "Etichetta", - "type": "Tipo", - "text": "Testo", - "display-time": "Data", - "visibility": "Visibilità" - }, - "operator": { - "contains": "Contiene", - "not-contains": "Non contiene", - "is": "È", - "is-not": "Non è", - "before": "Prima", - "after": "Dopo" - }, - "value": { - "not-tagged": "senza etichetta", - "linked": "con link" - }, - "text-placeholder": "Inizia con ^ per usare le regex" - }, - "tag-list": { - "tip-text": "Scrivi `#tag` per crearla" - }, - "search": { - "quickly-filter": "Filtro rapido" - }, - "setting": { - "my-account": "Il mio account", - "preference": "Preferenze", - "member": "Membri", - "member-list": "Lista membri", - "system": "Sistema", - "account-section": { - "title": "Informazioni account", - "update-information": "Aggiorna informazioni", - "change-password": "Cambia password" - }, - "preference-section": { - "theme": "Tema", - "default-memo-visibility": "Visibilità predefinita memo", - "enable-folding-memo": "Enable folding memo", - "editor-font-style": "Editor font style", - "mobile-editor-style": "Mobile editor style", - "default-memo-sort-option": "Ordine visualizzazione memo", - "created_ts": "Data di creazione", - "updated_ts": "Ultima modifica", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Crea un membro" - }, - "system-section": { - "server-name": "Nome server", - "customize-server": { - "title": "Personalizza Server", - "default": "Predefinito: memos", - "icon-url": "URL Icona" - }, - "database-file-size": "Dimensione file database", - "allow-user-signup": "Consenti registrazione utenti", - "additional-style": "Stile aggiuntivo", - "additional-script": "Script aggiuntivo", - "additional-style-placeholder": "Codice CSS aggiuntivo", - "additional-script-placeholder": "Codice JavaScript aggiuntivo", - "disable-public-memos": "Disable public memos" - }, - "apperance-option": { - "system": "Sistema", - "light": "Chiaro", - "dark": "Scuro" - }, - "sso": "SSO", - "storage": "Storage", - "storage-section": { - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage" - } - }, - "amount-text": { - "memo_one": "MEMO", - "tag_one": "TAG", - "day_one": "GIORNO", - "memo_other": "MEMOS", - "tag_other": "TAGS", - "day_other": "DAYS" - }, - "message": { - "no-memos": "nessun memo 🌃", - "memos-ready": "Tutti i memo sono stati caricati 🎉", - "restored-successfully": "Ripristinato con successo", - "memo-updated-datetime": "La data di creazione del Memo è stata modificata.", - "invalid-created-datetime": "Data di creazione non valida.", - "change-memo-created-time": "Cambia la data di creazione del Memo", - "memo-not-found": "Memo non trovato.", - "fill-all": "Compila tutti i campi.", - "password-not-match": "Le passwords non corrispondono.", - "new-password-not-match": "Le nuove password non corrispondono.", - "image-load-failed": "Caricamento dell'immagine non riuscito", - "fill-form": "Compila questo modulo", - "login-failed": "Accesso fallito", - "signup-failed": "Registrazione fallita", - "user-not-found": "Utente non trovato", - "password-changed": "Password cambiata", - "private-only": "Questo memo è solo privato.", - "copied": "Copiato", - "succeed-copy-content": "Contenuto copiato negli appunti.", - "succeed-copy-link": "Link copiato negli appunti.", - "change-resource-filename": "Modifica il nome del file della risorsa", - "resource-filename-updated": "Nome file risorsa modificato.", - "invalid-resource-filename": "Nome del file non valido.", - "click-to-save-the-image": "Clicca per salvare l'immagine", - "generating-the-screenshot": "Generazione dello screenshot...", - "count-selected-resources": "Totale selezionati", - "too-short": "Troppo corto", - "too-long": "Troppo lungo", - "not-allow-space": "Non permettere spazi", - "not-allow-chinese": "Non permettere cinese", - "succeed-vacuum-database": "Database pulito con successo", - "succeed-update-additional-style": "Stile aggiuntivo aggiornato con successo", - "succeed-copy-resource-link": "Link della risorsa copiato con successo", - "succeed-update-customized-profile": "Profilo aggiornato con successo", - "succeed-update-additional-script": "Script aggiuntivo aggiornato con successo", - "update-succeed": "Aggiornamento riuscito", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Lunedì", - "mon": "Lun", - "tuesday": "Martedì", - "tue": "Mar", - "wednesday": "Mercoledì", - "wed": "Mer", - "thursday": "Giovedì", - "thu": "Gio", - "friday": "Venerdì", - "fri": "Ven", - "saturday": "Sabato", - "sat": "Sab", - "sunday": "Domenica", - "sun": "Dom" + "common": { + "about": "Informazioni", + "email": "Email", + "password": "Password", + "repeat-password-short": "Ripeti", + "repeat-password": "Ripeti la password", + "new-password": "Nuova password", + "repeat-new-password": "Ripeti la nuova password", + "username": "Nome utente", + "nickname": "Soprannome", + "save": "Salva", + "close": "Chiudi", + "cancel": "Cancella", + "create": "Crea", + "change": "Cambia", + "confirm": "Conferma", + "reset": "Ripristina", + "language": "Lingua", + "version": "Versione", + "pin": "Attacca", + "unpin": "Stacca", + "edit": "Modifica", + "restore": "Ripristina", + "delete": "Rimuovi", + "null": "Null", + "share": "Condividi", + "archive": "Archivia", + "basic": "Base", + "admin": "Amministratore", + "explore": "Esplora", + "sign-in": "Accedi", + "sign-up": "Registrati", + "sign-out": "Esci", + "back-to-home": "Ritorna alla Home", + "type": "Tipo", + "shortcuts": "Scorciatoie", + "title": "Titolo", + "filter": "Filtro", + "tags": "Etichette", + "yourself": "Te stesso", + "archived-at": "Archiviato il", + "changed": "cambiato", + "update-on": "Aggiornato il", + "fold": "Piega", + "expand": "Espandi", + "image": "Immagine", + "link": "Link", + "vacuum": "Pulisci", + "select": "Seleziona", + "avatar": "Avatar", + "database": "Database" + }, + "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", + "auth": { + "signup-as-host": "Registrati come Host", + "host-tip": "Ti stai registrando come Host del sito.", + "not-host-tip": "Se non hai un account, contatta l'host del sito." + }, + "sidebar": { + "daily-review": "Oggi", + "resources": "Risorse", + "setting": "Impostazioni", + "archived": "Archiviati" + }, + "daily-review": { + "oops-nothing": "Oops, non c'è niente." + }, + "resources": { + "description": "Visualizza le tue risorse statiche nei memo. es: immagini", + "no-resources": "Nessuna risorsa.", + "fetching-data": "recupero i dati...", + "upload": "Carica", + "preview": "Anteprima", + "copy-link": "Copia link", + "delete-resource": "Cancella risorsa", + "warning-text": "Sei sicuro di voler eliminare questa risorsa? QUESTA AZIONE È IRREVERSIBILE❗", + "linked-amount": "Linked memo amount", + "rename": "Rinomina", + "warning-text-unused": "Sei sicuro di voler eliminare queste risorse? QUESTA AZIONE È IRREVERSIBILE❗", + "no-unused-resources": "Nessuna risorsa inutilizzata", + "name": "Nome", + "clear": "Clear" + }, + "archived": { + "archived-memos": "Memo archiviati", + "no-archived-memos": "Nessun memo archiviato.", + "fetching-data": "recupero i dati..." + }, + "editor": { + "editing": "Modifica in corso...", + "cancel-edit": "Annulla modifica", + "save": "Salva", + "placeholder": "Idee...", + "only-image-supported": "Solo file immagine supportati.", + "cant-empty": "Il contenuto non può essere vuoto", + "local": "Locale", + "resources": "Risorse" + }, + "memo": { + "view-detail": "Vedi dettagli", + "copy": "Copia", + "visibility": { + "private": "Visibile solo a te", + "protected": "Visibile ai membri", + "public": "Visibile a tutti", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "recupero i dati...", + "fetch-more": "Clicca per caricare più dati" + }, + "shortcut-list": { + "shortcut-title": "titolo Scorciatoia", + "create-shortcut": "Crea Scorciatoia", + "edit-shortcut": "Modifica Scorciatoia", + "eligible-memo": "eligible memo", + "fill-previous": "Compila il valore del filtro precedente", + "title-required": "Il titolo è obbligatorio", + "value-required": "Il valore del filtro è obbligatorio" + }, + "filter": { + "new-filter": "Nuovo Filtro", + "type": { + "tag": "Etichetta", + "type": "Tipo", + "text": "Testo", + "display-time": "Data", + "visibility": "Visibilità" + }, + "operator": { + "contains": "Contiene", + "not-contains": "Non contiene", + "is": "È", + "is-not": "Non è", + "before": "Prima", + "after": "Dopo" + }, + "value": { + "not-tagged": "senza etichetta", + "linked": "con link" + }, + "text-placeholder": "Inizia con ^ per usare le regex" + }, + "tag-list": { + "tip-text": "Scrivi `#tag` per crearla" + }, + "search": { + "quickly-filter": "Filtro rapido" + }, + "setting": { + "my-account": "Il mio account", + "preference": "Preferenze", + "member": "Membri", + "member-list": "Lista membri", + "system": "Sistema", + "account-section": { + "title": "Informazioni account", + "update-information": "Aggiorna informazioni", + "change-password": "Cambia password" + }, + "preference-section": { + "theme": "Tema", + "default-memo-visibility": "Visibilità predefinita memo", + "enable-folding-memo": "Enable folding memo", + "editor-font-style": "Editor font style", + "mobile-editor-style": "Mobile editor style", + "default-memo-sort-option": "Ordine visualizzazione memo", + "created_ts": "Data di creazione", + "updated_ts": "Ultima modifica", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Crea un membro" + }, + "system-section": { + "server-name": "Nome server", + "customize-server": { + "title": "Personalizza Server", + "default": "Predefinito: memos", + "icon-url": "URL Icona" + }, + "database-file-size": "Dimensione file database", + "allow-user-signup": "Consenti registrazione utenti", + "additional-style": "Stile aggiuntivo", + "additional-script": "Script aggiuntivo", + "additional-style-placeholder": "Codice CSS aggiuntivo", + "additional-script-placeholder": "Codice JavaScript aggiuntivo", + "disable-public-memos": "Disable public memos" + }, + "appearance-option": { + "system": "Sistema", + "light": "Chiaro", + "dark": "Scuro" + }, + "sso": "SSO", + "storage": "Storage", + "storage-section": { + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage" + } + }, + "amount-text": { + "memo_one": "MEMO", + "tag_one": "TAG", + "day_one": "GIORNO", + "memo_other": "MEMOS", + "tag_other": "TAGS", + "day_other": "DAYS" + }, + "message": { + "no-memos": "nessun memo 🌃", + "memos-ready": "Tutti i memo sono stati caricati 🎉", + "restored-successfully": "Ripristinato con successo", + "memo-updated-datetime": "La data di creazione del Memo è stata modificata.", + "invalid-created-datetime": "Data di creazione non valida.", + "change-memo-created-time": "Cambia la data di creazione del Memo", + "memo-not-found": "Memo non trovato.", + "fill-all": "Compila tutti i campi.", + "password-not-match": "Le passwords non corrispondono.", + "new-password-not-match": "Le nuove password non corrispondono.", + "image-load-failed": "Caricamento dell'immagine non riuscito", + "fill-form": "Compila questo modulo", + "login-failed": "Accesso fallito", + "signup-failed": "Registrazione fallita", + "user-not-found": "Utente non trovato", + "password-changed": "Password cambiata", + "private-only": "Questo memo è solo privato.", + "copied": "Copiato", + "succeed-copy-content": "Contenuto copiato negli appunti.", + "succeed-copy-link": "Link copiato negli appunti.", + "change-resource-filename": "Modifica il nome del file della risorsa", + "resource-filename-updated": "Nome file risorsa modificato.", + "invalid-resource-filename": "Nome del file non valido.", + "click-to-save-the-image": "Clicca per salvare l'immagine", + "generating-the-screenshot": "Generazione dello screenshot...", + "count-selected-resources": "Totale selezionati", + "too-short": "Troppo corto", + "too-long": "Troppo lungo", + "not-allow-space": "Non permettere spazi", + "not-allow-chinese": "Non permettere cinese", + "succeed-vacuum-database": "Database pulito con successo", + "succeed-update-additional-style": "Stile aggiuntivo aggiornato con successo", + "succeed-copy-resource-link": "Link della risorsa copiato con successo", + "succeed-update-customized-profile": "Profilo aggiornato con successo", + "succeed-update-additional-script": "Script aggiuntivo aggiornato con successo", + "update-succeed": "Aggiornamento riuscito", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Lunedì", + "mon": "Lun", + "tuesday": "Martedì", + "tue": "Mar", + "wednesday": "Mercoledì", + "wed": "Mer", + "thursday": "Giovedì", + "thu": "Gio", + "friday": "Venerdì", + "fri": "Ven", + "saturday": "Sabato", + "sat": "Sab", + "sunday": "Domenica", + "sun": "Dom" + } } diff --git a/web/src/locales/ko.json b/web/src/locales/ko.json index 342f3a02..d678f7f2 100644 --- a/web/src/locales/ko.json +++ b/web/src/locales/ko.json @@ -1,271 +1,271 @@ { - "common": { - "sign-out": "로그아웃", - "back-to-home": "홈으로 돌아가기", - "about": "정보", - "email": "이메일", - "password": "비밀번호", - "repeat-password-short": "반복", - "repeat-password": "비밀번호 재확인", - "new-password": "새 비밀번호", - "repeat-new-password": "새 비밀번호 재확인", - "avatar": "아바타", - "username": "유저네임", - "nickname": "닉네임", - "save": "저장", - "close": "닫기", - "cancel": "취소", - "create": "생성", - "change": "변경", - "confirm": "확인", - "reset": "재설정", - "language": "언어", - "version": "버전", - "pin": "고정", - "unpin": "고정 해제", - "edit": "편집", - "restore": "복원", - "delete": "삭제", - "null": "비어 있음", - "share": "공유", - "archive": "보관 처리", - "basic": "기본", - "admin": "관리", - "explore": "탐색", - "sign-in": "로그인", - "sign-up": "회원등록", - "type": "타입", - "shortcuts": "바로가기", - "title": "제목", - "filter": "필터", - "tags": "태그", - "yourself": "자기 자신", - "archived-at": "보관처리됨", - "changed": "변경됨", - "update-on": "변동됨", - "fold": "접기", - "expand": "펼치기", - "image": "이미지", - "link": "링크", - "vacuum": "최적화", - "select": "선택", - "database": "데이터베이스" - }, - "memo": { - "copy": "복사", - "view-detail": "자세히 보기", - "visibility": { - "private": "나만 볼 수 있음", - "protected": "멤버들만 볼 수 있음", - "public": "모두가 볼 수 있음", - "disabled": "공개 메모는 비활성화됨" - } - }, - "shortcut-list": { - "shortcut-title": "바로가기 이름", - "create-shortcut": "바로가기 생성", - "edit-shortcut": "바로가기 변경", - "eligible-memo": "해당하는 메모", - "fill-previous": "위의 필터 값을 채워주세요", - "title-required": "제목이 있어야 합니다", - "value-required": "필터 값이 있어야 합니다" - }, - "amount-text": { - "memo_other": "MEMO", - "tag_other": "TAG", - "day_other": "DAY", - "memo_one": "MEMO", - "tag_one": "TAG", - "day_one": "DAY" - }, - "slogan": "지식 정리와 소셜 네트워킹 기능을 갖춘 자체 호스팅의 오픈 소스 메모 허브입니다.", - "auth": { - "signup-as-host": "호스트로서 회원등록", - "host-tip": "사이트 주인으로서의 계정을 등록합니다.", - "not-host-tip": "계정이 없다면 사이트 주인에게 문의해 주세요." - }, - "sidebar": { - "daily-review": "날마다 돌아보기", - "resources": "리소스", - "setting": "설정", - "archived": "보관함" - }, - "daily-review": { - "oops-nothing": "앗, 아무것도 없네요." - }, - "resources": { - "description": "이미지 같은 정적인 리소스를 메모에 삽입해보세요.", - "no-resources": "리소스 없음.", - "fetching-data": "불러오는 중...", - "upload": "업로드", - "preview": "미리보기", - "copy-link": "링크 복사", - "delete-resource": "리소스 삭제", - "warning-text": "이 리소스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", - "linked-amount": "연결된 메모 수", - "rename": "이름 바꾸기", - "clear": "정리", - "warning-text-unused": "사용된 적 없는 다음 리소스들을 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", - "no-unused-resources": "사용되지 않는 리소스 없음", - "name": "이름" - }, - "archived": { - "archived-memos": "보관처리된 메모", - "no-archived-memos": "보관처리된 메모가 없습니다.", - "fetching-data": "불러오는 중..." - }, - "editor": { - "editing": "편집 중...", - "cancel-edit": "편집 취소", - "save": "저장", - "placeholder": "떠오르는 게 있나요...", - "only-image-supported": "이미지 파일만 지원합니다.", - "cant-empty": "내용이 비어있을 수 없음", - "local": "로컬", - "resources": "리소스" - }, - "memo-list": { - "fetching-data": "불러오는 중...", - "fetch-more": "여기를 눌러 더 불러오세요" - }, - "filter": { - "new-filter": "새 필터", - "type": { - "tag": "태그", - "type": "종류", - "text": "내용", - "display-time": "표시 시각", - "visibility": "공개 범위" - }, - "operator": { - "contains": "포함", - "not-contains": "비포함", - "is": "해당", - "is-not": "비해당", - "before": "이전", - "after": "이후" - }, - "value": { - "not-tagged": "태그 없음", - "linked": "링크 있음" - }, - "text-placeholder": "^으로 시작하면 정규식 취급" - }, - "tag-list": { - "tip-text": "`#태그명`을 입력하세요" - }, - "search": { - "quickly-filter": "빠른 필터" - }, - "setting": { - "my-account": "내 계정", - "preference": "개인 설정", - "member": "멤버", - "member-list": "멤버 목록", - "system": "시스템", - "storage": "저장소", - "sso": "SSO", - "account-section": { - "title": "계정 정보", - "update-information": "정보 변경", - "change-password": "비밀번호 변경" - }, - "preference-section": { - "theme": "테마", - "default-memo-visibility": "메모 공개 설정 기본값", - "enable-folding-memo": "메모 접기 활성화", - "enable-double-click": "더블클릭시 편집 모드 활성화", - "editor-font-style": "편집기 글꼴 스타일", - "mobile-editor-style": "모바일 편집기 스타일", - "default-memo-sort-option": "메모에 표시할 시각", - "created_ts": "생성된 시각", - "updated_ts": "변경된 시각" - }, - "storage-section": { - "storage-services-list": "저장소 서비스 목록", - "create-a-service": "서비스 생성", - "update-a-service": "서비스 편집", - "warning-text": "이 저장소 서비스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", - "delete-storage": "저장소 삭제" - }, - "member-section": { - "create-a-member": "새 멤버 등록" - }, - "system-section": { - "server-name": "서버 이름", - "customize-server": { - "title": "서버 커스터마이징", - "default": "기본값은 memos", - "icon-url": "아이콘 URL" - }, - "database-file-size": "데이터베이스 파일 크기", - "allow-user-signup": "회원등록 허용", - "disable-public-memos": "공개된 메모 금지", - "additional-style": "추가적인 스타일", - "additional-script": "추가적인 스크립트", - "additional-style-placeholder": "추가적인 CSS 코드", - "additional-script-placeholder": "추가적인 JavaScript 코드" - }, - "apperance-option": { - "system": "시스템 설정을 따름", - "light": "항상 밝게", - "dark": "항상 어둡게" - } - }, - "message": { - "no-memos": "메모가 없습니다 🌃", - "memos-ready": "모든 메모가 준비되었습니다 🎉", - "restored-successfully": "성공적으로 복구했습니다", - "memo-updated-datetime": "메모 생성 시각이 변경되었습니다.", - "invalid-created-datetime": "생성 시각이 올바르지 않습니다.", - "change-memo-created-time": "메모 생성 시각 변경", - "memo-not-found": "메모를 찾을 수 없습니다.", - "fill-all": "모든 칸을 채워 주세요.", - "password-not-match": "비밀번호가 맞지 않습니다.", - "new-password-not-match": "새 비밀번호가 서로 맞지 않습니다.", - "image-load-failed": "이미지 불러오기 실패", - "fill-form": "이 칸들을 채워 주세요", - "login-failed": "로그인 실패", - "signup-failed": "회원등록 실패", - "user-not-found": "회원을 찾을 수 없음", - "password-changed": "비밀번호 변경됨", - "private-only": "이 메모는 비공개 전용입니다.", - "copied": "복사됨", - "succeed-copy-content": "내용을 클립보드에 복사했습니다.", - "succeed-copy-code": "코드를 클립보드에 복사했습니다.", - "succeed-copy-link": "링크를 클립보드에 복사했습니다.", - "change-resource-filename": "리소스 파일명 변경", - "resource-filename-updated": "리소스 파일명을 변경했습니다.", - "invalid-resource-filename": "올바르지 않은 파일명입니다.", - "click-to-save-the-image": "이미지를 저장하려면 클릭하세요", - "generating-the-screenshot": "스크린샷을 생성하는 중...", - "count-selected-resources": "선택된 항목", - "too-short": "너무 짧음", - "too-long": "너무 긺", - "not-allow-space": "공백 허용하지 않음", - "not-allow-chinese": "한자 허용하지 않음", - "succeed-vacuum-database": "데이터베이스 최적화 성공", - "succeed-update-additional-style": "추가적인 스타일 적용 성공", - "succeed-copy-resource-link": "리소스 링크 복사 성공", - "succeed-update-customized-profile": "프로필 정보 적용 성공", - "succeed-update-additional-script": "추가적인 스크립트 적용 성공", - "update-succeed": "업데이트 성공", - "page-not-found": "404 - 페이지를 찾을 수 없습니다 😥" - }, - "days": { - "monday": "월요일", - "mon": "월", - "tuesday": "화요일", - "tue": "화", - "wednesday": "수요일", - "wed": "수", - "thursday": "목요일", - "thu": "목", - "friday": "금요일", - "fri": "금", - "saturday": "토요일", - "sat": "토", - "sunday": "일요일", - "sun": "일" + "common": { + "sign-out": "로그아웃", + "back-to-home": "홈으로 돌아가기", + "about": "정보", + "email": "이메일", + "password": "비밀번호", + "repeat-password-short": "반복", + "repeat-password": "비밀번호 재확인", + "new-password": "새 비밀번호", + "repeat-new-password": "새 비밀번호 재확인", + "avatar": "아바타", + "username": "유저네임", + "nickname": "닉네임", + "save": "저장", + "close": "닫기", + "cancel": "취소", + "create": "생성", + "change": "변경", + "confirm": "확인", + "reset": "재설정", + "language": "언어", + "version": "버전", + "pin": "고정", + "unpin": "고정 해제", + "edit": "편집", + "restore": "복원", + "delete": "삭제", + "null": "비어 있음", + "share": "공유", + "archive": "보관 처리", + "basic": "기본", + "admin": "관리", + "explore": "탐색", + "sign-in": "로그인", + "sign-up": "회원등록", + "type": "타입", + "shortcuts": "바로가기", + "title": "제목", + "filter": "필터", + "tags": "태그", + "yourself": "자기 자신", + "archived-at": "보관처리됨", + "changed": "변경됨", + "update-on": "변동됨", + "fold": "접기", + "expand": "펼치기", + "image": "이미지", + "link": "링크", + "vacuum": "최적화", + "select": "선택", + "database": "데이터베이스" + }, + "memo": { + "copy": "복사", + "view-detail": "자세히 보기", + "visibility": { + "private": "나만 볼 수 있음", + "protected": "멤버들만 볼 수 있음", + "public": "모두가 볼 수 있음", + "disabled": "공개 메모는 비활성화됨" } + }, + "shortcut-list": { + "shortcut-title": "바로가기 이름", + "create-shortcut": "바로가기 생성", + "edit-shortcut": "바로가기 변경", + "eligible-memo": "해당하는 메모", + "fill-previous": "위의 필터 값을 채워주세요", + "title-required": "제목이 있어야 합니다", + "value-required": "필터 값이 있어야 합니다" + }, + "amount-text": { + "memo_other": "MEMO", + "tag_other": "TAG", + "day_other": "DAY", + "memo_one": "MEMO", + "tag_one": "TAG", + "day_one": "DAY" + }, + "slogan": "지식 정리와 소셜 네트워킹 기능을 갖춘 자체 호스팅의 오픈 소스 메모 허브입니다.", + "auth": { + "signup-as-host": "호스트로서 회원등록", + "host-tip": "사이트 주인으로서의 계정을 등록합니다.", + "not-host-tip": "계정이 없다면 사이트 주인에게 문의해 주세요." + }, + "sidebar": { + "daily-review": "날마다 돌아보기", + "resources": "리소스", + "setting": "설정", + "archived": "보관함" + }, + "daily-review": { + "oops-nothing": "앗, 아무것도 없네요." + }, + "resources": { + "description": "이미지 같은 정적인 리소스를 메모에 삽입해보세요.", + "no-resources": "리소스 없음.", + "fetching-data": "불러오는 중...", + "upload": "업로드", + "preview": "미리보기", + "copy-link": "링크 복사", + "delete-resource": "리소스 삭제", + "warning-text": "이 리소스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", + "linked-amount": "연결된 메모 수", + "rename": "이름 바꾸기", + "clear": "정리", + "warning-text-unused": "사용된 적 없는 다음 리소스들을 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", + "no-unused-resources": "사용되지 않는 리소스 없음", + "name": "이름" + }, + "archived": { + "archived-memos": "보관처리된 메모", + "no-archived-memos": "보관처리된 메모가 없습니다.", + "fetching-data": "불러오는 중..." + }, + "editor": { + "editing": "편집 중...", + "cancel-edit": "편집 취소", + "save": "저장", + "placeholder": "떠오르는 게 있나요...", + "only-image-supported": "이미지 파일만 지원합니다.", + "cant-empty": "내용이 비어있을 수 없음", + "local": "로컬", + "resources": "리소스" + }, + "memo-list": { + "fetching-data": "불러오는 중...", + "fetch-more": "여기를 눌러 더 불러오세요" + }, + "filter": { + "new-filter": "새 필터", + "type": { + "tag": "태그", + "type": "종류", + "text": "내용", + "display-time": "표시 시각", + "visibility": "공개 범위" + }, + "operator": { + "contains": "포함", + "not-contains": "비포함", + "is": "해당", + "is-not": "비해당", + "before": "이전", + "after": "이후" + }, + "value": { + "not-tagged": "태그 없음", + "linked": "링크 있음" + }, + "text-placeholder": "^으로 시작하면 정규식 취급" + }, + "tag-list": { + "tip-text": "`#태그명`을 입력하세요" + }, + "search": { + "quickly-filter": "빠른 필터" + }, + "setting": { + "my-account": "내 계정", + "preference": "개인 설정", + "member": "멤버", + "member-list": "멤버 목록", + "system": "시스템", + "storage": "저장소", + "sso": "SSO", + "account-section": { + "title": "계정 정보", + "update-information": "정보 변경", + "change-password": "비밀번호 변경" + }, + "preference-section": { + "theme": "테마", + "default-memo-visibility": "메모 공개 설정 기본값", + "enable-folding-memo": "메모 접기 활성화", + "enable-double-click": "더블클릭시 편집 모드 활성화", + "editor-font-style": "편집기 글꼴 스타일", + "mobile-editor-style": "모바일 편집기 스타일", + "default-memo-sort-option": "메모에 표시할 시각", + "created_ts": "생성된 시각", + "updated_ts": "변경된 시각" + }, + "storage-section": { + "storage-services-list": "저장소 서비스 목록", + "create-a-service": "서비스 생성", + "update-a-service": "서비스 편집", + "warning-text": "이 저장소 서비스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗", + "delete-storage": "저장소 삭제" + }, + "member-section": { + "create-a-member": "새 멤버 등록" + }, + "system-section": { + "server-name": "서버 이름", + "customize-server": { + "title": "서버 커스터마이징", + "default": "기본값은 memos", + "icon-url": "아이콘 URL" + }, + "database-file-size": "데이터베이스 파일 크기", + "allow-user-signup": "회원등록 허용", + "disable-public-memos": "공개된 메모 금지", + "additional-style": "추가적인 스타일", + "additional-script": "추가적인 스크립트", + "additional-style-placeholder": "추가적인 CSS 코드", + "additional-script-placeholder": "추가적인 JavaScript 코드" + }, + "appearance-option": { + "system": "시스템 설정을 따름", + "light": "항상 밝게", + "dark": "항상 어둡게" + } + }, + "message": { + "no-memos": "메모가 없습니다 🌃", + "memos-ready": "모든 메모가 준비되었습니다 🎉", + "restored-successfully": "성공적으로 복구했습니다", + "memo-updated-datetime": "메모 생성 시각이 변경되었습니다.", + "invalid-created-datetime": "생성 시각이 올바르지 않습니다.", + "change-memo-created-time": "메모 생성 시각 변경", + "memo-not-found": "메모를 찾을 수 없습니다.", + "fill-all": "모든 칸을 채워 주세요.", + "password-not-match": "비밀번호가 맞지 않습니다.", + "new-password-not-match": "새 비밀번호가 서로 맞지 않습니다.", + "image-load-failed": "이미지 불러오기 실패", + "fill-form": "이 칸들을 채워 주세요", + "login-failed": "로그인 실패", + "signup-failed": "회원등록 실패", + "user-not-found": "회원을 찾을 수 없음", + "password-changed": "비밀번호 변경됨", + "private-only": "이 메모는 비공개 전용입니다.", + "copied": "복사됨", + "succeed-copy-content": "내용을 클립보드에 복사했습니다.", + "succeed-copy-code": "코드를 클립보드에 복사했습니다.", + "succeed-copy-link": "링크를 클립보드에 복사했습니다.", + "change-resource-filename": "리소스 파일명 변경", + "resource-filename-updated": "리소스 파일명을 변경했습니다.", + "invalid-resource-filename": "올바르지 않은 파일명입니다.", + "click-to-save-the-image": "이미지를 저장하려면 클릭하세요", + "generating-the-screenshot": "스크린샷을 생성하는 중...", + "count-selected-resources": "선택된 항목", + "too-short": "너무 짧음", + "too-long": "너무 긺", + "not-allow-space": "공백 허용하지 않음", + "not-allow-chinese": "한자 허용하지 않음", + "succeed-vacuum-database": "데이터베이스 최적화 성공", + "succeed-update-additional-style": "추가적인 스타일 적용 성공", + "succeed-copy-resource-link": "리소스 링크 복사 성공", + "succeed-update-customized-profile": "프로필 정보 적용 성공", + "succeed-update-additional-script": "추가적인 스크립트 적용 성공", + "update-succeed": "업데이트 성공", + "page-not-found": "404 - 페이지를 찾을 수 없습니다 😥" + }, + "days": { + "monday": "월요일", + "mon": "월", + "tuesday": "화요일", + "tue": "화", + "wednesday": "수요일", + "wed": "수", + "thursday": "목요일", + "thu": "목", + "friday": "금요일", + "fri": "금", + "saturday": "토요일", + "sat": "토", + "sunday": "일요일", + "sun": "일" + } } diff --git a/web/src/locales/nl.json b/web/src/locales/nl.json index 4d0cf6cc..a565f93a 100644 --- a/web/src/locales/nl.json +++ b/web/src/locales/nl.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Over", - "email": "E-mailadres", - "password": "Wachtwoord", - "new-password": "Nieuw wachtwoord", - "repeat-new-password": "Nieuw wachtwoord herhalen", - "username": "Gebruikersnaam", - "nickname": "Bijnaam", - "save": "Opslaan", - "close": "Sluiten", - "cancel": "Annuleren", - "create": "Aanmaken", - "change": "Wijzigen", - "confirm": "Bevestigen", - "reset": "Herstel", - "language": "Taal", - "version": "Versie", - "pin": "Vastzetten", - "unpin": "Losmaken", - "edit": "Bijwerken", - "restore": "Terugzetten", - "delete": "Verwijderen", - "null": "Null", - "share": "Delen", - "archive": "Archiveren", - "basic": "Simpel", - "admin": "Admin", - "explore": "Ontdekken", - "sign-in": "Inloggen", - "sign-up": "Registreren", - "sign-out": "Uitloggen", - "back-to-home": "Terug naar homepagina", - "type": "Type", - "shortcuts": "Snelkoppelingen", - "title": "Titel", - "filter": "Filter", - "tags": "Labels", - "yourself": "Jij zelf", - "archived-at": "Gearchiveerd op", - "changed": "gewijzigd", - "update-on": "Update op", - "fold": "Invouwen", - "expand": "Uitklappen", - "vacuum": "Vacuum", - "avatar": "Avatar", - "repeat-password-short": "Herhaal", - "repeat-password": "Herhaal wachtwoord", - "image": "Afbeelding", - "link": "Link", - "select": "Selecteer", - "database": "Database" - }, - "slogan": "Een open-source, zelf-beheerd memo applicatie voor kennismanagement en collaboratie.", - "auth": { - "signup-as-host": "Registreren als Host", - "host-tip": "Je registreert je als Site Host.", - "not-host-tip": "Als je geen account hebt, neem dan contact op met de site host." - }, - "sidebar": { - "daily-review": "Dagelijkse Review", - "resources": "Bronnen", - "setting": "Instellingen", - "archived": "Gearchiveerd" - }, - "daily-review": { - "oops-nothing": "Oeps, er is niets." - }, - "resources": { - "description": "Bekijk je statische bronnen in memos, zoals foto's.", - "no-resources": "Geen bronnen.", - "fetching-data": "data aan het ophalen...", - "upload": "Uploaden", - "preview": "Voorbeeld", - "copy-link": "Kopiëer Link", - "delete-resource": "Bron verwijderen", - "warning-text": "Weet je zeker dat je deze bron wilt verwijderen? Deze actie is NIET terug te draaien!", - "linked-amount": "Aantal gelinkte memo's", - "rename": "Hernoemen", - "warning-text-unused": "Weet je zeker dat je deze ongebruikte bron wilt verwijderen? Deze actie is NIET terug te draaien!", - "no-unused-resources": "Geen ongebruikte bronnen", - "name": "Name", - "clear": "Opruimen" - }, - "archived": { - "archived-memos": "Gearchiveerde Memos", - "no-archived-memos": "Geen gearchiveerde memos.", - "fetching-data": "data aan het ophalen..." - }, - "editor": { - "editing": "Aan het wijzigen...", - "cancel-edit": "Annuleer wijziging", - "save": "Opslaan", - "placeholder": "Leeg je gedachten...", - "only-image-supported": "Alleen afbeeldingen worden ondersteund.", - "cant-empty": "Inhoud kan niet leeg zijn", - "local": "Lokaal", - "resources": "Bronnen" - }, - "memo": { - "view-detail": "Bekijk Detail", - "copy": "Kopiëer", - "visibility": { - "private": "Privé", - "protected": "Zichtbaar voor leden", - "public": "Openbaar", - "disabled": "Openbare memos zijn uitgezet" - } - }, - "memo-list": { - "fetching-data": "data aan het ophalen...", - "fetch-more": "Klik hier om meer op te halen" - }, - "shortcut-list": { - "shortcut-title": "snelkoppelingstitel", - "create-shortcut": "Maak Snelkoppeling", - "edit-shortcut": "Wijzig Shortcut", - "eligible-memo": "geschikte memo", - "fill-previous": "Vul alsjeblieft het vorige filter in", - "title-required": "Titel is verplicht", - "value-required": "Filter is verplicht" - }, - "filter": { - "new-filter": "Nieuw Filter", - "type": { - "tag": "Tag", - "type": "Type", - "text": "Text", - "display-time": "Display Time", - "visibility": "Visibility" - }, - "operator": { - "contains": "Bevat", - "not-contains": "Bevat niet", - "is": "Is", - "is-not": "Is Niet", - "before": "Voor", - "after": "Na" - }, - "value": { - "not-tagged": "Geen labels", - "linked": "Heeft links" - }, - "text-placeholder": "Begin met ^ om RegEx te gebruiken." - }, - "tag-list": { - "tip-text": "Typ `#label ` om aan te maken" - }, - "search": { - "quickly-filter": "Snel filteren" - }, - "setting": { - "my-account": "Mijn account", - "preference": "Voorkeuren", - "member": "Lid", - "member-list": "Ledenlijst", - "system": "Systeem", - "account-section": { - "title": "Accountinformatie", - "update-information": "Informatie wijzigen", - "change-password": "Wachtwoord wijzigen" - }, - "preference-section": { - "theme": "Thema", - "default-memo-visibility": "Standaard memo zichtbaarheid", - "enable-folding-memo": "Vouwende memo aanzetten", - "editor-font-style": "Editor lettertype", - "mobile-editor-style": "Mobiele editor uiterlijk", - "default-memo-sort-option": "Sorteer op tijd van aanmaken/wijziging", - "created_ts": "Tijd van aanmaken", - "updated_ts": "Tijd van wijziging", - "enable-double-click": "Dubbelklik voor bewerken aanzetten" - }, - "member-section": { - "create-a-member": "Lid toevoegen" - }, - "system-section": { - "server-name": "Server Name", - "customize-server": { - "title": "Customize Server", - "default": "Default is memos", - "icon-url": "Icon URL" - }, - "database-file-size": "Database bestandsgrootte", - "allow-user-signup": "Registratie toestaan", - "additional-style": "Optionele stijl", - "additional-script": "Optionele scripts", - "additional-style-placeholder": "Optionele CSS code", - "additional-script-placeholder": "Optionele JavaScript code", - "disable-public-memos": "Openbare memos uitzetten" - }, - "apperance-option": { - "light": "Altijd licht", - "dark": "Altijd donker", - "system": "Volg systeem" - }, - "storage": "Opslag", - "sso": "SSO", - "storage-section": { - "storage-services-list": "Opslagdiensten", - "create-a-service": "Dienst aanmaken", - "update-a-service": "Dienst bijwerken", - "warning-text": "Weet je zeker dat je deze opslagdienst wilt verwijderen? Dit is NIET terug te draaien!", - "delete-storage": "Opslag verwijderen" - } - }, - "amount-text": { - "memo_one": "MEMO", - "memo_other": "MEMOS", - "tag_one": "LABEL", - "tag_other": "LABELS", - "day_one": "DAG", - "day_other": "DAGEN" - }, - "message": { - "no-memos": "geen memos 🌃", - "memos-ready": "alle memos zijn geladen 🎉", - "restored-successfully": "Succesvol teruggezet", - "memo-updated-datetime": "Tijd van aanmaken gewijzigd.", - "invalid-created-datetime": "Onjuiste tijd van aanmaken.", - "change-memo-created-time": "Tijd van aanmaken wijzigen", - "memo-not-found": "Memo niet gevonden.", - "fill-all": "Vul alsjeblieft alle velden in.", - "new-password-not-match": "Nieuwe wachtwoorden komen niet overeen.", - "image-load-failed": "Afbeelding laden mislukt", - "fill-form": "Vul alsjeblieft het formulier in.", - "login-failed": "Inloggen mislukt", - "signup-failed": "Registreren mislukt", - "user-not-found": "Gebruiker niet gevonden", - "password-changed": "Wachtwoord gewijzigd.", - "private-only": "Deze memo is alleen privé.", - "copied": "Gekopiëerd", - "succeed-copy-content": "Inhoud gekopiëerd naar klembord.", - "change-resource-filename": "Bestandsnaam van bron wijzigen", - "resource-filename-updated": "Bestandsnaam van bron gewijzigd.", - "invalid-resource-filename": "Onjuiste bestandsnaam.", - "click-to-save-the-image": "Klik om de afbeelding op te slaan", - "generating-the-screenshot": "Screenshot genereren...", - "succeed-vacuum-database": "Succeed to vacuum database", - "succeed-update-additional-style": "Optionele stijl bijgewerkt", - "succeed-copy-resource-link": "Link naar bron gekopieërd naar klembord.", - "succeed-update-customized-profile": "Profiel bijgewerkt.", - "succeed-update-additional-script": "Optioneel script bijgewerkt.", - "update-succeed": "Update voltooid", - "succeed-copy-code": "Code gekopieërd naar klembord.", - "too-short": "Te kort", - "too-long": "Te lang", - "not-allow-space": "Spaties zijn niet toegestaan", - "not-allow-chinese": "Chinees is niet toegestaan", - "page-not-found": "404 - Pagina niet gevonden 😥", - "password-not-match": "Wachtwoorden komen niet overeen.", - "succeed-copy-link": "Link gekopieërd naar klembord.", - "count-selected-resources": "Totaal geselecteerd" - }, - "days": { - "monday": "Maandag", - "mon": "ma", - "tuesday": "Dinsdag", - "tue": "di", - "wednesday": "Woensdag", - "wed": "woe", - "thursday": "Donderdag", - "thu": "don", - "friday": "Vrijdag", - "fri": "vrij", - "saturday": "Zaterdag", - "sat": "zat", - "sunday": "Zondag", - "sun": "zon" + "common": { + "about": "Over", + "email": "E-mailadres", + "password": "Wachtwoord", + "new-password": "Nieuw wachtwoord", + "repeat-new-password": "Nieuw wachtwoord herhalen", + "username": "Gebruikersnaam", + "nickname": "Bijnaam", + "save": "Opslaan", + "close": "Sluiten", + "cancel": "Annuleren", + "create": "Aanmaken", + "change": "Wijzigen", + "confirm": "Bevestigen", + "reset": "Herstel", + "language": "Taal", + "version": "Versie", + "pin": "Vastzetten", + "unpin": "Losmaken", + "edit": "Bijwerken", + "restore": "Terugzetten", + "delete": "Verwijderen", + "null": "Null", + "share": "Delen", + "archive": "Archiveren", + "basic": "Simpel", + "admin": "Admin", + "explore": "Ontdekken", + "sign-in": "Inloggen", + "sign-up": "Registreren", + "sign-out": "Uitloggen", + "back-to-home": "Terug naar homepagina", + "type": "Type", + "shortcuts": "Snelkoppelingen", + "title": "Titel", + "filter": "Filter", + "tags": "Labels", + "yourself": "Jij zelf", + "archived-at": "Gearchiveerd op", + "changed": "gewijzigd", + "update-on": "Update op", + "fold": "Invouwen", + "expand": "Uitklappen", + "vacuum": "Vacuum", + "avatar": "Avatar", + "repeat-password-short": "Herhaal", + "repeat-password": "Herhaal wachtwoord", + "image": "Afbeelding", + "link": "Link", + "select": "Selecteer", + "database": "Database" + }, + "slogan": "Een open-source, zelf-beheerd memo applicatie voor kennismanagement en collaboratie.", + "auth": { + "signup-as-host": "Registreren als Host", + "host-tip": "Je registreert je als Site Host.", + "not-host-tip": "Als je geen account hebt, neem dan contact op met de site host." + }, + "sidebar": { + "daily-review": "Dagelijkse Review", + "resources": "Bronnen", + "setting": "Instellingen", + "archived": "Gearchiveerd" + }, + "daily-review": { + "oops-nothing": "Oeps, er is niets." + }, + "resources": { + "description": "Bekijk je statische bronnen in memos, zoals foto's.", + "no-resources": "Geen bronnen.", + "fetching-data": "data aan het ophalen...", + "upload": "Uploaden", + "preview": "Voorbeeld", + "copy-link": "Kopiëer Link", + "delete-resource": "Bron verwijderen", + "warning-text": "Weet je zeker dat je deze bron wilt verwijderen? Deze actie is NIET terug te draaien!", + "linked-amount": "Aantal gelinkte memo's", + "rename": "Hernoemen", + "warning-text-unused": "Weet je zeker dat je deze ongebruikte bron wilt verwijderen? Deze actie is NIET terug te draaien!", + "no-unused-resources": "Geen ongebruikte bronnen", + "name": "Name", + "clear": "Opruimen" + }, + "archived": { + "archived-memos": "Gearchiveerde Memos", + "no-archived-memos": "Geen gearchiveerde memos.", + "fetching-data": "data aan het ophalen..." + }, + "editor": { + "editing": "Aan het wijzigen...", + "cancel-edit": "Annuleer wijziging", + "save": "Opslaan", + "placeholder": "Leeg je gedachten...", + "only-image-supported": "Alleen afbeeldingen worden ondersteund.", + "cant-empty": "Inhoud kan niet leeg zijn", + "local": "Lokaal", + "resources": "Bronnen" + }, + "memo": { + "view-detail": "Bekijk Detail", + "copy": "Kopiëer", + "visibility": { + "private": "Privé", + "protected": "Zichtbaar voor leden", + "public": "Openbaar", + "disabled": "Openbare memos zijn uitgezet" } + }, + "memo-list": { + "fetching-data": "data aan het ophalen...", + "fetch-more": "Klik hier om meer op te halen" + }, + "shortcut-list": { + "shortcut-title": "snelkoppelingstitel", + "create-shortcut": "Maak Snelkoppeling", + "edit-shortcut": "Wijzig Shortcut", + "eligible-memo": "geschikte memo", + "fill-previous": "Vul alsjeblieft het vorige filter in", + "title-required": "Titel is verplicht", + "value-required": "Filter is verplicht" + }, + "filter": { + "new-filter": "Nieuw Filter", + "type": { + "tag": "Tag", + "type": "Type", + "text": "Text", + "display-time": "Display Time", + "visibility": "Visibility" + }, + "operator": { + "contains": "Bevat", + "not-contains": "Bevat niet", + "is": "Is", + "is-not": "Is Niet", + "before": "Voor", + "after": "Na" + }, + "value": { + "not-tagged": "Geen labels", + "linked": "Heeft links" + }, + "text-placeholder": "Begin met ^ om RegEx te gebruiken." + }, + "tag-list": { + "tip-text": "Typ `#label ` om aan te maken" + }, + "search": { + "quickly-filter": "Snel filteren" + }, + "setting": { + "my-account": "Mijn account", + "preference": "Voorkeuren", + "member": "Lid", + "member-list": "Ledenlijst", + "system": "Systeem", + "account-section": { + "title": "Accountinformatie", + "update-information": "Informatie wijzigen", + "change-password": "Wachtwoord wijzigen" + }, + "preference-section": { + "theme": "Thema", + "default-memo-visibility": "Standaard memo zichtbaarheid", + "enable-folding-memo": "Vouwende memo aanzetten", + "editor-font-style": "Editor lettertype", + "mobile-editor-style": "Mobiele editor uiterlijk", + "default-memo-sort-option": "Sorteer op tijd van aanmaken/wijziging", + "created_ts": "Tijd van aanmaken", + "updated_ts": "Tijd van wijziging", + "enable-double-click": "Dubbelklik voor bewerken aanzetten" + }, + "member-section": { + "create-a-member": "Lid toevoegen" + }, + "system-section": { + "server-name": "Server Name", + "customize-server": { + "title": "Customize Server", + "default": "Default is memos", + "icon-url": "Icon URL" + }, + "database-file-size": "Database bestandsgrootte", + "allow-user-signup": "Registratie toestaan", + "additional-style": "Optionele stijl", + "additional-script": "Optionele scripts", + "additional-style-placeholder": "Optionele CSS code", + "additional-script-placeholder": "Optionele JavaScript code", + "disable-public-memos": "Openbare memos uitzetten" + }, + "appearance-option": { + "light": "Altijd licht", + "dark": "Altijd donker", + "system": "Volg systeem" + }, + "storage": "Opslag", + "sso": "SSO", + "storage-section": { + "storage-services-list": "Opslagdiensten", + "create-a-service": "Dienst aanmaken", + "update-a-service": "Dienst bijwerken", + "warning-text": "Weet je zeker dat je deze opslagdienst wilt verwijderen? Dit is NIET terug te draaien!", + "delete-storage": "Opslag verwijderen" + } + }, + "amount-text": { + "memo_one": "MEMO", + "memo_other": "MEMOS", + "tag_one": "LABEL", + "tag_other": "LABELS", + "day_one": "DAG", + "day_other": "DAGEN" + }, + "message": { + "no-memos": "geen memos 🌃", + "memos-ready": "alle memos zijn geladen 🎉", + "restored-successfully": "Succesvol teruggezet", + "memo-updated-datetime": "Tijd van aanmaken gewijzigd.", + "invalid-created-datetime": "Onjuiste tijd van aanmaken.", + "change-memo-created-time": "Tijd van aanmaken wijzigen", + "memo-not-found": "Memo niet gevonden.", + "fill-all": "Vul alsjeblieft alle velden in.", + "new-password-not-match": "Nieuwe wachtwoorden komen niet overeen.", + "image-load-failed": "Afbeelding laden mislukt", + "fill-form": "Vul alsjeblieft het formulier in.", + "login-failed": "Inloggen mislukt", + "signup-failed": "Registreren mislukt", + "user-not-found": "Gebruiker niet gevonden", + "password-changed": "Wachtwoord gewijzigd.", + "private-only": "Deze memo is alleen privé.", + "copied": "Gekopiëerd", + "succeed-copy-content": "Inhoud gekopiëerd naar klembord.", + "change-resource-filename": "Bestandsnaam van bron wijzigen", + "resource-filename-updated": "Bestandsnaam van bron gewijzigd.", + "invalid-resource-filename": "Onjuiste bestandsnaam.", + "click-to-save-the-image": "Klik om de afbeelding op te slaan", + "generating-the-screenshot": "Screenshot genereren...", + "succeed-vacuum-database": "Succeed to vacuum database", + "succeed-update-additional-style": "Optionele stijl bijgewerkt", + "succeed-copy-resource-link": "Link naar bron gekopieërd naar klembord.", + "succeed-update-customized-profile": "Profiel bijgewerkt.", + "succeed-update-additional-script": "Optioneel script bijgewerkt.", + "update-succeed": "Update voltooid", + "succeed-copy-code": "Code gekopieërd naar klembord.", + "too-short": "Te kort", + "too-long": "Te lang", + "not-allow-space": "Spaties zijn niet toegestaan", + "not-allow-chinese": "Chinees is niet toegestaan", + "page-not-found": "404 - Pagina niet gevonden 😥", + "password-not-match": "Wachtwoorden komen niet overeen.", + "succeed-copy-link": "Link gekopieërd naar klembord.", + "count-selected-resources": "Totaal geselecteerd" + }, + "days": { + "monday": "Maandag", + "mon": "ma", + "tuesday": "Dinsdag", + "tue": "di", + "wednesday": "Woensdag", + "wed": "woe", + "thursday": "Donderdag", + "thu": "don", + "friday": "Vrijdag", + "fri": "vrij", + "saturday": "Zaterdag", + "sat": "zat", + "sunday": "Zondag", + "sun": "zon" + } } diff --git a/web/src/locales/pl.json b/web/src/locales/pl.json index 027ffe8f..fc9ff88a 100644 --- a/web/src/locales/pl.json +++ b/web/src/locales/pl.json @@ -1,271 +1,271 @@ { - "common": { - "about": "O aplikacji", - "email": "E-mail", - "password": "Hasło", - "repeat-password-short": "Powtórz", - "repeat-password": "Powtórz hasło", - "new-password": "Nowe hasło", - "repeat-new-password": "Powtórz nowe hasło", - "avatar": "Awatar", - "username": "Nazwa użytkownika", - "nickname": "Pseudonim", - "save": "Zapisz", - "close": "Zamknij", - "cancel": "Anuluj", - "create": "Utwórz", - "change": "Zmień", - "confirm": "Potwierdź", - "reset": "Resetuj", - "language": "Język", - "version": "Wersja", - "pin": "Przypnij", - "unpin": "Odepnij", - "edit": "Edytuj", - "restore": "Przywróć", - "delete": "Usuń", - "null": "Null", - "share": "Udostępnij", - "archive": "Archiwizuj", - "basic": "Podstawowe", - "admin": "Admin", - "explore": "Odkrywaj", - "sign-in": "Zaloguj", - "sign-up": "Utwórz konto", - "sign-out": "Wyloguj", - "back-to-home": "Powrót do Strony Głównej", - "type": "Typ", - "shortcuts": "Skróty", - "title": "Tytuł", - "filter": "Filtruj", - "tags": "Tagi", - "yourself": "Ty", - "archived-at": "Zarchiwizowano", - "changed": "zmodyfikowano", - "update-on": "Aktualizacja dnia", - "fold": "Zwiń", - "expand": "Rozwiń", - "image": "Obrazek", - "link": "Link", - "vacuum": "Vacuum", - "select": "Wybierz", - "database": "Baza danych" - }, - "slogan": "Open-source centrum notatek do samodzielnego hostowania z zarządzaniem wiedzą i sieciami społecznościowymi.", - "auth": { - "signup-as-host": "Zarejestruj się jako właściciel", - "host-tip": "Rejestrujesz się jako właściciel.", - "not-host-tip": "Jeśli nie posiadasz konta skontaktuj się z właścicielem strony." - }, - "sidebar": { - "daily-review": "Podsumowanie dnia", - "resources": "Zasoby", - "setting": "Ustawienia", - "archived": "Zarchiwizowane" - }, - "daily-review": { - "oops-nothing": "Ups, nic tu nie ma." - }, - "resources": { - "description": "Zobacz statyczne zasoby w notatkach, na przykład obrazki", - "no-resources": "Brak zasobów.", - "fetching-data": "pobieranie danych...", - "upload": "Wrzuć", - "preview": "Podgląd", - "linked-amount": "Liczba kwalifikujących się notatek", - "copy-link": "Kopiuj odnośnik", - "delete-resource": "Usuń zasób", - "warning-text": "Czy na pewno chcesz usunąć zasób? To działanie jest nieodwracalne❗", - "rename": "Zmień nazwę", - "clear": "Wyczyść", - "warning-text-unused": "Czy na pewno chcesz usunąć nieużywany zasób? To działanie jest nieodwracalne❗", - "no-unused-resources": "Brak nieużywanych zasobów", - "name": "Nazwa" - }, - "archived": { - "archived-memos": "Zarchiwizowane notatki", - "no-archived-memos": "Brak zarchiwizowanych notatek.", - "fetching-data": "pobieranie danych..." - }, - "editor": { - "editing": "Edytowanie...", - "cancel-edit": "Anuluj edycję", - "save": "Zapisz", - "placeholder": "Jakieś przemyślenia...", - "only-image-supported": "Obsługiwane są tylko obrazy.", - "cant-empty": "Treść nie może być pusta", - "local": "Lokalne", - "resources": "Zasoby" - }, - "memo": { - "view-detail": "Zobacz szczegóły", - "copy": "Kopiuj", - "visibility": { - "private": "Widoczne tylko dla ciebie", - "protected": "Widoczne dla użytkowników", - "public": "Widoczne dla wszystkich", - "disabled": "Publiczne notatki są wyłączone" - } - }, - "memo-list": { - "fetching-data": "pobieranie danych...", - "fetch-more": "Kliknij, aby pobrać więcej" - }, - "shortcut-list": { - "shortcut-title": "krótki tytuł", - "create-shortcut": "Utwórz skrót", - "edit-shortcut": "Edytuj skrót", - "eligible-memo": "kwalifikująca się notatka", - "fill-previous": "Proszę uzupełnij poprzednią wartość filtra", - "title-required": "Tytuł jest wymagany", - "value-required": "Wartość filtra jest wymagana" - }, - "filter": { - "new-filter": "Nowy filtr", - "type": { - "tag": "Tag", - "type": "Typ", - "text": "Tekst", - "display-time": "Wyświetlana data", - "visibility": "Widoczność" - }, - "operator": { - "contains": "Zawiera", - "not-contains": "Nie zawiera", - "is": "To", - "is-not": "Różny od", - "before": "Przed", - "after": "Po" - }, - "value": { - "not-tagged": "Brak tagów", - "linked": "Posiada linki" - }, - "text-placeholder": "Rozpocznij z ^, aby wykorzystać regex" - }, - "tag-list": { - "tip-text": "Wprowadź `#tag` aby utworzyć" - }, - "search": { - "quickly-filter": "Szybkie filtry" - }, - "setting": { - "my-account": "Moje konto", - "preference": "Ustawienia", - "member": "Użytkownik", - "member-list": "Lista użytkowników", - "system": "System", - "storage": "Przechowywanie", - "sso": "SSO", - "account-section": { - "title": "Informacje o koncie", - "update-information": "Aktualizuj informacje", - "change-password": "Zmień hasło" - }, - "preference-section": { - "theme": "Motyw", - "default-memo-visibility": "Domyślna widoczność notatki", - "enable-folding-memo": "Włącz zawijanie notatek", - "enable-double-click": "Włącz podwójne kliknięcie aby edytować", - "editor-font-style": "Styl czcionki w edytorze", - "mobile-editor-style": "Styl edytora mobilnego", - "default-memo-sort-option": "Wyświetlana data notatki", - "created_ts": "Data utworzenia", - "updated_ts": "Data aktualizacji" - }, - "storage-section": { - "storage-services-list": "Lista usług przechowywania", - "create-a-service": "Utwórz serwis", - "update-a-service": "Aktualizuj serwis", - "warning-text": "Czy na pewno chcesz usunąć ten serwis przechowywania? Ta akcja jest nieodwracalna❗", - "delete-storage": "Usuń serwis przechowywania" - }, - "member-section": { - "create-a-member": "Utwórz użytkownika" - }, - "system-section": { - "server-name": "Nazwa serwera", - "customize-server": { - "title": "Personalizuj serwer", - "default": "Domyślnie to memos", - "icon-url": "URL ikony" - }, - "database-file-size": "Rozmiar bazy danych", - "allow-user-signup": "Zezwól na rejestrację", - "disable-public-memos": "Wyłącz publiczne notatki", - "additional-style": "Dodatkowy styl", - "additional-script": "Dodatkowy skrypt", - "additional-style-placeholder": "Dodatkowy kod CSS", - "additional-script-placeholder": "Dodatkowy kod JavaScript" - }, - "apperance-option": { - "system": "Systemowy", - "light": "Zawsze jasny", - "dark": "Zawsze ciemny" - } - }, - "amount-text": { - "memo_one": "NOTATKA", - "memo_few": "", - "tag_one": "TAG", - "tag_few": "", - "day_one": "DZIEŃ", - "day_few": "" - }, - "message": { - "no-memos": "brak notatek 🌃", - "memos-ready": "wszystkie notatki są gotowe 🎉", - "restored-successfully": "Pomyślnie przywrócono", - "memo-updated-datetime": "Zmieniono datę utworzenia notatki.", - "invalid-created-datetime": "Niepoprawna data utworzenia.", - "change-memo-created-time": "Zmień datę utworzenia notatki", - "memo-not-found": "Nie znaleziono notatki.", - "fill-all": "Proszę uzupełnij wszystkie pola.", - "password-not-match": "Hasła się nie zgadzają.", - "new-password-not-match": "Nowe hasła się nie zgadzają.", - "image-load-failed": "Nie udało się wczytać obrazka", - "fill-form": "Proszę uzupełnij formularz", - "login-failed": "Błąd logowania", - "signup-failed": "Błąd rejestracji", - "user-not-found": "Nie znaleziono użytkownika", - "password-changed": "Zmieniono hasło", - "private-only": "Ta notatka jest prywatna.", - "copied": "Skopiowano", - "succeed-copy-content": "Skopiowano treść do schowka.", - "succeed-copy-code": "Skopiowano kod do schowka.", - "succeed-copy-link": "Skopiowano link do schowka.", - "change-resource-filename": "Zmień nazwę pliku zasobu", - "resource-filename-updated": "Zmieniono nazwę pliku zasobu.", - "invalid-resource-filename": "Niepoprawna nazwa pliku.", - "click-to-save-the-image": "Kliknij aby zapisać obrazek", - "generating-the-screenshot": "Generowanie zrzutu ekranu...", - "count-selected-resources": "Wybrano łącznie", - "too-short": "Za krótkie", - "too-long": "Za długie", - "not-allow-space": "Spacja niedozwolona", - "not-allow-chinese": "Chiński niedozwolony", - "succeed-vacuum-database": "Udało się wyczyścić bazę danych", - "succeed-update-additional-style": "Udało się zaktualizować dodatkowy styl", - "succeed-copy-resource-link": "Udało się skopiować link do zasobu do schowka", - "succeed-update-customized-profile": "Udało się zaktualizować spersonalizowany profil", - "succeed-update-additional-script": "Udało się zaktualizować dodatkowy skrypt", - "update-succeed": "Aktualizacja się powiodła", - "page-not-found": "404 - Nie znaleziono 😥" - }, - "days": { - "monday": "Poniedziałek", - "mon": "Pon", - "tuesday": "Wtorek", - "tue": "Wt", - "wednesday": "Środa", - "wed": "Śr", - "thursday": "Czwartek", - "thu": "Czw", - "friday": "Piątek", - "fri": "Pt", - "saturday": "Sobota", - "sat": "Sob", - "sunday": "Niedziela", - "sun": "Nie" + "common": { + "about": "O aplikacji", + "email": "E-mail", + "password": "Hasło", + "repeat-password-short": "Powtórz", + "repeat-password": "Powtórz hasło", + "new-password": "Nowe hasło", + "repeat-new-password": "Powtórz nowe hasło", + "avatar": "Awatar", + "username": "Nazwa użytkownika", + "nickname": "Pseudonim", + "save": "Zapisz", + "close": "Zamknij", + "cancel": "Anuluj", + "create": "Utwórz", + "change": "Zmień", + "confirm": "Potwierdź", + "reset": "Resetuj", + "language": "Język", + "version": "Wersja", + "pin": "Przypnij", + "unpin": "Odepnij", + "edit": "Edytuj", + "restore": "Przywróć", + "delete": "Usuń", + "null": "Null", + "share": "Udostępnij", + "archive": "Archiwizuj", + "basic": "Podstawowe", + "admin": "Admin", + "explore": "Odkrywaj", + "sign-in": "Zaloguj", + "sign-up": "Utwórz konto", + "sign-out": "Wyloguj", + "back-to-home": "Powrót do Strony Głównej", + "type": "Typ", + "shortcuts": "Skróty", + "title": "Tytuł", + "filter": "Filtruj", + "tags": "Tagi", + "yourself": "Ty", + "archived-at": "Zarchiwizowano", + "changed": "zmodyfikowano", + "update-on": "Aktualizacja dnia", + "fold": "Zwiń", + "expand": "Rozwiń", + "image": "Obrazek", + "link": "Link", + "vacuum": "Vacuum", + "select": "Wybierz", + "database": "Baza danych" + }, + "slogan": "Open-source centrum notatek do samodzielnego hostowania z zarządzaniem wiedzą i sieciami społecznościowymi.", + "auth": { + "signup-as-host": "Zarejestruj się jako właściciel", + "host-tip": "Rejestrujesz się jako właściciel.", + "not-host-tip": "Jeśli nie posiadasz konta skontaktuj się z właścicielem strony." + }, + "sidebar": { + "daily-review": "Podsumowanie dnia", + "resources": "Zasoby", + "setting": "Ustawienia", + "archived": "Zarchiwizowane" + }, + "daily-review": { + "oops-nothing": "Ups, nic tu nie ma." + }, + "resources": { + "description": "Zobacz statyczne zasoby w notatkach, na przykład obrazki", + "no-resources": "Brak zasobów.", + "fetching-data": "pobieranie danych...", + "upload": "Wrzuć", + "preview": "Podgląd", + "linked-amount": "Liczba kwalifikujących się notatek", + "copy-link": "Kopiuj odnośnik", + "delete-resource": "Usuń zasób", + "warning-text": "Czy na pewno chcesz usunąć zasób? To działanie jest nieodwracalne❗", + "rename": "Zmień nazwę", + "clear": "Wyczyść", + "warning-text-unused": "Czy na pewno chcesz usunąć nieużywany zasób? To działanie jest nieodwracalne❗", + "no-unused-resources": "Brak nieużywanych zasobów", + "name": "Nazwa" + }, + "archived": { + "archived-memos": "Zarchiwizowane notatki", + "no-archived-memos": "Brak zarchiwizowanych notatek.", + "fetching-data": "pobieranie danych..." + }, + "editor": { + "editing": "Edytowanie...", + "cancel-edit": "Anuluj edycję", + "save": "Zapisz", + "placeholder": "Jakieś przemyślenia...", + "only-image-supported": "Obsługiwane są tylko obrazy.", + "cant-empty": "Treść nie może być pusta", + "local": "Lokalne", + "resources": "Zasoby" + }, + "memo": { + "view-detail": "Zobacz szczegóły", + "copy": "Kopiuj", + "visibility": { + "private": "Widoczne tylko dla ciebie", + "protected": "Widoczne dla użytkowników", + "public": "Widoczne dla wszystkich", + "disabled": "Publiczne notatki są wyłączone" } + }, + "memo-list": { + "fetching-data": "pobieranie danych...", + "fetch-more": "Kliknij, aby pobrać więcej" + }, + "shortcut-list": { + "shortcut-title": "krótki tytuł", + "create-shortcut": "Utwórz skrót", + "edit-shortcut": "Edytuj skrót", + "eligible-memo": "kwalifikująca się notatka", + "fill-previous": "Proszę uzupełnij poprzednią wartość filtra", + "title-required": "Tytuł jest wymagany", + "value-required": "Wartość filtra jest wymagana" + }, + "filter": { + "new-filter": "Nowy filtr", + "type": { + "tag": "Tag", + "type": "Typ", + "text": "Tekst", + "display-time": "Wyświetlana data", + "visibility": "Widoczność" + }, + "operator": { + "contains": "Zawiera", + "not-contains": "Nie zawiera", + "is": "To", + "is-not": "Różny od", + "before": "Przed", + "after": "Po" + }, + "value": { + "not-tagged": "Brak tagów", + "linked": "Posiada linki" + }, + "text-placeholder": "Rozpocznij z ^, aby wykorzystać regex" + }, + "tag-list": { + "tip-text": "Wprowadź `#tag` aby utworzyć" + }, + "search": { + "quickly-filter": "Szybkie filtry" + }, + "setting": { + "my-account": "Moje konto", + "preference": "Ustawienia", + "member": "Użytkownik", + "member-list": "Lista użytkowników", + "system": "System", + "storage": "Przechowywanie", + "sso": "SSO", + "account-section": { + "title": "Informacje o koncie", + "update-information": "Aktualizuj informacje", + "change-password": "Zmień hasło" + }, + "preference-section": { + "theme": "Motyw", + "default-memo-visibility": "Domyślna widoczność notatki", + "enable-folding-memo": "Włącz zawijanie notatek", + "enable-double-click": "Włącz podwójne kliknięcie aby edytować", + "editor-font-style": "Styl czcionki w edytorze", + "mobile-editor-style": "Styl edytora mobilnego", + "default-memo-sort-option": "Wyświetlana data notatki", + "created_ts": "Data utworzenia", + "updated_ts": "Data aktualizacji" + }, + "storage-section": { + "storage-services-list": "Lista usług przechowywania", + "create-a-service": "Utwórz serwis", + "update-a-service": "Aktualizuj serwis", + "warning-text": "Czy na pewno chcesz usunąć ten serwis przechowywania? Ta akcja jest nieodwracalna❗", + "delete-storage": "Usuń serwis przechowywania" + }, + "member-section": { + "create-a-member": "Utwórz użytkownika" + }, + "system-section": { + "server-name": "Nazwa serwera", + "customize-server": { + "title": "Personalizuj serwer", + "default": "Domyślnie to memos", + "icon-url": "URL ikony" + }, + "database-file-size": "Rozmiar bazy danych", + "allow-user-signup": "Zezwól na rejestrację", + "disable-public-memos": "Wyłącz publiczne notatki", + "additional-style": "Dodatkowy styl", + "additional-script": "Dodatkowy skrypt", + "additional-style-placeholder": "Dodatkowy kod CSS", + "additional-script-placeholder": "Dodatkowy kod JavaScript" + }, + "appearance-option": { + "system": "Systemowy", + "light": "Zawsze jasny", + "dark": "Zawsze ciemny" + } + }, + "amount-text": { + "memo_one": "NOTATKA", + "memo_few": "", + "tag_one": "TAG", + "tag_few": "", + "day_one": "DZIEŃ", + "day_few": "" + }, + "message": { + "no-memos": "brak notatek 🌃", + "memos-ready": "wszystkie notatki są gotowe 🎉", + "restored-successfully": "Pomyślnie przywrócono", + "memo-updated-datetime": "Zmieniono datę utworzenia notatki.", + "invalid-created-datetime": "Niepoprawna data utworzenia.", + "change-memo-created-time": "Zmień datę utworzenia notatki", + "memo-not-found": "Nie znaleziono notatki.", + "fill-all": "Proszę uzupełnij wszystkie pola.", + "password-not-match": "Hasła się nie zgadzają.", + "new-password-not-match": "Nowe hasła się nie zgadzają.", + "image-load-failed": "Nie udało się wczytać obrazka", + "fill-form": "Proszę uzupełnij formularz", + "login-failed": "Błąd logowania", + "signup-failed": "Błąd rejestracji", + "user-not-found": "Nie znaleziono użytkownika", + "password-changed": "Zmieniono hasło", + "private-only": "Ta notatka jest prywatna.", + "copied": "Skopiowano", + "succeed-copy-content": "Skopiowano treść do schowka.", + "succeed-copy-code": "Skopiowano kod do schowka.", + "succeed-copy-link": "Skopiowano link do schowka.", + "change-resource-filename": "Zmień nazwę pliku zasobu", + "resource-filename-updated": "Zmieniono nazwę pliku zasobu.", + "invalid-resource-filename": "Niepoprawna nazwa pliku.", + "click-to-save-the-image": "Kliknij aby zapisać obrazek", + "generating-the-screenshot": "Generowanie zrzutu ekranu...", + "count-selected-resources": "Wybrano łącznie", + "too-short": "Za krótkie", + "too-long": "Za długie", + "not-allow-space": "Spacja niedozwolona", + "not-allow-chinese": "Chiński niedozwolony", + "succeed-vacuum-database": "Udało się wyczyścić bazę danych", + "succeed-update-additional-style": "Udało się zaktualizować dodatkowy styl", + "succeed-copy-resource-link": "Udało się skopiować link do zasobu do schowka", + "succeed-update-customized-profile": "Udało się zaktualizować spersonalizowany profil", + "succeed-update-additional-script": "Udało się zaktualizować dodatkowy skrypt", + "update-succeed": "Aktualizacja się powiodła", + "page-not-found": "404 - Nie znaleziono 😥" + }, + "days": { + "monday": "Poniedziałek", + "mon": "Pon", + "tuesday": "Wtorek", + "tue": "Wt", + "wednesday": "Środa", + "wed": "Śr", + "thursday": "Czwartek", + "thu": "Czw", + "friday": "Piątek", + "fri": "Pt", + "saturday": "Sobota", + "sat": "Sob", + "sunday": "Niedziela", + "sun": "Nie" + } } diff --git a/web/src/locales/pt_BR.json b/web/src/locales/pt_BR.json index 6cd86985..88481539 100644 --- a/web/src/locales/pt_BR.json +++ b/web/src/locales/pt_BR.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Sobre", - "email": "E-mail", - "password": "Senha", - "repeat-password-short": "Repita", - "repeat-password": "Repita a senha", - "new-password": "Nova senha", - "repeat-new-password": "Repita a nova senha", - "avatar": "Avatar", - "username": "Nome de usuário", - "nickname": "Apelido", - "save": "Salvar", - "close": "Fechar", - "cancel": "Cancelar", - "create": "Criar", - "change": "Alterar", - "confirm": "Confirmar", - "reset": "Redefinir", - "language": "Idioma", - "version": "Versão", - "pin": "Fixar", - "unpin": "Desfixar", - "edit": "Editar", - "restore": "Restaurar", - "delete": "Apagar", - "null": "Nulo", - "share": "Compartilhar", - "archive": "Arquivar", - "basic": "Básico", - "admin": "Admin", - "explore": "Explorar", - "sign-in": "Entrar", - "sign-up": "Cadastrar-se", - "sign-out": "Deslogar", - "back-to-home": "Voltar para Início", - "type": "Type", - "shortcuts": "Atalhos", - "title": "Título", - "filter": "Filtro", - "tags": "Tags", - "yourself": "Você mesmo", - "archived-at": "Arquivado em", - "changed": "alterado", - "update-on": "Update on", - "fold": "Fold", - "expand": "Expandir", - "image": "Imagem", - "link": "Link", - "vacuum": "Vacuum", - "select": "Selecionar", - "database": "Banco de dados" - }, - "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", - "auth": { - "signup-as-host": "Sign up as Host", - "host-tip": "You are registering as the Site Host.", - "not-host-tip": "If you don't have an account, please contact the site host." - }, - "sidebar": { - "daily-review": "Revisão diária", - "resources": "Recursos", - "setting": "Configurações", - "archived": "Arquivado" - }, - "daily-review": { - "oops-nothing": "Oops, não há nada aqui." - }, - "resources": { - "description": "View your static resources in memos. e.g. images", - "no-resources": "No resources.", - "fetching-data": "fetching data...", - "upload": "Enviar", - "preview": "Pré-visualizar", - "warning-text": "Are you sure to delete this resource? THIS ACTION IS IRREVERSIABLE❗", - "copy-link": "Copiar Link", - "delete-resource": "Delete Resource", - "linked-amount": "Linked memo amount", - "rename": "Renomear", - "clear": "Limpar", - "warning-text-unused": "Are you sure to delete these unused resource? THIS ACTION IS IRREVERSIABLE❗", - "no-unused-resources": "No unused resources", - "name": "Nome" - }, - "archived": { - "archived-memos": "Memos Arquivados", - "no-archived-memos": "No archived memos.", - "fetching-data": "fetching data..." - }, - "editor": { - "editing": "Editando...", - "cancel-edit": "Cancelar edição", - "save": "Salvar", - "placeholder": "Any thoughts...", - "only-image-supported": "Only image file supported.", - "cant-empty": "Content can't be empty", - "local": "Local", - "resources": "Resources" - }, - "memo": { - "view-detail": "View Detail", - "copy": "Copy", - "visibility": { - "private": "Visível apenas para você", - "protected": "Visível para membros", - "public": "Todos podem ver", - "disabled": "Memos públicos estão desativados" - } - }, - "memo-list": { - "fetching-data": "fetching data...", - "fetch-more": "Click here to fetch more" - }, - "shortcut-list": { - "shortcut-title": "shortcut title", - "create-shortcut": "Criar Atalho", - "edit-shortcut": "Editar Atalho", - "eligible-memo": "eligible memo", - "fill-previous": "Please fill in previous filter value", - "title-required": "Title is required", - "value-required": "Filter value is required" - }, - "filter": { - "new-filter": "New Filter", - "type": { - "tag": "Tag", - "type": "Type", - "text": "Texto", - "display-time": "Display Time", - "visibility": "Visibility" - }, - "operator": { - "contains": "Contains", - "not-contains": "Does not contain", - "is": "Is", - "is-not": "Is Not", - "before": "Before", - "after": "After" - }, - "value": { - "not-tagged": "No tags", - "linked": "Has links" - }, - "text-placeholder": "Starts with ^ to use regex" - }, - "tag-list": { - "tip-text": "Input `#tag` to create" - }, - "search": { - "quickly-filter": "Quickly filter" - }, - "setting": { - "my-account": "My Account", - "preference": "Preference", - "member": "Member", - "member-list": "Member list", - "system": "System", - "storage": "Storage", - "sso": "SSO", - "account-section": { - "title": "Account Information", - "update-information": "Update Information", - "change-password": "Change password" - }, - "preference-section": { - "theme": "Theme", - "default-memo-visibility": "Default memo visibility", - "enable-folding-memo": "Enable folding memo", - "enable-double-click": "Enable double-click to edit", - "editor-font-style": "Editor font style", - "mobile-editor-style": "Mobile editor style", - "default-memo-sort-option": "Memo display time", - "created_ts": "Created Time", - "updated_ts": "Updated Time" - }, - "storage-section": { - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage" - }, - "member-section": { - "create-a-member": "Create a member" - }, - "system-section": { - "server-name": "Server Name", - "customize-server": { - "title": "Customize Server", - "default": "Default is memos", - "icon-url": "Icon URL" - }, - "database-file-size": "Database File Size", - "allow-user-signup": "Allow user signup", - "disable-public-memos": "Disable public memos", - "additional-style": "Additional style", - "additional-script": "Additional script", - "additional-style-placeholder": "Additional CSS codes", - "additional-script-placeholder": "Additional JavaScript codes" - }, - "apperance-option": { - "system": "Follow system", - "light": "Always light", - "dark": "Always dark" - } - }, - "amount-text": { - "memo_one": "MEMO", - "memo_many": "", - "tag_one": "TAG", - "tag_many": "", - "day_one": "DAY", - "day_many": "" - }, - "message": { - "no-memos": "no memos 🌃", - "memos-ready": "all memos are ready 🎉", - "restored-successfully": "Restored successfully", - "memo-updated-datetime": "Memo created datetime changed.", - "invalid-created-datetime": "Invalid created datetime.", - "change-memo-created-time": "Change memo created time", - "memo-not-found": "Memo not found.", - "fill-all": "Please fill in all fields.", - "password-not-match": "Passwords do not match.", - "new-password-not-match": "New passwords do not match.", - "image-load-failed": "Image load failed", - "fill-form": "Please fill out this form", - "login-failed": "Login failed", - "signup-failed": "Signup failed", - "user-not-found": "User not found", - "password-changed": "Password Changed", - "private-only": "This memo is private only.", - "copied": "Copied", - "succeed-copy-content": "Succeed to copy content to clipboard.", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "succeed-copy-link": "Succeed to copy link to clipboard.", - "change-resource-filename": "Change resource filename", - "resource-filename-updated": "Resource filename changed.", - "invalid-resource-filename": "Invalid filename.", - "click-to-save-the-image": "Click to save the image", - "generating-the-screenshot": "Generating the screenshot...", - "count-selected-resources": "Total selected", - "too-short": "Too short", - "too-long": "Too long", - "not-allow-space": "Don't allow space", - "not-allow-chinese": "Don't allow chinese", - "succeed-vacuum-database": "Succeed to vacuum database", - "succeed-update-additional-style": "Succeed to update additional style", - "succeed-copy-resource-link": "Succeed to copy resource link to clipboard", - "succeed-update-customized-profile": "Succeed to update customized profile", - "succeed-update-additional-script": "Succeed to update additional script", - "update-succeed": "Update succeed", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Monday", - "mon": "Mon", - "tuesday": "Tuesday", - "tue": "Tue", - "wednesday": "Wednesday", - "wed": "Wed", - "thursday": "Thursday", - "thu": "Thu", - "friday": "Friday", - "fri": "Fri", - "saturday": "Saturday", - "sat": "Sat", - "sunday": "Sunday", - "sun": "Sun" + "common": { + "about": "Sobre", + "email": "E-mail", + "password": "Senha", + "repeat-password-short": "Repita", + "repeat-password": "Repita a senha", + "new-password": "Nova senha", + "repeat-new-password": "Repita a nova senha", + "avatar": "Avatar", + "username": "Nome de usuário", + "nickname": "Apelido", + "save": "Salvar", + "close": "Fechar", + "cancel": "Cancelar", + "create": "Criar", + "change": "Alterar", + "confirm": "Confirmar", + "reset": "Redefinir", + "language": "Idioma", + "version": "Versão", + "pin": "Fixar", + "unpin": "Desfixar", + "edit": "Editar", + "restore": "Restaurar", + "delete": "Apagar", + "null": "Nulo", + "share": "Compartilhar", + "archive": "Arquivar", + "basic": "Básico", + "admin": "Admin", + "explore": "Explorar", + "sign-in": "Entrar", + "sign-up": "Cadastrar-se", + "sign-out": "Deslogar", + "back-to-home": "Voltar para Início", + "type": "Type", + "shortcuts": "Atalhos", + "title": "Título", + "filter": "Filtro", + "tags": "Tags", + "yourself": "Você mesmo", + "archived-at": "Arquivado em", + "changed": "alterado", + "update-on": "Update on", + "fold": "Fold", + "expand": "Expandir", + "image": "Imagem", + "link": "Link", + "vacuum": "Vacuum", + "select": "Selecionar", + "database": "Banco de dados" + }, + "slogan": "An open-source, self-hosted memo hub with knowledge management and social networking.", + "auth": { + "signup-as-host": "Sign up as Host", + "host-tip": "You are registering as the Site Host.", + "not-host-tip": "If you don't have an account, please contact the site host." + }, + "sidebar": { + "daily-review": "Revisão diária", + "resources": "Recursos", + "setting": "Configurações", + "archived": "Arquivado" + }, + "daily-review": { + "oops-nothing": "Oops, não há nada aqui." + }, + "resources": { + "description": "View your static resources in memos. e.g. images", + "no-resources": "No resources.", + "fetching-data": "fetching data...", + "upload": "Enviar", + "preview": "Pré-visualizar", + "warning-text": "Are you sure to delete this resource? THIS ACTION IS IRREVERSIBLE❗", + "copy-link": "Copiar Link", + "delete-resource": "Delete Resource", + "linked-amount": "Linked memo amount", + "rename": "Renomear", + "clear": "Limpar", + "warning-text-unused": "Are you sure to delete these unused resource? THIS ACTION IS IRREVERSIBLE❗", + "no-unused-resources": "No unused resources", + "name": "Nome" + }, + "archived": { + "archived-memos": "Memos Arquivados", + "no-archived-memos": "No archived memos.", + "fetching-data": "fetching data..." + }, + "editor": { + "editing": "Editando...", + "cancel-edit": "Cancelar edição", + "save": "Salvar", + "placeholder": "Any thoughts...", + "only-image-supported": "Only image file supported.", + "cant-empty": "Content can't be empty", + "local": "Local", + "resources": "Resources" + }, + "memo": { + "view-detail": "View Detail", + "copy": "Copy", + "visibility": { + "private": "Visível apenas para você", + "protected": "Visível para membros", + "public": "Todos podem ver", + "disabled": "Memos públicos estão desativados" } + }, + "memo-list": { + "fetching-data": "fetching data...", + "fetch-more": "Click here to fetch more" + }, + "shortcut-list": { + "shortcut-title": "shortcut title", + "create-shortcut": "Criar Atalho", + "edit-shortcut": "Editar Atalho", + "eligible-memo": "eligible memo", + "fill-previous": "Please fill in previous filter value", + "title-required": "Title is required", + "value-required": "Filter value is required" + }, + "filter": { + "new-filter": "New Filter", + "type": { + "tag": "Tag", + "type": "Type", + "text": "Texto", + "display-time": "Display Time", + "visibility": "Visibility" + }, + "operator": { + "contains": "Contains", + "not-contains": "Does not contain", + "is": "Is", + "is-not": "Is Not", + "before": "Before", + "after": "After" + }, + "value": { + "not-tagged": "No tags", + "linked": "Has links" + }, + "text-placeholder": "Starts with ^ to use regex" + }, + "tag-list": { + "tip-text": "Input `#tag` to create" + }, + "search": { + "quickly-filter": "Quickly filter" + }, + "setting": { + "my-account": "My Account", + "preference": "Preference", + "member": "Member", + "member-list": "Member list", + "system": "System", + "storage": "Storage", + "sso": "SSO", + "account-section": { + "title": "Account Information", + "update-information": "Update Information", + "change-password": "Change password" + }, + "preference-section": { + "theme": "Theme", + "default-memo-visibility": "Default memo visibility", + "enable-folding-memo": "Enable folding memo", + "enable-double-click": "Enable double-click to edit", + "editor-font-style": "Editor font style", + "mobile-editor-style": "Mobile editor style", + "default-memo-sort-option": "Memo display time", + "created_ts": "Created Time", + "updated_ts": "Updated Time" + }, + "storage-section": { + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage" + }, + "member-section": { + "create-a-member": "Create a member" + }, + "system-section": { + "server-name": "Server Name", + "customize-server": { + "title": "Customize Server", + "default": "Default is memos", + "icon-url": "Icon URL" + }, + "database-file-size": "Database File Size", + "allow-user-signup": "Allow user signup", + "disable-public-memos": "Disable public memos", + "additional-style": "Additional style", + "additional-script": "Additional script", + "additional-style-placeholder": "Additional CSS codes", + "additional-script-placeholder": "Additional JavaScript codes" + }, + "appearance-option": { + "system": "Follow system", + "light": "Always light", + "dark": "Always dark" + } + }, + "amount-text": { + "memo_one": "MEMO", + "memo_many": "", + "tag_one": "TAG", + "tag_many": "", + "day_one": "DAY", + "day_many": "" + }, + "message": { + "no-memos": "no memos 🌃", + "memos-ready": "all memos are ready 🎉", + "restored-successfully": "Restored successfully", + "memo-updated-datetime": "Memo created datetime changed.", + "invalid-created-datetime": "Invalid created datetime.", + "change-memo-created-time": "Change memo created time", + "memo-not-found": "Memo not found.", + "fill-all": "Please fill in all fields.", + "password-not-match": "Passwords do not match.", + "new-password-not-match": "New passwords do not match.", + "image-load-failed": "Image load failed", + "fill-form": "Please fill out this form", + "login-failed": "Login failed", + "signup-failed": "Signup failed", + "user-not-found": "User not found", + "password-changed": "Password Changed", + "private-only": "This memo is private only.", + "copied": "Copied", + "succeed-copy-content": "Succeed to copy content to clipboard.", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "succeed-copy-link": "Succeed to copy link to clipboard.", + "change-resource-filename": "Change resource filename", + "resource-filename-updated": "Resource filename changed.", + "invalid-resource-filename": "Invalid filename.", + "click-to-save-the-image": "Click to save the image", + "generating-the-screenshot": "Generating the screenshot...", + "count-selected-resources": "Total selected", + "too-short": "Too short", + "too-long": "Too long", + "not-allow-space": "Don't allow space", + "not-allow-chinese": "Don't allow chinese", + "succeed-vacuum-database": "Succeed to vacuum database", + "succeed-update-additional-style": "Succeed to update additional style", + "succeed-copy-resource-link": "Succeed to copy resource link to clipboard", + "succeed-update-customized-profile": "Succeed to update customized profile", + "succeed-update-additional-script": "Succeed to update additional script", + "update-succeed": "Update succeed", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Monday", + "mon": "Mon", + "tuesday": "Tuesday", + "tue": "Tue", + "wednesday": "Wednesday", + "wed": "Wed", + "thursday": "Thursday", + "thu": "Thu", + "friday": "Friday", + "fri": "Fri", + "saturday": "Saturday", + "sat": "Sat", + "sunday": "Sunday", + "sun": "Sun" + } } diff --git a/web/src/locales/ru.json b/web/src/locales/ru.json index a9deb537..70a3519d 100644 --- a/web/src/locales/ru.json +++ b/web/src/locales/ru.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Про Memos", - "email": "Эл. почта", - "password": "Пароль", - "repeat-password-short": "Повторить", - "repeat-password": "Повторить пароль", - "new-password": "Новый пароль", - "repeat-new-password": "Повторить новый пароль", - "username": "Имя пользователя", - "nickname": "Псевдоним", - "save": "Сохранить", - "close": "Закрыть", - "cancel": "Отменить", - "create": "Создать", - "change": "Заменить", - "confirm": "Подтвердить", - "reset": "Стереть", - "language": "Язык", - "version": "Версия", - "pin": "Закрепить", - "unpin": "Открепить", - "edit": "Редактировать", - "restore": "Восстановить", - "delete": "Удалить", - "null": "Пусто", - "share": "Поделиться", - "archive": "Архивировать", - "basic": "Базовые", - "admin": "Администратор", - "explore": "Больше", - "sign-in": "Войти", - "sign-up": "Зарегистрироваться", - "sign-out": "Выйти", - "back-to-home": "Вернуться на главную", - "type": "Тип", - "shortcuts": "Ярлыки", - "title": "Заголовок", - "filter": "Фильтр", - "tags": "Теги", - "yourself": "Вы", - "archived-at": "Архив", - "changed": "изменено", - "update-on": "Обновлено", - "fold": "Свернуть", - "expand": "Развернуть", - "image": "Изображение", - "link": "Ссылка", - "vacuum": "Сжать", - "select": "Выбрать", - "avatar": "Avatar", - "database": "Database" - }, - "slogan": "Self-hosted платформа с открытым исходным кодом для заметок и управления записями с поддержкой социальных функций.", - "auth": { - "signup-as-host": "Зарегистрироваться как владелец", - "host-tip": "Вы регистрируете владельца сайта.", - "not-host-tip": "Если у вас нет аккаунта, обратитесь к владельцу сайта." - }, - "sidebar": { - "daily-review": "По дням", - "resources": "Ресурсы", - "setting": "Настройки", - "archived": "Заархивировано" - }, - "daily-review": { - "oops-nothing": "Ой, здесь ничего нет." - }, - "resources": { - "description": "Посмотреть ваши статические ресурсы в Memos (изображения и пр.)", - "no-resources": "Нет ресурсов.", - "fetching-data": "загрузка данных...", - "upload": "Загрузить", - "preview": "Предпросмотр", - "copy-link": "Скопировать ссылку", - "delete-resource": "Удалить ресурс", - "warning-text": "Вы уверены, что хотите удалить этот ресурс? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗", - "linked-amount": "Количество записей", - "rename": "Переименовать", - "warning-text-unused": "Вы уверены, что хотите удалить неиспользуемые ресурсы? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗", - "no-unused-resources": "Нет неиспользуемых ресурсов", - "name": "Название", - "clear": "Clear" - }, - "archived": { - "archived-memos": "Заархивированные записи", - "no-archived-memos": "Нет заархивированных записей.", - "fetching-data": "загрузка данных..." - }, - "editor": { - "editing": "Редактирование...", - "cancel-edit": "Отменить", - "save": "Сохранить", - "placeholder": "Ваши мысли...", - "only-image-supported": "Поддерживаются только изображения.", - "cant-empty": "Содержимое не может быть пустым", - "local": "На устройстве", - "resources": "Ресурсы" - }, - "memo": { - "view-detail": "Подробно", - "copy": "Копировать", - "visibility": { - "private": "Видно только вам", - "protected": "Видно только пользователям", - "public": "Видно всем", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "загрузка данных...", - "fetch-more": "Загрузить больше" - }, - "shortcut-list": { - "shortcut-title": "название ярлыка", - "create-shortcut": "Создать ярлык", - "edit-shortcut": "Редактировать ярлык", - "eligible-memo": "связанные записи", - "fill-previous": "Пожалуйста, заполните значение фильтра", - "title-required": "Название обязательно", - "value-required": "Значение фильтра обязательно" - }, - "filter": { - "new-filter": "Новый фильтр", - "type": { - "tag": "Тег", - "type": "Тип", - "text": "Текст", - "display-time": "Время отображения", - "visibility": "Видимость" - }, - "operator": { - "contains": "Содержит", - "not-contains": "Не содержит", - "is": "Только", - "is-not": "Кроме", - "before": "До", - "after": "После" - }, - "value": { - "not-tagged": "Без тегов", - "linked": "Содержит ссылки" - }, - "text-placeholder": "Начните с ^ чтобы использовать регулярные выражения" - }, - "tag-list": { - "tip-text": "Введите `#tag` для создания" - }, - "search": { - "quickly-filter": "Быстрый фильтр" - }, - "setting": { - "my-account": "Мой аккаунт", - "preference": "Настройки", - "member": "Пользователи", - "member-list": "Список пользователей", - "system": "Системные", - "account-section": { - "title": "Информация об аккаунте", - "update-information": "Обновить информацию", - "change-password": "Изменить пароль" - }, - "preference-section": { - "theme": "Тема", - "default-memo-visibility": "Видимость записей по умолчанию", - "enable-folding-memo": "Включить сворачивание записей", - "editor-font-style": "Стиль шрифта", - "mobile-editor-style": "Стиль мобильного редактора", - "default-memo-sort-option": "Отображаемое время записи", - "created_ts": "Время создания", - "updated_ts": "Время обновления", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Создать пользователя" - }, - "system-section": { - "server-name": "Имя сервера", - "customize-server": { - "title": "Настроить сервер", - "default": "По умолчанию: memos", - "icon-url": "URL иконки" - }, - "database-file-size": "Размер файла базы данных", - "allow-user-signup": "Разрешить регистрацию пользователей", - "additional-style": "Настраиваемый стиль", - "additional-script": "Настраиваемый скрипт", - "additional-style-placeholder": "Настраиваемый код CSS", - "additional-script-placeholder": "Настраиваемый код JavaScript", - "disable-public-memos": "Disable public memos" - }, - "apperance-option": { - "system": "Системная", - "light": "Светлая", - "dark": "Тёмная" - }, - "storage": "Storage", - "sso": "SSO", - "storage-section": { - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage" - } - }, - "amount-text": { - "memo_one": "ЗАПИСЬ", - "tag_one": "ТЕГ", - "day_one": "ДЕНЬ", - "memo_other": "MEMOS", - "tag_other": "TAGS", - "day_other": "DAYS" - }, - "message": { - "no-memos": "нет записей 🌃", - "memos-ready": "больше записей нет 🎉", - "restored-successfully": "Успешно восстановлено.", - "memo-updated-datetime": "Время создания изменено.", - "invalid-created-datetime": "Неверное время создания.", - "change-memo-created-time": "Изменить время создания записи", - "memo-not-found": "Запись не найдена.", - "fill-all": "Пожалуйста, заполните все поля.", - "password-not-match": "Пароли не совпадают.", - "new-password-not-match": "Новый пароль не совпадает.", - "image-load-failed": "Ошибка загрузки изображения", - "fill-form": "Пожалуйста, заполните форму", - "login-failed": "Ошибка входа", - "signup-failed": "Помилка реєстрації", - "user-not-found": "Пользователь не найден", - "password-changed": "Пароль изменён", - "private-only": "Это частная заметка.", - "copied": "Скопировано", - "succeed-copy-content": "Скопировано в буфер обмена.", - "succeed-copy-link": "Ссылка скопирована в буфер обмена.", - "change-resource-filename": "Изменить имя файла", - "resource-filename-updated": "Имя файла изменено.", - "invalid-resource-filename": "Неверное имя файла.", - "click-to-save-the-image": "Нажмите для сохранения изображения", - "generating-the-screenshot": "Создание снимка...", - "count-selected-resources": "Всего выбрано", - "too-short": "Слишком короткое", - "too-long": "Слишком длинное", - "not-allow-space": "Пробел не разрешён", - "not-allow-chinese": "Китайские символы не разрешены", - "succeed-vacuum-database": "База данных успешно сжата", - "succeed-update-additional-style": "Настраиваемый стиль успешно обновлен", - "succeed-copy-resource-link": "Ссылка на файл скопирована в буфер обмена", - "succeed-update-customized-profile": "Собственный профиль успешно обновлён", - "succeed-update-additional-script": "Настраиваемый скрипт успешно обновлён", - "update-succeed": "Успешно обновлено", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Понедельник", - "mon": "Пон.", - "tuesday": "Вторник", - "tue": "Вт.", - "wednesday": "Среда", - "wed": "Ср.", - "thursday": "Четверг", - "thu": "Чт.", - "friday": "Пятница", - "fri": "Пт.", - "saturday": "Суббота", - "sat": "Сб.", - "sunday": "Воскресенье", - "sun": "Вс." + "common": { + "about": "Про Memos", + "email": "Эл. почта", + "password": "Пароль", + "repeat-password-short": "Повторить", + "repeat-password": "Повторить пароль", + "new-password": "Новый пароль", + "repeat-new-password": "Повторить новый пароль", + "username": "Имя пользователя", + "nickname": "Псевдоним", + "save": "Сохранить", + "close": "Закрыть", + "cancel": "Отменить", + "create": "Создать", + "change": "Заменить", + "confirm": "Подтвердить", + "reset": "Стереть", + "language": "Язык", + "version": "Версия", + "pin": "Закрепить", + "unpin": "Открепить", + "edit": "Редактировать", + "restore": "Восстановить", + "delete": "Удалить", + "null": "Пусто", + "share": "Поделиться", + "archive": "Архивировать", + "basic": "Базовые", + "admin": "Администратор", + "explore": "Больше", + "sign-in": "Войти", + "sign-up": "Зарегистрироваться", + "sign-out": "Выйти", + "back-to-home": "Вернуться на главную", + "type": "Тип", + "shortcuts": "Ярлыки", + "title": "Заголовок", + "filter": "Фильтр", + "tags": "Теги", + "yourself": "Вы", + "archived-at": "Архив", + "changed": "изменено", + "update-on": "Обновлено", + "fold": "Свернуть", + "expand": "Развернуть", + "image": "Изображение", + "link": "Ссылка", + "vacuum": "Сжать", + "select": "Выбрать", + "avatar": "Avatar", + "database": "Database" + }, + "slogan": "Self-hosted платформа с открытым исходным кодом для заметок и управления записями с поддержкой социальных функций.", + "auth": { + "signup-as-host": "Зарегистрироваться как владелец", + "host-tip": "Вы регистрируете владельца сайта.", + "not-host-tip": "Если у вас нет аккаунта, обратитесь к владельцу сайта." + }, + "sidebar": { + "daily-review": "По дням", + "resources": "Ресурсы", + "setting": "Настройки", + "archived": "Заархивировано" + }, + "daily-review": { + "oops-nothing": "Ой, здесь ничего нет." + }, + "resources": { + "description": "Посмотреть ваши статические ресурсы в Memos (изображения и пр.)", + "no-resources": "Нет ресурсов.", + "fetching-data": "загрузка данных...", + "upload": "Загрузить", + "preview": "Предпросмотр", + "copy-link": "Скопировать ссылку", + "delete-resource": "Удалить ресурс", + "warning-text": "Вы уверены, что хотите удалить этот ресурс? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗", + "linked-amount": "Количество записей", + "rename": "Переименовать", + "warning-text-unused": "Вы уверены, что хотите удалить неиспользуемые ресурсы? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗", + "no-unused-resources": "Нет неиспользуемых ресурсов", + "name": "Название", + "clear": "Clear" + }, + "archived": { + "archived-memos": "Заархивированные записи", + "no-archived-memos": "Нет заархивированных записей.", + "fetching-data": "загрузка данных..." + }, + "editor": { + "editing": "Редактирование...", + "cancel-edit": "Отменить", + "save": "Сохранить", + "placeholder": "Ваши мысли...", + "only-image-supported": "Поддерживаются только изображения.", + "cant-empty": "Содержимое не может быть пустым", + "local": "На устройстве", + "resources": "Ресурсы" + }, + "memo": { + "view-detail": "Подробно", + "copy": "Копировать", + "visibility": { + "private": "Видно только вам", + "protected": "Видно только пользователям", + "public": "Видно всем", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "загрузка данных...", + "fetch-more": "Загрузить больше" + }, + "shortcut-list": { + "shortcut-title": "название ярлыка", + "create-shortcut": "Создать ярлык", + "edit-shortcut": "Редактировать ярлык", + "eligible-memo": "связанные записи", + "fill-previous": "Пожалуйста, заполните значение фильтра", + "title-required": "Название обязательно", + "value-required": "Значение фильтра обязательно" + }, + "filter": { + "new-filter": "Новый фильтр", + "type": { + "tag": "Тег", + "type": "Тип", + "text": "Текст", + "display-time": "Время отображения", + "visibility": "Видимость" + }, + "operator": { + "contains": "Содержит", + "not-contains": "Не содержит", + "is": "Только", + "is-not": "Кроме", + "before": "До", + "after": "После" + }, + "value": { + "not-tagged": "Без тегов", + "linked": "Содержит ссылки" + }, + "text-placeholder": "Начните с ^ чтобы использовать регулярные выражения" + }, + "tag-list": { + "tip-text": "Введите `#tag` для создания" + }, + "search": { + "quickly-filter": "Быстрый фильтр" + }, + "setting": { + "my-account": "Мой аккаунт", + "preference": "Настройки", + "member": "Пользователи", + "member-list": "Список пользователей", + "system": "Системные", + "account-section": { + "title": "Информация об аккаунте", + "update-information": "Обновить информацию", + "change-password": "Изменить пароль" + }, + "preference-section": { + "theme": "Тема", + "default-memo-visibility": "Видимость записей по умолчанию", + "enable-folding-memo": "Включить сворачивание записей", + "editor-font-style": "Стиль шрифта", + "mobile-editor-style": "Стиль мобильного редактора", + "default-memo-sort-option": "Отображаемое время записи", + "created_ts": "Время создания", + "updated_ts": "Время обновления", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Создать пользователя" + }, + "system-section": { + "server-name": "Имя сервера", + "customize-server": { + "title": "Настроить сервер", + "default": "По умолчанию: memos", + "icon-url": "URL иконки" + }, + "database-file-size": "Размер файла базы данных", + "allow-user-signup": "Разрешить регистрацию пользователей", + "additional-style": "Настраиваемый стиль", + "additional-script": "Настраиваемый скрипт", + "additional-style-placeholder": "Настраиваемый код CSS", + "additional-script-placeholder": "Настраиваемый код JavaScript", + "disable-public-memos": "Disable public memos" + }, + "appearance-option": { + "system": "Системная", + "light": "Светлая", + "dark": "Тёмная" + }, + "storage": "Storage", + "sso": "SSO", + "storage-section": { + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage" + } + }, + "amount-text": { + "memo_one": "ЗАПИСЬ", + "tag_one": "ТЕГ", + "day_one": "ДЕНЬ", + "memo_other": "MEMOS", + "tag_other": "TAGS", + "day_other": "DAYS" + }, + "message": { + "no-memos": "нет записей 🌃", + "memos-ready": "больше записей нет 🎉", + "restored-successfully": "Успешно восстановлено.", + "memo-updated-datetime": "Время создания изменено.", + "invalid-created-datetime": "Неверное время создания.", + "change-memo-created-time": "Изменить время создания записи", + "memo-not-found": "Запись не найдена.", + "fill-all": "Пожалуйста, заполните все поля.", + "password-not-match": "Пароли не совпадают.", + "new-password-not-match": "Новый пароль не совпадает.", + "image-load-failed": "Ошибка загрузки изображения", + "fill-form": "Пожалуйста, заполните форму", + "login-failed": "Ошибка входа", + "signup-failed": "Помилка реєстрації", + "user-not-found": "Пользователь не найден", + "password-changed": "Пароль изменён", + "private-only": "Это частная заметка.", + "copied": "Скопировано", + "succeed-copy-content": "Скопировано в буфер обмена.", + "succeed-copy-link": "Ссылка скопирована в буфер обмена.", + "change-resource-filename": "Изменить имя файла", + "resource-filename-updated": "Имя файла изменено.", + "invalid-resource-filename": "Неверное имя файла.", + "click-to-save-the-image": "Нажмите для сохранения изображения", + "generating-the-screenshot": "Создание снимка...", + "count-selected-resources": "Всего выбрано", + "too-short": "Слишком короткое", + "too-long": "Слишком длинное", + "not-allow-space": "Пробел не разрешён", + "not-allow-chinese": "Китайские символы не разрешены", + "succeed-vacuum-database": "База данных успешно сжата", + "succeed-update-additional-style": "Настраиваемый стиль успешно обновлен", + "succeed-copy-resource-link": "Ссылка на файл скопирована в буфер обмена", + "succeed-update-customized-profile": "Собственный профиль успешно обновлён", + "succeed-update-additional-script": "Настраиваемый скрипт успешно обновлён", + "update-succeed": "Успешно обновлено", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Понедельник", + "mon": "Пон.", + "tuesday": "Вторник", + "tue": "Вт.", + "wednesday": "Среда", + "wed": "Ср.", + "thursday": "Четверг", + "thu": "Чт.", + "friday": "Пятница", + "fri": "Пт.", + "saturday": "Суббота", + "sat": "Сб.", + "sunday": "Воскресенье", + "sun": "Вс." + } } diff --git a/web/src/locales/sv.json b/web/src/locales/sv.json index d2c46bf2..52034496 100644 --- a/web/src/locales/sv.json +++ b/web/src/locales/sv.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Om", - "email": "E-post", - "password": "Lösenord", - "repeat-password-short": "Upprepa", - "repeat-password": "Uprepa lösenordet", - "new-password": "Nytt lösenord", - "repeat-new-password": "Upprepa det nya lösenordet", - "username": "Användarnamn", - "nickname": "Smeknamn", - "save": "Spara", - "close": "Stäng", - "cancel": "Avbryt", - "create": "Skapa", - "change": "Ändra", - "confirm": "Bekräfta", - "reset": "Återställ", - "language": "Språk", - "version": "Version", - "pin": "Fäst", - "unpin": "Ta bort fäst", - "edit": "Redigera", - "restore": "Återställ", - "delete": "Radera", - "null": "Null", - "share": "Dela", - "archive": "Arkivera", - "basic": "Grundläggande", - "admin": "Admin", - "explore": "Utforska", - "sign-in": "Logga in", - "sign-up": "Bli medlem", - "sign-out": "Logga ut", - "back-to-home": "Tillbaka hem", - "type": "Typ", - "shortcuts": "Genvägar", - "title": "Titel", - "filter": "Filter", - "tags": "Taggar", - "yourself": "Själv", - "archived-at": "Arkiverad på", - "changed": "Ändrad", - "update-on": "Uppdatering på", - "fold": "Vik ihop", - "expand": "Expandera", - "image": "Bild", - "link": "Länk", - "vacuum": "Vacuum", - "select": "Select", - "avatar": "Avatar", - "database": "Databas" - }, - "slogan": "En öppen källkod, self-hosted antecknings hubb med kunskapshantering och socialisering", - "auth": { - "signup-as-host": "Registera dig som värd", - "host-tip": "Du registerar dig som webbplatsvärd.", - "not-host-tip": "Om du inte har ett konto, kontakta webbplatsens värd." - }, - "sidebar": { - "daily-review": "Daglig återblick", - "resources": "Resurser", - "setting": "Inställningar", - "archived": "Arkiverade" - }, - "daily-review": { - "oops-nothing": "Oj, det finns inget här." - }, - "resources": { - "description": "Visa dina statiska resurser i anteckningarn. t.ex bilder.", - "no-resources": "Inga resurser.", - "fetching-data": "hämtar data...", - "upload": "Ladda upp", - "preview": "Förhandsvisa", - "copy-link": "Kopiera länk", - "delete-resource": "Ta bort resurs", - "warning-text": "Är du säker på att du vill ta bort den här resursen? DENNA ÅTGÄRD ÄR OÅTERSTÄLLBAR❗", - "linked-amount": "Länkat antecknings belopp", - "rename": "Döp om", - "warning-text-unused": "Är du säker på att du vill ta bort denna oanvända resurs? DENNA ÅTGÄRD ÄR OÅTERSTÄLLBAR❗", - "no-unused-resources": "Inga oanvända resurser", - "name": "Name", - "clear": "Rensa" - }, - "archived": { - "archived-memos": "Arkiverade anteckningar", - "no-archived-memos": "Inga arkiverade anteckningar.", - "fetching-data": "hämtar data..." - }, - "editor": { - "editing": "Redigerar...", - "cancel-edit": "Avbryt redigering", - "save": "Spara", - "placeholder": "Några tankar...", - "only-image-supported": "Endast bildfiler stöds.", - "cant-empty": "Innehållet får inte vara tomt", - "local": "Lokal", - "resources": "Resurser" - }, - "memo": { - "view-detail": "Visa detaljer", - "copy": "Kopiera", - "visibility": { - "private": "Endast synlig för dig", - "protected": "Synlig för medlemmar", - "public": "Synlig för alla", - "disabled": "Offentliga anteckningar är inaktiverade" - } - }, - "memo-list": { - "fetching-data": "hämtar data...", - "fetch-more": "Klicka här för att hämta mer" - }, - "shortcut-list": { - "shortcut-title": "Genvägs titel", - "create-shortcut": "Skapa genväg", - "edit-shortcut": "Ändra genväg", - "eligible-memo": "kvalificerad anteckning", - "fill-previous": "Vänligen fyll i tidigare filtervärde", - "title-required": "Titel krävs", - "value-required": "Filtervärde krävs" - }, - "filter": { - "new-filter": "Nytt filter", - "type": { - "tag": "Tag", - "type": "Type", - "text": "Text", - "display-time": "Display Time", - "visibility": "Visibility" - }, - "operator": { - "contains": "Innehåller", - "not-contains": "Innehåller inte", - "is": "Är", - "is-not": "Är inte", - "before": "Innan", - "after": "Efter" - }, - "value": { - "not-tagged": "Inga taggar", - "linked": "Har länkar" - }, - "text-placeholder": "Börjar med ^ för att använda regex" - }, - "tag-list": { - "tip-text": "Ange `#tag ` för att skapa" - }, - "search": { - "quickly-filter": "Filtrera snabbt" - }, - "setting": { - "my-account": "Mitt konto", - "preference": "Preferenser", - "member": "Medlem", - "member-list": "Medlemslista", - "system": "System", - "account-section": { - "title": "Kontoinformation", - "update-information": "Uppdatera informationen", - "change-password": "Ändra lösenord" - }, - "preference-section": { - "theme": "Tema", - "default-memo-visibility": "Standard synlighet för anteckningar", - "enable-folding-memo": "Aktivera vikbara anteckningar", - "editor-font-style": "Redigerare teckensnitt", - "mobile-editor-style": "Mobilredigerade stil", - "default-memo-sort-option": "Anteckning visningstid", - "created_ts": "Skapade tid", - "updated_ts": "Upodaterad tid", - "enable-double-click": "Aktivera dubbelklick för att redigera" - }, - "member-section": { - "create-a-member": "Skapa en medlem" - }, - "system-section": { - "server-name": "Server Name", - "customize-server": { - "title": "Customize Server", - "default": "Default is memos", - "icon-url": "Icon URL" - }, - "database-file-size": "Databas filstorlek", - "allow-user-signup": "Tillåt användarregistrering", - "additional-style": "Ytterligare stil", - "additional-script": "Ytterligare skript", - "additional-style-placeholder": "Ytterligare CSS kod", - "additional-script-placeholder": "Ytterligare JavaScript kod", - "disable-public-memos": "Inaktivera offentliga anteckningar" - }, - "apperance-option": { - "system": "Follow system", - "light": "Alltid ljus", - "dark": "Alltid mörk" - }, - "storage-section": { - "create-a-service": "Skapa en tjänst", - "storage-services-list": "Lista över lagringstjänster", - "update-a-service": "Uppdatera en tjänst", - "warning-text": "Är du säker på att ta bort den här lagringstjänsten? DEN HÄR ÅTGÄRDEN ÄR IRREVERSIBEL❗", - "delete-storage": "Ta bort lagring" - }, - "storage": "Lagring", - "sso": "SSO" - }, - "amount-text": { - "memo_one": "ANTECKNING", - "memo_other": "ANTECKNINGAR", - "tag_one": "TAGG", - "tag_other": "TAGGAR", - "day_one": "DAG", - "day_other": "DAGAR" - }, - "message": { - "no-memos": "inga anteckningar 🌃", - "memos-ready": "alla anteckningar är redo 🎉", - "restored-successfully": "Återställdes framgångsrikt", - "memo-updated-datetime": "Anteckning skapad datum och tid ändrad", - "invalid-created-datetime": "Ogiltig skapad datumtid.", - "change-memo-created-time": "Ändra anteckning skapade tid", - "memo-not-found": "Anteckning hittades inte.", - "fill-all": "Var god fyll i alla fält.", - "password-not-match": "Lösenorden matchar inte.", - "new-password-not-match": "Nya lösenord matchar inte.", - "image-load-failed": "Bildladdning misslyckades", - "fill-form": "Vänligen fyll i detta formulär", - "login-failed": "Inloggningen misslyckades", - "signup-failed": "Registrering misslyckades", - "user-not-found": "Användaren hittades inte", - "password-changed": "Lösenord ändrat", - "private-only": "Denna anteckning är privat.", - "copied": "Kopierad", - "succeed-copy-content": "Innehåll kopierades framgångsrikt.", - "succeed-copy-link": "Länk kopierades framgångsrikt.", - "change-resource-filename": "Ändra resursfilnamn", - "resource-filename-updated": "Resursfilnamn ändrat.", - "invalid-resource-filename": "Ogiltligt filnamn.", - "click-to-save-the-image": "Klicka för att spara bilden", - "generating-the-screenshot": "Genererar skärmdumpen...", - "count-selected-resources": "Totalt valt", - "too-short": "För kort", - "too-long": "För långt", - "not-allow-space": "Tillåt inte mellanslag", - "not-allow-chinese": "Tillåt inte kinesiska", - "succeed-vacuum-database": "Succeed to vacuum database", - "succeed-update-additional-style": "Ytterligare stil uppdaterades framgångsrikt.", - "succeed-copy-resource-link": "Resurslänk kopierades framgångsrikt.", - "succeed-update-customized-profile": "Profil framgångsrikt anpassad.", - "succeed-update-additional-script": "Ytterligare skript uppdateras framgångsrikt.", - "update-succeed": "Uppdateras framgångsrikt", - "succeed-copy-code": "Kod kopierades framgångsrikt.", - "page-not-found": "404 - Sidan hittades inte 😥" - }, - "days": { - "monday": "Måndag", - "mon": "Mån", - "tuesday": "Tisdag", - "tue": "Tis", - "wednesday": "Onsdag", - "wed": "Ons", - "thursday": "Torsdag", - "thu": "Tors", - "friday": "Fredag", - "fri": "Fre", - "saturday": "Lördag", - "sat": "Lör", - "sunday": "Söndag", - "sun": "Sön" + "common": { + "about": "Om", + "email": "E-post", + "password": "Lösenord", + "repeat-password-short": "Upprepa", + "repeat-password": "Uprepa lösenordet", + "new-password": "Nytt lösenord", + "repeat-new-password": "Upprepa det nya lösenordet", + "username": "Användarnamn", + "nickname": "Smeknamn", + "save": "Spara", + "close": "Stäng", + "cancel": "Avbryt", + "create": "Skapa", + "change": "Ändra", + "confirm": "Bekräfta", + "reset": "Återställ", + "language": "Språk", + "version": "Version", + "pin": "Fäst", + "unpin": "Ta bort fäst", + "edit": "Redigera", + "restore": "Återställ", + "delete": "Radera", + "null": "Null", + "share": "Dela", + "archive": "Arkivera", + "basic": "Grundläggande", + "admin": "Admin", + "explore": "Utforska", + "sign-in": "Logga in", + "sign-up": "Bli medlem", + "sign-out": "Logga ut", + "back-to-home": "Tillbaka hem", + "type": "Typ", + "shortcuts": "Genvägar", + "title": "Titel", + "filter": "Filter", + "tags": "Taggar", + "yourself": "Själv", + "archived-at": "Arkiverad på", + "changed": "Ändrad", + "update-on": "Uppdatering på", + "fold": "Vik ihop", + "expand": "Expandera", + "image": "Bild", + "link": "Länk", + "vacuum": "Vacuum", + "select": "Select", + "avatar": "Avatar", + "database": "Databas" + }, + "slogan": "En öppen källkod, self-hosted antecknings hubb med kunskapshantering och socialisering", + "auth": { + "signup-as-host": "Registera dig som värd", + "host-tip": "Du registerar dig som webbplatsvärd.", + "not-host-tip": "Om du inte har ett konto, kontakta webbplatsens värd." + }, + "sidebar": { + "daily-review": "Daglig återblick", + "resources": "Resurser", + "setting": "Inställningar", + "archived": "Arkiverade" + }, + "daily-review": { + "oops-nothing": "Oj, det finns inget här." + }, + "resources": { + "description": "Visa dina statiska resurser i anteckningarn. t.ex bilder.", + "no-resources": "Inga resurser.", + "fetching-data": "hämtar data...", + "upload": "Ladda upp", + "preview": "Förhandsvisa", + "copy-link": "Kopiera länk", + "delete-resource": "Ta bort resurs", + "warning-text": "Är du säker på att du vill ta bort den här resursen? DENNA ÅTGÄRD ÄR OÅTERSTÄLLBAR❗", + "linked-amount": "Länkat antecknings belopp", + "rename": "Döp om", + "warning-text-unused": "Är du säker på att du vill ta bort denna oanvända resurs? DENNA ÅTGÄRD ÄR OÅTERSTÄLLBAR❗", + "no-unused-resources": "Inga oanvända resurser", + "name": "Name", + "clear": "Rensa" + }, + "archived": { + "archived-memos": "Arkiverade anteckningar", + "no-archived-memos": "Inga arkiverade anteckningar.", + "fetching-data": "hämtar data..." + }, + "editor": { + "editing": "Redigerar...", + "cancel-edit": "Avbryt redigering", + "save": "Spara", + "placeholder": "Några tankar...", + "only-image-supported": "Endast bildfiler stöds.", + "cant-empty": "Innehållet får inte vara tomt", + "local": "Lokal", + "resources": "Resurser" + }, + "memo": { + "view-detail": "Visa detaljer", + "copy": "Kopiera", + "visibility": { + "private": "Endast synlig för dig", + "protected": "Synlig för medlemmar", + "public": "Synlig för alla", + "disabled": "Offentliga anteckningar är inaktiverade" } + }, + "memo-list": { + "fetching-data": "hämtar data...", + "fetch-more": "Klicka här för att hämta mer" + }, + "shortcut-list": { + "shortcut-title": "Genvägs titel", + "create-shortcut": "Skapa genväg", + "edit-shortcut": "Ändra genväg", + "eligible-memo": "kvalificerad anteckning", + "fill-previous": "Vänligen fyll i tidigare filtervärde", + "title-required": "Titel krävs", + "value-required": "Filtervärde krävs" + }, + "filter": { + "new-filter": "Nytt filter", + "type": { + "tag": "Tag", + "type": "Type", + "text": "Text", + "display-time": "Display Time", + "visibility": "Visibility" + }, + "operator": { + "contains": "Innehåller", + "not-contains": "Innehåller inte", + "is": "Är", + "is-not": "Är inte", + "before": "Innan", + "after": "Efter" + }, + "value": { + "not-tagged": "Inga taggar", + "linked": "Har länkar" + }, + "text-placeholder": "Börjar med ^ för att använda regex" + }, + "tag-list": { + "tip-text": "Ange `#tag ` för att skapa" + }, + "search": { + "quickly-filter": "Filtrera snabbt" + }, + "setting": { + "my-account": "Mitt konto", + "preference": "Preferenser", + "member": "Medlem", + "member-list": "Medlemslista", + "system": "System", + "account-section": { + "title": "Kontoinformation", + "update-information": "Uppdatera informationen", + "change-password": "Ändra lösenord" + }, + "preference-section": { + "theme": "Tema", + "default-memo-visibility": "Standard synlighet för anteckningar", + "enable-folding-memo": "Aktivera vikbara anteckningar", + "editor-font-style": "Redigerare teckensnitt", + "mobile-editor-style": "Mobilredigerade stil", + "default-memo-sort-option": "Anteckning visningstid", + "created_ts": "Skapade tid", + "updated_ts": "Upodaterad tid", + "enable-double-click": "Aktivera dubbelklick för att redigera" + }, + "member-section": { + "create-a-member": "Skapa en medlem" + }, + "system-section": { + "server-name": "Server Name", + "customize-server": { + "title": "Customize Server", + "default": "Default is memos", + "icon-url": "Icon URL" + }, + "database-file-size": "Databas filstorlek", + "allow-user-signup": "Tillåt användarregistrering", + "additional-style": "Ytterligare stil", + "additional-script": "Ytterligare skript", + "additional-style-placeholder": "Ytterligare CSS kod", + "additional-script-placeholder": "Ytterligare JavaScript kod", + "disable-public-memos": "Inaktivera offentliga anteckningar" + }, + "appearance-option": { + "system": "Follow system", + "light": "Alltid ljus", + "dark": "Alltid mörk" + }, + "storage-section": { + "create-a-service": "Skapa en tjänst", + "storage-services-list": "Lista över lagringstjänster", + "update-a-service": "Uppdatera en tjänst", + "warning-text": "Är du säker på att ta bort den här lagringstjänsten? DEN HÄR ÅTGÄRDEN ÄR IRREVERSIBEL❗", + "delete-storage": "Ta bort lagring" + }, + "storage": "Lagring", + "sso": "SSO" + }, + "amount-text": { + "memo_one": "ANTECKNING", + "memo_other": "ANTECKNINGAR", + "tag_one": "TAGG", + "tag_other": "TAGGAR", + "day_one": "DAG", + "day_other": "DAGAR" + }, + "message": { + "no-memos": "inga anteckningar 🌃", + "memos-ready": "alla anteckningar är redo 🎉", + "restored-successfully": "Återställdes framgångsrikt", + "memo-updated-datetime": "Anteckning skapad datum och tid ändrad", + "invalid-created-datetime": "Ogiltig skapad datumtid.", + "change-memo-created-time": "Ändra anteckning skapade tid", + "memo-not-found": "Anteckning hittades inte.", + "fill-all": "Var god fyll i alla fält.", + "password-not-match": "Lösenorden matchar inte.", + "new-password-not-match": "Nya lösenord matchar inte.", + "image-load-failed": "Bildladdning misslyckades", + "fill-form": "Vänligen fyll i detta formulär", + "login-failed": "Inloggningen misslyckades", + "signup-failed": "Registrering misslyckades", + "user-not-found": "Användaren hittades inte", + "password-changed": "Lösenord ändrat", + "private-only": "Denna anteckning är privat.", + "copied": "Kopierad", + "succeed-copy-content": "Innehåll kopierades framgångsrikt.", + "succeed-copy-link": "Länk kopierades framgångsrikt.", + "change-resource-filename": "Ändra resursfilnamn", + "resource-filename-updated": "Resursfilnamn ändrat.", + "invalid-resource-filename": "Ogiltligt filnamn.", + "click-to-save-the-image": "Klicka för att spara bilden", + "generating-the-screenshot": "Genererar skärmdumpen...", + "count-selected-resources": "Totalt valt", + "too-short": "För kort", + "too-long": "För långt", + "not-allow-space": "Tillåt inte mellanslag", + "not-allow-chinese": "Tillåt inte kinesiska", + "succeed-vacuum-database": "Succeed to vacuum database", + "succeed-update-additional-style": "Ytterligare stil uppdaterades framgångsrikt.", + "succeed-copy-resource-link": "Resurslänk kopierades framgångsrikt.", + "succeed-update-customized-profile": "Profil framgångsrikt anpassad.", + "succeed-update-additional-script": "Ytterligare skript uppdateras framgångsrikt.", + "update-succeed": "Uppdateras framgångsrikt", + "succeed-copy-code": "Kod kopierades framgångsrikt.", + "page-not-found": "404 - Sidan hittades inte 😥" + }, + "days": { + "monday": "Måndag", + "mon": "Mån", + "tuesday": "Tisdag", + "tue": "Tis", + "wednesday": "Onsdag", + "wed": "Ons", + "thursday": "Torsdag", + "thu": "Tors", + "friday": "Fredag", + "fri": "Fre", + "saturday": "Lördag", + "sat": "Lör", + "sunday": "Söndag", + "sun": "Sön" + } } diff --git a/web/src/locales/tr.json b/web/src/locales/tr.json index 12842e27..532ef8d3 100644 --- a/web/src/locales/tr.json +++ b/web/src/locales/tr.json @@ -179,7 +179,7 @@ "additional-script-placeholder": "Ek JavaScript", "disable-public-memos": "Halka açık notları devre dışı bırak" }, - "apperance-option": { + "appearance-option": { "system": "Otomatik", "light": "Her zaman açık renkli", "dark": "Her zaman koyu renkli" diff --git a/web/src/locales/uk.json b/web/src/locales/uk.json index e3f5c27d..e449b3be 100644 --- a/web/src/locales/uk.json +++ b/web/src/locales/uk.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Про Memos", - "email": "Емейл", - "password": "Пароль", - "repeat-password-short": "Повторіть", - "repeat-password": "Повторіть пароль", - "new-password": "Новий парль", - "repeat-new-password": "Повторіть новий пароль", - "username": "Ім'я користувача", - "nickname": "Нікнейм", - "save": "Зберегти", - "close": "Закрити", - "cancel": "Скасувати", - "create": "Створити", - "change": "Змінити", - "confirm": "Підтвердити", - "reset": "Стерти", - "language": "Мова", - "version": "Версія", - "pin": "Закріпити", - "unpin": "Відкріпити", - "edit": "Редагувати", - "restore": "Відновити", - "delete": "Видалити", - "null": "Пусто", - "share": "Поділитися", - "archive": "Архівувати", - "basic": "Базові", - "admin": "Адміністратор", - "explore": "Більше", - "sign-in": "Увійти", - "sign-up": "Зареєструватися", - "sign-out": "Вийти", - "back-to-home": "Повернутися на головну", - "type": "Типу", - "shortcuts": "Ярлики", - "title": "Заголовок", - "filter": "Фільтр", - "tags": "Теги", - "yourself": "Ви", - "archived-at": "Заархівовано", - "changed": "змінено", - "update-on": "Оновлено", - "fold": "Згорнути", - "expand": "Розгорнути", - "image": "Світлина", - "link": "Посилання", - "vacuum": "Стиснути", - "select": "Вибрати", - "database": "Database", - "avatar": "Avatar" - }, - "slogan": "Self-hosted платформа для записок та соціалізації з відкритим кодом An open-source.", - "auth": { - "signup-as-host": "Зареєструватися як власник", - "host-tip": "Ви реєструєте власника сайту.", - "not-host-tip": "Якщо ви не маєте акаунту, зверніться до власника сайту." - }, - "sidebar": { - "daily-review": "По днях", - "resources": "Ресурси", - "setting": "Налаштування", - "archived": "Заархівовані" - }, - "daily-review": { - "oops-nothing": "Ой, тут нічого немає." - }, - "resources": { - "description": "Переглянути ваші статичні ресурси в Memos (світлини)", - "no-resources": "Немає ресурсів.", - "fetching-data": "завантаження даних...", - "upload": "Вивантажити", - "preview": "Попередній перегляд", - "copy-link": "Копіювати посилання", - "delete-resource": "Видалити ресурс", - "warning-text": "Ви впевнені що хочете видалити цей ресурс? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗", - "linked-amount": "Кількість нотаток", - "rename": "Переіменувати", - "warning-text-unused": "Ви впенвені що хочете видалити невикористовувані ресурси? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗", - "no-unused-resources": "Немає невикористаних ресурсів", - "name": "Назва", - "clear": "Clear" - }, - "archived": { - "archived-memos": "Заархівовані нотатки", - "no-archived-memos": "Немає заархівованих нотаток.", - "fetching-data": "завантаження даних..." - }, - "editor": { - "editing": "Редагування...", - "cancel-edit": "Скасувати", - "save": "Зберегти", - "placeholder": "Ваші думки...", - "only-image-supported": "Тільки файли-світлини підтримуються.", - "cant-empty": "Текст не може бути порожнім", - "local": "З комп'ютера", - "resources": "Завантажені" - }, - "memo": { - "view-detail": "Деталі", - "copy": "Копіювати", - "visibility": { - "private": "Видимий тільки вам", - "protected": "Видимий тільки користувачам", - "public": "Видимий усім", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "завантаження даних...", - "fetch-more": "Завантажити більше" - }, - "shortcut-list": { - "shortcut-title": "назва ярлика", - "create-shortcut": "Створити ярлик", - "edit-shortcut": "Редагувати ярлик", - "eligible-memo": "пов'язані нотатки", - "fill-previous": "Будь ласка заповніть значення фільтра", - "title-required": "Назва обов'язкова", - "value-required": "Значення фільтра обов'язкове" - }, - "filter": { - "new-filter": "Новий фільтр", - "type": { - "tag": "Тег", - "type": "Тип", - "text": "Текст", - "display-time": "Час відображення", - "visibility": "Видимість" - }, - "operator": { - "contains": "Містить", - "not-contains": "Не містить", - "is": "Є", - "is-not": "Не є", - "before": "До", - "after": "Після" - }, - "value": { - "not-tagged": "Немає тегів", - "linked": "Має посилання" - }, - "text-placeholder": "Почніть з ^ щоб використовувати регулярні вирази" - }, - "tag-list": { - "tip-text": "Введіть `#tag` щоб створити" - }, - "search": { - "quickly-filter": "Швидкий фільтр" - }, - "setting": { - "my-account": "Мій аккаунт", - "preference": "Налаштування", - "member": "Користувачі", - "member-list": "Список користувачів", - "system": "Системні", - "account-section": { - "title": "Інформація про акаунт", - "update-information": "Оновити інформацію", - "change-password": "Змінити пароль" - }, - "preference-section": { - "theme": "Тема", - "default-memo-visibility": "Стандартна видимість нотаток", - "enable-folding-memo": "Згортати нотатки", - "editor-font-style": "Стиль шрифта", - "mobile-editor-style": "Стиль мобільного редактора", - "default-memo-sort-option": "Час відображення закладки", - "created_ts": "Час створення", - "updated_ts": "Час оновлення", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Створити користувача" - }, - "system-section": { - "server-name": "Назва додатка", - "customize-server": { - "title": "Налаштувати додаток", - "default": "За замовчуванням: memos", - "icon-url": "URL іконки" - }, - "database-file-size": "Розмір файлу бази даних", - "allow-user-signup": "Дозволити реєстрацію користувачів", - "additional-style": "Кастомні стилі", - "additional-script": "Кастомні скрипти", - "additional-style-placeholder": "Додатковий CSS", - "additional-script-placeholder": "Додатковий JavaScript", - "disable-public-memos": "Disable public memos" - }, - "apperance-option": { - "system": "Автоматично", - "light": "Завжди світла", - "dark": "Завжди темна" - }, - "storage": "Storage", - "storage-section": { - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage", - "storage-services-list": "Storage service list", - "create-a-service": "Create a service" - }, - "sso": "SSO" - }, - "amount-text": { - "memo_one": "НОТАТКА", - "tag_one": "ТЕГ", - "day_one": "ДЕНЬ", - "day_other": "DAYS", - "memo_other": "MEMOS", - "tag_other": "TAGS" - }, - "message": { - "no-memos": "немає нотаток 🌃", - "memos-ready": "більше нотаток немає 🎉", - "restored-successfully": "Відновлення успішне.", - "memo-updated-datetime": "Час створення змінено.", - "invalid-created-datetime": "Невірний час створення.", - "change-memo-created-time": "Змінити час створення нотатки", - "memo-not-found": "Нотатку не знайдено.", - "fill-all": "Будь ласка заповність усі поля.", - "password-not-match": "Паролі не співпадають.", - "new-password-not-match": "Нові паролі не співпадають.", - "image-load-failed": "Помилка завантаження зображення", - "fill-form": "Будь ласка заповніть форму", - "login-failed": "Помилка входу", - "signup-failed": "Помилка реєстрації", - "user-not-found": "Користувача не знайдено", - "password-changed": "Пароль змінено", - "private-only": "Ця нотатка приватна.", - "copied": "Скопійовано", - "succeed-copy-content": "Скопійовано текст в буфер обміну.", - "succeed-copy-link": "Скопійовано посилання в буфер обміну.", - "change-resource-filename": "Змінити назву файла", - "resource-filename-updated": "Назву файла змінено.", - "invalid-resource-filename": "Невірна назва файла.", - "click-to-save-the-image": "Натисніть щоб зберегти світлину", - "generating-the-screenshot": "Створюємо знімок...", - "count-selected-resources": "Всього вибрано", - "too-short": "Занадто коротке", - "too-long": "Занадто довге", - "not-allow-space": "Пробіл не дозволено", - "not-allow-chinese": "Китайські символи не дозволено", - "succeed-vacuum-database": "БД стиснуто", - "succeed-update-additional-style": "Успішно додано стилі", - "succeed-copy-resource-link": "Посилання на ресурс скопійовано в буфер обміну", - "succeed-update-customized-profile": "Успішно збережено власний профіль", - "succeed-update-additional-script": "Успішно додано скрипти", - "update-succeed": "Збережно", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Понеділок", - "mon": "Пон.", - "tuesday": "Вівторок", - "tue": "Вів.", - "wednesday": "Середа", - "wed": "Сер.", - "thursday": "Четвер", - "thu": "Чет.", - "friday": "П'ятниця", - "fri": "П'ят.", - "saturday": "Субота", - "sat": "Суб.", - "sunday": "Неділя", - "sun": "Нед." + "common": { + "about": "Про Memos", + "email": "Емейл", + "password": "Пароль", + "repeat-password-short": "Повторіть", + "repeat-password": "Повторіть пароль", + "new-password": "Новий парль", + "repeat-new-password": "Повторіть новий пароль", + "username": "Ім'я користувача", + "nickname": "Нікнейм", + "save": "Зберегти", + "close": "Закрити", + "cancel": "Скасувати", + "create": "Створити", + "change": "Змінити", + "confirm": "Підтвердити", + "reset": "Стерти", + "language": "Мова", + "version": "Версія", + "pin": "Закріпити", + "unpin": "Відкріпити", + "edit": "Редагувати", + "restore": "Відновити", + "delete": "Видалити", + "null": "Пусто", + "share": "Поділитися", + "archive": "Архівувати", + "basic": "Базові", + "admin": "Адміністратор", + "explore": "Більше", + "sign-in": "Увійти", + "sign-up": "Зареєструватися", + "sign-out": "Вийти", + "back-to-home": "Повернутися на головну", + "type": "Типу", + "shortcuts": "Ярлики", + "title": "Заголовок", + "filter": "Фільтр", + "tags": "Теги", + "yourself": "Ви", + "archived-at": "Заархівовано", + "changed": "змінено", + "update-on": "Оновлено", + "fold": "Згорнути", + "expand": "Розгорнути", + "image": "Світлина", + "link": "Посилання", + "vacuum": "Стиснути", + "select": "Вибрати", + "database": "Database", + "avatar": "Avatar" + }, + "slogan": "Self-hosted платформа для записок та соціалізації з відкритим кодом An open-source.", + "auth": { + "signup-as-host": "Зареєструватися як власник", + "host-tip": "Ви реєструєте власника сайту.", + "not-host-tip": "Якщо ви не маєте акаунту, зверніться до власника сайту." + }, + "sidebar": { + "daily-review": "По днях", + "resources": "Ресурси", + "setting": "Налаштування", + "archived": "Заархівовані" + }, + "daily-review": { + "oops-nothing": "Ой, тут нічого немає." + }, + "resources": { + "description": "Переглянути ваші статичні ресурси в Memos (світлини)", + "no-resources": "Немає ресурсів.", + "fetching-data": "завантаження даних...", + "upload": "Вивантажити", + "preview": "Попередній перегляд", + "copy-link": "Копіювати посилання", + "delete-resource": "Видалити ресурс", + "warning-text": "Ви впевнені що хочете видалити цей ресурс? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗", + "linked-amount": "Кількість нотаток", + "rename": "Переіменувати", + "warning-text-unused": "Ви впенвені що хочете видалити невикористовувані ресурси? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗", + "no-unused-resources": "Немає невикористаних ресурсів", + "name": "Назва", + "clear": "Clear" + }, + "archived": { + "archived-memos": "Заархівовані нотатки", + "no-archived-memos": "Немає заархівованих нотаток.", + "fetching-data": "завантаження даних..." + }, + "editor": { + "editing": "Редагування...", + "cancel-edit": "Скасувати", + "save": "Зберегти", + "placeholder": "Ваші думки...", + "only-image-supported": "Тільки файли-світлини підтримуються.", + "cant-empty": "Текст не може бути порожнім", + "local": "З комп'ютера", + "resources": "Завантажені" + }, + "memo": { + "view-detail": "Деталі", + "copy": "Копіювати", + "visibility": { + "private": "Видимий тільки вам", + "protected": "Видимий тільки користувачам", + "public": "Видимий усім", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "завантаження даних...", + "fetch-more": "Завантажити більше" + }, + "shortcut-list": { + "shortcut-title": "назва ярлика", + "create-shortcut": "Створити ярлик", + "edit-shortcut": "Редагувати ярлик", + "eligible-memo": "пов'язані нотатки", + "fill-previous": "Будь ласка заповніть значення фільтра", + "title-required": "Назва обов'язкова", + "value-required": "Значення фільтра обов'язкове" + }, + "filter": { + "new-filter": "Новий фільтр", + "type": { + "tag": "Тег", + "type": "Тип", + "text": "Текст", + "display-time": "Час відображення", + "visibility": "Видимість" + }, + "operator": { + "contains": "Містить", + "not-contains": "Не містить", + "is": "Є", + "is-not": "Не є", + "before": "До", + "after": "Після" + }, + "value": { + "not-tagged": "Немає тегів", + "linked": "Має посилання" + }, + "text-placeholder": "Почніть з ^ щоб використовувати регулярні вирази" + }, + "tag-list": { + "tip-text": "Введіть `#tag` щоб створити" + }, + "search": { + "quickly-filter": "Швидкий фільтр" + }, + "setting": { + "my-account": "Мій аккаунт", + "preference": "Налаштування", + "member": "Користувачі", + "member-list": "Список користувачів", + "system": "Системні", + "account-section": { + "title": "Інформація про акаунт", + "update-information": "Оновити інформацію", + "change-password": "Змінити пароль" + }, + "preference-section": { + "theme": "Тема", + "default-memo-visibility": "Стандартна видимість нотаток", + "enable-folding-memo": "Згортати нотатки", + "editor-font-style": "Стиль шрифта", + "mobile-editor-style": "Стиль мобільного редактора", + "default-memo-sort-option": "Час відображення закладки", + "created_ts": "Час створення", + "updated_ts": "Час оновлення", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Створити користувача" + }, + "system-section": { + "server-name": "Назва додатка", + "customize-server": { + "title": "Налаштувати додаток", + "default": "За замовчуванням: memos", + "icon-url": "URL іконки" + }, + "database-file-size": "Розмір файлу бази даних", + "allow-user-signup": "Дозволити реєстрацію користувачів", + "additional-style": "Кастомні стилі", + "additional-script": "Кастомні скрипти", + "additional-style-placeholder": "Додатковий CSS", + "additional-script-placeholder": "Додатковий JavaScript", + "disable-public-memos": "Disable public memos" + }, + "appearance-option": { + "system": "Автоматично", + "light": "Завжди світла", + "dark": "Завжди темна" + }, + "storage": "Storage", + "storage-section": { + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage", + "storage-services-list": "Storage service list", + "create-a-service": "Create a service" + }, + "sso": "SSO" + }, + "amount-text": { + "memo_one": "НОТАТКА", + "tag_one": "ТЕГ", + "day_one": "ДЕНЬ", + "day_other": "DAYS", + "memo_other": "MEMOS", + "tag_other": "TAGS" + }, + "message": { + "no-memos": "немає нотаток 🌃", + "memos-ready": "більше нотаток немає 🎉", + "restored-successfully": "Відновлення успішне.", + "memo-updated-datetime": "Час створення змінено.", + "invalid-created-datetime": "Невірний час створення.", + "change-memo-created-time": "Змінити час створення нотатки", + "memo-not-found": "Нотатку не знайдено.", + "fill-all": "Будь ласка заповність усі поля.", + "password-not-match": "Паролі не співпадають.", + "new-password-not-match": "Нові паролі не співпадають.", + "image-load-failed": "Помилка завантаження зображення", + "fill-form": "Будь ласка заповніть форму", + "login-failed": "Помилка входу", + "signup-failed": "Помилка реєстрації", + "user-not-found": "Користувача не знайдено", + "password-changed": "Пароль змінено", + "private-only": "Ця нотатка приватна.", + "copied": "Скопійовано", + "succeed-copy-content": "Скопійовано текст в буфер обміну.", + "succeed-copy-link": "Скопійовано посилання в буфер обміну.", + "change-resource-filename": "Змінити назву файла", + "resource-filename-updated": "Назву файла змінено.", + "invalid-resource-filename": "Невірна назва файла.", + "click-to-save-the-image": "Натисніть щоб зберегти світлину", + "generating-the-screenshot": "Створюємо знімок...", + "count-selected-resources": "Всього вибрано", + "too-short": "Занадто коротке", + "too-long": "Занадто довге", + "not-allow-space": "Пробіл не дозволено", + "not-allow-chinese": "Китайські символи не дозволено", + "succeed-vacuum-database": "БД стиснуто", + "succeed-update-additional-style": "Успішно додано стилі", + "succeed-copy-resource-link": "Посилання на ресурс скопійовано в буфер обміну", + "succeed-update-customized-profile": "Успішно збережено власний профіль", + "succeed-update-additional-script": "Успішно додано скрипти", + "update-succeed": "Збережно", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Понеділок", + "mon": "Пон.", + "tuesday": "Вівторок", + "tue": "Вів.", + "wednesday": "Середа", + "wed": "Сер.", + "thursday": "Четвер", + "thu": "Чет.", + "friday": "П'ятниця", + "fri": "П'ят.", + "saturday": "Субота", + "sat": "Суб.", + "sunday": "Неділя", + "sun": "Нед." + } } diff --git a/web/src/locales/vi.json b/web/src/locales/vi.json index 2462ce24..e442ae11 100644 --- a/web/src/locales/vi.json +++ b/web/src/locales/vi.json @@ -1,271 +1,271 @@ { - "common": { - "about": "Thông tin", - "email": "Email", - "password": "Mật khẩu", - "repeat-password-short": "Nhập lại", - "repeat-password": "Nhập lại mật khẩu", - "new-password": "Mật khẩu mới", - "repeat-new-password": "Nhập lại mật khẩu mới", - "username": "Tên đăng nhập", - "nickname": "Biệt danh", - "save": "Lưu", - "close": "Đóng", - "cancel": "Hủy", - "create": "Tạo mới", - "change": "Thay đổi", - "confirm": "Xác nhận", - "reset": "Khôi phục", - "language": "Ngôn ngữ", - "version": "Phiên bản", - "pin": "Ghim", - "unpin": "Bỏ ghim", - "edit": "Chỉnh sửa", - "restore": "Khôi phục", - "delete": "Xóa", - "null": "Trống rỗng", - "share": "Chia sẻ", - "archive": "Lưu trữ", - "basic": "Cơ bản", - "admin": "Quản trị", - "explore": "Khám phá", - "sign-in": "Đăng nhập", - "sign-up": "Đăng ký", - "sign-out": "Đăng xuất", - "back-to-home": "Về trang chủ", - "type": "Kiểu", - "shortcuts": "Lối tắt", - "title": "Tiêu đề", - "filter": "Bộ lọc", - "tags": "Thẻ", - "yourself": "Chính bạn", - "archived-at": "Lưu trữ lúc", - "changed": "đã thay đổi", - "update-on": "Cập nhật lúc", - "fold": "Cuộn", - "expand": "Mở rộng", - "image": "Hình ảnh", - "link": "Liên kết", - "vacuum": "Dọn dẹp", - "select": "Chọn", - "avatar": "Avatar", - "database": "Database" - }, - "slogan": "Mã nguồn mở ghi chú cho phép quản lý tri thức và chia sẻ cộng đồng.", - "auth": { - "signup-as-host": "Đăng ký như chủ nhân", - "host-tip": "Bạn đang đăng ký với tư cách chủ nhân của trang web này.", - "not-host-tip": "Nếu chưa có tài khoản, bạn cần phải liên hệ chủ nhân của trang web." - }, - "sidebar": { - "daily-review": "Hàng Ngày", - "resources": "Tài Nguyên", - "setting": "Cài Đặt", - "archived": "Lưu Trữ" - }, - "daily-review": { - "oops-nothing": "Ồ, chẳng có gì ở đây cả." - }, - "resources": { - "description": "Xem toàn bộ tài nguyên của trang web. Ví dụ như các hình ảnh.", - "no-resources": "Không có tài nguyên.", - "fetching-data": "đang tải dữ liệu...", - "upload": "Tải lên", - "preview": "Xem trước", - "copy-link": "Sao chép", - "delete-resource": "Xóa tài nguyên", - "warning-text": "Bạn có chắc chắn xóa tài nguyên này không? HÀNH ĐỘNG KHÔNG THỂ KHÔI PHỤC❗", - "linked-amount": "Số ghi chú đã liên kết", - "rename": "Đổi tên", - "warning-text-unused": "Bạn có chắc chắn xóa những tài nguyên không sử dụng này không? HÀNH ĐỘNG KHÔNG THỂ KHÔI PHỤC❗", - "no-unused-resources": "Không có tài nguyên không sử dụng", - "clear": "Clear", - "name": "Name" - }, - "archived": { - "archived-memos": "Ghi chú đã lưu trữ", - "no-archived-memos": "Không có ghi chú nào cả.", - "fetching-data": "đang tải dữ liệu..." - }, - "editor": { - "editing": "Đang chỉnh sửa...", - "cancel-edit": "Thoát chỉnh sửa", - "save": "Lưu", - "placeholder": "Bất cứ gì bạn đang nghĩ...", - "only-image-supported": "Chỉ hỗ trợ hình ảnh.", - "cant-empty": "Nội dung không thể trống", - "local": "Tải lên", - "resources": "Tài nguyên" - }, - "memo": { - "view-detail": "Xem Chi Tiết", - "copy": "Sao Chép", - "visibility": { - "private": "Riêng tư", - "protected": "Bảo vệ", - "public": "Công khai", - "disabled": "Public memos are disabled" - } - }, - "memo-list": { - "fetching-data": "đang tải dữ liệu...", - "fetch-more": "Nhấp vào đây để tìm nạp thêm" - }, - "shortcut-list": { - "shortcut-title": "Tên lối tắt", - "create-shortcut": "Tạo lối tắt", - "edit-shortcut": "Chỉnh sửa lối tắt", - "eligible-memo": "ghi chú đạt chuẩn", - "fill-previous": "Vui lòng nhập vào giá trị của bộ lọc trước đó", - "title-required": "Tiêu đề là bắt buộc", - "value-required": "Giá trị bộ lọc là bắt buộc" - }, - "filter": { - "new-filter": "Bộ Lọc Mới", - "type": { - "tag": "Thẻ", - "type": "Loại", - "text": "Văn Bản", - "display-time": "Thời Gian", - "visibility": "Hiển Thị" - }, - "operator": { - "contains": "Chứa", - "not-contains": "Không Chứa", - "is": "Là", - "is-not": "Không Phải", - "before": "Trước", - "after": "Sau" - }, - "value": { - "not-tagged": "Không có thẻ", - "linked": "Có liên kết" - }, - "text-placeholder": "Starts with ^ to use regex" - }, - "tag-list": { - "tip-text": "Nhập `#tag` để tạo mới" - }, - "search": { - "quickly-filter": "Lọc nhanh" - }, - "setting": { - "my-account": "Tài Khoản", - "preference": "Tùy Chỉnh", - "member": "Thành Viên", - "member-list": "Danh sách thành viên", - "system": "Hệ Thống", - "account-section": { - "title": "Thông tin tài khoản", - "update-information": "Cập nhật thông tin", - "change-password": "Đổi mật khẩu" - }, - "preference-section": { - "theme": "Chủ đề", - "default-memo-visibility": "Chế độ hiển thị mặc định", - "enable-folding-memo": "Bật ghi chú lồng", - "editor-font-style": "Phông chữ trình soạn thảo", - "mobile-editor-style": "Vị trí trình soạn thảo trên di động", - "default-memo-sort-option": "Thời gian hiện ghi chú", - "created_ts": "Thời gian tạo", - "updated_ts": "Thời gian cập nhật", - "enable-double-click": "Enable double-click to edit" - }, - "member-section": { - "create-a-member": "Thêm thành viên" - }, - "system-section": { - "server-name": "Tên máy chủ", - "customize-server": { - "title": "Tùy biến máy chủ", - "default": "Mặc định là memos", - "icon-url": "URL biểu tượng" - }, - "database-file-size": "Kích thước tệp cơ sở dữ liệu", - "allow-user-signup": "Cho phép người dùng đăng ký", - "additional-style": "Phong cách bổ sung", - "additional-script": "Mã lệnh bổ sung", - "additional-style-placeholder": "Mã CSS bổ sung", - "additional-script-placeholder": "Mã JavaScript bổ sung", - "disable-public-memos": "Disable public memos" - }, - "storage": "Storage", - "sso": "SSO", - "storage-section": { - "storage-services-list": "Storage service list", - "create-a-service": "Create a service", - "update-a-service": "Update a service", - "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIABLE❗", - "delete-storage": "Delete Storage" - }, - "apperance-option": { - "system": "Follow system", - "light": "Always light", - "dark": "Always dark" - } - }, - "amount-text": { - "memo_other": "GHI CHÚ", - "tag_other": "THẺ", - "day_other": "NGÀY", - "memo_one": "MEMO", - "tag_one": "TAG", - "day_one": "DAY" - }, - "message": { - "no-memos": "Không có ghi chú nào 🌃", - "memos-ready": "Tất cả ghi chú ở đây rồi 🎉", - "restored-successfully": "Đã khôi phục thành công", - "memo-updated-datetime": "Ghi chú đã thay đổi ngày giờ tạo.", - "invalid-created-datetime": "Ngày giờ tạo không hợp lệ.", - "change-memo-created-time": "Thay đổi thời gian tạo ghi chú", - "memo-not-found": "Không tìm thấy ghi chú.", - "fill-all": "Vui lòng nhập tất cả các mục.", - "new-password-not-match": "Mật khẩu mới không trung khớp.", - "image-load-failed": "Tải ảnh bị lỗi", - "fill-form": "Hãy điền đầy đủ nội dung của biểu mẫu", - "login-failed": "Đăng nhập thất bại", - "signup-failed": "Đăng ký thất bại", - "user-not-found": "Không tìm thấy người dùng này", - "password-not-match": "Mật khẩu không trùng khớp.", - "password-changed": "Mật khẩu đã được thay đổi", - "private-only": "Ghi chú này có trạng thái riêng tư.", - "copied": "Đã sao chép", - "succeed-copy-content": "Đã sao chép nội dung ghi chú thành công.", - "succeed-copy-link": "Đã sao chép liên kết thành công.", - "change-resource-filename": "Thay đổi tên tệp tài nguyên", - "resource-filename-updated": "Tên tệp tài nguyên đã thay đổi.", - "invalid-resource-filename": "Tên tệp không hợp lệ.", - "click-to-save-the-image": "Bấm để lưu hình ảnh", - "generating-the-screenshot": "Đang tạo ảnh chụp màn hình ...", - "count-selected-resources": "Tổng đã chọn", - "too-short": "Quá ngắn", - "too-long": "Quá dài", - "not-allow-space": "Không cho phép khoảng trống", - "not-allow-chinese": "Không sử dụng tiếng Trung Quốc", - "succeed-vacuum-database": "Đã dọn dẹp cơ sở dữ liệu thành công", - "succeed-update-additional-style": "Đã cập nhật phong cách bổ sung thành công", - "succeed-copy-resource-link": "Đã sao chép liên kết tài nguyên", - "succeed-update-customized-profile": "Đã cập nhật hồ sơ tùy chỉnh", - "succeed-update-additional-script": "Đã cập nhật mã lệnh bổ sung thành công", - "update-succeed": "Đã cập nhật thành công", - "succeed-copy-code": "Succeed to copy code to clipboard.", - "page-not-found": "404 - Page Not Found 😥" - }, - "days": { - "monday": "Thứ hai", - "mon": "T2", - "tuesday": "Thứ ba", - "tue": "T3", - "wednesday": "Thứ tư", - "wed": "T4", - "thursday": "Thứ năm", - "thu": "T5", - "friday": "Thứ sáu", - "fri": "T6", - "saturday": "Thứ bảy", - "sat": "T7", - "sunday": "Chủ nhật", - "sun": "CN" + "common": { + "about": "Thông tin", + "email": "Email", + "password": "Mật khẩu", + "repeat-password-short": "Nhập lại", + "repeat-password": "Nhập lại mật khẩu", + "new-password": "Mật khẩu mới", + "repeat-new-password": "Nhập lại mật khẩu mới", + "username": "Tên đăng nhập", + "nickname": "Biệt danh", + "save": "Lưu", + "close": "Đóng", + "cancel": "Hủy", + "create": "Tạo mới", + "change": "Thay đổi", + "confirm": "Xác nhận", + "reset": "Khôi phục", + "language": "Ngôn ngữ", + "version": "Phiên bản", + "pin": "Ghim", + "unpin": "Bỏ ghim", + "edit": "Chỉnh sửa", + "restore": "Khôi phục", + "delete": "Xóa", + "null": "Trống rỗng", + "share": "Chia sẻ", + "archive": "Lưu trữ", + "basic": "Cơ bản", + "admin": "Quản trị", + "explore": "Khám phá", + "sign-in": "Đăng nhập", + "sign-up": "Đăng ký", + "sign-out": "Đăng xuất", + "back-to-home": "Về trang chủ", + "type": "Kiểu", + "shortcuts": "Lối tắt", + "title": "Tiêu đề", + "filter": "Bộ lọc", + "tags": "Thẻ", + "yourself": "Chính bạn", + "archived-at": "Lưu trữ lúc", + "changed": "đã thay đổi", + "update-on": "Cập nhật lúc", + "fold": "Cuộn", + "expand": "Mở rộng", + "image": "Hình ảnh", + "link": "Liên kết", + "vacuum": "Dọn dẹp", + "select": "Chọn", + "avatar": "Avatar", + "database": "Database" + }, + "slogan": "Mã nguồn mở ghi chú cho phép quản lý tri thức và chia sẻ cộng đồng.", + "auth": { + "signup-as-host": "Đăng ký như chủ nhân", + "host-tip": "Bạn đang đăng ký với tư cách chủ nhân của trang web này.", + "not-host-tip": "Nếu chưa có tài khoản, bạn cần phải liên hệ chủ nhân của trang web." + }, + "sidebar": { + "daily-review": "Hàng Ngày", + "resources": "Tài Nguyên", + "setting": "Cài Đặt", + "archived": "Lưu Trữ" + }, + "daily-review": { + "oops-nothing": "Ồ, chẳng có gì ở đây cả." + }, + "resources": { + "description": "Xem toàn bộ tài nguyên của trang web. Ví dụ như các hình ảnh.", + "no-resources": "Không có tài nguyên.", + "fetching-data": "đang tải dữ liệu...", + "upload": "Tải lên", + "preview": "Xem trước", + "copy-link": "Sao chép", + "delete-resource": "Xóa tài nguyên", + "warning-text": "Bạn có chắc chắn xóa tài nguyên này không? HÀNH ĐỘNG KHÔNG THỂ KHÔI PHỤC❗", + "linked-amount": "Số ghi chú đã liên kết", + "rename": "Đổi tên", + "warning-text-unused": "Bạn có chắc chắn xóa những tài nguyên không sử dụng này không? HÀNH ĐỘNG KHÔNG THỂ KHÔI PHỤC❗", + "no-unused-resources": "Không có tài nguyên không sử dụng", + "clear": "Clear", + "name": "Name" + }, + "archived": { + "archived-memos": "Ghi chú đã lưu trữ", + "no-archived-memos": "Không có ghi chú nào cả.", + "fetching-data": "đang tải dữ liệu..." + }, + "editor": { + "editing": "Đang chỉnh sửa...", + "cancel-edit": "Thoát chỉnh sửa", + "save": "Lưu", + "placeholder": "Bất cứ gì bạn đang nghĩ...", + "only-image-supported": "Chỉ hỗ trợ hình ảnh.", + "cant-empty": "Nội dung không thể trống", + "local": "Tải lên", + "resources": "Tài nguyên" + }, + "memo": { + "view-detail": "Xem Chi Tiết", + "copy": "Sao Chép", + "visibility": { + "private": "Riêng tư", + "protected": "Bảo vệ", + "public": "Công khai", + "disabled": "Public memos are disabled" } + }, + "memo-list": { + "fetching-data": "đang tải dữ liệu...", + "fetch-more": "Nhấp vào đây để tìm nạp thêm" + }, + "shortcut-list": { + "shortcut-title": "Tên lối tắt", + "create-shortcut": "Tạo lối tắt", + "edit-shortcut": "Chỉnh sửa lối tắt", + "eligible-memo": "ghi chú đạt chuẩn", + "fill-previous": "Vui lòng nhập vào giá trị của bộ lọc trước đó", + "title-required": "Tiêu đề là bắt buộc", + "value-required": "Giá trị bộ lọc là bắt buộc" + }, + "filter": { + "new-filter": "Bộ Lọc Mới", + "type": { + "tag": "Thẻ", + "type": "Loại", + "text": "Văn Bản", + "display-time": "Thời Gian", + "visibility": "Hiển Thị" + }, + "operator": { + "contains": "Chứa", + "not-contains": "Không Chứa", + "is": "Là", + "is-not": "Không Phải", + "before": "Trước", + "after": "Sau" + }, + "value": { + "not-tagged": "Không có thẻ", + "linked": "Có liên kết" + }, + "text-placeholder": "Starts with ^ to use regex" + }, + "tag-list": { + "tip-text": "Nhập `#tag` để tạo mới" + }, + "search": { + "quickly-filter": "Lọc nhanh" + }, + "setting": { + "my-account": "Tài Khoản", + "preference": "Tùy Chỉnh", + "member": "Thành Viên", + "member-list": "Danh sách thành viên", + "system": "Hệ Thống", + "account-section": { + "title": "Thông tin tài khoản", + "update-information": "Cập nhật thông tin", + "change-password": "Đổi mật khẩu" + }, + "preference-section": { + "theme": "Chủ đề", + "default-memo-visibility": "Chế độ hiển thị mặc định", + "enable-folding-memo": "Bật ghi chú lồng", + "editor-font-style": "Phông chữ trình soạn thảo", + "mobile-editor-style": "Vị trí trình soạn thảo trên di động", + "default-memo-sort-option": "Thời gian hiện ghi chú", + "created_ts": "Thời gian tạo", + "updated_ts": "Thời gian cập nhật", + "enable-double-click": "Enable double-click to edit" + }, + "member-section": { + "create-a-member": "Thêm thành viên" + }, + "system-section": { + "server-name": "Tên máy chủ", + "customize-server": { + "title": "Tùy biến máy chủ", + "default": "Mặc định là memos", + "icon-url": "URL biểu tượng" + }, + "database-file-size": "Kích thước tệp cơ sở dữ liệu", + "allow-user-signup": "Cho phép người dùng đăng ký", + "additional-style": "Phong cách bổ sung", + "additional-script": "Mã lệnh bổ sung", + "additional-style-placeholder": "Mã CSS bổ sung", + "additional-script-placeholder": "Mã JavaScript bổ sung", + "disable-public-memos": "Disable public memos" + }, + "storage": "Storage", + "sso": "SSO", + "storage-section": { + "storage-services-list": "Storage service list", + "create-a-service": "Create a service", + "update-a-service": "Update a service", + "warning-text": "Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗", + "delete-storage": "Delete Storage" + }, + "appearance-option": { + "system": "Follow system", + "light": "Always light", + "dark": "Always dark" + } + }, + "amount-text": { + "memo_other": "GHI CHÚ", + "tag_other": "THẺ", + "day_other": "NGÀY", + "memo_one": "MEMO", + "tag_one": "TAG", + "day_one": "DAY" + }, + "message": { + "no-memos": "Không có ghi chú nào 🌃", + "memos-ready": "Tất cả ghi chú ở đây rồi 🎉", + "restored-successfully": "Đã khôi phục thành công", + "memo-updated-datetime": "Ghi chú đã thay đổi ngày giờ tạo.", + "invalid-created-datetime": "Ngày giờ tạo không hợp lệ.", + "change-memo-created-time": "Thay đổi thời gian tạo ghi chú", + "memo-not-found": "Không tìm thấy ghi chú.", + "fill-all": "Vui lòng nhập tất cả các mục.", + "new-password-not-match": "Mật khẩu mới không trung khớp.", + "image-load-failed": "Tải ảnh bị lỗi", + "fill-form": "Hãy điền đầy đủ nội dung của biểu mẫu", + "login-failed": "Đăng nhập thất bại", + "signup-failed": "Đăng ký thất bại", + "user-not-found": "Không tìm thấy người dùng này", + "password-not-match": "Mật khẩu không trùng khớp.", + "password-changed": "Mật khẩu đã được thay đổi", + "private-only": "Ghi chú này có trạng thái riêng tư.", + "copied": "Đã sao chép", + "succeed-copy-content": "Đã sao chép nội dung ghi chú thành công.", + "succeed-copy-link": "Đã sao chép liên kết thành công.", + "change-resource-filename": "Thay đổi tên tệp tài nguyên", + "resource-filename-updated": "Tên tệp tài nguyên đã thay đổi.", + "invalid-resource-filename": "Tên tệp không hợp lệ.", + "click-to-save-the-image": "Bấm để lưu hình ảnh", + "generating-the-screenshot": "Đang tạo ảnh chụp màn hình ...", + "count-selected-resources": "Tổng đã chọn", + "too-short": "Quá ngắn", + "too-long": "Quá dài", + "not-allow-space": "Không cho phép khoảng trống", + "not-allow-chinese": "Không sử dụng tiếng Trung Quốc", + "succeed-vacuum-database": "Đã dọn dẹp cơ sở dữ liệu thành công", + "succeed-update-additional-style": "Đã cập nhật phong cách bổ sung thành công", + "succeed-copy-resource-link": "Đã sao chép liên kết tài nguyên", + "succeed-update-customized-profile": "Đã cập nhật hồ sơ tùy chỉnh", + "succeed-update-additional-script": "Đã cập nhật mã lệnh bổ sung thành công", + "update-succeed": "Đã cập nhật thành công", + "succeed-copy-code": "Succeed to copy code to clipboard.", + "page-not-found": "404 - Page Not Found 😥" + }, + "days": { + "monday": "Thứ hai", + "mon": "T2", + "tuesday": "Thứ ba", + "tue": "T3", + "wednesday": "Thứ tư", + "wed": "T4", + "thursday": "Thứ năm", + "thu": "T5", + "friday": "Thứ sáu", + "fri": "T6", + "saturday": "Thứ bảy", + "sat": "T7", + "sunday": "Chủ nhật", + "sun": "CN" + } } diff --git a/web/src/locales/zh-Hant.json b/web/src/locales/zh-Hant.json index 3f0094e9..73068acc 100644 --- a/web/src/locales/zh-Hant.json +++ b/web/src/locales/zh-Hant.json @@ -195,7 +195,7 @@ "additional-script-placeholder": "自定義 JavaScript 代碼", "disable-public-memos": "禁用公共memos" }, - "apperance-option": { + "appearance-option": { "system": "跟隨系統", "light": "總是淺色", "dark": "總是深色" diff --git a/web/src/locales/zh.json b/web/src/locales/zh.json index 6c323ea6..abafd99a 100644 --- a/web/src/locales/zh.json +++ b/web/src/locales/zh.json @@ -195,7 +195,7 @@ "additional-script-placeholder": "自定义 JavaScript 代码", "disable-public-memos": "禁用公共memos" }, - "apperance-option": { + "appearance-option": { "system": "跟随系统", "light": "总是浅色", "dark": "总是深色"