mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
Merge remote-tracking branch 'origin/staging' into develop
This commit is contained in:
@@ -78,6 +78,7 @@
|
||||
- Fix can't import 'borderWidth' type token [#132](https://github.com/tokens-studio/penpot/issues/132)
|
||||
- Fix moving elements up or down while pressing alt [Taiga Issue #11992](https://tree.taiga.io/project/penpot/issue/11992)
|
||||
- Fix conflicting shortcuts (remove dec/inc line height and letter spacing) [Taiga #12102](https://tree.taiga.io/project/penpot/issue/12102)
|
||||
- Fix conflicting shortcuts (remove text-align shortcuts) [Taiga #12047](https://tree.taiga.io/project/penpot/issue/12047)
|
||||
|
||||
## 2.9.0
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
(def schema:segments impl/schema:segments)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; TRANSFORMATIONS
|
||||
;; CONSTRUCTORS & TYPE METHODS
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(defn content?
|
||||
@@ -55,6 +55,10 @@
|
||||
[data]
|
||||
(impl/from-string data))
|
||||
|
||||
(defn from-plain
|
||||
[data]
|
||||
(impl/from-plain data))
|
||||
|
||||
(defn check-content
|
||||
[content]
|
||||
(impl/check-content content))
|
||||
@@ -189,6 +193,12 @@
|
||||
[content]
|
||||
(some-> content segment/get-points))
|
||||
|
||||
(defn calc-selrect
|
||||
"Calculate selrect from a content. The content can be in a PathData
|
||||
instance or plain vector of segments."
|
||||
[content]
|
||||
(segment/content->selrect content))
|
||||
|
||||
(defn- calc-bool-content*
|
||||
"Calculate the boolean content from shape and objects. Returns plain
|
||||
vector of segments"
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
[app.common.types.fills :refer [schema:fill fill->color]]
|
||||
[app.common.types.grid :as ctg]
|
||||
[app.common.types.path :as path]
|
||||
[app.common.types.path.segment :as path.segment]
|
||||
[app.common.types.plugins :as ctpg]
|
||||
[app.common.types.shape.attrs :refer [default-color]]
|
||||
[app.common.types.shape.blur :as ctsb]
|
||||
@@ -588,12 +587,16 @@
|
||||
(defn setup-path
|
||||
[{:keys [content selrect points] :as shape}]
|
||||
(let [selrect (or selrect
|
||||
(path.segment/content->selrect content)
|
||||
(path/calc-selrect content)
|
||||
(grc/make-rect))
|
||||
points (or points (grc/rect->points selrect))]
|
||||
points (or points
|
||||
(grc/rect->points selrect))
|
||||
;; Ensure we hace correct type here for Path Data
|
||||
content (path/content content)]
|
||||
(-> shape
|
||||
(assoc :selrect selrect)
|
||||
(assoc :points points))))
|
||||
(assoc :points points)
|
||||
(assoc :content content))))
|
||||
|
||||
(defn- setup-image
|
||||
[{:keys [metadata] :as shape}]
|
||||
|
||||
@@ -254,7 +254,7 @@ desc: Get quickstart tips, shortcuts, and tutorials for Penpot! Learn interface
|
||||
<td style="text-align: center;"><kbd>⌘</kbd><kbd>⌥</kbd><kbd>G</kbd></td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td>Create component</td>
|
||||
<td>Create component / variant</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd><kbd>K</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd><kbd>K</kbd></td>
|
||||
</tr>
|
||||
@@ -263,11 +263,6 @@ desc: Get quickstart tips, shortcuts, and tutorials for Penpot! Learn interface
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>K</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd><kbd>⇧</kbd><kbd>K</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Create Variant</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd><kbd>K</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd><kbd>K</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Flip horizontal</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd><kbd>H</kbd></td>
|
||||
@@ -751,46 +746,6 @@ desc: Get quickstart tips, shortcuts, and tutorials for Penpot! Learn interface
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd> <kbd>Shift</kbd> <kbd>LEFT</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⇧</kbd> <kbd>LEFT</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Increase letter spacing</td>
|
||||
<td style="text-align: center;"><kbd>Alt</kbd> <kbd>UP</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌥</kbd> <kbd>UP</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Decrease letter spacing</td>
|
||||
<td style="text-align: center;"><kbd>Alt</kbd> <kbd>DOWN</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌥</kbd> <kbd>DOWN</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Increase line height</td>
|
||||
<td style="text-align: center;"><kbd>Shift</kbd> <kbd>Alt</kbd> <kbd>UP</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⇧</kbd> <kbd>⌥</kbd> <kbd>UP</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Decrease line height</td>
|
||||
<td style="text-align: center;"><kbd>Shift</kbd> <kbd>Alt</kbd> <kbd>DOWN</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⇧</kbd> <kbd>⌥</kbd> <kbd>DOWN</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Align left</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd> <kbd>Alt</kbd> <kbd>L</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⌥</kbd> <kbd>L</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Align right</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd> <kbd>Alt</kbd> <kbd>R</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⌥</kbd> <kbd>R</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Align center</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd> <kbd>Alt</kbd> <kbd>T</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⌥</kbd> <kbd>T</kbd></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Justify</td>
|
||||
<td style="text-align: center;"><kbd>Ctrl</kbd> <kbd>Alt</kbd> <kbd>J</kbd></td>
|
||||
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⌥</kbd> <kbd>J</kbd></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
|
||||
;; Watch for profile deletion events
|
||||
(->> stream
|
||||
(rx/filter dp/profile-deleted?)
|
||||
(rx/filter dp/profile-deleted-event?)
|
||||
(rx/map da/logged-out))
|
||||
|
||||
;; Once profile is fetched, initialize all penpot application
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
[app.main.repo :as rp]
|
||||
[app.main.router :as rt]
|
||||
[app.plugins.register :as plugins.register]
|
||||
[app.util.http :as http]
|
||||
[app.util.i18n :as i18n :refer [tr]]
|
||||
[app.util.storage :as storage]
|
||||
[beicon.v2.core :as rx]
|
||||
@@ -356,9 +357,19 @@
|
||||
|
||||
;; --- EVENT: request-account-deletion
|
||||
|
||||
(def profile-deleted?
|
||||
(def profile-deleted-event?
|
||||
(ptk/type? ::profile-deleted))
|
||||
|
||||
(defn- delete-subscription
|
||||
[]
|
||||
(if (contains? cf/flags :subscriptions)
|
||||
(->> (http/fetch {:uri "/payments/subscriptions/delete"
|
||||
:credentials "include"
|
||||
:method :get})
|
||||
(rx/map (constantly nil))
|
||||
(rx/catch #(rx/empty)))
|
||||
(rx/empty)))
|
||||
|
||||
(defn request-account-deletion
|
||||
[params]
|
||||
(ptk/reify ::request-account-deletion
|
||||
@@ -366,13 +377,17 @@
|
||||
(watch [_ _ _]
|
||||
(let [{:keys [on-error on-success]
|
||||
:or {on-error rx/throw
|
||||
on-success identity}} (meta params)]
|
||||
(->> (rp/cmd! :delete-profile {})
|
||||
(rx/tap on-success)
|
||||
(rx/map (fn [_]
|
||||
(ptk/data-event ::profile-deleted params)))
|
||||
(rx/catch on-error)
|
||||
(rx/delay-at-least 300))))))
|
||||
on-success identity}}
|
||||
(meta params)]
|
||||
|
||||
(rx/concat
|
||||
(delete-subscription)
|
||||
(->> (rp/cmd! :delete-profile {})
|
||||
(rx/tap on-success)
|
||||
(rx/map (fn [_]
|
||||
(ptk/data-event ::profile-deleted params)))
|
||||
(rx/catch on-error)
|
||||
(rx/delay-at-least 300)))))))
|
||||
|
||||
;; --- EVENT: request-profile-recovery
|
||||
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
[app.common.files.helpers :as cfh]
|
||||
[app.common.geom.shapes :as gsh]
|
||||
[app.common.types.modifiers :as ctm]
|
||||
[app.common.types.path :as path]
|
||||
[app.common.types.shape :as cts]
|
||||
[app.main.data.helpers :as dsh]
|
||||
[app.main.data.workspace.shapes :as dwsh]
|
||||
@@ -72,10 +71,6 @@
|
||||
(-> (assoc :height 17 :width 4 :grow-type :auto-width)
|
||||
(cts/setup-shape))
|
||||
|
||||
(or (cfh/path-shape? shape)
|
||||
(cfh/bool-shape? shape))
|
||||
(update :content path/content)
|
||||
|
||||
:always
|
||||
(dissoc :initialized? :click-draw?))]
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@
|
||||
[app.common.types.component :as ctk]
|
||||
[app.common.types.container :as ctn]
|
||||
[app.common.types.modifiers :as ctm]
|
||||
[app.common.types.path :as path]
|
||||
[app.common.types.shape :as shape]
|
||||
[app.common.types.shape-tree :as ctst]
|
||||
[app.common.types.shape.attrs :refer [editable-attrs]]
|
||||
@@ -797,13 +796,11 @@
|
||||
text-shape? (cfh/text-shape? shape)
|
||||
pos-data (when ^boolean text-shape?
|
||||
(dm/get-in text-modifiers [shape-id :position-data]))]
|
||||
|
||||
(-> shape
|
||||
(gsh/transform-shape modifiers)
|
||||
(cond-> (d/not-empty? pos-data)
|
||||
(assoc-position-data pos-data shape))
|
||||
(cond-> (or (cfh/path-shape? shape)
|
||||
(cfh/bool-shape? shape))
|
||||
(update :content path/content))
|
||||
(cond-> text-shape?
|
||||
(update-grow-type shape)))))]
|
||||
|
||||
|
||||
@@ -326,7 +326,7 @@
|
||||
(ptk/reify ::handle-new-shape
|
||||
ptk/UpdateEvent
|
||||
(update [_ state]
|
||||
(let [shape (cts/setup-shape {:type :path :content (path/content nil)})]
|
||||
(let [shape (cts/setup-shape {:type :path})]
|
||||
(update state :workspace-drawing assoc :object shape)))
|
||||
|
||||
ptk/WatchEvent
|
||||
|
||||
@@ -221,24 +221,7 @@
|
||||
(st/emit! (dwu/commit-undo-transaction undo-id)))))
|
||||
|
||||
(def shortcuts
|
||||
{:text-align-left {:tooltip (ds/meta (ds/alt "L"))
|
||||
:command (ds/c-mod "alt+l")
|
||||
:subsections [:text-editor]
|
||||
:fn #(update-attrs-when-no-readonly {:text-align "left"})}
|
||||
:text-align-right {:tooltip (ds/meta (ds/alt "R"))
|
||||
:command (ds/c-mod "alt+r")
|
||||
:subsections [:text-editor]
|
||||
:fn #(update-attrs-when-no-readonly {:text-align "right"})}
|
||||
:text-align-center {:tooltip (ds/meta (ds/alt "T"))
|
||||
:command (ds/c-mod "alt+t")
|
||||
:subsections [:text-editor]
|
||||
:fn #(update-attrs-when-no-readonly {:text-align "center"})}
|
||||
:text-align-justify {:tooltip (ds/meta (ds/alt "J"))
|
||||
:command (ds/c-mod "alt+j")
|
||||
:subsections [:text-editor]
|
||||
:fn #(update-attrs-when-no-readonly {:text-align "justify"})}
|
||||
|
||||
:underline {:tooltip (ds/meta "U")
|
||||
{:underline {:tooltip (ds/meta "U")
|
||||
:command (ds/c-mod "u")
|
||||
:subsections [:text-editor]
|
||||
:fn #(update-attrs-when-no-readonly {:text-decoration "toggle-underline"})}
|
||||
|
||||
@@ -52,19 +52,19 @@
|
||||
:name "align-text-options"}
|
||||
[:& radio-button {:value "left"
|
||||
:id "text-align-left"
|
||||
:title (tr "workspace.options.text-options.text-align-left" (sc/get-tooltip :text-align-left))
|
||||
:title (tr "workspace.options.text-options.text-align-left")
|
||||
:icon deprecated-icon/text-align-left}]
|
||||
[:& radio-button {:value "center"
|
||||
:id "text-align-center"
|
||||
:title (tr "workspace.options.text-options.text-align-center" (sc/get-tooltip :text-align-center))
|
||||
:title (tr "workspace.options.text-options.text-align-center")
|
||||
:icon deprecated-icon/text-align-center}]
|
||||
[:& radio-button {:value "right"
|
||||
:id "text-align-right"
|
||||
:title (tr "workspace.options.text-options.text-align-right" (sc/get-tooltip :text-align-right))
|
||||
:title (tr "workspace.options.text-options.text-align-right")
|
||||
:icon deprecated-icon/text-align-right}]
|
||||
[:& radio-button {:value "justify"
|
||||
:id "text-align-justify"
|
||||
:title (tr "workspace.options.text-options.text-align-justify" (sc/get-tooltip :text-align-justify))
|
||||
:title (tr "workspace.options.text-options.text-align-justify")
|
||||
:icon deprecated-icon/text-justify}]]]))
|
||||
|
||||
(mf/defc text-direction-options
|
||||
|
||||
@@ -178,10 +178,6 @@
|
||||
(tr "shortcuts.start-editing")
|
||||
(tr "shortcuts.start-measure")
|
||||
(tr "shortcuts.stop-measure")
|
||||
(tr "shortcuts.text-align-center")
|
||||
(tr "shortcuts.text-align-justify")
|
||||
(tr "shortcuts.text-align-left")
|
||||
(tr "shortcuts.text-align-right")
|
||||
(tr "shortcuts.thumbnail-set")
|
||||
(tr "shortcuts.toggle-alignment")
|
||||
(tr "shortcuts.toggle-assets")
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
[app.common.types.fills :as types.fills]
|
||||
[app.common.types.grid :as ctg]
|
||||
[app.common.types.path :as path]
|
||||
[app.common.types.path.segment :as path.segm]
|
||||
[app.common.types.shape :as cts]
|
||||
[app.common.types.shape.blur :as ctsb]
|
||||
[app.common.types.shape.export :as ctse]
|
||||
@@ -1345,22 +1344,29 @@
|
||||
(cond-> (or (cfh/path-shape? data) (cfh/bool-shape? data))
|
||||
(crc/add-properties!
|
||||
{:name "content"
|
||||
:get #(-> % u/proxy->shape :content .toString)
|
||||
:get #(-> % u/proxy->shape :content str)
|
||||
:set
|
||||
(fn [_ value]
|
||||
(let [content (svg.path/parse value)]
|
||||
(let [segments (if (string? value)
|
||||
(svg.path/parse value)
|
||||
value)]
|
||||
(cond
|
||||
(not (cfh/path-shape? data))
|
||||
(u/display-not-valid :content-type type)
|
||||
|
||||
;; FIXME: revisit path content validation
|
||||
(not (sm/validate ::path/content content))
|
||||
(u/display-not-valid :content value)
|
||||
|
||||
(not (r/check-permission plugin-id "content:write"))
|
||||
(u/display-not-valid :content "Plugin doesn't have 'content:write' permission")
|
||||
|
||||
(not (cfh/path-shape? data))
|
||||
(u/display-not-valid :content-type type)
|
||||
|
||||
(not (sm/validate path/schema:segments segments))
|
||||
(u/display-not-valid :content segments)
|
||||
|
||||
:else
|
||||
(let [selrect (path.segm/content->selrect content)
|
||||
points (grc/rect->points selrect)]
|
||||
(st/emit! (dwsh/update-shapes [id] (fn [shape] (assoc shape :content content :selrect selrect :points points))))))))}))))))
|
||||
(let [selrect (path/calc-selrect segments)
|
||||
content (path/from-plain segments)
|
||||
points (grc/rect->points selrect)]
|
||||
(st/emit! (dwsh/update-shapes [id]
|
||||
(fn [shape]
|
||||
(-> shape
|
||||
(assoc :content content)
|
||||
(assoc :selrect selrect)
|
||||
(assoc :points points)))))))))}))))))
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
[app.main.refs :as refs]
|
||||
[app.render-wasm.api :as api]
|
||||
[beicon.v2.core :as rx]
|
||||
[clojure.core :as c]
|
||||
[cljs.core :as c]
|
||||
[cuerdas.core :as str]))
|
||||
|
||||
(declare ^:private impl-assoc)
|
||||
@@ -42,37 +42,38 @@
|
||||
;; Marker protocol
|
||||
shape/IShape
|
||||
|
||||
IWithMeta
|
||||
c/IWithMeta
|
||||
(-with-meta [_ meta]
|
||||
(ShapeProxy. id type (with-meta delegate meta)))
|
||||
|
||||
IMeta
|
||||
c/IMeta
|
||||
(-meta [_] (meta delegate))
|
||||
|
||||
ICollection
|
||||
c/ICollection
|
||||
(-conj [coll entry]
|
||||
(impl-conj coll entry))
|
||||
|
||||
IEquiv
|
||||
c/IEquiv
|
||||
(-equiv [coll other]
|
||||
(c/equiv-map coll other))
|
||||
|
||||
IHash
|
||||
(-hash [coll] (hash (into {} coll)))
|
||||
c/IHash
|
||||
(-hash [coll]
|
||||
(hash (into {} coll)))
|
||||
|
||||
ISequential
|
||||
c/ISequential
|
||||
|
||||
ISeqable
|
||||
c/ISeqable
|
||||
(-seq [_]
|
||||
(cons (map-entry :id id)
|
||||
(cons (map-entry :type type)
|
||||
(c/-seq delegate))))
|
||||
|
||||
ICounted
|
||||
c/ICounted
|
||||
(-count [_]
|
||||
(+ 1 (count delegate)))
|
||||
|
||||
ILookup
|
||||
c/ILookup
|
||||
(-lookup [coll k]
|
||||
(-lookup coll k nil))
|
||||
|
||||
@@ -82,7 +83,7 @@
|
||||
:type type
|
||||
(c/-lookup delegate k not-found)))
|
||||
|
||||
IFind
|
||||
c/IFind
|
||||
(-find [_ k]
|
||||
(case k
|
||||
:id
|
||||
@@ -91,7 +92,7 @@
|
||||
(map-entry :type type)
|
||||
(c/-find delegate k)))
|
||||
|
||||
IAssociative
|
||||
c/IAssociative
|
||||
(-assoc [coll k v]
|
||||
(impl-assoc coll k v))
|
||||
|
||||
@@ -100,18 +101,18 @@
|
||||
(= k :type)
|
||||
(contains? delegate k)))
|
||||
|
||||
IMap
|
||||
c/IMap
|
||||
(-dissoc [coll k]
|
||||
(impl-dissoc coll k))
|
||||
|
||||
IFn
|
||||
c/IFn
|
||||
(-invoke [coll k]
|
||||
(-lookup coll k nil))
|
||||
|
||||
(-invoke [coll k not-found]
|
||||
(-lookup coll k not-found))
|
||||
|
||||
IPrintWithWriter
|
||||
c/IPrintWithWriter
|
||||
(-pr-writer [_ writer _]
|
||||
(-write writer (str "#penpot/shape " (:id delegate)))))
|
||||
|
||||
|
||||
@@ -2269,10 +2269,6 @@ msgstr "مسح التراجع"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "إنسخ"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "تكوين المكون"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "أضف جديد"
|
||||
@@ -2833,10 +2829,6 @@ msgstr "أسلوب الخط"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "الحجم"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "البديل"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "اذهب إلى تحرير نوع ملف المكتبة"
|
||||
@@ -4125,19 +4117,19 @@ msgstr "الإضراب من خلال(%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "محاذاة المركز (%s)"
|
||||
msgstr "محاذاة المركز"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "تعديل (%s)"
|
||||
msgstr "تعديل"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "محاذاة (%s)"
|
||||
msgstr "محاذاة"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "محاذاة اليمين (%s)"
|
||||
msgstr "محاذاة اليمين"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2164,10 +2164,6 @@ msgstr "Esborra desfer"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Copia"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Crea component"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Crea nou"
|
||||
@@ -2792,10 +2788,6 @@ msgstr "Tipografia"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Mida"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variant"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Vés al fitxer de la biblioteca d'estils per a editar-lo"
|
||||
@@ -3976,19 +3968,19 @@ msgstr "Ratllat (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Alinea el centre (%s)"
|
||||
msgstr "Alinea el centre"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justifica (%s)"
|
||||
msgstr "Justifica"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Alinea a l'esquerra (%s)"
|
||||
msgstr "Alinea a l'esquerra"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Alinea a la dreta (%s)"
|
||||
msgstr "Alinea a la dreta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3504,10 +3504,6 @@ msgstr "Kopírovat"
|
||||
msgid "shortcuts.copy-link"
|
||||
msgstr "Zkopírovat odkaz do schránky"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Vytvořte komponentu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Vytvořit nový"
|
||||
@@ -3864,22 +3860,6 @@ msgstr "Začít měření"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Zastavit měření"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Zarovnat na střed"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Zarovnat do bloku"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Zarovnat vlevo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Zarovnat vpravo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Nastavit náhledy"
|
||||
@@ -4311,10 +4291,6 @@ msgstr "Písmo"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Velikost"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Varianta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Chcete-li upravit, přejděte do souboru knihovny stylů"
|
||||
@@ -5833,19 +5809,19 @@ msgstr "Přeškrtnutí (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Zarovnat doprostřed (%s)"
|
||||
msgstr "Zarovnat doprostřed"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Zarovnat (%s)"
|
||||
msgstr "Zarovnat"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Zarovnat vlevo (%s)"
|
||||
msgstr "Zarovnat vlevo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Zarovnat vpravo (%s)"
|
||||
msgstr "Zarovnat vpravo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3771,10 +3771,6 @@ msgstr "Link in die Zwischenablage kopieren"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Eigenschaften kopieren"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Komponente erstellen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Neues Projekt erstellen"
|
||||
@@ -4141,22 +4137,6 @@ msgstr "Mit der Vermessung beginnen"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Mit der Vermessung abbrechen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Zentriert ausrichten"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Blocksatz"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Linksbündig ausrichten"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Rechtsbündig ausrichten"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Miniaturansichten festlegen"
|
||||
@@ -4657,10 +4637,6 @@ msgstr "Schriftart"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Größe"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Wechseln Sie zur Stilbibliotheksdatei, um sie zu bearbeiten"
|
||||
@@ -5232,10 +5208,6 @@ msgstr "Komponente austauschen"
|
||||
msgid "workspace.options.component.swap.empty"
|
||||
msgstr "Es gibt noch keine Assets in dieser Bibliothek"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
|
||||
msgid "workspace.options.component.variant.malformed.group.locate"
|
||||
msgstr "Ungültige Varianten finden"
|
||||
@@ -6254,19 +6226,19 @@ msgstr "Durchgestrichen (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Zentrieren (%s)"
|
||||
msgstr "Zentrieren"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Ausrichtung in der Breite (%s)"
|
||||
msgstr "Ausrichtung in der Breite"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Linksbündig ausrichten (%s)"
|
||||
msgstr "Linksbündig ausrichten"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Rechtsbündig ausrichten (%s)"
|
||||
msgstr "Rechtsbündig ausrichten"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -1272,10 +1272,6 @@ msgstr "Γραμματοσειρά"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Μέγεθος"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Παραλαγή"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Μεταβείτε στο αρχείο βιβλιοθήκης στυλ για επεξεργασία"
|
||||
@@ -1805,19 +1801,19 @@ msgstr "Διαγράμμιση (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Ευθυγράμμιση κέντρο (%s)"
|
||||
msgstr "Ευθυγράμμιση κέντρο"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Δικαιολόγηση (%s)"
|
||||
msgstr "Δικαιολόγηση"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Στοίχιση αριστερά (%s)"
|
||||
msgstr "Στοίχιση αριστερά"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Για ευθυγράμμιση προς τα δεξιά (%s)"
|
||||
msgstr "Για ευθυγράμμιση προς τα δεξιά"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -4307,22 +4307,6 @@ msgstr "Start measurement"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Stop measurement"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Align center"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Align justify"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Align left"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Align right"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Set thumbnails"
|
||||
@@ -6767,19 +6751,19 @@ msgstr "Strikethrough (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Align center (%s)"
|
||||
msgstr "Align center"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justify (%s)"
|
||||
msgstr "Justify"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Align left (%s)"
|
||||
msgstr "Align left"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Align right (%s)"
|
||||
msgstr "Align right"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -1787,18 +1787,6 @@ msgstr "Copia"
|
||||
msgid "inspect.subtitle.main"
|
||||
msgstr "Componente principal"
|
||||
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs:65
|
||||
msgid "inspect.subtitle.variant"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs:59
|
||||
msgid "inspect.tabs.switcher.label"
|
||||
msgstr "Información sobre la capa"
|
||||
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs:101
|
||||
msgid "inspect.tabs.computed"
|
||||
msgstr "Computado"
|
||||
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs:111, src/app/main/ui/inspect/right_sidebar.cljs:116
|
||||
msgid "inspect.tabs.code"
|
||||
msgstr "Código"
|
||||
@@ -1863,37 +1851,62 @@ msgstr "Información"
|
||||
msgid "labels.styles"
|
||||
msgstr "Estilos"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:10
|
||||
msgid "inspect.tabs.styles.panel.variant"
|
||||
msgstr "Propiedades de las variantes"
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.blur"
|
||||
msgstr "Desenfoque"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:11
|
||||
msgid "inspect.tabs.styles.panel.token"
|
||||
msgstr "Sets y temas de tokens"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/tokens_panel.cljs:26
|
||||
msgid "inspect.tabs.styles.panel.token.active-themes"
|
||||
msgstr "Temas activos"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/tokens_panel.cljs:30
|
||||
msgid "inspect.tabs.styles.panel.token.active-sets"
|
||||
msgstr "Sets activos"
|
||||
#: src/app/main/ui/inspect/styles/properties_row.cljs:48
|
||||
msgid "inspect.tabs.styles.token.resolved-value"
|
||||
msgstr "Valor resuelto:"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.geometry"
|
||||
msgstr "Tamaño y posición"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.layout-element"
|
||||
msgstr "Layout de elemento"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.shadow"
|
||||
msgstr "Sombra"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.stroke"
|
||||
msgstr "Borde"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.svg"
|
||||
msgstr "SVG"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.toggle-style"
|
||||
msgstr "Alternar panel %s"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.copy-to-clipboard"
|
||||
msgstr "Copiar al portapapeles"
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:11
|
||||
msgid "inspect.tabs.styles.panel.token"
|
||||
msgstr "Sets y temas de tokens"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/properties_row.cljs:48
|
||||
msgid "inspect.tabs.styles.token.resolved-value"
|
||||
msgstr "Valor resuelto:"
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:10
|
||||
msgid "inspect.tabs.styles.panel.variant"
|
||||
msgstr "Propiedades de las variantes"
|
||||
|
||||
#: src/app/main/ui/inspect/styles/style_box.cljs:12
|
||||
msgid "inspect.tabs.styles.panel.visibility"
|
||||
msgstr "Visibilidad"
|
||||
|
||||
#: src/app/main/ui/inspect/right_sidebar.cljs:165
|
||||
msgid "inspect.tabs.switcher.label"
|
||||
msgstr "Información sobre la capa"
|
||||
>>>>>>> origin/staging
|
||||
|
||||
#: src/app/main/ui/dashboard/comments.cljs:95
|
||||
msgid "label.mark-all-as-read"
|
||||
@@ -4314,22 +4327,6 @@ msgstr "Comenzar medida"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Terminar medida"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Alinear al centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Alinear justificado"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Alinear a la izquierda"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Alinear a la derecha"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Activar miniaturas"
|
||||
@@ -5089,10 +5086,6 @@ msgstr "Fuente"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Ir al archivo de la biblioteca del estilo para editar"
|
||||
@@ -5121,6 +5114,9 @@ msgstr "Transformar texto"
|
||||
msgid "workspace.assets.ungroup"
|
||||
msgstr "Desagrupar"
|
||||
|
||||
msgid "workspace.component.swap.loop-error"
|
||||
msgstr "Los componentes no pueden anidarse dentro de sí mismos"
|
||||
|
||||
#: src/app/main/ui/workspace/context_menu.cljs:791
|
||||
msgid "workspace.context-menu.grid-cells.area"
|
||||
msgstr "Crear area"
|
||||
@@ -5657,17 +5653,10 @@ msgstr "Intercambiar componente"
|
||||
msgid "workspace.options.component.swap.empty"
|
||||
msgstr "Aún no hay recursos en esta biblioteca"
|
||||
|
||||
msgid "workspace.component.swap.loop-error"
|
||||
msgstr "Los componentes no pueden anidarse dentro de sí mismos"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:973
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Desvinculado"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "Localizar variantes en conflicto"
|
||||
@@ -6752,19 +6741,19 @@ msgstr "Tachado (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Alinear al centro (%s)"
|
||||
msgstr "Alinear al centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justificar (%s)"
|
||||
msgstr "Justificar"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Alinear a la izquierda (%s)"
|
||||
msgstr "Alinear a la izquierda"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Alinear a la derecha (%s)"
|
||||
msgstr "Alinear a la derecha"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2447,10 +2447,6 @@ msgstr "Garbitu historiala"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Kopiatu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Sortu osagaia"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Sortu berria"
|
||||
@@ -3147,10 +3143,6 @@ msgstr "Letra-tipoak"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Tamaina"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Aldaerak"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Joan estilo liburutegiaren fitxategira editatzeko"
|
||||
@@ -4379,19 +4371,19 @@ msgstr "Gaineko marra (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Lerrokatu erdian (%s)"
|
||||
msgstr "Lerrokatu erdian"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justifikatu (%s)"
|
||||
msgstr "Justifikatu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Lerrokatu ezkerrean (%s)"
|
||||
msgstr "Lerrokatu ezkerrean"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Lerrokatu eskuman (%s)"
|
||||
msgstr "Lerrokatu eskuman"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2281,10 +2281,6 @@ msgstr "فونت"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "اندازه"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "گونه"
|
||||
|
||||
#: src/app/main/ui/dashboard/grid.cljs:217, src/app/main/ui/workspace/libraries.cljs:546, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:480, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:506, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:613, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:633
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "مثال"
|
||||
@@ -2801,15 +2797,15 @@ msgstr "هیچیک"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "تراز در مرکز (%s)"
|
||||
msgstr "تراز در مرکز"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "تراز چپ (%s)"
|
||||
msgstr "تراز چپ"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "تراز راست (%s)"
|
||||
msgstr "تراز راست"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3881,10 +3881,6 @@ msgstr "Copier le lien"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Copier les propriétés"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Créer un composant"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Créer"
|
||||
@@ -4251,22 +4247,6 @@ msgstr "Commencer la mesure"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Arrêter la mesure"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Aligner au centre"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Aligner justifié"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Aligner à gauche"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Aligner à droite"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Définir les vignettes"
|
||||
@@ -4884,10 +4864,6 @@ msgstr "Police"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Taille"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Accéder au fichier de bibliothèque de styles à modifier"
|
||||
@@ -5463,10 +5439,6 @@ msgstr "Cette librairie ne contient aucun élément pour le moment"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Délié"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:264
|
||||
msgid "workspace.options.component.variant.duplicated.single.one"
|
||||
msgstr ""
|
||||
@@ -6539,19 +6511,19 @@ msgstr "Barré (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Aligner au centre (%s)"
|
||||
msgstr "Aligner au centre"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justifier (%s)"
|
||||
msgstr "Justifier"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Aligner à gauche (%s)"
|
||||
msgstr "Aligner à gauche"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Aligner à droite (%s)"
|
||||
msgstr "Aligner à droite"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -1339,10 +1339,6 @@ msgstr "Fonte"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/dashboard/grid.cljs:217, src/app/main/ui/workspace/libraries.cljs:546, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:480, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:506, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:613, src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:633
|
||||
msgid "workspace.assets.typography.sample"
|
||||
msgstr "Ag"
|
||||
|
||||
@@ -2690,10 +2690,6 @@ msgstr "goge sake"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "kwafi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "samar da abubuwa iri- iri"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "samar da sabo abu"
|
||||
@@ -3042,22 +3038,6 @@ msgstr "fara aunawa"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "dena aunawa"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "jera tsakiya"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "jera da inganci"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "jera hagu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "jera dama"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "saita babban yatsa"
|
||||
@@ -3421,10 +3401,6 @@ msgstr "tsarin haruffa"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "girma"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "bambanci"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "tafi zuwa salon dakin karatu don a tace"
|
||||
@@ -4719,19 +4695,19 @@ msgstr "gigciye ta cikinsa (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "jerin tsakiya (%s)"
|
||||
msgstr "jerin tsakiya"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "tabbatarwa (%s)"
|
||||
msgstr "tabbatarwa"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "jera hagu (%s)"
|
||||
msgstr "jera hagu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "jera dama (%s)"
|
||||
msgstr "jera dama"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3785,10 +3785,6 @@ msgstr "העתקת קישור ללוח הגזירים"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "העתקת מאפיינים"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "יצירת רכיב"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "יצירת חדש"
|
||||
@@ -4155,22 +4151,6 @@ msgstr "התחלת מדידה"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "עצירת מדידה"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "יישור למרכז"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "פיזור שווה"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "יישור לשמאל"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "יישור לימין"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "הגדרת תמונות ממוזערות"
|
||||
@@ -4818,10 +4798,6 @@ msgstr "גופן"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "גודל"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "הגוון"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "מעבר לקובץ ספריית סגנון כדי לערוך"
|
||||
@@ -5395,10 +5371,6 @@ msgstr "עדיין אין נכסים בתיקייה הזאת"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "לא מקושר"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "הגוון"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "מעבר לרכיב הראשי"
|
||||
@@ -6501,19 +6473,19 @@ msgstr "קו חוצה (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "יישור למרכז (%s)"
|
||||
msgstr "יישור למרכז"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "יישור לשני הצדדים (%s)"
|
||||
msgstr "יישור לשני הצדדים"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "יישור שמאלה (%s)"
|
||||
msgstr "יישור שמאלה"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "יישור ימינה (%s)"
|
||||
msgstr "יישור ימינה"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3792,10 +3792,6 @@ msgstr "लिंक कॉपी करें"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "गुण कॉपी करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "घटक बनाएँ"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "नया निर्माण"
|
||||
@@ -4162,22 +4158,6 @@ msgstr "मापन शुरू करें"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "मापन बंद करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "मध्य में संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "पूर्ण संरेखण करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "बाएँ संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "दाएँ संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "थंबनेल सेट करें"
|
||||
@@ -4787,10 +4767,6 @@ msgstr "फ़ॉन्ट"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "आकार"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "वेरिएंट"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "संपादन के लिए स्टाइल लाइब्रेरी फ़ाइल पर जाएँ"
|
||||
@@ -5364,10 +5340,6 @@ msgstr "इस लाइब्रेरी में अभी तक कोई
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "अनलिंक"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "प्रकारांतर"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
|
||||
msgid "workspace.options.component.variant.malformed.group.locate"
|
||||
msgstr "अमान्य वेरिएंट का पता लगाएं"
|
||||
@@ -6404,19 +6376,19 @@ msgstr "स्ट्राइकथ्रू (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "केंद्र संरेखित करें (%s)"
|
||||
msgstr "केंद्र संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "जस्टिफ़ाई (%s)"
|
||||
msgstr "जस्टिफ़ाई"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "बाएँ संरेखित करें (%s)"
|
||||
msgstr "बाएँ संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "दाएँ संरेखित करें (%s)"
|
||||
msgstr "दाएँ संरेखित करें"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3503,10 +3503,6 @@ msgstr "Kopiraj"
|
||||
msgid "shortcuts.copy-link"
|
||||
msgstr "Kopiraj vezu u međuspremnik"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Kreiraj komponentu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Kreiraj novo"
|
||||
@@ -3863,22 +3859,6 @@ msgstr "Počni mjerenje"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Zaustavi mjerenje"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Poravnajte središte"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Poravnajte obostrano"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Poravnajte lijevo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Poravnajte desno"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Postavi sličice"
|
||||
@@ -4310,10 +4290,6 @@ msgstr "Font"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Veličina"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Varijanta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Idi na datoteku biblioteke stilova za uređivanje"
|
||||
@@ -5852,19 +5828,19 @@ msgstr "Precrtanko (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Poravnaj sredinu (%s)"
|
||||
msgstr "Poravnaj sredinu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Složi u blok (%s)"
|
||||
msgstr "Složi u blok"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Poravnaj lijevo (%s)"
|
||||
msgstr "Poravnaj lijevo"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Poravnaj desno (%s)"
|
||||
msgstr "Poravnaj desno"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3692,10 +3692,6 @@ msgstr "Salin tautan ke papan klip"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Salin properti"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Buat komponen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Buat baru"
|
||||
@@ -4062,22 +4058,6 @@ msgstr "Mulai mengukur"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Berhenti mengukur"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Paskan ke tengah"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Paskan secara rata"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Paskan ke kiri"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Paskan ke kanan"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Tetapkan gambar kecil"
|
||||
@@ -4509,10 +4489,6 @@ msgstr "Fon"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Ukuran"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Varian"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Pergi ke berkas pustaka untuk menyunting"
|
||||
@@ -6073,19 +6049,19 @@ msgstr "Coret (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Paskan ke tengah (%s)"
|
||||
msgstr "Paskan ke tengah"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Rata Kiri Kanan (%s)"
|
||||
msgstr "Rata Kiri Kanan"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Paskan ke kiri (%s)"
|
||||
msgstr "Paskan ke kiri"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Paskan ke kanan (%s)"
|
||||
msgstr "Paskan ke kanan"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2167,10 +2167,6 @@ msgstr "Leta mmụba oghere"
|
||||
msgid "shortcuts.paste"
|
||||
msgstr "Nyado"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Dozie akaekpe"
|
||||
|
||||
#: src/app/main/ui.cljs:137
|
||||
#, unused
|
||||
msgid "viewer.breaking-change.message"
|
||||
|
||||
@@ -3834,10 +3834,6 @@ msgstr "Copia link negli appunti"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Copia proprietà"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Crea componente"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Crea nuovo"
|
||||
@@ -4204,22 +4200,6 @@ msgstr "Avvia misurazione"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Interrompi misurazione"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Allinea al centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Allinea giustificato"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Allinea a sinistra"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Allinea a destra"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Imposta miniature"
|
||||
@@ -4833,10 +4813,6 @@ msgstr "Carattere"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Dimensione"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Vai alla libreria dello stile del file per modificare"
|
||||
@@ -5410,10 +5386,6 @@ msgstr "Non ci sono ancora risorse in questa libreria"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Scollegato"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
|
||||
msgid "workspace.options.component.variant.malformed.group.locate"
|
||||
msgstr "Individua varianti non valide"
|
||||
@@ -6452,19 +6424,19 @@ msgstr "Barrato (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Allinea al centro (%s)"
|
||||
msgstr "Allinea al centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Giustifica (%s)"
|
||||
msgstr "Giustifica"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Allinea a sinistra (%s)"
|
||||
msgstr "Allinea a sinistra"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Allinea a destra (%s)"
|
||||
msgstr "Allinea a destra"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3844,10 +3844,6 @@ msgstr "Ievietot saiti starpliktuvē"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Ievietot īpašības starpliktuvē"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Izveidot sastāvdaļu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Izveidot jaunu"
|
||||
@@ -4214,22 +4210,6 @@ msgstr "Sākt mērīšanu"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Beigt mērīšanu"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Līdzināt vidū"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Līdzināt pie abām malām"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Līdzināt pa kreisi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Līdzināt pa labi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Iestatīt sīktēlus"
|
||||
@@ -4864,10 +4844,6 @@ msgstr "Fonti"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Izmērs"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Fonta variants"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Doties uz stilu bibliotēkas datni, lai labotu"
|
||||
@@ -5441,10 +5417,6 @@ msgstr "Šajā bibliotēkā vēl nav līdzekļu"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Atsaistīta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variants"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "Doties uz galveno sastāvdaļu"
|
||||
@@ -6544,19 +6516,19 @@ msgstr "Pārsvītrots (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Līdzināt vidū (%s)"
|
||||
msgstr "Līdzināt vidū"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Izlīdzināt (%s)"
|
||||
msgstr "Izlīdzināt"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Līdzināt pa kreisi (%s)"
|
||||
msgstr "Līdzināt pa kreisi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Līdzināt pa labi (%s)"
|
||||
msgstr "Līdzināt pa labi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2801,10 +2801,6 @@ msgstr "Kosongkan buat asal"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Salin"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Cipta komponen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Buat baharu"
|
||||
|
||||
@@ -597,10 +597,6 @@ msgstr "Skrift"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Størrelse"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variant"
|
||||
|
||||
#: src/app/main/ui/workspace/main_menu.cljs:333
|
||||
msgid "workspace.header.menu.show-rules"
|
||||
msgstr "Vis regler"
|
||||
|
||||
@@ -3863,10 +3863,6 @@ msgstr "Link naar klembord kopiëren"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Eigenschappen kopiëren"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Component aanmaken"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Nieuw project aanmaken"
|
||||
@@ -4233,22 +4229,6 @@ msgstr "Meting starten"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Meting beëindigen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Gecentreerd uitlijnen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Volledig uitvullen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Links uitlijnen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Rechts uitlijnen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Miniaturen instellen"
|
||||
@@ -4902,10 +4882,6 @@ msgstr "Lettertype"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Grootte"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variant"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Ga naar het stijl-bibliotheekbestand om te bewerken"
|
||||
@@ -5479,10 +5455,6 @@ msgstr "Er zijn nog geen assets in deze bibliotheek"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Niet gekoppeld"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Variant"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "Ga naar het hoofdonderdeel"
|
||||
@@ -6592,19 +6564,19 @@ msgstr "Doorhalen (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Centreren (%s)"
|
||||
msgstr "Centreren"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Uitvullen (%s)"
|
||||
msgstr "Uitvullen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Links uitlijnen (%s)"
|
||||
msgstr "Links uitlijnen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Rechts uitlijnen (%s)"
|
||||
msgstr "Rechts uitlijnen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2424,10 +2424,6 @@ msgstr "Wyczyść cofnięcia"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Kopiuj"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Utwórz komponent"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Stwórz nowy"
|
||||
@@ -3069,10 +3065,6 @@ msgstr "Czcionka"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Rozmiar"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Wariant"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Przejdź do pliku biblioteki stylów, żeby edytować"
|
||||
@@ -4280,19 +4272,19 @@ msgstr "Przekreślenie (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Wyrównaj do środka (%s)"
|
||||
msgstr "Wyrównaj do środka"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Wyjustuj (%s)"
|
||||
msgstr "Wyjustuj"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Wyrównaj do lewej (%s)"
|
||||
msgstr "Wyrównaj do lewej"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Wyrównaj do prawej (%s)"
|
||||
msgstr "Wyrównaj do prawej"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2865,10 +2865,6 @@ msgstr "Limpar desfazer"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Criar componente"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Criar novo"
|
||||
@@ -3505,10 +3501,6 @@ msgstr "Fonte"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Tamanho"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Ir para biblioteca de estilo para editar"
|
||||
@@ -4709,19 +4701,19 @@ msgstr "Rasurado (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Alinhar ao centro (%s)"
|
||||
msgstr "Alinhar ao centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justificar (%s)"
|
||||
msgstr "Justificar"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Alinhar a esquerda (%s)"
|
||||
msgstr "Alinhar a esquerda"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Alinhar a direita (%s)"
|
||||
msgstr "Alinhar a direita"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3560,10 +3560,6 @@ msgstr "Copiar"
|
||||
msgid "shortcuts.copy-link"
|
||||
msgstr "Copiar ligação para a área de transferência"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Criar componente"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Criar novo"
|
||||
@@ -3920,22 +3916,6 @@ msgstr "Iniciar medição"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Parar medição"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Alinhar ao centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Alinhar justificado"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Alinhar à esquerda"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Alinhar à direita"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Definir imagem destaque"
|
||||
@@ -4359,10 +4339,6 @@ msgstr "Fonte"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Tamanho"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Ir para ficheiro da biblioteca de estilos para editar"
|
||||
@@ -5848,19 +5824,19 @@ msgstr "Rasurado (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Alinhar ao centro (%s)"
|
||||
msgstr "Alinhar ao centro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justificar (%s)"
|
||||
msgstr "Justificar"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Alinhar à esquerda (%s)"
|
||||
msgstr "Alinhar à esquerda"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Alinhar à direita (%s)"
|
||||
msgstr "Alinhar à direita"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2907,10 +2907,6 @@ msgstr "Ștergeți anularea"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Copiază"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Creează component"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Creează nou"
|
||||
@@ -3259,22 +3255,6 @@ msgstr "Începeți măsurarea"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Opriți măsurarea"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Aliniați la centru"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Aliniați justificat"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Aliniați la stânga"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Aliniați la dreapta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Setați miniaturile"
|
||||
@@ -3639,10 +3619,6 @@ msgstr "Font"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Dimensiune"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variante"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Editează fişierul în Colecţia de stiluri"
|
||||
@@ -4938,19 +4914,19 @@ msgstr "Barat (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Aliniază centru (%s)"
|
||||
msgstr "Aliniază centru"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Justifică (%s)"
|
||||
msgstr "Justifică"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Aliniază la stânga (%s)"
|
||||
msgstr "Aliniază la stânga"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Aliniază la dreapta (%s)"
|
||||
msgstr "Aliniază la dreapta"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3218,10 +3218,6 @@ msgstr "Очистить отмену"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Скопировать"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Создать компонент"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Создать новый"
|
||||
@@ -3574,22 +3570,6 @@ msgstr "Начать измерение"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Остановить измерение"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Выровнять по центру"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Выровнять по ширине"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Выровнять по левому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Выровнять по правому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Установить миниатюры"
|
||||
@@ -3997,10 +3977,6 @@ msgstr "Шрифт"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Размер"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Начертание"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Перейти к файлу библиотеки стилей для редактирования"
|
||||
@@ -5428,19 +5404,19 @@ msgstr "Перечеркнутый (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Выравнивание по центру (%s)"
|
||||
msgstr "Выравнивание по центру"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Выравнивание по ширине (%s)"
|
||||
msgstr "Выравнивание по ширине"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Выравнивание по левому краю (%s)"
|
||||
msgstr "Выравнивание по левому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Выравнивание по правому краю (%s)"
|
||||
msgstr "Выравнивание по правому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3060,10 +3060,6 @@ msgstr "Очисти отказивање"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Копирај"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Направи компоненту"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Направи ново"
|
||||
@@ -3416,22 +3412,6 @@ msgstr "Започни мерење"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Заустави мерење"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Поравнај на средину"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Пређај по ширини"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Поравнај на лево"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Поравнај на десно"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Подеси сличице"
|
||||
@@ -3835,10 +3815,6 @@ msgstr "Фонт"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Величина"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Варијанта"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Идите на датотеку библиотеке стилова да бисте је уредили"
|
||||
@@ -5262,19 +5238,19 @@ msgstr "Прелазна линија (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Поравнај по средини (%s)"
|
||||
msgstr "Поравнај по средини"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Оправдај (%s)"
|
||||
msgstr "Оправдај"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Поравнај на лево (%s)"
|
||||
msgstr "Поравнај на лево"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Поравнај на десно (%s)"
|
||||
msgstr "Поравнај на десно"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3497,10 +3497,6 @@ msgstr "Kopiera"
|
||||
msgid "shortcuts.copy-link"
|
||||
msgstr "Kopiera länk till urklipp"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Skapa komponent"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Skapa ny"
|
||||
@@ -3857,22 +3853,6 @@ msgstr "Starta mätningen"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Stoppa mätningen"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Justera centrum"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Justera text till båda marginalerna"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Justera vänster"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Justera höger"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Ställ in miniatyrbilder"
|
||||
@@ -4302,10 +4282,6 @@ msgstr "Teckensnitt"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Storlek"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Variation"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Gå till stilbibliotek fil för att redigera"
|
||||
@@ -5839,19 +5815,19 @@ msgstr "Genomstruken (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Justera center (%s)"
|
||||
msgstr "Justera center"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Rättfärdiga (%s)"
|
||||
msgstr "Rättfärdiga"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Justera vänster (%s)"
|
||||
msgstr "Justera vänster"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Justera höger (%s)"
|
||||
msgstr "Justera höger"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3208,10 +3208,6 @@ msgstr "Geri almayı temizle"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Kopyala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Bileşen oluştur"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Yeni oluştur"
|
||||
@@ -3564,22 +3560,6 @@ msgstr "Ölçüme başla"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Ölçümü durdur"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Ortaya hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "İki yana yasla"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Sola hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Sağa hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Küçük resimleri ayarla"
|
||||
@@ -3989,10 +3969,6 @@ msgstr "Yazı tipi"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Boyut"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Çeşit"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Düzenlemek için biçim kütüphane dosyasına gidin"
|
||||
@@ -5417,19 +5393,19 @@ msgstr "Üstü çizili (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Ortaya hizala (%s)"
|
||||
msgstr "Ortaya hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "İki yana yasla (%s)"
|
||||
msgstr "İki yana yasla"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Sola hizala (%s)"
|
||||
msgstr "Sola hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Sağa hizala (%s)"
|
||||
msgstr "Sağa hizala"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3865,10 +3865,6 @@ msgstr "Скопіювати посилання у буфер"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "Копіювати параметри"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Створити компонент"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Створити новий"
|
||||
@@ -4235,22 +4231,6 @@ msgstr "Почати вимірювання"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "Припинити вимірювання"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Вирівняти по центру"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Вирівняти по ширині"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "Вирівняти по лівому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Вирявняти по правому краю"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Вставити мініатюри"
|
||||
@@ -4885,10 +4865,6 @@ msgstr "Шрифт"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Розмір"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Варіант"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "Перейти до файлу бібліотеки стилів для редагування"
|
||||
@@ -5462,10 +5438,6 @@ msgstr "У цій бібліотеці немає ресурсів"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "Розʼєднано"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "Варіант"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "До головного компонента"
|
||||
@@ -6537,19 +6509,19 @@ msgstr "Закреслення (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Вирівняти по центру (%s)"
|
||||
msgstr "Вирівняти по центру"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "За шириною (%s)"
|
||||
msgstr "За шириною"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Вирівняти ліворуч (%s)"
|
||||
msgstr "Вирівняти ліворуч"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Вирівняти праворуч (%s)"
|
||||
msgstr "Вирівняти праворуч"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -2568,10 +2568,6 @@ msgstr "Pa yipàdá rẹ"
|
||||
msgid "shortcuts.copy"
|
||||
msgstr "Dàákọ"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "Ṣẹ̀dá pàátì"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "Ṣẹ̀dá títún"
|
||||
@@ -2884,22 +2880,6 @@ msgstr "Bẹ̀rẹ̀ wíwọ̀n"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "da wíwọ̀n duro"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "Parapọ saarin"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "Sedede lárè"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "mo si osi"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "Mo sotun"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "Se étò awòn áwòran fun fidio"
|
||||
@@ -3212,10 +3192,6 @@ msgstr "Fonti"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "Iwon"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "Iyatọ"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:530
|
||||
msgid "workspace.assets.typography.letter-spacing"
|
||||
msgstr "Aaye leta"
|
||||
@@ -4445,19 +4421,19 @@ msgstr "Ìfọwọ́bàyíká (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "Mú dọ́gba àárín (%s)"
|
||||
msgstr "Mú dọ́gba àárín"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "Ìdálàre (%s)"
|
||||
msgstr "Ìdálàre"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "Mú dọ́gba òsì (%s)"
|
||||
msgstr "Mú dọ́gba òsì"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "Mú dọ́gba ọ̀tún (%s)"
|
||||
msgstr "Mú dọ́gba ọ̀tún"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3615,10 +3615,6 @@ msgstr "复制链接"
|
||||
msgid "shortcuts.copy-props"
|
||||
msgstr "复制属性"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "创建组件"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "创建新的"
|
||||
@@ -3985,22 +3981,6 @@ msgstr "启用测量"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "停止测量"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "水平居中"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "两端对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "靠左对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "靠右对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "设置缩略图"
|
||||
@@ -4560,10 +4540,6 @@ msgstr "字体"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "尺寸"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "变体"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "前往样式库文件进行编辑"
|
||||
@@ -5137,10 +5113,6 @@ msgstr "你的库中还没有素材"
|
||||
msgid "workspace.options.component.unlinked"
|
||||
msgstr "未链接"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:929
|
||||
msgid "workspace.options.component.variant"
|
||||
msgstr "变体"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
|
||||
msgid "workspace.options.component.variant.duplicated.copy.locate"
|
||||
msgstr "转到主组件"
|
||||
@@ -6197,19 +6169,19 @@ msgstr "删除线 (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "水平居中 (%s)"
|
||||
msgstr "水平居中"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "两端对齐 (%s)"
|
||||
msgstr "两端对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "靠左对齐 (%s)"
|
||||
msgstr "靠左对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "靠右对齐 (%s)"
|
||||
msgstr "靠右对齐"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
@@ -3337,10 +3337,6 @@ msgstr "複製"
|
||||
msgid "shortcuts.copy-link"
|
||||
msgstr "將連結複製到剪貼簿"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
|
||||
msgid "shortcuts.create-component"
|
||||
msgstr "建立元件"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
|
||||
msgid "shortcuts.create-new-project"
|
||||
msgstr "建立新的"
|
||||
@@ -3697,22 +3693,6 @@ msgstr "開始測量"
|
||||
msgid "shortcuts.stop-measure"
|
||||
msgstr "停止測量"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:183
|
||||
msgid "shortcuts.text-align-center"
|
||||
msgstr "居中對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:184
|
||||
msgid "shortcuts.text-align-justify"
|
||||
msgstr "左右對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:185
|
||||
msgid "shortcuts.text-align-left"
|
||||
msgstr "左對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:186
|
||||
msgid "shortcuts.text-align-right"
|
||||
msgstr "右對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
|
||||
msgid "shortcuts.thumbnail-set"
|
||||
msgstr "設定縮圖"
|
||||
@@ -4138,10 +4118,6 @@ msgstr "字型"
|
||||
msgid "workspace.assets.typography.font-size"
|
||||
msgstr "尺寸"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:518
|
||||
msgid "workspace.assets.typography.font-variant-id"
|
||||
msgstr "變體"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
|
||||
msgid "workspace.assets.typography.go-to-edit"
|
||||
msgstr "前往樣式圖庫檔案進行編輯"
|
||||
@@ -5678,19 +5654,19 @@ msgstr "刪除線 (%s)"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
|
||||
msgid "workspace.options.text-options.text-align-center"
|
||||
msgstr "置中 (%s)"
|
||||
msgstr "置中"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
|
||||
msgid "workspace.options.text-options.text-align-justify"
|
||||
msgstr "對齊兩端 (%s)"
|
||||
msgstr "對齊兩端"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
|
||||
msgid "workspace.options.text-options.text-align-left"
|
||||
msgstr "左對齊 (%s)"
|
||||
msgstr "左對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
|
||||
msgid "workspace.options.text-options.text-align-right"
|
||||
msgstr "右對齊 (%s)"
|
||||
msgstr "右對齊"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
|
||||
msgid "workspace.options.text-options.title"
|
||||
|
||||
Reference in New Issue
Block a user