🐛 Fix some typos in library modals

This commit is contained in:
Andrés Moya 2022-11-03 14:06:02 +01:00 committed by Andrés Moya
parent a85a65a554
commit 38d74b93b3
3 changed files with 170 additions and 167 deletions

View file

@ -26,43 +26,42 @@
accept-style accept-style
origin origin
count-libraries] :as props}] count-libraries] :as props}]
(let [on-accept (or on-accept identity) (let [on-accept (or on-accept identity)
on-cancel (or on-cancel identity) on-cancel (or on-cancel identity)
cancel-label (tr "labels.cancel") cancel-label (tr "labels.cancel")
accept-style (or accept-style :danger) accept-style (or accept-style :danger)
is-delete? (= origin :delete) dashboard-local (mf/deref refs/dashboard-local)
dashboard-local (mf/deref refs/dashboard-local) files->shared (:files-with-shared dashboard-local)
files->shared (:files-with-shared dashboard-local)
count-files (count (keys files->shared)) is-delete? (= origin :delete)
title (if is-delete? count-files (count (keys files->shared))
(tr "modals.delete-shared-confirm.title" (i18n/c count-libraries))
(tr "modals.unpublish-shared-confirm.title" (i18n/c count-libraries))) title (if is-delete?
message (if is-delete? (tr "modals.delete-shared-confirm.title" (i18n/c count-libraries))
(tr "modals.delete-shared-confirm.message" (i18n/c count-libraries)) (tr "modals.unpublish-shared-confirm.title" (i18n/c count-libraries)))
(tr "modals.unpublish-shared-confirm.message" (i18n/c count-libraries))) message (if is-delete?
accept-label (if is-delete? (tr "modals.delete-shared-confirm.message" (i18n/c count-libraries))
(tr "modals.delete-shared-confirm.accept" (i18n/c count-libraries)) (tr "modals.unpublish-shared-confirm.message" (i18n/c count-libraries)))
(tr "modals.unpublish-shared-confirm.accept")) accept-label (if is-delete?
(tr "modals.delete-shared-confirm.accept" (i18n/c count-libraries))
no-files-message (if is-delete? (tr "modals.unpublish-shared-confirm.accept" (i18n/c count-libraries)))
(tr "modals.delete-shared-confirm.no-files-message" (i18n/c count-libraries)) no-files-message (if is-delete?
(tr "modals.unpublish-shared-confirm.no-files-message" (i18n/c count-libraries)) (tr "modals.delete-shared-confirm.no-files-message" (i18n/c count-libraries))
) (tr "modals.unpublish-shared-confirm.no-files-message" (i18n/c count-libraries)))
scd-message (if is-delete? scd-message (if is-delete?
(if (> count-libraries 1) (if (= count-files 1)
(tr "modals.delete-shared-confirm.scd-message" (i18n/c count-files)) (tr "modals.delete-shared-confirm.scd-message" (i18n/c count-libraries))
(tr "modals.delete-shared-confirm.scd-message" (i18n/c count-files))) (tr "modals.delete-shared-confirm.scd-message-many" (i18n/c count-libraries)))
(if (> count-libraries 1) (if (= count-files 1)
(tr "modals.unpublish-shared-confirm.scd-message-plural" (i18n/c count-files)) (tr "modals.unpublish-shared-confirm.scd-message" (i18n/c count-libraries))
(tr "modals.unpublish-shared-confirm.scd-message" (i18n/c count-files)))) (tr "modals.unpublish-shared-confirm.scd-message-many" (i18n/c count-libraries))))
hint (if is-delete?
hint (if is-delete? (if (= count-files 1)
(if (> count-libraries 1) (tr "modals.delete-shared-confirm.hint" (i18n/c count-files))
(tr "modals.delete-shared-confirm.hint-plural" (i18n/c count-files)) (tr "modals.delete-shared-confirm.hint-many" (i18n/c count-files)))
(tr "modals.delete-shared-confirm.hint" (i18n/c count-files))) (if (= count-files 1)
(if (> count-libraries 1) (tr "modals.unpublish-shared-confirm.hint" (i18n/c count-libraries))
(tr "modals.unpublish-shared-confirm.hint-plural" (i18n/c count-files)) (tr "modals.unpublish-shared-confirm.hint-many" (i18n/c count-libraries))))
(tr "modals.unpublish-shared-confirm.hint" (i18n/c count-files))))
accept-fn accept-fn
(mf/use-callback (mf/use-callback

View file

@ -1593,10 +1593,10 @@ msgid "modals.delete-project-confirm.title"
msgstr "Delete project" msgstr "Delete project"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.accept" msgid "modals.delete-shared-confirm.title"
msgid_plural "modals.delete-shared-confirm.accept" msgid_plural "modals.delete-shared-confirm.title"
msgstr[0] "Delete file" msgstr[0] "Deleting file"
msgstr[1] "Delete files" msgstr[1] "Deleting files"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.message" msgid "modals.delete-shared-confirm.message"
@ -1605,10 +1605,10 @@ msgstr[0] "Are you sure you want to delete this file?"
msgstr[1] "Are you sure you want to delete these files?" msgstr[1] "Are you sure you want to delete these files?"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.scd-message" msgid "modals.delete-shared-confirm.accept"
msgid_plural "modals.delete-shared-confirm.scd-message" msgid_plural "modals.delete-shared-confirm.accept"
msgstr[0] "Some of the assets in this file's library are in use here:" msgstr[0] "Delete file"
msgstr[1] "Some of the assets in these file's libraries are in use here:" msgstr[1] "Delete files"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.no-files-message" msgid "modals.delete-shared-confirm.no-files-message"
@ -1617,36 +1617,36 @@ msgstr[0] "None of the assets in this file's library are in use. They will be de
msgstr[1] "None of the assets in these file's libraries are in use. They will be deleted along with the files." msgstr[1] "None of the assets in these file's libraries are in use. They will be deleted along with the files."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.no-files-message" msgid "modals.delete-shared-confirm.scd-message"
msgid_plural "modals.unpublish-shared-confirm.no-files-message" msgid_plural "modals.delete-shared-confirm.scd-message"
msgstr[0] "None of the assets in this file's library are in use." msgstr[0] "Some of the assets in this file's library are in use here:"
msgstr[1] "None of the assets in these file's libraries are in use." msgstr[1] "Some of the assets in these file's libraries are in use here:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.title" msgid "modals.delete-shared-confirm.scd-message-many"
msgid_plural "modals.delete-shared-confirm.title" msgid_plural "modals.delete-shared-confirm.scd-message-many"
msgstr[0] "Deleting file" msgstr[0] "Some of the assets in this file's library are in use here:"
msgstr[1] "Deleting files" msgstr[1] "Some of the assets in these file's libraries are in use here:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.hint" msgid "modals.delete-shared-confirm.hint"
msgid_plural "modals.delete-shared-confirm.hint" msgid_plural "modals.delete-shared-confirm.hint"
msgstr[0] "" msgstr[0] ""
"If you delete it, those assets will move tothe local library" "If you delete it, those assets will move to the local library "
"of this file. Any unsued assets will be lost." "of this file. Any unused assets will be lost."
msgstr[1] "" msgstr[1] ""
"If you delete it, those assets will move tothe local library" "If you delete it, those assets will move to the local library "
"of these files. Any unsued assets will be lost." "of these files. Any unused assets will be lost."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.hint-plural" msgid "modals.delete-shared-confirm.hint-many"
msgid_plural "modals.delete-shared-confirm.hint-plural" msgid_plural "modals.delete-shared-confirm.hint-many"
msgstr[0] "" msgstr[0] ""
"If you delete them, those assets will move tothe local library" "If you delete them, those assets will move to the local library "
"of this file. Any unsued assets will be lost." "of this file. Any unused assets will be lost."
msgstr[1] "" msgstr[1] ""
"If you delete them, those assets will move tothe local library" "If you delete them, those assets will move to the local library "
"of these files. Any unsued assets will be lost." "of these files. Any unused assets will be lost."
#: src/app/main/ui/dashboard/sidebar.cljs #: src/app/main/ui/dashboard/sidebar.cljs
msgid "modals.delete-team-confirm.accept" msgid "modals.delete-team-confirm.accept"
@ -1773,26 +1773,10 @@ msgid "modals.small-nudge"
msgstr "Small nudge" msgstr "Small nudge"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.accept" msgid "modals.unpublish-shared-confirm.title"
msgstr "Unpublish" msgid_plural "modals.unpublish-shared-confirm.title"
msgstr[0] "Unpublish library"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs msgstr[1] "Unpublish libraries"
msgid "modals.unpublish-shared-confirm.hint"
msgid_plural "modals.unpublish-shared-confirm.hint"
msgstr[0] "If you unpublish it, those assets will move to the local library of this file."
msgstr[1] "If you unpublish it, those assets will move to the local library of these files."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint-plural"
msgid_plural "modals.unpublish-shared-confirm.hint-plural"
msgstr[0] "If you unpublish them, those assets will move to the local library of this file."
msgstr[1] "If you unpublish them, those assets will move to the local library of these files."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint-plural"
msgid_plural "modals.unpublish-shared-confirm.hint-plural"
msgstr[0] "If you unpublish them, the assets in them became a library of this file."
msgstr[1] "If you unpublish them, the assets in them became a library of these files."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.message" msgid "modals.unpublish-shared-confirm.message"
@ -1800,23 +1784,41 @@ msgid_plural "modals.unpublish-shared-confirm.message"
msgstr[0] "Are you sure you want to unpublish this library?" msgstr[0] "Are you sure you want to unpublish this library?"
msgstr[1] "Are you sure you want to unpublish these libraries?" msgstr[1] "Are you sure you want to unpublish these libraries?"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.accept"
msgid_plural "modals.unpublish-shared-confirm.accept"
msgstr[0] "Unpublish"
msgstr[1] "Unpublish"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.no-files-message"
msgid_plural "modals.unpublish-shared-confirm.no-files-message"
msgstr[0] "None of the assets in this library are in use."
msgstr[1] "None of the assets in these libraries are in use."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.scd-message" msgid "modals.unpublish-shared-confirm.scd-message"
msgid_plural "modals.unpublish-shared-confirm.scd-message" msgid_plural "modals.unpublish-shared-confirm.scd-message"
msgstr[0] "Some of the assets in this file's library are in use here:" msgstr[0] "Some of the assets in this library are in use here:"
msgstr[1] "Some of the assets in these file's libraries are in use here:" msgstr[1] "Some of the assets in these libraries are in use here:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.scd-message-plural" msgid "modals.unpublish-shared-confirm.scd-message-many"
msgid_plural "modals.unpublish-shared-confirm.scd-message-plural" msgid_plural "modals.unpublish-shared-confirm.scd-message-many"
msgstr[0] "Some of the assets in this file's library are in use here:" msgstr[0] "Some of the assets in this library are in use here:"
msgstr[1] "Some of the assets in these file's libraries are in use here:" msgstr[1] "Some of the assets in these libraries are in use here:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.title" msgid "modals.unpublish-shared-confirm.hint"
msgid_plural "modals.unpublish-shared-confirm.title" msgid_plural "modals.unpublish-shared-confirm.hint"
msgstr[0] "Unpublish library" msgstr[0] "If you unpublish it, those assets will move to the local library of this file."
msgstr[1] "Unpublish libraries" msgstr[1] "If you unpublish it, those assets will move to the local libraries of these files."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint-many"
msgid_plural "modals.unpublish-shared-confirm.hint-many"
msgstr[0] "If you unpublish them, those assets will move to the local library of this file."
msgstr[1] "If you unpublish them, those assets will move to the local libraries of these files."
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs, src/app/main/ui/workspace/context_menu.cljs #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs, src/app/main/ui/workspace/context_menu.cljs
msgid "modals.update-remote-component-in-bulk.hint" msgid "modals.update-remote-component-in-bulk.hint"

View file

@ -1790,33 +1790,42 @@ msgstr "¿Seguro que quieres eliminar este proyecto?"
msgid "modals.delete-project-confirm.title" msgid "modals.delete-project-confirm.title"
msgstr "Eliminar proyecto" msgstr "Eliminar proyecto"
#: src/app/main/ui/workspace/header.cljs,
#: src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.accept"
msgid_plural "modals.delete-shared-confirm.accept"
msgstr[0] "Borrar archivo"
msgstr[1] "Borrar archivos"
#: src/app/main/ui/workspace/header.cljs,
#: src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.message"
msgid_plural "modals.delete-shared-confirm.message"
msgstr[0] "¿Seguro que quieres borrar este archivo?"
msgstr[1] "¿Seguro que quieres borrar estos archivos?"
#: src/app/main/ui/workspace/header.cljs,
#: src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.scd-message"
msgid_plural "modals.delete-shared-confirm.scd-message"
msgstr[0] "Algunos elementos de esta biblioteca están siendo usados por:"
msgstr[1] "Algunos elementos de estas biblitecas están siendo usados por:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.title" msgid "modals.delete-shared-confirm.title"
msgid_plural "modals.delete-shared-confirm.title" msgid_plural "modals.delete-shared-confirm.title"
msgstr[0] "Borrando archivo" msgstr[0] "Borrando archivo"
msgstr[1] "Borrando archivos" msgstr[1] "Borrando archivos"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.message"
msgid_plural "modals.delete-shared-confirm.message"
msgstr[0] "¿Seguro que quieres borrar este archivo?"
msgstr[1] "¿Seguro que quieres borrar estos archivos?"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.accept"
msgid_plural "modals.delete-shared-confirm.accept"
msgstr[0] "Borrar archivo"
msgstr[1] "Borrar archivos"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.no-files-message"
msgid_plural "modals.delete-shared-confirm.no-files-message"
msgstr[0] "Ninguno de los elementos de su biblioteca están en uso. Se borrarán junto con el archivo."
msgstr[1] "Ninguno de los elementos de sus bibliotecas están en uso. Se borrarán junto con los archivos."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.scd-message"
msgid_plural "modals.delete-shared-confirm.scd-message"
msgstr[0] "Algunos elementos de su biblioteca están siendo usados por:"
msgstr[1] "Algunos elementos de sus bibliotecas están siendo usados por:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.scd-message-many"
msgid_plural "modals.delete-shared-confirm.scd-message-many"
msgstr[0] "Algunos elementos de su biblioteca están siendo usados por:"
msgstr[1] "Algunos elementos de sus bibliotecas están siendo usados por:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.hint" msgid "modals.delete-shared-confirm.hint"
msgid_plural "modals.delete-shared-confirm.hint" msgid_plural "modals.delete-shared-confirm.hint"
@ -1824,31 +1833,19 @@ msgstr[0] ""
"Si lo borras, esos elementos pasarán a formar parte de la biblioteca local " "Si lo borras, esos elementos pasarán a formar parte de la biblioteca local "
"de este archivo. Cualquier elemento en desuso se perderá." "de este archivo. Cualquier elemento en desuso se perderá."
msgstr[1] "" msgstr[1] ""
"Si lo borras, los elementos pasarán a formar parte de la biblioteca local de " "Si lo borras, esos elementos pasarán a formar parte de las bibliotecas locales de "
"estos archivos. Cualquier elemento en desuso se perderá." "estos archivos. Cualquier elemento en desuso se perderá."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.hint-plural" msgid "modals.delete-shared-confirm.hint-many"
msgid_plural "modals.delete-shared-confirm.hint-plural" msgid_plural "modals.delete-shared-confirm.hint-many"
msgstr[0] "" msgstr[0] ""
"Si los borras, esos elementos pasarán a formar parte de la biblioteca local " "Si los borras, esos elementos pasarán a formar parte de la biblioteca local "
"de este archivo. Cualquier elemento en desuso se perderá." "de este archivo. Cualquier elemento en desuso se perderá."
msgstr[1] "" msgstr[1] ""
"Si los borras, los elementos pasarán a formar parte de la biblioteca local de " "Si los borras, esos elementos pasarán a formar parte de las bibliotecas locales de "
"estos archivos. Cualquier elemento en desuso se perderá." "estos archivos. Cualquier elemento en desuso se perderá."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.delete-shared-confirm.no-files-message"
msgid_plural "modals.delete-shared-confirm.no-files-message"
msgstr[0] "Ninguno de los elementos de su biblioteca están en uso. Se borrarán junto con el archivo."
msgstr[1] "Ninguno de los elementos de sus bibliotecas están en uso. Se borrarán junto con el archivo."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.no-files-message"
msgid_plural "modals.unpublish-shared-confirm.no-files-message"
msgstr[0] "Ninguno de los elementos de su biblioteca están en uso."
msgstr[1] "Ninguno de los elementos de sus bibliotecas están en uso."
#: src/app/main/ui/delete_shared.cljs #: src/app/main/ui/delete_shared.cljs
msgid "modals.delete-shared.title" msgid "modals.delete-shared.title"
msgstr "Borrar archivo" msgstr "Borrar archivo"
@ -1980,31 +1977,11 @@ msgstr "Añadir “%s” como Biblioteca Compartida"
msgid "modals.small-nudge" msgid "modals.small-nudge"
msgstr "Mínimo" msgstr "Mínimo"
#: src/app/main/ui/workspace/header.cljs,
#: src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.accept"
msgstr "Despublicar"
#: src/app/main/ui/workspace/header.cljs,
#: src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint"
msgid_plural "modals.unpublish-shared-confirm.hint"
msgstr[0] ""
"Si la despublicas, los elementos pasarán a formar parte de la biblioteca "
"del archivo."
msgstr[1] ""
"Si la despublicas, los elementos pasarán a formar parte de la biblioteca de "
"los archivos."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint-plural" msgid "modals.unpublish-shared-confirm.title"
msgid_plural "modals.unpublish-shared-confirm.hint-plural" msgid_plural "modals.unpublish-shared-confirm.title"
msgstr[0] "" msgstr[0] "Despublicar biblioteca"
"Si las despublicas, los elementos pasarán a formar parte de la biblioteca " msgstr[1] "Despublicar bibliotecas"
"del archivo."
msgstr[1] ""
"Si las despublicas, los elementos pasarán a formar parte de la biblioteca de "
"los archivos."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.message" msgid "modals.unpublish-shared-confirm.message"
@ -2012,24 +1989,49 @@ msgid_plural "modals.unpublish-shared-confirm.message"
msgstr[0] "¿Seguro que quieres despublicar esta biblioteca?" msgstr[0] "¿Seguro que quieres despublicar esta biblioteca?"
msgstr[1] "¿Seguro que quieres despublicar estas bibliotecas?" msgstr[1] "¿Seguro que quieres despublicar estas bibliotecas?"
#: src/app/main/ui/workspace/header.cljs, #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
#: src/app/main/ui/dashboard/file_menu.cljs msgid "modals.unpublish-shared-confirm.accept"
msgid_plural "modals.unpublish-shared-confirm.accept"
msgstr[0] "Despublicar"
msgstr[1] "Despublicar"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.no-files-message"
msgid_plural "modals.unpublish-shared-confirm.no-files-message"
msgstr[0] "Ninguno de los elementos de esta biblioteca están en uso."
msgstr[1] "Ninguno de los elementos de estas bibliotecas están en uso."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.scd-message" msgid "modals.unpublish-shared-confirm.scd-message"
msgid_plural "modals.unpublish-shared-confirm.scd-message" msgid_plural "modals.unpublish-shared-confirm.scd-message"
msgstr[0] "Está siendo usada en este archivo:" msgstr[0] "Algunos elementos de esta bibioteca están siendo usados por:"
msgstr[1] "Está siendo usada en estos archivos:" msgstr[1] "Algunos elementos de estas bibiotecas están siendo usados por:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.scd-message-plural" msgid "modals.unpublish-shared-confirm.scd-message-many"
msgid_plural "modals.unpublish-shared-confirm.scd-message-plural" msgid_plural "modals.unpublish-shared-confirm.scd-message-many"
msgstr[0] "Están siendo usadas en este archivo:" msgstr[0] "Algunos elementos de esta bibioteca están siendo usados por:"
msgstr[1] "Están siendo usadas en estos archivos:" msgstr[1] "Algunos elementos de estas bibiotecas están siendo usados por:"
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs #: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.title" msgid "modals.unpublish-shared-confirm.hint"
msgid_plural "modals.unpublish-shared-confirm.title" msgid_plural "modals.unpublish-shared-confirm.hint"
msgstr[0] "Despublicar biblioteca" msgstr[0] ""
msgstr[1] "Despublicar bibliotecas" "Si la despublicas, esos elementos pasarán a formar parte de la biblioteca local "
"de este archivo."
msgstr[1] ""
"Si las despublicas, esos elementos pasarán a formar parte de la biblioteca local "
"de este archivo."
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
msgid "modals.unpublish-shared-confirm.hint-many"
msgid_plural "modals.unpublish-shared-confirm.hint-many"
msgstr[0] ""
"Si la despublicas, esos elementos pasarán a formar parte de las bibliotecas locales "
"de estos archivos."
msgstr[1] ""
"Si las despublicas, esos elementos pasarán a formar parte de las bibliotecas locales "
"de estos archivos."
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs,
#: src/app/main/ui/workspace/context_menu.cljs #: src/app/main/ui/workspace/context_menu.cljs
@ -4740,4 +4742,4 @@ msgid "workspace.updates.update"
msgstr "Actualizar" msgstr "Actualizar"
msgid "workspace.viewport.click-to-close-path" msgid "workspace.viewport.click-to-close-path"
msgstr "Pulsar para cerrar la ruta" msgstr "Pulsar para cerrar la ruta"