Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
7f30e2e6
Unverified
Commit
7f30e2e6
authored
Mar 14, 2023
by
远浅
Committed by
GitHub
Mar 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix typo (#1355)
parent
29f784cc
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
3133 additions
and
3133 deletions
+3133
-3133
AppearanceSelect.tsx
web/src/components/AppearanceSelect.tsx
+4
-4
MemberSection.tsx
web/src/components/Settings/MemberSection.tsx
+1
-1
SSOSection.tsx
web/src/components/Settings/SSOSection.tsx
+1
-1
de.json
web/src/locales/de.json
+260
-260
en.json
web/src/locales/en.json
+1
-1
es.json
web/src/locales/es.json
+263
-263
fr.json
web/src/locales/fr.json
+260
-260
it.json
web/src/locales/it.json
+260
-260
ko.json
web/src/locales/ko.json
+260
-260
nl.json
web/src/locales/nl.json
+260
-260
pl.json
web/src/locales/pl.json
+260
-260
pt_BR.json
web/src/locales/pt_BR.json
+260
-260
ru.json
web/src/locales/ru.json
+260
-260
sv.json
web/src/locales/sv.json
+260
-260
tr.json
web/src/locales/tr.json
+1
-1
uk.json
web/src/locales/uk.json
+260
-260
vi.json
web/src/locales/vi.json
+260
-260
zh-Hant.json
web/src/locales/zh-Hant.json
+1
-1
zh.json
web/src/locales/zh.json
+1
-1
No files found.
web/src/components/AppearanceSelect.tsx
View file @
7f30e2e6
...
@@ -15,11 +15,11 @@ const AppearanceSelect: FC<Props> = (props: Props) => {
...
@@ -15,11 +15,11 @@ const AppearanceSelect: FC<Props> = (props: Props) => {
const
{
onChange
,
value
,
className
}
=
props
;
const
{
onChange
,
value
,
className
}
=
props
;
const
{
t
}
=
useTranslation
();
const
{
t
}
=
useTranslation
();
const
getPrefixIcon
=
(
apperance
:
Appearance
)
=>
{
const
getPrefixIcon
=
(
appe
a
rance
:
Appearance
)
=>
{
const
className
=
"w-4 h-auto"
;
const
className
=
"w-4 h-auto"
;
if
(
apperance
===
"light"
)
{
if
(
appe
a
rance
===
"light"
)
{
return
<
Icon
.
Sun
className=
{
className
}
/>;
return
<
Icon
.
Sun
className=
{
className
}
/>;
}
else
if
(
apperance
===
"dark"
)
{
}
else
if
(
appe
a
rance
===
"dark"
)
{
return
<
Icon
.
Moon
className=
{
className
}
/>;
return
<
Icon
.
Moon
className=
{
className
}
/>;
}
else
{
}
else
{
return
<
Icon
.
Smile
className=
{
className
}
/>;
return
<
Icon
.
Smile
className=
{
className
}
/>;
...
@@ -43,7 +43,7 @@ const AppearanceSelect: FC<Props> = (props: Props) => {
...
@@ -43,7 +43,7 @@ const AppearanceSelect: FC<Props> = (props: Props) => {
>
>
{
appearanceList
.
map
((
item
)
=>
(
{
appearanceList
.
map
((
item
)
=>
(
<
Option
key=
{
item
}
value=
{
item
}
className=
"whitespace-nowrap"
>
<
Option
key=
{
item
}
value=
{
item
}
className=
"whitespace-nowrap"
>
{
t
(
`setting.apperance-option.${item}`
)
}
{
t
(
`setting.appe
a
rance-option.${item}`
)
}
</
Option
>
</
Option
>
))
}
))
}
</
Select
>
</
Select
>
...
...
web/src/components/Settings/MemberSection.tsx
View file @
7f30e2e6
...
@@ -101,7 +101,7 @@ const PreferencesSection = () => {
...
@@ -101,7 +101,7 @@ const PreferencesSection = () => {
const
handleDeleteUserClick
=
(
user
:
User
)
=>
{
const
handleDeleteUserClick
=
(
user
:
User
)
=>
{
showCommonDialog
({
showCommonDialog
({
title
:
`Delete Member`
,
title
:
`Delete Member`
,
content
:
`Are you sure to delete
${
user
.
username
}
? THIS ACTION IS IRREVERSI
A
BLE.❗️`
,
content
:
`Are you sure to delete
${
user
.
username
}
? THIS ACTION IS IRREVERSIBLE.❗️`
,
style
:
"warning"
,
style
:
"warning"
,
dialogName
:
"delete-user-dialog"
,
dialogName
:
"delete-user-dialog"
,
onConfirm
:
async
()
=>
{
onConfirm
:
async
()
=>
{
...
...
web/src/components/Settings/SSOSection.tsx
View file @
7f30e2e6
...
@@ -24,7 +24,7 @@ const SSOSection = () => {
...
@@ -24,7 +24,7 @@ const SSOSection = () => {
const
handleDeleteIdentityProvider
=
async
(
identityProvider
:
IdentityProvider
)
=>
{
const
handleDeleteIdentityProvider
=
async
(
identityProvider
:
IdentityProvider
)
=>
{
showCommonDialog
({
showCommonDialog
({
title
:
"Confirm delete"
,
title
:
"Confirm delete"
,
content
:
"Are you sure to delete this SSO? THIS ACTION IS IRREVERSI
A
BLE❗"
,
content
:
"Are you sure to delete this SSO? THIS ACTION IS IRREVERSIBLE❗"
,
style
:
"warning"
,
style
:
"warning"
,
dialogName
:
"delete-identity-provider-dialog"
,
dialogName
:
"delete-identity-provider-dialog"
,
onConfirm
:
async
()
=>
{
onConfirm
:
async
()
=>
{
...
...
web/src/locales/de.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Über Memos"
,
"about"
:
"Über Memos"
,
"email"
:
"E-Mail"
,
"email"
:
"E-Mail"
,
"password"
:
"Passwort"
,
"password"
:
"Passwort"
,
"repeat-password-short"
:
"Wiederholen"
,
"repeat-password-short"
:
"Wiederholen"
,
"repeat-password"
:
"Wiederhole das Passwort"
,
"repeat-password"
:
"Wiederhole das Passwort"
,
"new-password"
:
"Neues Passwort"
,
"new-password"
:
"Neues Passwort"
,
"repeat-new-password"
:
"Neues Passwort wiederholen"
,
"repeat-new-password"
:
"Neues Passwort wiederholen"
,
"username"
:
"Nutzername"
,
"username"
:
"Nutzername"
,
"nickname"
:
"Nickname"
,
"nickname"
:
"Nickname"
,
"save"
:
"Speichern"
,
"save"
:
"Speichern"
,
"close"
:
"Schließen"
,
"close"
:
"Schließen"
,
"cancel"
:
"Abbrechen"
,
"cancel"
:
"Abbrechen"
,
"create"
:
"Erstellen"
,
"create"
:
"Erstellen"
,
"change"
:
"Ändern"
,
"change"
:
"Ändern"
,
"confirm"
:
"Bestätigen"
,
"confirm"
:
"Bestätigen"
,
"reset"
:
"Zurücksetzen"
,
"reset"
:
"Zurücksetzen"
,
"language"
:
"Sprache"
,
"language"
:
"Sprache"
,
"version"
:
"Version"
,
"version"
:
"Version"
,
"pin"
:
"Anpinnen"
,
"pin"
:
"Anpinnen"
,
"unpin"
:
"Pin lösen"
,
"unpin"
:
"Pin lösen"
,
"edit"
:
"Bearbeiten"
,
"edit"
:
"Bearbeiten"
,
"restore"
:
"Wiederherstellen"
,
"restore"
:
"Wiederherstellen"
,
"delete"
:
"Löschen"
,
"delete"
:
"Löschen"
,
"null"
:
"Null"
,
"null"
:
"Null"
,
"share"
:
"Teilen"
,
"share"
:
"Teilen"
,
"archive"
:
"Archivieren"
,
"archive"
:
"Archivieren"
,
"basic"
:
"Allgemeines"
,
"basic"
:
"Allgemeines"
,
"admin"
:
"Administration"
,
"admin"
:
"Administration"
,
"explore"
:
"Erkunden"
,
"explore"
:
"Erkunden"
,
"sign-in"
:
"Anmelden"
,
"sign-in"
:
"Anmelden"
,
"sign-up"
:
"Registrieren"
,
"sign-up"
:
"Registrieren"
,
"sign-out"
:
"Abmelden"
,
"sign-out"
:
"Abmelden"
,
"back-to-home"
:
"Zurück zur Startseite"
,
"back-to-home"
:
"Zurück zur Startseite"
,
"type"
:
"Typ"
,
"type"
:
"Typ"
,
"shortcuts"
:
"Verknüpfungen"
,
"shortcuts"
:
"Verknüpfungen"
,
"title"
:
"Titel"
,
"title"
:
"Titel"
,
"filter"
:
"Filter"
,
"filter"
:
"Filter"
,
"tags"
:
"Tags"
,
"tags"
:
"Tags"
,
"yourself"
:
"Du selbst"
,
"yourself"
:
"Du selbst"
,
"archived-at"
:
"Archiviert am"
,
"archived-at"
:
"Archiviert am"
,
"changed"
:
"Verändert"
,
"changed"
:
"Verändert"
,
"update-on"
:
"Verändert am"
,
"update-on"
:
"Verändert am"
,
"fold"
:
"Einklappen"
,
"fold"
:
"Einklappen"
,
"expand"
:
"Erweitern"
,
"expand"
:
"Erweitern"
,
"image"
:
"Bild"
,
"image"
:
"Bild"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"vacuum"
:
"Aufräumen"
,
"vacuum"
:
"Aufräumen"
,
"select"
:
"Auswählen"
,
"select"
:
"Auswählen"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"Eine quelloffene, selbst gehostete Sammlung an Memos zur Wissensverwaltung und Vernetzung."
,
"slogan"
:
"Eine quelloffene, selbst gehostete Sammlung an Memos zur Wissensverwaltung und Vernetzung."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Als Host registrieren"
,
"signup-as-host"
:
"Als Host registrieren"
,
"host-tip"
:
"Du registrierst dich als Host dieser Seite."
,
"host-tip"
:
"Du registrierst dich als Host dieser Seite."
,
"not-host-tip"
:
"Kontaktiere den Host dieser Seite, wenn du noch kein Konto hast."
"not-host-tip"
:
"Kontaktiere den Host dieser Seite, wenn du noch kein Konto hast."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Tagesbilanz"
,
"daily-review"
:
"Tagesbilanz"
,
"resources"
:
"Ressourcen"
,
"resources"
:
"Ressourcen"
,
"setting"
:
"Einstellung"
,
"setting"
:
"Einstellung"
,
"archived"
:
"Archiviert"
"archived"
:
"Archiviert"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ups, hier ist nichts."
"oops-nothing"
:
"Ups, hier ist nichts."
},
},
"resources"
:
{
"resources"
:
{
"no-resources"
:
"Keine Ressourcen."
,
"no-resources"
:
"Keine Ressourcen."
,
"fetching-data"
:
"Lade Daten..."
,
"fetching-data"
:
"Lade Daten..."
,
"upload"
:
"Hochladen"
,
"upload"
:
"Hochladen"
,
"preview"
:
"Vorschau"
,
"preview"
:
"Vorschau"
,
"copy-link"
:
"Link kopieren"
,
"copy-link"
:
"Link kopieren"
,
"delete-resource"
:
"Ressource löschen"
,
"delete-resource"
:
"Ressource löschen"
,
"warning-text"
:
"Möchtest du diese Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗"
,
"warning-text"
:
"Möchtest du diese Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗"
,
"linked-amount"
:
"Anzahl verlinkter Memos"
,
"linked-amount"
:
"Anzahl verlinkter Memos"
,
"rename"
:
"Umbenennen"
,
"rename"
:
"Umbenennen"
,
"warning-text-unused"
:
"Möchtest du diese ungenutzte Ressource wirklich löschen? Dies kann nicht rückgängig gemacht werden❗"
,
"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"
,
"no-unused-resources"
:
"Keine ungenutzten Ressourcen"
,
"name"
:
"Name"
,
"name"
:
"Name"
,
"clear"
:
"Clear"
,
"clear"
:
"Clear"
,
"description"
:
"View your static resources in memos. e.g. images"
"description"
:
"View your static resources in memos. e.g. images"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Archivierte Memos"
,
"archived-memos"
:
"Archivierte Memos"
,
"no-archived-memos"
:
"Keine archivierten Memos"
,
"no-archived-memos"
:
"Keine archivierten Memos"
,
"fetching-data"
:
"Lade Daten..."
"fetching-data"
:
"Lade Daten..."
},
},
"editor"
:
{
"editor"
:
{
"cancel-edit"
:
"Bearbeiten abbrechen"
,
"cancel-edit"
:
"Bearbeiten abbrechen"
,
"save"
:
"Speichern"
,
"save"
:
"Speichern"
,
"placeholder"
:
"Ein Gedanke..."
,
"placeholder"
:
"Ein Gedanke..."
,
"only-image-supported"
:
"Nur Bilder werden unterstützt."
,
"only-image-supported"
:
"Nur Bilder werden unterstützt."
,
"cant-empty"
:
"Inhalt kann nicht leer sein"
,
"cant-empty"
:
"Inhalt kann nicht leer sein"
,
"local"
:
"Lokal"
,
"local"
:
"Lokal"
,
"resources"
:
"Ressourcen"
,
"resources"
:
"Ressourcen"
,
"editing"
:
"Editing..."
"editing"
:
"Editing..."
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Details anzeigen"
,
"view-detail"
:
"Details anzeigen"
,
"copy"
:
"Kopieren"
,
"copy"
:
"Kopieren"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Nur für dich sichtbar"
,
"private"
:
"Nur für dich sichtbar"
,
"protected"
:
"Für Mitglieder sichtbar"
,
"protected"
:
"Für Mitglieder sichtbar"
,
"public"
:
"Für alle sichtbar"
,
"public"
:
"Für alle sichtbar"
,
"disabled"
:
"Public memos are disabled"
"disabled"
:
"Public memos are disabled"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"Lade Daten..."
,
"fetching-data"
:
"Lade Daten..."
,
"fetch-more"
:
"Klicke hier, um mehr zu laden"
"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"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"Titel der Verknüpfung"
,
"contains"
:
"enthält"
,
"create-shortcut"
:
"Verknüpfung erstellen"
,
"not-contains"
:
"enthält nicht"
,
"edit-shortcut"
:
"Verknüpfung bearbeiten"
,
"is"
:
"ist"
,
"fill-previous"
:
"Bitte vorherigen Filterwert ausfüllen"
,
"is-not"
:
"ist nicht"
,
"title-required"
:
"Titel wird benötigt"
,
"before"
:
"vor"
,
"value-required"
:
"Filterwert wird benötigt"
,
"after"
:
"nach"
"eligible-memo"
:
"eligible memo"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Neuer Filter"
,
"not-tagged"
:
"Keine Tags"
,
"type"
:
{
"linked"
:
"Hat Links"
"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"
:
{
"text-placeholder"
:
"Beginne einen Regex mit ^"
"tip-text"
:
"Erstelle einen Tag mit `#tag`"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Schnellfilter"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Mein Konto"
,
"create-a-member"
:
"Mitglied hinzufügen"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"MEMO"
,
"server-name"
:
"Servername"
,
"memo_other"
:
"MEMOS"
,
"customize-server"
:
{
"tag_one"
:
"TAG"
,
"title"
:
"Server bearbeiten"
,
"tag_other"
:
"TAGS"
,
"default"
:
"Standard:
\"
memos
\"
"
,
"day_one"
:
"TAG"
,
"icon-url"
:
"Icon-URL"
"day_other"
:
"TAGE"
},
"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"
},
},
"message"
:
{
"appearance-option"
:
{
"no-memos"
:
"Keine Memos 🌃"
,
"system"
:
"System"
,
"memos-ready"
:
"Alle Memos geladen 🎉"
,
"light"
:
"Hell"
,
"restored-successfully"
:
"Erfolgreich wiederhergestellt"
,
"dark"
:
"Dunkel"
"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"
:
{
"storage"
:
"Storage"
,
"monday"
:
"Montag"
,
"sso"
:
"SSO"
,
"mon"
:
"Mo"
,
"storage-section"
:
{
"tuesday"
:
"Dienstag"
,
"storage-services-list"
:
"Storage service list"
,
"tue"
:
"Di"
,
"create-a-service"
:
"Create a service"
,
"wednesday"
:
"Mittwoch"
,
"update-a-service"
:
"Update a service"
,
"wed"
:
"Mi"
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"thursday"
:
"Donnerstag"
,
"delete-storage"
:
"Delete Storage"
"thu"
:
"Do"
,
"friday"
:
"Freitag"
,
"fri"
:
"Fr"
,
"saturday"
:
"Samstag"
,
"sat"
:
"Sa"
,
"sunday"
:
"Sonntag"
,
"sun"
:
"So"
}
}
},
"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"
}
}
}
web/src/locales/en.json
View file @
7f30e2e6
...
@@ -196,7 +196,7 @@
...
@@ -196,7 +196,7 @@
"additional-style-placeholder"
:
"Additional CSS code"
,
"additional-style-placeholder"
:
"Additional CSS code"
,
"additional-script-placeholder"
:
"Additional JavaScript code"
"additional-script-placeholder"
:
"Additional JavaScript code"
},
},
"apperance-option"
:
{
"appe
a
rance-option"
:
{
"system"
:
"Follow system"
,
"system"
:
"Follow system"
,
"light"
:
"Always light"
,
"light"
:
"Always light"
,
"dark"
:
"Always dark"
"dark"
:
"Always dark"
...
...
web/src/locales/es.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Acerca de"
,
"about"
:
"Acerca de"
,
"email"
:
"Email"
,
"email"
:
"Email"
,
"password"
:
"Contraseña"
,
"password"
:
"Contraseña"
,
"repeat-password-short"
:
"Repetir"
,
"repeat-password-short"
:
"Repetir"
,
"repeat-password"
:
"Repetir la contraseña"
,
"repeat-password"
:
"Repetir la contraseña"
,
"new-password"
:
"Nueva contraseña"
,
"new-password"
:
"Nueva contraseña"
,
"repeat-new-password"
:
"Repetir la nueva contraseña"
,
"repeat-new-password"
:
"Repetir la nueva contraseña"
,
"username"
:
"Usuario"
,
"username"
:
"Usuario"
,
"nickname"
:
"Apodo"
,
"nickname"
:
"Apodo"
,
"save"
:
"Guardar"
,
"save"
:
"Guardar"
,
"close"
:
"Cerrar"
,
"close"
:
"Cerrar"
,
"cancel"
:
"Cancelar"
,
"cancel"
:
"Cancelar"
,
"create"
:
"Crear"
,
"create"
:
"Crear"
,
"change"
:
"Cambiar"
,
"change"
:
"Cambiar"
,
"confirm"
:
"Confirmar"
,
"confirm"
:
"Confirmar"
,
"reset"
:
"Restablecer"
,
"reset"
:
"Restablecer"
,
"language"
:
"Idioma"
,
"language"
:
"Idioma"
,
"version"
:
"Versión"
,
"version"
:
"Versión"
,
"pin"
:
"Enganchar"
,
"pin"
:
"Enganchar"
,
"unpin"
:
"Desenganchar"
,
"unpin"
:
"Desenganchar"
,
"edit"
:
"Editar"
,
"edit"
:
"Editar"
,
"restore"
:
"Restaurar"
,
"restore"
:
"Restaurar"
,
"delete"
:
"Eliminar"
,
"delete"
:
"Eliminar"
,
"null"
:
"Nulo"
,
"null"
:
"Nulo"
,
"share"
:
"Compartir"
,
"share"
:
"Compartir"
,
"archive"
:
"Archivar"
,
"archive"
:
"Archivar"
,
"basic"
:
"Básico"
,
"basic"
:
"Básico"
,
"admin"
:
"Administrador"
,
"admin"
:
"Administrador"
,
"explore"
:
"Explorar"
,
"explore"
:
"Explorar"
,
"sign-in"
:
"Iniciar sesión"
,
"sign-in"
:
"Iniciar sesión"
,
"sign-up"
:
"Registrarse"
,
"sign-up"
:
"Registrarse"
,
"sign-out"
:
"Cerrar sesión"
,
"sign-out"
:
"Cerrar sesión"
,
"back-to-home"
:
"Volver al Inicio"
,
"back-to-home"
:
"Volver al Inicio"
,
"type"
:
"Tipo"
,
"type"
:
"Tipo"
,
"shortcuts"
:
"Atajos"
,
"shortcuts"
:
"Atajos"
,
"title"
:
"Título"
,
"title"
:
"Título"
,
"filter"
:
"Filtros"
,
"filter"
:
"Filtros"
,
"tags"
:
"Etiquetas"
,
"tags"
:
"Etiquetas"
,
"yourself"
:
"Tu"
,
"yourself"
:
"Tu"
,
"archived-at"
:
"Archivado en"
,
"archived-at"
:
"Archivado en"
,
"changed"
:
"cambiado"
,
"changed"
:
"cambiado"
,
"update-on"
:
"Actualización de"
,
"update-on"
:
"Actualización de"
,
"fold"
:
"Plegar"
,
"fold"
:
"Plegar"
,
"expand"
:
"Expandir"
,
"expand"
:
"Expandir"
,
"image"
:
"Imagen"
,
"image"
:
"Imagen"
,
"link"
:
"Enlace"
,
"link"
:
"Enlace"
,
"vacuum"
:
"Vaciar"
,
"vacuum"
:
"Vaciar"
,
"select"
:
"Seleccionar"
,
"select"
:
"Seleccionar"
,
"database"
:
"Base de datos"
,
"database"
:
"Base de datos"
,
"avatar"
:
"Avatar"
"avatar"
:
"Avatar"
},
},
"slogan"
:
"Un código abierto, centro de notas autoalojado con la gestión del conocimiento y la socialización."
,
"slogan"
:
"Un código abierto, centro de notas autoalojado con la gestión del conocimiento y la socialización."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Registrarse como Anfitrión"
,
"signup-as-host"
:
"Registrarse como Anfitrión"
,
"host-tip"
:
"Te estás registrando como Anfitrión del Sitio."
,
"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."
"not-host-tip"
:
"Si no tienes una cuenta, ponte en contacto con el anfitrión del sitio."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Resumen diario"
,
"daily-review"
:
"Resumen diario"
,
"resources"
:
"Recursos"
,
"resources"
:
"Recursos"
,
"setting"
:
"Ajustes"
,
"setting"
:
"Ajustes"
,
"archived"
:
"Archivado"
"archived"
:
"Archivado"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ups, no hay nada."
"oops-nothing"
:
"Ups, no hay nada."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Visualiza tus recursos estáticos en notas. p.ej., imágenes"
,
"description"
:
"Visualiza tus recursos estáticos en notas. p.ej., imágenes"
,
"no-resources"
:
"Sin recursos."
,
"no-resources"
:
"Sin recursos."
,
"fetching-data"
:
"obteniendo datos..."
,
"fetching-data"
:
"obteniendo datos..."
,
"upload"
:
"Subir"
,
"upload"
:
"Subir"
,
"preview"
:
"Vista previa"
,
"preview"
:
"Vista previa"
,
"copy-link"
:
"Copiar Enlace"
,
"copy-link"
:
"Copiar Enlace"
,
"delete-resource"
:
"Borrar Recurso"
,
"delete-resource"
:
"Borrar Recurso"
,
"warning-text"
:
"¿Está seguro de eliminar este recurso? ESTA ACCIÓN ES IRREVERSIBLE❗"
,
"warning-text"
:
"¿Está seguro de eliminar este recurso? ESTA ACCIÓN ES IRREVERSIBLE❗"
,
"linked-amount"
:
"Importe de la nota vinculado"
,
"linked-amount"
:
"Importe de la nota vinculado"
,
"rename"
:
"Renombrar"
,
"rename"
:
"Renombrar"
,
"warning-text-unused"
:
"¿Está seguro de eliminar estos recursos no utilizados? ESTA ACCIÓN ES IRREVERSIBLE❗"
,
"warning-text-unused"
:
"¿Está seguro de eliminar estos recursos no utilizados? ESTA ACCIÓN ES IRREVERSIBLE❗"
,
"no-unused-resources"
:
"No hay recursos sin utilizar"
,
"no-unused-resources"
:
"No hay recursos sin utilizar"
,
"name"
:
"Nombre"
,
"name"
:
"Nombre"
,
"clear"
:
"Limpiar"
"clear"
:
"Limpiar"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Notas Archivadas"
,
"archived-memos"
:
"Notas Archivadas"
,
"no-archived-memos"
:
"No hay notas archivadas."
,
"no-archived-memos"
:
"No hay notas archivadas."
,
"fetching-data"
:
"obteniendo datos..."
"fetching-data"
:
"obteniendo datos..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Editando..."
,
"editing"
:
"Editando..."
,
"cancel-edit"
:
"Cancelar edición"
,
"cancel-edit"
:
"Cancelar edición"
,
"save"
:
"Guardar"
,
"save"
:
"Guardar"
,
"placeholder"
:
"Alguna idea..."
,
"placeholder"
:
"Alguna idea..."
,
"only-image-supported"
:
"Solo se admiten archivos de imagen."
,
"only-image-supported"
:
"Solo se admiten archivos de imagen."
,
"cant-empty"
:
"El contenido no puede estar vacío"
,
"cant-empty"
:
"El contenido no puede estar vacío"
,
"local"
:
"Local"
,
"local"
:
"Local"
,
"resources"
:
"Recursos"
"resources"
:
"Recursos"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Ver Detalles"
,
"view-detail"
:
"Ver Detalles"
,
"copy"
:
"Copiar"
,
"copy"
:
"Copiar"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Solo visible para ti"
,
"private"
:
"Solo visible para ti"
,
"protected"
:
"Visible para los miembros"
,
"protected"
:
"Visible para los miembros"
,
"public"
:
"Todo el mundo lo puede ver"
,
"public"
:
"Todo el mundo lo puede ver"
,
"disabled"
:
"Las notas públicas están deshabilitadas"
"disabled"
:
"Las notas públicas están deshabilitadas"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"obteniendo datos..."
,
"fetching-data"
:
"obteniendo datos..."
,
"fetch-more"
:
"Click aqui para obtener más información"
"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"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"título del atajo"
,
"contains"
:
"Contiene"
,
"create-shortcut"
:
"Crear Atajo"
,
"not-contains"
:
"No contiene"
,
"edit-shortcut"
:
"Editar Atajo"
,
"is"
:
"Es"
,
"eligible-memo"
:
"nota elegible"
,
"is-not"
:
"No Es"
,
"fill-previous"
:
"Introduce el valor del filtro anterior"
,
"before"
:
"Antes"
,
"title-required"
:
"El título es obligatorio"
,
"after"
:
"Después"
"value-required"
:
"El valor del filtro es obligatorio"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Nuevo Filtro"
,
"not-tagged"
:
"Sin etiquetas"
,
"type"
:
{
"linked"
:
"Con enlaces"
"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"
:
{
"text-placeholder"
:
"Empieza por ^ para usar regex"
"tip-text"
:
"Escribe '#etiqueta' para crearlo"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Filtro rápido"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Mi Cuenta"
,
"create-a-member"
:
"Crear un miembro"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"NOTA"
,
"server-name"
:
"Nombre del Servidor"
,
"memo_many"
:
"NOTAS"
,
"customize-server"
:
{
"memo_other"
:
"NOTAS"
,
"title"
:
"Personalizar Servidor"
,
"tag_one"
:
"ETIQUETA"
,
"default"
:
"Por defecto es memos"
,
"tag_many"
:
"ETIQUETAS"
,
"icon-url"
:
"Icono URL"
"tag_other"
:
"ETIQUETAS"
,
},
"day_one"
:
"DIA"
,
"database-file-size"
:
"Tamaño de la Base de Datos"
,
"day_many"
:
"DIAS"
,
"allow-user-signup"
:
"Permitir el registro de usuarios"
,
"day_other"
:
"DIAS"
"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"
},
},
"message"
:
{
"appearance-option"
:
{
"no-memos"
:
"no hay notas 🌃"
,
"system"
:
"Según el sistema"
,
"memos-ready"
:
"todas las notas están listas 🎉"
,
"light"
:
"Siempre claro"
,
"restored-successfully"
:
"Restaurado con éxito"
,
"dark"
:
"Siempre oscuro"
"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"
:
{
"storage"
:
"Almacenamiento"
,
"monday"
:
"Lunes"
,
"sso"
:
"SSO"
,
"mon"
:
"Lun"
,
"storage-section"
:
{
"tuesday"
:
"Martes"
,
"storage-services-list"
:
"Lista de servicios de almacenamiento"
,
"tue"
:
"Mart"
,
"create-a-service"
:
"Crear un servicio"
,
"wednesday"
:
"Miércoles"
,
"update-a-service"
:
"Actualizar un servicio"
,
"wed"
:
"Miérc"
,
"warning-text"
:
"¿Está seguro de eliminar este servicio de almacenamiento? ESTA ACCIÓN ES IRREVERSIBLE❗"
,
"thursday"
:
"Jueves"
,
"delete-storage"
:
"Eliminar almacenamiento"
"thu"
:
"Juev"
,
"friday"
:
"Viernes"
,
"fri"
:
"Vier"
,
"saturday"
:
"Sábado"
,
"sat"
:
"Sáb"
,
"sunday"
:
"Domingo"
,
"sun"
:
"Dom"
}
}
},
"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"
}
}
}
web/src/locales/fr.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"À propos"
,
"about"
:
"À propos"
,
"email"
:
"Email"
,
"email"
:
"Email"
,
"password"
:
"Mot de passe"
,
"password"
:
"Mot de passe"
,
"repeat-password-short"
:
"Repeat"
,
"repeat-password-short"
:
"Repeat"
,
"repeat-password"
:
"Repeat the password"
,
"repeat-password"
:
"Repeat the password"
,
"new-password"
:
"Nouveau mot de passe"
,
"new-password"
:
"Nouveau mot de passe"
,
"repeat-new-password"
:
"Répétez le nouveau mot de passe"
,
"repeat-new-password"
:
"Répétez le nouveau mot de passe"
,
"username"
:
"Nom d'utilisateur"
,
"username"
:
"Nom d'utilisateur"
,
"nickname"
:
"Surnom"
,
"nickname"
:
"Surnom"
,
"save"
:
"Enregistrer"
,
"save"
:
"Enregistrer"
,
"close"
:
"Fermer"
,
"close"
:
"Fermer"
,
"cancel"
:
"Annuler"
,
"cancel"
:
"Annuler"
,
"create"
:
"Créer"
,
"create"
:
"Créer"
,
"change"
:
"Changer"
,
"change"
:
"Changer"
,
"confirm"
:
"Confirmer"
,
"confirm"
:
"Confirmer"
,
"reset"
:
"Réinitialiser"
,
"reset"
:
"Réinitialiser"
,
"language"
:
"Langue"
,
"language"
:
"Langue"
,
"version"
:
"Version"
,
"version"
:
"Version"
,
"pin"
:
"Épinglé"
,
"pin"
:
"Épinglé"
,
"unpin"
:
"Détacher"
,
"unpin"
:
"Détacher"
,
"edit"
:
"Modifier"
,
"edit"
:
"Modifier"
,
"restore"
:
"Restaurer"
,
"restore"
:
"Restaurer"
,
"delete"
:
"Supprimer"
,
"delete"
:
"Supprimer"
,
"null"
:
"Nulle"
,
"null"
:
"Nulle"
,
"share"
:
"Partager"
,
"share"
:
"Partager"
,
"archive"
:
"Archive"
,
"archive"
:
"Archive"
,
"basic"
:
"Base"
,
"basic"
:
"Base"
,
"admin"
:
"Admin"
,
"admin"
:
"Admin"
,
"explore"
:
"Explorez"
,
"explore"
:
"Explorez"
,
"sign-in"
:
"Se connecter"
,
"sign-in"
:
"Se connecter"
,
"sign-up"
:
"S'inscrire"
,
"sign-up"
:
"S'inscrire"
,
"sign-out"
:
"Se déconnecter"
,
"sign-out"
:
"Se déconnecter"
,
"back-to-home"
:
"Retour à l'accueil"
,
"back-to-home"
:
"Retour à l'accueil"
,
"type"
:
"Type"
,
"type"
:
"Type"
,
"shortcuts"
:
"Raccourcis"
,
"shortcuts"
:
"Raccourcis"
,
"title"
:
"Titre"
,
"title"
:
"Titre"
,
"filter"
:
"Filtre"
,
"filter"
:
"Filtre"
,
"tags"
:
"Étiquettes"
,
"tags"
:
"Étiquettes"
,
"yourself"
:
"Vous-même"
,
"yourself"
:
"Vous-même"
,
"archived-at"
:
"Archivé à"
,
"archived-at"
:
"Archivé à"
,
"changed"
:
"modifié"
,
"changed"
:
"modifié"
,
"update-on"
:
"Mise à jour sur"
,
"update-on"
:
"Mise à jour sur"
,
"fold"
:
"Plier"
,
"fold"
:
"Plier"
,
"expand"
:
"Développer"
,
"expand"
:
"Développer"
,
"image"
:
"Image"
,
"image"
:
"Image"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"vacuum"
:
"Vacuum"
,
"vacuum"
:
"Vacuum"
,
"select"
:
"Select"
,
"select"
:
"Select"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"S'inscrire en tant qu'hôte"
,
"signup-as-host"
:
"S'inscrire en tant qu'hôte"
,
"host-tip"
:
"Vous vous inscrivez en tant qu'hébergeur du site."
,
"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."
"not-host-tip"
:
"Si vous n'avez pas de compte, veuillez contacter l'hôte du site."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Bilan quotidien"
,
"daily-review"
:
"Bilan quotidien"
,
"resources"
:
"Ressources"
,
"resources"
:
"Ressources"
,
"setting"
:
"Réglage"
,
"setting"
:
"Réglage"
,
"archived"
:
"Archivé"
"archived"
:
"Archivé"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Oups, il n'y a rien."
"oops-nothing"
:
"Oups, il n'y a rien."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Visualisez vos ressources statiques dans des mémos, par exemple des images."
,
"description"
:
"Visualisez vos ressources statiques dans des mémos, par exemple des images."
,
"no-resources"
:
"Aucune ressource."
,
"no-resources"
:
"Aucune ressource."
,
"fetching-data"
:
"récupération des données..."
,
"fetching-data"
:
"récupération des données..."
,
"upload"
:
"Télécharger"
,
"upload"
:
"Télécharger"
,
"preview"
:
"Aperçu"
,
"preview"
:
"Aperçu"
,
"copy-link"
:
"Copier le lien"
,
"copy-link"
:
"Copier le lien"
,
"delete-resource"
:
"Supprimer la ressource"
,
"delete-resource"
:
"Supprimer la ressource"
,
"warning-text"
:
"Êtes-vous sûr de vouloir supprimer cette ressource ? CETTE ACTION EST IRRÉVERSIBLE❗"
,
"warning-text"
:
"Êtes-vous sûr de vouloir supprimer cette ressource ? CETTE ACTION EST IRRÉVERSIBLE❗"
,
"linked-amount"
:
"Montant du mémo lié"
,
"linked-amount"
:
"Montant du mémo lié"
,
"rename"
:
"Renommer"
,
"rename"
:
"Renommer"
,
"warning-text-unused"
:
"Etes-vous sûr de vouloir supprimer ces ressources inutilisées ? CETTE ACTION EST IRRÉVERSIBLE❗"
,
"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"
,
"no-unused-resources"
:
"Aucune ressource inutilisée"
,
"name"
:
"Name"
,
"name"
:
"Name"
,
"clear"
:
"Clear"
"clear"
:
"Clear"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Mémos archivés"
,
"archived-memos"
:
"Mémos archivés"
,
"no-archived-memos"
:
"Aucun mémo archivé."
,
"no-archived-memos"
:
"Aucun mémo archivé."
,
"fetching-data"
:
"récupération des données..."
"fetching-data"
:
"récupération des données..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Édition..."
,
"editing"
:
"Édition..."
,
"cancel-edit"
:
"Annuler l'édition"
,
"cancel-edit"
:
"Annuler l'édition"
,
"save"
:
"Sauvegarder"
,
"save"
:
"Sauvegarder"
,
"placeholder"
:
"Une idée..."
,
"placeholder"
:
"Une idée..."
,
"only-image-supported"
:
"Seul le fichier image est pris en charge."
,
"only-image-supported"
:
"Seul le fichier image est pris en charge."
,
"cant-empty"
:
"Le contenu ne doit pas être vide"
,
"cant-empty"
:
"Le contenu ne doit pas être vide"
,
"local"
:
"Local"
,
"local"
:
"Local"
,
"resources"
:
"Resources"
"resources"
:
"Resources"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Voir le détail"
,
"view-detail"
:
"Voir le détail"
,
"copy"
:
"Copier"
,
"copy"
:
"Copier"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Privé"
,
"private"
:
"Privé"
,
"protected"
:
"Visible par les membres"
,
"protected"
:
"Visible par les membres"
,
"public"
:
"Tous peuvent voir"
,
"public"
:
"Tous peuvent voir"
,
"disabled"
:
"Public memos are disabled"
"disabled"
:
"Public memos are disabled"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"récupération des données..."
,
"fetching-data"
:
"récupération des données..."
,
"fetch-more"
:
"Cliquez ici pour en savoir plus"
"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"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"titre du raccourci"
,
"contains"
:
"Contient"
,
"create-shortcut"
:
"Créer un raccourci"
,
"not-contains"
:
"Ne contient pas"
,
"edit-shortcut"
:
"Editer un raccourci"
,
"is"
:
"Est"
,
"eligible-memo"
:
"mémo admissible"
,
"is-not"
:
"N'est pas"
,
"fill-previous"
:
"Veuillez remplir la valeur du filtre précédent"
,
"before"
:
"Avant"
,
"title-required"
:
"Le titre est requis"
,
"after"
:
"Après"
"value-required"
:
"La valeur du filtre est requise"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Nouveau filtre"
,
"not-tagged"
:
"Pas d'étiquette"
,
"type"
:
{
"linked"
:
"A des liens"
"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"
:
{
"text-placeholder"
:
"Commence par ^ pour utiliser regex"
"tip-text"
:
"Entrez `#tag ` pour créer"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Filtrer rapidement"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Mon compte"
,
"create-a-member"
:
"Créer un membre"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"MEMO"
,
"server-name"
:
"Server Name"
,
"tag_one"
:
"ÉTIQUETTE"
,
"customize-server"
:
{
"day_one"
:
"JOUR"
,
"title"
:
"Customize Server"
,
"day_other"
:
"DAYS"
,
"default"
:
"Default is memos"
,
"memo_other"
:
"MEMOS"
,
"icon-url"
:
"Icon URL"
"tag_other"
:
"TAGS"
},
"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"
},
},
"message"
:
{
"storage-section"
:
{
"no-memos"
:
"pas de mémos 🌃"
,
"delete-storage"
:
"Delete Storage"
,
"memos-ready"
:
"tous les mémos sont prêts 🎉"
,
"storage-services-list"
:
"Storage service list"
,
"restored-successfully"
:
"Restauré avec succès"
,
"create-a-service"
:
"Create a service"
,
"memo-updated-datetime"
:
"La date et l'heure de création du mémo ont été modifiées."
,
"update-a-service"
:
"Update a service"
,
"invalid-created-datetime"
:
"Date/heure de création non valide."
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
"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"
:
{
"storage"
:
"Storage"
,
"monday"
:
"Lundi"
,
"sso"
:
"SSO"
,
"mon"
:
"Lu"
,
"appearance-option"
:
{
"tuesday"
:
"Mardi"
,
"system"
:
"Follow system"
,
"tue"
:
"Ma"
,
"light"
:
"Always light"
,
"wednesday"
:
"Mercredi"
,
"dark"
:
"Always dark"
"wed"
:
"Me"
,
"thursday"
:
"Jeudi"
,
"thu"
:
"Je"
,
"friday"
:
"Vendredi"
,
"fri"
:
"Ve"
,
"saturday"
:
"Samedi"
,
"sat"
:
"Sa"
,
"sunday"
:
"Dimanche"
,
"sun"
:
"Di"
}
}
},
"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"
}
}
}
web/src/locales/it.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Informazioni"
,
"about"
:
"Informazioni"
,
"email"
:
"Email"
,
"email"
:
"Email"
,
"password"
:
"Password"
,
"password"
:
"Password"
,
"repeat-password-short"
:
"Ripeti"
,
"repeat-password-short"
:
"Ripeti"
,
"repeat-password"
:
"Ripeti la password"
,
"repeat-password"
:
"Ripeti la password"
,
"new-password"
:
"Nuova password"
,
"new-password"
:
"Nuova password"
,
"repeat-new-password"
:
"Ripeti la nuova password"
,
"repeat-new-password"
:
"Ripeti la nuova password"
,
"username"
:
"Nome utente"
,
"username"
:
"Nome utente"
,
"nickname"
:
"Soprannome"
,
"nickname"
:
"Soprannome"
,
"save"
:
"Salva"
,
"save"
:
"Salva"
,
"close"
:
"Chiudi"
,
"close"
:
"Chiudi"
,
"cancel"
:
"Cancella"
,
"cancel"
:
"Cancella"
,
"create"
:
"Crea"
,
"create"
:
"Crea"
,
"change"
:
"Cambia"
,
"change"
:
"Cambia"
,
"confirm"
:
"Conferma"
,
"confirm"
:
"Conferma"
,
"reset"
:
"Ripristina"
,
"reset"
:
"Ripristina"
,
"language"
:
"Lingua"
,
"language"
:
"Lingua"
,
"version"
:
"Versione"
,
"version"
:
"Versione"
,
"pin"
:
"Attacca"
,
"pin"
:
"Attacca"
,
"unpin"
:
"Stacca"
,
"unpin"
:
"Stacca"
,
"edit"
:
"Modifica"
,
"edit"
:
"Modifica"
,
"restore"
:
"Ripristina"
,
"restore"
:
"Ripristina"
,
"delete"
:
"Rimuovi"
,
"delete"
:
"Rimuovi"
,
"null"
:
"Null"
,
"null"
:
"Null"
,
"share"
:
"Condividi"
,
"share"
:
"Condividi"
,
"archive"
:
"Archivia"
,
"archive"
:
"Archivia"
,
"basic"
:
"Base"
,
"basic"
:
"Base"
,
"admin"
:
"Amministratore"
,
"admin"
:
"Amministratore"
,
"explore"
:
"Esplora"
,
"explore"
:
"Esplora"
,
"sign-in"
:
"Accedi"
,
"sign-in"
:
"Accedi"
,
"sign-up"
:
"Registrati"
,
"sign-up"
:
"Registrati"
,
"sign-out"
:
"Esci"
,
"sign-out"
:
"Esci"
,
"back-to-home"
:
"Ritorna alla Home"
,
"back-to-home"
:
"Ritorna alla Home"
,
"type"
:
"Tipo"
,
"type"
:
"Tipo"
,
"shortcuts"
:
"Scorciatoie"
,
"shortcuts"
:
"Scorciatoie"
,
"title"
:
"Titolo"
,
"title"
:
"Titolo"
,
"filter"
:
"Filtro"
,
"filter"
:
"Filtro"
,
"tags"
:
"Etichette"
,
"tags"
:
"Etichette"
,
"yourself"
:
"Te stesso"
,
"yourself"
:
"Te stesso"
,
"archived-at"
:
"Archiviato il"
,
"archived-at"
:
"Archiviato il"
,
"changed"
:
"cambiato"
,
"changed"
:
"cambiato"
,
"update-on"
:
"Aggiornato il"
,
"update-on"
:
"Aggiornato il"
,
"fold"
:
"Piega"
,
"fold"
:
"Piega"
,
"expand"
:
"Espandi"
,
"expand"
:
"Espandi"
,
"image"
:
"Immagine"
,
"image"
:
"Immagine"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"vacuum"
:
"Pulisci"
,
"vacuum"
:
"Pulisci"
,
"select"
:
"Seleziona"
,
"select"
:
"Seleziona"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Registrati come Host"
,
"signup-as-host"
:
"Registrati come Host"
,
"host-tip"
:
"Ti stai registrando come Host del sito."
,
"host-tip"
:
"Ti stai registrando come Host del sito."
,
"not-host-tip"
:
"Se non hai un account, contatta l'host del sito."
"not-host-tip"
:
"Se non hai un account, contatta l'host del sito."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Oggi"
,
"daily-review"
:
"Oggi"
,
"resources"
:
"Risorse"
,
"resources"
:
"Risorse"
,
"setting"
:
"Impostazioni"
,
"setting"
:
"Impostazioni"
,
"archived"
:
"Archiviati"
"archived"
:
"Archiviati"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Oops, non c'è niente."
"oops-nothing"
:
"Oops, non c'è niente."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Visualizza le tue risorse statiche nei memo. es: immagini"
,
"description"
:
"Visualizza le tue risorse statiche nei memo. es: immagini"
,
"no-resources"
:
"Nessuna risorsa."
,
"no-resources"
:
"Nessuna risorsa."
,
"fetching-data"
:
"recupero i dati..."
,
"fetching-data"
:
"recupero i dati..."
,
"upload"
:
"Carica"
,
"upload"
:
"Carica"
,
"preview"
:
"Anteprima"
,
"preview"
:
"Anteprima"
,
"copy-link"
:
"Copia link"
,
"copy-link"
:
"Copia link"
,
"delete-resource"
:
"Cancella risorsa"
,
"delete-resource"
:
"Cancella risorsa"
,
"warning-text"
:
"Sei sicuro di voler eliminare questa risorsa? QUESTA AZIONE È IRREVERSIBILE❗"
,
"warning-text"
:
"Sei sicuro di voler eliminare questa risorsa? QUESTA AZIONE È IRREVERSIBILE❗"
,
"linked-amount"
:
"Linked memo amount"
,
"linked-amount"
:
"Linked memo amount"
,
"rename"
:
"Rinomina"
,
"rename"
:
"Rinomina"
,
"warning-text-unused"
:
"Sei sicuro di voler eliminare queste risorse? QUESTA AZIONE È IRREVERSIBILE❗"
,
"warning-text-unused"
:
"Sei sicuro di voler eliminare queste risorse? QUESTA AZIONE È IRREVERSIBILE❗"
,
"no-unused-resources"
:
"Nessuna risorsa inutilizzata"
,
"no-unused-resources"
:
"Nessuna risorsa inutilizzata"
,
"name"
:
"Nome"
,
"name"
:
"Nome"
,
"clear"
:
"Clear"
"clear"
:
"Clear"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Memo archiviati"
,
"archived-memos"
:
"Memo archiviati"
,
"no-archived-memos"
:
"Nessun memo archiviato."
,
"no-archived-memos"
:
"Nessun memo archiviato."
,
"fetching-data"
:
"recupero i dati..."
"fetching-data"
:
"recupero i dati..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Modifica in corso..."
,
"editing"
:
"Modifica in corso..."
,
"cancel-edit"
:
"Annulla modifica"
,
"cancel-edit"
:
"Annulla modifica"
,
"save"
:
"Salva"
,
"save"
:
"Salva"
,
"placeholder"
:
"Idee..."
,
"placeholder"
:
"Idee..."
,
"only-image-supported"
:
"Solo file immagine supportati."
,
"only-image-supported"
:
"Solo file immagine supportati."
,
"cant-empty"
:
"Il contenuto non può essere vuoto"
,
"cant-empty"
:
"Il contenuto non può essere vuoto"
,
"local"
:
"Locale"
,
"local"
:
"Locale"
,
"resources"
:
"Risorse"
"resources"
:
"Risorse"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Vedi dettagli"
,
"view-detail"
:
"Vedi dettagli"
,
"copy"
:
"Copia"
,
"copy"
:
"Copia"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Visibile solo a te"
,
"private"
:
"Visibile solo a te"
,
"protected"
:
"Visibile ai membri"
,
"protected"
:
"Visibile ai membri"
,
"public"
:
"Visibile a tutti"
,
"public"
:
"Visibile a tutti"
,
"disabled"
:
"Public memos are disabled"
"disabled"
:
"Public memos are disabled"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"recupero i dati..."
,
"fetching-data"
:
"recupero i dati..."
,
"fetch-more"
:
"Clicca per caricare più 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à"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"titolo Scorciatoia"
,
"contains"
:
"Contiene"
,
"create-shortcut"
:
"Crea Scorciatoia"
,
"not-contains"
:
"Non contiene"
,
"edit-shortcut"
:
"Modifica Scorciatoia"
,
"is"
:
"È"
,
"eligible-memo"
:
"eligible memo"
,
"is-not"
:
"Non è"
,
"fill-previous"
:
"Compila il valore del filtro precedente"
,
"before"
:
"Prima"
,
"title-required"
:
"Il titolo è obbligatorio"
,
"after"
:
"Dopo"
"value-required"
:
"Il valore del filtro è obbligatorio"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Nuovo Filtro"
,
"not-tagged"
:
"senza etichetta"
,
"type"
:
{
"linked"
:
"con link"
"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"
:
{
"text-placeholder"
:
"Inizia con ^ per usare le regex"
"tip-text"
:
"Scrivi `#tag` per crearla"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Filtro rapido"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Il mio account"
,
"create-a-member"
:
"Crea un membro"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"MEMO"
,
"server-name"
:
"Nome server"
,
"tag_one"
:
"TAG"
,
"customize-server"
:
{
"day_one"
:
"GIORNO"
,
"title"
:
"Personalizza Server"
,
"memo_other"
:
"MEMOS"
,
"default"
:
"Predefinito: memos"
,
"tag_other"
:
"TAGS"
,
"icon-url"
:
"URL Icona"
"day_other"
:
"DAYS"
},
"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"
},
},
"message"
:
{
"appearance-option"
:
{
"no-memos"
:
"nessun memo 🌃"
,
"system"
:
"Sistema"
,
"memos-ready"
:
"Tutti i memo sono stati caricati 🎉"
,
"light"
:
"Chiaro"
,
"restored-successfully"
:
"Ripristinato con successo"
,
"dark"
:
"Scuro"
"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"
:
{
"sso"
:
"SSO"
,
"monday"
:
"Lunedì"
,
"storage"
:
"Storage"
,
"mon"
:
"Lun"
,
"storage-section"
:
{
"tuesday"
:
"Martedì"
,
"storage-services-list"
:
"Storage service list"
,
"tue"
:
"Mar"
,
"create-a-service"
:
"Create a service"
,
"wednesday"
:
"Mercoledì"
,
"update-a-service"
:
"Update a service"
,
"wed"
:
"Mer"
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"thursday"
:
"Giovedì"
,
"delete-storage"
:
"Delete Storage"
"thu"
:
"Gio"
,
"friday"
:
"Venerdì"
,
"fri"
:
"Ven"
,
"saturday"
:
"Sabato"
,
"sat"
:
"Sab"
,
"sunday"
:
"Domenica"
,
"sun"
:
"Dom"
}
}
},
"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"
}
}
}
web/src/locales/ko.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"sign-out"
:
"로그아웃"
,
"sign-out"
:
"로그아웃"
,
"back-to-home"
:
"홈으로 돌아가기"
,
"back-to-home"
:
"홈으로 돌아가기"
,
"about"
:
"정보"
,
"about"
:
"정보"
,
"email"
:
"이메일"
,
"email"
:
"이메일"
,
"password"
:
"비밀번호"
,
"password"
:
"비밀번호"
,
"repeat-password-short"
:
"반복"
,
"repeat-password-short"
:
"반복"
,
"repeat-password"
:
"비밀번호 재확인"
,
"repeat-password"
:
"비밀번호 재확인"
,
"new-password"
:
"새 비밀번호"
,
"new-password"
:
"새 비밀번호"
,
"repeat-new-password"
:
"새 비밀번호 재확인"
,
"repeat-new-password"
:
"새 비밀번호 재확인"
,
"avatar"
:
"아바타"
,
"avatar"
:
"아바타"
,
"username"
:
"유저네임"
,
"username"
:
"유저네임"
,
"nickname"
:
"닉네임"
,
"nickname"
:
"닉네임"
,
"save"
:
"저장"
,
"save"
:
"저장"
,
"close"
:
"닫기"
,
"close"
:
"닫기"
,
"cancel"
:
"취소"
,
"cancel"
:
"취소"
,
"create"
:
"생성"
,
"create"
:
"생성"
,
"change"
:
"변경"
,
"change"
:
"변경"
,
"confirm"
:
"확인"
,
"confirm"
:
"확인"
,
"reset"
:
"재설정"
,
"reset"
:
"재설정"
,
"language"
:
"언어"
,
"language"
:
"언어"
,
"version"
:
"버전"
,
"version"
:
"버전"
,
"pin"
:
"고정"
,
"pin"
:
"고정"
,
"unpin"
:
"고정 해제"
,
"unpin"
:
"고정 해제"
,
"edit"
:
"편집"
,
"edit"
:
"편집"
,
"restore"
:
"복원"
,
"restore"
:
"복원"
,
"delete"
:
"삭제"
,
"delete"
:
"삭제"
,
"null"
:
"비어 있음"
,
"null"
:
"비어 있음"
,
"share"
:
"공유"
,
"share"
:
"공유"
,
"archive"
:
"보관 처리"
,
"archive"
:
"보관 처리"
,
"basic"
:
"기본"
,
"basic"
:
"기본"
,
"admin"
:
"관리"
,
"admin"
:
"관리"
,
"explore"
:
"탐색"
,
"explore"
:
"탐색"
,
"sign-in"
:
"로그인"
,
"sign-in"
:
"로그인"
,
"sign-up"
:
"회원등록"
,
"sign-up"
:
"회원등록"
,
"type"
:
"타입"
,
"type"
:
"타입"
,
"shortcuts"
:
"바로가기"
,
"shortcuts"
:
"바로가기"
,
"title"
:
"제목"
,
"title"
:
"제목"
,
"filter"
:
"필터"
,
"filter"
:
"필터"
,
"tags"
:
"태그"
,
"tags"
:
"태그"
,
"yourself"
:
"자기 자신"
,
"yourself"
:
"자기 자신"
,
"archived-at"
:
"보관처리됨"
,
"archived-at"
:
"보관처리됨"
,
"changed"
:
"변경됨"
,
"changed"
:
"변경됨"
,
"update-on"
:
"변동됨"
,
"update-on"
:
"변동됨"
,
"fold"
:
"접기"
,
"fold"
:
"접기"
,
"expand"
:
"펼치기"
,
"expand"
:
"펼치기"
,
"image"
:
"이미지"
,
"image"
:
"이미지"
,
"link"
:
"링크"
,
"link"
:
"링크"
,
"vacuum"
:
"최적화"
,
"vacuum"
:
"최적화"
,
"select"
:
"선택"
,
"select"
:
"선택"
,
"database"
:
"데이터베이스"
"database"
:
"데이터베이스"
},
},
"memo"
:
{
"memo"
:
{
"copy"
:
"복사"
,
"copy"
:
"복사"
,
"view-detail"
:
"자세히 보기"
,
"view-detail"
:
"자세히 보기"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"나만 볼 수 있음"
,
"private"
:
"나만 볼 수 있음"
,
"protected"
:
"멤버들만 볼 수 있음"
,
"protected"
:
"멤버들만 볼 수 있음"
,
"public"
:
"모두가 볼 수 있음"
,
"public"
:
"모두가 볼 수 있음"
,
"disabled"
:
"공개 메모는 비활성화됨"
"disabled"
:
"공개 메모는 비활성화됨"
}
}
},
},
"shortcut-list"
:
{
"shortcut-list"
:
{
"shortcut-title"
:
"바로가기 이름"
,
"shortcut-title"
:
"바로가기 이름"
,
"create-shortcut"
:
"바로가기 생성"
,
"create-shortcut"
:
"바로가기 생성"
,
"edit-shortcut"
:
"바로가기 변경"
,
"edit-shortcut"
:
"바로가기 변경"
,
"eligible-memo"
:
"해당하는 메모"
,
"eligible-memo"
:
"해당하는 메모"
,
"fill-previous"
:
"위의 필터 값을 채워주세요"
,
"fill-previous"
:
"위의 필터 값을 채워주세요"
,
"title-required"
:
"제목이 있어야 합니다"
,
"title-required"
:
"제목이 있어야 합니다"
,
"value-required"
:
"필터 값이 있어야 합니다"
"value-required"
:
"필터 값이 있어야 합니다"
},
},
"amount-text"
:
{
"amount-text"
:
{
"memo_other"
:
"MEMO"
,
"memo_other"
:
"MEMO"
,
"tag_other"
:
"TAG"
,
"tag_other"
:
"TAG"
,
"day_other"
:
"DAY"
,
"day_other"
:
"DAY"
,
"memo_one"
:
"MEMO"
,
"memo_one"
:
"MEMO"
,
"tag_one"
:
"TAG"
,
"tag_one"
:
"TAG"
,
"day_one"
:
"DAY"
"day_one"
:
"DAY"
},
},
"slogan"
:
"지식 정리와 소셜 네트워킹 기능을 갖춘 자체 호스팅의 오픈 소스 메모 허브입니다."
,
"slogan"
:
"지식 정리와 소셜 네트워킹 기능을 갖춘 자체 호스팅의 오픈 소스 메모 허브입니다."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"호스트로서 회원등록"
,
"signup-as-host"
:
"호스트로서 회원등록"
,
"host-tip"
:
"사이트 주인으로서의 계정을 등록합니다."
,
"host-tip"
:
"사이트 주인으로서의 계정을 등록합니다."
,
"not-host-tip"
:
"계정이 없다면 사이트 주인에게 문의해 주세요."
"not-host-tip"
:
"계정이 없다면 사이트 주인에게 문의해 주세요."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"날마다 돌아보기"
,
"daily-review"
:
"날마다 돌아보기"
,
"resources"
:
"리소스"
,
"resources"
:
"리소스"
,
"setting"
:
"설정"
,
"setting"
:
"설정"
,
"archived"
:
"보관함"
"archived"
:
"보관함"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"앗, 아무것도 없네요."
"oops-nothing"
:
"앗, 아무것도 없네요."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"이미지 같은 정적인 리소스를 메모에 삽입해보세요."
,
"description"
:
"이미지 같은 정적인 리소스를 메모에 삽입해보세요."
,
"no-resources"
:
"리소스 없음."
,
"no-resources"
:
"리소스 없음."
,
"fetching-data"
:
"불러오는 중..."
,
"fetching-data"
:
"불러오는 중..."
,
"upload"
:
"업로드"
,
"upload"
:
"업로드"
,
"preview"
:
"미리보기"
,
"preview"
:
"미리보기"
,
"copy-link"
:
"링크 복사"
,
"copy-link"
:
"링크 복사"
,
"delete-resource"
:
"리소스 삭제"
,
"delete-resource"
:
"리소스 삭제"
,
"warning-text"
:
"이 리소스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗"
,
"warning-text"
:
"이 리소스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗"
,
"linked-amount"
:
"연결된 메모 수"
,
"linked-amount"
:
"연결된 메모 수"
,
"rename"
:
"이름 바꾸기"
,
"rename"
:
"이름 바꾸기"
,
"clear"
:
"정리"
,
"clear"
:
"정리"
,
"warning-text-unused"
:
"사용된 적 없는 다음 리소스들을 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗"
,
"warning-text-unused"
:
"사용된 적 없는 다음 리소스들을 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗"
,
"no-unused-resources"
:
"사용되지 않는 리소스 없음"
,
"no-unused-resources"
:
"사용되지 않는 리소스 없음"
,
"name"
:
"이름"
"name"
:
"이름"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"보관처리된 메모"
,
"archived-memos"
:
"보관처리된 메모"
,
"no-archived-memos"
:
"보관처리된 메모가 없습니다."
,
"no-archived-memos"
:
"보관처리된 메모가 없습니다."
,
"fetching-data"
:
"불러오는 중..."
"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"
:
"공개 범위"
},
},
"editor"
:
{
"operator"
:
{
"editing"
:
"편집 중..."
,
"contains"
:
"포함"
,
"cancel-edit"
:
"편집 취소"
,
"not-contains"
:
"비포함"
,
"save"
:
"저장"
,
"is"
:
"해당"
,
"placeholder"
:
"떠오르는 게 있나요..."
,
"is-not"
:
"비해당"
,
"only-image-supported"
:
"이미지 파일만 지원합니다."
,
"before"
:
"이전"
,
"cant-empty"
:
"내용이 비어있을 수 없음"
,
"after"
:
"이후"
"local"
:
"로컬"
,
"resources"
:
"리소스"
},
},
"
memo-list
"
:
{
"
value
"
:
{
"fetching-data"
:
"불러오는 중...
"
,
"not-tagged"
:
"태그 없음
"
,
"fetch-more"
:
"여기를 눌러 더 불러오세요
"
"linked"
:
"링크 있음
"
},
},
"filter"
:
{
"text-placeholder"
:
"^으로 시작하면 정규식 취급"
"new-filter"
:
"새 필터"
,
},
"type"
:
{
"tag-list"
:
{
"tag"
:
"태그"
,
"tip-text"
:
"`#태그명`을 입력하세요"
"type"
:
"종류"
,
},
"text"
:
"내용"
,
"search"
:
{
"display-time"
:
"표시 시각"
,
"quickly-filter"
:
"빠른 필터"
"visibility"
:
"공개 범위"
},
},
"setting"
:
{
"operator"
:
{
"my-account"
:
"내 계정"
,
"contains"
:
"포함"
,
"preference"
:
"개인 설정"
,
"not-contains"
:
"비포함"
,
"member"
:
"멤버"
,
"is"
:
"해당"
,
"member-list"
:
"멤버 목록"
,
"is-not"
:
"비해당"
,
"system"
:
"시스템"
,
"before"
:
"이전"
,
"storage"
:
"저장소"
,
"after"
:
"이후"
"sso"
:
"SSO"
,
},
"account-section"
:
{
"value"
:
{
"title"
:
"계정 정보"
,
"not-tagged"
:
"태그 없음"
,
"update-information"
:
"정보 변경"
,
"linked"
:
"링크 있음"
"change-password"
:
"비밀번호 변경"
},
"text-placeholder"
:
"^으로 시작하면 정규식 취급"
},
},
"tag-list"
:
{
"preference-section"
:
{
"tip-text"
:
"`#태그명`을 입력하세요"
"theme"
:
"테마"
,
"default-memo-visibility"
:
"메모 공개 설정 기본값"
,
"enable-folding-memo"
:
"메모 접기 활성화"
,
"enable-double-click"
:
"더블클릭시 편집 모드 활성화"
,
"editor-font-style"
:
"편집기 글꼴 스타일"
,
"mobile-editor-style"
:
"모바일 편집기 스타일"
,
"default-memo-sort-option"
:
"메모에 표시할 시각"
,
"created_ts"
:
"생성된 시각"
,
"updated_ts"
:
"변경된 시각"
},
},
"search"
:
{
"storage-section"
:
{
"quickly-filter"
:
"빠른 필터"
"storage-services-list"
:
"저장소 서비스 목록"
,
"create-a-service"
:
"서비스 생성"
,
"update-a-service"
:
"서비스 편집"
,
"warning-text"
:
"이 저장소 서비스를 정말로 삭제합니까? 이 행동은 되돌릴 수 없습니다❗"
,
"delete-storage"
:
"저장소 삭제"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"내 계정"
,
"create-a-member"
:
"새 멤버 등록"
"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"
:
{
"system-section"
:
{
"no-memos"
:
"메모가 없습니다 🌃"
,
"server-name"
:
"서버 이름"
,
"memos-ready"
:
"모든 메모가 준비되었습니다 🎉"
,
"customize-server"
:
{
"restored-successfully"
:
"성공적으로 복구했습니다"
,
"title"
:
"서버 커스터마이징"
,
"memo-updated-datetime"
:
"메모 생성 시각이 변경되었습니다."
,
"default"
:
"기본값은 memos"
,
"invalid-created-datetime"
:
"생성 시각이 올바르지 않습니다."
,
"icon-url"
:
"아이콘 URL"
"change-memo-created-time"
:
"메모 생성 시각 변경"
,
},
"memo-not-found"
:
"메모를 찾을 수 없습니다."
,
"database-file-size"
:
"데이터베이스 파일 크기"
,
"fill-all"
:
"모든 칸을 채워 주세요."
,
"allow-user-signup"
:
"회원등록 허용"
,
"password-not-match"
:
"비밀번호가 맞지 않습니다."
,
"disable-public-memos"
:
"공개된 메모 금지"
,
"new-password-not-match"
:
"새 비밀번호가 서로 맞지 않습니다."
,
"additional-style"
:
"추가적인 스타일"
,
"image-load-failed"
:
"이미지 불러오기 실패"
,
"additional-script"
:
"추가적인 스크립트"
,
"fill-form"
:
"이 칸들을 채워 주세요"
,
"additional-style-placeholder"
:
"추가적인 CSS 코드"
,
"login-failed"
:
"로그인 실패"
,
"additional-script-placeholder"
:
"추가적인 JavaScript 코드"
"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"
:
{
"appearance-option"
:
{
"monday"
:
"월요일"
,
"system"
:
"시스템 설정을 따름"
,
"mon"
:
"월"
,
"light"
:
"항상 밝게"
,
"tuesday"
:
"화요일"
,
"dark"
:
"항상 어둡게"
"tue"
:
"화"
,
"wednesday"
:
"수요일"
,
"wed"
:
"수"
,
"thursday"
:
"목요일"
,
"thu"
:
"목"
,
"friday"
:
"금요일"
,
"fri"
:
"금"
,
"saturday"
:
"토요일"
,
"sat"
:
"토"
,
"sunday"
:
"일요일"
,
"sun"
:
"일"
}
}
},
"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"
:
"일"
}
}
}
web/src/locales/nl.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Over"
,
"about"
:
"Over"
,
"email"
:
"E-mailadres"
,
"email"
:
"E-mailadres"
,
"password"
:
"Wachtwoord"
,
"password"
:
"Wachtwoord"
,
"new-password"
:
"Nieuw wachtwoord"
,
"new-password"
:
"Nieuw wachtwoord"
,
"repeat-new-password"
:
"Nieuw wachtwoord herhalen"
,
"repeat-new-password"
:
"Nieuw wachtwoord herhalen"
,
"username"
:
"Gebruikersnaam"
,
"username"
:
"Gebruikersnaam"
,
"nickname"
:
"Bijnaam"
,
"nickname"
:
"Bijnaam"
,
"save"
:
"Opslaan"
,
"save"
:
"Opslaan"
,
"close"
:
"Sluiten"
,
"close"
:
"Sluiten"
,
"cancel"
:
"Annuleren"
,
"cancel"
:
"Annuleren"
,
"create"
:
"Aanmaken"
,
"create"
:
"Aanmaken"
,
"change"
:
"Wijzigen"
,
"change"
:
"Wijzigen"
,
"confirm"
:
"Bevestigen"
,
"confirm"
:
"Bevestigen"
,
"reset"
:
"Herstel"
,
"reset"
:
"Herstel"
,
"language"
:
"Taal"
,
"language"
:
"Taal"
,
"version"
:
"Versie"
,
"version"
:
"Versie"
,
"pin"
:
"Vastzetten"
,
"pin"
:
"Vastzetten"
,
"unpin"
:
"Losmaken"
,
"unpin"
:
"Losmaken"
,
"edit"
:
"Bijwerken"
,
"edit"
:
"Bijwerken"
,
"restore"
:
"Terugzetten"
,
"restore"
:
"Terugzetten"
,
"delete"
:
"Verwijderen"
,
"delete"
:
"Verwijderen"
,
"null"
:
"Null"
,
"null"
:
"Null"
,
"share"
:
"Delen"
,
"share"
:
"Delen"
,
"archive"
:
"Archiveren"
,
"archive"
:
"Archiveren"
,
"basic"
:
"Simpel"
,
"basic"
:
"Simpel"
,
"admin"
:
"Admin"
,
"admin"
:
"Admin"
,
"explore"
:
"Ontdekken"
,
"explore"
:
"Ontdekken"
,
"sign-in"
:
"Inloggen"
,
"sign-in"
:
"Inloggen"
,
"sign-up"
:
"Registreren"
,
"sign-up"
:
"Registreren"
,
"sign-out"
:
"Uitloggen"
,
"sign-out"
:
"Uitloggen"
,
"back-to-home"
:
"Terug naar homepagina"
,
"back-to-home"
:
"Terug naar homepagina"
,
"type"
:
"Type"
,
"type"
:
"Type"
,
"shortcuts"
:
"Snelkoppelingen"
,
"shortcuts"
:
"Snelkoppelingen"
,
"title"
:
"Titel"
,
"title"
:
"Titel"
,
"filter"
:
"Filter"
,
"filter"
:
"Filter"
,
"tags"
:
"Labels"
,
"tags"
:
"Labels"
,
"yourself"
:
"Jij zelf"
,
"yourself"
:
"Jij zelf"
,
"archived-at"
:
"Gearchiveerd op"
,
"archived-at"
:
"Gearchiveerd op"
,
"changed"
:
"gewijzigd"
,
"changed"
:
"gewijzigd"
,
"update-on"
:
"Update op"
,
"update-on"
:
"Update op"
,
"fold"
:
"Invouwen"
,
"fold"
:
"Invouwen"
,
"expand"
:
"Uitklappen"
,
"expand"
:
"Uitklappen"
,
"vacuum"
:
"Vacuum"
,
"vacuum"
:
"Vacuum"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"repeat-password-short"
:
"Herhaal"
,
"repeat-password-short"
:
"Herhaal"
,
"repeat-password"
:
"Herhaal wachtwoord"
,
"repeat-password"
:
"Herhaal wachtwoord"
,
"image"
:
"Afbeelding"
,
"image"
:
"Afbeelding"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"select"
:
"Selecteer"
,
"select"
:
"Selecteer"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"Een open-source, zelf-beheerd memo applicatie voor kennismanagement en collaboratie."
,
"slogan"
:
"Een open-source, zelf-beheerd memo applicatie voor kennismanagement en collaboratie."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Registreren als Host"
,
"signup-as-host"
:
"Registreren als Host"
,
"host-tip"
:
"Je registreert je als Site 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."
"not-host-tip"
:
"Als je geen account hebt, neem dan contact op met de site host."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Dagelijkse Review"
,
"daily-review"
:
"Dagelijkse Review"
,
"resources"
:
"Bronnen"
,
"resources"
:
"Bronnen"
,
"setting"
:
"Instellingen"
,
"setting"
:
"Instellingen"
,
"archived"
:
"Gearchiveerd"
"archived"
:
"Gearchiveerd"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Oeps, er is niets."
"oops-nothing"
:
"Oeps, er is niets."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Bekijk je statische bronnen in memos, zoals foto's."
,
"description"
:
"Bekijk je statische bronnen in memos, zoals foto's."
,
"no-resources"
:
"Geen bronnen."
,
"no-resources"
:
"Geen bronnen."
,
"fetching-data"
:
"data aan het ophalen..."
,
"fetching-data"
:
"data aan het ophalen..."
,
"upload"
:
"Uploaden"
,
"upload"
:
"Uploaden"
,
"preview"
:
"Voorbeeld"
,
"preview"
:
"Voorbeeld"
,
"copy-link"
:
"Kopiëer Link"
,
"copy-link"
:
"Kopiëer Link"
,
"delete-resource"
:
"Bron verwijderen"
,
"delete-resource"
:
"Bron verwijderen"
,
"warning-text"
:
"Weet je zeker dat je deze bron wilt verwijderen? Deze actie is NIET terug te draaien!"
,
"warning-text"
:
"Weet je zeker dat je deze bron wilt verwijderen? Deze actie is NIET terug te draaien!"
,
"linked-amount"
:
"Aantal gelinkte memo's"
,
"linked-amount"
:
"Aantal gelinkte memo's"
,
"rename"
:
"Hernoemen"
,
"rename"
:
"Hernoemen"
,
"warning-text-unused"
:
"Weet je zeker dat je deze ongebruikte bron wilt verwijderen? Deze actie is NIET terug te draaien!"
,
"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"
,
"no-unused-resources"
:
"Geen ongebruikte bronnen"
,
"name"
:
"Name"
,
"name"
:
"Name"
,
"clear"
:
"Opruimen"
"clear"
:
"Opruimen"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Gearchiveerde Memos"
,
"archived-memos"
:
"Gearchiveerde Memos"
,
"no-archived-memos"
:
"Geen gearchiveerde memos."
,
"no-archived-memos"
:
"Geen gearchiveerde memos."
,
"fetching-data"
:
"data aan het ophalen..."
"fetching-data"
:
"data aan het ophalen..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Aan het wijzigen..."
,
"editing"
:
"Aan het wijzigen..."
,
"cancel-edit"
:
"Annuleer wijziging"
,
"cancel-edit"
:
"Annuleer wijziging"
,
"save"
:
"Opslaan"
,
"save"
:
"Opslaan"
,
"placeholder"
:
"Leeg je gedachten..."
,
"placeholder"
:
"Leeg je gedachten..."
,
"only-image-supported"
:
"Alleen afbeeldingen worden ondersteund."
,
"only-image-supported"
:
"Alleen afbeeldingen worden ondersteund."
,
"cant-empty"
:
"Inhoud kan niet leeg zijn"
,
"cant-empty"
:
"Inhoud kan niet leeg zijn"
,
"local"
:
"Lokaal"
,
"local"
:
"Lokaal"
,
"resources"
:
"Bronnen"
"resources"
:
"Bronnen"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Bekijk Detail"
,
"view-detail"
:
"Bekijk Detail"
,
"copy"
:
"Kopiëer"
,
"copy"
:
"Kopiëer"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Privé"
,
"private"
:
"Privé"
,
"protected"
:
"Zichtbaar voor leden"
,
"protected"
:
"Zichtbaar voor leden"
,
"public"
:
"Openbaar"
,
"public"
:
"Openbaar"
,
"disabled"
:
"Openbare memos zijn uitgezet"
"disabled"
:
"Openbare memos zijn uitgezet"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"data aan het ophalen..."
,
"fetching-data"
:
"data aan het ophalen..."
,
"fetch-more"
:
"Klik hier om meer op te halen"
"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"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"snelkoppelingstitel"
,
"contains"
:
"Bevat"
,
"create-shortcut"
:
"Maak Snelkoppeling"
,
"not-contains"
:
"Bevat niet"
,
"edit-shortcut"
:
"Wijzig Shortcut"
,
"is"
:
"Is"
,
"eligible-memo"
:
"geschikte memo"
,
"is-not"
:
"Is Niet"
,
"fill-previous"
:
"Vul alsjeblieft het vorige filter in"
,
"before"
:
"Voor"
,
"title-required"
:
"Titel is verplicht"
,
"after"
:
"Na"
"value-required"
:
"Filter is verplicht"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Nieuw Filter"
,
"not-tagged"
:
"Geen labels"
,
"type"
:
{
"linked"
:
"Heeft links"
"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"
:
{
"text-placeholder"
:
"Begin met ^ om RegEx te gebruiken."
"tip-text"
:
"Typ `#label ` om aan te maken"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Snel filteren"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Mijn account"
,
"create-a-member"
:
"Lid toevoegen"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"MEMO"
,
"server-name"
:
"Server Name"
,
"memo_other"
:
"MEMOS"
,
"customize-server"
:
{
"tag_one"
:
"LABEL"
,
"title"
:
"Customize Server"
,
"tag_other"
:
"LABELS"
,
"default"
:
"Default is memos"
,
"day_one"
:
"DAG"
,
"icon-url"
:
"Icon URL"
"day_other"
:
"DAGEN"
},
"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"
},
},
"message"
:
{
"appearance-option"
:
{
"no-memos"
:
"geen memos 🌃"
,
"light"
:
"Altijd licht"
,
"memos-ready"
:
"alle memos zijn geladen 🎉"
,
"dark"
:
"Altijd donker"
,
"restored-successfully"
:
"Succesvol teruggezet"
,
"system"
:
"Volg systeem"
"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"
:
{
"storage"
:
"Opslag"
,
"monday"
:
"Maandag"
,
"sso"
:
"SSO"
,
"mon"
:
"ma"
,
"storage-section"
:
{
"tuesday"
:
"Dinsdag"
,
"storage-services-list"
:
"Opslagdiensten"
,
"tue"
:
"di"
,
"create-a-service"
:
"Dienst aanmaken"
,
"wednesday"
:
"Woensdag"
,
"update-a-service"
:
"Dienst bijwerken"
,
"wed"
:
"woe"
,
"warning-text"
:
"Weet je zeker dat je deze opslagdienst wilt verwijderen? Dit is NIET terug te draaien!"
,
"thursday"
:
"Donderdag"
,
"delete-storage"
:
"Opslag verwijderen"
"thu"
:
"don"
,
"friday"
:
"Vrijdag"
,
"fri"
:
"vrij"
,
"saturday"
:
"Zaterdag"
,
"sat"
:
"zat"
,
"sunday"
:
"Zondag"
,
"sun"
:
"zon"
}
}
},
"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"
}
}
}
web/src/locales/pl.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"O aplikacji"
,
"about"
:
"O aplikacji"
,
"email"
:
"E-mail"
,
"email"
:
"E-mail"
,
"password"
:
"Hasło"
,
"password"
:
"Hasło"
,
"repeat-password-short"
:
"Powtórz"
,
"repeat-password-short"
:
"Powtórz"
,
"repeat-password"
:
"Powtórz hasło"
,
"repeat-password"
:
"Powtórz hasło"
,
"new-password"
:
"Nowe hasło"
,
"new-password"
:
"Nowe hasło"
,
"repeat-new-password"
:
"Powtórz nowe hasło"
,
"repeat-new-password"
:
"Powtórz nowe hasło"
,
"avatar"
:
"Awatar"
,
"avatar"
:
"Awatar"
,
"username"
:
"Nazwa użytkownika"
,
"username"
:
"Nazwa użytkownika"
,
"nickname"
:
"Pseudonim"
,
"nickname"
:
"Pseudonim"
,
"save"
:
"Zapisz"
,
"save"
:
"Zapisz"
,
"close"
:
"Zamknij"
,
"close"
:
"Zamknij"
,
"cancel"
:
"Anuluj"
,
"cancel"
:
"Anuluj"
,
"create"
:
"Utwórz"
,
"create"
:
"Utwórz"
,
"change"
:
"Zmień"
,
"change"
:
"Zmień"
,
"confirm"
:
"Potwierdź"
,
"confirm"
:
"Potwierdź"
,
"reset"
:
"Resetuj"
,
"reset"
:
"Resetuj"
,
"language"
:
"Język"
,
"language"
:
"Język"
,
"version"
:
"Wersja"
,
"version"
:
"Wersja"
,
"pin"
:
"Przypnij"
,
"pin"
:
"Przypnij"
,
"unpin"
:
"Odepnij"
,
"unpin"
:
"Odepnij"
,
"edit"
:
"Edytuj"
,
"edit"
:
"Edytuj"
,
"restore"
:
"Przywróć"
,
"restore"
:
"Przywróć"
,
"delete"
:
"Usuń"
,
"delete"
:
"Usuń"
,
"null"
:
"Null"
,
"null"
:
"Null"
,
"share"
:
"Udostępnij"
,
"share"
:
"Udostępnij"
,
"archive"
:
"Archiwizuj"
,
"archive"
:
"Archiwizuj"
,
"basic"
:
"Podstawowe"
,
"basic"
:
"Podstawowe"
,
"admin"
:
"Admin"
,
"admin"
:
"Admin"
,
"explore"
:
"Odkrywaj"
,
"explore"
:
"Odkrywaj"
,
"sign-in"
:
"Zaloguj"
,
"sign-in"
:
"Zaloguj"
,
"sign-up"
:
"Utwórz konto"
,
"sign-up"
:
"Utwórz konto"
,
"sign-out"
:
"Wyloguj"
,
"sign-out"
:
"Wyloguj"
,
"back-to-home"
:
"Powrót do Strony Głównej"
,
"back-to-home"
:
"Powrót do Strony Głównej"
,
"type"
:
"Typ"
,
"type"
:
"Typ"
,
"shortcuts"
:
"Skróty"
,
"shortcuts"
:
"Skróty"
,
"title"
:
"Tytuł"
,
"title"
:
"Tytuł"
,
"filter"
:
"Filtruj"
,
"filter"
:
"Filtruj"
,
"tags"
:
"Tagi"
,
"tags"
:
"Tagi"
,
"yourself"
:
"Ty"
,
"yourself"
:
"Ty"
,
"archived-at"
:
"Zarchiwizowano"
,
"archived-at"
:
"Zarchiwizowano"
,
"changed"
:
"zmodyfikowano"
,
"changed"
:
"zmodyfikowano"
,
"update-on"
:
"Aktualizacja dnia"
,
"update-on"
:
"Aktualizacja dnia"
,
"fold"
:
"Zwiń"
,
"fold"
:
"Zwiń"
,
"expand"
:
"Rozwiń"
,
"expand"
:
"Rozwiń"
,
"image"
:
"Obrazek"
,
"image"
:
"Obrazek"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"vacuum"
:
"Vacuum"
,
"vacuum"
:
"Vacuum"
,
"select"
:
"Wybierz"
,
"select"
:
"Wybierz"
,
"database"
:
"Baza danych"
"database"
:
"Baza danych"
},
},
"slogan"
:
"Open-source centrum notatek do samodzielnego hostowania z zarządzaniem wiedzą i sieciami społecznościowymi."
,
"slogan"
:
"Open-source centrum notatek do samodzielnego hostowania z zarządzaniem wiedzą i sieciami społecznościowymi."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Zarejestruj się jako właściciel"
,
"signup-as-host"
:
"Zarejestruj się jako właściciel"
,
"host-tip"
:
"Rejestrujesz 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."
"not-host-tip"
:
"Jeśli nie posiadasz konta skontaktuj się z właścicielem strony."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Podsumowanie dnia"
,
"daily-review"
:
"Podsumowanie dnia"
,
"resources"
:
"Zasoby"
,
"resources"
:
"Zasoby"
,
"setting"
:
"Ustawienia"
,
"setting"
:
"Ustawienia"
,
"archived"
:
"Zarchiwizowane"
"archived"
:
"Zarchiwizowane"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ups, nic tu nie ma."
"oops-nothing"
:
"Ups, nic tu nie ma."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Zobacz statyczne zasoby w notatkach, na przykład obrazki"
,
"description"
:
"Zobacz statyczne zasoby w notatkach, na przykład obrazki"
,
"no-resources"
:
"Brak zasobów."
,
"no-resources"
:
"Brak zasobów."
,
"fetching-data"
:
"pobieranie danych..."
,
"fetching-data"
:
"pobieranie danych..."
,
"upload"
:
"Wrzuć"
,
"upload"
:
"Wrzuć"
,
"preview"
:
"Podgląd"
,
"preview"
:
"Podgląd"
,
"linked-amount"
:
"Liczba kwalifikujących się notatek"
,
"linked-amount"
:
"Liczba kwalifikujących się notatek"
,
"copy-link"
:
"Kopiuj odnośnik"
,
"copy-link"
:
"Kopiuj odnośnik"
,
"delete-resource"
:
"Usuń zasób"
,
"delete-resource"
:
"Usuń zasób"
,
"warning-text"
:
"Czy na pewno chcesz usunąć zasób? To działanie jest nieodwracalne❗"
,
"warning-text"
:
"Czy na pewno chcesz usunąć zasób? To działanie jest nieodwracalne❗"
,
"rename"
:
"Zmień nazwę"
,
"rename"
:
"Zmień nazwę"
,
"clear"
:
"Wyczyść"
,
"clear"
:
"Wyczyść"
,
"warning-text-unused"
:
"Czy na pewno chcesz usunąć nieużywany zasób? To działanie jest nieodwracalne❗"
,
"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"
,
"no-unused-resources"
:
"Brak nieużywanych zasobów"
,
"name"
:
"Nazwa"
"name"
:
"Nazwa"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Zarchiwizowane notatki"
,
"archived-memos"
:
"Zarchiwizowane notatki"
,
"no-archived-memos"
:
"Brak zarchiwizowanych notatek."
,
"no-archived-memos"
:
"Brak zarchiwizowanych notatek."
,
"fetching-data"
:
"pobieranie danych..."
"fetching-data"
:
"pobieranie danych..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Edytowanie..."
,
"editing"
:
"Edytowanie..."
,
"cancel-edit"
:
"Anuluj edycję"
,
"cancel-edit"
:
"Anuluj edycję"
,
"save"
:
"Zapisz"
,
"save"
:
"Zapisz"
,
"placeholder"
:
"Jakieś przemyślenia..."
,
"placeholder"
:
"Jakieś przemyślenia..."
,
"only-image-supported"
:
"Obsługiwane są tylko obrazy."
,
"only-image-supported"
:
"Obsługiwane są tylko obrazy."
,
"cant-empty"
:
"Treść nie może być pusta"
,
"cant-empty"
:
"Treść nie może być pusta"
,
"local"
:
"Lokalne"
,
"local"
:
"Lokalne"
,
"resources"
:
"Zasoby"
"resources"
:
"Zasoby"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Zobacz szczegóły"
,
"view-detail"
:
"Zobacz szczegóły"
,
"copy"
:
"Kopiuj"
,
"copy"
:
"Kopiuj"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Widoczne tylko dla ciebie"
,
"private"
:
"Widoczne tylko dla ciebie"
,
"protected"
:
"Widoczne dla użytkowników"
,
"protected"
:
"Widoczne dla użytkowników"
,
"public"
:
"Widoczne dla wszystkich"
,
"public"
:
"Widoczne dla wszystkich"
,
"disabled"
:
"Publiczne notatki są wyłączone"
"disabled"
:
"Publiczne notatki są wyłączone"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"pobieranie danych..."
,
"fetching-data"
:
"pobieranie danych..."
,
"fetch-more"
:
"Kliknij, aby pobrać więcej"
"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ść"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"krótki tytuł"
,
"contains"
:
"Zawiera"
,
"create-shortcut"
:
"Utwórz skrót"
,
"not-contains"
:
"Nie zawiera"
,
"edit-shortcut"
:
"Edytuj skrót"
,
"is"
:
"To"
,
"eligible-memo"
:
"kwalifikująca się notatka"
,
"is-not"
:
"Różny od"
,
"fill-previous"
:
"Proszę uzupełnij poprzednią wartość filtra"
,
"before"
:
"Przed"
,
"title-required"
:
"Tytuł jest wymagany"
,
"after"
:
"Po"
"value-required"
:
"Wartość filtra jest wymagana"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Nowy filtr"
,
"not-tagged"
:
"Brak tagów"
,
"type"
:
{
"linked"
:
"Posiada linki"
"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"
:
{
"text-placeholder"
:
"Rozpocznij z ^, aby wykorzystać regex"
"tip-text"
:
"Wprowadź `#tag` aby utworzyć"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Szybkie filtry"
"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"
},
},
"setting"
:
{
"storage-section"
:
{
"my-account"
:
"Moje konto"
,
"storage-services-list"
:
"Lista usług przechowywania"
,
"preference"
:
"Ustawienia"
,
"create-a-service"
:
"Utwórz serwis"
,
"member"
:
"Użytkownik"
,
"update-a-service"
:
"Aktualizuj serwis"
,
"member-list"
:
"Lista użytkowników"
,
"warning-text"
:
"Czy na pewno chcesz usunąć ten serwis przechowywania? Ta akcja jest nieodwracalna❗"
,
"system"
:
"System"
,
"delete-storage"
:
"Usuń serwis przechowywania"
"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"
:
{
"member-section"
:
{
"memo_one"
:
"NOTATKA"
,
"create-a-member"
:
"Utwórz użytkownika"
"memo_few"
:
""
,
"tag_one"
:
"TAG"
,
"tag_few"
:
""
,
"day_one"
:
"DZIEŃ"
,
"day_few"
:
""
},
},
"message"
:
{
"system-section"
:
{
"no-memos"
:
"brak notatek 🌃"
,
"server-name"
:
"Nazwa serwera"
,
"memos-ready"
:
"wszystkie notatki są gotowe 🎉"
,
"customize-server"
:
{
"restored-successfully"
:
"Pomyślnie przywrócono"
,
"title"
:
"Personalizuj serwer"
,
"memo-updated-datetime"
:
"Zmieniono datę utworzenia notatki."
,
"default"
:
"Domyślnie to memos"
,
"invalid-created-datetime"
:
"Niepoprawna data utworzenia."
,
"icon-url"
:
"URL ikony"
"change-memo-created-time"
:
"Zmień datę utworzenia notatki"
,
},
"memo-not-found"
:
"Nie znaleziono notatki."
,
"database-file-size"
:
"Rozmiar bazy danych"
,
"fill-all"
:
"Proszę uzupełnij wszystkie pola."
,
"allow-user-signup"
:
"Zezwól na rejestrację"
,
"password-not-match"
:
"Hasła się nie zgadzają."
,
"disable-public-memos"
:
"Wyłącz publiczne notatki"
,
"new-password-not-match"
:
"Nowe hasła się nie zgadzają."
,
"additional-style"
:
"Dodatkowy styl"
,
"image-load-failed"
:
"Nie udało się wczytać obrazka"
,
"additional-script"
:
"Dodatkowy skrypt"
,
"fill-form"
:
"Proszę uzupełnij formularz"
,
"additional-style-placeholder"
:
"Dodatkowy kod CSS"
,
"login-failed"
:
"Błąd logowania"
,
"additional-script-placeholder"
:
"Dodatkowy kod JavaScript"
"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"
:
{
"appearance-option"
:
{
"monday"
:
"Poniedziałek"
,
"system"
:
"Systemowy"
,
"mon"
:
"Pon"
,
"light"
:
"Zawsze jasny"
,
"tuesday"
:
"Wtorek"
,
"dark"
:
"Zawsze ciemny"
"tue"
:
"Wt"
,
"wednesday"
:
"Środa"
,
"wed"
:
"Śr"
,
"thursday"
:
"Czwartek"
,
"thu"
:
"Czw"
,
"friday"
:
"Piątek"
,
"fri"
:
"Pt"
,
"saturday"
:
"Sobota"
,
"sat"
:
"Sob"
,
"sunday"
:
"Niedziela"
,
"sun"
:
"Nie"
}
}
},
"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"
}
}
}
web/src/locales/pt_BR.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Sobre"
,
"about"
:
"Sobre"
,
"email"
:
"E-mail"
,
"email"
:
"E-mail"
,
"password"
:
"Senha"
,
"password"
:
"Senha"
,
"repeat-password-short"
:
"Repita"
,
"repeat-password-short"
:
"Repita"
,
"repeat-password"
:
"Repita a senha"
,
"repeat-password"
:
"Repita a senha"
,
"new-password"
:
"Nova senha"
,
"new-password"
:
"Nova senha"
,
"repeat-new-password"
:
"Repita a nova senha"
,
"repeat-new-password"
:
"Repita a nova senha"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"username"
:
"Nome de usuário"
,
"username"
:
"Nome de usuário"
,
"nickname"
:
"Apelido"
,
"nickname"
:
"Apelido"
,
"save"
:
"Salvar"
,
"save"
:
"Salvar"
,
"close"
:
"Fechar"
,
"close"
:
"Fechar"
,
"cancel"
:
"Cancelar"
,
"cancel"
:
"Cancelar"
,
"create"
:
"Criar"
,
"create"
:
"Criar"
,
"change"
:
"Alterar"
,
"change"
:
"Alterar"
,
"confirm"
:
"Confirmar"
,
"confirm"
:
"Confirmar"
,
"reset"
:
"Redefinir"
,
"reset"
:
"Redefinir"
,
"language"
:
"Idioma"
,
"language"
:
"Idioma"
,
"version"
:
"Versão"
,
"version"
:
"Versão"
,
"pin"
:
"Fixar"
,
"pin"
:
"Fixar"
,
"unpin"
:
"Desfixar"
,
"unpin"
:
"Desfixar"
,
"edit"
:
"Editar"
,
"edit"
:
"Editar"
,
"restore"
:
"Restaurar"
,
"restore"
:
"Restaurar"
,
"delete"
:
"Apagar"
,
"delete"
:
"Apagar"
,
"null"
:
"Nulo"
,
"null"
:
"Nulo"
,
"share"
:
"Compartilhar"
,
"share"
:
"Compartilhar"
,
"archive"
:
"Arquivar"
,
"archive"
:
"Arquivar"
,
"basic"
:
"Básico"
,
"basic"
:
"Básico"
,
"admin"
:
"Admin"
,
"admin"
:
"Admin"
,
"explore"
:
"Explorar"
,
"explore"
:
"Explorar"
,
"sign-in"
:
"Entrar"
,
"sign-in"
:
"Entrar"
,
"sign-up"
:
"Cadastrar-se"
,
"sign-up"
:
"Cadastrar-se"
,
"sign-out"
:
"Deslogar"
,
"sign-out"
:
"Deslogar"
,
"back-to-home"
:
"Voltar para Início"
,
"back-to-home"
:
"Voltar para Início"
,
"type"
:
"Type"
,
"type"
:
"Type"
,
"shortcuts"
:
"Atalhos"
,
"shortcuts"
:
"Atalhos"
,
"title"
:
"Título"
,
"title"
:
"Título"
,
"filter"
:
"Filtro"
,
"filter"
:
"Filtro"
,
"tags"
:
"Tags"
,
"tags"
:
"Tags"
,
"yourself"
:
"Você mesmo"
,
"yourself"
:
"Você mesmo"
,
"archived-at"
:
"Arquivado em"
,
"archived-at"
:
"Arquivado em"
,
"changed"
:
"alterado"
,
"changed"
:
"alterado"
,
"update-on"
:
"Update on"
,
"update-on"
:
"Update on"
,
"fold"
:
"Fold"
,
"fold"
:
"Fold"
,
"expand"
:
"Expandir"
,
"expand"
:
"Expandir"
,
"image"
:
"Imagem"
,
"image"
:
"Imagem"
,
"link"
:
"Link"
,
"link"
:
"Link"
,
"vacuum"
:
"Vacuum"
,
"vacuum"
:
"Vacuum"
,
"select"
:
"Selecionar"
,
"select"
:
"Selecionar"
,
"database"
:
"Banco de dados"
"database"
:
"Banco de dados"
},
},
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"slogan"
:
"An open-source, self-hosted memo hub with knowledge management and social networking."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Sign up as Host"
,
"signup-as-host"
:
"Sign up as Host"
,
"host-tip"
:
"You are registering as the Site 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."
"not-host-tip"
:
"If you don't have an account, please contact the site host."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Revisão diária"
,
"daily-review"
:
"Revisão diária"
,
"resources"
:
"Recursos"
,
"resources"
:
"Recursos"
,
"setting"
:
"Configurações"
,
"setting"
:
"Configurações"
,
"archived"
:
"Arquivado"
"archived"
:
"Arquivado"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Oops, não há nada aqui."
"oops-nothing"
:
"Oops, não há nada aqui."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"View your static resources in memos. e.g. images"
,
"description"
:
"View your static resources in memos. e.g. images"
,
"no-resources"
:
"No resources."
,
"no-resources"
:
"No resources."
,
"fetching-data"
:
"fetching data..."
,
"fetching-data"
:
"fetching data..."
,
"upload"
:
"Enviar"
,
"upload"
:
"Enviar"
,
"preview"
:
"Pré-visualizar"
,
"preview"
:
"Pré-visualizar"
,
"warning-text"
:
"Are you sure to delete this resource? THIS ACTION IS IRREVERSIABLE❗"
,
"warning-text"
:
"Are you sure to delete this resource? THIS ACTION IS IRREVERSIBLE❗"
,
"copy-link"
:
"Copiar Link"
,
"copy-link"
:
"Copiar Link"
,
"delete-resource"
:
"Delete Resource"
,
"delete-resource"
:
"Delete Resource"
,
"linked-amount"
:
"Linked memo amount"
,
"linked-amount"
:
"Linked memo amount"
,
"rename"
:
"Renomear"
,
"rename"
:
"Renomear"
,
"clear"
:
"Limpar"
,
"clear"
:
"Limpar"
,
"warning-text-unused"
:
"Are you sure to delete these unused resource? THIS ACTION IS IRREVERSIABLE❗"
,
"warning-text-unused"
:
"Are you sure to delete these unused resource? THIS ACTION IS IRREVERSIBLE❗"
,
"no-unused-resources"
:
"No unused resources"
,
"no-unused-resources"
:
"No unused resources"
,
"name"
:
"Nome"
"name"
:
"Nome"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Memos Arquivados"
,
"archived-memos"
:
"Memos Arquivados"
,
"no-archived-memos"
:
"No archived memos."
,
"no-archived-memos"
:
"No archived memos."
,
"fetching-data"
:
"fetching data..."
"fetching-data"
:
"fetching data..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Editando..."
,
"editing"
:
"Editando..."
,
"cancel-edit"
:
"Cancelar edição"
,
"cancel-edit"
:
"Cancelar edição"
,
"save"
:
"Salvar"
,
"save"
:
"Salvar"
,
"placeholder"
:
"Any thoughts..."
,
"placeholder"
:
"Any thoughts..."
,
"only-image-supported"
:
"Only image file supported."
,
"only-image-supported"
:
"Only image file supported."
,
"cant-empty"
:
"Content can't be empty"
,
"cant-empty"
:
"Content can't be empty"
,
"local"
:
"Local"
,
"local"
:
"Local"
,
"resources"
:
"Resources"
"resources"
:
"Resources"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"View Detail"
,
"view-detail"
:
"View Detail"
,
"copy"
:
"Copy"
,
"copy"
:
"Copy"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Visível apenas para você"
,
"private"
:
"Visível apenas para você"
,
"protected"
:
"Visível para membros"
,
"protected"
:
"Visível para membros"
,
"public"
:
"Todos podem ver"
,
"public"
:
"Todos podem ver"
,
"disabled"
:
"Memos públicos estão desativados"
"disabled"
:
"Memos públicos estão desativados"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"fetching data..."
,
"fetching-data"
:
"fetching data..."
,
"fetch-more"
:
"Click here to fetch more"
"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"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"shortcut title"
,
"contains"
:
"Contains"
,
"create-shortcut"
:
"Criar Atalho"
,
"not-contains"
:
"Does not contain"
,
"edit-shortcut"
:
"Editar Atalho"
,
"is"
:
"Is"
,
"eligible-memo"
:
"eligible memo"
,
"is-not"
:
"Is Not"
,
"fill-previous"
:
"Please fill in previous filter value"
,
"before"
:
"Before"
,
"title-required"
:
"Title is required"
,
"after"
:
"After"
"value-required"
:
"Filter value is required"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"New Filter"
,
"not-tagged"
:
"No tags"
,
"type"
:
{
"linked"
:
"Has links"
"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"
:
{
"text-placeholder"
:
"Starts with ^ to use regex"
"tip-text"
:
"Input `#tag` to create"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Quickly filter"
"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"
},
},
"setting"
:
{
"storage-section"
:
{
"my-account"
:
"My Account"
,
"storage-services-list"
:
"Storage service list"
,
"preference"
:
"Preference"
,
"create-a-service"
:
"Create a service"
,
"member"
:
"Member"
,
"update-a-service"
:
"Update a service"
,
"member-list"
:
"Member list"
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"system"
:
"System"
,
"delete-storage"
:
"Delete Storage"
"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"
:
{
"member-section"
:
{
"memo_one"
:
"MEMO"
,
"create-a-member"
:
"Create a member"
"memo_many"
:
""
,
"tag_one"
:
"TAG"
,
"tag_many"
:
""
,
"day_one"
:
"DAY"
,
"day_many"
:
""
},
},
"message"
:
{
"system-section"
:
{
"no-memos"
:
"no memos 🌃"
,
"server-name"
:
"Server Name"
,
"memos-ready"
:
"all memos are ready 🎉"
,
"customize-server"
:
{
"restored-successfully"
:
"Restored successfully"
,
"title"
:
"Customize Server"
,
"memo-updated-datetime"
:
"Memo created datetime changed."
,
"default"
:
"Default is memos"
,
"invalid-created-datetime"
:
"Invalid created datetime."
,
"icon-url"
:
"Icon URL"
"change-memo-created-time"
:
"Change memo created time"
,
},
"memo-not-found"
:
"Memo not found."
,
"database-file-size"
:
"Database File Size"
,
"fill-all"
:
"Please fill in all fields."
,
"allow-user-signup"
:
"Allow user signup"
,
"password-not-match"
:
"Passwords do not match."
,
"disable-public-memos"
:
"Disable public memos"
,
"new-password-not-match"
:
"New passwords do not match."
,
"additional-style"
:
"Additional style"
,
"image-load-failed"
:
"Image load failed"
,
"additional-script"
:
"Additional script"
,
"fill-form"
:
"Please fill out this form"
,
"additional-style-placeholder"
:
"Additional CSS codes"
,
"login-failed"
:
"Login failed"
,
"additional-script-placeholder"
:
"Additional JavaScript codes"
"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"
:
{
"appearance-option"
:
{
"monday"
:
"Monday"
,
"system"
:
"Follow system"
,
"mon"
:
"Mon"
,
"light"
:
"Always light"
,
"tuesday"
:
"Tuesday"
,
"dark"
:
"Always dark"
"tue"
:
"Tue"
,
"wednesday"
:
"Wednesday"
,
"wed"
:
"Wed"
,
"thursday"
:
"Thursday"
,
"thu"
:
"Thu"
,
"friday"
:
"Friday"
,
"fri"
:
"Fri"
,
"saturday"
:
"Saturday"
,
"sat"
:
"Sat"
,
"sunday"
:
"Sunday"
,
"sun"
:
"Sun"
}
}
},
"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"
}
}
}
web/src/locales/ru.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Про Memos"
,
"about"
:
"Про Memos"
,
"email"
:
"Эл. почта"
,
"email"
:
"Эл. почта"
,
"password"
:
"Пароль"
,
"password"
:
"Пароль"
,
"repeat-password-short"
:
"Повторить"
,
"repeat-password-short"
:
"Повторить"
,
"repeat-password"
:
"Повторить пароль"
,
"repeat-password"
:
"Повторить пароль"
,
"new-password"
:
"Новый пароль"
,
"new-password"
:
"Новый пароль"
,
"repeat-new-password"
:
"Повторить новый пароль"
,
"repeat-new-password"
:
"Повторить новый пароль"
,
"username"
:
"Имя пользователя"
,
"username"
:
"Имя пользователя"
,
"nickname"
:
"Псевдоним"
,
"nickname"
:
"Псевдоним"
,
"save"
:
"Сохранить"
,
"save"
:
"Сохранить"
,
"close"
:
"Закрыть"
,
"close"
:
"Закрыть"
,
"cancel"
:
"Отменить"
,
"cancel"
:
"Отменить"
,
"create"
:
"Создать"
,
"create"
:
"Создать"
,
"change"
:
"Заменить"
,
"change"
:
"Заменить"
,
"confirm"
:
"Подтвердить"
,
"confirm"
:
"Подтвердить"
,
"reset"
:
"Стереть"
,
"reset"
:
"Стереть"
,
"language"
:
"Язык"
,
"language"
:
"Язык"
,
"version"
:
"Версия"
,
"version"
:
"Версия"
,
"pin"
:
"Закрепить"
,
"pin"
:
"Закрепить"
,
"unpin"
:
"Открепить"
,
"unpin"
:
"Открепить"
,
"edit"
:
"Редактировать"
,
"edit"
:
"Редактировать"
,
"restore"
:
"Восстановить"
,
"restore"
:
"Восстановить"
,
"delete"
:
"Удалить"
,
"delete"
:
"Удалить"
,
"null"
:
"Пусто"
,
"null"
:
"Пусто"
,
"share"
:
"Поделиться"
,
"share"
:
"Поделиться"
,
"archive"
:
"Архивировать"
,
"archive"
:
"Архивировать"
,
"basic"
:
"Базовые"
,
"basic"
:
"Базовые"
,
"admin"
:
"Администратор"
,
"admin"
:
"Администратор"
,
"explore"
:
"Больше"
,
"explore"
:
"Больше"
,
"sign-in"
:
"Войти"
,
"sign-in"
:
"Войти"
,
"sign-up"
:
"Зарегистрироваться"
,
"sign-up"
:
"Зарегистрироваться"
,
"sign-out"
:
"Выйти"
,
"sign-out"
:
"Выйти"
,
"back-to-home"
:
"Вернуться на главную"
,
"back-to-home"
:
"Вернуться на главную"
,
"type"
:
"Тип"
,
"type"
:
"Тип"
,
"shortcuts"
:
"Ярлыки"
,
"shortcuts"
:
"Ярлыки"
,
"title"
:
"Заголовок"
,
"title"
:
"Заголовок"
,
"filter"
:
"Фильтр"
,
"filter"
:
"Фильтр"
,
"tags"
:
"Теги"
,
"tags"
:
"Теги"
,
"yourself"
:
"Вы"
,
"yourself"
:
"Вы"
,
"archived-at"
:
"Архив"
,
"archived-at"
:
"Архив"
,
"changed"
:
"изменено"
,
"changed"
:
"изменено"
,
"update-on"
:
"Обновлено"
,
"update-on"
:
"Обновлено"
,
"fold"
:
"Свернуть"
,
"fold"
:
"Свернуть"
,
"expand"
:
"Развернуть"
,
"expand"
:
"Развернуть"
,
"image"
:
"Изображение"
,
"image"
:
"Изображение"
,
"link"
:
"Ссылка"
,
"link"
:
"Ссылка"
,
"vacuum"
:
"Сжать"
,
"vacuum"
:
"Сжать"
,
"select"
:
"Выбрать"
,
"select"
:
"Выбрать"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"Self-hosted платформа с открытым исходным кодом для заметок и управления записями с поддержкой социальных функций."
,
"slogan"
:
"Self-hosted платформа с открытым исходным кодом для заметок и управления записями с поддержкой социальных функций."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Зарегистрироваться как владелец"
,
"signup-as-host"
:
"Зарегистрироваться как владелец"
,
"host-tip"
:
"Вы регистрируете владельца сайта."
,
"host-tip"
:
"Вы регистрируете владельца сайта."
,
"not-host-tip"
:
"Если у вас нет аккаунта, обратитесь к владельцу сайта."
"not-host-tip"
:
"Если у вас нет аккаунта, обратитесь к владельцу сайта."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"По дням"
,
"daily-review"
:
"По дням"
,
"resources"
:
"Ресурсы"
,
"resources"
:
"Ресурсы"
,
"setting"
:
"Настройки"
,
"setting"
:
"Настройки"
,
"archived"
:
"Заархивировано"
"archived"
:
"Заархивировано"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ой, здесь ничего нет."
"oops-nothing"
:
"Ой, здесь ничего нет."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Посмотреть ваши статические ресурсы в Memos (изображения и пр.)"
,
"description"
:
"Посмотреть ваши статические ресурсы в Memos (изображения и пр.)"
,
"no-resources"
:
"Нет ресурсов."
,
"no-resources"
:
"Нет ресурсов."
,
"fetching-data"
:
"загрузка данных..."
,
"fetching-data"
:
"загрузка данных..."
,
"upload"
:
"Загрузить"
,
"upload"
:
"Загрузить"
,
"preview"
:
"Предпросмотр"
,
"preview"
:
"Предпросмотр"
,
"copy-link"
:
"Скопировать ссылку"
,
"copy-link"
:
"Скопировать ссылку"
,
"delete-resource"
:
"Удалить ресурс"
,
"delete-resource"
:
"Удалить ресурс"
,
"warning-text"
:
"Вы уверены, что хотите удалить этот ресурс? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗"
,
"warning-text"
:
"Вы уверены, что хотите удалить этот ресурс? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗"
,
"linked-amount"
:
"Количество записей"
,
"linked-amount"
:
"Количество записей"
,
"rename"
:
"Переименовать"
,
"rename"
:
"Переименовать"
,
"warning-text-unused"
:
"Вы уверены, что хотите удалить неиспользуемые ресурсы? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗"
,
"warning-text-unused"
:
"Вы уверены, что хотите удалить неиспользуемые ресурсы? ЭТО ДЕЙСТВИЕ НЕВОЗМОЖНО ОТМЕНИТЬ❗"
,
"no-unused-resources"
:
"Нет неиспользуемых ресурсов"
,
"no-unused-resources"
:
"Нет неиспользуемых ресурсов"
,
"name"
:
"Название"
,
"name"
:
"Название"
,
"clear"
:
"Clear"
"clear"
:
"Clear"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Заархивированные записи"
,
"archived-memos"
:
"Заархивированные записи"
,
"no-archived-memos"
:
"Нет заархивированных записей."
,
"no-archived-memos"
:
"Нет заархивированных записей."
,
"fetching-data"
:
"загрузка данных..."
"fetching-data"
:
"загрузка данных..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Редактирование..."
,
"editing"
:
"Редактирование..."
,
"cancel-edit"
:
"Отменить"
,
"cancel-edit"
:
"Отменить"
,
"save"
:
"Сохранить"
,
"save"
:
"Сохранить"
,
"placeholder"
:
"Ваши мысли..."
,
"placeholder"
:
"Ваши мысли..."
,
"only-image-supported"
:
"Поддерживаются только изображения."
,
"only-image-supported"
:
"Поддерживаются только изображения."
,
"cant-empty"
:
"Содержимое не может быть пустым"
,
"cant-empty"
:
"Содержимое не может быть пустым"
,
"local"
:
"На устройстве"
,
"local"
:
"На устройстве"
,
"resources"
:
"Ресурсы"
"resources"
:
"Ресурсы"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Подробно"
,
"view-detail"
:
"Подробно"
,
"copy"
:
"Копировать"
,
"copy"
:
"Копировать"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Видно только вам"
,
"private"
:
"Видно только вам"
,
"protected"
:
"Видно только пользователям"
,
"protected"
:
"Видно только пользователям"
,
"public"
:
"Видно всем"
,
"public"
:
"Видно всем"
,
"disabled"
:
"Public memos are disabled"
"disabled"
:
"Public memos are disabled"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"загрузка данных..."
,
"fetching-data"
:
"загрузка данных..."
,
"fetch-more"
:
"Загрузить больше"
"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"
:
"Видимость"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"название ярлыка"
,
"contains"
:
"Содержит"
,
"create-shortcut"
:
"Создать ярлык"
,
"not-contains"
:
"Не содержит"
,
"edit-shortcut"
:
"Редактировать ярлык"
,
"is"
:
"Только"
,
"eligible-memo"
:
"связанные записи"
,
"is-not"
:
"Кроме"
,
"fill-previous"
:
"Пожалуйста, заполните значение фильтра"
,
"before"
:
"До"
,
"title-required"
:
"Название обязательно"
,
"after"
:
"После"
"value-required"
:
"Значение фильтра обязательно"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Новый фильтр"
,
"not-tagged"
:
"Без тегов"
,
"type"
:
{
"linked"
:
"Содержит ссылки"
"tag"
:
"Тег"
,
"type"
:
"Тип"
,
"text"
:
"Текст"
,
"display-time"
:
"Время отображения"
,
"visibility"
:
"Видимость"
},
"operator"
:
{
"contains"
:
"Содержит"
,
"not-contains"
:
"Не содержит"
,
"is"
:
"Только"
,
"is-not"
:
"Кроме"
,
"before"
:
"До"
,
"after"
:
"После"
},
"value"
:
{
"not-tagged"
:
"Без тегов"
,
"linked"
:
"Содержит ссылки"
},
"text-placeholder"
:
"Начните с ^ чтобы использовать регулярные выражения"
},
},
"tag-list"
:
{
"text-placeholder"
:
"Начните с ^ чтобы использовать регулярные выражения"
"tip-text"
:
"Введите `#tag` для создания"
},
"tag-list"
:
{
"tip-text"
:
"Введите `#tag` для создания"
},
"search"
:
{
"quickly-filter"
:
"Быстрый фильтр"
},
"setting"
:
{
"my-account"
:
"Мой аккаунт"
,
"preference"
:
"Настройки"
,
"member"
:
"Пользователи"
,
"member-list"
:
"Список пользователей"
,
"system"
:
"Системные"
,
"account-section"
:
{
"title"
:
"Информация об аккаунте"
,
"update-information"
:
"Обновить информацию"
,
"change-password"
:
"Изменить пароль"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Быстрый фильтр"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Мой аккаунт"
,
"create-a-member"
:
"Создать пользователя"
"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"
:
{
"system-section"
:
{
"memo_one"
:
"ЗАПИСЬ"
,
"server-name"
:
"Имя сервера"
,
"tag_one"
:
"ТЕГ"
,
"customize-server"
:
{
"day_one"
:
"ДЕНЬ"
,
"title"
:
"Настроить сервер"
,
"memo_other"
:
"MEMOS"
,
"default"
:
"По умолчанию: memos"
,
"tag_other"
:
"TAGS"
,
"icon-url"
:
"URL иконки"
"day_other"
:
"DAYS"
},
"database-file-size"
:
"Размер файла базы данных"
,
"allow-user-signup"
:
"Разрешить регистрацию пользователей"
,
"additional-style"
:
"Настраиваемый стиль"
,
"additional-script"
:
"Настраиваемый скрипт"
,
"additional-style-placeholder"
:
"Настраиваемый код CSS"
,
"additional-script-placeholder"
:
"Настраиваемый код JavaScript"
,
"disable-public-memos"
:
"Disable public memos"
},
},
"message"
:
{
"appearance-option"
:
{
"no-memos"
:
"нет записей 🌃"
,
"system"
:
"Системная"
,
"memos-ready"
:
"больше записей нет 🎉"
,
"light"
:
"Светлая"
,
"restored-successfully"
:
"Успешно восстановлено."
,
"dark"
:
"Тёмная"
"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"
:
{
"storage"
:
"Storage"
,
"monday"
:
"Понедельник"
,
"sso"
:
"SSO"
,
"mon"
:
"Пон."
,
"storage-section"
:
{
"tuesday"
:
"Вторник"
,
"storage-services-list"
:
"Storage service list"
,
"tue"
:
"Вт."
,
"create-a-service"
:
"Create a service"
,
"wednesday"
:
"Среда"
,
"update-a-service"
:
"Update a service"
,
"wed"
:
"Ср."
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"thursday"
:
"Четверг"
,
"delete-storage"
:
"Delete Storage"
"thu"
:
"Чт."
,
"friday"
:
"Пятница"
,
"fri"
:
"Пт."
,
"saturday"
:
"Суббота"
,
"sat"
:
"Сб."
,
"sunday"
:
"Воскресенье"
,
"sun"
:
"Вс."
}
}
},
"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"
:
"Вс."
}
}
}
web/src/locales/sv.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Om"
,
"about"
:
"Om"
,
"email"
:
"E-post"
,
"email"
:
"E-post"
,
"password"
:
"Lösenord"
,
"password"
:
"Lösenord"
,
"repeat-password-short"
:
"Upprepa"
,
"repeat-password-short"
:
"Upprepa"
,
"repeat-password"
:
"Uprepa lösenordet"
,
"repeat-password"
:
"Uprepa lösenordet"
,
"new-password"
:
"Nytt lösenord"
,
"new-password"
:
"Nytt lösenord"
,
"repeat-new-password"
:
"Upprepa det nya lösenordet"
,
"repeat-new-password"
:
"Upprepa det nya lösenordet"
,
"username"
:
"Användarnamn"
,
"username"
:
"Användarnamn"
,
"nickname"
:
"Smeknamn"
,
"nickname"
:
"Smeknamn"
,
"save"
:
"Spara"
,
"save"
:
"Spara"
,
"close"
:
"Stäng"
,
"close"
:
"Stäng"
,
"cancel"
:
"Avbryt"
,
"cancel"
:
"Avbryt"
,
"create"
:
"Skapa"
,
"create"
:
"Skapa"
,
"change"
:
"Ändra"
,
"change"
:
"Ändra"
,
"confirm"
:
"Bekräfta"
,
"confirm"
:
"Bekräfta"
,
"reset"
:
"Återställ"
,
"reset"
:
"Återställ"
,
"language"
:
"Språk"
,
"language"
:
"Språk"
,
"version"
:
"Version"
,
"version"
:
"Version"
,
"pin"
:
"Fäst"
,
"pin"
:
"Fäst"
,
"unpin"
:
"Ta bort fäst"
,
"unpin"
:
"Ta bort fäst"
,
"edit"
:
"Redigera"
,
"edit"
:
"Redigera"
,
"restore"
:
"Återställ"
,
"restore"
:
"Återställ"
,
"delete"
:
"Radera"
,
"delete"
:
"Radera"
,
"null"
:
"Null"
,
"null"
:
"Null"
,
"share"
:
"Dela"
,
"share"
:
"Dela"
,
"archive"
:
"Arkivera"
,
"archive"
:
"Arkivera"
,
"basic"
:
"Grundläggande"
,
"basic"
:
"Grundläggande"
,
"admin"
:
"Admin"
,
"admin"
:
"Admin"
,
"explore"
:
"Utforska"
,
"explore"
:
"Utforska"
,
"sign-in"
:
"Logga in"
,
"sign-in"
:
"Logga in"
,
"sign-up"
:
"Bli medlem"
,
"sign-up"
:
"Bli medlem"
,
"sign-out"
:
"Logga ut"
,
"sign-out"
:
"Logga ut"
,
"back-to-home"
:
"Tillbaka hem"
,
"back-to-home"
:
"Tillbaka hem"
,
"type"
:
"Typ"
,
"type"
:
"Typ"
,
"shortcuts"
:
"Genvägar"
,
"shortcuts"
:
"Genvägar"
,
"title"
:
"Titel"
,
"title"
:
"Titel"
,
"filter"
:
"Filter"
,
"filter"
:
"Filter"
,
"tags"
:
"Taggar"
,
"tags"
:
"Taggar"
,
"yourself"
:
"Själv"
,
"yourself"
:
"Själv"
,
"archived-at"
:
"Arkiverad på"
,
"archived-at"
:
"Arkiverad på"
,
"changed"
:
"Ändrad"
,
"changed"
:
"Ändrad"
,
"update-on"
:
"Uppdatering på"
,
"update-on"
:
"Uppdatering på"
,
"fold"
:
"Vik ihop"
,
"fold"
:
"Vik ihop"
,
"expand"
:
"Expandera"
,
"expand"
:
"Expandera"
,
"image"
:
"Bild"
,
"image"
:
"Bild"
,
"link"
:
"Länk"
,
"link"
:
"Länk"
,
"vacuum"
:
"Vacuum"
,
"vacuum"
:
"Vacuum"
,
"select"
:
"Select"
,
"select"
:
"Select"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Databas"
"database"
:
"Databas"
},
},
"slogan"
:
"En öppen källkod, self-hosted antecknings hubb med kunskapshantering och socialisering"
,
"slogan"
:
"En öppen källkod, self-hosted antecknings hubb med kunskapshantering och socialisering"
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Registera dig som värd"
,
"signup-as-host"
:
"Registera dig som värd"
,
"host-tip"
:
"Du registerar dig som webbplatsvärd."
,
"host-tip"
:
"Du registerar dig som webbplatsvärd."
,
"not-host-tip"
:
"Om du inte har ett konto, kontakta webbplatsens värd."
"not-host-tip"
:
"Om du inte har ett konto, kontakta webbplatsens värd."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"Daglig återblick"
,
"daily-review"
:
"Daglig återblick"
,
"resources"
:
"Resurser"
,
"resources"
:
"Resurser"
,
"setting"
:
"Inställningar"
,
"setting"
:
"Inställningar"
,
"archived"
:
"Arkiverade"
"archived"
:
"Arkiverade"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Oj, det finns inget här."
"oops-nothing"
:
"Oj, det finns inget här."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Visa dina statiska resurser i anteckningarn. t.ex bilder."
,
"description"
:
"Visa dina statiska resurser i anteckningarn. t.ex bilder."
,
"no-resources"
:
"Inga resurser."
,
"no-resources"
:
"Inga resurser."
,
"fetching-data"
:
"hämtar data..."
,
"fetching-data"
:
"hämtar data..."
,
"upload"
:
"Ladda upp"
,
"upload"
:
"Ladda upp"
,
"preview"
:
"Förhandsvisa"
,
"preview"
:
"Förhandsvisa"
,
"copy-link"
:
"Kopiera länk"
,
"copy-link"
:
"Kopiera länk"
,
"delete-resource"
:
"Ta bort resurs"
,
"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❗"
,
"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"
,
"linked-amount"
:
"Länkat antecknings belopp"
,
"rename"
:
"Döp om"
,
"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❗"
,
"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"
,
"no-unused-resources"
:
"Inga oanvända resurser"
,
"name"
:
"Name"
,
"name"
:
"Name"
,
"clear"
:
"Rensa"
"clear"
:
"Rensa"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Arkiverade anteckningar"
,
"archived-memos"
:
"Arkiverade anteckningar"
,
"no-archived-memos"
:
"Inga arkiverade anteckningar."
,
"no-archived-memos"
:
"Inga arkiverade anteckningar."
,
"fetching-data"
:
"hämtar data..."
"fetching-data"
:
"hämtar data..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Redigerar..."
,
"editing"
:
"Redigerar..."
,
"cancel-edit"
:
"Avbryt redigering"
,
"cancel-edit"
:
"Avbryt redigering"
,
"save"
:
"Spara"
,
"save"
:
"Spara"
,
"placeholder"
:
"Några tankar..."
,
"placeholder"
:
"Några tankar..."
,
"only-image-supported"
:
"Endast bildfiler stöds."
,
"only-image-supported"
:
"Endast bildfiler stöds."
,
"cant-empty"
:
"Innehållet får inte vara tomt"
,
"cant-empty"
:
"Innehållet får inte vara tomt"
,
"local"
:
"Lokal"
,
"local"
:
"Lokal"
,
"resources"
:
"Resurser"
"resources"
:
"Resurser"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Visa detaljer"
,
"view-detail"
:
"Visa detaljer"
,
"copy"
:
"Kopiera"
,
"copy"
:
"Kopiera"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Endast synlig för dig"
,
"private"
:
"Endast synlig för dig"
,
"protected"
:
"Synlig för medlemmar"
,
"protected"
:
"Synlig för medlemmar"
,
"public"
:
"Synlig för alla"
,
"public"
:
"Synlig för alla"
,
"disabled"
:
"Offentliga anteckningar är inaktiverade"
"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"
},
},
"memo-list"
:
{
"operator"
:
{
"fetching-data"
:
"hämtar data..."
,
"contains"
:
"Innehåller"
,
"fetch-more"
:
"Klicka här för att hämta mer"
"not-contains"
:
"Innehåller inte"
,
"is"
:
"Är"
,
"is-not"
:
"Är inte"
,
"before"
:
"Innan"
,
"after"
:
"Efter"
},
},
"shortcut-list"
:
{
"value"
:
{
"shortcut-title"
:
"Genvägs titel"
,
"not-tagged"
:
"Inga taggar"
,
"create-shortcut"
:
"Skapa genväg"
,
"linked"
:
"Har länkar"
"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"
:
{
"text-placeholder"
:
"Börjar med ^ för att använda regex"
"new-filter"
:
"Nytt filter"
,
},
"type"
:
{
"tag-list"
:
{
"tag"
:
"Tag"
,
"tip-text"
:
"Ange `#tag ` för att skapa"
"type"
:
"Type"
,
},
"text"
:
"Text"
,
"search"
:
{
"display-time"
:
"Display Time"
,
"quickly-filter"
:
"Filtrera snabbt"
"visibility"
:
"Visibility"
},
},
"setting"
:
{
"operator"
:
{
"my-account"
:
"Mitt konto"
,
"contains"
:
"Innehåller"
,
"preference"
:
"Preferenser"
,
"not-contains"
:
"Innehåller inte"
,
"member"
:
"Medlem"
,
"is"
:
"Är"
,
"member-list"
:
"Medlemslista"
,
"is-not"
:
"Är inte"
,
"system"
:
"System"
,
"before"
:
"Innan"
,
"account-section"
:
{
"after"
:
"Efter"
"title"
:
"Kontoinformation"
,
},
"update-information"
:
"Uppdatera informationen"
,
"value"
:
{
"change-password"
:
"Ändra lösenord"
"not-tagged"
:
"Inga taggar"
,
"linked"
:
"Har länkar"
},
"text-placeholder"
:
"Börjar med ^ för att använda regex"
},
},
"tag-list"
:
{
"preference-section"
:
{
"tip-text"
:
"Ange `#tag ` för att skapa"
"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"
},
},
"
search
"
:
{
"
member-section
"
:
{
"quickly-filter"
:
"Filtrera snabbt
"
"create-a-member"
:
"Skapa en medlem
"
},
},
"setting"
:
{
"system-section"
:
{
"my-account"
:
"Mitt konto"
,
"server-name"
:
"Server Name"
,
"preference"
:
"Preferenser"
,
"customize-server"
:
{
"member"
:
"Medlem"
,
"title"
:
"Customize Server"
,
"member-list"
:
"Medlemslista"
,
"default"
:
"Default is memos"
,
"system"
:
"System"
,
"icon-url"
:
"Icon URL"
"account-section"
:
{
},
"title"
:
"Kontoinformation"
,
"database-file-size"
:
"Databas filstorlek"
,
"update-information"
:
"Uppdatera informationen"
,
"allow-user-signup"
:
"Tillåt användarregistrering"
,
"change-password"
:
"Ändra lösenord"
"additional-style"
:
"Ytterligare stil"
,
},
"additional-script"
:
"Ytterligare skript"
,
"preference-section"
:
{
"additional-style-placeholder"
:
"Ytterligare CSS kod"
,
"theme"
:
"Tema"
,
"additional-script-placeholder"
:
"Ytterligare JavaScript kod"
,
"default-memo-visibility"
:
"Standard synlighet för anteckningar"
,
"disable-public-memos"
:
"Inaktivera offentliga 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"
:
{
"appearance-option"
:
{
"memo_one"
:
"ANTECKNING"
,
"system"
:
"Follow system"
,
"memo_other"
:
"ANTECKNINGAR"
,
"light"
:
"Alltid ljus"
,
"tag_one"
:
"TAGG"
,
"dark"
:
"Alltid mörk"
"tag_other"
:
"TAGGAR"
,
"day_one"
:
"DAG"
,
"day_other"
:
"DAGAR"
},
},
"message"
:
{
"storage-section"
:
{
"no-memos"
:
"inga anteckningar 🌃"
,
"create-a-service"
:
"Skapa en tjänst"
,
"memos-ready"
:
"alla anteckningar är redo 🎉"
,
"storage-services-list"
:
"Lista över lagringstjänster"
,
"restored-successfully"
:
"Återställdes framgångsrikt"
,
"update-a-service"
:
"Uppdatera en tjänst"
,
"memo-updated-datetime"
:
"Anteckning skapad datum och tid ändrad"
,
"warning-text"
:
"Är du säker på att ta bort den här lagringstjänsten? DEN HÄR ÅTGÄRDEN ÄR IRREVERSIBEL❗"
,
"invalid-created-datetime"
:
"Ogiltig skapad datumtid."
,
"delete-storage"
:
"Ta bort lagring"
"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"
:
{
"storage"
:
"Lagring"
,
"monday"
:
"Måndag"
,
"sso"
:
"SSO"
"mon"
:
"Mån"
,
},
"tuesday"
:
"Tisdag"
,
"amount-text"
:
{
"tue"
:
"Tis"
,
"memo_one"
:
"ANTECKNING"
,
"wednesday"
:
"Onsdag"
,
"memo_other"
:
"ANTECKNINGAR"
,
"wed"
:
"Ons"
,
"tag_one"
:
"TAGG"
,
"thursday"
:
"Torsdag"
,
"tag_other"
:
"TAGGAR"
,
"thu"
:
"Tors"
,
"day_one"
:
"DAG"
,
"friday"
:
"Fredag"
,
"day_other"
:
"DAGAR"
"fri"
:
"Fre"
,
},
"saturday"
:
"Lördag"
,
"message"
:
{
"sat"
:
"Lör"
,
"no-memos"
:
"inga anteckningar 🌃"
,
"sunday"
:
"Söndag"
,
"memos-ready"
:
"alla anteckningar är redo 🎉"
,
"sun"
:
"Sön"
"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"
}
}
}
web/src/locales/tr.json
View file @
7f30e2e6
...
@@ -179,7 +179,7 @@
...
@@ -179,7 +179,7 @@
"additional-script-placeholder"
:
"Ek JavaScript"
,
"additional-script-placeholder"
:
"Ek JavaScript"
,
"disable-public-memos"
:
"Halka açık notları devre dışı bırak"
"disable-public-memos"
:
"Halka açık notları devre dışı bırak"
},
},
"apperance-option"
:
{
"appe
a
rance-option"
:
{
"system"
:
"Otomatik"
,
"system"
:
"Otomatik"
,
"light"
:
"Her zaman açık renkli"
,
"light"
:
"Her zaman açık renkli"
,
"dark"
:
"Her zaman koyu renkli"
"dark"
:
"Her zaman koyu renkli"
...
...
web/src/locales/uk.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Про Memos"
,
"about"
:
"Про Memos"
,
"email"
:
"Емейл"
,
"email"
:
"Емейл"
,
"password"
:
"Пароль"
,
"password"
:
"Пароль"
,
"repeat-password-short"
:
"Повторіть"
,
"repeat-password-short"
:
"Повторіть"
,
"repeat-password"
:
"Повторіть пароль"
,
"repeat-password"
:
"Повторіть пароль"
,
"new-password"
:
"Новий парль"
,
"new-password"
:
"Новий парль"
,
"repeat-new-password"
:
"Повторіть новий пароль"
,
"repeat-new-password"
:
"Повторіть новий пароль"
,
"username"
:
"Ім'я користувача"
,
"username"
:
"Ім'я користувача"
,
"nickname"
:
"Нікнейм"
,
"nickname"
:
"Нікнейм"
,
"save"
:
"Зберегти"
,
"save"
:
"Зберегти"
,
"close"
:
"Закрити"
,
"close"
:
"Закрити"
,
"cancel"
:
"Скасувати"
,
"cancel"
:
"Скасувати"
,
"create"
:
"Створити"
,
"create"
:
"Створити"
,
"change"
:
"Змінити"
,
"change"
:
"Змінити"
,
"confirm"
:
"Підтвердити"
,
"confirm"
:
"Підтвердити"
,
"reset"
:
"Стерти"
,
"reset"
:
"Стерти"
,
"language"
:
"Мова"
,
"language"
:
"Мова"
,
"version"
:
"Версія"
,
"version"
:
"Версія"
,
"pin"
:
"Закріпити"
,
"pin"
:
"Закріпити"
,
"unpin"
:
"Відкріпити"
,
"unpin"
:
"Відкріпити"
,
"edit"
:
"Редагувати"
,
"edit"
:
"Редагувати"
,
"restore"
:
"Відновити"
,
"restore"
:
"Відновити"
,
"delete"
:
"Видалити"
,
"delete"
:
"Видалити"
,
"null"
:
"Пусто"
,
"null"
:
"Пусто"
,
"share"
:
"Поділитися"
,
"share"
:
"Поділитися"
,
"archive"
:
"Архівувати"
,
"archive"
:
"Архівувати"
,
"basic"
:
"Базові"
,
"basic"
:
"Базові"
,
"admin"
:
"Адміністратор"
,
"admin"
:
"Адміністратор"
,
"explore"
:
"Більше"
,
"explore"
:
"Більше"
,
"sign-in"
:
"Увійти"
,
"sign-in"
:
"Увійти"
,
"sign-up"
:
"Зареєструватися"
,
"sign-up"
:
"Зареєструватися"
,
"sign-out"
:
"Вийти"
,
"sign-out"
:
"Вийти"
,
"back-to-home"
:
"Повернутися на головну"
,
"back-to-home"
:
"Повернутися на головну"
,
"type"
:
"Типу"
,
"type"
:
"Типу"
,
"shortcuts"
:
"Ярлики"
,
"shortcuts"
:
"Ярлики"
,
"title"
:
"Заголовок"
,
"title"
:
"Заголовок"
,
"filter"
:
"Фільтр"
,
"filter"
:
"Фільтр"
,
"tags"
:
"Теги"
,
"tags"
:
"Теги"
,
"yourself"
:
"Ви"
,
"yourself"
:
"Ви"
,
"archived-at"
:
"Заархівовано"
,
"archived-at"
:
"Заархівовано"
,
"changed"
:
"змінено"
,
"changed"
:
"змінено"
,
"update-on"
:
"Оновлено"
,
"update-on"
:
"Оновлено"
,
"fold"
:
"Згорнути"
,
"fold"
:
"Згорнути"
,
"expand"
:
"Розгорнути"
,
"expand"
:
"Розгорнути"
,
"image"
:
"Світлина"
,
"image"
:
"Світлина"
,
"link"
:
"Посилання"
,
"link"
:
"Посилання"
,
"vacuum"
:
"Стиснути"
,
"vacuum"
:
"Стиснути"
,
"select"
:
"Вибрати"
,
"select"
:
"Вибрати"
,
"database"
:
"Database"
,
"database"
:
"Database"
,
"avatar"
:
"Avatar"
"avatar"
:
"Avatar"
},
},
"slogan"
:
"Self-hosted платформа для записок та соціалізації з відкритим кодом An open-source."
,
"slogan"
:
"Self-hosted платформа для записок та соціалізації з відкритим кодом An open-source."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Зареєструватися як власник"
,
"signup-as-host"
:
"Зареєструватися як власник"
,
"host-tip"
:
"Ви реєструєте власника сайту."
,
"host-tip"
:
"Ви реєструєте власника сайту."
,
"not-host-tip"
:
"Якщо ви не маєте акаунту, зверніться до власника сайту."
"not-host-tip"
:
"Якщо ви не маєте акаунту, зверніться до власника сайту."
},
},
"sidebar"
:
{
"sidebar"
:
{
"daily-review"
:
"По днях"
,
"daily-review"
:
"По днях"
,
"resources"
:
"Ресурси"
,
"resources"
:
"Ресурси"
,
"setting"
:
"Налаштування"
,
"setting"
:
"Налаштування"
,
"archived"
:
"Заархівовані"
"archived"
:
"Заархівовані"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ой, тут нічого немає."
"oops-nothing"
:
"Ой, тут нічого немає."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Переглянути ваші статичні ресурси в Memos (світлини)"
,
"description"
:
"Переглянути ваші статичні ресурси в Memos (світлини)"
,
"no-resources"
:
"Немає ресурсів."
,
"no-resources"
:
"Немає ресурсів."
,
"fetching-data"
:
"завантаження даних..."
,
"fetching-data"
:
"завантаження даних..."
,
"upload"
:
"Вивантажити"
,
"upload"
:
"Вивантажити"
,
"preview"
:
"Попередній перегляд"
,
"preview"
:
"Попередній перегляд"
,
"copy-link"
:
"Копіювати посилання"
,
"copy-link"
:
"Копіювати посилання"
,
"delete-resource"
:
"Видалити ресурс"
,
"delete-resource"
:
"Видалити ресурс"
,
"warning-text"
:
"Ви впевнені що хочете видалити цей ресурс? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗"
,
"warning-text"
:
"Ви впевнені що хочете видалити цей ресурс? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗"
,
"linked-amount"
:
"Кількість нотаток"
,
"linked-amount"
:
"Кількість нотаток"
,
"rename"
:
"Переіменувати"
,
"rename"
:
"Переіменувати"
,
"warning-text-unused"
:
"Ви впенвені що хочете видалити невикористовувані ресурси? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗"
,
"warning-text-unused"
:
"Ви впенвені що хочете видалити невикористовувані ресурси? ЦЮ ДІЮ НЕМОЖЛИВО СКАСУВАТИ❗"
,
"no-unused-resources"
:
"Немає невикористаних ресурсів"
,
"no-unused-resources"
:
"Немає невикористаних ресурсів"
,
"name"
:
"Назва"
,
"name"
:
"Назва"
,
"clear"
:
"Clear"
"clear"
:
"Clear"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Заархівовані нотатки"
,
"archived-memos"
:
"Заархівовані нотатки"
,
"no-archived-memos"
:
"Немає заархівованих нотаток."
,
"no-archived-memos"
:
"Немає заархівованих нотаток."
,
"fetching-data"
:
"завантаження даних..."
"fetching-data"
:
"завантаження даних..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Редагування..."
,
"editing"
:
"Редагування..."
,
"cancel-edit"
:
"Скасувати"
,
"cancel-edit"
:
"Скасувати"
,
"save"
:
"Зберегти"
,
"save"
:
"Зберегти"
,
"placeholder"
:
"Ваші думки..."
,
"placeholder"
:
"Ваші думки..."
,
"only-image-supported"
:
"Тільки файли-світлини підтримуються."
,
"only-image-supported"
:
"Тільки файли-світлини підтримуються."
,
"cant-empty"
:
"Текст не може бути порожнім"
,
"cant-empty"
:
"Текст не може бути порожнім"
,
"local"
:
"З комп'ютера"
,
"local"
:
"З комп'ютера"
,
"resources"
:
"Завантажені"
"resources"
:
"Завантажені"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Деталі"
,
"view-detail"
:
"Деталі"
,
"copy"
:
"Копіювати"
,
"copy"
:
"Копіювати"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Видимий тільки вам"
,
"private"
:
"Видимий тільки вам"
,
"protected"
:
"Видимий тільки користувачам"
,
"protected"
:
"Видимий тільки користувачам"
,
"public"
:
"Видимий усім"
,
"public"
:
"Видимий усім"
,
"disabled"
:
"Public memos are disabled"
"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"
:
"Видимість"
},
},
"memo-list"
:
{
"operator"
:
{
"fetching-data"
:
"завантаження даних..."
,
"contains"
:
"Містить"
,
"fetch-more"
:
"Завантажити більше"
"not-contains"
:
"Не містить"
,
"is"
:
"Є"
,
"is-not"
:
"Не є"
,
"before"
:
"До"
,
"after"
:
"Після"
},
},
"shortcut-list"
:
{
"value"
:
{
"shortcut-title"
:
"назва ярлика"
,
"not-tagged"
:
"Немає тегів"
,
"create-shortcut"
:
"Створити ярлик"
,
"linked"
:
"Має посилання"
"edit-shortcut"
:
"Редагувати ярлик"
,
"eligible-memo"
:
"пов'язані нотатки"
,
"fill-previous"
:
"Будь ласка заповніть значення фільтра"
,
"title-required"
:
"Назва обов'язкова"
,
"value-required"
:
"Значення фільтра обов'язкове"
},
},
"filter"
:
{
"text-placeholder"
:
"Почніть з ^ щоб використовувати регулярні вирази"
"new-filter"
:
"Новий фільтр"
,
},
"type"
:
{
"tag-list"
:
{
"tag"
:
"Тег"
,
"tip-text"
:
"Введіть `#tag` щоб створити"
"type"
:
"Тип"
,
},
"text"
:
"Текст"
,
"search"
:
{
"display-time"
:
"Час відображення"
,
"quickly-filter"
:
"Швидкий фільтр"
"visibility"
:
"Видимість"
},
},
"setting"
:
{
"operator"
:
{
"my-account"
:
"Мій аккаунт"
,
"contains"
:
"Містить"
,
"preference"
:
"Налаштування"
,
"not-contains"
:
"Не містить"
,
"member"
:
"Користувачі"
,
"is"
:
"Є"
,
"member-list"
:
"Список користувачів"
,
"is-not"
:
"Не є"
,
"system"
:
"Системні"
,
"before"
:
"До"
,
"account-section"
:
{
"after"
:
"Після"
"title"
:
"Інформація про акаунт"
,
},
"update-information"
:
"Оновити інформацію"
,
"value"
:
{
"change-password"
:
"Змінити пароль"
"not-tagged"
:
"Немає тегів"
,
"linked"
:
"Має посилання"
},
"text-placeholder"
:
"Почніть з ^ щоб використовувати регулярні вирази"
},
},
"tag-list"
:
{
"preference-section"
:
{
"tip-text"
:
"Введіть `#tag` щоб створити"
"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"
},
},
"
search
"
:
{
"
member-section
"
:
{
"quickly-filter"
:
"Швидкий фільтр
"
"create-a-member"
:
"Створити користувача
"
},
},
"setting"
:
{
"system-section"
:
{
"my-account"
:
"Мій аккаунт"
,
"server-name"
:
"Назва додатка"
,
"preference"
:
"Налаштування"
,
"customize-server"
:
{
"member"
:
"Користувачі"
,
"title"
:
"Налаштувати додаток"
,
"member-list"
:
"Список користувачів"
,
"default"
:
"За замовчуванням: memos"
,
"system"
:
"Системні"
,
"icon-url"
:
"URL іконки"
"account-section"
:
{
},
"title"
:
"Інформація про акаунт"
,
"database-file-size"
:
"Розмір файлу бази даних"
,
"update-information"
:
"Оновити інформацію"
,
"allow-user-signup"
:
"Дозволити реєстрацію користувачів"
,
"change-password"
:
"Змінити пароль"
"additional-style"
:
"Кастомні стилі"
,
},
"additional-script"
:
"Кастомні скрипти"
,
"preference-section"
:
{
"additional-style-placeholder"
:
"Додатковий CSS"
,
"theme"
:
"Тема"
,
"additional-script-placeholder"
:
"Додатковий JavaScript"
,
"default-memo-visibility"
:
"Стандартна видимість нотаток"
,
"disable-public-memos"
:
"Disable public memos"
"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"
:
{
"appearance-option"
:
{
"memo_one"
:
"НОТАТКА"
,
"system"
:
"Автоматично"
,
"tag_one"
:
"ТЕГ"
,
"light"
:
"Завжди світла"
,
"day_one"
:
"ДЕНЬ"
,
"dark"
:
"Завжди темна"
"day_other"
:
"DAYS"
,
"memo_other"
:
"MEMOS"
,
"tag_other"
:
"TAGS"
},
},
"message"
:
{
"storage"
:
"Storage"
,
"no-memos"
:
"немає нотаток 🌃"
,
"storage-section"
:
{
"memos-ready"
:
"більше нотаток немає 🎉"
,
"update-a-service"
:
"Update a service"
,
"restored-successfully"
:
"Відновлення успішне."
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"memo-updated-datetime"
:
"Час створення змінено."
,
"delete-storage"
:
"Delete Storage"
,
"invalid-created-datetime"
:
"Невірний час створення."
,
"storage-services-list"
:
"Storage service list"
,
"change-memo-created-time"
:
"Змінити час створення нотатки"
,
"create-a-service"
:
"Create a service"
"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"
:
{
"sso"
:
"SSO"
"monday"
:
"Понеділок"
,
},
"mon"
:
"Пон."
,
"amount-text"
:
{
"tuesday"
:
"Вівторок"
,
"memo_one"
:
"НОТАТКА"
,
"tue"
:
"Вів."
,
"tag_one"
:
"ТЕГ"
,
"wednesday"
:
"Середа"
,
"day_one"
:
"ДЕНЬ"
,
"wed"
:
"Сер."
,
"day_other"
:
"DAYS"
,
"thursday"
:
"Четвер"
,
"memo_other"
:
"MEMOS"
,
"thu"
:
"Чет."
,
"tag_other"
:
"TAGS"
"friday"
:
"П'ятниця"
,
},
"fri"
:
"П'ят."
,
"message"
:
{
"saturday"
:
"Субота"
,
"no-memos"
:
"немає нотаток 🌃"
,
"sat"
:
"Суб."
,
"memos-ready"
:
"більше нотаток немає 🎉"
,
"sunday"
:
"Неділя"
,
"restored-successfully"
:
"Відновлення успішне."
,
"sun"
:
"Нед."
"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"
:
"Нед."
}
}
}
web/src/locales/vi.json
View file @
7f30e2e6
{
{
"common"
:
{
"common"
:
{
"about"
:
"Thông tin"
,
"about"
:
"Thông tin"
,
"email"
:
"Email"
,
"email"
:
"Email"
,
"password"
:
"Mật khẩu"
,
"password"
:
"Mật khẩu"
,
"repeat-password-short"
:
"Nhập lại"
,
"repeat-password-short"
:
"Nhập lại"
,
"repeat-password"
:
"Nhập lại mật khẩu"
,
"repeat-password"
:
"Nhập lại mật khẩu"
,
"new-password"
:
"Mật khẩu mới"
,
"new-password"
:
"Mật khẩu mới"
,
"repeat-new-password"
:
"Nhập lại 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"
,
"username"
:
"Tên đăng nhập"
,
"nickname"
:
"Biệt danh"
,
"nickname"
:
"Biệt danh"
,
"save"
:
"Lưu"
,
"save"
:
"Lưu"
,
"close"
:
"Đóng"
,
"close"
:
"Đóng"
,
"cancel"
:
"Hủy"
,
"cancel"
:
"Hủy"
,
"create"
:
"Tạo mới"
,
"create"
:
"Tạo mới"
,
"change"
:
"Thay đổi"
,
"change"
:
"Thay đổi"
,
"confirm"
:
"Xác nhận"
,
"confirm"
:
"Xác nhận"
,
"reset"
:
"Khôi phục"
,
"reset"
:
"Khôi phục"
,
"language"
:
"Ngôn ngữ"
,
"language"
:
"Ngôn ngữ"
,
"version"
:
"Phiên bản"
,
"version"
:
"Phiên bản"
,
"pin"
:
"Ghim"
,
"pin"
:
"Ghim"
,
"unpin"
:
"Bỏ ghim"
,
"unpin"
:
"Bỏ ghim"
,
"edit"
:
"Chỉnh sửa"
,
"edit"
:
"Chỉnh sửa"
,
"restore"
:
"Khôi phục"
,
"restore"
:
"Khôi phục"
,
"delete"
:
"Xóa"
,
"delete"
:
"Xóa"
,
"null"
:
"Trống rỗng"
,
"null"
:
"Trống rỗng"
,
"share"
:
"Chia sẻ"
,
"share"
:
"Chia sẻ"
,
"archive"
:
"Lưu trữ"
,
"archive"
:
"Lưu trữ"
,
"basic"
:
"Cơ bản"
,
"basic"
:
"Cơ bản"
,
"admin"
:
"Quản trị"
,
"admin"
:
"Quản trị"
,
"explore"
:
"Khám phá"
,
"explore"
:
"Khám phá"
,
"sign-in"
:
"Đăng nhập"
,
"sign-in"
:
"Đăng nhập"
,
"sign-up"
:
"Đăng ký"
,
"sign-up"
:
"Đăng ký"
,
"sign-out"
:
"Đăng xuất"
,
"sign-out"
:
"Đăng xuất"
,
"back-to-home"
:
"Về trang chủ"
,
"back-to-home"
:
"Về trang chủ"
,
"type"
:
"Kiểu"
,
"type"
:
"Kiểu"
,
"shortcuts"
:
"Lối tắt"
,
"shortcuts"
:
"Lối tắt"
,
"title"
:
"Tiêu đề"
,
"title"
:
"Tiêu đề"
,
"filter"
:
"Bộ lọc"
,
"filter"
:
"Bộ lọc"
,
"tags"
:
"Thẻ"
,
"tags"
:
"Thẻ"
,
"yourself"
:
"Chính bạn"
,
"yourself"
:
"Chính bạn"
,
"archived-at"
:
"Lưu trữ lúc"
,
"archived-at"
:
"Lưu trữ lúc"
,
"changed"
:
"đã thay đổi"
,
"changed"
:
"đã thay đổi"
,
"update-on"
:
"Cập nhật lúc"
,
"update-on"
:
"Cập nhật lúc"
,
"fold"
:
"Cuộn"
,
"fold"
:
"Cuộn"
,
"expand"
:
"Mở rộng"
,
"expand"
:
"Mở rộng"
,
"image"
:
"Hình ảnh"
,
"image"
:
"Hình ảnh"
,
"link"
:
"Liên kết"
,
"link"
:
"Liên kết"
,
"vacuum"
:
"Dọn dẹp"
,
"vacuum"
:
"Dọn dẹp"
,
"select"
:
"Chọn"
,
"select"
:
"Chọn"
,
"avatar"
:
"Avatar"
,
"avatar"
:
"Avatar"
,
"database"
:
"Database"
"database"
:
"Database"
},
},
"slogan"
:
"Mã nguồn mở ghi chú cho phép quản lý tri thức và chia sẻ cộng đồng."
,
"slogan"
:
"Mã nguồn mở ghi chú cho phép quản lý tri thức và chia sẻ cộng đồng."
,
"auth"
:
{
"auth"
:
{
"signup-as-host"
:
"Đăng ký như chủ nhân"
,
"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."
,
"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."
"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"
:
{
"sidebar"
:
{
"daily-review"
:
"Hàng Ngày"
,
"daily-review"
:
"Hàng Ngày"
,
"resources"
:
"Tài Nguyên"
,
"resources"
:
"Tài Nguyên"
,
"setting"
:
"Cài Đặt"
,
"setting"
:
"Cài Đặt"
,
"archived"
:
"Lưu Trữ"
"archived"
:
"Lưu Trữ"
},
},
"daily-review"
:
{
"daily-review"
:
{
"oops-nothing"
:
"Ồ, chẳng có gì ở đây cả."
"oops-nothing"
:
"Ồ, chẳng có gì ở đây cả."
},
},
"resources"
:
{
"resources"
:
{
"description"
:
"Xem toàn bộ tài nguyên của trang web. Ví dụ như các hình ảnh."
,
"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."
,
"no-resources"
:
"Không có tài nguyên."
,
"fetching-data"
:
"đang tải dữ liệu..."
,
"fetching-data"
:
"đang tải dữ liệu..."
,
"upload"
:
"Tải lên"
,
"upload"
:
"Tải lên"
,
"preview"
:
"Xem trước"
,
"preview"
:
"Xem trước"
,
"copy-link"
:
"Sao chép"
,
"copy-link"
:
"Sao chép"
,
"delete-resource"
:
"Xóa tài nguyên"
,
"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❗"
,
"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"
,
"linked-amount"
:
"Số ghi chú đã liên kết"
,
"rename"
:
"Đổi tên"
,
"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❗"
,
"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"
,
"no-unused-resources"
:
"Không có tài nguyên không sử dụng"
,
"clear"
:
"Clear"
,
"clear"
:
"Clear"
,
"name"
:
"Name"
"name"
:
"Name"
},
},
"archived"
:
{
"archived"
:
{
"archived-memos"
:
"Ghi chú đã lưu trữ"
,
"archived-memos"
:
"Ghi chú đã lưu trữ"
,
"no-archived-memos"
:
"Không có ghi chú nào cả."
,
"no-archived-memos"
:
"Không có ghi chú nào cả."
,
"fetching-data"
:
"đang tải dữ liệu..."
"fetching-data"
:
"đang tải dữ liệu..."
},
},
"editor"
:
{
"editor"
:
{
"editing"
:
"Đang chỉnh sửa..."
,
"editing"
:
"Đang chỉnh sửa..."
,
"cancel-edit"
:
"Thoát chỉnh sửa"
,
"cancel-edit"
:
"Thoát chỉnh sửa"
,
"save"
:
"Lưu"
,
"save"
:
"Lưu"
,
"placeholder"
:
"Bất cứ gì bạn đang nghĩ..."
,
"placeholder"
:
"Bất cứ gì bạn đang nghĩ..."
,
"only-image-supported"
:
"Chỉ hỗ trợ hình ảnh."
,
"only-image-supported"
:
"Chỉ hỗ trợ hình ảnh."
,
"cant-empty"
:
"Nội dung không thể trống"
,
"cant-empty"
:
"Nội dung không thể trống"
,
"local"
:
"Tải lên"
,
"local"
:
"Tải lên"
,
"resources"
:
"Tài nguyên"
"resources"
:
"Tài nguyên"
},
},
"memo"
:
{
"memo"
:
{
"view-detail"
:
"Xem Chi Tiết"
,
"view-detail"
:
"Xem Chi Tiết"
,
"copy"
:
"Sao Chép"
,
"copy"
:
"Sao Chép"
,
"visibility"
:
{
"visibility"
:
{
"private"
:
"Riêng tư"
,
"private"
:
"Riêng tư"
,
"protected"
:
"Bảo vệ"
,
"protected"
:
"Bảo vệ"
,
"public"
:
"Công khai"
,
"public"
:
"Công khai"
,
"disabled"
:
"Public memos are disabled"
"disabled"
:
"Public memos are disabled"
}
}
},
},
"memo-list"
:
{
"memo-list"
:
{
"fetching-data"
:
"đang tải dữ liệu..."
,
"fetching-data"
:
"đang tải dữ liệu..."
,
"fetch-more"
:
"Nhấp vào đây để tìm nạp thêm"
"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ị"
},
},
"shortcut-list"
:
{
"operator"
:
{
"shortcut-title"
:
"Tên lối tắt"
,
"contains"
:
"Chứa"
,
"create-shortcut"
:
"Tạo lối tắt"
,
"not-contains"
:
"Không Chứa"
,
"edit-shortcut"
:
"Chỉnh sửa lối tắt"
,
"is"
:
"Là"
,
"eligible-memo"
:
"ghi chú đạt chuẩn"
,
"is-not"
:
"Không Phải"
,
"fill-previous"
:
"Vui lòng nhập vào giá trị của bộ lọc trước đó"
,
"before"
:
"Trước"
,
"title-required"
:
"Tiêu đề là bắt buộc"
,
"after"
:
"Sau"
"value-required"
:
"Giá trị bộ lọc là bắt buộc"
},
},
"filter"
:
{
"value"
:
{
"new-filter"
:
"Bộ Lọc Mới"
,
"not-tagged"
:
"Không có thẻ"
,
"type"
:
{
"linked"
:
"Có liên kết"
"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"
:
{
"text-placeholder"
:
"Starts with ^ to use regex"
"tip-text"
:
"Nhập `#tag` để tạo mới"
},
"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"
},
},
"search"
:
{
"preference-section"
:
{
"quickly-filter"
:
"Lọc nhanh"
"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"
},
},
"setting"
:
{
"member-section"
:
{
"my-account"
:
"Tài Khoản"
,
"create-a-member"
:
"Thêm thành viê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"
:
{
"system-section"
:
{
"memo_other"
:
"GHI CHÚ"
,
"server-name"
:
"Tên máy chủ"
,
"tag_other"
:
"THẺ"
,
"customize-server"
:
{
"day_other"
:
"NGÀY"
,
"title"
:
"Tùy biến máy chủ"
,
"memo_one"
:
"MEMO"
,
"default"
:
"Mặc định là memos"
,
"tag_one"
:
"TAG"
,
"icon-url"
:
"URL biểu tượng"
"day_one"
:
"DAY"
},
"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"
},
},
"message"
:
{
"storage"
:
"Storage"
,
"no-memos"
:
"Không có ghi chú nào 🌃"
,
"sso"
:
"SSO"
,
"memos-ready"
:
"Tất cả ghi chú ở đây rồi 🎉"
,
"storage-section"
:
{
"restored-successfully"
:
"Đã khôi phục thành công"
,
"storage-services-list"
:
"Storage service list"
,
"memo-updated-datetime"
:
"Ghi chú đã thay đổi ngày giờ tạo."
,
"create-a-service"
:
"Create a service"
,
"invalid-created-datetime"
:
"Ngày giờ tạo không hợp lệ."
,
"update-a-service"
:
"Update a service"
,
"change-memo-created-time"
:
"Thay đổi thời gian tạo ghi chú"
,
"warning-text"
:
"Are you sure to delete this storage service? THIS ACTION IS IRREVERSIBLE❗"
,
"memo-not-found"
:
"Không tìm thấy ghi chú."
,
"delete-storage"
:
"Delete Storage"
"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"
:
{
"appearance-option"
:
{
"monday"
:
"Thứ hai"
,
"system"
:
"Follow system"
,
"mon"
:
"T2"
,
"light"
:
"Always light"
,
"tuesday"
:
"Thứ ba"
,
"dark"
:
"Always dark"
"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"
}
}
},
"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"
}
}
}
web/src/locales/zh-Hant.json
View file @
7f30e2e6
...
@@ -195,7 +195,7 @@
...
@@ -195,7 +195,7 @@
"additional-script-placeholder"
:
"自定義 JavaScript 代碼"
,
"additional-script-placeholder"
:
"自定義 JavaScript 代碼"
,
"disable-public-memos"
:
"禁用公共memos"
"disable-public-memos"
:
"禁用公共memos"
},
},
"apperance-option"
:
{
"appe
a
rance-option"
:
{
"system"
:
"跟隨系統"
,
"system"
:
"跟隨系統"
,
"light"
:
"總是淺色"
,
"light"
:
"總是淺色"
,
"dark"
:
"總是深色"
"dark"
:
"總是深色"
...
...
web/src/locales/zh.json
View file @
7f30e2e6
...
@@ -195,7 +195,7 @@
...
@@ -195,7 +195,7 @@
"additional-script-placeholder"
:
"自定义 JavaScript 代码"
,
"additional-script-placeholder"
:
"自定义 JavaScript 代码"
,
"disable-public-memos"
:
"禁用公共memos"
"disable-public-memos"
:
"禁用公共memos"
},
},
"apperance-option"
:
{
"appe
a
rance-option"
:
{
"system"
:
"跟随系统"
,
"system"
:
"跟随系统"
,
"light"
:
"总是浅色"
,
"light"
:
"总是浅色"
,
"dark"
:
"总是深色"
"dark"
:
"总是深色"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment