🐛 Fix conflicting shortcuts (text alignment) (#7339)

This commit is contained in:
Aitor Moreno
2025-09-17 16:52:44 +02:00
committed by GitHub
parent 9f37175775
commit c9d71f3b2d
39 changed files with 156 additions and 848 deletions

View File

@@ -61,6 +61,7 @@
- Fix can't import 'borderWidth' type token [#132](https://github.com/tokens-studio/penpot/issues/132) - 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 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 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 ## 2.9.0

View File

@@ -746,26 +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>Ctrl</kbd> <kbd>Shift</kbd> <kbd>LEFT</kbd></td>
<td style="text-align: center;"><kbd>⌘</kbd> <kbd>⇧</kbd> <kbd>LEFT</kbd></td> <td style="text-align: center;"><kbd>⌘</kbd> <kbd>⇧</kbd> <kbd>LEFT</kbd></td>
</tr> </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> </tbody>
</table> </table>

View File

@@ -221,24 +221,7 @@
(st/emit! (dwu/commit-undo-transaction undo-id))))) (st/emit! (dwu/commit-undo-transaction undo-id)))))
(def shortcuts (def shortcuts
{:text-align-left {:tooltip (ds/meta (ds/alt "L")) {:underline {:tooltip (ds/meta "U")
: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")
:command (ds/c-mod "u") :command (ds/c-mod "u")
:subsections [:text-editor] :subsections [:text-editor]
:fn #(update-attrs-when-no-readonly {:text-decoration "toggle-underline"})} :fn #(update-attrs-when-no-readonly {:text-decoration "toggle-underline"})}

View File

@@ -52,19 +52,19 @@
:name "align-text-options"} :name "align-text-options"}
[:& radio-button {:value "left" [:& radio-button {:value "left"
:id "text-align-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}] :icon deprecated-icon/text-align-left}]
[:& radio-button {:value "center" [:& radio-button {:value "center"
:id "text-align-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}] :icon deprecated-icon/text-align-center}]
[:& radio-button {:value "right" [:& radio-button {:value "right"
:id "text-align-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}] :icon deprecated-icon/text-align-right}]
[:& radio-button {:value "justify" [:& radio-button {:value "justify"
:id "text-align-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}]]])) :icon deprecated-icon/text-justify}]]]))
(mf/defc text-direction-options (mf/defc text-direction-options

View File

@@ -178,10 +178,6 @@
(tr "shortcuts.start-editing") (tr "shortcuts.start-editing")
(tr "shortcuts.start-measure") (tr "shortcuts.start-measure")
(tr "shortcuts.stop-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.thumbnail-set")
(tr "shortcuts.toggle-alignment") (tr "shortcuts.toggle-alignment")
(tr "shortcuts.toggle-assets") (tr "shortcuts.toggle-assets")

View File

@@ -2269,10 +2269,6 @@ msgstr "مسح التراجع"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "إنسخ" msgstr "إنسخ"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "تكوين المكون"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "أضف جديد" msgstr "أضف جديد"
@@ -2833,10 +2829,6 @@ msgstr "أسلوب الخط"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "الحجم" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "اذهب إلى تحرير نوع ملف المكتبة" msgstr "اذهب إلى تحرير نوع ملف المكتبة"
@@ -4125,19 +4117,19 @@ msgstr "الإضراب من خلال(%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "محاذاة المركز (%s)" msgstr "محاذاة المركز"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "تعديل (%s)" msgstr "تعديل"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "محاذاة (%s)" msgstr "محاذاة"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "محاذاة اليمين (%s)" msgstr "محاذاة اليمين"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2164,10 +2164,6 @@ msgstr "Esborra desfer"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Copia" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Crea nou" msgstr "Crea nou"
@@ -2792,10 +2788,6 @@ msgstr "Tipografia"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Mida" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Vés al fitxer de la biblioteca d'estils per a editar-lo" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justifica (%s)" msgstr "Justifica"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3504,10 +3504,6 @@ msgstr "Kopírovat"
msgid "shortcuts.copy-link" msgid "shortcuts.copy-link"
msgstr "Zkopírovat odkaz do schránky" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Vytvořit nový" msgstr "Vytvořit nový"
@@ -3864,22 +3860,6 @@ msgstr "Začít měření"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Zastavit měření" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Nastavit náhledy" msgstr "Nastavit náhledy"
@@ -4311,10 +4291,6 @@ msgstr "Písmo"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Velikost" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Chcete-li upravit, přejděte do souboru knihovny stylů" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Zarovnat (%s)" msgstr "Zarovnat"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3771,10 +3771,6 @@ msgstr "Link in die Zwischenablage kopieren"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Eigenschaften kopieren" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Neues Projekt erstellen" msgstr "Neues Projekt erstellen"
@@ -4141,22 +4137,6 @@ msgstr "Mit der Vermessung beginnen"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Mit der Vermessung abbrechen" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Miniaturansichten festlegen" msgstr "Miniaturansichten festlegen"
@@ -4657,10 +4637,6 @@ msgstr "Schriftart"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Größe" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Wechseln Sie zur Stilbibliotheksdatei, um sie zu bearbeiten" msgstr "Wechseln Sie zur Stilbibliotheksdatei, um sie zu bearbeiten"
@@ -5232,10 +5208,6 @@ msgstr "Komponente austauschen"
msgid "workspace.options.component.swap.empty" msgid "workspace.options.component.swap.empty"
msgstr "Es gibt noch keine Assets in dieser Bibliothek" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
msgid "workspace.options.component.variant.malformed.group.locate" msgid "workspace.options.component.variant.malformed.group.locate"
msgstr "Ungültige Varianten finden" msgstr "Ungültige Varianten finden"
@@ -6254,19 +6226,19 @@ msgstr "Durchgestrichen (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Zentrieren (%s)" msgstr "Zentrieren"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -1272,10 +1272,6 @@ msgstr "Γραμματοσειρά"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Μέγεθος" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Μεταβείτε στο αρχείο βιβλιοθήκης στυλ για επεξεργασία" msgstr "Μεταβείτε στο αρχείο βιβλιοθήκης στυλ για επεξεργασία"
@@ -1805,19 +1801,19 @@ msgstr "Διαγράμμιση (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Ευθυγράμμιση κέντρο (%s)" msgstr "Ευθυγράμμιση κέντρο"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Δικαιολόγηση (%s)" msgstr "Δικαιολόγηση"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "Στοίχιση αριστερά (%s)" msgstr "Στοίχιση αριστερά"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "Για ευθυγράμμιση προς τα δεξιά (%s)" msgstr "Για ευθυγράμμιση προς τα δεξιά"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -4256,22 +4256,6 @@ msgstr "Start measurement"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Stop measurement" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Set thumbnails" msgstr "Set thumbnails"
@@ -6716,19 +6700,19 @@ msgstr "Strikethrough (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justify (%s)" msgstr "Justify"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -1787,18 +1787,6 @@ msgstr "Copia"
msgid "inspect.subtitle.main" msgid "inspect.subtitle.main"
msgstr "Componente principal" 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 #: src/app/main/ui/inspect/right_sidebar.cljs:111, src/app/main/ui/inspect/right_sidebar.cljs:116
msgid "inspect.tabs.code" msgid "inspect.tabs.code"
msgstr "Código" msgstr "Código"
@@ -1863,33 +1851,17 @@ msgstr "Información"
msgid "inspect.tabs.styles" msgid "inspect.tabs.styles"
msgstr "Estilos" 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:11
msgid "inspect.tabs.styles.panel.token"
msgstr "Sets y temas de tokens"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.geometry" msgid "inspect.tabs.styles.panel.blur"
msgstr "Tamaño y posición" msgstr "Desenfoque"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.fill" msgid "inspect.tabs.styles.panel.fill"
msgstr "Relleno" msgstr "Relleno"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.stroke" msgid "inspect.tabs.styles.panel.geometry"
msgstr "Borde" msgstr "Tamaño y posición"
#: 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.shadow"
msgstr "Sombra"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.layout" msgid "inspect.tabs.styles.panel.layout"
@@ -1900,21 +1872,41 @@ msgid "inspect.tabs.styles.panel.layout-element"
msgstr "Layout de elemento" msgstr "Layout de elemento"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.visibility" msgid "inspect.tabs.styles.panel.shadow"
msgstr "Visibilidad" msgstr "Sombra"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.blur" msgid "inspect.tabs.styles.panel.stroke"
msgstr "Desenfoque" msgstr "Borde"
#: src/app/main/ui/inspect/styles/style_box.cljs:12 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.svg" msgid "inspect.tabs.styles.panel.svg"
msgstr "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 #: src/app/main/ui/inspect/styles/style_box.cljs:12
msgid "inspect.tabs.styles.panel.toggle-style" msgid "inspect.tabs.styles.panel.toggle-style"
msgstr "Alternar panel %s" msgstr "Alternar panel %s"
#: 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/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"
#: src/app/main/ui/dashboard/comments.cljs:95 #: src/app/main/ui/dashboard/comments.cljs:95
msgid "label.mark-all-as-read" msgid "label.mark-all-as-read"
msgstr "Marcar todo como leído" msgstr "Marcar todo como leído"
@@ -4255,22 +4247,6 @@ msgstr "Comenzar medida"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Terminar medida" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Activar miniaturas" msgstr "Activar miniaturas"
@@ -5030,10 +5006,6 @@ msgstr "Fuente"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Tamaño" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Ir al archivo de la biblioteca del estilo para editar" msgstr "Ir al archivo de la biblioteca del estilo para editar"
@@ -5062,6 +5034,9 @@ msgstr "Transformar texto"
msgid "workspace.assets.ungroup" msgid "workspace.assets.ungroup"
msgstr "Desagrupar" 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 #: src/app/main/ui/workspace/context_menu.cljs:791
msgid "workspace.context-menu.grid-cells.area" msgid "workspace.context-menu.grid-cells.area"
msgstr "Crear area" msgstr "Crear area"
@@ -5598,17 +5573,10 @@ msgstr "Intercambiar componente"
msgid "workspace.options.component.swap.empty" msgid "workspace.options.component.swap.empty"
msgstr "Aún no hay recursos en esta biblioteca" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:973
msgid "workspace.options.component.unlinked" msgid "workspace.options.component.unlinked"
msgstr "Desvinculado" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "Localizar variantes en conflicto" msgstr "Localizar variantes en conflicto"
@@ -6693,19 +6661,19 @@ msgstr "Tachado (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justificar (%s)" msgstr "Justificar"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2447,10 +2447,6 @@ msgstr "Garbitu historiala"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Kopiatu" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Sortu berria" msgstr "Sortu berria"
@@ -3147,10 +3143,6 @@ msgstr "Letra-tipoak"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Tamaina" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Joan estilo liburutegiaren fitxategira editatzeko" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justifikatu (%s)" msgstr "Justifikatu"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2281,10 +2281,6 @@ msgstr "فونت"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "اندازه" 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 #: 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" msgid "workspace.assets.typography.sample"
msgstr "مثال" msgstr "مثال"
@@ -2801,15 +2797,15 @@ msgstr "هیچ‌یک"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "تراز در مرکز (%s)" msgstr "تراز در مرکز"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "تراز چپ (%s)" msgstr "تراز چپ"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "تراز راست (%s)" msgstr "تراز راست"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3881,10 +3881,6 @@ msgstr "Copier le lien"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Copier les propriétés" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Créer" msgstr "Créer"
@@ -4251,22 +4247,6 @@ msgstr "Commencer la mesure"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Arrêter la mesure" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Définir les vignettes" msgstr "Définir les vignettes"
@@ -4884,10 +4864,6 @@ msgstr "Police"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Taille" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Accéder au fichier de bibliothèque de styles à modifier" 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" msgid "workspace.options.component.unlinked"
msgstr "Délié" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:264
msgid "workspace.options.component.variant.duplicated.single.one" msgid "workspace.options.component.variant.duplicated.single.one"
msgstr "" msgstr ""
@@ -6539,19 +6511,19 @@ msgstr "Barré (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justifier (%s)" msgstr "Justifier"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -1339,10 +1339,6 @@ msgstr "Fonte"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Tamaño" 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 #: 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" msgid "workspace.assets.typography.sample"
msgstr "Ag" msgstr "Ag"

View File

@@ -2690,10 +2690,6 @@ msgstr "goge sake"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "kwafi" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "samar da sabo abu" msgstr "samar da sabo abu"
@@ -3042,22 +3038,6 @@ msgstr "fara aunawa"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "dena aunawa" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "saita babban yatsa" msgstr "saita babban yatsa"
@@ -3421,10 +3401,6 @@ msgstr "tsarin haruffa"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "girma" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "tafi zuwa salon dakin karatu don a tace" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "tabbatarwa (%s)" msgstr "tabbatarwa"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3785,10 +3785,6 @@ msgstr "העתקת קישור ללוח הגזירים"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "העתקת מאפיינים" msgstr "העתקת מאפיינים"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "יצירת רכיב"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "יצירת חדש" msgstr "יצירת חדש"
@@ -4155,22 +4151,6 @@ msgstr "התחלת מדידה"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "עצירת מדידה" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "הגדרת תמונות ממוזערות" msgstr "הגדרת תמונות ממוזערות"
@@ -4818,10 +4798,6 @@ msgstr "גופן"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "גודל" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "מעבר לקובץ ספריית סגנון כדי לערוך" msgstr "מעבר לקובץ ספריית סגנון כדי לערוך"
@@ -5395,10 +5371,6 @@ msgstr "עדיין אין נכסים בתיקייה הזאת"
msgid "workspace.options.component.unlinked" msgid "workspace.options.component.unlinked"
msgstr "לא מקושר" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "מעבר לרכיב הראשי" msgstr "מעבר לרכיב הראשי"
@@ -6501,19 +6473,19 @@ msgstr "קו חוצה (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "יישור למרכז (%s)" msgstr "יישור למרכז"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "יישור לשני הצדדים (%s)" msgstr "יישור לשני הצדדים"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "יישור שמאלה (%s)" msgstr "יישור שמאלה"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "יישור ימינה (%s)" msgstr "יישור ימינה"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3792,10 +3792,6 @@ msgstr "लिंक कॉपी करें"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "गुण कॉपी करें" msgstr "गुण कॉपी करें"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "घटक बनाएँ"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "नया निर्माण" msgstr "नया निर्माण"
@@ -4162,22 +4158,6 @@ msgstr "मापन शुरू करें"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "मापन बंद करें" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "थंबनेल सेट करें" msgstr "थंबनेल सेट करें"
@@ -4787,10 +4767,6 @@ msgstr "फ़ॉन्ट"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "आकार" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "संपादन के लिए स्टाइल लाइब्रेरी फ़ाइल पर जाएँ" msgstr "संपादन के लिए स्टाइल लाइब्रेरी फ़ाइल पर जाएँ"
@@ -5364,10 +5340,6 @@ msgstr "इस लाइब्रेरी में अभी तक कोई
msgid "workspace.options.component.unlinked" msgid "workspace.options.component.unlinked"
msgstr "अनलिंक" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
msgid "workspace.options.component.variant.malformed.group.locate" msgid "workspace.options.component.variant.malformed.group.locate"
msgstr "अमान्य वेरिएंट का पता लगाएं" msgstr "अमान्य वेरिएंट का पता लगाएं"
@@ -6404,19 +6376,19 @@ msgstr "स्ट्राइकथ्रू (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "केंद्र संरेखित करें (%s)" msgstr "केंद्र संरेखित करें"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "जस्टिफ़ाई (%s)" msgstr "जस्टिफ़ाई"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "बाएँ संरेखित करें (%s)" msgstr "बाएँ संरेखित करें"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "दाएँ संरेखित करें (%s)" msgstr "दाएँ संरेखित करें"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3503,10 +3503,6 @@ msgstr "Kopiraj"
msgid "shortcuts.copy-link" msgid "shortcuts.copy-link"
msgstr "Kopiraj vezu u međuspremnik" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Kreiraj novo" msgstr "Kreiraj novo"
@@ -3863,22 +3859,6 @@ msgstr "Počni mjerenje"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Zaustavi mjerenje" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Postavi sličice" msgstr "Postavi sličice"
@@ -4310,10 +4290,6 @@ msgstr "Font"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Veličina" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Idi na datoteku biblioteke stilova za uređivanje" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3692,10 +3692,6 @@ msgstr "Salin tautan ke papan klip"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Salin properti" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Buat baru" msgstr "Buat baru"
@@ -4062,22 +4058,6 @@ msgstr "Mulai mengukur"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Berhenti mengukur" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Tetapkan gambar kecil" msgstr "Tetapkan gambar kecil"
@@ -4509,10 +4489,6 @@ msgstr "Fon"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Ukuran" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Pergi ke berkas pustaka untuk menyunting" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2167,10 +2167,6 @@ msgstr "Leta mmụba oghere"
msgid "shortcuts.paste" msgid "shortcuts.paste"
msgstr "Nyado" 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 #: src/app/main/ui.cljs:137
#, unused #, unused
msgid "viewer.breaking-change.message" msgid "viewer.breaking-change.message"

View File

@@ -3834,10 +3834,6 @@ msgstr "Copia link negli appunti"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Copia proprietà" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Crea nuovo" msgstr "Crea nuovo"
@@ -4204,22 +4200,6 @@ msgstr "Avvia misurazione"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Interrompi misurazione" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Imposta miniature" msgstr "Imposta miniature"
@@ -4833,10 +4813,6 @@ msgstr "Carattere"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Dimensione" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Vai alla libreria dello stile del file per modificare" 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" msgid "workspace.options.component.unlinked"
msgstr "Scollegato" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:1236
msgid "workspace.options.component.variant.malformed.group.locate" msgid "workspace.options.component.variant.malformed.group.locate"
msgstr "Individua varianti non valide" msgstr "Individua varianti non valide"
@@ -6452,19 +6424,19 @@ msgstr "Barrato (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Giustifica (%s)" msgstr "Giustifica"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3844,10 +3844,6 @@ msgstr "Ievietot saiti starpliktuvē"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Ievietot īpašības starpliktuvē" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Izveidot jaunu" msgstr "Izveidot jaunu"
@@ -4214,22 +4210,6 @@ msgstr "Sākt mērīšanu"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Beigt mērīšanu" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Iestatīt sīktēlus" msgstr "Iestatīt sīktēlus"
@@ -4864,10 +4844,6 @@ msgstr "Fonti"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Izmērs" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Doties uz stilu bibliotēkas datni, lai labotu" 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" msgid "workspace.options.component.unlinked"
msgstr "Atsaistīta" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "Doties uz galveno sastāvdaļu" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2801,10 +2801,6 @@ msgstr "Kosongkan buat asal"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Salin" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Buat baharu" msgstr "Buat baharu"

View File

@@ -597,10 +597,6 @@ msgstr "Skrift"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Størrelse" 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 #: src/app/main/ui/workspace/main_menu.cljs:333
msgid "workspace.header.menu.show-rules" msgid "workspace.header.menu.show-rules"
msgstr "Vis regler" msgstr "Vis regler"

View File

@@ -3863,10 +3863,6 @@ msgstr "Link naar klembord kopiëren"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Eigenschappen kopiëren" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Nieuw project aanmaken" msgstr "Nieuw project aanmaken"
@@ -4233,22 +4229,6 @@ msgstr "Meting starten"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Meting beëindigen" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Miniaturen instellen" msgstr "Miniaturen instellen"
@@ -4902,10 +4882,6 @@ msgstr "Lettertype"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Grootte" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Ga naar het stijl-bibliotheekbestand om te bewerken" 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" msgid "workspace.options.component.unlinked"
msgstr "Niet gekoppeld" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "Ga naar het hoofdonderdeel" msgstr "Ga naar het hoofdonderdeel"
@@ -6592,19 +6564,19 @@ msgstr "Doorhalen (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Centreren (%s)" msgstr "Centreren"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Uitvullen (%s)" msgstr "Uitvullen"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2424,10 +2424,6 @@ msgstr "Wyczyść cofnięcia"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Kopiuj" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Stwórz nowy" msgstr "Stwórz nowy"
@@ -3069,10 +3065,6 @@ msgstr "Czcionka"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Rozmiar" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Przejdź do pliku biblioteki stylów, żeby edytować" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Wyjustuj (%s)" msgstr "Wyjustuj"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2865,10 +2865,6 @@ msgstr "Limpar desfazer"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Copiar" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Criar novo" msgstr "Criar novo"
@@ -3505,10 +3501,6 @@ msgstr "Fonte"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Tamanho" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Ir para biblioteca de estilo para editar" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justificar (%s)" msgstr "Justificar"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3560,10 +3560,6 @@ msgstr "Copiar"
msgid "shortcuts.copy-link" msgid "shortcuts.copy-link"
msgstr "Copiar ligação para a área de transferência" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Criar novo" msgstr "Criar novo"
@@ -3920,22 +3916,6 @@ msgstr "Iniciar medição"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Parar medição" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Definir imagem destaque" msgstr "Definir imagem destaque"
@@ -4359,10 +4339,6 @@ msgstr "Fonte"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Tamanho" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Ir para ficheiro da biblioteca de estilos para editar" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justificar (%s)" msgstr "Justificar"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2907,10 +2907,6 @@ msgstr "Ștergeți anularea"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Copiază" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Creează nou" msgstr "Creează nou"
@@ -3259,22 +3255,6 @@ msgstr "Începeți măsurarea"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Opriți măsurarea" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Setați miniaturile" msgstr "Setați miniaturile"
@@ -3639,10 +3619,6 @@ msgstr "Font"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Dimensiune" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Editează fişierul în Colecţia de stiluri" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Justifică (%s)" msgstr "Justifică"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3218,10 +3218,6 @@ msgstr "Очистить отмену"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Скопировать" msgstr "Скопировать"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "Создать компонент"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Создать новый" msgstr "Создать новый"
@@ -3574,22 +3570,6 @@ msgstr "Начать измерение"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Остановить измерение" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Установить миниатюры" msgstr "Установить миниатюры"
@@ -3997,10 +3977,6 @@ msgstr "Шрифт"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Размер" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Перейти к файлу библиотеки стилей для редактирования" msgstr "Перейти к файлу библиотеки стилей для редактирования"
@@ -5428,19 +5404,19 @@ msgstr "Перечеркнутый (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Выравнивание по центру (%s)" msgstr "Выравнивание по центру"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Выравнивание по ширине (%s)" msgstr "Выравнивание по ширине"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "Выравнивание по левому краю (%s)" msgstr "Выравнивание по левому краю"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "Выравнивание по правому краю (%s)" msgstr "Выравнивание по правому краю"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3060,10 +3060,6 @@ msgstr "Очисти отказивање"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Копирај" msgstr "Копирај"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "Направи компоненту"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Направи ново" msgstr "Направи ново"
@@ -3416,22 +3412,6 @@ msgstr "Започни мерење"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Заустави мерење" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Подеси сличице" msgstr "Подеси сличице"
@@ -3835,10 +3815,6 @@ msgstr "Фонт"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Величина" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Идите на датотеку библиотеке стилова да бисте је уредили" msgstr "Идите на датотеку библиотеке стилова да бисте је уредили"
@@ -5262,19 +5238,19 @@ msgstr "Прелазна линија (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Поравнај по средини (%s)" msgstr "Поравнај по средини"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "Оправдај (%s)" msgstr "Оправдај"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "Поравнај на лево (%s)" msgstr "Поравнај на лево"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "Поравнај на десно (%s)" msgstr "Поравнај на десно"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3497,10 +3497,6 @@ msgstr "Kopiera"
msgid "shortcuts.copy-link" msgid "shortcuts.copy-link"
msgstr "Kopiera länk till urklipp" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Skapa ny" msgstr "Skapa ny"
@@ -3857,22 +3853,6 @@ msgstr "Starta mätningen"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Stoppa mätningen" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Ställ in miniatyrbilder" msgstr "Ställ in miniatyrbilder"
@@ -4302,10 +4282,6 @@ msgstr "Teckensnitt"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Storlek" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Gå till stilbibliotek fil för att redigera" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3208,10 +3208,6 @@ msgstr "Geri almayı temizle"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Kopyala" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Yeni oluştur" msgstr "Yeni oluştur"
@@ -3564,22 +3560,6 @@ msgstr "Ölçüme başla"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Ölçümü durdur" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Küçük resimleri ayarla" msgstr "Küçük resimleri ayarla"
@@ -3989,10 +3969,6 @@ msgstr "Yazı tipi"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Boyut" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Düzenlemek için biçim kütüphane dosyasına gidin" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3865,10 +3865,6 @@ msgstr "Скопіювати посилання у буфер"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "Копіювати параметри" msgstr "Копіювати параметри"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "Створити компонент"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Створити новий" msgstr "Створити новий"
@@ -4235,22 +4231,6 @@ msgstr "Почати вимірювання"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "Припинити вимірювання" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Вставити мініатюри" msgstr "Вставити мініатюри"
@@ -4885,10 +4865,6 @@ msgstr "Шрифт"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Розмір" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "Перейти до файлу бібліотеки стилів для редагування" msgstr "Перейти до файлу бібліотеки стилів для редагування"
@@ -5462,10 +5438,6 @@ msgstr "У цій бібліотеці немає ресурсів"
msgid "workspace.options.component.unlinked" msgid "workspace.options.component.unlinked"
msgstr "Розʼєднано" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "До головного компонента" msgstr "До головного компонента"
@@ -6537,19 +6509,19 @@ msgstr "Закреслення (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "Вирівняти по центру (%s)" msgstr "Вирівняти по центру"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "За шириною (%s)" msgstr "За шириною"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "Вирівняти ліворуч (%s)" msgstr "Вирівняти ліворуч"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "Вирівняти праворуч (%s)" msgstr "Вирівняти праворуч"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -2568,10 +2568,6 @@ msgstr "Pa yipàdá rẹ"
msgid "shortcuts.copy" msgid "shortcuts.copy"
msgstr "Dàákọ" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "Ṣẹ̀dá títún" msgstr "Ṣẹ̀dá títún"
@@ -2884,22 +2880,6 @@ msgstr "Bẹ̀rẹ̀ wíwọ̀n"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "da wíwọ̀n duro" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "Se étò awòn áwòran fun fidio" msgstr "Se étò awòn áwòran fun fidio"
@@ -3212,10 +3192,6 @@ msgstr "Fonti"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "Iwon" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:530
msgid "workspace.assets.typography.letter-spacing" msgid "workspace.assets.typography.letter-spacing"
msgstr "Aaye leta" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" 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 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3615,10 +3615,6 @@ msgstr "复制链接"
msgid "shortcuts.copy-props" msgid "shortcuts.copy-props"
msgstr "复制属性" msgstr "复制属性"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "创建组件"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "创建新的" msgstr "创建新的"
@@ -3985,22 +3981,6 @@ msgstr "启用测量"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "停止测量" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "设置缩略图" msgstr "设置缩略图"
@@ -4560,10 +4540,6 @@ msgstr "字体"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "尺寸" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "前往样式库文件进行编辑" msgstr "前往样式库文件进行编辑"
@@ -5137,10 +5113,6 @@ msgstr "你的库中还没有素材"
msgid "workspace.options.component.unlinked" msgid "workspace.options.component.unlinked"
msgstr "未链接" 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 #: src/app/main/ui/workspace/sidebar/options/menus/component.cljs:499
msgid "workspace.options.component.variant.duplicated.copy.locate" msgid "workspace.options.component.variant.duplicated.copy.locate"
msgstr "转到主组件" msgstr "转到主组件"
@@ -6197,19 +6169,19 @@ msgstr "删除线 (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "水平居中 (%s)" msgstr "水平居中"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "两端对齐 (%s)" msgstr "两端对齐"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "靠左对齐 (%s)" msgstr "靠左对齐"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "靠右对齐 (%s)" msgstr "靠右对齐"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"

View File

@@ -3337,10 +3337,6 @@ msgstr "複製"
msgid "shortcuts.copy-link" msgid "shortcuts.copy-link"
msgstr "將連結複製到剪貼簿" msgstr "將連結複製到剪貼簿"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:95
msgid "shortcuts.create-component"
msgstr "建立元件"
#: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:96
msgid "shortcuts.create-new-project" msgid "shortcuts.create-new-project"
msgstr "建立新的" msgstr "建立新的"
@@ -3697,22 +3693,6 @@ msgstr "開始測量"
msgid "shortcuts.stop-measure" msgid "shortcuts.stop-measure"
msgstr "停止測量" 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 #: src/app/main/ui/workspace/sidebar/shortcuts.cljs:187
msgid "shortcuts.thumbnail-set" msgid "shortcuts.thumbnail-set"
msgstr "設定縮圖" msgstr "設定縮圖"
@@ -4138,10 +4118,6 @@ msgstr "字型"
msgid "workspace.assets.typography.font-size" msgid "workspace.assets.typography.font-size"
msgstr "尺寸" 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 #: src/app/main/ui/workspace/sidebar/options/menus/typography.cljs:540
msgid "workspace.assets.typography.go-to-edit" msgid "workspace.assets.typography.go-to-edit"
msgstr "前往樣式圖庫檔案進行編輯" msgstr "前往樣式圖庫檔案進行編輯"
@@ -5678,19 +5654,19 @@ msgstr "刪除線 (%s)"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:58
msgid "workspace.options.text-options.text-align-center" msgid "workspace.options.text-options.text-align-center"
msgstr "置中 (%s)" msgstr "置中"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:66
msgid "workspace.options.text-options.text-align-justify" msgid "workspace.options.text-options.text-align-justify"
msgstr "對齊兩端 (%s)" msgstr "對齊兩端"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:54
msgid "workspace.options.text-options.text-align-left" msgid "workspace.options.text-options.text-align-left"
msgstr "左對齊 (%s)" msgstr "左對齊"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:62
msgid "workspace.options.text-options.text-align-right" msgid "workspace.options.text-options.text-align-right"
msgstr "右對齊 (%s)" msgstr "右對齊"
#: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199 #: src/app/main/ui/workspace/sidebar/options/menus/text.cljs:199
msgid "workspace.options.text-options.title" msgid "workspace.options.text-options.title"