♻️ Changed handoff for inspect everywhere

This commit is contained in:
alonso.torres 2022-12-29 13:02:43 +01:00
parent 104059a7b1
commit 3bbf632121
54 changed files with 2430 additions and 2493 deletions

View file

@ -32,7 +32,7 @@
@import "main/layouts/main-layout"; @import "main/layouts/main-layout";
@import "main/layouts/not-found"; @import "main/layouts/not-found";
@import "main/layouts/viewer"; @import "main/layouts/viewer";
@import "main/layouts/handoff"; @import "main/layouts/inspect";
//################################################# //#################################################
// Commons // Commons
@ -86,7 +86,7 @@
@import "main/partials/workspace-header"; @import "main/partials/workspace-header";
@import "main/partials/comments"; @import "main/partials/comments";
@import "main/partials/color-bullet"; @import "main/partials/color-bullet";
@import "main/partials/handoff"; @import "main/partials/inspect";
@import "main/partials/exception-page"; @import "main/partials/exception-page";
@import "main/partials/share-link"; @import "main/partials/share-link";
@import "main/partials/af-signup-questions"; @import "main/partials/af-signup-questions";

View file

@ -1,7 +1,7 @@
$width-left-toolbar: 48px; $width-left-toolbar: 48px;
$width-settings-bar: 256px; $width-settings-bar: 256px;
.handoff-layout { .inspect-layout {
height: 100vh; height: 100vh;
display: grid; display: grid;
grid-template-rows: 48px auto; grid-template-rows: 48px auto;
@ -19,7 +19,7 @@ $width-settings-bar: 256px;
} }
} }
.fullscreen.handoff-layout.force-visible { .fullscreen.inspect-layout.force-visible {
display: grid; display: grid;
grid-template-rows: 1fr; grid-template-rows: 1fr;
@ -39,7 +39,7 @@ $width-settings-bar: 256px;
} }
} }
.fullscreen.handoff-layout:not(.force-visible) { .fullscreen.inspect-layout:not(.force-visible) {
& .viewer-header { & .viewer-header {
width: 100%; width: 100%;
position: fixed; position: fixed;
@ -91,7 +91,7 @@ $width-settings-bar: 256px;
} }
} }
.handoff-layout { .inspect-layout {
.viewer-section { .viewer-section {
flex-wrap: nowrap; flex-wrap: nowrap;
margin-top: 0; margin-top: 0;
@ -124,14 +124,14 @@ $width-settings-bar: 256px;
} }
} }
.handoff-svg-wrapper { .inspect-svg-wrapper {
flex: 1; flex: 1;
overflow: hidden; overflow: hidden;
flex-direction: column; flex-direction: column;
justify-content: flex-start; justify-content: flex-start;
} }
.handoff-svg-container { .inspect-svg-container {
display: grid; display: grid;
width: 100%; width: 100%;
height: 100%; height: 100%;

View file

@ -4,7 +4,7 @@
// //
// Copyright (c) KALEIDOS INC // Copyright (c) KALEIDOS INC
.handoff-svg-wrapper { .inspect-svg-wrapper {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex; display: flex;

View file

@ -51,10 +51,10 @@
:subsections [:general-viewer] :subsections [:general-viewer]
:fn #(st/emit! dv/select-next-frame)} :fn #(st/emit! dv/select-next-frame)}
:open-handoff {:tooltip "G H" :open-inspect {:tooltip "G I"
:command "g h" :command "g i"
:subsections [:navigation-viewer] :subsections [:navigation-viewer]
:fn #(st/emit! (dv/go-to-section :handoff))} :fn #(st/emit! (dv/go-to-section :inspect))}
:open-comments {:tooltip "G C" :open-comments {:tooltip "G C"
:command "g c" :command "g c"

View file

@ -468,10 +468,10 @@
:subsections [:navigation-workspace] :subsections [:navigation-workspace]
:fn #(st/emit! (dw/go-to-viewer))} :fn #(st/emit! (dw/go-to-viewer))}
:open-handoff {:tooltip "G H" :open-inspect {:tooltip "G I"
:command "g h" :command "g i"
:subsections [:navigation-workspace] :subsections [:navigation-workspace]
:fn #(st/emit! (dw/go-to-viewer {:section :handoff}))} :fn #(st/emit! (dw/go-to-viewer {:section :inspect}))}
:open-comments {:tooltip "G C" :open-comments {:tooltip "G C"
:command "g c" :command "g c"

View file

@ -229,7 +229,7 @@
;; Component that serves for render frame thumbnails, mainly used in ;; Component that serves for render frame thumbnails, mainly used in
;; the viewer and handoff ;; the viewer and inspector
(mf/defc frame-svg (mf/defc frame-svg
{::mf/wrap [mf/memo]} {::mf/wrap [mf/memo]}
[{:keys [objects frame zoom show-thumbnails?] :or {zoom 1} :as props}] [{:keys [objects frame zoom show-thumbnails?] :or {zoom 1} :as props}]

View file

@ -26,8 +26,8 @@
[app.main.ui.icons :as i] [app.main.ui.icons :as i]
[app.main.ui.static :as static] [app.main.ui.static :as static]
[app.main.ui.viewer.comments :refer [comments-layer comments-sidebar]] [app.main.ui.viewer.comments :refer [comments-layer comments-sidebar]]
[app.main.ui.viewer.handoff :as handoff]
[app.main.ui.viewer.header :as header] [app.main.ui.viewer.header :as header]
[app.main.ui.viewer.inspect :as inspect]
[app.main.ui.viewer.interactions :as interactions] [app.main.ui.viewer.interactions :as interactions]
[app.main.ui.viewer.login] [app.main.ui.viewer.login]
[app.main.ui.viewer.share-link] [app.main.ui.viewer.share-link]
@ -222,7 +222,7 @@
(or (:can-edit permissions) (or (:can-edit permissions)
(and (true? (:is-logged permissions)) (and (true? (:is-logged permissions))
(= (:who-comment permissions) "all")))) (= (:who-comment permissions) "all"))))
(and (= section :handoff) (and (= section :inspect)
(or (:can-edit permissions) (or (:can-edit permissions)
(and (true? (:is-logged permissions)) (and (true? (:is-logged permissions))
(= (:who-inspect permissions) "all"))))) (= (:who-inspect permissions) "all")))))
@ -458,8 +458,8 @@
[:div#viewer-layout [:div#viewer-layout
{:class (dom/classnames {:class (dom/classnames
:force-visible (:show-thumbnails local) :force-visible (:show-thumbnails local)
:viewer-layout (not= section :handoff) :viewer-layout (not= section :inspect)
:handoff-layout (= section :handoff) :inspect-layout (= section :inspect)
:fullscreen fullscreen?)} :fullscreen fullscreen?)}
[:div.viewer-content [:div.viewer-content
@ -493,8 +493,8 @@
[:span (tr "viewer.frame-not-found")])] [:span (tr "viewer.frame-not-found")])]
(some? frame) (some? frame)
(if (= :handoff section) (if (= :inspect section)
[:& handoff/viewport [:& inspect/viewport
{:frame frame {:frame frame
:page page :page page
:file file :file file

View file

@ -188,10 +188,10 @@
(let [go-to-dashboard (let [go-to-dashboard
#(st/emit! (dv/go-to-dashboard)) #(st/emit! (dv/go-to-dashboard))
go-to-handoff go-to-inspect
(fn[] (fn[]
(if (:is-logged permissions) (if (:is-logged permissions)
(st/emit! dv/close-thumbnails-panel (dv/go-to-section :handoff)) (st/emit! dv/close-thumbnails-panel (dv/go-to-section :inspect))
(open-login-dialog))) (open-login-dialog)))
navigate navigate
@ -228,9 +228,9 @@
(and (= (:type permissions) :share-link) (and (= (:type permissions) :share-link)
(= (:who-inspect permissions) "all"))) (= (:who-inspect permissions) "all")))
[:button.mode-zone-button.tooltip.tooltip-bottom [:button.mode-zone-button.tooltip.tooltip-bottom
{:on-click go-to-handoff {:on-click go-to-inspect
:class (dom/classnames :active (= section :handoff)) :class (dom/classnames :active (= section :inspect))
:alt (tr "viewer.header.handoff-section" (sc/get-tooltip :open-handoff))} :alt (tr "viewer.header.inspect-section" (sc/get-tooltip :open-inspect))}
i/code])] i/code])]
[:& header-options {:section section [:& header-options {:section section

View file

@ -4,13 +4,13 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff (ns app.main.ui.viewer.inspect
(:require (:require
[app.main.data.viewer :as dv] [app.main.data.viewer :as dv]
[app.main.store :as st] [app.main.store :as st]
[app.main.ui.viewer.handoff.left-sidebar :refer [left-sidebar]] [app.main.ui.viewer.inspect.left-sidebar :refer [left-sidebar]]
[app.main.ui.viewer.handoff.render :refer [render-frame-svg]] [app.main.ui.viewer.inspect.render :refer [render-frame-svg]]
[app.main.ui.viewer.handoff.right-sidebar :refer [right-sidebar]] [app.main.ui.viewer.inspect.right-sidebar :refer [right-sidebar]]
[app.util.dom :as dom] [app.util.dom :as dom]
[app.util.keyboard :as kbd] [app.util.keyboard :as kbd]
[goog.events :as events] [goog.events :as events]
@ -25,7 +25,7 @@
(st/emit! (dv/select-shape (:id frame))) (st/emit! (dv/select-shape (:id frame)))
(let [origin (dom/get-target event) (let [origin (dom/get-target event)
over-section? (dom/class? origin "handoff-svg-container") over-section? (dom/class? origin "inspect-svg-container")
layout (dom/get-element "viewer-layout") layout (dom/get-element "viewer-layout")
has-force? (dom/class? layout "force-visible")] has-force? (dom/class? layout "force-visible")]
@ -67,9 +67,9 @@
[:& left-sidebar {:frame frame [:& left-sidebar {:frame frame
:local local :local local
:page page}] :page page}]
[:div.handoff-svg-wrapper {:on-click (handle-select-frame frame)} [:div.inspect-svg-wrapper {:on-click (handle-select-frame frame)}
[:& viewer-pagination {:index index :num-frames (count (:frames page)) :left-bar true :right-bar true}] [:& viewer-pagination {:index index :num-frames (count (:frames page)) :left-bar true :right-bar true}]
[:div.handoff-svg-container [:div.inspect-svg-container
[:& render-frame-svg {:frame frame :page page :local local :size size}]]] [:& render-frame-svg {:frame frame :page page :local local :size size}]]]
[:& right-sidebar {:frame frame [:& right-sidebar {:frame frame

View file

@ -4,21 +4,21 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes (ns app.main.ui.viewer.inspect.attributes
(:require (:require
[app.common.geom.shapes :as gsh] [app.common.geom.shapes :as gsh]
[app.main.ui.hooks :as hooks] [app.main.ui.hooks :as hooks]
[app.main.ui.viewer.handoff.attributes.blur :refer [blur-panel]] [app.main.ui.viewer.inspect.attributes.blur :refer [blur-panel]]
[app.main.ui.viewer.handoff.attributes.fill :refer [fill-panel]] [app.main.ui.viewer.inspect.attributes.fill :refer [fill-panel]]
[app.main.ui.viewer.handoff.attributes.image :refer [image-panel]] [app.main.ui.viewer.inspect.attributes.image :refer [image-panel]]
[app.main.ui.viewer.handoff.attributes.layout :refer [layout-panel]] [app.main.ui.viewer.inspect.attributes.layout :refer [layout-panel]]
[app.main.ui.viewer.handoff.attributes.layout-flex :refer [layout-flex-panel]] [app.main.ui.viewer.inspect.attributes.layout-flex :refer [layout-flex-panel]]
[app.main.ui.viewer.handoff.attributes.layout-flex-element :refer [layout-flex-element-panel]] [app.main.ui.viewer.inspect.attributes.layout-flex-element :refer [layout-flex-element-panel]]
[app.main.ui.viewer.handoff.attributes.shadow :refer [shadow-panel]] [app.main.ui.viewer.inspect.attributes.shadow :refer [shadow-panel]]
[app.main.ui.viewer.handoff.attributes.stroke :refer [stroke-panel]] [app.main.ui.viewer.inspect.attributes.stroke :refer [stroke-panel]]
[app.main.ui.viewer.handoff.attributes.svg :refer [svg-panel]] [app.main.ui.viewer.inspect.attributes.svg :refer [svg-panel]]
[app.main.ui.viewer.handoff.attributes.text :refer [text-panel]] [app.main.ui.viewer.inspect.attributes.text :refer [text-panel]]
[app.main.ui.viewer.handoff.exports :refer [exports]] [app.main.ui.viewer.inspect.exports :refer [exports]]
[rumext.v2 :as mf])) [rumext.v2 :as mf]))
(def type->options (def type->options

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.blur (ns app.main.ui.viewer.inspect.attributes.blur
(:require (:require
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
@ -27,12 +27,12 @@
(when (seq shapes) (when (seq shapes)
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.blur")] [:div.attributes-block-title-text (tr "inspect.attributes.blur")]
(when (= (count shapes) 1) (when (= (count shapes) 1)
[:& copy-button {:data (copy-data (first shapes))}])] [:& copy-button {:data (copy-data (first shapes))}])]
(for [shape shapes] (for [shape shapes]
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.blur.value")] [:div.attributes-label (tr "inspect.attributes.blur.value")]
[:div.attributes-value (-> shape :blur :value) "px"] [:div.attributes-value (-> shape :blur :value) "px"]
[:& copy-button {:data (copy-data shape)}]])]))) [:& copy-button {:data (copy-data shape)}]])])))

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.common (ns app.main.ui.viewer.inspect.attributes.common
(:require (:require
[app.main.store :as st] [app.main.store :as st]
[app.main.ui.components.color-bullet :refer [color-bullet color-name]] [app.main.ui.components.color-bullet :refer [color-bullet color-name]]
@ -58,13 +58,13 @@
(when-not (and on-change-format (:gradient color)) (when-not (and on-change-format (:gradient color))
[:select {:on-change #(-> (dom/get-target-val %) keyword on-change-format)} [:select {:on-change #(-> (dom/get-target-val %) keyword on-change-format)}
[:option {:value "hex"} [:option {:value "hex"}
(tr "handoff.attributes.color.hex")] (tr "inspect.attributes.color.hex")]
[:option {:value "rgba"} [:option {:value "rgba"}
(tr "handoff.attributes.color.rgba")] (tr "inspect.attributes.color.rgba")]
[:option {:value "hsla"} [:option {:value "hsla"}
(tr "handoff.attributes.color.hsla")]])] (tr "inspect.attributes.color.hsla")]])]
(when copy-data (when copy-data
[:& copy-button {:data copy-data}])])) [:& copy-button {:data copy-data}])]))

View file

@ -4,10 +4,10 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.fill (ns app.main.ui.viewer.inspect.attributes.fill
(:require (:require
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.main.ui.viewer.handoff.attributes.common :refer [color-row]] [app.main.ui.viewer.inspect.attributes.common :refer [color-row]]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
[app.util.color :as uc] [app.util.color :as uc]
[app.util.i18n :refer [tr]] [app.util.i18n :refer [tr]]
@ -51,7 +51,7 @@
(when (seq shapes) (when (seq shapes)
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.fill")] [:div.attributes-block-title-text (tr "inspect.attributes.fill")]
(when (= (count shapes) 1) (when (= (count shapes) 1)
[:& copy-button {:data (copy-data (first shapes))}])] [:& copy-button {:data (copy-data (first shapes))}])]

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.image (ns app.main.ui.viewer.inspect.attributes.image
(:require (:require
[app.common.media :as cm] [app.common.media :as cm]
[app.common.pages.helpers :as cph] [app.common.pages.helpers :as cph]
@ -27,12 +27,12 @@
[:img {:src (cf/resolve-file-media (-> shape :metadata))}]]] [:img {:src (cf/resolve-file-media (-> shape :metadata))}]]]
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.image.width")] [:div.attributes-label (tr "inspect.attributes.image.width")]
[:div.attributes-value (-> shape :metadata :width) "px"] [:div.attributes-value (-> shape :metadata :width) "px"]
[:& copy-button {:data (cg/generate-css-props shape :width)}]] [:& copy-button {:data (cg/generate-css-props shape :width)}]]
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.image.height")] [:div.attributes-label (tr "inspect.attributes.image.height")]
[:div.attributes-value (-> shape :metadata :height) "px"] [:div.attributes-value (-> shape :metadata :height) "px"]
[:& copy-button {:data (cg/generate-css-props shape :height)}]] [:& copy-button {:data (cg/generate-css-props shape :height)}]]
@ -42,4 +42,4 @@
[:a.download-button {:target "_blank" [:a.download-button {:target "_blank"
:download (cond-> name extension (str/concat extension)) :download (cond-> name extension (str/concat extension))
:href (cf/resolve-file-media (-> shape :metadata))} :href (cf/resolve-file-media (-> shape :metadata))}
(tr "handoff.attributes.image.download")])])) (tr "inspect.attributes.image.download")])]))

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.layout (ns app.main.ui.viewer.inspect.attributes.layout
(:require (:require
[app.common.types.shape.radius :as ctsr] [app.common.types.shape.radius :as ctsr]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
@ -40,36 +40,36 @@
{:keys [x y]} selrect] {:keys [x y]} selrect]
[:* [:*
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.width")] [:div.attributes-label (tr "inspect.attributes.layout.width")]
[:div.attributes-value (fmt/format-size :width (:width shape) shape)] [:div.attributes-value (fmt/format-size :width (:width shape) shape)]
[:& copy-button {:data (copy-data shape :width)}]] [:& copy-button {:data (copy-data shape :width)}]]
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.height")] [:div.attributes-label (tr "inspect.attributes.layout.height")]
[:div.attributes-value (fmt/format-size :height (:height shape) shape)] [:div.attributes-value (fmt/format-size :height (:height shape) shape)]
[:& copy-button {:data (copy-data shape :height)}]] [:& copy-button {:data (copy-data shape :height)}]]
(when (not= (:x shape) 0) (when (not= (:x shape) 0)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.left")] [:div.attributes-label (tr "inspect.attributes.layout.left")]
[:div.attributes-value (fmt/format-pixels x)] [:div.attributes-value (fmt/format-pixels x)]
[:& copy-button {:data (copy-data selrect :x)}]]) [:& copy-button {:data (copy-data selrect :x)}]])
(when (not= (:y shape) 0) (when (not= (:y shape) 0)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.top")] [:div.attributes-label (tr "inspect.attributes.layout.top")]
[:div.attributes-value (fmt/format-pixels y)] [:div.attributes-value (fmt/format-pixels y)]
[:& copy-button {:data (copy-data selrect :y)}]]) [:& copy-button {:data (copy-data selrect :y)}]])
(when (ctsr/radius-1? shape) (when (ctsr/radius-1? shape)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.radius")] [:div.attributes-label (tr "inspect.attributes.layout.radius")]
[:div.attributes-value (fmt/format-pixels (:rx shape 0))] [:div.attributes-value (fmt/format-pixels (:rx shape 0))]
[:& copy-button {:data (copy-data shape :rx)}]]) [:& copy-button {:data (copy-data shape :rx)}]])
(when (ctsr/radius-4? shape) (when (ctsr/radius-4? shape)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.radius")] [:div.attributes-label (tr "inspect.attributes.layout.radius")]
[:div.attributes-value [:div.attributes-value
(fmt/format-number (:r1 shape)) ", " (fmt/format-number (:r1 shape)) ", "
(fmt/format-number (:r2 shape)) ", " (fmt/format-number (:r2 shape)) ", "
@ -79,7 +79,7 @@
(when (not= (:rotation shape 0) 0) (when (not= (:rotation shape 0) 0)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.layout.rotation")] [:div.attributes-label (tr "inspect.attributes.layout.rotation")]
[:div.attributes-value (fmt/format-number (:rotation shape)) "deg"] [:div.attributes-value (fmt/format-number (:rotation shape)) "deg"]
[:& copy-button {:data (copy-data shape :rotation)}]])])) [:& copy-button {:data (copy-data shape :rotation)}]])]))
@ -88,7 +88,7 @@
[{:keys [shapes]}] [{:keys [shapes]}]
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.size")] [:div.attributes-block-title-text (tr "inspect.attributes.size")]
(when (= (count shapes) 1) (when (= (count shapes) 1)
[:& copy-button {:data (copy-data (first shapes))}])] [:& copy-button {:data (copy-data (first shapes))}])]

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.layout-flex (ns app.main.ui.viewer.inspect.attributes.layout-flex
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]

View file

@ -4,13 +4,13 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.layout-flex-element (ns app.main.ui.viewer.inspect.attributes.layout-flex-element
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.refs :as refs] [app.main.refs :as refs]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.main.ui.formats :as fmt] [app.main.ui.formats :as fmt]
[app.main.ui.viewer.handoff.code :as cd] [app.main.ui.viewer.inspect.code :as cd]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
[cuerdas.core :as str] [cuerdas.core :as str]
[rumext.v2 :as mf])) [rumext.v2 :as mf]))

View file

@ -4,11 +4,11 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.shadow (ns app.main.ui.viewer.inspect.attributes.shadow
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.main.ui.viewer.handoff.attributes.common :refer [color-row]] [app.main.ui.viewer.inspect.attributes.common :refer [color-row]]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
[app.util.i18n :refer [tr]] [app.util.i18n :refer [tr]]
[cuerdas.core :as str] [cuerdas.core :as str]
@ -59,7 +59,7 @@
(when (and (seq shapes) (> (count shapes) 0)) (when (and (seq shapes) (> (count shapes) 0))
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.shadow")]] [:div.attributes-block-title-text (tr "inspect.attributes.shadow")]]
[:div.attributes-shadow-blocks [:div.attributes-shadow-blocks
(for [shape shapes] (for [shape shapes]

View file

@ -4,11 +4,11 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.stroke (ns app.main.ui.viewer.inspect.attributes.stroke
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.main.ui.viewer.handoff.attributes.common :refer [color-row]] [app.main.ui.viewer.inspect.attributes.common :refer [color-row]]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
[app.util.color :as uc] [app.util.color :as uc]
[app.util.i18n :refer [tr]] [app.util.i18n :refer [tr]]
@ -65,19 +65,19 @@
stroke-style (if (= stroke-style :svg) :solid stroke-style) stroke-style (if (= stroke-style :svg) :solid stroke-style)
stroke-alignment (or stroke-alignment :center)] stroke-alignment (or stroke-alignment :center)]
[:div.attributes-stroke-row [:div.attributes-stroke-row
[:div.attributes-label (tr "handoff.attributes.stroke.width")] [:div.attributes-label (tr "inspect.attributes.stroke.width")]
[:div.attributes-value (:stroke-width shape) "px"] [:div.attributes-value (:stroke-width shape) "px"]
;; Execution time translation strings: ;; Execution time translation strings:
;; handoff.attributes.stroke.style.dotted ;; inspect.attributes.stroke.style.dotted
;; handoff.attributes.stroke.style.mixed ;; inspect.attributes.stroke.style.mixed
;; handoff.attributes.stroke.style.none ;; inspect.attributes.stroke.style.none
;; handoff.attributes.stroke.style.solid ;; inspect.attributes.stroke.style.solid
[:div.attributes-value (->> stroke-style d/name (str "handoff.attributes.stroke.style.") (tr))] [:div.attributes-value (->> stroke-style d/name (str "inspect.attributes.stroke.style.") (tr))]
;; Execution time translation strings: ;; Execution time translation strings:
;; handoff.attributes.stroke.alignment.center ;; inspect.attributes.stroke.alignment.center
;; handoff.attributes.stroke.alignment.inner ;; inspect.attributes.stroke.alignment.inner
;; handoff.attributes.stroke.alignment.outer ;; inspect.attributes.stroke.alignment.outer
[:div.attributes-label (->> stroke-alignment d/name (str "handoff.attributes.stroke.alignment.") (tr))] [:div.attributes-label (->> stroke-alignment d/name (str "inspect.attributes.stroke.alignment.") (tr))]
[:& copy-button {:data (copy-stroke-data shape)}]])])) [:& copy-button {:data (copy-stroke-data shape)}]])]))
(mf/defc stroke-panel (mf/defc stroke-panel
@ -86,7 +86,7 @@
(when (seq shapes) (when (seq shapes)
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.stroke")] [:div.attributes-block-title-text (tr "inspect.attributes.stroke")]
(when (= (count shapes) 1) (when (= (count shapes) 1)
[:& copy-button {:data (copy-stroke-data (first shapes))}])] [:& copy-button {:data (copy-stroke-data (first shapes))}])]

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.svg (ns app.main.ui.viewer.inspect.attributes.svg
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]

View file

@ -4,14 +4,14 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.attributes.text (ns app.main.ui.viewer.inspect.attributes.text
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.common.text :as txt] [app.common.text :as txt]
[app.main.fonts :as fonts] [app.main.fonts :as fonts]
[app.main.store :as st] [app.main.store :as st]
[app.main.ui.components.copy-button :refer [copy-button]] [app.main.ui.components.copy-button :refer [copy-button]]
[app.main.ui.viewer.handoff.attributes.common :refer [color-row]] [app.main.ui.viewer.inspect.attributes.common :refer [color-row]]
[app.util.code-gen :as cg] [app.util.code-gen :as cg]
[app.util.color :as uc] [app.util.color :as uc]
[app.util.i18n :refer [tr]] [app.util.i18n :refer [tr]]
@ -115,53 +115,53 @@
(when (:font-id style) (when (:font-id style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.font-family")] [:div.attributes-label (tr "inspect.attributes.typography.font-family")]
[:div.attributes-value (-> style :font-id fonts/get-font-data :name)] [:div.attributes-value (-> style :font-id fonts/get-font-data :name)]
[:& copy-button {:data (copy-style-data style :font-family)}]]) [:& copy-button {:data (copy-style-data style :font-family)}]])
(when (:font-style style) (when (:font-style style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.font-style")] [:div.attributes-label (tr "inspect.attributes.typography.font-style")]
[:div.attributes-value (str (:font-style style))] [:div.attributes-value (str (:font-style style))]
[:& copy-button {:data (copy-style-data style :font-style)}]]) [:& copy-button {:data (copy-style-data style :font-style)}]])
(when (:font-size style) (when (:font-size style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.font-size")] [:div.attributes-label (tr "inspect.attributes.typography.font-size")]
[:div.attributes-value (str (format-number (:font-size style))) "px"] [:div.attributes-value (str (format-number (:font-size style))) "px"]
[:& copy-button {:data (copy-style-data style :font-size)}]]) [:& copy-button {:data (copy-style-data style :font-size)}]])
(when (:line-height style) (when (:line-height style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.line-height")] [:div.attributes-label (tr "inspect.attributes.typography.line-height")]
[:div.attributes-value (format-number (:line-height style))] [:div.attributes-value (format-number (:line-height style))]
[:& copy-button {:data (copy-style-data style :line-height)}]]) [:& copy-button {:data (copy-style-data style :line-height)}]])
(when (:letter-spacing style) (when (:letter-spacing style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.letter-spacing")] [:div.attributes-label (tr "inspect.attributes.typography.letter-spacing")]
[:div.attributes-value (str (format-number (:letter-spacing style))) "px"] [:div.attributes-value (str (format-number (:letter-spacing style))) "px"]
[:& copy-button {:data (copy-style-data style :letter-spacing)}]]) [:& copy-button {:data (copy-style-data style :letter-spacing)}]])
(when (:text-decoration style) (when (:text-decoration style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.text-decoration")] [:div.attributes-label (tr "inspect.attributes.typography.text-decoration")]
;; Execution time translation strings: ;; Execution time translation strings:
;; handoff.attributes.typography.text-decoration.none ;; inspect.attributes.typography.text-decoration.none
;; handoff.attributes.typography.text-decoration.strikethrough ;; inspect.attributes.typography.text-decoration.strikethrough
;; handoff.attributes.typography.text-decoration.underline ;; inspect.attributes.typography.text-decoration.underline
[:div.attributes-value (->> style :text-decoration (str "handoff.attributes.typography.text-decoration.") (tr))] [:div.attributes-value (->> style :text-decoration (str "inspect.attributes.typography.text-decoration.") (tr))]
[:& copy-button {:data (copy-style-data style :text-decoration)}]]) [:& copy-button {:data (copy-style-data style :text-decoration)}]])
(when (:text-transform style) (when (:text-transform style)
[:div.attributes-unit-row [:div.attributes-unit-row
[:div.attributes-label (tr "handoff.attributes.typography.text-transform")] [:div.attributes-label (tr "inspect.attributes.typography.text-transform")]
;; Execution time translation strings: ;; Execution time translation strings:
;; handoff.attributes.typography.text-transform.lowercase ;; inspect.attributes.typography.text-transform.lowercase
;; handoff.attributes.typography.text-transform.none ;; inspect.attributes.typography.text-transform.none
;; handoff.attributes.typography.text-transform.titlecase ;; inspect.attributes.typography.text-transform.titlecase
;; handoff.attributes.typography.text-transform.uppercase ;; inspect.attributes.typography.text-transform.uppercase
[:div.attributes-value (->> style :text-transform (str "handoff.attributes.typography.text-transform.") (tr))] [:div.attributes-value (->> style :text-transform (str "inspect.attributes.typography.text-transform.") (tr))]
[:& copy-button {:data (copy-style-data style :text-transform)}]]) [:& copy-button {:data (copy-style-data style :text-transform)}]])
[:div.attributes-content-row [:div.attributes-content-row
@ -185,7 +185,7 @@
(when-let [shapes (seq (filter has-text? shapes))] (when-let [shapes (seq (filter has-text? shapes))]
[:div.attributes-block [:div.attributes-block
[:div.attributes-block-title [:div.attributes-block-title
[:div.attributes-block-title-text (tr "handoff.attributes.typography")]] [:div.attributes-block-title-text (tr "inspect.attributes.typography")]]
(for [shape shapes] (for [shape shapes]
[:& text-block {:shape shape [:& text-block {:shape shape

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.code (ns app.main.ui.viewer.inspect.code
(:require (:require
["js-beautify" :as beautify] ["js-beautify" :as beautify]
[app.common.data.macros :as dm] [app.common.data.macros :as dm]
@ -76,7 +76,7 @@
(mf/deps @markup-type) (mf/deps @markup-type)
(fn [] (fn []
(st/emit! (ptk/event ::ev/event (st/emit! (ptk/event ::ev/event
{::ev/name "copy-handoff-code" {::ev/name "copy-inspect-code"
:type @markup-type})))) :type @markup-type}))))
on-style-copied on-style-copied
@ -84,7 +84,7 @@
(mf/deps @style-type) (mf/deps @style-type)
(fn [] (fn []
(st/emit! (ptk/event ::ev/event (st/emit! (ptk/event ::ev/event
{::ev/name "copy-handoff-style" {::ev/name "copy-inspect-style"
:type @style-type}))))] :type @style-type}))))]
[:div.element-options [:div.element-options

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.exports (ns app.main.ui.viewer.inspect.exports
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.data.exports :as de] [app.main.data.exports :as de]

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.left-sidebar (ns app.main.ui.viewer.inspect.left-sidebar
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.main.data.viewer :as dv] [app.main.data.viewer :as dv]

View file

@ -4,8 +4,8 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.render (ns app.main.ui.viewer.inspect.render
"The main container for a frame in handoff mode" "The main container for a frame in inspect mode"
(:require (:require
[app.common.geom.shapes :as gsh] [app.common.geom.shapes :as gsh]
[app.common.pages.helpers :as cph] [app.common.pages.helpers :as cph]
@ -21,7 +21,7 @@
[app.main.ui.shapes.shape :refer [shape-container]] [app.main.ui.shapes.shape :refer [shape-container]]
[app.main.ui.shapes.svg-raw :as svg-raw] [app.main.ui.shapes.svg-raw :as svg-raw]
[app.main.ui.shapes.text :as text] [app.main.ui.shapes.text :as text]
[app.main.ui.viewer.handoff.selection-feedback :refer [selection-feedback]] [app.main.ui.viewer.inspect.selection-feedback :refer [selection-feedback]]
[app.main.ui.viewer.interactions :refer [prepare-objects]] [app.main.ui.viewer.interactions :refer [prepare-objects]]
[app.util.dom :as dom] [app.util.dom :as dom]
[app.util.object :as obj] [app.util.object :as obj]

View file

@ -4,23 +4,23 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.right-sidebar (ns app.main.ui.viewer.inspect.right-sidebar
(:require (:require
[app.main.data.workspace :as dw] [app.main.data.workspace :as dw]
[app.main.store :as st] [app.main.store :as st]
[app.main.ui.components.shape-icon :as si] [app.main.ui.components.shape-icon :as si]
[app.main.ui.components.tab-container :refer [tab-container tab-element]] [app.main.ui.components.tab-container :refer [tab-container tab-element]]
[app.main.ui.icons :as i] [app.main.ui.icons :as i]
[app.main.ui.viewer.handoff.attributes :refer [attributes]] [app.main.ui.viewer.inspect.attributes :refer [attributes]]
[app.main.ui.viewer.handoff.code :refer [code]] [app.main.ui.viewer.inspect.code :refer [code]]
[app.main.ui.viewer.handoff.selection-feedback :refer [resolve-shapes]] [app.main.ui.viewer.inspect.selection-feedback :refer [resolve-shapes]]
[app.util.dom :as dom] [app.util.dom :as dom]
[app.util.i18n :refer [tr]] [app.util.i18n :refer [tr]]
[rumext.v2 :as mf])) [rumext.v2 :as mf]))
(mf/defc right-sidebar (mf/defc right-sidebar
[{:keys [frame page file selected shapes page-id file-id from] [{:keys [frame page file selected shapes page-id file-id from]
:or {from :handoff}}] :or {from :inspect}}]
(let [expanded (mf/use-state false) (let [expanded (mf/use-state false)
section (mf/use-state :info #_:code) section (mf/use-state :info #_:code)
shapes (or shapes shapes (or shapes
@ -38,22 +38,22 @@
(if (> (count shapes) 1) (if (> (count shapes) 1)
[:* [:*
[:span.tool-window-bar-icon i/layers] [:span.tool-window-bar-icon i/layers]
[:span.tool-window-bar-title (tr "handoff.tabs.code.selected.multiple" (count shapes))]] [:span.tool-window-bar-title (tr "inspect.tabs.code.selected.multiple" (count shapes))]]
[:* [:*
[:span.tool-window-bar-icon [:span.tool-window-bar-icon
[:& si/element-icon {:shape first-shape}]] [:& si/element-icon {:shape first-shape}]]
;; Execution time translation strings: ;; Execution time translation strings:
;; handoff.tabs.code.selected.circle ;; inspect.tabs.code.selected.circle
;; handoff.tabs.code.selected.component ;; inspect.tabs.code.selected.component
;; handoff.tabs.code.selected.curve ;; inspect.tabs.code.selected.curve
;; handoff.tabs.code.selected.frame ;; inspect.tabs.code.selected.frame
;; handoff.tabs.code.selected.group ;; inspect.tabs.code.selected.group
;; handoff.tabs.code.selected.image ;; inspect.tabs.code.selected.image
;; handoff.tabs.code.selected.mask ;; inspect.tabs.code.selected.mask
;; handoff.tabs.code.selected.path ;; inspect.tabs.code.selected.path
;; handoff.tabs.code.selected.rect ;; inspect.tabs.code.selected.rect
;; handoff.tabs.code.selected.svg-raw ;; inspect.tabs.code.selected.svg-raw
;; handoff.tabs.code.selected.text ;; inspect.tabs.code.selected.text
[:span.tool-window-bar-title (:name first-shape)]])] [:span.tool-window-bar-title (:name first-shape)]])]
[:div.tool-window-content.inspect [:div.tool-window-content.inspect
[:& tab-container {:on-change-tab #(do [:& tab-container {:on-change-tab #(do
@ -62,14 +62,14 @@
(when (= from :workspace) (when (= from :workspace)
(dw/set-inspect-expanded false))) (dw/set-inspect-expanded false)))
:selected @section} :selected @section}
[:& tab-element {:id :info :title (tr "handoff.tabs.info")} [:& tab-element {:id :info :title (tr "inspect.tabs.info")}
[:& attributes {:page-id page-id [:& attributes {:page-id page-id
:file-id file-id :file-id file-id
:frame frame :frame frame
:shapes shapes :shapes shapes
:from from}]] :from from}]]
[:& tab-element {:id :code :title (tr "handoff.tabs.code")} [:& tab-element {:id :code :title (tr "inspect.tabs.code")}
[:& code {:frame frame [:& code {:frame frame
:shapes shapes :shapes shapes
:on-expand (fn [] :on-expand (fn []
@ -79,7 +79,7 @@
:from from}]]]]] :from from}]]]]]
[:div.empty [:div.empty
[:span.tool-window-bar-icon i/code] [:span.tool-window-bar-icon i/code]
[:div (tr "handoff.empty.select")] [:div (tr "inspect.empty.select")]
[:span.tool-window-bar-icon i/help] [:span.tool-window-bar-icon i/help]
[:div (tr "handoff.empty.help")] [:div (tr "inspect.empty.help")]
[:button.btn-primary.action {:on-click #(dom/open-new-window "https://help.penpot.app/user-guide/inspect/")} (tr "handoff.empty.more-info")]])]])) [:button.btn-primary.action {:on-click #(dom/open-new-window "https://help.penpot.app/user-guide/inspect/")} (tr "inspect.empty.more-info")]])]]))

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app.main.ui.viewer.handoff.selection-feedback (ns app.main.ui.viewer.inspect.selection-feedback
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.common.geom.shapes :as gsh] [app.common.geom.shapes :as gsh]

View file

@ -14,7 +14,7 @@
[app.main.store :as st] [app.main.store :as st]
[app.main.ui.components.tab-container :refer [tab-container tab-element]] [app.main.ui.components.tab-container :refer [tab-container tab-element]]
[app.main.ui.context :as ctx] [app.main.ui.context :as ctx]
[app.main.ui.viewer.handoff.right-sidebar :as hrs] [app.main.ui.viewer.inspect.right-sidebar :as hrs]
[app.main.ui.workspace.sidebar.options.menus.align :refer [align-options]] [app.main.ui.workspace.sidebar.options.menus.align :refer [align-options]]
[app.main.ui.workspace.sidebar.options.menus.bool :refer [bool-options]] [app.main.ui.workspace.sidebar.options.menus.bool :refer [bool-options]]
[app.main.ui.workspace.sidebar.options.menus.exports :refer [exports-menu]] [app.main.ui.workspace.sidebar.options.menus.exports :refer [exports-menu]]

View file

@ -141,7 +141,7 @@
;; shortcuts.open-color-picker ;; shortcuts.open-color-picker
;; shortcuts.open-comments ;; shortcuts.open-comments
;; shortcuts.open-dashboard ;; shortcuts.open-dashboard
;; shortcuts.open-handoff ;; shortcuts.open-inspect
;; shortcuts.open-interactions ;; shortcuts.open-interactions
;; shortcuts.open-viewer ;; shortcuts.open-viewer
;; shortcuts.open-workspace ;; shortcuts.open-workspace

View file

@ -204,7 +204,7 @@
(reduce d/merge))) (reduce d/merge)))
;; TODO: used on handoff ;; TODO: used on inspect
(defn parse-style-text-blocks (defn parse-style-text-blocks
[node attrs] [node attrs]
(letfn (letfn

View file

@ -849,7 +849,7 @@ msgstr "يجب أن تقبل شروط الخدمة وسياسة الخصوصية
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "حدث خطأ غير متوقع." msgstr "حدث خطأ غير متوقع."
@ -919,216 +919,216 @@ msgstr "حساب دعم تويتر"
msgid "generic.error" msgid "generic.error"
msgstr "حدث خطأ" msgstr "حدث خطأ"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "الضبابية" msgstr "الضبابية"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "قيمة" msgstr "قيمة"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "ملء" msgstr "ملء"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "تحميل صورة المصدر" msgstr "تحميل صورة المصدر"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "ارتفاع" msgstr "ارتفاع"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "تخطيط" msgstr "تخطيط"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "ارتفاع" msgstr "ارتفاع"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "يسار" msgstr "يسار"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "نصف قطر" msgstr "نصف قطر"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "دوران" msgstr "دوران"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "أعلى" msgstr "أعلى"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "ظل" msgstr "ظل"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "لون الحدّ" msgstr "لون الحدّ"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "مركز" msgstr "مركز"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "داخل" msgstr "داخل"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "خارج" msgstr "خارج"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "منقط" msgstr "منقط"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "مختلط" msgstr "مختلط"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "لا أحد" msgstr "لا أحد"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "صلب" msgstr "صلب"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "صياغة الحروف" msgstr "صياغة الحروف"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "عائلة الخط" msgstr "عائلة الخط"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "حجم الخط" msgstr "حجم الخط"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "نوع الخط" msgstr "نوع الخط"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "تباعد الحروف" msgstr "تباعد الحروف"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "ارتفاع الخط" msgstr "ارتفاع الخط"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "زخرفة النص" msgstr "زخرفة النص"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "لا شئ" msgstr "لا شئ"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "يتوسطه خط" msgstr "يتوسطه خط"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "مسطر" msgstr "مسطر"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "تغيير النص" msgstr "تغيير النص"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "أحرف صغيرة" msgstr "أحرف صغيرة"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "لا شئ" msgstr "لا شئ"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "حالة العنوان" msgstr "حالة العنوان"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "الأحرف الكبيرة" msgstr "الأحرف الكبيرة"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "شفرة" msgstr "شفرة"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "دائرة" msgstr "دائرة"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "مكون" msgstr "مكون"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "منحنى" msgstr "منحنى"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "لوح الرسم" msgstr "لوح الرسم"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "مجموعة" msgstr "مجموعة"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "صورة" msgstr "صورة"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "قناع" msgstr "قناع"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s محدد" msgstr "%s محدد"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "مسار" msgstr "مسار"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "رباعي" msgstr "رباعي"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "نص" msgstr "نص"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "معلومات" msgstr "معلومات"
msgid "history.alert-message" msgid "history.alert-message"
@ -2478,7 +2478,7 @@ msgstr "الأعضاء - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "الإعدادات - %s - Penpot" msgstr "الإعدادات - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - وضع العرض - Penpot" msgstr "%s - وضع العرض - Penpot"
@ -2486,11 +2486,11 @@ msgstr "%s - وضع العرض - Penpot"
msgid "title.workspace" msgid "title.workspace"
msgstr "%s - Penpot" msgstr "%s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "لم يتم العثور على لوحات الرسم على الصفحة." msgstr "لم يتم العثور على لوحات الرسم على الصفحة."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "لوح الرسم غير موجود." msgstr "لوح الرسم غير موجود."
@ -2694,8 +2694,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "ارتفاع الخط" msgstr "ارتفاع الخط"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "مثال" msgstr "مثال"
@ -2966,12 +2966,12 @@ msgid "workspace.options.design"
msgstr "تصميم" msgstr "تصميم"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "تصدير" msgstr "تصدير"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "تصدير 0 عنصر" msgstr "تصدير 0 عنصر"
@ -2980,7 +2980,7 @@ msgid "workspace.options.export.suffix"
msgstr "لاحقة" msgstr "لاحقة"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "جارٍ التصدير …" msgstr "جارٍ التصدير …"

View file

@ -848,7 +848,7 @@ msgstr ""
"Heu d'acceptar les nostres condicions del servei i la política de " "Heu d'acceptar les nostres condicions del servei i la política de "
"privacitat." "privacitat."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "S'ha produït un error inesperat." msgstr "S'ha produït un error inesperat."
@ -919,218 +919,218 @@ msgstr "Compte de Twitter d'ajuda"
msgid "generic.error" msgid "generic.error"
msgstr "S'ha produït un error" msgstr "S'ha produït un error"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Difuminat" msgstr "Difuminat"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valor" msgstr "Valor"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Emplenat" msgstr "Emplenat"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Baixa la imatge original" msgstr "Baixa la imatge original"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Alçada" msgstr "Alçada"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Amplada" msgstr "Amplada"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Disposició" msgstr "Disposició"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Alçada" msgstr "Alçada"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Esquerra" msgstr "Esquerra"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radi" msgstr "Radi"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotació" msgstr "Rotació"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Superior" msgstr "Superior"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Amplada" msgstr "Amplada"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Ombra" msgstr "Ombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Traç" msgstr "Traç"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centre" msgstr "Centre"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interior" msgstr "Interior"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Exterior" msgstr "Exterior"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Puntejat" msgstr "Puntejat"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixte" msgstr "Mixte"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Cap" msgstr "Cap"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Sòlid" msgstr "Sòlid"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Amplada" msgstr "Amplada"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografia" msgstr "Tipografia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Família tipogràfica" msgstr "Família tipogràfica"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Mida de la lletra" msgstr "Mida de la lletra"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Estil de la lletra" msgstr "Estil de la lletra"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Espaiat de la lletra" msgstr "Espaiat de la lletra"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Alçada de la línia" msgstr "Alçada de la línia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decoració del text" msgstr "Decoració del text"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Cap" msgstr "Cap"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Barrat" msgstr "Barrat"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Subratllat" msgstr "Subratllat"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformació del text" msgstr "Transformació del text"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minúscules" msgstr "Minúscules"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Cap" msgstr "Cap"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Inicials en majúscules" msgstr "Inicials en majúscules"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Majúscules" msgstr "Majúscules"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Codi" msgstr "Codi"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Cercle" msgstr "Cercle"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Component" msgstr "Component"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Corba" msgstr "Corba"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Tauler" msgstr "Tauler"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grup" msgstr "Grup"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imatge" msgstr "Imatge"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Màscara" msgstr "Màscara"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s seleccionats" msgstr "%s seleccionats"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Camí" msgstr "Camí"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectangle" msgstr "Rectangle"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Text" msgstr "Text"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informació" msgstr "Informació"
msgid "history.alert-message" msgid "history.alert-message"
@ -2336,9 +2336,6 @@ msgstr "Ves als comentaris del visor"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Ves al panell de control" msgstr "Ves al panell de control"
msgid "shortcuts.open-handoff"
msgstr "Ves a la secció de lliurament al visor"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Ves a les interaccions del visor" msgstr "Ves a les interaccions del visor"
@ -2522,7 +2519,7 @@ msgstr "Membres - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Configuració - %s - Penpot" msgstr "Configuració - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Visor - Penpot" msgstr "%s - Visor - Penpot"
@ -2538,11 +2535,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Ho sentim!" msgstr "Ho sentim!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "No s'ha trobat cap tauler a la pàgina." msgstr "No s'ha trobat cap tauler a la pàgina."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "No s'ha trobat el tauler." msgstr "No s'ha trobat el tauler."
@ -2557,9 +2554,6 @@ msgstr "No mostris les interaccions"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Pantalla completa" msgstr "Pantalla completa"
msgid "viewer.header.handoff-section"
msgstr "Lliurament (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interaccions" msgstr "Interaccions"
@ -2742,7 +2736,7 @@ msgstr "Espaiat de la lletra"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Alçada de la línia" msgstr "Alçada de la línia"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3119,15 +3113,15 @@ msgstr "Superior i inferior"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Disseny" msgstr "Disseny"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exporta" msgstr "Exporta"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exporta la selecció" msgstr "Exporta la selecció"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "Exporta 1 element" msgstr "Exporta 1 element"
@ -3135,19 +3129,19 @@ msgstr "Exporta 1 element"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Sufix" msgstr "Sufix"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Exportació completa" msgstr "Exportació completa"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "S'està exportant…" msgstr "S'està exportant…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Exportació fallida" msgstr "Exportació fallida"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Exportació inesperadament lenta" msgstr "Exportació inesperadament lenta"
@ -3658,7 +3652,7 @@ msgstr "Cantons individuals"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Recent" msgstr "Recent"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Torna-ho a provar" msgstr "Torna-ho a provar"
@ -4159,7 +4153,7 @@ msgstr "Formes"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Textos" msgstr "Textos"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Atributs SVG importats" msgstr "Atributs SVG importats"

View file

@ -884,7 +884,7 @@ msgstr ""
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Ein unerwarteter Fehler ist aufgetreten." msgstr "Ein unerwarteter Fehler ist aufgetreten."
@ -957,216 +957,216 @@ msgstr "Twitter Support-Konto"
msgid "generic.error" msgid "generic.error"
msgstr "Ein Fehler ist aufgetreten" msgstr "Ein Fehler ist aufgetreten"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Unschärfe" msgstr "Unschärfe"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Wert" msgstr "Wert"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Fläche" msgstr "Fläche"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Originalbild herunterladen" msgstr "Originalbild herunterladen"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Höhe" msgstr "Höhe"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Breite" msgstr "Breite"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Layout" msgstr "Layout"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Höhe" msgstr "Höhe"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Links" msgstr "Links"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radius" msgstr "Radius"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Drehung" msgstr "Drehung"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Oben" msgstr "Oben"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Breite" msgstr "Breite"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Schatten" msgstr "Schatten"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Rahmen" msgstr "Rahmen"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Zentriert" msgstr "Zentriert"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Innen" msgstr "Innen"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Außen" msgstr "Außen"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Gepunktet" msgstr "Gepunktet"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mehrere" msgstr "Mehrere"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Keine" msgstr "Keine"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solid" msgstr "Solid"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Breite" msgstr "Breite"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Typografie" msgstr "Typografie"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Schriftart" msgstr "Schriftart"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Schriftgröße" msgstr "Schriftgröße"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Schriftstil" msgstr "Schriftstil"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Zeichenabstand" msgstr "Zeichenabstand"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Zeilenabstand" msgstr "Zeilenabstand"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Textdekoration" msgstr "Textdekoration"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Keine" msgstr "Keine"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Durchgestrichen" msgstr "Durchgestrichen"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Unterstrichen" msgstr "Unterstrichen"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Texttransformation" msgstr "Texttransformation"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Kleinbuchstaben" msgstr "Kleinbuchstaben"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Keine" msgstr "Keine"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Kapitälchen" msgstr "Kapitälchen"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Großbuchstaben" msgstr "Großbuchstaben"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Code" msgstr "Code"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Kreis" msgstr "Kreis"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Komponente" msgstr "Komponente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Kurve" msgstr "Kurve"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Zeichenfläche" msgstr "Zeichenfläche"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Gruppe" msgstr "Gruppe"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Bild" msgstr "Bild"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maske" msgstr "Maske"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Ausgewählt(e)" msgstr "%s Ausgewählt(e)"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Pfad" msgstr "Pfad"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rechteck" msgstr "Rechteck"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Text" msgstr "Text"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Info" msgstr "Info"
msgid "history.alert-message" msgid "history.alert-message"
@ -2586,9 +2586,6 @@ msgstr "Zum Kommentarbereich im Ansichtsmodus"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Zum Dashboard" msgstr "Zum Dashboard"
msgid "shortcuts.open-handoff"
msgstr "Zur Übergabe im Ansichtsmodus"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Zur Zuschauerinteraktionen" msgstr "Zur Zuschauerinteraktionen"
@ -2772,7 +2769,7 @@ msgstr "Mitglieder - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Einstellungen - %s - Penpot" msgstr "Einstellungen - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Ansichtsmodus - Penpot" msgstr "%s - Ansichtsmodus - Penpot"
@ -2788,11 +2785,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Entschuldigung!" msgstr "Entschuldigung!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Keine Zeichenflächen auf der Seite gefunden." msgstr "Keine Zeichenflächen auf der Seite gefunden."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Keine Zeichenfläche gefunden." msgstr "Keine Zeichenfläche gefunden."
@ -2807,9 +2804,6 @@ msgstr "Interaktionen nicht anzeigen"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Vollbildmodus" msgstr "Vollbildmodus"
msgid "viewer.header.handoff-section"
msgstr "Übergabe (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interaktionen" msgstr "Interaktionen"
@ -3006,8 +3000,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "Zeilenabstand" msgstr "Zeilenabstand"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3391,12 +3385,12 @@ msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportieren" msgstr "Exportieren"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Auswahl exportieren" msgstr "Auswahl exportieren"
@ -3405,22 +3399,22 @@ msgid "workspace.options.export.suffix"
msgstr "Suffix" msgstr "Suffix"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Export abgeschlossen" msgstr "Export abgeschlossen"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exportiere…" msgstr "Exportiere…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Export fehlgeschlagen" msgstr "Export fehlgeschlagen"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Export unerwartet langsam" msgstr "Export unerwartet langsam"
@ -3977,7 +3971,7 @@ msgid "workspace.options.recent-fonts"
msgstr "Aktuell" msgstr "Aktuell"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Wiederholen" msgstr "Wiederholen"
@ -4509,7 +4503,7 @@ msgid "workspace.sidebar.layers.texts"
msgstr "Texte" msgstr "Texte"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs,
#: src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Importierte SVG-Attribute" msgstr "Importierte SVG-Attribute"

View file

@ -453,7 +453,7 @@ msgstr ""
"Πρέπει να αποδεχτείτε τους όρους παροχής υπηρεσιών και την πολιτική " "Πρέπει να αποδεχτείτε τους όρους παροχής υπηρεσιών και την πολιτική "
"απορρήτου." "απορρήτου."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Προέκυψε ένα μη αναμενόμενο σφάλμα." msgstr "Προέκυψε ένα μη αναμενόμενο σφάλμα."
@ -500,212 +500,212 @@ msgstr "Email"
msgid "generic.error" msgid "generic.error"
msgstr "Παρουσιάστηκε σφάλμα" msgstr "Παρουσιάστηκε σφάλμα"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Θολούρα" msgstr "Θολούρα"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "αξία" msgstr "αξία"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Γέμισμα" msgstr "Γέμισμα"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Λήψη εικόνας πηγής" msgstr "Λήψη εικόνας πηγής"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Υψος" msgstr "Υψος"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Πλάτος" msgstr "Πλάτος"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Διάταξη" msgstr "Διάταξη"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Υψος" msgstr "Υψος"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Αριστερά" msgstr "Αριστερά"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Aκτίνα" msgstr "Aκτίνα"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Περιστροφή" msgstr "Περιστροφή"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Πάνω" msgstr "Πάνω"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Πλάτος" msgstr "Πλάτος"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Σκιά " msgstr "Σκιά "
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "περίγραμμα" msgstr "περίγραμμα"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Κέντρο" msgstr "Κέντρο"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Μέσα" msgstr "Μέσα"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Εξω" msgstr "Εξω"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Διάστικτο" msgstr "Διάστικτο"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Μικτός" msgstr "Μικτός"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Κανένας" msgstr "Κανένας"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Στερεός" msgstr "Στερεός"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Πλάτος" msgstr "Πλάτος"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Τυπογραφία" msgstr "Τυπογραφία"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Οικογένεια γραμματοσειρών" msgstr "Οικογένεια γραμματοσειρών"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Μέγεθος γραμματοσειράς" msgstr "Μέγεθος γραμματοσειράς"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Στυλ γραμματοσειράς" msgstr "Στυλ γραμματοσειράς"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Διάστημα γραμμάτων" msgstr "Διάστημα γραμμάτων"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Ύψος γραμμής" msgstr "Ύψος γραμμής"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Διακόσμηση κειμένου" msgstr "Διακόσμηση κειμένου"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Κανένα" msgstr "Κανένα"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "διαγραφή" msgstr "διαγραφή"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "υπογράμμιση" msgstr "υπογράμμιση"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Μετασχηματισμός κειμένου" msgstr "Μετασχηματισμός κειμένου"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Πεζά γράμματα" msgstr "Πεζά γράμματα"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Κανένα" msgstr "Κανένα"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Πρώτα κεφαλαία" msgstr "Πρώτα κεφαλαία"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Κεφαλαία γράμματα" msgstr "Κεφαλαία γράμματα"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Κώδικας" msgstr "Κώδικας"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Κύκλος" msgstr "Κύκλος"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Κυρτότητα" msgstr "Κυρτότητα"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Τραπέζι εργασίας" msgstr "Τραπέζι εργασίας"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Ομάδα" msgstr "Ομάδα"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Εικόνα" msgstr "Εικόνα"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Επιλεγμένα" msgstr "%s Επιλεγμένα"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Σχέδιο" msgstr "Σχέδιο"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Ορθωγώνιο" msgstr "Ορθωγώνιο"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Κείμενο" msgstr "Κείμενο"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Πληροφορίες" msgstr "Πληροφορίες"
msgid "history.alert-message" msgid "history.alert-message"
@ -1214,11 +1214,11 @@ msgstr "Μεταβείτε στη σύνδεση"
msgid "settings.multiple" msgid "settings.multiple"
msgstr "Μικτός " msgstr "Μικτός "
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Δεν βρέθηκαν πλαίσια στη σελίδα" msgstr "Δεν βρέθηκαν πλαίσια στη σελίδα"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Το πλαίσιο δεν βρέθηκε." msgstr "Το πλαίσιο δεν βρέθηκε."
@ -1377,7 +1377,7 @@ msgstr "Διάστημα γραμμάτων"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Υψος γραμμής" msgstr "Υψος γραμμής"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -1591,11 +1591,11 @@ msgstr "Συστατικό"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Σχέδιο" msgstr "Σχέδιο"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Εξαγωγή" msgstr "Εξαγωγή"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "Εξαγωγή σχήματος" msgstr "Εξαγωγή σχήματος"
@ -1603,7 +1603,7 @@ msgstr "Εξαγωγή σχήματος"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Κατάληξη" msgstr "Κατάληξη"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Εξαγωγή ..." msgstr "Εξαγωγή ..."
@ -2099,7 +2099,7 @@ msgstr "Ιστορικό (%s)"
msgid "workspace.sidebar.layers" msgid "workspace.sidebar.layers"
msgstr "στρώσεις" msgstr "στρώσεις"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Εισαγόμενα χαρακτηριστικά SVG" msgstr "Εισαγόμενα χαρακτηριστικά SVG"

View file

@ -858,7 +858,7 @@ msgstr "The member you try to assign does not exist."
msgid "errors.team-leave.owner-cant-leave" msgid "errors.team-leave.owner-cant-leave"
msgstr "Owner can't leave team, you must reassign the owner role." msgstr "Owner can't leave team, you must reassign the owner role."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "An unexpected error occurred." msgstr "An unexpected error occurred."
@ -922,215 +922,215 @@ msgstr "Twitter support account"
msgid "generic.error" msgid "generic.error"
msgstr "An error has occurred" msgstr "An error has occurred"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Blur" msgstr "Blur"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Value" msgstr "Value"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Fill" msgstr "Fill"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Download source image" msgstr "Download source image"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Height" msgstr "Height"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Width" msgstr "Width"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Layout" msgstr "Layout"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Height" msgstr "Height"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Left" msgstr "Left"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radius" msgstr "Radius"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotation" msgstr "Rotation"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Top" msgstr "Top"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Width" msgstr "Width"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Shadow" msgstr "Shadow"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.size" msgid "inspect.attributes.size"
msgstr "Size and position" msgstr "Size and position"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Stroke" msgstr "Stroke"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Center" msgstr "Center"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Inside" msgstr "Inside"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Outside" msgstr "Outside"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Dotted" msgstr "Dotted"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixed" msgstr "Mixed"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "None" msgstr "None"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solid" msgstr "Solid"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Width" msgstr "Width"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Typography" msgstr "Typography"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Font Family" msgstr "Font Family"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Font Size" msgstr "Font Size"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Font Style" msgstr "Font Style"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Letter Spacing" msgstr "Letter Spacing"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Line Height" msgstr "Line Height"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Text Decoration" msgstr "Text Decoration"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "None" msgstr "None"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Strikethrough" msgstr "Strikethrough"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Underline" msgstr "Underline"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Text Transform" msgstr "Text Transform"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Lower Case" msgstr "Lower Case"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "None" msgstr "None"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Title Case" msgstr "Title Case"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Upper Case" msgstr "Upper Case"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Code" msgstr "Code"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Circle" msgstr "Circle"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Component" msgstr "Component"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curve" msgstr "Curve"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Board" msgstr "Board"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Group" msgstr "Group"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Image" msgstr "Image"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Mask" msgstr "Mask"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Selected" msgstr "%s Selected"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Path" msgstr "Path"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectangle" msgstr "Rectangle"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Text" msgstr "Text"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Info" msgstr "Info"
msgid "handoff.empty.select" msgid "inspect.empty.select"
msgstr "Select a shape, board or group to inspect their properties and code" msgstr "Select a shape, board or group to inspect their properties and code"
msgid "handoff.empty.help" msgid "inspect.empty.help"
msgstr "If you want to know more about design inspect visit Penpot's help center" msgstr "If you want to know more about design inspect visit Penpot's help center"
msgid "handoff.empty.more-info" msgid "inspect.empty.more-info"
msgstr "More info about inspect" msgstr "More info about inspect"
#: src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/header.cljs
@ -2419,8 +2419,8 @@ msgstr "Go to viewer comment section"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Go to dashboard" msgstr "Go to dashboard"
msgid "shortcuts.open-handoff" msgid "shortcuts.open-inspect"
msgstr "Go to viewer handoff section" msgstr "Go to viewer inspect section"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Go to viewer interactions section" msgstr "Go to viewer interactions section"
@ -2608,7 +2608,7 @@ msgstr "Members - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Settings - %s - Penpot" msgstr "Settings - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - View mode - Penpot" msgstr "%s - View mode - Penpot"
@ -2624,11 +2624,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Sorry!" msgstr "Sorry!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "No boards found on the page." msgstr "No boards found on the page."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Board not found." msgstr "Board not found."
@ -2643,8 +2643,8 @@ msgstr "Don't show interactions"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Full Screen" msgstr "Full Screen"
msgid "viewer.header.handoff-section" msgid "viewer.header.inspect-section"
msgstr "Handoff (%s)" msgstr "Inspect (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
@ -2810,7 +2810,7 @@ msgstr "Letter Spacing"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Line Height" msgstr "Line Height"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3164,15 +3164,15 @@ msgstr "Top & Bottom"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Export" msgstr "Export"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Export selection" msgstr "Export selection"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Export 1 element" msgstr[0] "Export 1 element"
@ -3182,19 +3182,19 @@ msgstr[1] "Export %s elements"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Suffix" msgstr "Suffix"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Export complete" msgstr "Export complete"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exporting…" msgstr "Exporting…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Export failed" msgstr "Export failed"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Export unexpectedly slow" msgstr "Export unexpectedly slow"
@ -3747,7 +3747,7 @@ msgstr "Individual corners"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Recent" msgstr "Recent"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Retry" msgstr "Retry"
@ -4270,7 +4270,7 @@ msgstr "Shapes"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Texts" msgstr "Texts"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Imported SVG Attributes" msgstr "Imported SVG Attributes"

View file

@ -934,7 +934,7 @@ msgstr "Debes aceptar nuestros términos de servicio y política de privacidad."
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Ha ocurrido un error inesperado." msgstr "Ha ocurrido un error inesperado."
@ -1015,229 +1015,229 @@ msgstr "Cuenta de Twitter para soporte"
msgid "generic.error" msgid "generic.error"
msgstr "Ha ocurrido un error" msgstr "Ha ocurrido un error"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Desenfocado" msgstr "Desenfocado"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valor" msgstr "Valor"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Relleno" msgstr "Relleno"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Descargar imagen original" msgstr "Descargar imagen original"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Estructura" msgstr "Estructura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Izquierda" msgstr "Izquierda"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radio" msgstr "Radio"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotación" msgstr "Rotación"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Arriba" msgstr "Arriba"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Sombra" msgstr "Sombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.size" msgid "inspect.attributes.size"
msgstr "Tamaño y posición" msgstr "Tamaño y posición"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Borde" msgstr "Borde"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centro" msgstr "Centro"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interior" msgstr "Interior"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Exterior" msgstr "Exterior"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Punteado" msgstr "Punteado"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixto" msgstr "Mixto"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Ninguno" msgstr "Ninguno"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Sólido" msgstr "Sólido"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografía" msgstr "Tipografía"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Familia tipográfica" msgstr "Familia tipográfica"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Tamaño de fuente" msgstr "Tamaño de fuente"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Estilo de fuente" msgstr "Estilo de fuente"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Espaciado de letras" msgstr "Espaciado de letras"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Interlineado" msgstr "Interlineado"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decoración de texto" msgstr "Decoración de texto"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Ninguna" msgstr "Ninguna"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Tachar" msgstr "Tachar"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Subrayar" msgstr "Subrayar"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformación de texto" msgstr "Transformación de texto"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minúsculas" msgstr "Minúsculas"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Ninguna" msgstr "Ninguna"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Primera en mayúscula" msgstr "Primera en mayúscula"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Mayúsculas" msgstr "Mayúsculas"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Código" msgstr "Código"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Círculo" msgstr "Círculo"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Componente" msgstr "Componente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curva" msgstr "Curva"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Mesa de trabajo" msgstr "Mesa de trabajo"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupo" msgstr "Grupo"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imagen" msgstr "Imagen"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Máscara" msgstr "Máscara"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Seleccionado" msgstr "%s Seleccionado"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Trazado" msgstr "Trazado"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectángulo" msgstr "Rectángulo"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Texto" msgstr "Texto"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Información" msgstr "Información"
msgid "handoff.empty.select" msgid "inspect.empty.select"
msgstr "Elige una forma, tablero o grupo para inspeccionar sus propiedades y código" msgstr "Elige una forma, tablero o grupo para inspeccionar sus propiedades y código"
msgid "handoff.empty.help" msgid "inspect.empty.help"
msgstr "Si quieres saber más sobre la inspección puedes visitar el centro de ayuda de Penpot" msgstr "Si quieres saber más sobre la inspección puedes visitar el centro de ayuda de Penpot"
msgid "handoff.empty.more-info" msgid "inspect.empty.more-info"
msgstr "Más información sobre la inspección" msgstr "Más información sobre la inspección"
msgid "history.alert-message" msgid "history.alert-message"
@ -2749,8 +2749,8 @@ msgstr "Comentarios"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Ir al dashboard" msgstr "Ir al dashboard"
msgid "shortcuts.open-handoff" msgid "shortcuts.open-inspect"
msgstr "Ir a handoff" msgstr "Ir al inspector"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Ir a interacciones" msgstr "Ir a interacciones"
@ -2938,7 +2938,7 @@ msgstr "Integrantes - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Configuración - %s - Penpot" msgstr "Configuración - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Modo de visualización - Penpot" msgstr "%s - Modo de visualización - Penpot"
@ -2954,11 +2954,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "¡Lo sentimos!" msgstr "¡Lo sentimos!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "No se ha encontrado ningún tablero." msgstr "No se ha encontrado ningún tablero."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "No se encuentra el tablero." msgstr "No se encuentra el tablero."
@ -2973,8 +2973,8 @@ msgstr "No mostrar interacciones"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Pantalla completa" msgstr "Pantalla completa"
msgid "viewer.header.handoff-section" msgid "viewer.header.inspect-section"
msgstr "Handoff (%s)" msgstr "Inspector (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
@ -3172,8 +3172,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "Interlineado" msgstr "Interlineado"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3558,17 +3558,17 @@ msgid "workspace.options.design"
msgstr "Diseño" msgstr "Diseño"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportar" msgstr "Exportar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exportar selección" msgstr "Exportar selección"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Exportar 1 elemento" msgstr[0] "Exportar 1 elemento"
@ -3579,22 +3579,22 @@ msgid "workspace.options.export.suffix"
msgstr "Sufijo" msgstr "Sufijo"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Exportación completa" msgstr "Exportación completa"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exportando…" msgstr "Exportando…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Exportación fallida" msgstr "Exportación fallida"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Exportación lenta" msgstr "Exportación lenta"
@ -4149,7 +4149,7 @@ msgid "workspace.options.recent-fonts"
msgstr "Recientes" msgstr "Recientes"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Reintentar" msgstr "Reintentar"
@ -4716,7 +4716,7 @@ msgid "workspace.sidebar.layers.texts"
msgstr "Textos" msgstr "Textos"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs,
#: src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Atributos del SVG Importado" msgstr "Atributos del SVG Importado"

View file

@ -837,7 +837,7 @@ msgstr "Jabea ezin da taldetik irten, jabetza beste pertsona bati eman behar dio
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Gure erabilpen-baldintzak eta pribatutasun politika onartu behar dituzu." msgstr "Gure erabilpen-baldintzak eta pribatutasun politika onartu behar dituzu."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Errore bat gertatut da." msgstr "Errore bat gertatut da."
@ -907,218 +907,218 @@ msgstr "Laguntzarako Twitter kontua"
msgid "generic.error" msgid "generic.error"
msgstr "Errore bat gertatu da" msgstr "Errore bat gertatu da"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Desenfokatuta" msgstr "Desenfokatuta"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Balioa" msgstr "Balioa"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Betegarria" msgstr "Betegarria"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Deskargatu jatorrizko irudia" msgstr "Deskargatu jatorrizko irudia"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altuera" msgstr "Altuera"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Zabalera" msgstr "Zabalera"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Egitura" msgstr "Egitura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altuera" msgstr "Altuera"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Ezkerra" msgstr "Ezkerra"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Erradioa" msgstr "Erradioa"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Biraketa" msgstr "Biraketa"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Goian" msgstr "Goian"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Zabalera" msgstr "Zabalera"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Itzala" msgstr "Itzala"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Ertza" msgstr "Ertza"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Erdia" msgstr "Erdia"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Barnealdea" msgstr "Barnealdea"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Kanpoaldea" msgstr "Kanpoaldea"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Puntuak" msgstr "Puntuak"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Nahasia" msgstr "Nahasia"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Bat ere ez" msgstr "Bat ere ez"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solidoa" msgstr "Solidoa"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Zabalera" msgstr "Zabalera"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Letra-tipo" msgstr "Letra-tipo"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Letra-tipo familia" msgstr "Letra-tipo familia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Letra-tipoaren tamaina" msgstr "Letra-tipoaren tamaina"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Letra-tipoaren estiloa" msgstr "Letra-tipoaren estiloa"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Hizkien tartea" msgstr "Hizkien tartea"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Lerroartea" msgstr "Lerroartea"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Testuaren apainketa" msgstr "Testuaren apainketa"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Bat ere ez" msgstr "Bat ere ez"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Marratu" msgstr "Marratu"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Azpimarratu" msgstr "Azpimarratu"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Testua eraldatu" msgstr "Testua eraldatu"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Letra xeheak" msgstr "Letra xeheak"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Bat ere ez" msgstr "Bat ere ez"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Lehenengoa letra larriz" msgstr "Lehenengoa letra larriz"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Letra larriz" msgstr "Letra larriz"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Kodea" msgstr "Kodea"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Borobila" msgstr "Borobila"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Osagaia" msgstr "Osagaia"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Kurba" msgstr "Kurba"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Mahaigaina" msgstr "Mahaigaina"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Taldea" msgstr "Taldea"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Irudia" msgstr "Irudia"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maskara" msgstr "Maskara"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s aukeratuta" msgstr "%s aukeratuta"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Trazadura" msgstr "Trazadura"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Laukia" msgstr "Laukia"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Testua" msgstr "Testua"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informazioa" msgstr "Informazioa"
msgid "history.alert-message" msgid "history.alert-message"
@ -2459,9 +2459,6 @@ msgstr "Iruzkinak"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Joan lan-lekura" msgstr "Joan lan-lekura"
msgid "shortcuts.open-handoff"
msgstr "Joan handoff atalera"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Joan interakzioetara" msgstr "Joan interakzioetara"
@ -2645,7 +2642,7 @@ msgstr "Kideak - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Ezarpenak - %s - Penpot" msgstr "Ezarpenak - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Ikusteko modua - Penpot" msgstr "%s - Ikusteko modua - Penpot"
@ -2661,11 +2658,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Sentitzen dugu!" msgstr "Sentitzen dugu!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Ez da arbelik aurkitu." msgstr "Ez da arbelik aurkitu."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Ez dago arbel hori." msgstr "Ez dago arbel hori."
@ -2680,9 +2677,6 @@ msgstr "Ez erakutsi interakzioak"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Pantaila osoa" msgstr "Pantaila osoa"
msgid "viewer.header.handoff-section"
msgstr "Handoff (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interakzioak" msgstr "Interakzioak"
@ -2868,7 +2862,7 @@ msgstr "Hizkien tartea"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Lerroaren altuera" msgstr "Lerroaren altuera"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3245,15 +3239,15 @@ msgstr "Goian eta behean"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Diseinua" msgstr "Diseinua"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Esportatu" msgstr "Esportatu"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Esportatu aukeraketa" msgstr "Esportatu aukeraketa"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Esportatu elementu 1" msgstr[0] "Esportatu elementu 1"
@ -3263,19 +3257,19 @@ msgstr[1] "Esportatu %s elementu"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Aurrizkia" msgstr "Aurrizkia"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Esportazioa osatu da" msgstr "Esportazioa osatu da"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Esportazen…" msgstr "Esportazen…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Esportazioak huts egin du" msgstr "Esportazioak huts egin du"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Esportazio oso geldoa" msgstr "Esportazio oso geldoa"
@ -3830,7 +3824,7 @@ msgstr "Ertz bakarrak"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Azkenak" msgstr "Azkenak"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Berriz saiatu" msgstr "Berriz saiatu"
@ -4332,7 +4326,7 @@ msgstr "Formak"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Testuak" msgstr "Testuak"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Inportatutako SVG atributuak" msgstr "Inportatutako SVG atributuak"

View file

@ -827,7 +827,7 @@ msgstr "مالک نمی‌تواند تیم را ترک کند، شما باید
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "شما باید شرایط خدمات و سیاست حفظ حریم‌خصوصی ما را بپذیرید." msgstr "شما باید شرایط خدمات و سیاست حفظ حریم‌خصوصی ما را بپذیرید."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "یک خطای غیرمنتظره رخ داد." msgstr "یک خطای غیرمنتظره رخ داد."
@ -898,211 +898,211 @@ msgstr "حساب پشتیبانی در توییتر"
msgid "generic.error" msgid "generic.error"
msgstr "خطایی رخ داده است" msgstr "خطایی رخ داده است"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "محو" msgstr "محو"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "مقدار" msgstr "مقدار"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "پر" msgstr "پر"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "دانلود تصویر منبع" msgstr "دانلود تصویر منبع"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "ارتفاع" msgstr "ارتفاع"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "چیدمان" msgstr "چیدمان"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "ارتفاع" msgstr "ارتفاع"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "چپ" msgstr "چپ"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "گردی" msgstr "گردی"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "چرخش" msgstr "چرخش"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "بالا" msgstr "بالا"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "سایه" msgstr "سایه"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
#, fuzzy #, fuzzy
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "استروک" msgstr "استروک"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "مرکز" msgstr "مرکز"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "داخل" msgstr "داخل"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "بیرون" msgstr "بیرون"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "خط‌چین" msgstr "خط‌چین"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "‏مخلوط" msgstr "‏مخلوط"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "هیچ‌یک" msgstr "هیچ‌یک"
#, fuzzy #, fuzzy
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "جامد" msgstr "جامد"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "عرض" msgstr "عرض"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "تایپوگرافی" msgstr "تایپوگرافی"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "خانواده فونت" msgstr "خانواده فونت"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "اندازه فونت" msgstr "اندازه فونت"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "استایل فونت" msgstr "استایل فونت"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "فاصله بین حروف" msgstr "فاصله بین حروف"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "ارتفاع خط" msgstr "ارتفاع خط"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "هیچ‌یک" msgstr "هیچ‌یک"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "خط‌زیر" msgstr "خط‌زیر"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "تبدیل متن" msgstr "تبدیل متن"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "حروف کوچک" msgstr "حروف کوچک"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "هیچ‌یک" msgstr "هیچ‌یک"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "حروف بزرگ" msgstr "حروف بزرگ"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "کد" msgstr "کد"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "دایره" msgstr "دایره"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "کامپوننت" msgstr "کامپوننت"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "منحنی" msgstr "منحنی"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "آرت‌برد" msgstr "آرت‌برد"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "گروه" msgstr "گروه"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "تصویر" msgstr "تصویر"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "ماسک" msgstr "ماسک"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
#, fuzzy #, fuzzy
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s انتخاب شد" msgstr "%s انتخاب شد"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "مسیر" msgstr "مسیر"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "مستطیل" msgstr "مستطیل"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "متن" msgstr "متن"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "اطلاعات" msgstr "اطلاعات"
#, fuzzy #, fuzzy
@ -1821,7 +1821,7 @@ msgstr "اعضا - %s - پن‌پات"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "تنظیمات - %s - پن‌پات" msgstr "تنظیمات - %s - پن‌پات"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - حالت مشاهده - پن‌پات" msgstr "%s - حالت مشاهده - پن‌پات"
@ -1838,11 +1838,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "متاسفم!" msgstr "متاسفم!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "هیچ آرت‌بوردی در صفحه یافت نشد." msgstr "هیچ آرت‌بوردی در صفحه یافت نشد."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "آرت‌بورد یافت نشد." msgstr "آرت‌بورد یافت نشد."
@ -2141,7 +2141,7 @@ msgstr "بالا"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "طراحی" msgstr "طراحی"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "اکسپورت" msgstr "اکسپورت"
@ -2149,7 +2149,7 @@ msgstr "اکسپورت"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "پسوند" msgstr "پسوند"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "درحال گرفتن خروجی…" msgstr "درحال گرفتن خروجی…"
@ -2381,7 +2381,7 @@ msgstr "گردی"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "اخیر" msgstr "اخیر"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "تلاش دوباره" msgstr "تلاش دوباره"

View file

@ -875,7 +875,7 @@ msgstr ""
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Une erreur inattendue sest produite" msgstr "Une erreur inattendue sest produite"
@ -948,216 +948,216 @@ msgstr "Compte dassistance Twitter"
msgid "generic.error" msgid "generic.error"
msgstr "Une erreur sest produite" msgstr "Une erreur sest produite"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Flou" msgstr "Flou"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valeur" msgstr "Valeur"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Remplir" msgstr "Remplir"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Télécharger limage source" msgstr "Télécharger limage source"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Hauteur" msgstr "Hauteur"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Largeur" msgstr "Largeur"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Mise en page" msgstr "Mise en page"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Hauteur" msgstr "Hauteur"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Gauche" msgstr "Gauche"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Rayon" msgstr "Rayon"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotation" msgstr "Rotation"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Haut" msgstr "Haut"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Largeur" msgstr "Largeur"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Ombre" msgstr "Ombre"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Contour" msgstr "Contour"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centre" msgstr "Centre"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Intérieur" msgstr "Intérieur"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Extérieur" msgstr "Extérieur"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Pointillé" msgstr "Pointillé"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixte" msgstr "Mixte"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Aucun" msgstr "Aucun"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solide" msgstr "Solide"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Épaisseur" msgstr "Épaisseur"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Typographie" msgstr "Typographie"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Police de caractères" msgstr "Police de caractères"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Taille de police" msgstr "Taille de police"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Style de police" msgstr "Style de police"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Interlettrage" msgstr "Interlettrage"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Interlignage" msgstr "Interlignage"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Décoration de texte" msgstr "Décoration de texte"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Aucune" msgstr "Aucune"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Barré" msgstr "Barré"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Soulignage" msgstr "Soulignage"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformation de texte" msgstr "Transformation de texte"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minuscule" msgstr "Minuscule"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Aucune" msgstr "Aucune"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Premières Lettres en Capitales" msgstr "Premières Lettres en Capitales"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Capitales" msgstr "Capitales"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Code" msgstr "Code"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Cercle" msgstr "Cercle"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Composant" msgstr "Composant"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Courbe" msgstr "Courbe"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Plan de travail" msgstr "Plan de travail"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Groupe" msgstr "Groupe"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Image" msgstr "Image"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Masque" msgstr "Masque"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Sélectionné" msgstr "%s Sélectionné"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Chemin" msgstr "Chemin"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectangle" msgstr "Rectangle"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Texte" msgstr "Texte"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Information" msgstr "Information"
msgid "history.alert-message" msgid "history.alert-message"
@ -2124,7 +2124,7 @@ msgid "onboarding.slide.2.title"
msgstr "Recueillez des avis, présentez et partagez votre travail" msgstr "Recueillez des avis, présentez et partagez votre travail"
msgid "onboarding.slide.3.alt" msgid "onboarding.slide.3.alt"
msgstr "Handoff et lowcode" msgstr "Inspect et lowcode"
msgid "onboarding.slide.3.desc1" msgid "onboarding.slide.3.desc1"
msgstr "" msgstr ""
@ -2457,9 +2457,6 @@ msgstr "Accéder aux commentaires des spectateurs"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Accéder au tableau de bord" msgstr "Accéder au tableau de bord"
msgid "shortcuts.open-handoff"
msgstr "Accéder à la section Handoff des spectateurs"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Accéder aux interactions des spectateurs" msgstr "Accéder aux interactions des spectateurs"
@ -2606,7 +2603,7 @@ msgstr "Membres - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Configuration - %s - Penpot" msgstr "Configuration - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Mode spectateur - Penpot" msgstr "%s - Mode spectateur - Penpot"
@ -2617,11 +2614,11 @@ msgstr "%s - Penpot"
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Désolé !" msgstr "Désolé !"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Aucun plan de travail trouvé sur la page." msgstr "Aucun plan de travail trouvé sur la page."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Plan de travail introuvable." msgstr "Plan de travail introuvable."
@ -2823,8 +2820,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "Interlignage" msgstr "Interlignage"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3115,16 +3112,16 @@ msgid "workspace.options.design"
msgstr "Conception" msgstr "Conception"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Export" msgstr "Export"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exporter la sélection" msgstr "Exporter la sélection"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "Exporter l'élément" msgstr "Exporter l'élément"
@ -3132,20 +3129,20 @@ msgstr "Exporter l'élément"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Suffixe" msgstr "Suffixe"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "L'export est terminé" msgstr "L'export est terminé"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exportation…" msgstr "Exportation…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "L'export a échoué" msgstr "L'export a échoué"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "L'export est étonnamment lent" msgstr "L'export est étonnamment lent"
@ -3507,7 +3504,7 @@ msgstr "Tous les coins"
msgid "workspace.options.radius.single-corners" msgid "workspace.options.radius.single-corners"
msgstr "Coins individuels" msgstr "Coins individuels"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Réessayer" msgstr "Réessayer"
@ -3943,7 +3940,7 @@ msgid "workspace.sidebar.layers.texts"
msgstr "Textes" msgstr "Textes"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs,
#: src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Attributs SVG importés" msgstr "Attributs SVG importés"

View file

@ -574,171 +574,171 @@ msgstr "Asunto"
msgid "feedback.title" msgid "feedback.title"
msgstr "Correo electrónico" msgstr "Correo electrónico"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Desenfoque" msgstr "Desenfoque"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valor" msgstr "Valor"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Recheo" msgstr "Recheo"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Disposición" msgstr "Disposición"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Esquerda" msgstr "Esquerda"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radio" msgstr "Radio"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotación" msgstr "Rotación"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Enriba" msgstr "Enriba"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Sombra" msgstr "Sombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Bordo" msgstr "Bordo"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centro" msgstr "Centro"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interior" msgstr "Interior"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Exterior" msgstr "Exterior"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Punteado" msgstr "Punteado"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixto" msgstr "Mixto"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Ningún" msgstr "Ningún"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Sólido" msgstr "Sólido"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Ancho" msgstr "Ancho"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografía" msgstr "Tipografía"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Ningunha" msgstr "Ningunha"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Riscar" msgstr "Riscar"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Suliñar" msgstr "Suliñar"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Ningunha" msgstr "Ningunha"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Código" msgstr "Código"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Círculo" msgstr "Círculo"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Compoñente" msgstr "Compoñente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curva" msgstr "Curva"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "taboleiro" msgstr "taboleiro"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupo" msgstr "Grupo"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imaxe" msgstr "Imaxe"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Máscara" msgstr "Máscara"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Trazado" msgstr "Trazado"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectángulo" msgstr "Rectángulo"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Texto" msgstr "Texto"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Información" msgstr "Información"
#: src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/header.cljs
@ -1186,8 +1186,8 @@ msgid "workspace.assets.typography.font-variant-id"
msgstr "Variante" msgstr "Variante"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -1304,17 +1304,17 @@ msgid "workspace.options.design"
msgstr "Deseño" msgstr "Deseño"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportar" msgstr "Exportar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exportar selección" msgstr "Exportar selección"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Exportar 1 elemento" msgstr[0] "Exportar 1 elemento"
@ -1325,17 +1325,17 @@ msgid "workspace.options.export.suffix"
msgstr "Sufixo" msgstr "Sufixo"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Exportación completada" msgstr "Exportación completada"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exportando…" msgstr "Exportando…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Erro na exportación" msgstr "Erro na exportación"

View file

@ -844,7 +844,7 @@ msgstr "עליך לקבל את תנאי השירות ואת מדיניות הפ
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "אירעה שגיאה בלתי צפויה." msgstr "אירעה שגיאה בלתי צפויה."
@ -914,216 +914,216 @@ msgstr "חשבון תמיכה בטוויטר"
msgid "generic.error" msgid "generic.error"
msgstr "אירעה שגיאה" msgstr "אירעה שגיאה"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "טשטוש" msgstr "טשטוש"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "ערך" msgstr "ערך"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "הקסדצימלי" msgstr "הקסדצימלי"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "מילוי" msgstr "מילוי"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "הורדת תמונת מקור" msgstr "הורדת תמונת מקור"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "גובה" msgstr "גובה"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "רוחב" msgstr "רוחב"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "פריסה" msgstr "פריסה"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "גובה" msgstr "גובה"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "שמאל" msgstr "שמאל"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "רדיוס" msgstr "רדיוס"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "סיבוב" msgstr "סיבוב"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "עליון" msgstr "עליון"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "רוחב" msgstr "רוחב"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "צל" msgstr "צל"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "ט" msgstr "ט"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "פ" msgstr "פ"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "מתאר" msgstr "מתאר"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "מרכז" msgstr "מרכז"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "בפנים" msgstr "בפנים"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "בחוץ" msgstr "בחוץ"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "מנוקד" msgstr "מנוקד"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "מעורב" msgstr "מעורב"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "ללא" msgstr "ללא"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "אחיד" msgstr "אחיד"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "רוחב" msgstr "רוחב"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "טיפוגרפיה" msgstr "טיפוגרפיה"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "משפחת גופנים" msgstr "משפחת גופנים"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "גודל גופן" msgstr "גודל גופן"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "סגנון גופן" msgstr "סגנון גופן"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "ריווח תווים" msgstr "ריווח תווים"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "גובה שורה" msgstr "גובה שורה"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "עיטור טקסט" msgstr "עיטור טקסט"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "ללא" msgstr "ללא"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "קו חוצה" msgstr "קו חוצה"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "קו תחתי" msgstr "קו תחתי"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "התמרת טקסט" msgstr "התמרת טקסט"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "אותיות קטנות" msgstr "אותיות קטנות"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "ללא" msgstr "ללא"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "ראשונות גדולות" msgstr "ראשונות גדולות"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "אותיות גדולות" msgstr "אותיות גדולות"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "קוד" msgstr "קוד"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "עיגול" msgstr "עיגול"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "רכיב" msgstr "רכיב"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "עיקול" msgstr "עיקול"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "לוח" msgstr "לוח"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "קבוצה" msgstr "קבוצה"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "תמונה" msgstr "תמונה"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "מסכה" msgstr "מסכה"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s נבחרו" msgstr "%s נבחרו"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "נתיב" msgstr "נתיב"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "ריבוע" msgstr "ריבוע"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "טקסט" msgstr "טקסט"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "מידע" msgstr "מידע"
msgid "history.alert-message" msgid "history.alert-message"
@ -2538,9 +2538,6 @@ msgstr "מעבר לסעיף הערות צופים"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "מעבר ללוח בקרה" msgstr "מעבר ללוח בקרה"
msgid "shortcuts.open-handoff"
msgstr "מעבר לסעיף הנחיות צופים"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "מעבר לסעיף תפעול משתמש" msgstr "מעבר לסעיף תפעול משתמש"
@ -2724,7 +2721,7 @@ msgstr "חברים - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "הגדרות - %s - Penpot" msgstr "הגדרות - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - מצב תצוגה - Penpot" msgstr "%s - מצב תצוגה - Penpot"
@ -2740,11 +2737,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "מתנצלים!" msgstr "מתנצלים!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "לא נמצאו לוחות בעמוד." msgstr "לא נמצאו לוחות בעמוד."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "הלוח לא נמצא." msgstr "הלוח לא נמצא."
@ -2759,9 +2756,6 @@ msgstr "לא להציג אינטראקציות"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "מסך מלא" msgstr "מסך מלא"
msgid "viewer.header.handoff-section"
msgstr "מסירות"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "אינטראקציות" msgstr "אינטראקציות"
@ -2958,8 +2952,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "גובה שורה" msgstr "גובה שורה"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "שצ" msgstr "שצ"
@ -3341,17 +3335,17 @@ msgid "workspace.options.design"
msgstr "עיצוב" msgstr "עיצוב"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "ייצוא" msgstr "ייצוא"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "ייצוא הבחירה" msgstr "ייצוא הבחירה"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "ייצוא רכיב" msgstr "ייצוא רכיב"
@ -3360,22 +3354,22 @@ msgid "workspace.options.export.suffix"
msgstr "סיומת" msgstr "סיומת"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "הייצוא הושלם" msgstr "הייצוא הושלם"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "מתבצע ייצוא…" msgstr "מתבצע ייצוא…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "הייצוא נכשל" msgstr "הייצוא נכשל"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "הייצוא אטי בהגזמה" msgstr "הייצוא אטי בהגזמה"
@ -3940,7 +3934,7 @@ msgid "workspace.options.recent-fonts"
msgstr "אחרונים" msgstr "אחרונים"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "לנסות שוב" msgstr "לנסות שוב"
@ -4468,7 +4462,7 @@ msgid "workspace.sidebar.layers.texts"
msgstr "טקסטים" msgstr "טקסטים"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs,
#: src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "מאפייני SVG יובאו" msgstr "מאפייני SVG יובאו"

View file

@ -835,7 +835,7 @@ msgstr "Vlasnik ne može napustiti tim, moraš ponovno dodijeliti ulogu vlasnika
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Moraš prihvatiti naše uvjete pružanja usluge i politiku privatnosti." msgstr "Moraš prihvatiti naše uvjete pružanja usluge i politiku privatnosti."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Došlo je do neočekivane pogreške." msgstr "Došlo je do neočekivane pogreške."
@ -905,222 +905,222 @@ msgstr "Twitter korisnički račun za podršku"
msgid "generic.error" msgid "generic.error"
msgstr "Došlo je do pogreške" msgstr "Došlo je do pogreške"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Zamućenje" msgstr "Zamućenje"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Vrijednost" msgstr "Vrijednost"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Ispuna" msgstr "Ispuna"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Preuzmi izvornu sliku" msgstr "Preuzmi izvornu sliku"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Visina" msgstr "Visina"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Širina" msgstr "Širina"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Raspored" msgstr "Raspored"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Visina" msgstr "Visina"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Lijevo" msgstr "Lijevo"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Radius" msgstr "Radius"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotacija" msgstr "Rotacija"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Vrh" msgstr "Vrh"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Širina" msgstr "Širina"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Sjena" msgstr "Sjena"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Potez" msgstr "Potez"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Sredina" msgstr "Sredina"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Unutra" msgstr "Unutra"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Vani" msgstr "Vani"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Točkasto" msgstr "Točkasto"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Miksano" msgstr "Miksano"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Nikakav" msgstr "Nikakav"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solidan" msgstr "Solidan"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Širina" msgstr "Širina"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografija" msgstr "Tipografija"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
#, fuzzy #, fuzzy
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Font" msgstr "Font"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Veličina fonta" msgstr "Veličina fonta"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Stil fonta" msgstr "Stil fonta"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Razmak između slova" msgstr "Razmak između slova"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Visina linije" msgstr "Visina linije"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Dekoracija teksta" msgstr "Dekoracija teksta"
#, fuzzy #, fuzzy
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Nikakav" msgstr "Nikakav"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Precrtano" msgstr "Precrtano"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Podcrtano" msgstr "Podcrtano"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformiraj tekst" msgstr "Transformiraj tekst"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Mala slova" msgstr "Mala slova"
#, fuzzy #, fuzzy
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Nikakav" msgstr "Nikakav"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Velika i mala slova" msgstr "Velika i mala slova"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Velika slova" msgstr "Velika slova"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Kod" msgstr "Kod"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Krug" msgstr "Krug"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Komponenta" msgstr "Komponenta"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Krivulja" msgstr "Krivulja"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Ploča" msgstr "Ploča"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupa" msgstr "Grupa"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Slika" msgstr "Slika"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maska" msgstr "Maska"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Označeno" msgstr "%s Označeno"
#, fuzzy #, fuzzy
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Path" msgstr "Path"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Pravokutnik" msgstr "Pravokutnik"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Tekst" msgstr "Tekst"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informacija" msgstr "Informacija"
msgid "history.alert-message" msgid "history.alert-message"
@ -2120,7 +2120,7 @@ msgid "onboarding.slide.2.title"
msgstr "Sakupi povratne informacije, predstavi i podijeli svoj rad" msgstr "Sakupi povratne informacije, predstavi i podijeli svoj rad"
msgid "onboarding.slide.3.alt" msgid "onboarding.slide.3.alt"
msgstr "Handoff i lowcode" msgstr "Inspect i lowcode"
#, fuzzy #, fuzzy
msgid "onboarding.slide.3.desc1" msgid "onboarding.slide.3.desc1"
@ -2473,9 +2473,6 @@ msgstr "Idi na odjeljak s komentarima"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Idi na nadzornu ploču" msgstr "Idi na nadzornu ploču"
msgid "shortcuts.open-handoff"
msgstr "Idi na odjeljak primopredaje"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Idi na odjeljak interakcija" msgstr "Idi na odjeljak interakcija"
@ -2666,7 +2663,7 @@ msgstr "Članovi - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Postavke - %s - Penpot" msgstr "Postavke - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Način prikaza - Penpot" msgstr "%s - Način prikaza - Penpot"
@ -2682,11 +2679,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Oprosti!" msgstr "Oprosti!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Na stranici nisu pronađene ploče." msgstr "Na stranici nisu pronađene ploče."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Ploča nije pronađena." msgstr "Ploča nije pronađena."
@ -2701,9 +2698,6 @@ msgstr "Ne prikazuj interakcije"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Cijeli zaslon" msgstr "Cijeli zaslon"
msgid "viewer.header.handoff-section"
msgstr "Handoff (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interakcije" msgstr "Interakcije"
@ -2888,7 +2882,7 @@ msgstr "Razmak između slova"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Visina linije" msgstr "Visina linije"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3275,15 +3269,15 @@ msgstr "Vrh i dno"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Dizajn" msgstr "Dizajn"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Izvoz" msgstr "Izvoz"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Izvezi selektirano" msgstr "Izvezi selektirano"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Izvezi 1 element" msgstr[0] "Izvezi 1 element"
@ -3294,19 +3288,19 @@ msgstr[2] "Izvezi %s elemenata"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Sufiks" msgstr "Sufiks"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Izvoz završen" msgstr "Izvoz završen"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Izvoz…" msgstr "Izvoz…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Izvoz nije uspio" msgstr "Izvoz nije uspio"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Izvoz neočekivano spor" msgstr "Izvoz neočekivano spor"
@ -3888,7 +3882,7 @@ msgstr "Jednostruki kutovi"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Nedavni" msgstr "Nedavni"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Pokušaj ponovo" msgstr "Pokušaj ponovo"
@ -4406,7 +4400,7 @@ msgstr "Oblici"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Tekstovi" msgstr "Tekstovi"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Uvezeni SVG atributi" msgstr "Uvezeni SVG atributi"

View file

@ -835,7 +835,7 @@ msgstr "È necessario accettare i termini di servizio e l'informativa sulla priv
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Si è verificato un errore inaspettato." msgstr "Si è verificato un errore inaspettato."
@ -908,213 +908,213 @@ msgstr "Account di supporto Twitter"
msgid "generic.error" msgid "generic.error"
msgstr "Si è verificato un errore" msgstr "Si è verificato un errore"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Sfumatura" msgstr "Sfumatura"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valore" msgstr "Valore"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Riempire" msgstr "Riempire"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Scaricare l'immagine sorgente" msgstr "Scaricare l'immagine sorgente"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altezza" msgstr "Altezza"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Larghezza" msgstr "Larghezza"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Disposizione" msgstr "Disposizione"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altezza" msgstr "Altezza"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Sinistra" msgstr "Sinistra"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Raggio" msgstr "Raggio"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotazione" msgstr "Rotazione"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "In alto" msgstr "In alto"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Larghezza" msgstr "Larghezza"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Ombra" msgstr "Ombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Contorno" msgstr "Contorno"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centro" msgstr "Centro"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interno" msgstr "Interno"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Esterno" msgstr "Esterno"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Tratteggiato" msgstr "Tratteggiato"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Misto" msgstr "Misto"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Nessuno" msgstr "Nessuno"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solido" msgstr "Solido"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Larghezza" msgstr "Larghezza"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografia" msgstr "Tipografia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Font Family" msgstr "Font Family"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Dimensione del carattere" msgstr "Dimensione del carattere"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Stile del carattere" msgstr "Stile del carattere"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Spaziatura delle lettere" msgstr "Spaziatura delle lettere"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Altezza Linea" msgstr "Altezza Linea"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decorazioni testo" msgstr "Decorazioni testo"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Nessuno" msgstr "Nessuno"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Barrato" msgstr "Barrato"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Sottolineato" msgstr "Sottolineato"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Trasforma Testo" msgstr "Trasforma Testo"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minuscolo" msgstr "Minuscolo"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Nessuno" msgstr "Nessuno"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Prime lettere maiuscole" msgstr "Prime lettere maiuscole"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Maiuscolo" msgstr "Maiuscolo"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Codice" msgstr "Codice"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Cerchio" msgstr "Cerchio"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Componente" msgstr "Componente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curvo" msgstr "Curvo"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Raggruppa" msgstr "Raggruppa"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Immagine" msgstr "Immagine"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maschera" msgstr "Maschera"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s selezionati" msgstr "%s selezionati"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Tracciato" msgstr "Tracciato"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rettangolo" msgstr "Rettangolo"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Testo" msgstr "Testo"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informazione" msgstr "Informazione"
msgid "history.alert-message" msgid "history.alert-message"

View file

@ -607,7 +607,7 @@ msgstr "オーナーはチームを脱退できません。オーナーロール
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "利用規約とプライバシーポリシーに同意する必要があります。" msgstr "利用規約とプライバシーポリシーに同意する必要があります。"
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "エラーが発生しました。" msgstr "エラーが発生しました。"
@ -659,101 +659,101 @@ msgstr "Twitterサポートアカウント"
msgid "generic.error" msgid "generic.error"
msgstr "エラーが発生しました" msgstr "エラーが発生しました"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "ぼかし" msgstr "ぼかし"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "塗りつぶし" msgstr "塗りつぶし"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "画像をダウンロード" msgstr "画像をダウンロード"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "高さ" msgstr "高さ"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "横幅" msgstr "横幅"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "レイアウト" msgstr "レイアウト"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "高さ" msgstr "高さ"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "左" msgstr "左"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "半径" msgstr "半径"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "回転" msgstr "回転"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "上" msgstr "上"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "幅" msgstr "幅"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "シャドウ" msgstr "シャドウ"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "中央" msgstr "中央"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "フォントファミリー" msgstr "フォントファミリー"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "フォントサイズ" msgstr "フォントサイズ"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "フォントスタイル" msgstr "フォントスタイル"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "行の高さ" msgstr "行の高さ"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "文字装飾" msgstr "文字装飾"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "下線" msgstr "下線"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "円" msgstr "円"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "コンポーネント" msgstr "コンポーネント"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "曲線" msgstr "曲線"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "グループ" msgstr "グループ"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "画像" msgstr "画像"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "マスク" msgstr "マスク"
#: src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/header.cljs

View file

@ -231,82 +231,82 @@ msgstr "Beskrivelse"
msgid "feedback.subject" msgid "feedback.subject"
msgstr "Emne" msgstr "Emne"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Verdi" msgstr "Verdi"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Last ned kildebilde" msgstr "Last ned kildebilde"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Høyde" msgstr "Høyde"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Bredde" msgstr "Bredde"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Høyde" msgstr "Høyde"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Venstre" msgstr "Venstre"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Bredde" msgstr "Bredde"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Skygge" msgstr "Skygge"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Bredde" msgstr "Bredde"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Typografi" msgstr "Typografi"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Skriftfamilie" msgstr "Skriftfamilie"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Skriftstørrelse" msgstr "Skriftstørrelse"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Skriftstil" msgstr "Skriftstil"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Kode" msgstr "Kode"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Sirkel" msgstr "Sirkel"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Gruppe" msgstr "Gruppe"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Bilde" msgstr "Bilde"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Sti" msgstr "Sti"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Tekst" msgstr "Tekst"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Info" msgstr "Info"
msgid "labels.accept" msgid "labels.accept"
@ -712,7 +712,7 @@ msgstr "Komponent"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Eksporterer …" msgstr "Eksporterer …"

View file

@ -834,7 +834,7 @@ msgstr ""
"Musisz zaakceptować nasze warunki świadcznia usług oraz politykę " "Musisz zaakceptować nasze warunki świadcznia usług oraz politykę "
"prywatności." "prywatności."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Wystąpił nieoczekiwany błąd." msgstr "Wystąpił nieoczekiwany błąd."
@ -906,218 +906,218 @@ msgstr "Służymy pomocą w kwestiach technicznych."
msgid "generic.error" msgid "generic.error"
msgstr "Wystąpił błąd" msgstr "Wystąpił błąd"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Rozmycie" msgstr "Rozmycie"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Wartość" msgstr "Wartość"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Wypełnienie" msgstr "Wypełnienie"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Pobierz obraz źródłowy" msgstr "Pobierz obraz źródłowy"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Wysokość" msgstr "Wysokość"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Szerokość" msgstr "Szerokość"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Układ" msgstr "Układ"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Wysokość" msgstr "Wysokość"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Lewo" msgstr "Lewo"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Promień" msgstr "Promień"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Obrót" msgstr "Obrót"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Góra" msgstr "Góra"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Szerokość" msgstr "Szerokość"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Cień" msgstr "Cień"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Obrys" msgstr "Obrys"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Środek" msgstr "Środek"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Wewnątrz" msgstr "Wewnątrz"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Zewnątrz" msgstr "Zewnątrz"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Kropkowany" msgstr "Kropkowany"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mieszany" msgstr "Mieszany"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Brak" msgstr "Brak"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Ciągły" msgstr "Ciągły"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Szerokość" msgstr "Szerokość"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Typografia" msgstr "Typografia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Rodzina fontów" msgstr "Rodzina fontów"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Rozmiar fontu" msgstr "Rozmiar fontu"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Styl fontu" msgstr "Styl fontu"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Rozstaw liter" msgstr "Rozstaw liter"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Wysokość linii" msgstr "Wysokość linii"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Dekoracja tekstu" msgstr "Dekoracja tekstu"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Brak" msgstr "Brak"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Przekreślenie" msgstr "Przekreślenie"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Podkreślenie" msgstr "Podkreślenie"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Przekształcenie tekstu" msgstr "Przekształcenie tekstu"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "małe litery" msgstr "małe litery"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Brak" msgstr "Brak"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Kapitaliki" msgstr "Kapitaliki"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "DUŻE LITERY" msgstr "DUŻE LITERY"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Kod" msgstr "Kod"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Okrąg" msgstr "Okrąg"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Komponent" msgstr "Komponent"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Krzywa" msgstr "Krzywa"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Artboard" msgstr "Artboard"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupa" msgstr "Grupa"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Obraz" msgstr "Obraz"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maska" msgstr "Maska"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s wybrano" msgstr "%s wybrano"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Ścieżka" msgstr "Ścieżka"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Prostokąt" msgstr "Prostokąt"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Tekst" msgstr "Tekst"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informacje" msgstr "Informacje"
msgid "history.alert-message" msgid "history.alert-message"
@ -2337,9 +2337,6 @@ msgstr "Przejdź do sekcji komentarzy widzów"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Idź do kokpitu" msgstr "Idź do kokpitu"
msgid "shortcuts.open-handoff"
msgstr "Przejdź do sekcji przekazania widza"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Idź do sekcji interakcji widza" msgstr "Idź do sekcji interakcji widza"
@ -2520,7 +2517,7 @@ msgstr "Członkowie - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Ustawienia - %s - Penpot" msgstr "Ustawienia - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Tryb wyświetlania - Penpot" msgstr "%s - Tryb wyświetlania - Penpot"
@ -2536,11 +2533,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Wybacz!" msgstr "Wybacz!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Na stronie nie znaleziono obszarów kompozycji." msgstr "Na stronie nie znaleziono obszarów kompozycji."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Obszar kompozycji nie znaleziony." msgstr "Obszar kompozycji nie znaleziony."
@ -2555,9 +2552,6 @@ msgstr "Nie pokazuj interakcji"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Pełny ekran" msgstr "Pełny ekran"
msgid "viewer.header.handoff-section"
msgstr "Wymiana (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interakcje" msgstr "Interakcje"
@ -2741,7 +2735,7 @@ msgstr "Odstępy między literami"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Wysokość Linii" msgstr "Wysokość Linii"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3115,15 +3109,15 @@ msgstr "Góra i dół"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Projektowanie" msgstr "Projektowanie"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Eksport" msgstr "Eksport"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Eksportuj zaznaczone" msgstr "Eksportuj zaznaczone"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Eksportuj 1 element" msgstr[0] "Eksportuj 1 element"
@ -3134,19 +3128,19 @@ msgstr[2] "Eksportuj %s elementów"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Przyrostek" msgstr "Przyrostek"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Eksportowanie zakończone" msgstr "Eksportowanie zakończone"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Eksportowanie…" msgstr "Eksportowanie…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Eksport nie powiódł się" msgstr "Eksport nie powiódł się"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Eksportowanie niespodziewanie powolne" msgstr "Eksportowanie niespodziewanie powolne"
@ -3629,7 +3623,7 @@ msgstr "Pojedynczy róg"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Bieżące" msgstr "Bieżące"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Ponów" msgstr "Ponów"
@ -4128,7 +4122,7 @@ msgstr "Kształty"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Teksty" msgstr "Teksty"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Importowane atrybuty SVG" msgstr "Importowane atrybuty SVG"

View file

@ -835,7 +835,7 @@ msgstr ""
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Você deve aceitar nossos termos de serviço e política de privacidade." msgstr "Você deve aceitar nossos termos de serviço e política de privacidade."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Um erro inesperado ocorreu." msgstr "Um erro inesperado ocorreu."
@ -908,218 +908,218 @@ msgstr "Conta de suporte no Twitter"
msgid "generic.error" msgid "generic.error"
msgstr "Um erro ocorreu" msgstr "Um erro ocorreu"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Borrar" msgstr "Borrar"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valor" msgstr "Valor"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Preencher" msgstr "Preencher"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Baixar imagem original" msgstr "Baixar imagem original"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Layout" msgstr "Layout"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Esquerda" msgstr "Esquerda"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Raio" msgstr "Raio"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotação" msgstr "Rotação"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Superior" msgstr "Superior"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Sombra" msgstr "Sombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Traço" msgstr "Traço"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centro" msgstr "Centro"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Dentro" msgstr "Dentro"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Fora" msgstr "Fora"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Pontilhado" msgstr "Pontilhado"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Misto" msgstr "Misto"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Sólido" msgstr "Sólido"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografia" msgstr "Tipografia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Família da fonte" msgstr "Família da fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Tamanho da fonte" msgstr "Tamanho da fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Estilo da fonte" msgstr "Estilo da fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Espaçamento entre letras" msgstr "Espaçamento entre letras"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Altura da linha" msgstr "Altura da linha"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decoração de texto" msgstr "Decoração de texto"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Riscado" msgstr "Riscado"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Sublinhado" msgstr "Sublinhado"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformação de texto" msgstr "Transformação de texto"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minúsculo" msgstr "Minúsculo"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Iniciais em maiúsculas" msgstr "Iniciais em maiúsculas"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Maiúsculo" msgstr "Maiúsculo"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Código" msgstr "Código"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Círculo" msgstr "Círculo"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Componente" msgstr "Componente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curva" msgstr "Curva"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Prancheta" msgstr "Prancheta"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupo" msgstr "Grupo"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imagem" msgstr "Imagem"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Máscara" msgstr "Máscara"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s selecionados" msgstr "%s selecionados"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Caminho" msgstr "Caminho"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Retângulo" msgstr "Retângulo"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Texto" msgstr "Texto"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informação" msgstr "Informação"
msgid "history.alert-message" msgid "history.alert-message"
@ -2112,7 +2112,7 @@ msgid "onboarding.slide.2.title"
msgstr "Obtenha feedback, apresente e compartilhe seu trabalho" msgstr "Obtenha feedback, apresente e compartilhe seu trabalho"
msgid "onboarding.slide.3.alt" msgid "onboarding.slide.3.alt"
msgstr "Handoff e lowcode" msgstr "Inspect e lowcode"
msgid "onboarding.slide.3.desc1" msgid "onboarding.slide.3.desc1"
msgstr "" msgstr ""
@ -2460,9 +2460,6 @@ msgstr "Ir para secção de comentários"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Ir para o painel" msgstr "Ir para o painel"
msgid "shortcuts.open-handoff"
msgstr "Ir para seção de entrega"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Ir para seção de interação" msgstr "Ir para seção de interação"
@ -2646,7 +2643,7 @@ msgstr "Membros - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Configurações - %s - Penpot" msgstr "Configurações - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Modo de visualização - Penpot" msgstr "%s - Modo de visualização - Penpot"
@ -2662,11 +2659,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Desculpe!" msgstr "Desculpe!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Não foram encontrados quadros na página." msgstr "Não foram encontrados quadros na página."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Prancheta não encontrada." msgstr "Prancheta não encontrada."
@ -2681,9 +2678,6 @@ msgstr "Não mostrar interações"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Tela cheia" msgstr "Tela cheia"
msgid "viewer.header.handoff-section"
msgstr "Entrega (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interações" msgstr "Interações"
@ -2869,7 +2863,7 @@ msgstr "Espaçamento de letra"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Altura entrelinha" msgstr "Altura entrelinha"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3246,15 +3240,15 @@ msgstr "Topo & Fundo"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportar" msgstr "Exportar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exportar seleção" msgstr "Exportar seleção"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "Exportar 1 elemento" msgstr "Exportar 1 elemento"
@ -3262,19 +3256,19 @@ msgstr "Exportar 1 elemento"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Sufixo" msgstr "Sufixo"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Exportação completa" msgstr "Exportação completa"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Exportando…" msgstr "Exportando…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Exportação falhada" msgstr "Exportação falhada"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Exportação inesperadamente lenta" msgstr "Exportação inesperadamente lenta"
@ -3833,7 +3827,7 @@ msgstr "Cantos individuais"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Recente" msgstr "Recente"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Tentar de novo" msgstr "Tentar de novo"
@ -4335,7 +4329,7 @@ msgstr "Formas"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Textos" msgstr "Textos"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Atributos SVG importados" msgstr "Atributos SVG importados"

View file

@ -837,7 +837,7 @@ msgstr ""
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Tens de aceitar os nossos termos de serviço e política de privacidade." msgstr "Tens de aceitar os nossos termos de serviço e política de privacidade."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Ocorreu um erro inesperado." msgstr "Ocorreu um erro inesperado."
@ -910,218 +910,218 @@ msgstr "Conta de suporte no Twitter"
msgid "generic.error" msgid "generic.error"
msgstr "Ocorreu um erro" msgstr "Ocorreu um erro"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Desfoque" msgstr "Desfoque"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valor" msgstr "Valor"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Preencher" msgstr "Preencher"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Descarregar imagem original" msgstr "Descarregar imagem original"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Layout" msgstr "Layout"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Altura" msgstr "Altura"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Esquerda" msgstr "Esquerda"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Raio" msgstr "Raio"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotação" msgstr "Rotação"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Topo" msgstr "Topo"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Sombra" msgstr "Sombra"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Traço" msgstr "Traço"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centro" msgstr "Centro"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interior" msgstr "Interior"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Exterior" msgstr "Exterior"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Pontilhado" msgstr "Pontilhado"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Misto" msgstr "Misto"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Sólido" msgstr "Sólido"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Largura" msgstr "Largura"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografia" msgstr "Tipografia"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Família da Fonte" msgstr "Família da Fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Tamanho da Fonte" msgstr "Tamanho da Fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Estilo da Fonte" msgstr "Estilo da Fonte"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Espaço entre caracteres" msgstr "Espaço entre caracteres"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Altura da Linha" msgstr "Altura da Linha"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decoração de Texto" msgstr "Decoração de Texto"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Rasurado" msgstr "Rasurado"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Sublinhado" msgstr "Sublinhado"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformação de Texto" msgstr "Transformação de Texto"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minúsculas" msgstr "Minúsculas"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Nenhum" msgstr "Nenhum"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Capitalização de Título" msgstr "Capitalização de Título"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Maiúsculas" msgstr "Maiúsculas"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Código" msgstr "Código"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Círculo" msgstr "Círculo"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Componente" msgstr "Componente"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curva" msgstr "Curva"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Prancheta" msgstr "Prancheta"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grupo" msgstr "Grupo"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imagem" msgstr "Imagem"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Máscara" msgstr "Máscara"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Selecionados" msgstr "%s Selecionados"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Caminho" msgstr "Caminho"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Rectângulo" msgstr "Rectângulo"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Texto" msgstr "Texto"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Informação" msgstr "Informação"
msgid "history.alert-message" msgid "history.alert-message"
@ -2107,7 +2107,7 @@ msgid "onboarding.slide.2.title"
msgstr "Recebe feedback, apresenta e partilha o teu trabalho" msgstr "Recebe feedback, apresenta e partilha o teu trabalho"
msgid "onboarding.slide.3.alt" msgid "onboarding.slide.3.alt"
msgstr "Handoff e low code" msgstr "Inspect e low code"
msgid "onboarding.slide.3.desc1" msgid "onboarding.slide.3.desc1"
msgstr "" msgstr ""
@ -2455,9 +2455,6 @@ msgstr "Ir para secção de comentários"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Ir para painel" msgstr "Ir para painel"
msgid "shortcuts.open-handoff"
msgstr "Ir para secção de transferências"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Ir para secção de interações" msgstr "Ir para secção de interações"
@ -2641,7 +2638,7 @@ msgstr "Membros - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Definições - %s - Penpot" msgstr "Definições - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Modo visualizador - Penpot" msgstr "%s - Modo visualizador - Penpot"
@ -2657,11 +2654,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Desculpa!" msgstr "Desculpa!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Não foram encontrados quadros na página." msgstr "Não foram encontrados quadros na página."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Quadro não encontrado." msgstr "Quadro não encontrado."
@ -2676,9 +2673,6 @@ msgstr "Não mostrar interações"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Tela Cheia" msgstr "Tela Cheia"
msgid "viewer.header.handoff-section"
msgstr "Transferência (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Interações" msgstr "Interações"
@ -2864,7 +2858,7 @@ msgstr "Espaço entre letras"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Altura da Linha" msgstr "Altura da Linha"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3241,15 +3235,15 @@ msgstr "Topo e Abaixo"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportar" msgstr "Exportar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Exportar seleção" msgstr "Exportar seleção"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgid_plural "workspace.options.export-object" msgid_plural "workspace.options.export-object"
msgstr[0] "Exportar 1 elemento" msgstr[0] "Exportar 1 elemento"
@ -3259,19 +3253,19 @@ msgstr[1] "Exportar %s elementos"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Sufixo" msgstr "Sufixo"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Exportação completa" msgstr "Exportação completa"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "A exportar…" msgstr "A exportar…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "A exportação falhou" msgstr "A exportação falhou"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Exportação inesperadamente lenta" msgstr "Exportação inesperadamente lenta"
@ -3830,7 +3824,7 @@ msgstr "Cantos individuais"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "Recente" msgstr "Recente"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Repetir" msgstr "Repetir"
@ -4334,7 +4328,7 @@ msgstr "Formas"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "Textos" msgstr "Textos"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Importar atributos do SVG" msgstr "Importar atributos do SVG"

View file

@ -501,7 +501,7 @@ msgstr "Înregistrarea este dezactivată în prezent."
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Trebuie să acceptați termenii serviciului și politica de confidențialitate." msgstr "Trebuie să acceptați termenii serviciului și politica de confidențialitate."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "A apărut o eroare neașteptată." msgstr "A apărut o eroare neașteptată."
@ -547,212 +547,212 @@ msgstr "Adresă de Email"
msgid "generic.error" msgid "generic.error"
msgstr "Am întâmpinat o eroare" msgstr "Am întâmpinat o eroare"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Blur" msgstr "Blur"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Valoare" msgstr "Valoare"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Fill" msgstr "Fill"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Descarcă imaginea sursă" msgstr "Descarcă imaginea sursă"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Înălțime" msgstr "Înălțime"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Lățime" msgstr "Lățime"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Layout" msgstr "Layout"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Înălțime" msgstr "Înălțime"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Stânga" msgstr "Stânga"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Rază" msgstr "Rază"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Rotație" msgstr "Rotație"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Top" msgstr "Top"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Lățime" msgstr "Lățime"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Umbră" msgstr "Umbră"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Linie" msgstr "Linie"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Centru" msgstr "Centru"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Interior" msgstr "Interior"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Exterior" msgstr "Exterior"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Punctat" msgstr "Punctat"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Mixat" msgstr "Mixat"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Niciunul" msgstr "Niciunul"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Solid" msgstr "Solid"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Lățime" msgstr "Lățime"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografie" msgstr "Tipografie"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Familie de Fonturi" msgstr "Familie de Fonturi"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Dimensiune Font" msgstr "Dimensiune Font"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Stil Font" msgstr "Stil Font"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Spațiere" msgstr "Spațiere"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Înălțimea rândului" msgstr "Înălțimea rândului"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Decorare Text" msgstr "Decorare Text"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Niciunul" msgstr "Niciunul"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Strikethrough" msgstr "Strikethrough"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Subliniat" msgstr "Subliniat"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Transformare Text" msgstr "Transformare Text"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Minuscule" msgstr "Minuscule"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Niciunul" msgstr "Niciunul"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Title Case" msgstr "Title Case"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Majuscule" msgstr "Majuscule"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Cod" msgstr "Cod"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Cerc" msgstr "Cerc"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Curbat" msgstr "Curbat"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Planșă de lucru" msgstr "Planșă de lucru"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grup" msgstr "Grup"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Imagine" msgstr "Imagine"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Selectate" msgstr "%s Selectate"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Traiectorie" msgstr "Traiectorie"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Dreptunghi" msgstr "Dreptunghi"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Text" msgstr "Text"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Info" msgstr "Info"
msgid "history.alert-message" msgid "history.alert-message"
@ -1372,7 +1372,7 @@ msgstr "Membri - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Setări - %s - Penpot" msgstr "Setări - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Vizualizare - Penpot" msgstr "%s - Vizualizare - Penpot"
@ -1380,11 +1380,11 @@ msgstr "%s - Vizualizare - Penpot"
msgid "title.workspace" msgid "title.workspace"
msgstr "%s - Penpot" msgstr "%s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Nu există ferestre disponibile pe această pagină." msgstr "Nu există ferestre disponibile pe această pagină."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Fereastra nu există." msgstr "Fereastra nu există."
@ -1570,7 +1570,7 @@ msgstr "Spaţiere Litere"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "Înălţime linie" msgstr "Înălţime linie"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -1792,11 +1792,11 @@ msgstr "Componentă"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Design" msgstr "Design"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Exportă" msgstr "Exportă"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "Exportă forma obiectului" msgstr "Exportă forma obiectului"
@ -1804,7 +1804,7 @@ msgstr "Exportă forma obiectului"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "Sufix" msgstr "Sufix"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Se exportă…" msgstr "Se exportă…"
@ -2346,7 +2346,7 @@ msgstr "Istoric (%s)"
msgid "workspace.sidebar.layers" msgid "workspace.sidebar.layers"
msgstr "Layere" msgstr "Layere"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "Atribute SVG importate" msgstr "Atribute SVG importate"

View file

@ -830,7 +830,7 @@ msgstr "Нужно переназначить роль владельца пер
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "Вы должны принять наши условия использования и политику конфиденциальности." msgstr "Вы должны принять наши условия использования и политику конфиденциальности."
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Произошла ошибка." msgstr "Произошла ошибка."
@ -902,218 +902,218 @@ msgstr "Аккаунт поддержки в Twitter"
msgid "generic.error" msgid "generic.error"
msgstr "Произошла ошибка" msgstr "Произошла ошибка"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Размытие" msgstr "Размытие"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Значение" msgstr "Значение"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Заливка" msgstr "Заливка"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Скачать оригинал" msgstr "Скачать оригинал"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Высота" msgstr "Высота"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Ширина" msgstr "Ширина"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Размещение" msgstr "Размещение"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Высота" msgstr "Высота"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Слева" msgstr "Слева"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Радиус" msgstr "Радиус"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Вращение" msgstr "Вращение"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Сверху" msgstr "Сверху"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Ширина" msgstr "Ширина"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Тень" msgstr "Тень"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "Р" msgstr "Р"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "Р" msgstr "Р"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Обводка" msgstr "Обводка"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Центр" msgstr "Центр"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Внутрь" msgstr "Внутрь"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Наружу" msgstr "Наружу"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Точечная" msgstr "Точечная"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Смешанная" msgstr "Смешанная"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Нет" msgstr "Нет"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Сплошная" msgstr "Сплошная"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Толщина" msgstr "Толщина"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Текст" msgstr "Текст"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Гарнитура" msgstr "Гарнитура"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Размер" msgstr "Размер"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Шрифт" msgstr "Шрифт"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Трекинг" msgstr "Трекинг"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Интерлиньяж" msgstr "Интерлиньяж"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Оформление" msgstr "Оформление"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Нет" msgstr "Нет"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Перечёркнутый" msgstr "Перечёркнутый"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Подчёркнутый" msgstr "Подчёркнутый"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Регистр" msgstr "Регистр"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Нижний регистр" msgstr "Нижний регистр"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Какой есть" msgstr "Какой есть"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "Регистр Заголовка" msgstr "Регистр Заголовка"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Верхний регистр" msgstr "Верхний регистр"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Код" msgstr "Код"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Круг" msgstr "Круг"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Компонент" msgstr "Компонент"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Кривая" msgstr "Кривая"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Кадр" msgstr "Кадр"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Группа" msgstr "Группа"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Изображение" msgstr "Изображение"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Маска" msgstr "Маска"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "Выделено: %s" msgstr "Выделено: %s"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Контур" msgstr "Контур"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Прямоугольник" msgstr "Прямоугольник"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Текст" msgstr "Текст"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Информация" msgstr "Информация"
msgid "history.alert-message" msgid "history.alert-message"
@ -2137,7 +2137,7 @@ msgstr "Участники - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Настройки - %s - Penpot" msgstr "Настройки - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Режим просмотра - Penpot" msgstr "%s - Режим просмотра - Penpot"
@ -2153,11 +2153,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Извините!" msgstr "Извините!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "На странице не найдено ни одного кадра." msgstr "На странице не найдено ни одного кадра."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Кадр не найден." msgstr "Кадр не найден."
@ -2557,19 +2557,19 @@ msgstr "Фон холста"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "Дизайн" msgstr "Дизайн"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Экспорт" msgstr "Экспорт"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Экспорт завершён" msgstr "Экспорт завершён"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Экспортирование…" msgstr "Экспортирование…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Экспорт не удался" msgstr "Экспорт не удался"

View file

@ -867,7 +867,7 @@ msgstr "Hizmet şartlarımızı ve gizlilik politikamızı kabul etmelisin."
#: src/app/main/data/media.cljs, #: src/app/main/data/media.cljs,
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "Beklenmedik bir hata oluştu." msgstr "Beklenmedik bir hata oluştu."
@ -939,216 +939,216 @@ msgstr "Twitter destek hesabı"
msgid "generic.error" msgid "generic.error"
msgstr "Bir hata oluştu" msgstr "Bir hata oluştu"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Bulanıklık" msgstr "Bulanıklık"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Değer" msgstr "Değer"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Doldur" msgstr "Doldur"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "Kaynak görselini indir" msgstr "Kaynak görselini indir"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Yükseklik" msgstr "Yükseklik"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Genişlik" msgstr "Genişlik"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Yerleşim düzeni" msgstr "Yerleşim düzeni"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Yükseklik" msgstr "Yükseklik"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Sol" msgstr "Sol"
#: src/app/main/ui/handoff/attributes/layout.cljs, #: src/app/main/ui/inspect/attributes/layout.cljs,
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Yarıçap" msgstr "Yarıçap"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Döndür" msgstr "Döndür"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Üst" msgstr "Üst"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Genişlik" msgstr "Genişlik"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Gölge" msgstr "Gölge"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "Çerçeve" msgstr "Çerçeve"
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Merkezi" msgstr "Merkezi"
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "İçinde" msgstr "İçinde"
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Dışarıda" msgstr "Dışarıda"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Noktalı" msgstr "Noktalı"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Karışık" msgstr "Karışık"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Hiçbiri" msgstr "Hiçbiri"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Düz" msgstr "Düz"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Genişlik" msgstr "Genişlik"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Tipografi" msgstr "Tipografi"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "Yazı Tipi Ailesi" msgstr "Yazı Tipi Ailesi"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "Yazı Tipi Boyutu" msgstr "Yazı Tipi Boyutu"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "Yazı Tipi Biçimi" msgstr "Yazı Tipi Biçimi"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "Harf Aralığı" msgstr "Harf Aralığı"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "Satır Yüksekliği" msgstr "Satır Yüksekliği"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "Metin Süsleme" msgstr "Metin Süsleme"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Hiçbiri" msgstr "Hiçbiri"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Üstü Çizili" msgstr "Üstü Çizili"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Altı Çizili" msgstr "Altı Çizili"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "Metin Dönüşümü" msgstr "Metin Dönüşümü"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "Küçük Harf" msgstr "Küçük Harf"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Hiçbiri" msgstr "Hiçbiri"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "İlk Harfleri Büyük" msgstr "İlk Harfleri Büyük"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "Büyük Harf" msgstr "Büyük Harf"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Kod" msgstr "Kod"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Daire" msgstr "Daire"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Bileşen" msgstr "Bileşen"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Eğri" msgstr "Eğri"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Çalışma yüzeyi" msgstr "Çalışma yüzeyi"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Grup" msgstr "Grup"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Görsel" msgstr "Görsel"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Maskele" msgstr "Maskele"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "%s Seçildi" msgstr "%s Seçildi"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Yol" msgstr "Yol"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Dikdörtgen" msgstr "Dikdörtgen"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Metin" msgstr "Metin"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Bilgi" msgstr "Bilgi"
msgid "history.alert-message" msgid "history.alert-message"
@ -2574,9 +2574,6 @@ msgstr "Görüntüleyici yorum bölümüne git"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "Denetim paneline git" msgstr "Denetim paneline git"
msgid "shortcuts.open-handoff"
msgstr "Görüntüleyici teslim bölümüne git"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "Görüntüleyici etkileşimleri bölümüne git" msgstr "Görüntüleyici etkileşimleri bölümüne git"
@ -2760,7 +2757,7 @@ msgstr "Üyeler - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "Ayarlar - %s - Penpot" msgstr "Ayarlar - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - Görünüm modu - Penpot" msgstr "%s - Görünüm modu - Penpot"
@ -2776,11 +2773,11 @@ msgstr ""
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "Üzgünüm!" msgstr "Üzgünüm!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "Sayfada çalışma yüzeyi bulunamadı." msgstr "Sayfada çalışma yüzeyi bulunamadı."
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "Çalışma yüzeyi bulunamadı." msgstr "Çalışma yüzeyi bulunamadı."
@ -2799,9 +2796,6 @@ msgstr "Sayfayı düzenle"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "Tam Ekran" msgstr "Tam Ekran"
msgid "viewer.header.handoff-section"
msgstr "Teslim (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "Etkileşimler" msgstr "Etkileşimler"
@ -2996,8 +2990,8 @@ msgid "workspace.assets.typography.line-height"
msgstr "Satır Yüksekliği" msgstr "Satır Yüksekliği"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs, #: src/app/main/ui/inspect/attributes/text.cljs,
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3379,17 +3373,17 @@ msgid "workspace.options.design"
msgstr "Tasarım" msgstr "Tasarım"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "Dışa aktar" msgstr "Dışa aktar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "Seçimi dışa aktar" msgstr "Seçimi dışa aktar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "1 ögeyi dışa aktar" msgstr "1 ögeyi dışa aktar"
@ -3398,22 +3392,22 @@ msgid "workspace.options.export.suffix"
msgstr "Son ek" msgstr "Son ek"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "Dışa aktarma tamamlandı" msgstr "Dışa aktarma tamamlandı"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "Dışa aktarılıyor…" msgstr "Dışa aktarılıyor…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "Dışa aktarılamadı" msgstr "Dışa aktarılamadı"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #:
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "Dışa aktarma beklenmedik şekilde yavaş" msgstr "Dışa aktarma beklenmedik şekilde yavaş"
@ -3978,7 +3972,7 @@ msgid "workspace.options.recent-fonts"
msgstr "Son kullanılanlar" msgstr "Son kullanılanlar"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs,
#: src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "Yeniden dene" msgstr "Yeniden dene"
@ -4508,7 +4502,7 @@ msgid "workspace.sidebar.layers.texts"
msgstr "Metinler" msgstr "Metinler"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs,
#: src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "İçe Aktarılan SVG Öznitelikleri" msgstr "İçe Aktarılan SVG Öznitelikleri"

View file

@ -201,169 +201,169 @@ msgstr "Тема"
msgid "feedback.title" msgid "feedback.title"
msgstr "Електронна пошта" msgstr "Електронна пошта"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "Розмивання" msgstr "Розмивання"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "Значення" msgstr "Значення"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "Заливка" msgstr "Заливка"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "Висота" msgstr "Висота"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "Ширина" msgstr "Ширина"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "Розміщення" msgstr "Розміщення"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "Висота" msgstr "Висота"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "Зліва" msgstr "Зліва"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "Радіус" msgstr "Радіус"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "Обертання" msgstr "Обертання"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "Зверху" msgstr "Зверху"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "Ширина" msgstr "Ширина"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "Тінь" msgstr "Тінь"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "Р" msgstr "Р"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "Центр" msgstr "Центр"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "Всередину" msgstr "Всередину"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "Назовні" msgstr "Назовні"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "Точковий" msgstr "Точковий"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "Змішаний" msgstr "Змішаний"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "Немає" msgstr "Немає"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "Суцільний" msgstr "Суцільний"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "Товщина" msgstr "Товщина"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "Текст" msgstr "Текст"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "Немає" msgstr "Немає"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "Перечеркнутий" msgstr "Перечеркнутий"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "Підчеркнутий" msgstr "Підчеркнутий"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "Який є" msgstr "Який є"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "Код" msgstr "Код"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "Коло" msgstr "Коло"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "Компонент" msgstr "Компонент"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "Крива" msgstr "Крива"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "Кадр" msgstr "Кадр"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "Група" msgstr "Група"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "Зображення" msgstr "Зображення"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "Маска" msgstr "Маска"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "Виділено: %s" msgstr "Виділено: %s"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "Контур" msgstr "Контур"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "Прямокутник" msgstr "Прямокутник"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "Текст" msgstr "Текст"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "Інформація" msgstr "Інформація"
#: src/app/main/ui/dashboard/sidebar.cljs #: src/app/main/ui/dashboard/sidebar.cljs

View file

@ -801,7 +801,7 @@ msgstr "所有者不能离开团队,您必须转让所有者角色。"
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "你必须接受我们的使用条例和隐私政策。" msgstr "你必须接受我们的使用条例和隐私政策。"
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "发生了意料之外的错误。" msgstr "发生了意料之外的错误。"
@ -869,218 +869,218 @@ msgstr "Twtter支持帐号"
msgid "generic.error" msgid "generic.error"
msgstr "发生了一个错误" msgstr "发生了一个错误"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur" msgid "inspect.attributes.blur"
msgstr "模糊" msgstr "模糊"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "值" msgstr "值"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/fill.cljs #: src/app/main/ui/inspect/attributes/fill.cljs
msgid "handoff.attributes.fill" msgid "inspect.attributes.fill"
msgstr "填充" msgstr "填充"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "下载原图" msgstr "下载原图"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "高" msgstr "高"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "宽" msgstr "宽"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "布局" msgstr "布局"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "高" msgstr "高"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "左" msgstr "左"
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.radius" msgid "inspect.attributes.layout.radius"
msgstr "圆角" msgstr "圆角"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.rotation" msgid "inspect.attributes.layout.rotation"
msgstr "旋转" msgstr "旋转"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.top" msgid "inspect.attributes.layout.top"
msgstr "顶" msgstr "顶"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.width" msgid "inspect.attributes.layout.width"
msgstr "宽" msgstr "宽"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow" msgid "inspect.attributes.shadow"
msgstr "阴影" msgstr "阴影"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke" msgid "inspect.attributes.stroke"
msgstr "边框" msgstr "边框"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.center" msgid "inspect.attributes.stroke.alignment.center"
msgstr "居中" msgstr "居中"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.inner" msgid "inspect.attributes.stroke.alignment.inner"
msgstr "内部" msgstr "内部"
#, permanent #, permanent
msgid "handoff.attributes.stroke.alignment.outer" msgid "inspect.attributes.stroke.alignment.outer"
msgstr "外部" msgstr "外部"
msgid "handoff.attributes.stroke.style.dotted" msgid "inspect.attributes.stroke.style.dotted"
msgstr "虚线" msgstr "虚线"
msgid "handoff.attributes.stroke.style.mixed" msgid "inspect.attributes.stroke.style.mixed"
msgstr "混合" msgstr "混合"
msgid "handoff.attributes.stroke.style.none" msgid "inspect.attributes.stroke.style.none"
msgstr "无" msgstr "无"
msgid "handoff.attributes.stroke.style.solid" msgid "inspect.attributes.stroke.style.solid"
msgstr "实线" msgstr "实线"
#: src/app/main/ui/handoff/attributes/stroke.cljs #: src/app/main/ui/inspect/attributes/stroke.cljs
msgid "handoff.attributes.stroke.width" msgid "inspect.attributes.stroke.width"
msgstr "宽" msgstr "宽"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography" msgid "inspect.attributes.typography"
msgstr "排版" msgstr "排版"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-family" msgid "inspect.attributes.typography.font-family"
msgstr "字体" msgstr "字体"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-size" msgid "inspect.attributes.typography.font-size"
msgstr "字号" msgstr "字号"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.font-style" msgid "inspect.attributes.typography.font-style"
msgstr "文字风格" msgstr "文字风格"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.letter-spacing" msgid "inspect.attributes.typography.letter-spacing"
msgstr "字距" msgstr "字距"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.line-height" msgid "inspect.attributes.typography.line-height"
msgstr "行高" msgstr "行高"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-decoration" msgid "inspect.attributes.typography.text-decoration"
msgstr "文字装饰" msgstr "文字装饰"
msgid "handoff.attributes.typography.text-decoration.none" msgid "inspect.attributes.typography.text-decoration.none"
msgstr "无" msgstr "无"
msgid "handoff.attributes.typography.text-decoration.strikethrough" msgid "inspect.attributes.typography.text-decoration.strikethrough"
msgstr "删除线" msgstr "删除线"
msgid "handoff.attributes.typography.text-decoration.underline" msgid "inspect.attributes.typography.text-decoration.underline"
msgstr "下划线" msgstr "下划线"
#: src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/inspect/attributes/text.cljs
msgid "handoff.attributes.typography.text-transform" msgid "inspect.attributes.typography.text-transform"
msgstr "文本变换" msgstr "文本变换"
msgid "handoff.attributes.typography.text-transform.lowercase" msgid "inspect.attributes.typography.text-transform.lowercase"
msgstr "小写" msgstr "小写"
msgid "handoff.attributes.typography.text-transform.none" msgid "inspect.attributes.typography.text-transform.none"
msgstr "无" msgstr "无"
msgid "handoff.attributes.typography.text-transform.titlecase" msgid "inspect.attributes.typography.text-transform.titlecase"
msgstr "首字母大写" msgstr "首字母大写"
msgid "handoff.attributes.typography.text-transform.uppercase" msgid "inspect.attributes.typography.text-transform.uppercase"
msgstr "大写" msgstr "大写"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code" msgid "inspect.tabs.code"
msgstr "代码" msgstr "代码"
msgid "handoff.tabs.code.selected.circle" msgid "inspect.tabs.code.selected.circle"
msgstr "圆" msgstr "圆"
msgid "handoff.tabs.code.selected.component" msgid "inspect.tabs.code.selected.component"
msgstr "组件" msgstr "组件"
msgid "handoff.tabs.code.selected.curve" msgid "inspect.tabs.code.selected.curve"
msgstr "曲线" msgstr "曲线"
msgid "handoff.tabs.code.selected.frame" msgid "inspect.tabs.code.selected.frame"
msgstr "画板" msgstr "画板"
msgid "handoff.tabs.code.selected.group" msgid "inspect.tabs.code.selected.group"
msgstr "编组" msgstr "编组"
msgid "handoff.tabs.code.selected.image" msgid "inspect.tabs.code.selected.image"
msgstr "图片" msgstr "图片"
msgid "handoff.tabs.code.selected.mask" msgid "inspect.tabs.code.selected.mask"
msgstr "蒙版" msgstr "蒙版"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.code.selected.multiple" msgid "inspect.tabs.code.selected.multiple"
msgstr "已选中%s项" msgstr "已选中%s项"
msgid "handoff.tabs.code.selected.path" msgid "inspect.tabs.code.selected.path"
msgstr "路径" msgstr "路径"
msgid "handoff.tabs.code.selected.rect" msgid "inspect.tabs.code.selected.rect"
msgstr "矩形" msgstr "矩形"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "文本" msgstr "文本"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "信息" msgstr "信息"
msgid "history.alert-message" msgid "history.alert-message"
@ -2348,9 +2348,6 @@ msgstr "前往查阅者评论区"
msgid "shortcuts.open-dashboard" msgid "shortcuts.open-dashboard"
msgstr "前往看板" msgstr "前往看板"
msgid "shortcuts.open-handoff"
msgstr "前往阅读器切换部分"
msgid "shortcuts.open-interactions" msgid "shortcuts.open-interactions"
msgstr "转往阅读器交互部分" msgstr "转往阅读器交互部分"
@ -2534,7 +2531,7 @@ msgstr "成员 - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "设置 - %s - Penpot" msgstr "设置 - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - 预览模式)- Penpot" msgstr "%s - 预览模式)- Penpot"
@ -2548,11 +2545,11 @@ msgstr "此共享的链接已失效。创建一个新的链接或向所有者索
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"
msgstr "对不起!" msgstr "对不起!"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.empty-state" msgid "viewer.empty-state"
msgstr "该页面上未找到任何画框。" msgstr "该页面上未找到任何画框。"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "viewer.frame-not-found" msgid "viewer.frame-not-found"
msgstr "画框未找到。" msgstr "画框未找到。"
@ -2567,9 +2564,6 @@ msgstr "不显示交互"
msgid "viewer.header.fullscreen" msgid "viewer.header.fullscreen"
msgstr "全屏" msgstr "全屏"
msgid "viewer.header.handoff-section"
msgstr "交接 (%s)"
#: src/app/main/ui/viewer/header.cljs #: src/app/main/ui/viewer/header.cljs
msgid "viewer.header.interactions" msgid "viewer.header.interactions"
msgstr "交互" msgstr "交互"
@ -2753,7 +2747,7 @@ msgstr "字距"
msgid "workspace.assets.typography.line-height" msgid "workspace.assets.typography.line-height"
msgstr "行高" msgstr "行高"
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/handoff/attributes/text.cljs, src/app/main/ui/handoff/attributes/text.cljs #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs, src/app/main/ui/inspect/attributes/text.cljs, src/app/main/ui/inspect/attributes/text.cljs
msgid "workspace.assets.typography.sample" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"
@ -3130,15 +3124,15 @@ msgstr "顶部与底部"
msgid "workspace.options.design" msgid "workspace.options.design"
msgstr "设计" msgstr "设计"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "导出" msgstr "导出"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-multiple" msgid "workspace.options.export-multiple"
msgstr "导出已选择" msgstr "导出已选择"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export-object" msgid "workspace.options.export-object"
msgstr "导出 1 个元素" msgstr "导出 1 个元素"
@ -3146,19 +3140,19 @@ msgstr "导出 1 个元素"
msgid "workspace.options.export.suffix" msgid "workspace.options.export.suffix"
msgstr "后缀" msgstr "后缀"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-complete" msgid "workspace.options.exporting-complete"
msgstr "导出完成" msgstr "导出完成"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "正在导出…" msgstr "正在导出…"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-error" msgid "workspace.options.exporting-object-error"
msgstr "导出失败" msgstr "导出失败"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.exporting-object-slow" msgid "workspace.options.exporting-object-slow"
msgstr "导出速度意外缓慢" msgstr "导出速度意外缓慢"
@ -3713,7 +3707,7 @@ msgstr "单个角"
msgid "workspace.options.recent-fonts" msgid "workspace.options.recent-fonts"
msgstr "最近的" msgstr "最近的"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs, src/app/main/ui/workspace/header.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
msgid "workspace.options.retry" msgid "workspace.options.retry"
msgstr "重试" msgstr "重试"
@ -4213,7 +4207,7 @@ msgstr "形状"
msgid "workspace.sidebar.layers.texts" msgid "workspace.sidebar.layers.texts"
msgstr "文本" msgstr "文本"
#: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/handoff/attributes/svg.cljs #: src/app/main/ui/workspace/sidebar/options/menus/svg_attrs.cljs, src/app/main/ui/inspect/attributes/svg.cljs
msgid "workspace.sidebar.options.svg-attrs.title" msgid "workspace.sidebar.options.svg-attrs.title"
msgstr "已导入SVG属性" msgstr "已导入SVG属性"

View file

@ -550,7 +550,7 @@ msgstr "目前並不開放註冊。"
msgid "errors.terms-privacy-agreement-invalid" msgid "errors.terms-privacy-agreement-invalid"
msgstr "您必須接受我們的服務條款和隱私權政策。" msgstr "您必須接受我們的服務條款和隱私權政策。"
#: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/data/media.cljs, src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "errors.unexpected-error" msgid "errors.unexpected-error"
msgstr "發生了預料之外的錯誤。" msgstr "發生了預料之外的錯誤。"
@ -578,70 +578,70 @@ msgstr "狀況描述"
msgid "feedback.title" msgid "feedback.title"
msgstr "電子郵件" msgstr "電子郵件"
#: src/app/main/ui/handoff/attributes/blur.cljs #: src/app/main/ui/inspect/attributes/blur.cljs
msgid "handoff.attributes.blur.value" msgid "inspect.attributes.blur.value"
msgstr "數值" msgstr "數值"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hex" msgid "inspect.attributes.color.hex"
msgstr "HEX" msgstr "HEX"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.hsla" msgid "inspect.attributes.color.hsla"
msgstr "HSLA" msgstr "HSLA"
#: src/app/main/ui/handoff/attributes/common.cljs #: src/app/main/ui/inspect/attributes/common.cljs
msgid "handoff.attributes.color.rgba" msgid "inspect.attributes.color.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.download" msgid "inspect.attributes.image.download"
msgstr "下載原始圖片" msgstr "下載原始圖片"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.height" msgid "inspect.attributes.image.height"
msgstr "高度" msgstr "高度"
#: src/app/main/ui/handoff/attributes/image.cljs #: src/app/main/ui/inspect/attributes/image.cljs
msgid "handoff.attributes.image.width" msgid "inspect.attributes.image.width"
msgstr "寬度" msgstr "寬度"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout" msgid "inspect.attributes.layout"
msgstr "樣式" msgstr "樣式"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.height" msgid "inspect.attributes.layout.height"
msgstr "高度" msgstr "高度"
#: src/app/main/ui/handoff/attributes/layout.cljs #: src/app/main/ui/inspect/attributes/layout.cljs
msgid "handoff.attributes.layout.left" msgid "inspect.attributes.layout.left"
msgstr "左" msgstr "左"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.blur" msgid "inspect.attributes.shadow.shorthand.blur"
msgstr "B" msgstr "B"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-x" msgid "inspect.attributes.shadow.shorthand.offset-x"
msgstr "X" msgstr "X"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.offset-y" msgid "inspect.attributes.shadow.shorthand.offset-y"
msgstr "Y" msgstr "Y"
#: src/app/main/ui/handoff/attributes/shadow.cljs #: src/app/main/ui/inspect/attributes/shadow.cljs
msgid "handoff.attributes.shadow.shorthand.spread" msgid "inspect.attributes.shadow.shorthand.spread"
msgstr "S" msgstr "S"
msgid "handoff.tabs.code.selected.svg-raw" msgid "inspect.tabs.code.selected.svg-raw"
msgstr "SVG" msgstr "SVG"
msgid "handoff.tabs.code.selected.text" msgid "inspect.tabs.code.selected.text"
msgstr "文字" msgstr "文字"
#: src/app/main/ui/handoff/right_sidebar.cljs #: src/app/main/ui/inspect/right_sidebar.cljs
msgid "handoff.tabs.info" msgid "inspect.tabs.info"
msgstr "資訊" msgstr "資訊"
msgid "labels.accept" msgid "labels.accept"
@ -934,7 +934,7 @@ msgstr "成員 - %s - Penpot"
msgid "title.team-settings" msgid "title.team-settings"
msgstr "設定 - %s - Penpot" msgstr "設定 - %s - Penpot"
#: src/app/main/ui/handoff.cljs, src/app/main/ui/viewer.cljs #: src/app/main/ui/inspect.cljs, src/app/main/ui/viewer.cljs
msgid "title.viewer" msgid "title.viewer"
msgstr "%s - 檢視模式 - Penpot" msgstr "%s - 檢視模式 - Penpot"
@ -1004,11 +1004,11 @@ msgstr "HSV"
msgid "workspace.libraries.colors.rgba" msgid "workspace.libraries.colors.rgba"
msgstr "RGBA" msgstr "RGBA"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.export" msgid "workspace.options.export"
msgstr "匯出" msgstr "匯出"
#: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/handoff/exports.cljs #: src/app/main/ui/workspace/sidebar/options/menus/exports.cljs, src/app/main/ui/inspect/exports.cljs
msgid "workspace.options.exporting-object" msgid "workspace.options.exporting-object"
msgstr "正在匯出…" msgstr "正在匯出…"