mirror of
https://github.com/penpot/penpot.git
synced 2025-04-05 03:21:26 -05:00
Merge remote-tracking branch 'origin/staging' into develop
This commit is contained in:
commit
87a264ae40
57 changed files with 2445 additions and 2497 deletions
|
@ -32,6 +32,7 @@
|
|||
- Fix display type of component library not persistent [Taiga #4512](https://tree.taiga.io/project/penpot/issue/4512)
|
||||
- Fix problem when moving texts with keyboard [#2690](https://github.com/penpot/penpot/issues/2690)
|
||||
- Fix problem when drawing boxes won't detect mouse-up [Taiga #4618](https://tree.taiga.io/project/penpot/issue/4618)
|
||||
- Fix missing loading icon on shared libraries [Taiga #4148](https://tree.taiga.io/project/penpot/issue/4148)
|
||||
|
||||
### :arrow_up: Deps updates
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
@import "main/layouts/main-layout";
|
||||
@import "main/layouts/not-found";
|
||||
@import "main/layouts/viewer";
|
||||
@import "main/layouts/handoff";
|
||||
@import "main/layouts/inspect";
|
||||
|
||||
//#################################################
|
||||
// Commons
|
||||
|
@ -86,7 +86,7 @@
|
|||
@import "main/partials/workspace-header";
|
||||
@import "main/partials/comments";
|
||||
@import "main/partials/color-bullet";
|
||||
@import "main/partials/handoff";
|
||||
@import "main/partials/inspect";
|
||||
@import "main/partials/exception-page";
|
||||
@import "main/partials/share-link";
|
||||
@import "main/partials/af-signup-questions";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$width-left-toolbar: 48px;
|
||||
$width-settings-bar: 256px;
|
||||
|
||||
.handoff-layout {
|
||||
.inspect-layout {
|
||||
height: 100vh;
|
||||
display: grid;
|
||||
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;
|
||||
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 {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
|
@ -91,7 +91,7 @@ $width-settings-bar: 256px;
|
|||
}
|
||||
}
|
||||
|
||||
.handoff-layout {
|
||||
.inspect-layout {
|
||||
.viewer-section {
|
||||
flex-wrap: nowrap;
|
||||
margin-top: 0;
|
||||
|
@ -124,14 +124,14 @@ $width-settings-bar: 256px;
|
|||
}
|
||||
}
|
||||
|
||||
.handoff-svg-wrapper {
|
||||
.inspect-svg-wrapper {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.handoff-svg-container {
|
||||
.inspect-svg-container {
|
||||
display: grid;
|
||||
width: 100%;
|
||||
height: 100%;
|
|
@ -4,7 +4,7 @@
|
|||
//
|
||||
// Copyright (c) KALEIDOS INC
|
||||
|
||||
.handoff-svg-wrapper {
|
||||
.inspect-svg-wrapper {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
|
@ -736,6 +736,13 @@
|
|||
width: 50px;
|
||||
margin-bottom: $size-4;
|
||||
}
|
||||
|
||||
& svg#loader-pencil {
|
||||
fill: $color-gray-20;
|
||||
height: 75px;
|
||||
width: 75px;
|
||||
margin-bottom: $size-4;
|
||||
}
|
||||
}
|
||||
|
||||
.libraries-search {
|
||||
|
|
|
@ -51,10 +51,10 @@
|
|||
:subsections [:general-viewer]
|
||||
:fn #(st/emit! dv/select-next-frame)}
|
||||
|
||||
:open-handoff {:tooltip "G H"
|
||||
:command "g h"
|
||||
:open-inspect {:tooltip "G I"
|
||||
:command "g i"
|
||||
:subsections [:navigation-viewer]
|
||||
:fn #(st/emit! (dv/go-to-section :handoff))}
|
||||
:fn #(st/emit! (dv/go-to-section :inspect))}
|
||||
|
||||
:open-comments {:tooltip "G C"
|
||||
:command "g c"
|
||||
|
|
|
@ -468,10 +468,10 @@
|
|||
:subsections [:navigation-workspace]
|
||||
:fn #(st/emit! (dw/go-to-viewer))}
|
||||
|
||||
:open-handoff {:tooltip "G H"
|
||||
:command "g h"
|
||||
:open-inspect {:tooltip "G I"
|
||||
:command "g i"
|
||||
: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"
|
||||
:command "g c"
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
|
||||
|
||||
;; Component that serves for render frame thumbnails, mainly used in
|
||||
;; the viewer and handoff
|
||||
;; the viewer and inspector
|
||||
(mf/defc frame-svg
|
||||
{::mf/wrap [mf/memo]}
|
||||
[{:keys [objects frame zoom show-thumbnails?] :or {zoom 1} :as props}]
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
[app.main.ui.icons :as i]
|
||||
[app.main.ui.static :as static]
|
||||
[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.inspect :as inspect]
|
||||
[app.main.ui.viewer.interactions :as interactions]
|
||||
[app.main.ui.viewer.login]
|
||||
[app.main.ui.viewer.share-link]
|
||||
|
@ -222,7 +222,7 @@
|
|||
(or (:can-edit permissions)
|
||||
(and (true? (:is-logged permissions))
|
||||
(= (:who-comment permissions) "all"))))
|
||||
(and (= section :handoff)
|
||||
(and (= section :inspect)
|
||||
(or (:can-edit permissions)
|
||||
(and (true? (:is-logged permissions))
|
||||
(= (:who-inspect permissions) "all")))))
|
||||
|
@ -458,8 +458,8 @@
|
|||
[:div#viewer-layout
|
||||
{:class (dom/classnames
|
||||
:force-visible (:show-thumbnails local)
|
||||
:viewer-layout (not= section :handoff)
|
||||
:handoff-layout (= section :handoff)
|
||||
:viewer-layout (not= section :inspect)
|
||||
:inspect-layout (= section :inspect)
|
||||
:fullscreen fullscreen?)}
|
||||
|
||||
[:div.viewer-content
|
||||
|
@ -493,8 +493,8 @@
|
|||
[:span (tr "viewer.frame-not-found")])]
|
||||
|
||||
(some? frame)
|
||||
(if (= :handoff section)
|
||||
[:& handoff/viewport
|
||||
(if (= :inspect section)
|
||||
[:& inspect/viewport
|
||||
{:frame frame
|
||||
:page page
|
||||
:file file
|
||||
|
|
|
@ -188,10 +188,10 @@
|
|||
(let [go-to-dashboard
|
||||
#(st/emit! (dv/go-to-dashboard))
|
||||
|
||||
go-to-handoff
|
||||
go-to-inspect
|
||||
(fn[]
|
||||
(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)))
|
||||
|
||||
navigate
|
||||
|
@ -228,9 +228,9 @@
|
|||
(and (= (:type permissions) :share-link)
|
||||
(= (:who-inspect permissions) "all")))
|
||||
[:button.mode-zone-button.tooltip.tooltip-bottom
|
||||
{:on-click go-to-handoff
|
||||
:class (dom/classnames :active (= section :handoff))
|
||||
:alt (tr "viewer.header.handoff-section" (sc/get-tooltip :open-handoff))}
|
||||
{:on-click go-to-inspect
|
||||
:class (dom/classnames :active (= section :inspect))
|
||||
:alt (tr "viewer.header.inspect-section" (sc/get-tooltip :open-inspect))}
|
||||
i/code])]
|
||||
|
||||
[:& header-options {:section section
|
||||
|
|
|
@ -4,13 +4,13 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff
|
||||
(ns app.main.ui.viewer.inspect
|
||||
(:require
|
||||
[app.main.data.viewer :as dv]
|
||||
[app.main.store :as st]
|
||||
[app.main.ui.viewer.handoff.left-sidebar :refer [left-sidebar]]
|
||||
[app.main.ui.viewer.handoff.render :refer [render-frame-svg]]
|
||||
[app.main.ui.viewer.handoff.right-sidebar :refer [right-sidebar]]
|
||||
[app.main.ui.viewer.inspect.left-sidebar :refer [left-sidebar]]
|
||||
[app.main.ui.viewer.inspect.render :refer [render-frame-svg]]
|
||||
[app.main.ui.viewer.inspect.right-sidebar :refer [right-sidebar]]
|
||||
[app.util.dom :as dom]
|
||||
[app.util.keyboard :as kbd]
|
||||
[goog.events :as events]
|
||||
|
@ -25,7 +25,7 @@
|
|||
(st/emit! (dv/select-shape (:id frame)))
|
||||
|
||||
(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")
|
||||
has-force? (dom/class? layout "force-visible")]
|
||||
|
||||
|
@ -67,9 +67,9 @@
|
|||
[:& left-sidebar {:frame frame
|
||||
:local local
|
||||
: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}]
|
||||
[:div.handoff-svg-container
|
||||
[:div.inspect-svg-container
|
||||
[:& render-frame-svg {:frame frame :page page :local local :size size}]]]
|
||||
|
||||
[:& right-sidebar {:frame frame
|
|
@ -4,21 +4,21 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes
|
||||
(ns app.main.ui.viewer.inspect.attributes
|
||||
(:require
|
||||
[app.common.geom.shapes :as gsh]
|
||||
[app.main.ui.hooks :as hooks]
|
||||
[app.main.ui.viewer.handoff.attributes.blur :refer [blur-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.fill :refer [fill-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.image :refer [image-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.layout :refer [layout-panel]]
|
||||
[app.main.ui.viewer.handoff.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.handoff.attributes.shadow :refer [shadow-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.stroke :refer [stroke-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.svg :refer [svg-panel]]
|
||||
[app.main.ui.viewer.handoff.attributes.text :refer [text-panel]]
|
||||
[app.main.ui.viewer.handoff.exports :refer [exports]]
|
||||
[app.main.ui.viewer.inspect.attributes.blur :refer [blur-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.fill :refer [fill-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.image :refer [image-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.layout :refer [layout-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.layout-flex :refer [layout-flex-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.layout-flex-element :refer [layout-flex-element-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.shadow :refer [shadow-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.stroke :refer [stroke-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.svg :refer [svg-panel]]
|
||||
[app.main.ui.viewer.inspect.attributes.text :refer [text-panel]]
|
||||
[app.main.ui.viewer.inspect.exports :refer [exports]]
|
||||
[rumext.v2 :as mf]))
|
||||
|
||||
(def type->options
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.blur
|
||||
(ns app.main.ui.viewer.inspect.attributes.blur
|
||||
(:require
|
||||
[app.main.ui.components.copy-button :refer [copy-button]]
|
||||
[app.util.code-gen :as cg]
|
||||
|
@ -27,12 +27,12 @@
|
|||
(when (seq shapes)
|
||||
[:div.attributes-block
|
||||
[: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)
|
||||
[:& copy-button {:data (copy-data (first shapes))}])]
|
||||
|
||||
(for [shape shapes]
|
||||
[: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"]
|
||||
[:& copy-button {:data (copy-data shape)}]])])))
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.common
|
||||
(ns app.main.ui.viewer.inspect.attributes.common
|
||||
(:require
|
||||
[app.main.store :as st]
|
||||
[app.main.ui.components.color-bullet :refer [color-bullet color-name]]
|
||||
|
@ -58,13 +58,13 @@
|
|||
(when-not (and on-change-format (:gradient color))
|
||||
[:select {:on-change #(-> (dom/get-target-val %) keyword on-change-format)}
|
||||
[:option {:value "hex"}
|
||||
(tr "handoff.attributes.color.hex")]
|
||||
(tr "inspect.attributes.color.hex")]
|
||||
|
||||
[:option {:value "rgba"}
|
||||
(tr "handoff.attributes.color.rgba")]
|
||||
(tr "inspect.attributes.color.rgba")]
|
||||
|
||||
[:option {:value "hsla"}
|
||||
(tr "handoff.attributes.color.hsla")]])]
|
||||
(tr "inspect.attributes.color.hsla")]])]
|
||||
(when copy-data
|
||||
[:& copy-button {:data copy-data}])]))
|
||||
|
|
@ -4,10 +4,10 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.fill
|
||||
(ns app.main.ui.viewer.inspect.attributes.fill
|
||||
(:require
|
||||
[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.color :as uc]
|
||||
[app.util.i18n :refer [tr]]
|
||||
|
@ -51,7 +51,7 @@
|
|||
(when (seq shapes)
|
||||
[:div.attributes-block
|
||||
[: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)
|
||||
[:& copy-button {:data (copy-data (first shapes))}])]
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.image
|
||||
(ns app.main.ui.viewer.inspect.attributes.image
|
||||
(:require
|
||||
[app.common.media :as cm]
|
||||
[app.common.pages.helpers :as cph]
|
||||
|
@ -27,12 +27,12 @@
|
|||
[:img {:src (cf/resolve-file-media (-> shape :metadata))}]]]
|
||||
|
||||
[: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"]
|
||||
[:& copy-button {:data (cg/generate-css-props shape :width)}]]
|
||||
|
||||
[: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"]
|
||||
[:& copy-button {:data (cg/generate-css-props shape :height)}]]
|
||||
|
||||
|
@ -42,4 +42,4 @@
|
|||
[:a.download-button {:target "_blank"
|
||||
:download (cond-> name extension (str/concat extension))
|
||||
:href (cf/resolve-file-media (-> shape :metadata))}
|
||||
(tr "handoff.attributes.image.download")])]))
|
||||
(tr "inspect.attributes.image.download")])]))
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.layout
|
||||
(ns app.main.ui.viewer.inspect.attributes.layout
|
||||
(:require
|
||||
[app.common.types.shape.radius :as ctsr]
|
||||
[app.main.ui.components.copy-button :refer [copy-button]]
|
||||
|
@ -40,36 +40,36 @@
|
|||
{:keys [x y]} selrect]
|
||||
[:*
|
||||
[: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)]
|
||||
[:& copy-button {:data (copy-data shape :width)}]]
|
||||
|
||||
[: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)]
|
||||
[:& copy-button {:data (copy-data shape :height)}]]
|
||||
|
||||
(when (not= (:x shape) 0)
|
||||
[: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)]
|
||||
[:& copy-button {:data (copy-data selrect :x)}]])
|
||||
|
||||
(when (not= (:y shape) 0)
|
||||
[: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)]
|
||||
[:& copy-button {:data (copy-data selrect :y)}]])
|
||||
|
||||
(when (ctsr/radius-1? shape)
|
||||
[: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))]
|
||||
[:& copy-button {:data (copy-data shape :rx)}]])
|
||||
|
||||
(when (ctsr/radius-4? shape)
|
||||
[: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-number (:r1 shape)) ", "
|
||||
(fmt/format-number (:r2 shape)) ", "
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
(when (not= (:rotation shape 0) 0)
|
||||
[: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"]
|
||||
[:& copy-button {:data (copy-data shape :rotation)}]])]))
|
||||
|
||||
|
@ -88,7 +88,7 @@
|
|||
[{:keys [shapes]}]
|
||||
[:div.attributes-block
|
||||
[: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)
|
||||
[:& copy-button {:data (copy-data (first shapes))}])]
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.layout-flex
|
||||
(ns app.main.ui.viewer.inspect.attributes.layout-flex
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.main.ui.components.copy-button :refer [copy-button]]
|
|
@ -4,13 +4,13 @@
|
|||
;;
|
||||
;; 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
|
||||
[app.common.data :as d]
|
||||
[app.main.refs :as refs]
|
||||
[app.main.ui.components.copy-button :refer [copy-button]]
|
||||
[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]
|
||||
[cuerdas.core :as str]
|
||||
[rumext.v2 :as mf]))
|
|
@ -4,11 +4,11 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.shadow
|
||||
(ns app.main.ui.viewer.inspect.attributes.shadow
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[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.i18n :refer [tr]]
|
||||
[cuerdas.core :as str]
|
||||
|
@ -59,7 +59,7 @@
|
|||
(when (and (seq shapes) (> (count shapes) 0))
|
||||
[:div.attributes-block
|
||||
[: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
|
||||
(for [shape shapes]
|
|
@ -4,11 +4,11 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.stroke
|
||||
(ns app.main.ui.viewer.inspect.attributes.stroke
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[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.color :as uc]
|
||||
[app.util.i18n :refer [tr]]
|
||||
|
@ -65,19 +65,19 @@
|
|||
stroke-style (if (= stroke-style :svg) :solid stroke-style)
|
||||
stroke-alignment (or stroke-alignment :center)]
|
||||
[: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"]
|
||||
;; Execution time translation strings:
|
||||
;; handoff.attributes.stroke.style.dotted
|
||||
;; handoff.attributes.stroke.style.mixed
|
||||
;; handoff.attributes.stroke.style.none
|
||||
;; handoff.attributes.stroke.style.solid
|
||||
[:div.attributes-value (->> stroke-style d/name (str "handoff.attributes.stroke.style.") (tr))]
|
||||
;; inspect.attributes.stroke.style.dotted
|
||||
;; inspect.attributes.stroke.style.mixed
|
||||
;; inspect.attributes.stroke.style.none
|
||||
;; inspect.attributes.stroke.style.solid
|
||||
[:div.attributes-value (->> stroke-style d/name (str "inspect.attributes.stroke.style.") (tr))]
|
||||
;; Execution time translation strings:
|
||||
;; handoff.attributes.stroke.alignment.center
|
||||
;; handoff.attributes.stroke.alignment.inner
|
||||
;; handoff.attributes.stroke.alignment.outer
|
||||
[:div.attributes-label (->> stroke-alignment d/name (str "handoff.attributes.stroke.alignment.") (tr))]
|
||||
;; inspect.attributes.stroke.alignment.center
|
||||
;; inspect.attributes.stroke.alignment.inner
|
||||
;; inspect.attributes.stroke.alignment.outer
|
||||
[:div.attributes-label (->> stroke-alignment d/name (str "inspect.attributes.stroke.alignment.") (tr))]
|
||||
[:& copy-button {:data (copy-stroke-data shape)}]])]))
|
||||
|
||||
(mf/defc stroke-panel
|
||||
|
@ -86,7 +86,7 @@
|
|||
(when (seq shapes)
|
||||
[:div.attributes-block
|
||||
[: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)
|
||||
[:& copy-button {:data (copy-stroke-data (first shapes))}])]
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.svg
|
||||
(ns app.main.ui.viewer.inspect.attributes.svg
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.main.ui.components.copy-button :refer [copy-button]]
|
|
@ -4,14 +4,14 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.attributes.text
|
||||
(ns app.main.ui.viewer.inspect.attributes.text
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.common.text :as txt]
|
||||
[app.main.fonts :as fonts]
|
||||
[app.main.store :as st]
|
||||
[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.color :as uc]
|
||||
[app.util.i18n :refer [tr]]
|
||||
|
@ -115,53 +115,53 @@
|
|||
|
||||
(when (:font-id style)
|
||||
[: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)]
|
||||
[:& copy-button {:data (copy-style-data style :font-family)}]])
|
||||
|
||||
(when (:font-style style)
|
||||
[: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))]
|
||||
[:& copy-button {:data (copy-style-data style :font-style)}]])
|
||||
|
||||
(when (:font-size style)
|
||||
[: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"]
|
||||
[:& copy-button {:data (copy-style-data style :font-size)}]])
|
||||
|
||||
(when (:line-height style)
|
||||
[: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))]
|
||||
[:& copy-button {:data (copy-style-data style :line-height)}]])
|
||||
|
||||
(when (:letter-spacing style)
|
||||
[: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"]
|
||||
[:& copy-button {:data (copy-style-data style :letter-spacing)}]])
|
||||
|
||||
(when (:text-decoration style)
|
||||
[: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:
|
||||
;; handoff.attributes.typography.text-decoration.none
|
||||
;; handoff.attributes.typography.text-decoration.strikethrough
|
||||
;; handoff.attributes.typography.text-decoration.underline
|
||||
[:div.attributes-value (->> style :text-decoration (str "handoff.attributes.typography.text-decoration.") (tr))]
|
||||
;; inspect.attributes.typography.text-decoration.none
|
||||
;; inspect.attributes.typography.text-decoration.strikethrough
|
||||
;; inspect.attributes.typography.text-decoration.underline
|
||||
[:div.attributes-value (->> style :text-decoration (str "inspect.attributes.typography.text-decoration.") (tr))]
|
||||
[:& copy-button {:data (copy-style-data style :text-decoration)}]])
|
||||
|
||||
(when (:text-transform style)
|
||||
[: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:
|
||||
;; handoff.attributes.typography.text-transform.lowercase
|
||||
;; handoff.attributes.typography.text-transform.none
|
||||
;; handoff.attributes.typography.text-transform.titlecase
|
||||
;; handoff.attributes.typography.text-transform.uppercase
|
||||
[:div.attributes-value (->> style :text-transform (str "handoff.attributes.typography.text-transform.") (tr))]
|
||||
;; inspect.attributes.typography.text-transform.lowercase
|
||||
;; inspect.attributes.typography.text-transform.none
|
||||
;; inspect.attributes.typography.text-transform.titlecase
|
||||
;; inspect.attributes.typography.text-transform.uppercase
|
||||
[:div.attributes-value (->> style :text-transform (str "inspect.attributes.typography.text-transform.") (tr))]
|
||||
[:& copy-button {:data (copy-style-data style :text-transform)}]])
|
||||
|
||||
[:div.attributes-content-row
|
||||
|
@ -185,7 +185,7 @@
|
|||
(when-let [shapes (seq (filter has-text? shapes))]
|
||||
[:div.attributes-block
|
||||
[: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]
|
||||
[:& text-block {:shape shape
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.code
|
||||
(ns app.main.ui.viewer.inspect.code
|
||||
(:require
|
||||
["js-beautify" :as beautify]
|
||||
[app.common.data.macros :as dm]
|
||||
|
@ -76,7 +76,7 @@
|
|||
(mf/deps @markup-type)
|
||||
(fn []
|
||||
(st/emit! (ptk/event ::ev/event
|
||||
{::ev/name "copy-handoff-code"
|
||||
{::ev/name "copy-inspect-code"
|
||||
:type @markup-type}))))
|
||||
|
||||
on-style-copied
|
||||
|
@ -84,7 +84,7 @@
|
|||
(mf/deps @style-type)
|
||||
(fn []
|
||||
(st/emit! (ptk/event ::ev/event
|
||||
{::ev/name "copy-handoff-style"
|
||||
{::ev/name "copy-inspect-style"
|
||||
:type @style-type}))))]
|
||||
|
||||
[:div.element-options
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.exports
|
||||
(ns app.main.ui.viewer.inspect.exports
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.main.data.exports :as de]
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.left-sidebar
|
||||
(ns app.main.ui.viewer.inspect.left-sidebar
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.main.data.viewer :as dv]
|
|
@ -4,8 +4,8 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.render
|
||||
"The main container for a frame in handoff mode"
|
||||
(ns app.main.ui.viewer.inspect.render
|
||||
"The main container for a frame in inspect mode"
|
||||
(:require
|
||||
[app.common.geom.shapes :as gsh]
|
||||
[app.common.pages.helpers :as cph]
|
||||
|
@ -21,7 +21,7 @@
|
|||
[app.main.ui.shapes.shape :refer [shape-container]]
|
||||
[app.main.ui.shapes.svg-raw :as svg-raw]
|
||||
[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.util.dom :as dom]
|
||||
[app.util.object :as obj]
|
|
@ -4,23 +4,23 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.right-sidebar
|
||||
(ns app.main.ui.viewer.inspect.right-sidebar
|
||||
(:require
|
||||
[app.main.data.workspace :as dw]
|
||||
[app.main.store :as st]
|
||||
[app.main.ui.components.shape-icon :as si]
|
||||
[app.main.ui.components.tab-container :refer [tab-container tab-element]]
|
||||
[app.main.ui.icons :as i]
|
||||
[app.main.ui.viewer.handoff.attributes :refer [attributes]]
|
||||
[app.main.ui.viewer.handoff.code :refer [code]]
|
||||
[app.main.ui.viewer.handoff.selection-feedback :refer [resolve-shapes]]
|
||||
[app.main.ui.viewer.inspect.attributes :refer [attributes]]
|
||||
[app.main.ui.viewer.inspect.code :refer [code]]
|
||||
[app.main.ui.viewer.inspect.selection-feedback :refer [resolve-shapes]]
|
||||
[app.util.dom :as dom]
|
||||
[app.util.i18n :refer [tr]]
|
||||
[rumext.v2 :as mf]))
|
||||
|
||||
(mf/defc right-sidebar
|
||||
[{:keys [frame page file selected shapes page-id file-id from]
|
||||
:or {from :handoff}}]
|
||||
:or {from :inspect}}]
|
||||
(let [expanded (mf/use-state false)
|
||||
section (mf/use-state :info #_:code)
|
||||
shapes (or shapes
|
||||
|
@ -38,22 +38,22 @@
|
|||
(if (> (count shapes) 1)
|
||||
[:*
|
||||
[: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
|
||||
[:& si/element-icon {:shape first-shape}]]
|
||||
;; Execution time translation strings:
|
||||
;; handoff.tabs.code.selected.circle
|
||||
;; handoff.tabs.code.selected.component
|
||||
;; handoff.tabs.code.selected.curve
|
||||
;; handoff.tabs.code.selected.frame
|
||||
;; handoff.tabs.code.selected.group
|
||||
;; handoff.tabs.code.selected.image
|
||||
;; handoff.tabs.code.selected.mask
|
||||
;; handoff.tabs.code.selected.path
|
||||
;; handoff.tabs.code.selected.rect
|
||||
;; handoff.tabs.code.selected.svg-raw
|
||||
;; handoff.tabs.code.selected.text
|
||||
;; inspect.tabs.code.selected.circle
|
||||
;; inspect.tabs.code.selected.component
|
||||
;; inspect.tabs.code.selected.curve
|
||||
;; inspect.tabs.code.selected.frame
|
||||
;; inspect.tabs.code.selected.group
|
||||
;; inspect.tabs.code.selected.image
|
||||
;; inspect.tabs.code.selected.mask
|
||||
;; inspect.tabs.code.selected.path
|
||||
;; inspect.tabs.code.selected.rect
|
||||
;; inspect.tabs.code.selected.svg-raw
|
||||
;; inspect.tabs.code.selected.text
|
||||
[:span.tool-window-bar-title (:name first-shape)]])]
|
||||
[:div.tool-window-content.inspect
|
||||
[:& tab-container {:on-change-tab #(do
|
||||
|
@ -62,14 +62,14 @@
|
|||
(when (= from :workspace)
|
||||
(dw/set-inspect-expanded false)))
|
||||
: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
|
||||
:file-id file-id
|
||||
:frame frame
|
||||
:shapes shapes
|
||||
:from from}]]
|
||||
|
||||
[:& tab-element {:id :code :title (tr "handoff.tabs.code")}
|
||||
[:& tab-element {:id :code :title (tr "inspect.tabs.code")}
|
||||
[:& code {:frame frame
|
||||
:shapes shapes
|
||||
:on-expand (fn []
|
||||
|
@ -79,7 +79,7 @@
|
|||
:from from}]]]]]
|
||||
[:div.empty
|
||||
[:span.tool-window-bar-icon i/code]
|
||||
[:div (tr "handoff.empty.select")]
|
||||
[:div (tr "inspect.empty.select")]
|
||||
[:span.tool-window-bar-icon i/help]
|
||||
[:div (tr "handoff.empty.help")]
|
||||
[:button.btn-primary.action {:on-click #(dom/open-new-window "https://help.penpot.app/user-guide/inspect/")} (tr "handoff.empty.more-info")]])]]))
|
||||
[:div (tr "inspect.empty.help")]
|
||||
[:button.btn-primary.action {:on-click #(dom/open-new-window "https://help.penpot.app/user-guide/inspect/")} (tr "inspect.empty.more-info")]])]]))
|
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app.main.ui.viewer.handoff.selection-feedback
|
||||
(ns app.main.ui.viewer.inspect.selection-feedback
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.common.geom.shapes :as gsh]
|
|
@ -146,11 +146,14 @@
|
|||
[:input.item-button {:type "button"
|
||||
:value (tr "workspace.libraries.add")
|
||||
:on-click #(link-library (:id file))}]])]
|
||||
|
||||
[:div.section-list-empty
|
||||
i/library
|
||||
(if (str/empty? @search-term)
|
||||
(tr "workspace.libraries.no-shared-libraries-available")
|
||||
(tr "workspace.libraries.no-matches-for" @search-term))])]]))
|
||||
(if (nil? shared-files)
|
||||
i/loader-pencil
|
||||
[:* i/library
|
||||
(if (str/empty? @search-term)
|
||||
(tr "workspace.libraries.no-shared-libraries-available")
|
||||
(tr "workspace.libraries.no-matches-for" @search-term))])])]]))
|
||||
|
||||
|
||||
(mf/defc updates-tab
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
[app.main.store :as st]
|
||||
[app.main.ui.components.tab-container :refer [tab-container tab-element]]
|
||||
[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.bool :refer [bool-options]]
|
||||
[app.main.ui.workspace.sidebar.options.menus.exports :refer [exports-menu]]
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
;; shortcuts.open-color-picker
|
||||
;; shortcuts.open-comments
|
||||
;; shortcuts.open-dashboard
|
||||
;; shortcuts.open-handoff
|
||||
;; shortcuts.open-inspect
|
||||
;; shortcuts.open-interactions
|
||||
;; shortcuts.open-viewer
|
||||
;; shortcuts.open-workspace
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
(reduce d/merge)))
|
||||
|
||||
|
||||
;; TODO: used on handoff
|
||||
;; TODO: used on inspect
|
||||
(defn parse-style-text-blocks
|
||||
[node attrs]
|
||||
(letfn
|
||||
|
|
|
@ -849,7 +849,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/ui/inspect/exports.cljs
|
||||
msgid "errors.unexpected-error"
|
||||
msgstr "حدث خطأ غير متوقع."
|
||||
|
||||
|
@ -919,216 +919,216 @@ msgstr "حساب دعم تويتر"
|
|||
msgid "generic.error"
|
||||
msgstr "حدث خطأ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "الضبابية"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "قيمة"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "ملء"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "تحميل صورة المصدر"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "ارتفاع"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "تخطيط"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "ارتفاع"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "يسار"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "نصف قطر"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "دوران"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "أعلى"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "ظل"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "لون الحدّ"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "مركز"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "داخل"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "خارج"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "منقط"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "مختلط"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "لا أحد"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "صلب"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "صياغة الحروف"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "عائلة الخط"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "حجم الخط"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "نوع الخط"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "تباعد الحروف"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "ارتفاع الخط"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "زخرفة النص"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "لا شئ"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "يتوسطه خط"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "مسطر"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "تغيير النص"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "أحرف صغيرة"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "لا شئ"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "حالة العنوان"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "الأحرف الكبيرة"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "شفرة"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "دائرة"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "مكون"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "منحنى"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "لوح الرسم"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "مجموعة"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "صورة"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "قناع"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s محدد"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "مسار"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "رباعي"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "نص"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "معلومات"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2478,7 +2478,7 @@ msgstr "الأعضاء - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - وضع العرض - Penpot"
|
||||
|
||||
|
@ -2486,11 +2486,11 @@ msgstr "%s - وضع العرض - Penpot"
|
|||
msgid "title.workspace"
|
||||
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"
|
||||
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"
|
||||
msgstr "لوح الرسم غير موجود."
|
||||
|
||||
|
@ -2694,8 +2694,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "مثال"
|
||||
|
||||
|
@ -2966,12 +2966,12 @@ msgid "workspace.options.design"
|
|||
msgstr "تصميم"
|
||||
|
||||
#: 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"
|
||||
msgstr "تصدير"
|
||||
|
||||
#: 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"
|
||||
msgstr "تصدير 0 عنصر"
|
||||
|
||||
|
@ -2980,7 +2980,7 @@ msgid "workspace.options.export.suffix"
|
|||
msgstr "لاحقة"
|
||||
|
||||
#: 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"
|
||||
msgstr "جارٍ التصدير …"
|
||||
|
||||
|
@ -3101,4 +3101,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "تحديث"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "انقر لإغلاق المسار"
|
||||
msgstr "انقر لإغلاق المسار"
|
||||
|
|
|
@ -848,7 +848,7 @@ msgstr ""
|
|||
"Heu d'acceptar les nostres condicions del servei i la política de "
|
||||
"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"
|
||||
msgstr "S'ha produït un error inesperat."
|
||||
|
||||
|
@ -919,218 +919,218 @@ msgstr "Compte de Twitter d'ajuda"
|
|||
msgid "generic.error"
|
||||
msgstr "S'ha produït un error"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Difuminat"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Emplenat"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Baixa la imatge original"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Alçada"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Amplada"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Disposició"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Alçada"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Esquerra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotació"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Superior"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Amplada"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Ombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Traç"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centre"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interior"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Exterior"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Puntejat"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixte"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Cap"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Sòlid"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Amplada"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Família tipogràfica"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Mida de la lletra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Estil de la lletra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Espaiat de la lletra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Alçada de la línia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decoració del text"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Cap"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Barrat"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Subratllat"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformació del text"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minúscules"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Cap"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Inicials en majúscules"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Majúscules"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Codi"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Cercle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Component"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Corba"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Tauler"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grup"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imatge"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Màscara"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s seleccionats"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Camí"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectangle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Text"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informació"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2336,9 +2336,6 @@ msgstr "Ves als comentaris del visor"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Ves al panell de control"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Ves a la secció de lliurament al visor"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Ves a les interaccions del visor"
|
||||
|
||||
|
@ -2522,7 +2519,7 @@ msgstr "Membres - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Visor - Penpot"
|
||||
|
||||
|
@ -2538,11 +2535,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "No s'ha trobat el tauler."
|
||||
|
||||
|
@ -2557,9 +2554,6 @@ msgstr "No mostris les interaccions"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Pantalla completa"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Lliurament (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interaccions"
|
||||
|
@ -2742,7 +2736,7 @@ msgstr "Espaiat de la lletra"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3119,15 +3113,15 @@ msgstr "Superior i inferior"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Exporta 1 element"
|
||||
|
||||
|
@ -3135,19 +3129,19 @@ msgstr "Exporta 1 element"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Exportació inesperadament lenta"
|
||||
|
||||
|
@ -3658,7 +3652,7 @@ msgstr "Cantons individuals"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Torna-ho a provar"
|
||||
|
||||
|
@ -4159,7 +4153,7 @@ msgstr "Formes"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Atributs SVG importats"
|
||||
|
||||
|
@ -4351,4 +4345,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Actualitza"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Feu clic per a tancar el camí"
|
||||
msgstr "Feu clic per a tancar el camí"
|
||||
|
|
|
@ -884,7 +884,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/ui/inspect/exports.cljs
|
||||
msgid "errors.unexpected-error"
|
||||
msgstr "Ein unerwarteter Fehler ist aufgetreten."
|
||||
|
||||
|
@ -957,216 +957,216 @@ msgstr "Twitter Support-Konto"
|
|||
msgid "generic.error"
|
||||
msgstr "Ein Fehler ist aufgetreten"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Unschärfe"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Wert"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Fläche"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Originalbild herunterladen"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Höhe"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Breite"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Höhe"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radius"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Drehung"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Oben"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Breite"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Schatten"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Rahmen"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Zentriert"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Innen"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Außen"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Gepunktet"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mehrere"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Keine"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solid"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Breite"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Schriftart"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Schriftgröße"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Schriftstil"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Zeichenabstand"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Zeilenabstand"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Textdekoration"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Keine"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Durchgestrichen"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Texttransformation"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Kleinbuchstaben"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Keine"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Kapitälchen"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Großbuchstaben"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Code"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Kreis"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Komponente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Kurve"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Zeichenfläche"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Gruppe"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Bild"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maske"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Ausgewählt(e)"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Pfad"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rechteck"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Text"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2586,9 +2586,6 @@ msgstr "Zum Kommentarbereich im Ansichtsmodus"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Zum Dashboard"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Zur Übergabe im Ansichtsmodus"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Zur Zuschauerinteraktionen"
|
||||
|
||||
|
@ -2772,7 +2769,7 @@ msgstr "Mitglieder - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Ansichtsmodus - Penpot"
|
||||
|
||||
|
@ -2788,11 +2785,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Keine Zeichenfläche gefunden."
|
||||
|
||||
|
@ -2807,9 +2804,6 @@ msgstr "Interaktionen nicht anzeigen"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Vollbildmodus"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Übergabe (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interaktionen"
|
||||
|
@ -3006,8 +3000,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
msgstr "Zeilenabstand"
|
||||
|
||||
#: 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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3391,12 +3385,12 @@ msgid "workspace.options.design"
|
|||
msgstr "Design"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportieren"
|
||||
|
||||
#: 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"
|
||||
msgstr "Auswahl exportieren"
|
||||
|
||||
|
@ -3405,22 +3399,22 @@ msgid "workspace.options.export.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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-complete"
|
||||
msgstr "Export abgeschlossen"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportiere…"
|
||||
|
||||
#: 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"
|
||||
msgstr "Export fehlgeschlagen"
|
||||
|
||||
#: 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"
|
||||
msgstr "Export unerwartet langsam"
|
||||
|
||||
|
@ -3977,7 +3971,7 @@ msgid "workspace.options.recent-fonts"
|
|||
msgstr "Aktuell"
|
||||
|
||||
#: 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"
|
||||
msgstr "Wiederholen"
|
||||
|
||||
|
@ -4509,7 +4503,7 @@ msgid "workspace.sidebar.layers.texts"
|
|||
msgstr "Texte"
|
||||
|
||||
#: 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"
|
||||
msgstr "Importierte SVG-Attribute"
|
||||
|
||||
|
|
|
@ -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"
|
||||
msgstr "Προέκυψε ένα μη αναμενόμενο σφάλμα."
|
||||
|
||||
|
@ -500,212 +500,212 @@ msgstr "Email"
|
|||
msgid "generic.error"
|
||||
msgstr "Παρουσιάστηκε σφάλμα"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Θολούρα"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "αξία"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Γέμισμα"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Λήψη εικόνας πηγής"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Υψος"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Πλάτος"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Διάταξη"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Υψος"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Αριστερά"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Aκτίνα"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Περιστροφή"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Πάνω"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Πλάτος"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Σκιά "
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "περίγραμμα"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Κέντρο"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Μέσα"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Εξω"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Διάστικτο"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Μικτός"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Κανένας"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Στερεός"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Πλάτος"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Τυπογραφία"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Οικογένεια γραμματοσειρών"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Μέγεθος γραμματοσειράς"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Στυλ γραμματοσειράς"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Διάστημα γραμμάτων"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Ύψος γραμμής"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Διακόσμηση κειμένου"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Κανένα"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "διαγραφή"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "υπογράμμιση"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Μετασχηματισμός κειμένου"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Πεζά γράμματα"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Κανένα"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Πρώτα κεφαλαία"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Κεφαλαία γράμματα"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Κώδικας"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Κύκλος"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Κυρτότητα"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Τραπέζι εργασίας"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Ομάδα"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Εικόνα"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Επιλεγμένα"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Σχέδιο"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Ορθωγώνιο"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Κείμενο"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Πληροφορίες"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -1214,11 +1214,11 @@ msgstr "Μεταβείτε στη σύνδεση"
|
|||
msgid "settings.multiple"
|
||||
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"
|
||||
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"
|
||||
msgstr "Το πλαίσιο δεν βρέθηκε."
|
||||
|
||||
|
@ -1377,7 +1377,7 @@ msgstr "Διάστημα γραμμάτων"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -1591,11 +1591,11 @@ msgstr "Συστατικό"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
msgstr "Εξαγωγή σχήματος"
|
||||
|
||||
|
@ -1603,7 +1603,7 @@ msgstr "Εξαγωγή σχήματος"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
msgstr "Εξαγωγή ..."
|
||||
|
||||
|
@ -2099,7 +2099,7 @@ msgstr "Ιστορικό (%s)"
|
|||
msgid "workspace.sidebar.layers"
|
||||
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"
|
||||
msgstr "Εισαγόμενα χαρακτηριστικά SVG"
|
||||
|
||||
|
@ -2283,4 +2283,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Ενημέρωση"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Κάντε κλικ για να κλείσετε τη διαδρομή"
|
||||
msgstr "Κάντε κλικ για να κλείσετε τη διαδρομή"
|
||||
|
|
|
@ -858,7 +858,7 @@ msgstr "The member you try to assign does not exist."
|
|||
msgid "errors.team-leave.owner-cant-leave"
|
||||
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"
|
||||
msgstr "An unexpected error occurred."
|
||||
|
||||
|
@ -922,215 +922,215 @@ msgstr "Twitter support account"
|
|||
msgid "generic.error"
|
||||
msgstr "An error has occurred"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Blur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Value"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Fill"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Download source image"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Height"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Width"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Height"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Left"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radius"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotation"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Top"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Width"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Shadow"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.size"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.size"
|
||||
msgstr "Size and position"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Stroke"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Center"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Inside"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Outside"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Dotted"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixed"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "None"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solid"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Width"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Typography"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Font Family"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Font Style"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Letter Spacing"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Line Height"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Text Decoration"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "None"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Strikethrough"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Underline"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Text Transform"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Lower Case"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "None"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Title Case"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Upper Case"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Code"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Circle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Component"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curve"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Board"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Group"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Image"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Mask"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Selected"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Path"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectangle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Text"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid "handoff.empty.select"
|
||||
msgid "inspect.empty.select"
|
||||
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"
|
||||
|
||||
msgid "handoff.empty.more-info"
|
||||
msgid "inspect.empty.more-info"
|
||||
msgstr "More info about inspect"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs
|
||||
|
@ -2419,8 +2419,8 @@ msgstr "Go to viewer comment section"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Go to dashboard"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Go to viewer handoff section"
|
||||
msgid "shortcuts.open-inspect"
|
||||
msgstr "Go to viewer inspect section"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Go to viewer interactions section"
|
||||
|
@ -2608,7 +2608,7 @@ msgstr "Members - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - View mode - Penpot"
|
||||
|
||||
|
@ -2624,11 +2624,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Board not found."
|
||||
|
||||
|
@ -2643,8 +2643,8 @@ msgstr "Don't show interactions"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Full Screen"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Handoff (%s)"
|
||||
msgid "viewer.header.inspect-section"
|
||||
msgstr "Inspect (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
|
@ -2810,7 +2810,7 @@ msgstr "Letter Spacing"
|
|||
msgid "workspace.assets.typography.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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3164,15 +3164,15 @@ msgstr "Top & Bottom"
|
|||
msgid "workspace.options.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"
|
||||
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"
|
||||
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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Export 1 element"
|
||||
|
@ -3182,19 +3182,19 @@ msgstr[1] "Export %s elements"
|
|||
msgid "workspace.options.export.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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Export unexpectedly slow"
|
||||
|
||||
|
@ -3747,7 +3747,7 @@ msgstr "Individual corners"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Retry"
|
||||
|
||||
|
@ -4270,7 +4270,7 @@ msgstr "Shapes"
|
|||
msgid "workspace.sidebar.layers.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"
|
||||
msgstr "Imported SVG Attributes"
|
||||
|
||||
|
|
|
@ -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/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"
|
||||
msgstr "Ha ocurrido un error inesperado."
|
||||
|
||||
|
@ -1015,229 +1015,229 @@ msgstr "Cuenta de Twitter para soporte"
|
|||
msgid "generic.error"
|
||||
msgstr "Ha ocurrido un error"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Desenfocado"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Relleno"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Descargar imagen original"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Estructura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Izquierda"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radio"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotación"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Arriba"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Sombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.size"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.size"
|
||||
msgstr "Tamaño y posición"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Borde"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centro"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interior"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Exterior"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Punteado"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Ninguno"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Sólido"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografía"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Familia tipográfica"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Tamaño de fuente"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Estilo de fuente"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Espaciado de letras"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Interlineado"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decoración de texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Ninguna"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Tachar"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Subrayar"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformación de texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minúsculas"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Ninguna"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Primera en mayúscula"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Mayúsculas"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Código"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Círculo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Componente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curva"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Mesa de trabajo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imagen"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Máscara"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Seleccionado"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Trazado"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectángulo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
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"
|
||||
|
||||
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"
|
||||
|
||||
msgid "handoff.empty.more-info"
|
||||
msgid "inspect.empty.more-info"
|
||||
msgstr "Más información sobre la inspección"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2749,8 +2749,8 @@ msgstr "Comentarios"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Ir al dashboard"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Ir a handoff"
|
||||
msgid "shortcuts.open-inspect"
|
||||
msgstr "Ir al inspector"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Ir a interacciones"
|
||||
|
@ -2938,7 +2938,7 @@ msgstr "Integrantes - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Modo de visualización - Penpot"
|
||||
|
||||
|
@ -2954,11 +2954,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "No se encuentra el tablero."
|
||||
|
||||
|
@ -2973,8 +2973,8 @@ msgstr "No mostrar interacciones"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Pantalla completa"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Handoff (%s)"
|
||||
msgid "viewer.header.inspect-section"
|
||||
msgstr "Inspector (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
|
@ -3172,8 +3172,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
msgstr "Interlineado"
|
||||
|
||||
#: 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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3558,17 +3558,17 @@ msgid "workspace.options.design"
|
|||
msgstr "Diseño"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportar"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportar selección"
|
||||
|
||||
#: 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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Exportar 1 elemento"
|
||||
|
@ -3579,22 +3579,22 @@ msgid "workspace.options.export.suffix"
|
|||
msgstr "Sufijo"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportación 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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object"
|
||||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object-error"
|
||||
msgstr "Exportación 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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object-slow"
|
||||
msgstr "Exportación lenta"
|
||||
|
||||
|
@ -4149,7 +4149,7 @@ msgid "workspace.options.recent-fonts"
|
|||
msgstr "Recientes"
|
||||
|
||||
#: 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"
|
||||
msgstr "Reintentar"
|
||||
|
||||
|
@ -4716,7 +4716,7 @@ msgid "workspace.sidebar.layers.texts"
|
|||
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/inspect/attributes/svg.cljs
|
||||
msgid "workspace.sidebar.options.svg-attrs.title"
|
||||
msgstr "Atributos del SVG Importado"
|
||||
|
||||
|
|
|
@ -837,7 +837,7 @@ msgstr "Jabea ezin da taldetik irten, jabetza beste pertsona bati eman behar dio
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "Errore bat gertatut da."
|
||||
|
||||
|
@ -907,218 +907,218 @@ msgstr "Laguntzarako Twitter kontua"
|
|||
msgid "generic.error"
|
||||
msgstr "Errore bat gertatu da"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Desenfokatuta"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Balioa"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Betegarria"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Deskargatu jatorrizko irudia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altuera"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Zabalera"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Egitura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altuera"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Ezkerra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Erradioa"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Biraketa"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Goian"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Zabalera"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Itzala"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Ertza"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Erdia"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Barnealdea"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Kanpoaldea"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Puntuak"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Nahasia"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Bat ere ez"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solidoa"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Zabalera"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Letra-tipo"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Letra-tipo familia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Letra-tipoaren tamaina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Letra-tipoaren estiloa"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Hizkien tartea"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Lerroartea"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Testuaren apainketa"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Bat ere ez"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Marratu"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Azpimarratu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Testua eraldatu"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Letra xeheak"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Bat ere ez"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Lehenengoa letra larriz"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Letra larriz"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Kodea"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Borobila"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Osagaia"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Kurba"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Mahaigaina"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Taldea"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Irudia"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maskara"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s aukeratuta"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Trazadura"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Laukia"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Testua"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informazioa"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2459,9 +2459,6 @@ msgstr "Iruzkinak"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Joan lan-lekura"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Joan handoff atalera"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Joan interakzioetara"
|
||||
|
||||
|
@ -2645,7 +2642,7 @@ msgstr "Kideak - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Ikusteko modua - Penpot"
|
||||
|
||||
|
@ -2661,11 +2658,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Ez dago arbel hori."
|
||||
|
||||
|
@ -2680,9 +2677,6 @@ msgstr "Ez erakutsi interakzioak"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Pantaila osoa"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Handoff (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interakzioak"
|
||||
|
@ -2868,7 +2862,7 @@ msgstr "Hizkien tartea"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3245,15 +3239,15 @@ msgstr "Goian eta behean"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Esportatu elementu 1"
|
||||
|
@ -3263,19 +3257,19 @@ msgstr[1] "Esportatu %s elementu"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Esportazio oso geldoa"
|
||||
|
||||
|
@ -3830,7 +3824,7 @@ msgstr "Ertz bakarrak"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Berriz saiatu"
|
||||
|
||||
|
@ -4332,7 +4326,7 @@ msgstr "Formak"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Inportatutako SVG atributuak"
|
||||
|
||||
|
|
|
@ -827,7 +827,7 @@ msgstr "مالک نمیتواند تیم را ترک کند، شما باید
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "یک خطای غیرمنتظره رخ داد."
|
||||
|
||||
|
@ -898,211 +898,211 @@ msgstr "حساب پشتیبانی در توییتر"
|
|||
msgid "generic.error"
|
||||
msgstr "خطایی رخ داده است"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "محو"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "مقدار"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "پر"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "دانلود تصویر منبع"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "ارتفاع"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "چیدمان"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "ارتفاع"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "چپ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "گردی"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "چرخش"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "بالا"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "سایه"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
#, fuzzy
|
||||
msgid "handoff.attributes.stroke"
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "استروک"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "مرکز"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "داخل"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "بیرون"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "خطچین"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "مخلوط"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "هیچیک"
|
||||
|
||||
#, fuzzy
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "جامد"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "تایپوگرافی"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "خانواده فونت"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "اندازه فونت"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "استایل فونت"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "فاصله بین حروف"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "ارتفاع خط"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "هیچیک"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "خطزیر"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "تبدیل متن"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "حروف کوچک"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "هیچیک"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "حروف بزرگ"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "کد"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "دایره"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "کامپوننت"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "منحنی"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "آرتبرد"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "گروه"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "تصویر"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "ماسک"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
#, fuzzy
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s انتخاب شد"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "مسیر"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "مستطیل"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "متن"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "اطلاعات"
|
||||
|
||||
#, fuzzy
|
||||
|
@ -1821,7 +1821,7 @@ msgstr "اعضا - %s - پنپات"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - حالت مشاهده - پنپات"
|
||||
|
||||
|
@ -1838,11 +1838,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "آرتبورد یافت نشد."
|
||||
|
||||
|
@ -2141,7 +2141,7 @@ msgstr "بالا"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
msgstr "اکسپورت"
|
||||
|
||||
|
@ -2149,7 +2149,7 @@ msgstr "اکسپورت"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
msgstr "درحال گرفتن خروجی…"
|
||||
|
||||
|
@ -2381,7 +2381,7 @@ msgstr "گردی"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "تلاش دوباره"
|
||||
|
||||
|
@ -2888,4 +2888,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "بهروزرسانی"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "برای بستن مسیر کلیک کنید"
|
||||
msgstr "برای بستن مسیر کلیک کنید"
|
||||
|
|
|
@ -875,7 +875,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/ui/inspect/exports.cljs
|
||||
msgid "errors.unexpected-error"
|
||||
msgstr "Une erreur inattendue s’est produite"
|
||||
|
||||
|
@ -948,216 +948,216 @@ msgstr "Compte d’assistance Twitter"
|
|||
msgid "generic.error"
|
||||
msgstr "Une erreur s’est produite"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Flou"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valeur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Remplir"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Télécharger l’image source"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Hauteur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Largeur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Mise en page"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Hauteur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Gauche"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Rayon"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotation"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Haut"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Largeur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Ombre"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Contour"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centre"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Intérieur"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Extérieur"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Pointillé"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixte"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Aucun"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solide"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Épaisseur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Typographie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Police de caractères"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Taille de police"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Style de police"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Interlettrage"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Interlignage"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Décoration de texte"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Aucune"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Barré"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Soulignage"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformation de texte"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minuscule"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Aucune"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Premières Lettres en Capitales"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Capitales"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Code"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Cercle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Composant"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Courbe"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Plan de travail"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Groupe"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Image"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Masque"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Sélectionné"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Chemin"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectangle"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Texte"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Information"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2124,7 +2124,7 @@ msgid "onboarding.slide.2.title"
|
|||
msgstr "Recueillez des avis, présentez et partagez votre travail"
|
||||
|
||||
msgid "onboarding.slide.3.alt"
|
||||
msgstr "Handoff et lowcode"
|
||||
msgstr "Inspect et lowcode"
|
||||
|
||||
msgid "onboarding.slide.3.desc1"
|
||||
msgstr ""
|
||||
|
@ -2457,9 +2457,6 @@ msgstr "Accéder aux commentaires des spectateurs"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Accéder au tableau de bord"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Accéder à la section Handoff des spectateurs"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Accéder aux interactions des spectateurs"
|
||||
|
||||
|
@ -2606,7 +2603,7 @@ msgstr "Membres - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Mode spectateur - Penpot"
|
||||
|
||||
|
@ -2617,11 +2614,11 @@ msgstr "%s - Penpot"
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Plan de travail introuvable."
|
||||
|
||||
|
@ -2823,8 +2820,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
msgstr "Interlignage"
|
||||
|
||||
#: 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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3115,16 +3112,16 @@ msgid "workspace.options.design"
|
|||
msgstr "Conception"
|
||||
|
||||
#: 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"
|
||||
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"
|
||||
msgstr "Exporter la sélection"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exporter l'élément"
|
||||
|
||||
|
@ -3132,20 +3129,20 @@ msgstr "Exporter l'élément"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
msgstr "L'export est terminé"
|
||||
|
||||
#: 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"
|
||||
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"
|
||||
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"
|
||||
msgstr "L'export est étonnamment lent"
|
||||
|
||||
|
@ -3507,7 +3504,7 @@ msgstr "Tous les coins"
|
|||
msgid "workspace.options.radius.single-corners"
|
||||
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"
|
||||
msgstr "Réessayer"
|
||||
|
||||
|
@ -3943,7 +3940,7 @@ msgid "workspace.sidebar.layers.texts"
|
|||
msgstr "Textes"
|
||||
|
||||
#: 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"
|
||||
msgstr "Attributs SVG importés"
|
||||
|
||||
|
|
|
@ -574,171 +574,171 @@ msgstr "Asunto"
|
|||
msgid "feedback.title"
|
||||
msgstr "Correo electrónico"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Desenfoque"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Recheo"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Disposición"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Esquerda"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radio"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotación"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Enriba"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Sombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Bordo"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centro"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interior"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Exterior"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Punteado"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Ningún"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Sólido"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografía"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Ningunha"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Riscar"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Suliñar"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Ningunha"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Código"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Círculo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Compoñente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curva"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "taboleiro"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imaxe"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Máscara"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Trazado"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectángulo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Información"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs
|
||||
|
@ -1186,8 +1186,8 @@ msgid "workspace.assets.typography.font-variant-id"
|
|||
msgstr "Variante"
|
||||
|
||||
#: 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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -1304,17 +1304,17 @@ msgid "workspace.options.design"
|
|||
msgstr "Deseño"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportar"
|
||||
|
||||
#: 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"
|
||||
msgstr "Exportar selección"
|
||||
|
||||
#: 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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Exportar 1 elemento"
|
||||
|
@ -1325,17 +1325,17 @@ msgid "workspace.options.export.suffix"
|
|||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-complete"
|
||||
msgstr "Exportación completada"
|
||||
|
||||
#: 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"
|
||||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object-error"
|
||||
msgstr "Erro na exportación"
|
||||
|
||||
|
@ -1429,4 +1429,4 @@ msgstr "Nada"
|
|||
|
||||
#: src/app/main/ui/workspace/context_menu.cljs
|
||||
msgid "workspace.shape.menu.edit"
|
||||
msgstr "Editar"
|
||||
msgstr "Editar"
|
||||
|
|
|
@ -844,7 +844,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/ui/inspect/exports.cljs
|
||||
msgid "errors.unexpected-error"
|
||||
msgstr "אירעה שגיאה בלתי צפויה."
|
||||
|
||||
|
@ -914,216 +914,216 @@ msgstr "חשבון תמיכה בטוויטר"
|
|||
msgid "generic.error"
|
||||
msgstr "אירעה שגיאה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "טשטוש"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "ערך"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "הקסדצימלי"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "מילוי"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "הורדת תמונת מקור"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "גובה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "רוחב"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "פריסה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "גובה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "שמאל"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "רדיוס"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "סיבוב"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "עליון"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "רוחב"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "צל"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "ט"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "פ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "מתאר"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "מרכז"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "בפנים"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "בחוץ"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "מנוקד"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "מעורב"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "ללא"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "אחיד"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "רוחב"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "טיפוגרפיה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "משפחת גופנים"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "גודל גופן"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "סגנון גופן"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "ריווח תווים"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "גובה שורה"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "עיטור טקסט"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "ללא"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "קו חוצה"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "קו תחתי"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "התמרת טקסט"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "אותיות קטנות"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "ללא"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "ראשונות גדולות"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "אותיות גדולות"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "קוד"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "עיגול"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "רכיב"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "עיקול"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "לוח"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "קבוצה"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "תמונה"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "מסכה"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s נבחרו"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "נתיב"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "ריבוע"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "טקסט"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "מידע"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2538,9 +2538,6 @@ msgstr "מעבר לסעיף הערות צופים"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "מעבר ללוח בקרה"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "מעבר לסעיף הנחיות צופים"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "מעבר לסעיף תפעול משתמש"
|
||||
|
||||
|
@ -2724,7 +2721,7 @@ msgstr "חברים - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - מצב תצוגה - Penpot"
|
||||
|
||||
|
@ -2740,11 +2737,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "הלוח לא נמצא."
|
||||
|
||||
|
@ -2759,9 +2756,6 @@ msgstr "לא להציג אינטראקציות"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "מסך מלא"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "מסירות"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "אינטראקציות"
|
||||
|
@ -2958,8 +2952,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "שצ"
|
||||
|
||||
|
@ -3341,17 +3335,17 @@ msgid "workspace.options.design"
|
|||
msgstr "עיצוב"
|
||||
|
||||
#: 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"
|
||||
msgstr "ייצוא"
|
||||
|
||||
#: 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"
|
||||
msgstr "ייצוא הבחירה"
|
||||
|
||||
#: 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"
|
||||
msgstr "ייצוא רכיב"
|
||||
|
||||
|
@ -3360,22 +3354,22 @@ msgid "workspace.options.export.suffix"
|
|||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-complete"
|
||||
msgstr "הייצוא הושלם"
|
||||
|
||||
#: 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"
|
||||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object-error"
|
||||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.exporting-object-slow"
|
||||
msgstr "הייצוא אטי בהגזמה"
|
||||
|
||||
|
@ -3940,7 +3934,7 @@ msgid "workspace.options.recent-fonts"
|
|||
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/inspect/exports.cljs, src/app/main/ui/workspace/header.cljs
|
||||
msgid "workspace.options.retry"
|
||||
msgstr "לנסות שוב"
|
||||
|
||||
|
@ -4468,7 +4462,7 @@ msgid "workspace.sidebar.layers.texts"
|
|||
msgstr "טקסטים"
|
||||
|
||||
#: 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"
|
||||
msgstr "מאפייני SVG יובאו"
|
||||
|
||||
|
|
|
@ -835,7 +835,7 @@ msgstr "Vlasnik ne može napustiti tim, moraš ponovno dodijeliti ulogu vlasnika
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
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"
|
||||
msgstr "Došlo je do pogreške"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Zamućenje"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Vrijednost"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Ispuna"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Preuzmi izvornu sliku"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Visina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Širina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Raspored"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Visina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Lijevo"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Radius"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotacija"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Vrh"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Širina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Sjena"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Potez"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Sredina"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Unutra"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Vani"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Točkasto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Miksano"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Nikakav"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solidan"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Širina"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografija"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
#, fuzzy
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Font"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Veličina fonta"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Stil fonta"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Razmak između slova"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Visina linije"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Dekoracija teksta"
|
||||
|
||||
#, fuzzy
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Nikakav"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Precrtano"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Podcrtano"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformiraj tekst"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Mala slova"
|
||||
|
||||
#, fuzzy
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Nikakav"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Velika i mala slova"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Velika slova"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Kod"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Krug"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Komponenta"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Krivulja"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Ploča"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupa"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Slika"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maska"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Označeno"
|
||||
|
||||
#, fuzzy
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Path"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Pravokutnik"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Tekst"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informacija"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2120,7 +2120,7 @@ msgid "onboarding.slide.2.title"
|
|||
msgstr "Sakupi povratne informacije, predstavi i podijeli svoj rad"
|
||||
|
||||
msgid "onboarding.slide.3.alt"
|
||||
msgstr "Handoff i lowcode"
|
||||
msgstr "Inspect i lowcode"
|
||||
|
||||
#, fuzzy
|
||||
msgid "onboarding.slide.3.desc1"
|
||||
|
@ -2473,9 +2473,6 @@ msgstr "Idi na odjeljak s komentarima"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Idi na nadzornu ploču"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Idi na odjeljak primopredaje"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Idi na odjeljak interakcija"
|
||||
|
||||
|
@ -2666,7 +2663,7 @@ msgstr "Članovi - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Način prikaza - Penpot"
|
||||
|
||||
|
@ -2682,11 +2679,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Ploča nije pronađena."
|
||||
|
||||
|
@ -2701,9 +2698,6 @@ msgstr "Ne prikazuj interakcije"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Cijeli zaslon"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Handoff (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interakcije"
|
||||
|
@ -2888,7 +2882,7 @@ msgstr "Razmak između slova"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3275,15 +3269,15 @@ msgstr "Vrh i dno"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Izvezi 1 element"
|
||||
|
@ -3294,19 +3288,19 @@ msgstr[2] "Izvezi %s elemenata"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Izvoz neočekivano spor"
|
||||
|
||||
|
@ -3888,7 +3882,7 @@ msgstr "Jednostruki kutovi"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Pokušaj ponovo"
|
||||
|
||||
|
@ -4406,7 +4400,7 @@ msgstr "Oblici"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Uvezeni SVG atributi"
|
||||
|
||||
|
|
|
@ -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/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"
|
||||
msgstr "Si è verificato un errore inaspettato."
|
||||
|
||||
|
@ -908,213 +908,213 @@ msgstr "Account di supporto Twitter"
|
|||
msgid "generic.error"
|
||||
msgstr "Si è verificato un errore"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Sfumatura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valore"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Riempire"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Scaricare l'immagine sorgente"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altezza"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Larghezza"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Disposizione"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altezza"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Sinistra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Raggio"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotazione"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "In alto"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Larghezza"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Ombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Contorno"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centro"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interno"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Esterno"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Tratteggiato"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Misto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Nessuno"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solido"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Larghezza"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Font Family"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Dimensione del carattere"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Stile del carattere"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Spaziatura delle lettere"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Altezza Linea"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decorazioni testo"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Nessuno"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Barrato"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Sottolineato"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Trasforma Testo"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minuscolo"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Nessuno"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Prime lettere maiuscole"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Maiuscolo"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Codice"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Cerchio"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Componente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curvo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Raggruppa"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Immagine"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maschera"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s selezionati"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Tracciato"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rettangolo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Testo"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informazione"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2116,4 +2116,4 @@ msgstr "Crea interazioni complete per imitare al meglio il prodotto finale."
|
|||
|
||||
#: src/app/main/ui/dashboard/team.cljs
|
||||
msgid "title.team-invitations"
|
||||
msgstr "Inviti - %s - Penpot"
|
||||
msgstr "Inviti - %s - Penpot"
|
||||
|
|
|
@ -607,7 +607,7 @@ msgstr "オーナーはチームを脱退できません。オーナーロール
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "エラーが発生しました。"
|
||||
|
||||
|
@ -659,101 +659,101 @@ msgstr "Twitterサポートアカウント"
|
|||
msgid "generic.error"
|
||||
msgstr "エラーが発生しました"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "ぼかし"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "塗りつぶし"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "画像をダウンロード"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "高さ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "横幅"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "レイアウト"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "高さ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "半径"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "回転"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "上"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "幅"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "シャドウ"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "中央"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "フォントファミリー"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "フォントサイズ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "フォントスタイル"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "行の高さ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "文字装飾"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "下線"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "円"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "コンポーネント"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "曲線"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "グループ"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "画像"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "マスク"
|
||||
|
||||
#: src/app/main/ui/workspace/header.cljs
|
||||
|
@ -996,4 +996,4 @@ msgstr "招待を再送"
|
|||
|
||||
#: src/app/main/ui/static.cljs, src/app/main/ui/static.cljs, src/app/main/ui/static.cljs
|
||||
msgid "labels.retry"
|
||||
msgstr "リトライ"
|
||||
msgstr "リトライ"
|
||||
|
|
|
@ -231,82 +231,82 @@ msgstr "Beskrivelse"
|
|||
msgid "feedback.subject"
|
||||
msgstr "Emne"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Verdi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Last ned kildebilde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Høyde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Bredde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Høyde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Venstre"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Bredde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Skygge"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Bredde"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Skriftfamilie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Skriftstil"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Kode"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Sirkel"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Gruppe"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Bilde"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Sti"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Tekst"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid "labels.accept"
|
||||
|
@ -712,7 +712,7 @@ msgstr "Komponent"
|
|||
msgid "workspace.options.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"
|
||||
msgstr "Eksporterer …"
|
||||
|
||||
|
@ -762,4 +762,4 @@ msgstr "Skjerm"
|
|||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/measures.cljs
|
||||
msgid "workspace.options.radius.all-corners"
|
||||
msgstr "Alle hjørner"
|
||||
msgstr "Alle hjørner"
|
||||
|
|
|
@ -834,7 +834,7 @@ msgstr ""
|
|||
"Musisz zaakceptować nasze warunki świadcznia usług oraz politykę "
|
||||
"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"
|
||||
msgstr "Wystąpił nieoczekiwany błąd."
|
||||
|
||||
|
@ -906,218 +906,218 @@ msgstr "Służymy pomocą w kwestiach technicznych."
|
|||
msgid "generic.error"
|
||||
msgstr "Wystąpił błąd"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Rozmycie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Wartość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Wypełnienie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Pobierz obraz źródłowy"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Wysokość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Szerokość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Układ"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Wysokość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Lewo"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Promień"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Obrót"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Góra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Szerokość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Cień"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Obrys"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Środek"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Wewnątrz"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Zewnątrz"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Kropkowany"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mieszany"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Brak"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Ciągły"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Szerokość"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Rodzina fontów"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Rozmiar fontu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Styl fontu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Rozstaw liter"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Wysokość linii"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Dekoracja tekstu"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Brak"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Przekreślenie"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Podkreślenie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Przekształcenie tekstu"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "małe litery"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Brak"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Kapitaliki"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "DUŻE LITERY"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Kod"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Okrąg"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Komponent"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Krzywa"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Artboard"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupa"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Obraz"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maska"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s wybrano"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Ścieżka"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Prostokąt"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Tekst"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informacje"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2337,9 +2337,6 @@ msgstr "Przejdź do sekcji komentarzy widzów"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Idź do kokpitu"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Przejdź do sekcji przekazania widza"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Idź do sekcji interakcji widza"
|
||||
|
||||
|
@ -2520,7 +2517,7 @@ msgstr "Członkowie - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Tryb wyświetlania - Penpot"
|
||||
|
||||
|
@ -2536,11 +2533,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Obszar kompozycji nie znaleziony."
|
||||
|
||||
|
@ -2555,9 +2552,6 @@ msgstr "Nie pokazuj interakcji"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Pełny ekran"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Wymiana (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interakcje"
|
||||
|
@ -2741,7 +2735,7 @@ msgstr "Odstępy między literami"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3115,15 +3109,15 @@ msgstr "Góra i dół"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Eksportuj 1 element"
|
||||
|
@ -3134,19 +3128,19 @@ msgstr[2] "Eksportuj %s elementów"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Eksportowanie niespodziewanie powolne"
|
||||
|
||||
|
@ -3629,7 +3623,7 @@ msgstr "Pojedynczy róg"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Ponów"
|
||||
|
||||
|
@ -4128,7 +4122,7 @@ msgstr "Kształty"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Importowane atrybuty SVG"
|
||||
|
||||
|
|
|
@ -835,7 +835,7 @@ msgstr ""
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "Um erro inesperado ocorreu."
|
||||
|
||||
|
@ -908,218 +908,218 @@ msgstr "Conta de suporte no Twitter"
|
|||
msgid "generic.error"
|
||||
msgstr "Um erro ocorreu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Borrar"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Preencher"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Baixar imagem original"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Esquerda"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Raio"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotação"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Superior"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Sombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Traço"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centro"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Dentro"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Fora"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Pontilhado"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Misto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Sólido"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Família da fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Tamanho da fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Estilo da fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Espaçamento entre letras"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Altura da linha"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decoração de texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Riscado"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Sublinhado"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformação de texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minúsculo"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Iniciais em maiúsculas"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Maiúsculo"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Código"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Círculo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Componente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curva"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Prancheta"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imagem"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Máscara"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s selecionados"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Caminho"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Retângulo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informação"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2112,7 +2112,7 @@ msgid "onboarding.slide.2.title"
|
|||
msgstr "Obtenha feedback, apresente e compartilhe seu trabalho"
|
||||
|
||||
msgid "onboarding.slide.3.alt"
|
||||
msgstr "Handoff e lowcode"
|
||||
msgstr "Inspect e lowcode"
|
||||
|
||||
msgid "onboarding.slide.3.desc1"
|
||||
msgstr ""
|
||||
|
@ -2460,9 +2460,6 @@ msgstr "Ir para secção de comentários"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Ir para o painel"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Ir para seção de entrega"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Ir para seção de interação"
|
||||
|
||||
|
@ -2646,7 +2643,7 @@ msgstr "Membros - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Modo de visualização - Penpot"
|
||||
|
||||
|
@ -2662,11 +2659,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Prancheta não encontrada."
|
||||
|
||||
|
@ -2681,9 +2678,6 @@ msgstr "Não mostrar interações"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Tela cheia"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Entrega (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interações"
|
||||
|
@ -2869,7 +2863,7 @@ msgstr "Espaçamento de letra"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3246,15 +3240,15 @@ msgstr "Topo & Fundo"
|
|||
msgid "workspace.options.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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Exportar 1 elemento"
|
||||
|
||||
|
@ -3262,19 +3256,19 @@ msgstr "Exportar 1 elemento"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Exportação inesperadamente lenta"
|
||||
|
||||
|
@ -3833,7 +3827,7 @@ msgstr "Cantos individuais"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Tentar de novo"
|
||||
|
||||
|
@ -4335,7 +4329,7 @@ msgstr "Formas"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Atributos SVG importados"
|
||||
|
||||
|
|
|
@ -837,7 +837,7 @@ msgstr ""
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "Ocorreu um erro inesperado."
|
||||
|
||||
|
@ -910,218 +910,218 @@ msgstr "Conta de suporte no Twitter"
|
|||
msgid "generic.error"
|
||||
msgstr "Ocorreu um erro"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Desfoque"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Preencher"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Descarregar imagem original"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Altura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Esquerda"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Raio"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotação"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Topo"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Sombra"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Traço"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centro"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interior"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Exterior"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Pontilhado"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Misto"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Sólido"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Largura"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Família da Fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Tamanho da Fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Estilo da Fonte"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Espaço entre caracteres"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Altura da Linha"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decoração de Texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Rasurado"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Sublinhado"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformação de Texto"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minúsculas"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Nenhum"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Capitalização de Título"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Maiúsculas"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Código"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Círculo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Componente"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curva"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Prancheta"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grupo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imagem"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Máscara"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Selecionados"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Caminho"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Rectângulo"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Informação"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2107,7 +2107,7 @@ msgid "onboarding.slide.2.title"
|
|||
msgstr "Recebe feedback, apresenta e partilha o teu trabalho"
|
||||
|
||||
msgid "onboarding.slide.3.alt"
|
||||
msgstr "Handoff e low code"
|
||||
msgstr "Inspect e low code"
|
||||
|
||||
msgid "onboarding.slide.3.desc1"
|
||||
msgstr ""
|
||||
|
@ -2455,9 +2455,6 @@ msgstr "Ir para secção de comentários"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Ir para painel"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Ir para secção de transferências"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Ir para secção de interações"
|
||||
|
||||
|
@ -2641,7 +2638,7 @@ msgstr "Membros - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Modo visualizador - Penpot"
|
||||
|
||||
|
@ -2657,11 +2654,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Quadro não encontrado."
|
||||
|
||||
|
@ -2676,9 +2673,6 @@ msgstr "Não mostrar interações"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Tela Cheia"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Transferência (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Interações"
|
||||
|
@ -2864,7 +2858,7 @@ msgstr "Espaço entre letras"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3241,15 +3235,15 @@ msgstr "Topo e Abaixo"
|
|||
msgid "workspace.options.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"
|
||||
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"
|
||||
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_plural "workspace.options.export-object"
|
||||
msgstr[0] "Exportar 1 elemento"
|
||||
|
@ -3259,19 +3253,19 @@ msgstr[1] "Exportar %s elementos"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Exportação inesperadamente lenta"
|
||||
|
||||
|
@ -3830,7 +3824,7 @@ msgstr "Cantos individuais"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "Repetir"
|
||||
|
||||
|
@ -4334,7 +4328,7 @@ msgstr "Formas"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "Importar atributos do SVG"
|
||||
|
||||
|
|
|
@ -501,7 +501,7 @@ msgstr "Înregistrarea este dezactivată în prezent."
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "A apărut o eroare neașteptată."
|
||||
|
||||
|
@ -547,212 +547,212 @@ msgstr "Adresă de Email"
|
|||
msgid "generic.error"
|
||||
msgstr "Am întâmpinat o eroare"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Blur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Valoare"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Fill"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Descarcă imaginea sursă"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Înălțime"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Lățime"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Înălțime"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Stânga"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Rază"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Rotație"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Top"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Lățime"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Umbră"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Linie"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Centru"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Interior"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Exterior"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Punctat"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Mixat"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Niciunul"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Solid"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Lățime"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografie"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Familie de Fonturi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Dimensiune Font"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Stil Font"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Spațiere"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Înălțimea rândului"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Decorare Text"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Niciunul"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Strikethrough"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Subliniat"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Transformare Text"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Minuscule"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Niciunul"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Title Case"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Majuscule"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Cod"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Cerc"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Curbat"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Planșă de lucru"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grup"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Imagine"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Selectate"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Traiectorie"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Dreptunghi"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Text"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -1372,7 +1372,7 @@ msgstr "Membri - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Vizualizare - Penpot"
|
||||
|
||||
|
@ -1380,11 +1380,11 @@ msgstr "%s - Vizualizare - Penpot"
|
|||
msgid "title.workspace"
|
||||
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"
|
||||
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"
|
||||
msgstr "Fereastra nu există."
|
||||
|
||||
|
@ -1570,7 +1570,7 @@ msgstr "Spaţiere Litere"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -1792,11 +1792,11 @@ msgstr "Componentă"
|
|||
msgid "workspace.options.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"
|
||||
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"
|
||||
msgstr "Exportă forma obiectului"
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ msgstr "Exportă forma obiectului"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
msgstr "Se exportă…"
|
||||
|
||||
|
@ -2346,7 +2346,7 @@ msgstr "Istoric (%s)"
|
|||
msgid "workspace.sidebar.layers"
|
||||
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"
|
||||
msgstr "Atribute SVG importate"
|
||||
|
||||
|
@ -2530,4 +2530,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Actualizează"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Click pentru a închide calea"
|
||||
msgstr "Click pentru a închide calea"
|
||||
|
|
|
@ -830,7 +830,7 @@ msgstr "Нужно переназначить роль владельца пер
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "Произошла ошибка."
|
||||
|
||||
|
@ -902,218 +902,218 @@ msgstr "Аккаунт поддержки в Twitter"
|
|||
msgid "generic.error"
|
||||
msgstr "Произошла ошибка"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Размытие"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Значение"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Заливка"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Скачать оригинал"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Высота"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Ширина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Размещение"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Высота"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Слева"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Радиус"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Вращение"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Сверху"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Ширина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Тень"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "Р"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "Р"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Обводка"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Центр"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Внутрь"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Наружу"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Точечная"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Смешанная"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Нет"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Сплошная"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Толщина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Текст"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Гарнитура"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Размер"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Шрифт"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Трекинг"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Интерлиньяж"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Оформление"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Нет"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Перечёркнутый"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Подчёркнутый"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Регистр"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Нижний регистр"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Какой есть"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "Регистр Заголовка"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "Верхний регистр"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Код"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Круг"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Компонент"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Кривая"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Кадр"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Группа"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Изображение"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Маска"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "Выделено: %s"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Контур"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Прямоугольник"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Текст"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Информация"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2137,7 +2137,7 @@ msgstr "Участники - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Режим просмотра - Penpot"
|
||||
|
||||
|
@ -2153,11 +2153,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Кадр не найден."
|
||||
|
||||
|
@ -2557,19 +2557,19 @@ msgstr "Фон холста"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Экспорт не удался"
|
||||
|
||||
|
@ -3151,4 +3151,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Обновить"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Нажмите для замыкания контура"
|
||||
msgstr "Нажмите для замыкания контура"
|
||||
|
|
|
@ -867,7 +867,7 @@ msgstr "Hizmet şartlarımızı ve gizlilik politikamızı kabul etmelisin."
|
|||
|
||||
#: 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/ui/inspect/exports.cljs
|
||||
msgid "errors.unexpected-error"
|
||||
msgstr "Beklenmedik bir hata oluştu."
|
||||
|
||||
|
@ -939,216 +939,216 @@ msgstr "Twitter destek hesabı"
|
|||
msgid "generic.error"
|
||||
msgstr "Bir hata oluştu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Bulanıklık"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Değer"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Doldur"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "Kaynak görselini indir"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Yükseklik"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Genişlik"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Yerleşim düzeni"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Yükseklik"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Sol"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs,
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Yarıçap"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Döndür"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Üst"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Genişlik"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Gölge"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "Çerçeve"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Merkezi"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "İçinde"
|
||||
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Dışarıda"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Noktalı"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Karışık"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Hiçbiri"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Düz"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Genişlik"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "Yazı Tipi Ailesi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "Yazı Tipi Boyutu"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "Yazı Tipi Biçimi"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "Harf Aralığı"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "Satır Yüksekliği"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "Metin Süsleme"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Hiçbiri"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Üstü Çizili"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Altı Çizili"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "Metin Dönüşümü"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "Küçük Harf"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Hiçbiri"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
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"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Kod"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Daire"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Bileşen"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Eğri"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Çalışma yüzeyi"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Grup"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Görsel"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Maskele"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "%s Seçildi"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Yol"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Dikdörtgen"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Metin"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Bilgi"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2574,9 +2574,6 @@ msgstr "Görüntüleyici yorum bölümüne git"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "Denetim paneline git"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "Görüntüleyici teslim bölümüne git"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "Görüntüleyici etkileşimleri bölümüne git"
|
||||
|
||||
|
@ -2760,7 +2757,7 @@ msgstr "Üyeler - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - Görünüm modu - Penpot"
|
||||
|
||||
|
@ -2776,11 +2773,11 @@ msgstr ""
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "Çalışma yüzeyi bulunamadı."
|
||||
|
||||
|
@ -2799,9 +2796,6 @@ msgstr "Sayfayı düzenle"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "Tam Ekran"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "Teslim (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "Etkileşimler"
|
||||
|
@ -2996,8 +2990,8 @@ msgid "workspace.assets.typography.line-height"
|
|||
msgstr "Satır Yüksekliği"
|
||||
|
||||
#: 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/inspect/attributes/text.cljs,
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3379,17 +3373,17 @@ msgid "workspace.options.design"
|
|||
msgstr "Tasarım"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dışa aktar"
|
||||
|
||||
#: 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"
|
||||
msgstr "Seçimi dışa aktar"
|
||||
|
||||
#: 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"
|
||||
msgstr "1 ögeyi dışa aktar"
|
||||
|
||||
|
@ -3398,22 +3392,22 @@ msgid "workspace.options.export.suffix"
|
|||
msgstr "Son ek"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dışa aktarma tamamlandı"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dışa aktarılıyor…"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dışa aktarılamadı"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dışa aktarma beklenmedik şekilde yavaş"
|
||||
|
||||
|
@ -3978,7 +3972,7 @@ msgid "workspace.options.recent-fonts"
|
|||
msgstr "Son kullanılanlar"
|
||||
|
||||
#: 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"
|
||||
msgstr "Yeniden dene"
|
||||
|
||||
|
@ -4508,7 +4502,7 @@ msgid "workspace.sidebar.layers.texts"
|
|||
msgstr "Metinler"
|
||||
|
||||
#: 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"
|
||||
msgstr "İçe Aktarılan SVG Öznitelikleri"
|
||||
|
||||
|
|
|
@ -201,169 +201,169 @@ msgstr "Тема"
|
|||
msgid "feedback.title"
|
||||
msgstr "Електронна пошта"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "Розмивання"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "Значення"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "Заливка"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "Висота"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "Ширина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "Розміщення"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "Висота"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "Зліва"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "Радіус"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "Обертання"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "Зверху"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "Ширина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "Тінь"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "Р"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "Центр"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "Всередину"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "Назовні"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "Точковий"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "Змішаний"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "Немає"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "Суцільний"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "Товщина"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "Текст"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "Немає"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "Перечеркнутий"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "Підчеркнутий"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "Який є"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Код"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "Коло"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "Компонент"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "Крива"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "Кадр"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "Група"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "Зображення"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "Маска"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "Виділено: %s"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "Контур"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "Прямокутник"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "Текст"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "Інформація"
|
||||
|
||||
#: src/app/main/ui/dashboard/sidebar.cljs
|
||||
|
@ -876,4 +876,4 @@ msgstr "Розмиття"
|
|||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs
|
||||
msgid "workspace.options.component"
|
||||
msgstr "Компонент"
|
||||
msgstr "Компонент"
|
||||
|
|
|
@ -801,7 +801,7 @@ msgstr "所有者不能离开团队,您必须转让所有者角色。"
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "发生了意料之外的错误。"
|
||||
|
||||
|
@ -869,218 +869,218 @@ msgstr "Twtter支持帐号"
|
|||
msgid "generic.error"
|
||||
msgstr "发生了一个错误"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur"
|
||||
msgstr "模糊"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "值"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/fill.cljs
|
||||
msgid "handoff.attributes.fill"
|
||||
#: src/app/main/ui/inspect/attributes/fill.cljs
|
||||
msgid "inspect.attributes.fill"
|
||||
msgstr "填充"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "下载原图"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "高"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "宽"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "布局"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "高"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs, src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.radius"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs, src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.radius"
|
||||
msgstr "圆角"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.rotation"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.rotation"
|
||||
msgstr "旋转"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.top"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.top"
|
||||
msgstr "顶"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.width"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.width"
|
||||
msgstr "宽"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow"
|
||||
msgstr "阴影"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke"
|
||||
msgstr "边框"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.center"
|
||||
msgid "inspect.attributes.stroke.alignment.center"
|
||||
msgstr "居中"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.inner"
|
||||
msgid "inspect.attributes.stroke.alignment.inner"
|
||||
msgstr "内部"
|
||||
|
||||
#, permanent
|
||||
msgid "handoff.attributes.stroke.alignment.outer"
|
||||
msgid "inspect.attributes.stroke.alignment.outer"
|
||||
msgstr "外部"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.dotted"
|
||||
msgid "inspect.attributes.stroke.style.dotted"
|
||||
msgstr "虚线"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.mixed"
|
||||
msgid "inspect.attributes.stroke.style.mixed"
|
||||
msgstr "混合"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.none"
|
||||
msgid "inspect.attributes.stroke.style.none"
|
||||
msgstr "无"
|
||||
|
||||
msgid "handoff.attributes.stroke.style.solid"
|
||||
msgid "inspect.attributes.stroke.style.solid"
|
||||
msgstr "实线"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/stroke.cljs
|
||||
msgid "handoff.attributes.stroke.width"
|
||||
#: src/app/main/ui/inspect/attributes/stroke.cljs
|
||||
msgid "inspect.attributes.stroke.width"
|
||||
msgstr "宽"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography"
|
||||
msgstr "排版"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-family"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-family"
|
||||
msgstr "字体"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-size"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-size"
|
||||
msgstr "字号"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.font-style"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.font-style"
|
||||
msgstr "文字风格"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.letter-spacing"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.letter-spacing"
|
||||
msgstr "字距"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.line-height"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.line-height"
|
||||
msgstr "行高"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-decoration"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-decoration"
|
||||
msgstr "文字装饰"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.none"
|
||||
msgid "inspect.attributes.typography.text-decoration.none"
|
||||
msgstr "无"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.strikethrough"
|
||||
msgid "inspect.attributes.typography.text-decoration.strikethrough"
|
||||
msgstr "删除线"
|
||||
|
||||
msgid "handoff.attributes.typography.text-decoration.underline"
|
||||
msgid "inspect.attributes.typography.text-decoration.underline"
|
||||
msgstr "下划线"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/text.cljs
|
||||
msgid "handoff.attributes.typography.text-transform"
|
||||
#: src/app/main/ui/inspect/attributes/text.cljs
|
||||
msgid "inspect.attributes.typography.text-transform"
|
||||
msgstr "文本变换"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.lowercase"
|
||||
msgid "inspect.attributes.typography.text-transform.lowercase"
|
||||
msgstr "小写"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.none"
|
||||
msgid "inspect.attributes.typography.text-transform.none"
|
||||
msgstr "无"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.titlecase"
|
||||
msgid "inspect.attributes.typography.text-transform.titlecase"
|
||||
msgstr "首字母大写"
|
||||
|
||||
msgid "handoff.attributes.typography.text-transform.uppercase"
|
||||
msgid "inspect.attributes.typography.text-transform.uppercase"
|
||||
msgstr "大写"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "代码"
|
||||
|
||||
msgid "handoff.tabs.code.selected.circle"
|
||||
msgid "inspect.tabs.code.selected.circle"
|
||||
msgstr "圆"
|
||||
|
||||
msgid "handoff.tabs.code.selected.component"
|
||||
msgid "inspect.tabs.code.selected.component"
|
||||
msgstr "组件"
|
||||
|
||||
msgid "handoff.tabs.code.selected.curve"
|
||||
msgid "inspect.tabs.code.selected.curve"
|
||||
msgstr "曲线"
|
||||
|
||||
msgid "handoff.tabs.code.selected.frame"
|
||||
msgid "inspect.tabs.code.selected.frame"
|
||||
msgstr "画板"
|
||||
|
||||
msgid "handoff.tabs.code.selected.group"
|
||||
msgid "inspect.tabs.code.selected.group"
|
||||
msgstr "编组"
|
||||
|
||||
msgid "handoff.tabs.code.selected.image"
|
||||
msgid "inspect.tabs.code.selected.image"
|
||||
msgstr "图片"
|
||||
|
||||
msgid "handoff.tabs.code.selected.mask"
|
||||
msgid "inspect.tabs.code.selected.mask"
|
||||
msgstr "蒙版"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.code.selected.multiple"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.code.selected.multiple"
|
||||
msgstr "已选中%s项"
|
||||
|
||||
msgid "handoff.tabs.code.selected.path"
|
||||
msgid "inspect.tabs.code.selected.path"
|
||||
msgstr "路径"
|
||||
|
||||
msgid "handoff.tabs.code.selected.rect"
|
||||
msgid "inspect.tabs.code.selected.rect"
|
||||
msgstr "矩形"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "文本"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "信息"
|
||||
|
||||
msgid "history.alert-message"
|
||||
|
@ -2348,9 +2348,6 @@ msgstr "前往查阅者评论区"
|
|||
msgid "shortcuts.open-dashboard"
|
||||
msgstr "前往看板"
|
||||
|
||||
msgid "shortcuts.open-handoff"
|
||||
msgstr "前往阅读器切换部分"
|
||||
|
||||
msgid "shortcuts.open-interactions"
|
||||
msgstr "转往阅读器交互部分"
|
||||
|
||||
|
@ -2534,7 +2531,7 @@ msgstr "成员 - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - 预览模式)- Penpot"
|
||||
|
||||
|
@ -2548,11 +2545,11 @@ msgstr "此共享的链接已失效。创建一个新的链接或向所有者索
|
|||
msgid "viewer.breaking-change.message"
|
||||
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"
|
||||
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"
|
||||
msgstr "画框未找到。"
|
||||
|
||||
|
@ -2567,9 +2564,6 @@ msgstr "不显示交互"
|
|||
msgid "viewer.header.fullscreen"
|
||||
msgstr "全屏"
|
||||
|
||||
msgid "viewer.header.handoff-section"
|
||||
msgstr "交接 (%s)"
|
||||
|
||||
#: src/app/main/ui/viewer/header.cljs
|
||||
msgid "viewer.header.interactions"
|
||||
msgstr "交互"
|
||||
|
@ -2753,7 +2747,7 @@ msgstr "字距"
|
|||
msgid "workspace.assets.typography.line-height"
|
||||
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"
|
||||
msgstr "Ag"
|
||||
|
||||
|
@ -3130,15 +3124,15 @@ msgstr "顶部与底部"
|
|||
msgid "workspace.options.design"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "导出 1 个元素"
|
||||
|
||||
|
@ -3146,19 +3140,19 @@ msgstr "导出 1 个元素"
|
|||
msgid "workspace.options.export.suffix"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "导出速度意外缓慢"
|
||||
|
||||
|
@ -3713,7 +3707,7 @@ msgstr "单个角"
|
|||
msgid "workspace.options.recent-fonts"
|
||||
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"
|
||||
msgstr "重试"
|
||||
|
||||
|
@ -4213,7 +4207,7 @@ msgstr "形状"
|
|||
msgid "workspace.sidebar.layers.texts"
|
||||
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"
|
||||
msgstr "已导入SVG属性"
|
||||
|
||||
|
|
|
@ -550,7 +550,7 @@ msgstr "目前並不開放註冊。"
|
|||
msgid "errors.terms-privacy-agreement-invalid"
|
||||
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"
|
||||
msgstr "發生了預料之外的錯誤。"
|
||||
|
||||
|
@ -578,70 +578,70 @@ msgstr "狀況描述"
|
|||
msgid "feedback.title"
|
||||
msgstr "電子郵件"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/blur.cljs
|
||||
msgid "handoff.attributes.blur.value"
|
||||
#: src/app/main/ui/inspect/attributes/blur.cljs
|
||||
msgid "inspect.attributes.blur.value"
|
||||
msgstr "數值"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hex"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hex"
|
||||
msgstr "HEX"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.hsla"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.hsla"
|
||||
msgstr "HSLA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/common.cljs
|
||||
msgid "handoff.attributes.color.rgba"
|
||||
#: src/app/main/ui/inspect/attributes/common.cljs
|
||||
msgid "inspect.attributes.color.rgba"
|
||||
msgstr "RGBA"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.download"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.download"
|
||||
msgstr "下載原始圖片"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.height"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.height"
|
||||
msgstr "高度"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/image.cljs
|
||||
msgid "handoff.attributes.image.width"
|
||||
#: src/app/main/ui/inspect/attributes/image.cljs
|
||||
msgid "inspect.attributes.image.width"
|
||||
msgstr "寬度"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout"
|
||||
msgstr "樣式"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.height"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.height"
|
||||
msgstr "高度"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/layout.cljs
|
||||
msgid "handoff.attributes.layout.left"
|
||||
#: src/app/main/ui/inspect/attributes/layout.cljs
|
||||
msgid "inspect.attributes.layout.left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.blur"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.blur"
|
||||
msgstr "B"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-x"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-x"
|
||||
msgstr "X"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.offset-y"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.offset-y"
|
||||
msgstr "Y"
|
||||
|
||||
#: src/app/main/ui/handoff/attributes/shadow.cljs
|
||||
msgid "handoff.attributes.shadow.shorthand.spread"
|
||||
#: src/app/main/ui/inspect/attributes/shadow.cljs
|
||||
msgid "inspect.attributes.shadow.shorthand.spread"
|
||||
msgstr "S"
|
||||
|
||||
msgid "handoff.tabs.code.selected.svg-raw"
|
||||
msgid "inspect.tabs.code.selected.svg-raw"
|
||||
msgstr "SVG"
|
||||
|
||||
msgid "handoff.tabs.code.selected.text"
|
||||
msgid "inspect.tabs.code.selected.text"
|
||||
msgstr "文字"
|
||||
|
||||
#: src/app/main/ui/handoff/right_sidebar.cljs
|
||||
msgid "handoff.tabs.info"
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs
|
||||
msgid "inspect.tabs.info"
|
||||
msgstr "資訊"
|
||||
|
||||
msgid "labels.accept"
|
||||
|
@ -934,7 +934,7 @@ msgstr "成員 - %s - Penpot"
|
|||
msgid "title.team-settings"
|
||||
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"
|
||||
msgstr "%s - 檢視模式 - Penpot"
|
||||
|
||||
|
@ -1004,11 +1004,11 @@ msgstr "HSV"
|
|||
msgid "workspace.libraries.colors.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"
|
||||
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"
|
||||
msgstr "正在匯出…"
|
||||
|
||||
|
@ -1066,4 +1066,4 @@ msgstr "歷史"
|
|||
|
||||
#: src/app/main/data/workspace/libraries.cljs
|
||||
msgid "workspace.updates.update"
|
||||
msgstr "更新"
|
||||
msgstr "更新"
|
||||
|
|
Loading…
Add table
Reference in a new issue