mirror of
https://github.com/penpot/penpot.git
synced 2025-03-13 16:21:57 -05:00
🐛 Fix some typos in library modals
This commit is contained in:
parent
a85a65a554
commit
38d74b93b3
3 changed files with 170 additions and 167 deletions
|
@ -26,43 +26,42 @@
|
|||
accept-style
|
||||
origin
|
||||
count-libraries] :as props}]
|
||||
(let [on-accept (or on-accept identity)
|
||||
on-cancel (or on-cancel identity)
|
||||
cancel-label (tr "labels.cancel")
|
||||
accept-style (or accept-style :danger)
|
||||
is-delete? (= origin :delete)
|
||||
dashboard-local (mf/deref refs/dashboard-local)
|
||||
files->shared (:files-with-shared dashboard-local)
|
||||
count-files (count (keys files->shared))
|
||||
title (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.title" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.title" (i18n/c count-libraries)))
|
||||
message (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.message" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.message" (i18n/c count-libraries)))
|
||||
accept-label (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.accept" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.accept"))
|
||||
|
||||
no-files-message (if is-delete?
|
||||
(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?
|
||||
(if (> count-libraries 1)
|
||||
(tr "modals.delete-shared-confirm.scd-message" (i18n/c count-files))
|
||||
(tr "modals.delete-shared-confirm.scd-message" (i18n/c count-files)))
|
||||
(if (> count-libraries 1)
|
||||
(tr "modals.unpublish-shared-confirm.scd-message-plural" (i18n/c count-files))
|
||||
(tr "modals.unpublish-shared-confirm.scd-message" (i18n/c count-files))))
|
||||
|
||||
hint (if is-delete?
|
||||
(if (> count-libraries 1)
|
||||
(tr "modals.delete-shared-confirm.hint-plural" (i18n/c count-files))
|
||||
(tr "modals.delete-shared-confirm.hint" (i18n/c count-files)))
|
||||
(if (> count-libraries 1)
|
||||
(tr "modals.unpublish-shared-confirm.hint-plural" (i18n/c count-files))
|
||||
(tr "modals.unpublish-shared-confirm.hint" (i18n/c count-files))))
|
||||
(let [on-accept (or on-accept identity)
|
||||
on-cancel (or on-cancel identity)
|
||||
cancel-label (tr "labels.cancel")
|
||||
accept-style (or accept-style :danger)
|
||||
dashboard-local (mf/deref refs/dashboard-local)
|
||||
files->shared (:files-with-shared dashboard-local)
|
||||
|
||||
is-delete? (= origin :delete)
|
||||
count-files (count (keys files->shared))
|
||||
|
||||
title (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.title" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.title" (i18n/c count-libraries)))
|
||||
message (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.message" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.message" (i18n/c count-libraries)))
|
||||
accept-label (if is-delete?
|
||||
(tr "modals.delete-shared-confirm.accept" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.accept" (i18n/c count-libraries)))
|
||||
no-files-message (if is-delete?
|
||||
(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?
|
||||
(if (= count-files 1)
|
||||
(tr "modals.delete-shared-confirm.scd-message" (i18n/c count-libraries))
|
||||
(tr "modals.delete-shared-confirm.scd-message-many" (i18n/c count-libraries)))
|
||||
(if (= count-files 1)
|
||||
(tr "modals.unpublish-shared-confirm.scd-message" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.scd-message-many" (i18n/c count-libraries))))
|
||||
hint (if is-delete?
|
||||
(if (= count-files 1)
|
||||
(tr "modals.delete-shared-confirm.hint" (i18n/c count-files))
|
||||
(tr "modals.delete-shared-confirm.hint-many" (i18n/c count-files)))
|
||||
(if (= count-files 1)
|
||||
(tr "modals.unpublish-shared-confirm.hint" (i18n/c count-libraries))
|
||||
(tr "modals.unpublish-shared-confirm.hint-many" (i18n/c count-libraries))))
|
||||
|
||||
accept-fn
|
||||
(mf/use-callback
|
||||
|
|
|
@ -1593,10 +1593,10 @@ msgid "modals.delete-project-confirm.title"
|
|||
msgstr "Delete project"
|
||||
|
||||
#: 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] "Delete file"
|
||||
msgstr[1] "Delete files"
|
||||
msgid "modals.delete-shared-confirm.title"
|
||||
msgid_plural "modals.delete-shared-confirm.title"
|
||||
msgstr[0] "Deleting file"
|
||||
msgstr[1] "Deleting files"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
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?"
|
||||
|
||||
#: 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] "Some of the assets in this file's library are in use here:"
|
||||
msgstr[1] "Some of the assets in these file's libraries are in use here:"
|
||||
msgid "modals.delete-shared-confirm.accept"
|
||||
msgid_plural "modals.delete-shared-confirm.accept"
|
||||
msgstr[0] "Delete file"
|
||||
msgstr[1] "Delete files"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
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."
|
||||
|
||||
#: 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 file's library are in use."
|
||||
msgstr[1] "None of the assets in these file's libraries are in use."
|
||||
msgid "modals.delete-shared-confirm.scd-message"
|
||||
msgid_plural "modals.delete-shared-confirm.scd-message"
|
||||
msgstr[0] "Some of the assets in this file's library are in use here:"
|
||||
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
|
||||
msgid "modals.delete-shared-confirm.title"
|
||||
msgid_plural "modals.delete-shared-confirm.title"
|
||||
msgstr[0] "Deleting file"
|
||||
msgstr[1] "Deleting files"
|
||||
msgid "modals.delete-shared-confirm.scd-message-many"
|
||||
msgid_plural "modals.delete-shared-confirm.scd-message-many"
|
||||
msgstr[0] "Some of the assets in this file's library are in use here:"
|
||||
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
|
||||
msgid "modals.delete-shared-confirm.hint"
|
||||
msgid_plural "modals.delete-shared-confirm.hint"
|
||||
msgstr[0] ""
|
||||
"If you delete it, those assets will move tothe local library"
|
||||
"of this file. Any unsued assets will be lost."
|
||||
"If you delete it, those assets will move to the local library "
|
||||
"of this file. Any unused assets will be lost."
|
||||
msgstr[1] ""
|
||||
"If you delete it, those assets will move tothe local library"
|
||||
"of these files. Any unsued assets will be lost."
|
||||
"If you delete it, those assets will move to the local library "
|
||||
"of these files. Any unused assets will be lost."
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
msgid "modals.delete-shared-confirm.hint-plural"
|
||||
msgid_plural "modals.delete-shared-confirm.hint-plural"
|
||||
msgid "modals.delete-shared-confirm.hint-many"
|
||||
msgid_plural "modals.delete-shared-confirm.hint-many"
|
||||
msgstr[0] ""
|
||||
"If you delete them, those assets will move tothe local library"
|
||||
"of this file. Any unsued assets will be lost."
|
||||
"If you delete them, those assets will move to the local library "
|
||||
"of this file. Any unused assets will be lost."
|
||||
msgstr[1] ""
|
||||
"If you delete them, those assets will move tothe local library"
|
||||
"of these files. Any unsued assets will be lost."
|
||||
"If you delete them, those assets will move to the local library "
|
||||
"of these files. Any unused assets will be lost."
|
||||
|
||||
#: src/app/main/ui/dashboard/sidebar.cljs
|
||||
msgid "modals.delete-team-confirm.accept"
|
||||
|
@ -1773,26 +1773,10 @@ msgid "modals.small-nudge"
|
|||
msgstr "Small nudge"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
msgid "modals.unpublish-shared-confirm.accept"
|
||||
msgstr "Unpublish"
|
||||
|
||||
#: 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] "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."
|
||||
msgid "modals.unpublish-shared-confirm.title"
|
||||
msgid_plural "modals.unpublish-shared-confirm.title"
|
||||
msgstr[0] "Unpublish library"
|
||||
msgstr[1] "Unpublish libraries"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
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[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
|
||||
msgid "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[1] "Some of the assets in these file's libraries 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 libraries are in use here:"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
msgid "modals.unpublish-shared-confirm.scd-message-plural"
|
||||
msgid_plural "modals.unpublish-shared-confirm.scd-message-plural"
|
||||
msgstr[0] "Some of the assets in this file's library are in use here:"
|
||||
msgstr[1] "Some of the assets in these file's libraries are in use here:"
|
||||
msgid "modals.unpublish-shared-confirm.scd-message-many"
|
||||
msgid_plural "modals.unpublish-shared-confirm.scd-message-many"
|
||||
msgstr[0] "Some of the assets in this library 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
|
||||
msgid "modals.unpublish-shared-confirm.title"
|
||||
msgid_plural "modals.unpublish-shared-confirm.title"
|
||||
msgstr[0] "Unpublish library"
|
||||
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 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
|
||||
msgid "modals.update-remote-component-in-bulk.hint"
|
||||
|
|
|
@ -1790,33 +1790,42 @@ msgstr "¿Seguro que quieres eliminar este proyecto?"
|
|||
msgid "modals.delete-project-confirm.title"
|
||||
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
|
||||
msgid "modals.delete-shared-confirm.title"
|
||||
msgid_plural "modals.delete-shared-confirm.title"
|
||||
msgstr[0] "Borrando archivo"
|
||||
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
|
||||
msgid "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 "
|
||||
"de este archivo. Cualquier elemento en desuso se perderá."
|
||||
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á."
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
msgid "modals.delete-shared-confirm.hint-plural"
|
||||
msgid_plural "modals.delete-shared-confirm.hint-plural"
|
||||
msgid "modals.delete-shared-confirm.hint-many"
|
||||
msgid_plural "modals.delete-shared-confirm.hint-many"
|
||||
msgstr[0] ""
|
||||
"Si los borras, esos elementos pasarán a formar parte de la biblioteca local "
|
||||
"de este archivo. Cualquier elemento en desuso se perderá."
|
||||
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á."
|
||||
|
||||
#: 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
|
||||
msgid "modals.delete-shared.title"
|
||||
msgstr "Borrar archivo"
|
||||
|
@ -1980,31 +1977,11 @@ msgstr "Añadir “%s” como Biblioteca Compartida"
|
|||
msgid "modals.small-nudge"
|
||||
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
|
||||
msgid "modals.unpublish-shared-confirm.hint-plural"
|
||||
msgid_plural "modals.unpublish-shared-confirm.hint-plural"
|
||||
msgstr[0] ""
|
||||
"Si las despublicas, los elementos pasarán a formar parte de la biblioteca "
|
||||
"del archivo."
|
||||
msgstr[1] ""
|
||||
"Si las despublicas, los elementos pasarán a formar parte de la biblioteca de "
|
||||
"los archivos."
|
||||
msgid "modals.unpublish-shared-confirm.title"
|
||||
msgid_plural "modals.unpublish-shared-confirm.title"
|
||||
msgstr[0] "Despublicar biblioteca"
|
||||
msgstr[1] "Despublicar bibliotecas"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs, src/app/main/ui/dashboard/file_menu.cljs
|
||||
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[1] "¿Seguro que quieres despublicar estas bibliotecas?"
|
||||
|
||||
#: 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_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_plural "modals.unpublish-shared-confirm.scd-message"
|
||||
msgstr[0] "Está siendo usada en este archivo:"
|
||||
msgstr[1] "Está siendo usada en estos archivos:"
|
||||
msgstr[0] "Algunos elementos de esta bibioteca están siendo usados por:"
|
||||
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
|
||||
msgid "modals.unpublish-shared-confirm.scd-message-plural"
|
||||
msgid_plural "modals.unpublish-shared-confirm.scd-message-plural"
|
||||
msgstr[0] "Están siendo usadas en este archivo:"
|
||||
msgstr[1] "Están siendo usadas en estos archivos:"
|
||||
msgid "modals.unpublish-shared-confirm.scd-message-many"
|
||||
msgid_plural "modals.unpublish-shared-confirm.scd-message-many"
|
||||
msgstr[0] "Algunos elementos de esta bibioteca están siendo usados por:"
|
||||
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
|
||||
msgid "modals.unpublish-shared-confirm.title"
|
||||
msgid_plural "modals.unpublish-shared-confirm.title"
|
||||
msgstr[0] "Despublicar biblioteca"
|
||||
msgstr[1] "Despublicar bibliotecas"
|
||||
msgid "modals.unpublish-shared-confirm.hint"
|
||||
msgid_plural "modals.unpublish-shared-confirm.hint"
|
||||
msgstr[0] ""
|
||||
"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/context_menu.cljs
|
||||
|
@ -4740,4 +4742,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Actualizar"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Pulsar para cerrar la ruta"
|
||||
msgstr "Pulsar para cerrar la ruta"
|
||||
|
|
Loading…
Add table
Reference in a new issue