├── .gitignore
├── LICENSE
├── README.md
├── UserFlows.sketchplugin
└── Contents
│ ├── Resources
│ ├── cn.plist
│ ├── cz.plist
│ ├── da.plist
│ ├── de.plist
│ ├── en.plist
│ ├── es.plist
│ ├── fa.plist
│ ├── fr.plist
│ ├── icon-internal.png
│ ├── icon.png
│ ├── icons
│ │ ├── addLink.png
│ │ ├── editConditions.png
│ │ ├── generateDiagram.png
│ │ ├── gotoArtboard.png
│ │ ├── gotoLinkLayer.png
│ │ ├── hideConnections.png
│ │ ├── redrawConnections.png
│ │ ├── relinkArtboards.png
│ │ └── removeLink.png
│ ├── images
│ │ ├── endMarker-0.tiff
│ │ ├── endMarker-1.tiff
│ │ ├── endMarker-2.tiff
│ │ ├── endMarker-3.tiff
│ │ ├── endMarker-4.tiff
│ │ ├── endMarker-5.tiff
│ │ ├── endMarker-6.tiff
│ │ ├── endMarker-7.tiff
│ │ ├── magnets--nsew.tiff
│ │ ├── magnets--topleft.tiff
│ │ ├── startMarker-0.tiff
│ │ ├── startMarker-1.tiff
│ │ ├── startMarker-2.tiff
│ │ ├── startMarker-3.tiff
│ │ ├── startMarker-4.tiff
│ │ ├── startMarker-5.tiff
│ │ ├── startMarker-6.tiff
│ │ └── startMarker-7.tiff
│ ├── it.plist
│ ├── nl.plist
│ ├── pt.plist
│ ├── ru.plist
│ ├── tr.plist
│ └── zhtw.plist
│ └── Sketch
│ ├── manifest.json
│ └── script.js
├── appcast.xml
└── user-flows-runner.png
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2017 Aby Nimbalkar
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # User Flows V2
2 | A plugin for generating flow diagrams from Artboards in [Sketch](http://www.bohemiancoding.com/sketch/).
3 |
4 | Installation and usage details can be found here: https://abynim.github.io/UserFlows
5 |
6 | ---
7 |
8 | ## Install with Sketch Runner
9 | With Sketch Runner, just go to the `install` command and search for `User Flows`. Runner allows you to manage plugins and do much more to speed up your workflow in Sketch. [Download Runner here](http://www.sketchrunner.com).
10 |
11 | 
12 |
13 | ---
14 |
15 | ## Localization
16 | User Flows supports the following languages:
17 |
18 | - English
19 | - Chinese (Simplified) by [Pluwen](https://twitter.com/pluwen)
20 | - Chinese (Traditional) by [Chia Yu Pai](https://github.com/fantasywind)
21 | - Česky by [Jakub Theimer](http://madnest.co)
22 | - Danish by [Kim Døfler](http://doefler.com)
23 | - Dutch by [Roy van Roojien](http://www.royvanrooijen.nl)
24 | - Español by [Alvaro Yuste Torregrosa](http://yuste.info)
25 | - French by [Benjamin Carrier](https://github.com/benjarier)
26 | - German by [Nikolas Klein](https://twitter.com/nikolasklein)
27 | - Italian by [Jacopo Rabolini](https://www.jacoporabolini.com)
28 | - Persian by [Mohammad Reza Mahmoudi](http://www.rezamahmoudi.ir)
29 | - Русский от [Никиты Шехова](https://t.me/NikitaShekhov)
30 | - Turkish by [Abdullah Şahin](https://twitter.com/mrabdullahsahin)
31 | - Portuguese by [Nic](https://github.com/nic)
32 |
33 | ---
34 |
35 | MIT License © Aby Nimbalkar | [@abynim](http://twitter.com/abynim).
36 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/cn.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | 创建连接
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | 移除连接
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | 重新连接复制的画板
17 | menu-addCondition
18 | 添加/编辑条件
19 | menu-generateFlow
20 | 生成流程图
21 | menu-updateFlow
22 | 更新流程图
23 | menu-showConnections
24 | 显示或重绘连线
25 | menu-hideConnections
26 | 隐藏连线
27 | menu-gotoDestinationArtboard
28 | 转到目标画板
29 | menu-goBackToLink
30 | 转到连接图层
31 | menu-editSettings
32 | 设置...
33 | menu-editShortcuts
34 | 键盘快捷键...
35 | menu-editLanguage
36 | 语言...
37 | menu-checkForUpdates
38 | 检查更新...
39 | manifest-description
40 | 从 Sketch 中的画板生成用户流程图表。
41 | defineLink-invalidSelectionTitle
42 | 无效的选择
43 | defineLink-invalidSelectionMessage
44 | 选择一个要定义连接的图层或分组,接着选择目标画板,再重新执行这个操作。
45 | defineLink-linkDefined
46 | Link defined:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | 选择一个已经定义为连接的图层,以移除它的连接属性。
51 | removeLink-linkRemoved
52 | 连接已移除
53 | removeLink-linksRemoved
54 | 连接已移除
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | 重新连接画板
63 | relinkArtboards-title
64 | 你确定吗?
65 | relinkArtboards-description
66 | 这个操作会尝试重新连接画板,这些画板因为被复制丢失了连接。
67 | relinkArtboards-dontShowAgain
68 | 不再显示
69 | relinkArtboards-relinkComplete
70 | %count%个画板已重新连接
71 | addCondition-title
72 | 添加或编辑条件
73 | addCondition-saveAndAdd
74 | 保存 + 添加
75 | addCondition-ifConditionPlaceholder
76 | 例如:如果用户已经登录
77 | addCondition-else
78 | 其他...
79 | addCondition-conditionArtboardName
80 | 条件
81 | addCondition-conditionGroupName
82 | 条件
83 | gotoArtboard-invalidSelectionTitle
84 | 无效的选择
85 | gotoArtboard-invalidSelectionMessage
86 | 选择一个已经定义为连接的图层,然后重试这个操作。
87 | generateFlow-message
88 | 生成一个 User Flow
89 | generateFlow-startFrom
90 | 起始于:
91 | generateFlow-noLinksTitle
92 | 未定义连接!
93 | generateFlow-noLinksMessage
94 | 此页面没有定义连接图层。点击 `插件 > User Flows > 定义连接` 来定义至少一个连接图层。
95 | generateFlow-flowName
96 | Flow 名称
97 | generateFlow-description
98 | Flow 描述
99 | generateFlow-addToPage
100 | 添加到页面
101 | generateFlow-newPage
102 | 新页面
103 | generateFlow-keepOrganized
104 | 保持 _Flows 页面有条理
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow 分组
111 | generateFlow-connectionsGroupName
112 | 连接
113 | generateFlow-modifiedOnDate
114 | 修改于 %date%
115 | generateFlow-modifiedBy
116 | 修改于 %date% 来自 %user%
117 | generateFlow-modifiedDate
118 | 修改日期
119 | generateFlow-saveButtonTitle
120 | 生成图表
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | 恢复默认
137 | settings-title
138 | User Flows 设置
139 | settings-exportOptions
140 | 画板导出选项
141 | settings-scaleOptions
142 | 缩放选项
143 | settings-flowBackground
144 | 流程图背景
145 | settings-bgLight
146 | 浅色
147 | settings-bgDark
148 | 深色
149 | settings-flowIndicatorStroke
150 | 流程图连接线
151 | settings-minArea
152 | 最小连接区域
153 | settings-drawBorders
154 | 为连接图层绘制边框
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | 你的名字
161 | settings-showDate
162 | 在流程图中显示日期和名字
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | 曲线
167 | settings-connectionStraight
168 | 直线
169 | shortcuts-title
170 | User Flows 键盘快捷键
171 | shortcuts-message
172 | 快捷键是通过(cmd, control, shift, option)和其他按键组合来定义的的。例如 – `cmd shift y`。记得检查快捷键是否已经被别的插件或者 Sketch 自己占用。
173 | checkUpdates-checking
174 | 检查更新...
175 | checkUpdates-updateAvailableTitle
176 | 发现新版本!
177 | checkUpdates-noUpdateAvailableTitle
178 | 你最棒!
179 | checkUpdates-updateAvailableMessage
180 | 最新的版本是 %currentVersion%,你的版本是 %installedVersion%。请重新从网站下载安装这个插件。
181 | checkUpdates-noUpdateAvailableMessage
182 | 你已经安装了最新版本的 UserFlows 👍
183 | checkUpdates-updateNow
184 | 现在更新
185 | checkUpdates-updateLater
186 | 稍后
187 | language-title
188 | 语言设置
189 | language-message
190 | 设置 UserFlows 插件的语言。
191 | artboardDescription-invalidSelectionMessage
192 | 选择一个画板
193 | artboardDescription-description
194 | 描述
195 | artboardDescription-saved
196 | 画板描述已保存
197 | alerts-save
198 | 保存
199 | alerts-cancel
200 | 取消
201 | alerts-done
202 | 完成
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/cz.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Vytvořit Link
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Smazat Link
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Přelinkovat Duplikované Artboardy
17 | menu-addCondition
18 | Přidat/Upravit Podmínky
19 | menu-generateFlow
20 | Generovat Flow Diagram
21 | menu-updateFlow
22 | Upravit Flow Diagram
23 | menu-showConnections
24 | Zobrazit nebo Překreslit Spojení
25 | menu-hideConnections
26 | Schovat Spojení
27 | menu-gotoDestinationArtboard
28 | Přejít na Linked Artboard
29 | menu-goBackToLink
30 | Jít zpět na Link Layer
31 | menu-editSettings
32 | Nastavení...
33 | menu-editShortcuts
34 | Klávesové Zkratky...
35 | menu-editLanguage
36 | Jazyk...
37 | menu-checkForUpdates
38 | Zkontrolovat Aktualizace...
39 | manifest-description
40 | Generovat user-flow diagramy z artboardů ve Sketchi.
41 | defineLink-invalidSelectionTitle
42 | Nesprávný Výběr
43 | defineLink-invalidSelectionMessage
44 | Vyberte vrstvu nebo skupinu pro vytvoření Linku, vyberte cílový artboard, potom znovu spusťe tento příkaz.
45 | defineLink-linkDefined
46 | Link definován:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Zvolte vrstvu definovanou jako link, abyste smazali jejich Link vlastnosti.
51 | removeLink-linkRemoved
52 | Link smazán
53 | removeLink-linksRemoved
54 | Linky smazány
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Přelinkovat Artboardy
63 | relinkArtboards-title
64 | Jste si jistí?
65 | relinkArtboards-description
66 | Tento příkaz se pokusí přelinkovat artboardy, které byly duplikovány a ztratily svá spojení.
67 | relinkArtboards-dontShowAgain
68 | Znovu nezobrazovat tuto zprávu
69 | relinkArtboards-relinkComplete
70 | %count% artboardů bylo přelinkováno
71 | addCondition-title
72 | Přidat nebo Upravit Spojení
73 | addCondition-saveAndAdd
74 | Uložit + Přidat
75 | addCondition-ifConditionPlaceholder
76 | Př. Pokud je uživatel přihlášen
77 | addCondition-else
78 | Nebo...
79 | addCondition-conditionArtboardName
80 | Podmínky
81 | addCondition-conditionGroupName
82 | Podmínka
83 | gotoArtboard-invalidSelectionTitle
84 | Neznámý výběr
85 | gotoArtboard-invalidSelectionMessage
86 | Vyberte vrstvu, kterou jste si definovali jako Link, potom spusťe tento příkaz znovu.
87 | generateFlow-message
88 | Generovat User Flow
89 | generateFlow-startFrom
90 | Začít od:
91 | generateFlow-noLinksTitle
92 | Nedefinován žádný Link!
93 | generateFlow-noLinksMessage
94 | Tato stránka nemá nadefinovány žádné linky mezi vrstvami. Definujte nejméně jeden link přechodem na `Plugins > User Flows > Definovat Link`
95 | generateFlow-flowName
96 | Jméno Flow
97 | generateFlow-description
98 | Popis Flow
99 | generateFlow-addToPage
100 | Přidat na Stránku
101 | generateFlow-newPage
102 | Nová Stránka
103 | generateFlow-keepOrganized
104 | Ponechat _Flows Stránku Organizovanou
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow Skupina
111 | generateFlow-connectionsGroupName
112 | Spojení
113 | generateFlow-modifiedOnDate
114 | Upraveno %date%
115 | generateFlow-modifiedBy
116 | Upraveno %date% uživatelem %user%
117 | generateFlow-modifiedDate
118 | Datum Upraveno
119 | generateFlow-saveButtonTitle
120 | Generovat Diagramy
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Obnovit Výchozí Nastavení
137 | settings-title
138 | User Flows Nastavení
139 | settings-exportOptions
140 | Možnosti Artboard Exportu
141 | settings-scaleOptions
142 | Nastavení Měřítka
143 | settings-flowBackground
144 | Flow Pozadí
145 | settings-bgLight
146 | Světlé
147 | settings-bgDark
148 | Tmavé
149 | settings-flowIndicatorStroke
150 | Obtažení Flow Indicator
151 | settings-minArea
152 | Minimální Plocha Linku
153 | settings-drawBorders
154 | Nakreslit okraje kolem link vrstev
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Vaše Jméno
161 | settings-showDate
162 | Zobrazit Datum a Pojmenovat Flows
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Zakřivené
167 | settings-connectionStraight
168 | Rozvné
169 | shortcuts-title
170 | User Flows Klávesové Zkratky
171 | shortcuts-message
172 | Zkratky jsou definovány použitím modifikátorů (cmd, control, shift, option) a jakoukoliv další klávesou. Například – 'cmd shift y'. Zkontrolujte zda-li zkratka není používána žádným dalším Sketch pluginem.
173 | checkUpdates-checking
174 | Kontroluji aktualizace...
175 | checkUpdates-updateAvailableTitle
176 | Aktualizace k dispozici!
177 | checkUpdates-noUpdateAvailableTitle
178 | Jste skvělí!
179 | checkUpdates-updateAvailableMessage
180 | Poslední verze je %currentVersion% a vy máte verzi %installedVersion%. Prosím stáhněte si a nainstalujte plugin z našeho webu.
181 | checkUpdates-noUpdateAvailableMessage
182 | Máte nainstalovánu poslední verzi UserFlows 👍
183 | checkUpdates-updateNow
184 | Aktualizovat Nyní
185 | checkUpdates-updateLater
186 | Později
187 | language-title
188 | Jazyková Nastavení
189 | language-message
190 | Nastavit jazyk pro UserFlows plugin.
191 | artboardDescription-invalidSelectionMessage
192 | Zvolte artboard
193 | artboardDescription-description
194 | Popis
195 | artboardDescription-saved
196 | Popis artboardu uložen
197 | alerts-save
198 | Uložit
199 | alerts-cancel
200 | Zrušit
201 | alerts-done
202 | Hotovo
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/da.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Definer Link
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Fjern Link
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Re-Link Duplicated Artboards
17 | menu-addCondition
18 | Tilføj/Rediger Betingelser
19 | menu-generateFlow
20 | Generer Flow Diagram
21 | menu-updateFlow
22 | Opdater Flow Diagram
23 | menu-showConnections
24 | Vis eller Gentegn Forbindelser
25 | menu-hideConnections
26 | Skjul Forbindelser
27 | menu-gotoDestinationArtboard
28 | Gå til forbundet Artboard
29 | menu-goBackToLink
30 | Gå Tilbage til forbundet Layer
31 | menu-editSettings
32 | Indstillinger...
33 | menu-editShortcuts
34 | Tastaturgenveje...
35 | menu-editLanguage
36 | Sprog...
37 | menu-checkForUpdates
38 | Søg efter opdateringer...
39 | manifest-description
40 | Generer user-flow diagram fra artboards i Sketch.
41 | defineLink-invalidSelectionTitle
42 | Forkert Markering
43 | defineLink-invalidSelectionMessage
44 | Vælg et Layer eller en Group som Link, vælg et artboard som destination og kør denne kommando igen.
45 | defineLink-linkDefined
46 | Link defineret:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Vælg et Layer, der allerede er defineret som Link, for at fjerne dets Link egenskaber.
51 | removeLink-linkRemoved
52 | Link fjernet
53 | removeLink-linksRemoved
54 | Links fjernet
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Re-Link Artboards
63 | relinkArtboards-title
64 | Are you sure?
65 | relinkArtboards-description
66 | This command will attempt to re-link artboards that have been duplicated and have lost their connections.
67 | relinkArtboards-dontShowAgain
68 | Don't show this mesage again
69 | relinkArtboards-relinkComplete
70 | %count% artboards were relinked
71 | addCondition-title
72 | Tilføj eller Rediger Betingelser
73 | addCondition-saveAndAdd
74 | Gem + tilføj
75 | addCondition-ifConditionPlaceholder
76 | Ex: Hvis bruger er logget ind
77 | addCondition-else
78 | Ellers...
79 | addCondition-conditionArtboardName
80 | Betingelser
81 | addCondition-conditionGroupName
82 | Betingelse
83 | gotoArtboard-invalidSelectionTitle
84 | Forkert Markering
85 | gotoArtboard-invalidSelectionMessage
86 | Vælg et Layer du har defineret som Link og kør denne kommando igen.
87 | generateFlow-message
88 | Generer et User Flow
89 | generateFlow-startFrom
90 | Start fra:
91 | generateFlow-noLinksTitle
92 | Ingen links defineret!
93 | generateFlow-noLinksMessage
94 | Der er ingen Link Layers defineret på denne side. Definer minimum et Link Layer ved at gå til `Plugins > User Flows > Definer Link`
95 | generateFlow-flowName
96 | Flow Navn
97 | generateFlow-description
98 | Flow Beskrivelse
99 | generateFlow-addToPage
100 | Add to Page
101 | generateFlow-newPage
102 | Ny side
103 | generateFlow-keepOrganized
104 | Sørg for at organisere _Flows siden
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow Gruppe
111 | generateFlow-connectionsGroupName
112 | Forbindelser
113 | generateFlow-modifiedOnDate
114 | Ændret %date%
115 | generateFlow-modifiedBy
116 | Ændret %date% af %user%
117 | generateFlow-modifiedDate
118 | Ændret Dato
119 | generateFlow-saveButtonTitle
120 | Generer Diagram
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Gendan Default
137 | settings-title
138 | User Flows Indstillinger
139 | settings-exportOptions
140 | Artboard Export Valgmuligheder
141 | settings-scaleOptions
142 | Skalerings Valgmuligheder
143 | settings-flowBackground
144 | Flow Baggrund
145 | settings-bgLight
146 | Lys
147 | settings-bgDark
148 | Mørk
149 | settings-flowIndicatorStroke
150 | Flow Indikator Streg
151 | settings-minArea
152 | Minimum Link Område
153 | settings-drawBorders
154 | Tegn rammer omkring link layers
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Dit Navn
161 | settings-showDate
162 | Vis Dato og Navn på Flows
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Curved
167 | settings-connectionStraight
168 | Straight
169 | shortcuts-title
170 | User Flows Tastaturgenveje
171 | shortcuts-message
172 | Genveje defineres ved at kombinere tasterne cmd, control, shift og/eller option samt en anden vilkårlig tast. Eksempelvis – 'cmd shift y'. Husk at tjekke om genvejen allerede bruges af et andet plugin eller Sketch selv.
173 | checkUpdates-checking
174 | Søger efter opdateringer...
175 | checkUpdates-updateAvailableTitle
176 | Der er en ny opdatering!
177 | checkUpdates-noUpdateAvailableTitle
178 | Du har den nyeste version!
179 | checkUpdates-updateAvailableMessage
180 | Den nyeste version er %currentVersion% og du har version %installedVersion%. Hent og installer venligst det nye plugin fra websitet.
181 | checkUpdates-noUpdateAvailableMessage
182 | Du har den nyeste version af UserFlows installeret 👍
183 | checkUpdates-updateNow
184 | Opdater Nu
185 | checkUpdates-updateLater
186 | Senere
187 | language-title
188 | Sprog Indstillinger
189 | language-message
190 | Indstil sproget for UserFlows plugin.
191 | artboardDescription-invalidSelectionMessage
192 | Vælg et artboard
193 | artboardDescription-description
194 | Beskrivelse
195 | artboardDescription-saved
196 | Artboard beskrivelse gemt
197 | alerts-save
198 | Gem
199 | alerts-cancel
200 | Annuller
201 | alerts-done
202 | OK
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/de.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Link erstellen
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Link entfernen
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Duplizierte Artboards neu verlinken
17 | menu-addCondition
18 | Bedinungen hinzufügen/entfernen
19 | menu-generateFlow
20 | Flow Diagramm erstellen
21 | menu-updateFlow
22 | Flow Diagramm aktualisieren
23 | menu-showConnections
24 | Verbindungen zeigen oder aktualisieren
25 | menu-hideConnections
26 | Verbindungen verstecken
27 | menu-gotoDestinationArtboard
28 | Zu verlinktem Artboard springen
29 | menu-goBackToLink
30 | Zurück zur verlinkten Ebene
31 | menu-editSettings
32 | Einstellungen...
33 | menu-editShortcuts
34 | Tastaturkürzel...
35 | menu-editLanguage
36 | Sprache...
37 | menu-checkForUpdates
38 | Nach Updates suchen...
39 | manifest-description
40 | User-flow Diagramme aus Artboards in Sketch erstellen.
41 | defineLink-invalidSelectionTitle
42 | Ungültige Auswahl
43 | defineLink-invalidSelectionMessage
44 | Wähle eine Ebene oder Group als Link aus, wähle das gewünschte Ziel und führe diesen Befehl wieder aus.
45 | defineLink-linkDefined
46 | Link definiert:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Wähle eine Ebene, die schon als Link definiert ist aus, um den Link zu entfernen.
51 | removeLink-linkRemoved
52 | Link entfernt
53 | removeLink-linksRemoved
54 | Links entfernt
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Artboards neu verlinken
63 | relinkArtboards-title
64 | Bist du dir sicher?
65 | relinkArtboards-description
66 | Dieser Befehl versucht duplizierte Artboards wieder zu verlinken, die ihren Link verloren hatten.
67 | relinkArtboards-dontShowAgain
68 | Diese Nachricht nicht mehr anzeigen
69 | relinkArtboards-relinkComplete
70 | %count% Artobards wurden wieder verlinkt
71 | addCondition-title
72 | Bedinungen hinzufügen oder ändern
73 | addCondition-saveAndAdd
74 | Speichern + Hinzufügen
75 | addCondition-ifConditionPlaceholder
76 | Ex: When Nutzer eingeloogt ist
77 | addCondition-else
78 | Oder...
79 | addCondition-conditionArtboardName
80 | Bedingung
81 | addCondition-conditionGroupName
82 | Bedingung
83 | gotoArtboard-invalidSelectionTitle
84 | Ungültige Auswahl
85 | gotoArtboard-invalidSelectionMessage
86 | Wähle eine Ebene, die schon als Link definiert ist aus, dann führe diesen Befehl noch einmal aus.
87 | generateFlow-message
88 | User Flow erstellen
89 | generateFlow-startFrom
90 | Starten von:
91 | generateFlow-noLinksTitle
92 | Keine Links definiert!
93 | generateFlow-noLinksMessage
94 | Diese Seite hat keine Links. Füge mindestens einen Link hinzu über `Plugins > User Flows > Link erstellen`
95 | generateFlow-flowName
96 | Flow Name
97 | generateFlow-description
98 | Flow Beschreibung
99 | generateFlow-addToPage
100 | Zur Seite hinzufügen
101 | generateFlow-newPage
102 | Neue Seite
103 | generateFlow-keepOrganized
104 | Die _Flows Seite organisiert halten
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow Gruppe
111 | generateFlow-connectionsGroupName
112 | Verbindungen
113 | generateFlow-modifiedOnDate
114 | Zuletzt bearbeitet: %date%
115 | generateFlow-modifiedBy
116 | Zuletzt bearbeitet: %date% durch %user%
117 | generateFlow-modifiedDate
118 | Bearbeitungsdatum
119 | generateFlow-saveButtonTitle
120 | Diagramm erstellen
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Einstellungen zurücksetzen
137 | settings-title
138 | User Flows Einstellungen
139 | settings-exportOptions
140 | Artboard Export Optionen
141 | settings-scaleOptions
142 | Skalierungs Optionen
143 | settings-flowBackground
144 | Flow Hintergrund
145 | settings-bgLight
146 | Hell
147 | settings-bgDark
148 | Dunkel
149 | settings-flowIndicatorStroke
150 | Flow Anzeigestrich
151 | settings-minArea
152 | Kleinste Link Fläche
153 | settings-drawBorders
154 | Rahmen um verlinkte Ebenen zeichnen
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Dein Name
161 | settings-showDate
162 | Namen und Datum auf Flows zeigen
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Gewölbt
167 | settings-connectionStraight
168 | Gerade
169 | shortcuts-title
170 | User Flows Tastaturkürzel
171 | shortcuts-message
172 | Tastaturkürzel werden definiert über eine Kombination aus Systemtasten (cmd, control, shift, option) und einer anderen Taste. Zum Beispiel – 'cmd shift y'. Überprüfe bitte, ob ein Kürzel schon von einem anderen Plugin oder Sketch schon verwendet wird.
173 | checkUpdates-checking
174 | Nach Updates suchen...
175 | checkUpdates-updateAvailableTitle
176 | Ein Update ist vorhanden!
177 | checkUpdates-noUpdateAvailableTitle
178 | Alles aktuell!
179 | checkUpdates-updateAvailableMessage
180 | Die aktuellse Version ist %currentVersion%. Du hast Version %installedVersion%. Bitte lade dir das Plugin von der Webseite herunter und installiere es neu.
181 | checkUpdates-noUpdateAvailableMessage
182 | Du hast die aktuellste Version von User Flows! 👍
183 | checkUpdates-updateNow
184 | Jetzt aktualisieren
185 | checkUpdates-updateLater
186 | Später
187 | language-title
188 | Spracheinstellungen
189 | language-message
190 | Verändere die Sprache von User Flows.
191 | artboardDescription-invalidSelectionMessage
192 | Wähle ein Artboard aus
193 | artboardDescription-description
194 | Beschreibung
195 | artboardDescription-saved
196 | Artboard Beschreibung gespeichert
197 | alerts-save
198 | Speichern
199 | alerts-cancel
200 | Abbrechen
201 | alerts-done
202 | Fertig
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/en.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Create Link
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Remove Link
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Re-Link Duplicated Artboards
17 | menu-addCondition
18 | Add/Edit Conditions
19 | menu-generateFlow
20 | Generate Flow Diagram
21 | menu-updateFlow
22 | Update Flow Diagram
23 | menu-showConnections
24 | Show or Redraw Connections
25 | menu-hideConnections
26 | Hide Connections
27 | menu-gotoDestinationArtboard
28 | Go to Linked Artboard
29 | menu-goBackToLink
30 | Go Back to Link Layer
31 | menu-editSettings
32 | Settings...
33 | menu-editShortcuts
34 | Keyboard Shortcuts...
35 | menu-editLanguage
36 | Language...
37 | menu-checkForUpdates
38 | Check for Updates...
39 | manifest-description
40 | Generate user-flow diagrams from artboards in Sketch.
41 | defineLink-invalidSelectionTitle
42 | Invalid Selection
43 | defineLink-invalidSelectionMessage
44 | Select a layer or group to define as a Link, select the destination artboard, then run this command again.
45 | defineLink-linkDefined
46 | Link defined:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Select a layer already defined as a link, to remove its link attributes.
51 | removeLink-linkRemoved
52 | Link removed
53 | removeLink-linksRemoved
54 | Links removed
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Re-Link Artboards
63 | relinkArtboards-title
64 | Are you sure?
65 | relinkArtboards-description
66 | This command will attempt to re-link artboards that have been duplicated and have lost their connections.
67 | relinkArtboards-dontShowAgain
68 | Don't show this mesage again
69 | relinkArtboards-relinkComplete
70 | %count% artboards were relinked
71 | addCondition-title
72 | Add or Edit Conditions
73 | addCondition-saveAndAdd
74 | Save + Add
75 | addCondition-ifConditionPlaceholder
76 | Ex: If user is logged in
77 | addCondition-else
78 | Else...
79 | addCondition-conditionArtboardName
80 | Conditions
81 | addCondition-conditionGroupName
82 | Condition
83 | gotoArtboard-invalidSelectionTitle
84 | Invalid Selection
85 | gotoArtboard-invalidSelectionMessage
86 | Select a layer that you have defined as a Link, then run this command again.
87 | generateFlow-message
88 | Generate a User Flow
89 | generateFlow-startFrom
90 | Start from:
91 | generateFlow-noLinksTitle
92 | No links defined!
93 | generateFlow-noLinksMessage
94 | This page has no link layers defined. Define at least one link layer by going to `Plugins > User Flows > Define Link`
95 | generateFlow-flowName
96 | Flow Name
97 | generateFlow-description
98 | Flow Description
99 | generateFlow-addToPage
100 | Add to Page
101 | generateFlow-newPage
102 | New Page
103 | generateFlow-keepOrganized
104 | Keep _Flows Page Organized
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow Group
111 | generateFlow-connectionsGroupName
112 | Connections
113 | generateFlow-modifiedOnDate
114 | Modified on %date%
115 | generateFlow-modifiedBy
116 | Modified on %date% by %user%
117 | generateFlow-modifiedDate
118 | Modified Date
119 | generateFlow-saveButtonTitle
120 | Generate Diagram
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Restore Defaults
137 | settings-title
138 | User Flows Settings
139 | settings-exportOptions
140 | Artboard Export Options
141 | settings-scaleOptions
142 | Scale Options
143 | settings-flowBackground
144 | Flow Background
145 | settings-bgLight
146 | Light
147 | settings-bgDark
148 | Dark
149 | settings-flowIndicatorStroke
150 | Flow Indicator Stroke
151 | settings-minArea
152 | Minimum Link Area
153 | settings-drawBorders
154 | Draw borders around link layers
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Your Name
161 | settings-showDate
162 | Show Date and Name on Flows
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Curved
167 | settings-connectionStraight
168 | Straight
169 | shortcuts-title
170 | User Flows Keyboard Shortcuts
171 | shortcuts-message
172 | Shortcuts are defined by using a combination of modifiers (cmd, control, shift, option) and any other key. For example – 'cmd shift y'. Remember to check if a shortcut is already being used by a different plugin or by Sketch itself.
173 | checkUpdates-checking
174 | Checking for updates...
175 | checkUpdates-updateAvailableTitle
176 | An update is available!
177 | checkUpdates-noUpdateAvailableTitle
178 | You're good!
179 | checkUpdates-updateAvailableMessage
180 | The most recent version is %currentVersion% and you have version %installedVersion%. Please download and install the plugin again from the website.
181 | checkUpdates-noUpdateAvailableMessage
182 | You have the most recent version of UserFlows installed 👍
183 | checkUpdates-updateNow
184 | Update Now
185 | checkUpdates-updateLater
186 | Later
187 | language-title
188 | Language Settings
189 | language-message
190 | Set the language for the UserFlows plugin.
191 | artboardDescription-invalidSelectionMessage
192 | Select an artboard
193 | artboardDescription-description
194 | Description
195 | artboardDescription-saved
196 | Artboard description saved
197 | alerts-save
198 | Save
199 | alerts-cancel
200 | Cancel
201 | alerts-done
202 | Done
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/es.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Crear Enlace
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Eliminar Enlace
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Re-enlazar Artboards duplicados
17 | menu-addCondition
18 | Añadir/Editar Condiciones
19 | menu-generateFlow
20 | Generar Diagrama de Flujo
21 | menu-updateFlow
22 | Actualizar Diagrama de Flujo
23 | menu-showConnections
24 | Mostrar or Repintar Conexiones
25 | menu-hideConnections
26 | Ocultar Conexiones
27 | menu-gotoDestinationArtboard
28 | Ir al Artboard enlazado
29 | menu-goBackToLink
30 | Volver a la capa Enlace
31 | menu-editSettings
32 | Ajustes...
33 | menu-editShortcuts
34 | Atajos de teclado...
35 | menu-editLanguage
36 | Idioma...
37 | menu-checkForUpdates
38 | Buscar actualizaciones...
39 | manifest-description
40 | Generar diagramas de interacción desde Artboards en Sketch.
41 | defineLink-invalidSelectionTitle
42 | Selección Inválida
43 | defineLink-invalidSelectionMessage
44 | Selecciona una capa o grupo para definirlo como enlace, selecciona el Artboard destino, y ejecuta este comando de nuevo.
45 | defineLink-linkDefined
46 | Enlace definido:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Selecciona una capa definida como Enlace para eliminar sus atributos.
51 | removeLink-linkRemoved
52 | Enlace eliminado
53 | removeLink-linksRemoved
54 | Enlaces eliminados
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Re-enlazar Artboards
63 | relinkArtboards-title
64 | ¿Estás seguro?
65 | relinkArtboards-description
66 | Este comando intentará re-enlazar Artboards duplicados que hayan perdido sus conexiones.
67 | relinkArtboards-dontShowAgain
68 | No mostrar este mensaje de nuevo.
69 | relinkArtboards-relinkComplete
70 | %count% Artboards fueron re-enlazados
71 | addCondition-title
72 | Añadir o Editar Condiciones
73 | addCondition-saveAndAdd
74 | Guardar + Añadir
75 | addCondition-ifConditionPlaceholder
76 | Ej: Si el usuario se ha logueado
77 | addCondition-else
78 | Si no...
79 | addCondition-conditionArtboardName
80 | Condiciones
81 | addCondition-conditionGroupName
82 | Condición
83 | gotoArtboard-invalidSelectionTitle
84 | Selección Inválida
85 | gotoArtboard-invalidSelectionMessage
86 | Selecciona una capa definida como Enlace, y vuelve a ejecutar este comando.
87 | generateFlow-message
88 | Generar un User Flow
89 | generateFlow-startFrom
90 | Empezar desde:
91 | generateFlow-noLinksTitle
92 | Ningún enlace definido!
93 | generateFlow-noLinksMessage
94 | Esta página no tiene capas de enlace definidas. Define al menos una capa de enlace en `Plugins > User Flows > Define Link`
95 | generateFlow-flowName
96 | Nombre del Flujo
97 | generateFlow-description
98 | Descripción del Flujo
99 | generateFlow-addToPage
100 | Añadir a la Página
101 | generateFlow-newPage
102 | Nueva Página
103 | generateFlow-keepOrganized
104 | Mantener páginas _Flows organizadas
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Grupo de Flujo
111 | generateFlow-connectionsGroupName
112 | Conexiones
113 | generateFlow-modifiedOnDate
114 | Modificado el %date%
115 | generateFlow-modifiedBy
116 | Modificado el %date% por %user%
117 | generateFlow-modifiedDate
118 | Fecha de Modificación
119 | generateFlow-saveButtonTitle
120 | Generar Diagrama
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Restablecer valores por defecto
137 | settings-title
138 | Ajustes de User Flows
139 | settings-exportOptions
140 | Opciones de Exportación del Artboard
141 | settings-scaleOptions
142 | Opciones de Escalado
143 | settings-flowBackground
144 | Fondo del Flujo
145 | settings-bgLight
146 | Claro
147 | settings-bgDark
148 | Oscuro
149 | settings-flowIndicatorStroke
150 | Línea de Flujo
151 | settings-minArea
152 | Area mínima de Enlace
153 | settings-drawBorders
154 | Pintar bordes en las capas con Enlace
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Tu Nombre
161 | settings-showDate
162 | Mostrar Nombre y Fecha en los Flujos
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Curva
167 | settings-connectionStraight
168 | Recta
169 | shortcuts-title
170 | Atajos de teclado de User Flows
171 | shortcuts-message
172 | Los atajos se definen usando una combinación de modificadores (cmd, control, shift, option) y cualquier otra tecla. Por ejemplo – 'cmd shift y'. Recuerda comprobar si el atajo ya está siendo usado por otro plugin o por el mismo Sketch.
173 | checkUpdates-checking
174 | Buscando actualizaciones...
175 | checkUpdates-updateAvailableTitle
176 | Una actualización disponible!
177 | checkUpdates-noUpdateAvailableTitle
178 | ¡Eres bueno!
179 | checkUpdates-updateAvailableMessage
180 | La última versión es %currentVersion% y tienes instalada la %installedVersion%. Por favor, descargate e instala el Plugin de nuevo desde la web.
181 | checkUpdates-noUpdateAvailableMessage
182 | Tienes la última versión de User Flows instalada 👍
183 | checkUpdates-updateNow
184 | Actualizar ahora
185 | checkUpdates-updateLater
186 | Más tarde
187 | language-title
188 | Ajustes de Idioma
189 | language-message
190 | Selecciona el idioma para el plugin User Flow.
191 | artboardDescription-invalidSelectionMessage
192 | Selecciona un Artboard
193 | artboardDescription-description
194 | Descripción
195 | artboardDescription-saved
196 | Descripción del Artboard guardada
197 | alerts-save
198 | Guardar
199 | alerts-cancel
200 | Cancelar
201 | alerts-done
202 | Hecho
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/fa.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | ساخت لینک
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | حذف لینک
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | اتصال دوباره صفحه طرحهای تکراری
17 | menu-addCondition
18 | اضافه/ویرایش شرطها
19 | menu-generateFlow
20 | تولید مسیر دیاگرام
21 | menu-updateFlow
22 | بروزرسانی مسیر دیاگرام
23 | menu-showConnections
24 | نمایش یا ترسیم مجدد اتصالات
25 | menu-hideConnections
26 | پنهان کردن اتصالات
27 | menu-gotoDestinationArtboard
28 | برو به صفحه طرح لینک شده
29 | menu-goBackToLink
30 | برگشت به لایه لینک شده
31 | menu-editSettings
32 | تنظیمات...
33 | menu-editShortcuts
34 | میانبرهای صفحه کلید...
35 | menu-editLanguage
36 | زبان...
37 | menu-checkForUpdates
38 | بررسی برای بروزرسانی...
39 | manifest-description
40 | تولید دیاگرامهای user-flow از صفحه طرح در اسکچ.
41 | defineLink-invalidSelectionTitle
42 | انتخاب نامعتبر
43 | defineLink-invalidSelectionMessage
44 | یک لایه یا گروه انتخاب کنید تا به عنوان لینک تعریف شود، صفحه طرح مقصد را انتخاب کنید، سپس این دستور را دوباره اجرا کنید.
45 | defineLink-linkDefined
46 | لینک تعریف شده:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | لایهای انتخاب کنید که به عنوان لینک تعریف شده، تا ویژگیهای لینک را حذف کنید.
51 | removeLink-linkRemoved
52 | لینک حذف شد
53 | removeLink-linksRemoved
54 | لینکها حذف شدند
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | اتصال مجدد صفحه طرحها
63 | relinkArtboards-title
64 | آیا مطمئنیذ؟
65 | relinkArtboards-description
66 | این دستور تلاش خواهد کرد برای اتصال دوباره صفحه طرحهایی که تکراری شدهاند و اتصالاتشان را از دست دادهاند.
67 | relinkArtboards-dontShowAgain
68 | این پیام را دوباره نشان نده
69 | relinkArtboards-relinkComplete
70 | %count% عدد صفحه طرح اتصال مجدد شدند
71 | addCondition-title
72 | اضافه یا ویرایش شرطها
73 | addCondition-saveAndAdd
74 | ذخیره | اضافه
75 | addCondition-ifConditionPlaceholder
76 | مثال: اگر کاربر وارد شده بود
77 | addCondition-else
78 | در غیر این صورت...
79 | addCondition-conditionArtboardName
80 | شرطها
81 | addCondition-conditionGroupName
82 | شرط
83 | gotoArtboard-invalidSelectionTitle
84 | انتخاب نامعتبر
85 | gotoArtboard-invalidSelectionMessage
86 | لایهای انتخاب کنید که به عنوان لینک تعریف کردهاید، سپس این دستور را دوباره اجرا کنید.
87 | generateFlow-message
88 | تولید یک User Flow
89 | generateFlow-startFrom
90 | شروع از:
91 | generateFlow-noLinksTitle
92 | لینکی تعریف نشده!
93 | generateFlow-noLinksMessage
94 | این صفحه هیچ لایهای که به عنوان لینک تعریف شده باشد ندارد. حداقل یک لایه لینک با رفتن به `Plugins > User Flows > Define Link` تعریف کنید.
95 | generateFlow-flowName
96 | نام مسیر
97 | generateFlow-description
98 | توضیحات مسیر
99 | generateFlow-addToPage
100 | اضافه کردن به صفحه
101 | generateFlow-newPage
102 | صفحه جدید
103 | generateFlow-keepOrganized
104 | صفحه مسیرها را مرتب نگه دار
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | گروه مسیر
111 | generateFlow-connectionsGroupName
112 | اتصالات
113 | generateFlow-modifiedOnDate
114 | تغییر داده شده در تاریخ %date%
115 | generateFlow-modifiedBy
116 | تغییر داده شده در تاریخ %date% توسط %user%
117 | generateFlow-modifiedDate
118 | تاریخ تغییر
119 | generateFlow-saveButtonTitle
120 | تولید دیاگرام
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | برگشت به حالت پیشفرض
137 | settings-title
138 | تنظیمات User Flows
139 | settings-exportOptions
140 | گزینههای خروجی گرفتن از صفحه طرح
141 | settings-scaleOptions
142 | گزینههای مقیاس
143 | settings-flowBackground
144 | پسزمینه مسیرها
145 | settings-bgLight
146 | روشن
147 | settings-bgDark
148 | تیره
149 | settings-flowIndicatorStroke
150 | تنظیمات مربوط به خط مسیر
151 | settings-minArea
152 | حداقل منطقه لینک
153 | settings-drawBorders
154 | ترسیم حاشیه روی لایههای لینک
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | نام شما
161 | settings-showDate
162 | نمایش تاریخ و نام روی مسیرها
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | منحنی
167 | settings-connectionStraight
168 | مستقیم
169 | shortcuts-title
170 | میانبرهای صفحه کلید UserFlows
171 | shortcuts-message
172 | میانبرها توسط یک ترکیب از کلیدهای (cmd, control, shift, option) و دیگر کلیدها تعریف شدهاند. برای مثال - 'cmd shift y'. حتما بررسی کنید که یک میانبر توسط افزونهای دیگر یا خود Sketch استفاده شده است یا نه.
173 | checkUpdates-checking
174 | در حال بررسی برای بروزرسانی...
175 | checkUpdates-updateAvailableTitle
176 | یک بروزرسانی موجود است!
177 | checkUpdates-noUpdateAvailableTitle
178 | تو خوبی!
179 | checkUpdates-updateAvailableMessage
180 | آخرین نسخه افزونه %currentVersion% است و شما نسخه %installedVersion% را دارید. لطفا دوباره افرونه را از وبسایت دانلود و نصب کنید.
181 | checkUpdates-noUpdateAvailableMessage
182 | شما آخرین نسخه UserFlows را نصب کردهاید 👍
183 | checkUpdates-updateNow
184 | همین حالا بروزرسانی کن
185 | checkUpdates-updateLater
186 | بعداً
187 | language-title
188 | تنظیمات زبان
189 | language-message
190 | برای افزونه UserFlows زبان انتخاب کنید
191 | artboardDescription-invalidSelectionMessage
192 | یک صفحه طرح انتخاب کنید
193 | artboardDescription-description
194 | توضیحات
195 | artboardDescription-saved
196 | توضیحات صفحه طرح ذخیره شد
197 | alerts-save
198 | ذخیره
199 | alerts-cancel
200 | لغو
201 | alerts-done
202 | ردیفه
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/fr.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Créer un lien
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Retirer un lien
13 | menu-removeAllLinks
14 | Retirer tous les liens
15 | menu-relinkArtboardsAfterCopy
16 | Relier les plans de travail dupliqués
17 | menu-addCondition
18 | Ajouter/Modifier les conditions
19 | menu-generateFlow
20 | Générer le diagramme de flux
21 | menu-updateFlow
22 | Mettre à jour le diagramme
23 | menu-showConnections
24 | Afficher ou redessiner les connections
25 | menu-hideConnections
26 | Cacher les connections
27 | menu-gotoDestinationArtboard
28 | Aller au plan de travail lié
29 | menu-goBackToLink
30 | Revenir au calque lié
31 | menu-editSettings
32 | Paramètres...
33 | menu-editShortcuts
34 | Raccourcis clavier...
35 | menu-editLanguage
36 | Langue...
37 | menu-checkForUpdates
38 | Rechercher des mises à jour...
39 | manifest-description
40 | Génère des diagrammes de flux à partir des plans de travail dans Sketch.
41 | defineLink-invalidSelectionTitle
42 | Sélection nulle
43 | defineLink-invalidSelectionMessage
44 | Sélectionnez un claque ou un groupe d'où faire partir un lien, Sélectionnez le plan de travail de destination, puis réexécuter cette commande.
45 | defineLink-linkDefined
46 | Lien créé:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Sélectionnez un calque avec un lien déjà défini pour retirer le lien.
51 | removeLink-linkRemoved
52 | Lien retiré
53 | removeLink-linksRemoved
54 | Lien retiré
55 | removeLinks-title
56 | Retirer tous les liens de:
57 | removeLinks-scopeSelectedArtboards
58 | Plans de travail sélectionnés
59 | removeLinks-scopeCurrentPage
60 | Page actuelle
61 | relinkArtboards-confirm
62 | Relier les plans de travail
63 | relinkArtboards-title
64 | Êtes-vous certain?
65 | relinkArtboards-description
66 | Cette commande va tenter de relier les plans de travail dupliqués ayant perdus leur liens.
67 | relinkArtboards-dontShowAgain
68 | Ne plus afficher ce message
69 | relinkArtboards-relinkComplete
70 | %count% plans de travail ont été reliés
71 | addCondition-title
72 | Ajouter/Modifier les conditions
73 | addCondition-saveAndAdd
74 | Sauvegarder + Ajouter
75 | addCondition-ifConditionPlaceholder
76 | Ex: Si l'utilisateur est connecté
77 | addCondition-else
78 | Sinon...
79 | addCondition-conditionArtboardName
80 | Conditions
81 | addCondition-conditionGroupName
82 | Condition
83 | gotoArtboard-invalidSelectionTitle
84 | Sélection nulle
85 | gotoArtboard-invalidSelectionMessage
86 | Sélectionnez un claque d'où part un lien, puis réexécuter cette commande.
87 | generateFlow-message
88 | Générer un flux d'utilisateur
89 | generateFlow-startFrom
90 | Départ de:
91 | generateFlow-noLinksTitle
92 | Pas de liens créés!
93 | generateFlow-noLinksMessage
94 | Cette page n'a pas de liens créés. Créez au moins un lien en allant sur `Plugins > User Flows > Créer un lien `
95 | generateFlow-flowName
96 | Flow Name
97 | generateFlow-description
98 | Description du diagramme
99 | generateFlow-addToPage
100 | Ajouter à la page
101 | generateFlow-newPage
102 | Nouvelle page
103 | generateFlow-keepOrganized
104 | Garder la page _Flows organisée
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Groupe de flux
111 | generateFlow-connectionsGroupName
112 | Connections
113 | generateFlow-modifiedOnDate
114 | Modifié le %date%
115 | generateFlow-modifiedBy
116 | Modifié le %date% par %user%
117 | generateFlow-modifiedDate
118 | Date de modification
119 | generateFlow-saveButtonTitle
120 | Générer le diagramme
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Rétablir les paramètres par defaut
137 | settings-title
138 | Paramètre de User Flow
139 | settings-exportOptions
140 | Option d'export des plans de travail
141 | settings-scaleOptions
142 | Options d'échelle
143 | settings-flowBackground
144 | Arrière plan du diagramme
145 | settings-bgLight
146 | Claire
147 | settings-bgDark
148 | Sombre
149 | settings-flowIndicatorStroke
150 | Traits des indicateurs de flux
151 | settings-minArea
152 | Taille minimum de la zone liée
153 | settings-drawBorders
154 | Ajouter un bord aux calques liés
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Votre nom
161 | settings-showDate
162 | Afficher le nom et la date sur le diagramme
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Courbe
167 | settings-connectionStraight
168 | Droite
169 | shortcuts-title
170 | Raccourcis clavier User Flows
171 | shortcuts-message
172 | Les raccourcis clavier sont définis par une combinaison d'une touche de modification (cmd, control, shift, option) et n'importe quelle autre touche. Par exemple – 'cmd shift y'. N'oubliez pas de vous assurez que la combinaison n'est pas déjà utilisée par Sketch ou un autre plugin.
173 | checkUpdates-checking
174 | Recherche de mises à jour...
175 | checkUpdates-updateAvailableTitle
176 | Une mise à jour est disponible!
177 | checkUpdates-noUpdateAvailableTitle
178 | Vous êtes à jour!
179 | checkUpdates-updateAvailableMessage
180 | La version la plus récente est %currentVersion% et vous avez la version %installedVersion%. Veuillez télécharger et installer le plugin à partir du site.
181 | checkUpdates-noUpdateAvailableMessage
182 | Vous avez la version la plus récente de UserFlows installée 👍
183 | checkUpdates-updateNow
184 | Mettre à jour maintenant
185 | checkUpdates-updateLater
186 | Plus tard
187 | language-title
188 | Paramètres de langue
189 | language-message
190 | Choisir la langue pour UserFlows.
191 | artboardDescription-invalidSelectionMessage
192 | Sélectionner un plan de travail
193 | artboardDescription-description
194 | Description
195 | artboardDescription-saved
196 | Description du plan de travail sauvegardée
197 | alerts-save
198 | Sauvegarder
199 | alerts-cancel
200 | Annuler
201 | alerts-done
202 | Terminé
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icon-internal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icon-internal.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icon.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/addLink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/addLink.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/editConditions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/editConditions.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/generateDiagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/generateDiagram.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/gotoArtboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/gotoArtboard.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/gotoLinkLayer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/gotoLinkLayer.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/hideConnections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/hideConnections.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/redrawConnections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/redrawConnections.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/relinkArtboards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/relinkArtboards.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/icons/removeLink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/icons/removeLink.png
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-0.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-0.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-1.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-1.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-2.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-2.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-3.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-3.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-4.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-4.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-5.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-5.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-6.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-6.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/endMarker-7.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/endMarker-7.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/magnets--nsew.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/magnets--nsew.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/magnets--topleft.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/magnets--topleft.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-0.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-0.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-1.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-1.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-2.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-2.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-3.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-3.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-4.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-4.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-5.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-5.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-6.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-6.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/images/startMarker-7.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/UserFlows.sketchplugin/Contents/Resources/images/startMarker-7.tiff
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/it.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Crea Collegamento
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Rimuovi Collegamento
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Ricollega Artboard Duplicata
17 | menu-addCondition
18 | Aggiungi/Modifica Condizioni
19 | menu-generateFlow
20 | Genera Diagramma di Flusso
21 | menu-updateFlow
22 | Aggiorna Diagramma di Flusso
23 | menu-showConnections
24 | Mostra o Ridisegna Connessioni
25 | menu-hideConnections
26 | Nascondi Connessioni
27 | menu-gotoDestinationArtboard
28 | Vai all'Artboard Collegata
29 | menu-goBackToLink
30 | Torna al Livello Collegato
31 | menu-editSettings
32 | Impostazioni...
33 | menu-editShortcuts
34 | Scorciatoie da Tastiera...
35 | menu-editLanguage
36 | Lingua...
37 | menu-checkForUpdates
38 | Controlla Aggiornamenti...
39 | manifest-description
40 | Genera il diagramma di flusso dalle artboard in Sketch.
41 | defineLink-invalidSelectionTitle
42 | Selezione invalida
43 | defineLink-invalidSelectionMessage
44 | Selezione un livello o gruppo come partenza del collegamento, poi selezione l'artboard di destinazione, quindi riprova.
45 | defineLink-linkDefined
46 | Collegamento definito:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Selezione un livello già definito come collegamento prima di rimuoverlo.
51 | removeLink-linkRemoved
52 | Collegamento rimosso
53 | removeLink-linksRemoved
54 | Collegamenti rimossi
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Artboard ricollegate
63 | relinkArtboards-title
64 | Sei sicuro?
65 | relinkArtboards-description
66 | Questo comando cercherà di ricollegare le artboard che sono state duplicate e che hanno perso la loro connessione.
67 | relinkArtboards-dontShowAgain
68 | Non mostrare più questo messaggio
69 | relinkArtboards-relinkComplete
70 | %count% artboard sono state ricollegate
71 | addCondition-title
72 | Aggiungi o rimuovi condizioni
73 | addCondition-saveAndAdd
74 | Salva + Aggiungi
75 | addCondition-ifConditionPlaceholder
76 | Es: Se l'utente è già loggato
77 | addCondition-else
78 | Altrimenti...
79 | addCondition-conditionArtboardName
80 | Condizioni
81 | addCondition-conditionGroupName
82 | Condizione
83 | gotoArtboard-invalidSelectionTitle
84 | Selezione invalida
85 | gotoArtboard-invalidSelectionMessage
86 | Seleziona un livello che hai già definito come collegamento, quindi riprova.
87 | generateFlow-message
88 | Flusso Utente generato
89 | generateFlow-startFrom
90 | Parti da:
91 | generateFlow-noLinksTitle
92 | Nessun collegamento definito!
93 | generateFlow-noLinksMessage
94 | Questa pagina non ha livelli con collegamenti definiti. Definisci almeno un livello con collegamento andando su `Plugins > User Flows > Definisci Collegamento`
95 | generateFlow-flowName
96 | Nome del Flusso
97 | generateFlow-description
98 | Descrizione del Flusso
99 | generateFlow-addToPage
100 | Aggiungi alla Pagina
101 | generateFlow-newPage
102 | Nuova Pagina
103 | generateFlow-keepOrganized
104 | Mantieni la pagina _Flows Organizzata
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Gruppo del Flusso
111 | generateFlow-connectionsGroupName
112 | Connessioni
113 | generateFlow-modifiedOnDate
114 | Modificato il %date%
115 | generateFlow-modifiedBy
116 | Modificato il %date% da %user%
117 | generateFlow-modifiedDate
118 | Data modifica
119 | generateFlow-saveButtonTitle
120 | Genera Diagramma
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Ripristina impostazioni base
137 | settings-title
138 | Impostazioni di User Flows
139 | settings-exportOptions
140 | Opzioni di esportazioni delle Artboard
141 | settings-scaleOptions
142 | Opzioni ridimensionamento
143 | settings-flowBackground
144 | Background del Flusso
145 | settings-bgLight
146 | Chiaro
147 | settings-bgDark
148 | Scuro
149 | settings-flowIndicatorStroke
150 | Indicatore del tratto
151 | settings-minArea
152 | Area minima collegamento
153 | settings-drawBorders
154 | Disegna bordi attorno al livello di collegamento
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Il tuo nome
161 | settings-showDate
162 | Mostra Date e Nomi nel Flusso
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Curve
167 | settings-connectionStraight
168 | Dritte
169 | shortcuts-title
170 | User Flows Scorciatoie da Tastiera
171 | shortcuts-message
172 | Le scorciatoie sono definiti dai tasti (cmd, control, shift, option) più uno più tasti. Per esempio – 'cmd shift y'. Ricordati di verificare se la combinazione è già in uso da un altro plugin o da Sketch stesso.
173 | checkUpdates-checking
174 | Controllo aggiornamenti...
175 | checkUpdates-updateAvailableTitle
176 | Aggiornamento disponibile!
177 | checkUpdates-noUpdateAvailableTitle
178 | Sei a posto!
179 | checkUpdates-updateAvailableMessage
180 | La versione più recente è %currentVersion% e tu hai la %installedVersion%. Per favore scarica e installa nuovamente il plugin dal sito.
181 | checkUpdates-noUpdateAvailableMessage
182 | Hai la versione più recente di UserFlows installata 👍
183 | checkUpdates-updateNow
184 | Aggiorna ora
185 | checkUpdates-updateLater
186 | Dopo
187 | language-title
188 | Impostazioni Lingua
189 | language-message
190 | Imposta la lingua per UserFlows.
191 | artboardDescription-invalidSelectionMessage
192 | Selezione un artboard
193 | artboardDescription-description
194 | Descrizione
195 | artboardDescription-saved
196 | Descrizione dell'Artboard salvata
197 | alerts-save
198 | Salva
199 | alerts-cancel
200 | Cancella
201 | alerts-done
202 | Fatto
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/nl.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Maak relatie aan
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Verwijder relatie
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Re-Link Duplicated Artboards
17 | menu-addCondition
18 | Uitzondering toevoegen/aanpassen
19 | menu-generateFlow
20 | Genereer flow diagram
21 | menu-updateFlow
22 | Update flow diagram
23 | menu-showConnections
24 | Toon verbindingen
25 | menu-hideConnections
26 | Verberg verbindingen
27 | menu-gotoDestinationArtboard
28 | Ga naar verbonden artboard
29 | menu-goBackToLink
30 | Ga terug naar verbonden laag
31 | menu-editSettings
32 | Instellingen...
33 | menu-editShortcuts
34 | Toetsenbord snelkoppelingen...
35 | menu-editLanguage
36 | Taal...
37 | menu-checkForUpdates
38 | Controleer op updates...
39 | manifest-description
40 | Genereer user-flow diagrammen van artboards in Sketch.
41 | defineLink-invalidSelectionTitle
42 | Ongeldige selectie
43 | defineLink-invalidSelectionMessage
44 | Selecteer een laag of group als beginpunt, selecteer vervolgens het artboard als eindpunt, voer daarna deze actie opnieuw uit.
45 | defineLink-linkDefined
46 | Relatie aangemaakt:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Selecteer een laag die al als beginpunt functioneert om de verbinding te verwijderen
51 | removeLink-linkRemoved
52 | Verbinding verwijderd
53 | removeLink-linksRemoved
54 | Verbindingen verwijderd
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Re-Link Artboards
63 | relinkArtboards-title
64 | Are you sure?
65 | relinkArtboards-description
66 | This command will attempt to re-link artboards that have been duplicated and have lost their connections.
67 | relinkArtboards-dontShowAgain
68 | Don't show this mesage again
69 | relinkArtboards-relinkComplete
70 | %count% artboards were relinked
71 | addCondition-title
72 | Uitzondering toevoegen of aanpassen
73 | addCondition-saveAndAdd
74 | Opslaan + toevoegen
75 | addCondition-ifConditionPlaceholder
76 | Bijv: Als gebruiker is ingelogd
77 | addCondition-else
78 | Zo niet...
79 | addCondition-conditionArtboardName
80 | Uitzonderingen
81 | addCondition-conditionGroupName
82 | Uitzondering
83 | gotoArtboard-invalidSelectionTitle
84 | Invalid Selection
85 | gotoArtboard-invalidSelectionMessage
86 | Selecteeg een laag die je als beginpint hebt gemaakt, voer daarna deze actie opnieuw uit.
87 | generateFlow-message
88 | Genereer een User Flow
89 | generateFlow-startFrom
90 | Begin bij:
91 | generateFlow-noLinksTitle
92 | Geen relaties gelegd!
93 | generateFlow-noLinksMessage
94 | Deze pagina heeft geen link-lagen. Maak This page has no link layers defined. Define at least one link layer by going to `Plugins > User Flows > Define Link`
95 | generateFlow-flowName
96 | Naam van flow
97 | generateFlow-description
98 | Omschrijving van flow
99 | generateFlow-addToPage
100 | Add to Page
101 | generateFlow-newPage
102 | Nieuwe pagina
103 | generateFlow-keepOrganized
104 | Keep _Flows Page Organized
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow groep
111 | generateFlow-connectionsGroupName
112 | Verbindingen
113 | generateFlow-modifiedOnDate
114 | Aangepast op %date%
115 | generateFlow-modifiedBy
116 | Aangepast op %date% door %user%
117 | generateFlow-modifiedDate
118 | Datum laatst aangepast
119 | generateFlow-saveButtonTitle
120 | Genereer diagram
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Herstel naar originele instellingen
137 | settings-title
138 | User Flows instellingen
139 | settings-exportOptions
140 | Exporteeropties voor artboard
141 | settings-scaleOptions
142 | Opties voor schalen
143 | settings-flowBackground
144 | Flow achtergrond
145 | settings-bgLight
146 | Licht
147 | settings-bgDark
148 | Donker
149 | settings-flowIndicatorStroke
150 | Flow Indicator Stroke
151 | settings-minArea
152 | Minimale grootte van beginpunt
153 | settings-drawBorders
154 | Teken randen rondom het beginpunt
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Je naam
161 | settings-showDate
162 | Toon datum en naam op de diagrammen
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Curved
167 | settings-connectionStraight
168 | Straight
169 | shortcuts-title
170 | User Flows toetsenbord Shortcuts
171 | shortcuts-message
172 | Snelkoppelingen kunnen worden gemaakt door een combinatie van speciale toetsen (Command ⌘, Shift ⇧
173 | , Option ⌥, Control ⌃) en een willekeurige andere toets. Bijvoorbeeld – 'cmd shift y'. Let op, een snelkoppeling mag niet gebruikt worden door een andere plugin of door Sketch zelf.
174 | checkUpdates-checking
175 | Controleren op updates...
176 | checkUpdates-updateAvailableTitle
177 | Er is een update beschikbaar!
178 | checkUpdates-noUpdateAvailableTitle
179 | Je bent up-to-date!
180 | checkUpdates-updateAvailableMessage
181 | De nieuwste versie is %currentVersion% en jij hebt versie %installedVersion%. Download en installeer de plugin opnieuw via de website.
182 | checkUpdates-noUpdateAvailableMessage
183 | Je hebt de laatste versie van UserFlows geïnstalleerd 👍
184 | checkUpdates-updateNow
185 | Update nu
186 | checkUpdates-updateLater
187 | Later
188 | language-title
189 | Taalinstellingen
190 | language-message
191 | Kies de taal voor de UserFlows plugin.
192 | artboardDescription-invalidSelectionMessage
193 | Selecteer een artboard
194 | artboardDescription-description
195 | Omschrijving
196 | artboardDescription-saved
197 | Artboard omschrijving opgeslagen
198 | alerts-save
199 | Opslaan
200 | alerts-cancel
201 | Annuleer
202 | alerts-done
203 | Klaar
204 |
205 |
206 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/pt.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Criar link
7 | menu-removeLink
8 | Remover link
9 | menu-removeAllLinks
10 | Remover todos os links
11 | menu-relinkArtboardsAfterCopy
12 | Relinkar Artboards Duplicados
13 | menu-addCondition
14 | Adicionar/Editar Condições
15 | menu-generateFlow
16 | Gerar Diagrama de Fluxo
17 | menu-updateFlow
18 | Atualizar Diagrama de Fluxo
19 | menu-showConnections
20 | Mostrar ou Redesenhar Conexões
21 | menu-hideConnections
22 | Esconder Conexões
23 | menu-gotoDestinationArtboard
24 | Ir para Artboard linkado
25 | menu-goBackToLink
26 | Voltar para Layer linkado
27 | menu-editSettings
28 | Configurações...
29 | menu-editShortcuts
30 | Teclas de atalho...
31 | menu-editLanguage
32 | Língua...
33 | menu-checkForUpdates
34 | Procurar por atualizações...
35 | manifest-description
36 | Gerar diagrama de fluxo de usuário à partir de um artboard do Sketch.
37 | defineLink-invalidSelectionTitle
38 | Seleção Inválida
39 | defineLink-invalidSelectionMessage
40 | Seleciona uma camada ou grupo para definir como link, selecione o artboard destino, e então execute o comando novamente.
41 | defineLink-linkDefined
42 | Link definido:
43 | editLinkOptions-invalidSelectionMessage
44 | Select a layer already defined as a link to edit its connection style.
45 | removeLink-invalidSelectionMessage
46 | Selecione uma camada que já definida como link, para remove-lo.
47 | removeLink-linkRemoved
48 | Link removido
49 | removeLink-linksRemoved
50 | Links removidos
51 | removeLinks-title
52 | Remover todos os links de:
53 | removeLinks-scopeSelectedArtboards
54 | Artboards selecionado
55 | removeLinks-scopeCurrentPage
56 | Página atual
57 | relinkArtboards-confirm
58 | Relinkar Artboards
59 | relinkArtboards-title
60 | Tem certeza?
61 | relinkArtboards-description
62 | Este comando irá tentar relinkar artboards que foram duplicados e perderam as conexões.
63 | relinkArtboards-dontShowAgain
64 | Não mostrar esta mensagem novamente
65 | relinkArtboards-relinkComplete
66 | %count% artboards foram relinkados
67 | addCondition-title
68 | Adicionar ou editar Condições
69 | addCondition-saveAndAdd
70 | Salvar + Adicionar
71 | addCondition-ifConditionPlaceholder
72 | Ex: Se usuário está logado
73 | addCondition-else
74 | Se não...
75 | addCondition-conditionArtboardName
76 | Condições
77 | addCondition-conditionGroupName
78 | Condição
79 | gotoArtboard-invalidSelectionTitle
80 | Seleção inválida
81 | gotoArtboard-invalidSelectionMessage
82 | Selecione uma camada que foi definida como link, então execute este comando novamente.
83 | generateFlow-message
84 | Gerar um fluxo de usuário
85 | generateFlow-startFrom
86 | Inicia em::
87 | generateFlow-noLinksTitle
88 | Sem links definidos!
89 | generateFlow-noLinksMessage
90 | Esta página não possui camadas com links definidos. Defina pelo menos um camada com link pelo meno: `Plugins > Fluxos do usuário > Definir link`
91 | generateFlow-flowName
92 | Nome do fluxo
93 | generateFlow-description
94 | Descrição do fluxo
95 | generateFlow-addToPage
96 | Adicionar na página
97 | generateFlow-newPage
98 | Nova página
99 | generateFlow-keepOrganized
100 | Manter Página do _Fluxo Organizada
101 | generateFlow-includePrototypingConnections
102 | Incluir Conexões a Protótipos
103 | generateFlow-shouldNumberScreens
104 | Add numbers to artboard names
105 | generateFlow-flowGroupName
106 | Grupo de Fluxos
107 | generateFlow-connectionsGroupName
108 | Conexões
109 | generateFlow-modifiedOnDate
110 | Modificado em %date%
111 | generateFlow-modifiedBy
112 | Modificado em %date% por %user%
113 | generateFlow-modifiedDate
114 | Data de modificaç&acilde;o
115 | generateFlow-saveButtonTitle
116 | Gerar Diagrama
117 | updateFlow-saveButtonTitle
118 | Atualizar Diagrama
119 | updateFlow-message
120 | Atualizar Diagrama de Fluxo
121 | updateFlow-completed
122 | Atualizado!
123 | updateFlow-noFlowArtboard
124 | Artboard do fluxo não encontrado
125 | updateFlow-noFlowArtboardMessage
126 | Selecione um artboard de fluxo exportado que você gostaria de atualizar, então execute este comando novamente.
127 | updateFlow-noInitialArtboard
128 | Não é possível atual o diagrama
129 | updateFlow-noInitialArtboardMessage
130 | O artboard inicial deste diagrama não foi encontrado no documento atual. Por favor gere o fluxo novamente.
131 | settings-restoreDefaults
132 | Restaurar Padrões
133 | settings-title
134 | Configurações do Fluxo de Usuário
135 | settings-exportOptions
136 | Opções de Exportação do Artboard
137 | settings-scaleOptions
138 | Opções de Escala
139 | settings-flowBackground
140 | Fundo do Fluxo
141 | settings-bgLight
142 | Claro
143 | settings-bgDark
144 | Escuro
145 | settings-flowIndicatorStroke
146 | Traço do Indicador de Fluxo
147 | settings-minArea
148 | Área mínima do Link
149 | settings-drawBorders
150 | Desenhar bordas ao redor das camadas de link
151 | settings-artboardMagnets
152 | Ímãs de Artboard
153 | settings-conditionFontSize
154 | Tamanho da fonte para Condições
155 | settings-yourName
156 | Seu Nome
157 | settings-showDate
158 | Mostrar Data e Nome nos Fluxos
159 | settings-autoUpdateConnections
160 | Auto-redesenhar conexões (experimental)
161 | settings-connectionCurved
162 | Curvado
163 | settings-connectionStraight
164 | Reto
165 | shortcuts-title
166 | Atalhos para teclado de fluxos de usuário
167 | shortcuts-message
168 | Atalhos são definidos usando combinações de modificadores (cmd, control, shift, option) e qualquer outra tecla. Por exemplo – 'cmd shift y'. Lembre-se de verificar se o atalho já não está sendo usado por outro plugin ou pelo próprio Sketch.
169 | checkUpdates-checking
170 | Procurando por atualizações...
171 | checkUpdates-updateAvailableTitle
172 | Uma atualização está disponível!
173 | checkUpdates-noUpdateAvailableTitle
174 | Você é bom!
175 | checkUpdates-updateAvailableMessage
176 | A versão mais recente é %currentVersion% a você tem instalado a versão %installedVersion%. Por favor baixe e instale o plugin à partir do site.
177 | checkUpdates-noUpdateAvailableMessage
178 | You have the most recent version of UserFlows installed 👍
179 | Você possui a versão mais recente do UserFlows instalada 👍
180 | checkUpdates-updateNow
181 | Atualizar agora
182 | checkUpdates-updateLater
183 | Depois
184 | language-title
185 | Configurações de Lingua
186 | language-message
187 | Definir a lingua para o plugin UserFlows.
188 | artboardDescription-invalidSelectionMessage
189 | Selecione um artboard
190 | artboardDescription-description
191 | Descrição
192 | artboardDescription-saved
193 | Descrição do Artboard salva
194 | alerts-save
195 | Salvar
196 | alerts-cancel
197 | Cancelar
198 | alerts-done
199 | Feito
200 |
201 |
202 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/ru.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Создать связь
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Удалить связь
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Скопировать артборды и пересоздать связь
17 | menu-addCondition
18 | Добавить/редактировать условия
19 | menu-generateFlow
20 | Сгенерировать Flow диаграмму
21 | menu-updateFlow
22 | Редактировать Flow диаграмму
23 | menu-showConnections
24 | Показать или пересоздать связи
25 | menu-hideConnections
26 | Скрыть связи
27 | menu-gotoDestinationArtboard
28 | Перейти к привязанному артборду
29 | menu-goBackToLink
30 | Вернуться к привязанному слою
31 | menu-editSettings
32 | Настройки
33 | menu-editShortcuts
34 | Горячие клавиши
35 | menu-editLanguage
36 | Язык
37 | menu-checkForUpdates
38 | Проверить обновления
39 | manifest-description
40 | Генератор User Flow диаграм для Sketch
41 | defineLink-invalidSelectionTitle
42 | Ошибка выделения
43 | defineLink-invalidSelectionMessage
44 | Для создания связи выберите слой или группу, нужный артборд и повторите команду.
45 | defineLink-linkDefined
46 | Ссылка определена:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Выберите слой-ссылку, чтобы удалить его атрибуты.
51 | removeLink-linkRemoved
52 | Связь удалена
53 | removeLink-linksRemoved
54 | Связи удалены
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Пересоздать связь артбордов
63 | relinkArtboards-title
64 | Вы уверены?
65 | relinkArtboards-description
66 | Это команда пересоздаст связи между скопированными и потерявшими связи артбордам.
67 | relinkArtboards-dontShowAgain
68 | Не показывать это сообщение снова
69 | relinkArtboards-relinkComplete
70 | %count% арбордов были связаны снова
71 | addCondition-title
72 | Добавить или редактировать условия
73 | addCondition-saveAndAdd
74 | Сохранить и добавить
75 | addCondition-ifConditionPlaceholder
76 | Если пользователей не залогинен
77 | addCondition-else
78 | Или...
79 | addCondition-conditionArtboardName
80 | Условия
81 | addCondition-conditionGroupName
82 | Условиие
83 | gotoArtboard-invalidSelectionTitle
84 | Ошибка выделения
85 | gotoArtboard-invalidSelectionMessage
86 | Выберите слой-ссылку и повторите команду.
87 | generateFlow-message
88 | Создать User Flow
89 | generateFlow-startFrom
90 | Начать от:
91 | generateFlow-noLinksTitle
92 | Нет слоев-ссылок!
93 | generateFlow-noLinksMessage
94 | На этой странице нет связей. Создайте хотя бы одну связь, перейдя в `Plugins > User Flows > Создать связь`
95 | generateFlow-flowName
96 | Название Flow
97 | generateFlow-description
98 | Описание Flow
99 | generateFlow-addToPage
100 | Добавить на страницу
101 | generateFlow-newPage
102 | Новая страница
103 | generateFlow-keepOrganized
104 | Держать страницу _Flows упорядоченной
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow-группа
111 | generateFlow-connectionsGroupName
112 | Связи
113 | generateFlow-modifiedOnDate
114 | Отредактирован %date%
115 | generateFlow-modifiedBy
116 | Отредактирован %date% пользователем %user%
117 | generateFlow-modifiedDate
118 | Дата редактирования
119 | generateFlow-saveButtonTitle
120 | Создать диаграмму
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Восстановить настройки по умолчанию
137 | settings-title
138 | User Flow
139 | settings-exportOptions
140 | Выгрузка артбордов
141 | settings-scaleOptions
142 | Масштаб
143 | settings-flowBackground
144 | Задний фон Flow
145 | settings-bgLight
146 | Светлый
147 | settings-bgDark
148 | Тёмный
149 | settings-flowIndicatorStroke
150 | Величина линии индикатора Flow
151 | settings-minArea
152 | Минимальная область ссылки
153 | settings-drawBorders
154 | Отрисовывать границы вокруг соединенных слоев
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Ваше имя
161 | settings-showDate
162 | Показывать дату и время на Flow
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Изогнутая
167 | settings-connectionStraight
168 | Прямая
169 | shortcuts-title
170 | Горячие клавиши User Flows
171 | shortcuts-message
172 | Горячие клавиши — комбинации cmd, ctrl, shift, option и любых других клавиш. Пример: 'cmd shift y'. Перед созданием горячих клавиш, проверьте, не используются ли они другими плагинами или Sketch.
173 | checkUpdates-checking
174 | Проверяем обновление...
175 | checkUpdates-updateAvailableTitle
176 | Доступно обновление
177 | checkUpdates-noUpdateAvailableTitle
178 | Нет доступных обновлений
179 | checkUpdates-updateAvailableMessage
180 | Последняя доступная версия %currentVersion%, у вас установлена %installedVersion%. Пожалуйста скачайте плагин с официального сайта.
181 | checkUpdates-noUpdateAvailableMessage
182 | Установлена последняя версия плагина 👍
183 | checkUpdates-updateNow
184 | Обновить сейчас
185 | checkUpdates-updateLater
186 | Позже
187 | language-title
188 | Язык
189 | language-message
190 | Выберите язык плагина UserFlows.
191 | artboardDescription-invalidSelectionMessage
192 | Выберите артборд
193 | artboardDescription-description
194 | Описание
195 | artboardDescription-saved
196 | Описание артборда сохранено
197 | alerts-save
198 | Сохранить
199 | alerts-cancel
200 | Отменить
201 | alerts-done
202 | ОК
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/tr.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | Bağlantı Oluştur
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | Bağlantıyı Sil
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Yinelenen Artboard’ları Yeniden Bağlantıla
17 | menu-addCondition
18 | Koşul Ekle veya Düzenle
19 | menu-generateFlow
20 | Akış Diyagramı Oluştur
21 | menu-updateFlow
22 | Akış Diyagramını Güncelle
23 | menu-showConnections
24 | Bağlantıları Göster veya Yeniden Yap
25 | menu-hideConnections
26 | Bağlantıları Gizle
27 | menu-gotoDestinationArtboard
28 | Bağlantılı Artboard’a Git
29 | menu-goBackToLink
30 | Bağlantı Katmanına Geri Dön
31 | menu-editSettings
32 | Ayarlar...
33 | menu-editShortcuts
34 | Kısayol Tuşları...
35 | menu-editLanguage
36 | Dil...
37 | menu-checkForUpdates
38 | Güncellemeleri Denetle...
39 | manifest-description
40 | Sketch’de ki artboard için kullanıcı akış diyagramı oluşturun.
41 | defineLink-invalidSelectionTitle
42 | Geçersiz Seçim
43 | defineLink-invalidSelectionMessage
44 | Bir Bağlantı olarak tanımlamak için bir artboard veya grup seçin, hedef çalışma yüzeyini seçin, ardından bu komutu tekrar çalıştırın.
45 | defineLink-linkDefined
46 | Bağlantı Tanımlandı:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | Bağlantı niteliklerini kaldırmak için zaten bir bağlantı olarak tanımlanan bir artboard seçin.
51 | removeLink-linkRemoved
52 | Bağlantı Silindi
53 | removeLink-linksRemoved
54 | Bağlantılar Silindi
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Artboard’ları yeniden bağlayın
63 | relinkArtboards-title
64 | Emin Misin?
65 | relinkArtboards-description
66 | Bu komut kopyalanan ve bağlantılarını kaybetmiş olan artboard’ları yeniden bağlamayı deneyecektir.
67 | relinkArtboards-dontShowAgain
68 | Bu mesajı tekrar gösterme
69 | relinkArtboards-relinkComplete
70 | %count% artboard yeniden bağlandı
71 | addCondition-title
72 | Koşul Ekle veya Düzenle
73 | addCondition-saveAndAdd
74 | Kaydet + Ekle
75 | addCondition-ifConditionPlaceholder
76 | Örn: Eğer kullanıcı giriş yaparsa
77 | addCondition-else
78 | Değilse...
79 | addCondition-conditionArtboardName
80 | Koşullar
81 | addCondition-conditionGroupName
82 | Koşul
83 | gotoArtboard-invalidSelectionTitle
84 | Geçersiz Seçim
85 | gotoArtboard-invalidSelectionMessage
86 | Bir Bağlantı olarak tanımladığınız bir artboard’ı seçin, ardından bu komutu tekrar çalıştırın.
87 | generateFlow-message
88 | Kullanıcı Akışı Oluştur
89 | generateFlow-startFrom
90 | Buradan başla:
91 | generateFlow-noLinksTitle
92 | Bağlantı tanımlanmadı!
93 | generateFlow-noLinksMessage
94 | Bu sayfa için hiçbir bağlantı tanımlanmadı. En son tanımlanan bağlantılara buradan ulaşabilirsin: 'Eklentiler> Kullanıcı Akışları> Bağlantıyı Tanımla'
95 | generateFlow-flowName
96 | Akış Adı
97 | generateFlow-description
98 | Akış Açıklaması
99 | generateFlow-addToPage
100 | Sayfaya Ekle
101 | generateFlow-newPage
102 | Yeni Sayfa
103 | generateFlow-keepOrganized
104 | _Flows Sayfasını Düzenli Tutun.
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Akış Grubu
111 | generateFlow-connectionsGroupName
112 | Bağlantılar
113 | generateFlow-modifiedOnDate
114 | %date% tarhinde değiştirildi.
115 | generateFlow-modifiedBy
116 | %date% tarihinde %user% tarafından değiştirildi.
117 | generateFlow-modifiedDate
118 | Değiştirilme Tarihi
119 | generateFlow-saveButtonTitle
120 | Diyagram Oluştur
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | Varsayılanları Geri Yükle
137 | settings-title
138 | Kullanıcı Akış Ayarları
139 | settings-exportOptions
140 | Artboard Dışa Aktarma Seçenekleri
141 | settings-scaleOptions
142 | Ölçek Seçenekleri
143 | settings-flowBackground
144 | Akış Arka Planı
145 | settings-bgLight
146 | Beyaz
147 | settings-bgDark
148 | Siyah
149 | settings-flowIndicatorStroke
150 | Akış Göstergesi Çizgisi
151 | settings-minArea
152 | Minimum Bağlantı Alanı
153 | settings-drawBorders
154 | Bağlantı katmanları çevresinde kenarlıklar çiz
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | Adınız
161 | settings-showDate
162 | Akışlarda Tarih ve İsim Göster
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | Kavisli
167 | settings-connectionStraight
168 | Düz
169 | shortcuts-title
170 | Kullanıcı Akışı Klavye Kısayolları
171 | shortcuts-message
172 | Kısayollar, değiştiriciler (cmd, control, shift, option) ve başka herhangi bir tuş kombinasyonu kullanılarak tanımlanır. Örneğin - 'cmd vardiya y'. Bir kısayolun zaten farklı bir eklenti tarafından mı yoksa Artboard defterinin kendisi tarafından mı kullanıldığını kontrol etmeyi unutmayın.
173 | checkUpdates-checking
174 | Güncellemeler kontrol ediliyor…
175 | checkUpdates-updateAvailableTitle
176 | Bir güncelleme var!
177 | checkUpdates-noUpdateAvailableTitle
178 | Eklenti Güncel, Süpersin!
179 | checkUpdates-updateAvailableMessage
180 | En son sürüm %currentVersion% ve %installedVersion% sürümüne sahipsin. Lütfen eklentiyi web sitesinden tekrar indirin ve yükleyin.
181 | checkUpdates-noUpdateAvailableMessage
182 | UserFlows’un en yeni sürümü yüklendi 👍
183 | checkUpdates-updateNow
184 | Şimdi Güncelle
185 | checkUpdates-updateLater
186 | Sonra
187 | language-title
188 | Dil Ayarları
189 | language-message
190 | UserFlows eklentisinin dilini ayarlayın.
191 | artboardDescription-invalidSelectionMessage
192 | Bir Artboard Seçin
193 | artboardDescription-description
194 | Açıklama
195 | artboardDescription-saved
196 | Artboard açıklaması kaydedildi.
197 | alerts-save
198 | Kaydet
199 | alerts-cancel
200 | İptal
201 | alerts-done
202 | Tamam
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Resources/zhtw.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | menu-defineLink
6 | 新增連線
7 | menu-defineLinkWithOptions
8 | Create Link With Connection Style
9 | menu-editLinkOptions
10 | Edit Connection Style
11 | menu-removeLink
12 | 移除連線
13 | menu-removeAllLinks
14 | Remove All Links
15 | menu-relinkArtboardsAfterCopy
16 | Re-Link Duplicated Artboards
17 | menu-addCondition
18 | 新增/編輯條件
19 | menu-generateFlow
20 | 產生流程圖
21 | menu-updateFlow
22 | 更新流程圖
23 | menu-showConnections
24 | 顯示或重繪連線
25 | menu-hideConnections
26 | 隱藏連線
27 | menu-gotoDestinationArtboard
28 | 前往工作區域
29 | menu-goBackToLink
30 | 前往連線圖層
31 | menu-editSettings
32 | 設定...
33 | menu-editShortcuts
34 | 快速鍵設定...
35 | menu-editLanguage
36 | 語言...
37 | menu-checkForUpdates
38 | 檢查更新...
39 | manifest-description
40 | 從 Sketch 工作區域產生流程圖。
41 | defineLink-invalidSelectionTitle
42 | 無效的目標
43 | defineLink-invalidSelectionMessage
44 | 選擇一個要新增連線的圖層或群組,接者選取目標工作區域,再重新執行這個動作。
45 | defineLink-linkDefined
46 | 連線定義:
47 | editLinkOptions-invalidSelectionMessage
48 | Select a layer already defined as a link to edit its connection style.
49 | removeLink-invalidSelectionMessage
50 | 選擇一個已定義連線的圖層,以移除他的連線屬性
51 | removeLink-linkRemoved
52 | 連線已移除
53 | removeLink-linksRemoved
54 | 連線已移除
55 | removeLinks-title
56 | Remove all Links from:
57 | removeLinks-scopeSelectedArtboards
58 | Selected Artboards
59 | removeLinks-scopeCurrentPage
60 | Current Page
61 | relinkArtboards-confirm
62 | Re-Link Artboards
63 | relinkArtboards-title
64 | Are you sure?
65 | relinkArtboards-description
66 | This command will attempt to re-link artboards that have been duplicated and have lost their connections.
67 | relinkArtboards-dontShowAgain
68 | Don't show this mesage again
69 | relinkArtboards-relinkComplete
70 | %count% artboards were relinked
71 | addCondition-title
72 | 新增或編輯條件
73 | addCondition-saveAndAdd
74 | 儲存 + 新增
75 | addCondition-ifConditionPlaceholder
76 | 例如:用戶已經登入
77 | addCondition-else
78 | 其他...
79 | addCondition-conditionArtboardName
80 | 條件
81 | addCondition-conditionGroupName
82 | 條件
83 | gotoArtboard-invalidSelectionTitle
84 | 無效的選擇
85 | gotoArtboard-invalidSelectionMessage
86 | 選擇一個已連線的圖層,然後重試這個動作
87 | generateFlow-message
88 | 產生一個 User Flow
89 | generateFlow-startFrom
90 | 開始於:
91 | generateFlow-noLinksTitle
92 | 未定義連線!
93 | generateFlow-noLinksMessage
94 | 此畫面沒有定義連線圖層。點擊 `外掛 > User Flows > 定義連線` 來定義至少一個連線圖層。
95 | generateFlow-flowName
96 | Flow 名稱
97 | generateFlow-description
98 | Flow 描述
99 | generateFlow-addToPage
100 | Add to Page
101 | generateFlow-newPage
102 | 新頁面
103 | generateFlow-keepOrganized
104 | 保持 _Flows 頁面整齊
105 | generateFlow-includePrototypingConnections
106 | Include Prototyping Connections
107 | generateFlow-shouldNumberScreens
108 | Add numbers to artboard names
109 | generateFlow-flowGroupName
110 | Flow 群組
111 | generateFlow-connectionsGroupName
112 | 連線
113 | generateFlow-modifiedOnDate
114 | 修改於 %date%
115 | generateFlow-modifiedBy
116 | 由 %user% 修改於 %date%
117 | generateFlow-modifiedDate
118 | 修改日期
119 | generateFlow-saveButtonTitle
120 | 產生圖瞟
121 | updateFlow-saveButtonTitle
122 | Update Diagram
123 | updateFlow-message
124 | Update Flow Diagram
125 | updateFlow-completed
126 | Updated!
127 | updateFlow-noFlowArtboard
128 | Flow artboard not found
129 | updateFlow-noFlowArtboardMessage
130 | Select the exported flow artboard that you wish to update, then run the command again.
131 | updateFlow-noInitialArtboard
132 | Cannot update diagram
133 | updateFlow-noInitialArtboardMessage
134 | The initial artboard of this diagram was not found in this document. Please generate the flow again.
135 | settings-restoreDefaults
136 | 恢復預設
137 | settings-title
138 | User Flows 設定
139 | settings-exportOptions
140 | 匯出選項
141 | settings-scaleOptions
142 | 縮放選項
143 | settings-flowBackground
144 | 流程圖背景
145 | settings-bgLight
146 | 淺色
147 | settings-bgDark
148 | 深色
149 | settings-flowIndicatorStroke
150 | 流程圖連接線
151 | settings-minArea
152 | 最小連線區域
153 | settings-drawBorders
154 | 繪製連線圖層邊框
155 | settings-artboardMagnets
156 | Artboard Magnets
157 | settings-conditionFontSize
158 | Condition Font Size
159 | settings-yourName
160 | 你的名字
161 | settings-showDate
162 | 在流程圖中顯示日期與名字
163 | settings-autoUpdateConnections
164 | Auto-redraw connections (experimental)
165 | settings-connectionCurved
166 | 曲線
167 | settings-connectionStraight
168 | 直線
169 | shortcuts-title
170 | User Flows 鍵盤快速鍵
171 | shortcuts-message
172 | 快速鍵是通過(cmd, control, shift, option)與其他按鍵的組合來定義。例如 – `cmd shift y`。記得檢查快速鍵是否被其他外掛使用或由 Sketch 自己使用。
173 | checkUpdates-checking
174 | 檢查更新...
175 | checkUpdates-updateAvailableTitle
176 | 發現新版本!
177 | checkUpdates-noUpdateAvailableTitle
178 | 你最棒!
179 | checkUpdates-updateAvailableMessage
180 | 最新的版本是 %currentVersion%,你的版本是 %installedVersion%。請重新從網站下載並安裝這個外掛。
181 | checkUpdates-noUpdateAvailableMessage
182 | 你已經安裝了最新版本的 UserFlows 👍
183 | checkUpdates-updateNow
184 | 馬上更新
185 | checkUpdates-updateLater
186 | 稍晚
187 | language-title
188 | 語言設定
189 | language-message
190 | 設定 UserFlows 的語言。
191 | artboardDescription-invalidSelectionMessage
192 | 選擇一個工作區域
193 | artboardDescription-description
194 | 描述
195 | artboardDescription-saved
196 | 工作區域描述已儲存
197 | alerts-save
198 | 儲存
199 | alerts-cancel
200 | 取消
201 | alerts-done
202 | 完成
203 |
204 |
205 |
--------------------------------------------------------------------------------
/UserFlows.sketchplugin/Contents/Sketch/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "Generate user-flow diagrams from artboards in Sketch.",
3 | "disableCocoaScriptPreprocessor": true,
4 | "version": "2.3.9",
5 | "author": "Aby Nimbalkar",
6 | "commands": [
7 | {
8 | "script": "script.js",
9 | "shortcut": "cmd shift m",
10 | "handlers": {
11 | "run": "defineLink"
12 | },
13 | "identifier": "defineLink",
14 | "description": "Select a layer/group, select an artboard, then create a link between the two.",
15 | "icon": "icons/addLink.png",
16 | "name": "Create Link"
17 | },
18 | {
19 | "script": "script.js",
20 | "shortcut": "cmd control shift m",
21 | "handlers": {
22 | "run": "defineLink"
23 | },
24 | "identifier": "defineLinkWithOptions",
25 | "description": "Select a layer/group, select an artboard, then create a link between the two by selecting a connection style.",
26 | "icon": "icons/addLink.png",
27 | "name": "Create Link With Connection Style"
28 | },
29 | {
30 | "script": "script.js",
31 | "shortcut": "cmd option shift m",
32 | "handlers": {
33 | "run": "editConnectionStyle"
34 | },
35 | "identifier": "editLinkOptions",
36 | "description": "Edit the style preset of a link layer's connection.",
37 | "icon": "icons/addLink.png",
38 | "name": "Edit Connection Style"
39 | },
40 | {
41 | "script": "script.js",
42 | "shortcut": "cmd shift u",
43 | "handlers": {
44 | "run": "removeLink"
45 | },
46 | "identifier": "removeLink",
47 | "description": "Remove a Link.",
48 | "icon": "icons/removeLink.png",
49 | "name": "Remove Link"
50 | },
51 | {
52 | "script": "script.js",
53 | "shortcut": "cmd option shift u",
54 | "handlers": {
55 | "run": "removeAllLinks"
56 | },
57 | "identifier": "removeAllLinks",
58 | "description": "Remove all Links from an Artboard or Page.",
59 | "icon": "icons/removeLink.png",
60 | "name": "Remove All Links"
61 | },
62 | {
63 | "script": "script.js",
64 | "shortcut": "",
65 | "name": "Relink Duplicated Artboards",
66 | "identifier": "relinkArtboardsAfterCopy",
67 | "description": "Relink artboards that were copied or moved to another page.",
68 | "icon": "icons/relinkArtboards.png",
69 | "handlers": {
70 | "run": "relinkArtboardsAfterCopy"
71 | }
72 | },
73 | {
74 | "script": "script.js",
75 | "shortcut": "cmd shift d",
76 | "handlers": {
77 | "run": "addCondition"
78 | },
79 | "identifier": "addCondition",
80 | "description": "Add or Edit a condition in the current flow.",
81 | "icon": "icons/editConditions.png",
82 | "name": "Add/Edit Conditions"
83 | },
84 | {
85 | "script": "script.js",
86 | "shortcut": "cmd shift f",
87 | "handlers": {
88 | "run": "generateFlow"
89 | },
90 | "identifier": "generateFlow",
91 | "description": "Generate a flow diagram starting from a specific artboard.",
92 | "icon": "icons/generateDiagram.png",
93 | "name": "Generate Flow Diagram"
94 | },
95 | {
96 | "script": "script.js",
97 | "shortcut": "ctrl shift f",
98 | "icon": "icons/generateDiagram.png",
99 | "identifier": "updateFlow",
100 | "description": "Update the selected User Flow artboard.",
101 | "name": "Update Flow Diagram",
102 | "handlers": {
103 | "run": "updateFlow"
104 | }
105 | },
106 | {
107 | "script": "script.js",
108 | "shortcut": "cmd shift 9",
109 | "handlers": {
110 | "run": "showConnections"
111 | },
112 | "identifier": "showConnections",
113 | "description": "Show or redraw connections between link layers and destination artboards.",
114 | "icon": "icons/redrawConnections.png",
115 | "name": "Show or Redraw Connections"
116 | },
117 | {
118 | "script": "script.js",
119 | "shortcut": "cmd shift 0",
120 | "handlers": {
121 | "run": "hideConnections"
122 | },
123 | "identifier": "hideConnections",
124 | "description": "Hide connections between link layers and destination artboards.",
125 | "icon": "icons/hideConnections.png",
126 | "name": "Hide Connections"
127 | },
128 | {
129 | "script": "script.js",
130 | "shortcut": "cmd shift .",
131 | "handlers": {
132 | "run": "gotoDestinationArtboard"
133 | },
134 | "identifier": "gotoDestinationArtboard",
135 | "description": "Go to the artboard linked to this layer.",
136 | "icon": "icons/gotoArtboard.png",
137 | "name": "Go to Linked Artboard"
138 | },
139 | {
140 | "script": "script.js",
141 | "shortcut": "cmd shift ,",
142 | "handlers": {
143 | "run": "goBackToLink"
144 | },
145 | "identifier": "goBackToLink",
146 | "description": "Navigate back to the link layer.",
147 | "icon": "icons/gotoLinkLayer.png",
148 | "name": "Go Back to Link Layer"
149 | },
150 | {
151 | "script": "script.js",
152 | "shortcut": "cmd shift b",
153 | "icon": "icon.png",
154 | "identifier": "editArtboardDescription",
155 | "description": "Edit the description of the selected Artboard.",
156 | "handlers": {
157 | "run": "editArtboardDescription"
158 | }
159 | },
160 | {
161 | "script": "script.js",
162 | "shortcut": "",
163 | "name": "Settings...",
164 | "identifier": "editSettings",
165 | "description": "Edit settings for User Flows.",
166 | "icon": "icon.png",
167 | "handlers": {
168 | "run": "editSettings"
169 | }
170 | },
171 | {
172 | "script": "script.js",
173 | "shortcut": "",
174 | "allowsShortcut": false,
175 | "name": "Keyboard Shortcuts...",
176 | "identifier": "editShortcuts",
177 | "description": "Edit keyboard shortcuts for User Flows.",
178 | "icon": "icon.png",
179 | "handlers": {
180 | "run": "editShortcuts"
181 | }
182 | },
183 | {
184 | "script": "script.js",
185 | "shortcut": "",
186 | "allowsShortcut": false,
187 | "name": "Language...",
188 | "identifier": "editLanguage",
189 | "description": "Language setting for User Flows.",
190 | "icon": "icon.png",
191 | "handlers": {
192 | "run": "editLanguage"
193 | }
194 | },
195 | {
196 | "script": "script.js",
197 | "shortcut": "",
198 | "allowsShortcut": false,
199 | "handlers": {
200 | "run": "checkForUpdates"
201 | },
202 | "identifier": "checkForUpdates",
203 | "name": "Check for Updates...",
204 | "icon": "icon.png"
205 | },
206 | {
207 | "script": "script.js",
208 | "handlers": {
209 | "actions": {
210 | "LayersMoved.finish": "onLayersMoved"
211 | }
212 | },
213 | "identifier": "actionHandler"
214 | }
215 | ],
216 | "appcast": "https://raw.githubusercontent.com/abynim/UserFlows/v2/appcast.xml",
217 | "homepage": "https://abynim.github.io/UserFlows",
218 | "identifier": "com.abynim.sketchplugins.userflows",
219 | "icon": "icon.png",
220 | "authorEmail": "abynimbalkar@gmail.com",
221 | "menu": {
222 | "items": [
223 | "defineLink",
224 | "defineLinkWithOptions",
225 | "editLinkOptions",
226 | "-",
227 | "relinkArtboardsAfterCopy",
228 | "-",
229 | "removeLink",
230 | "removeAllLinks",
231 | "-",
232 | "addCondition",
233 | "-",
234 | "generateFlow",
235 | "updateFlow",
236 | "-",
237 | "showConnections",
238 | "hideConnections",
239 | "-",
240 | "gotoDestinationArtboard",
241 | "goBackToLink",
242 | "-",
243 | "editSettings",
244 | "editShortcuts",
245 | "editLanguage"
246 | ]
247 | },
248 | "name": "User Flows",
249 | "compatibleVersion": "53"
250 | }
251 |
--------------------------------------------------------------------------------
/appcast.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | UserFlows
5 | https://abynim.github.io/UserFlows
6 | Generate flow diagrams from Artboards in Sketch
7 | en
8 | -
9 | UserFlows 2.3.9
10 |
11 |
13 | Sketch 81+ Compatibility.
14 |
15 | ]]>
16 |
17 |
18 |
19 | -
20 | UserFlows 2.3.7
21 |
22 |
24 | Sketch 71 Compatibility.
25 | Added option to not number artboards when generating a flow diagram.
26 |
27 | ]]>
28 |
29 |
30 |
31 | -
32 | UserFlows 2.3.6
33 |
34 |
36 | Sketch 67 Compatibility.
37 |
38 | ]]>
39 |
40 |
41 |
42 | -
43 | UserFlows 2.3.5
44 |
45 |
47 | Sketch 53.2 Compatibility.
48 |
49 | ]]>
50 |
51 |
52 |
53 | -
54 | UserFlows 2.3.4
55 |
56 |
58 | Sketch 53.1 Compatibility.
59 |
60 | ]]>
61 |
62 |
63 |
64 | -
65 | UserFlows 2.3.3
66 |
67 |
69 | Sketch 53 Compatibility.
70 | Updating a diagram no longer adds additional export options.
71 |
72 | ]]>
73 |
74 |
75 |
76 | -
77 | UserFlows 2.3.2
78 |
79 |
81 | Fixed an issue where `Update Flow` would delete the old artboard and create a new artboard.
82 | Updated missing items in localization files and added English backup localization errors.
83 |
84 | ]]>
85 |
86 |
87 |
88 | -
89 | UserFlows 2.3.1
90 |
91 |
93 | More Sketch 52 Compatibility fixes
94 |
95 | ]]>
96 |
97 |
98 |
99 | -
100 | UserFlows 2.3
101 |
102 |
104 | Sketch 52 Compatibility
105 | Minor bug fixes
106 |
107 | ]]>
108 |
109 |
110 |
111 | -
112 | UserFlows 2.2.1
113 |
114 |
116 | Use shared styles for link borders
117 | Minor bug fixes
118 |
119 | ]]>
120 |
121 |
122 |
123 | -
124 | UserFlows 2.2
125 |
126 |
128 | Apply Shared Layer Styles to Connection layers
129 |
130 | ]]>
131 |
132 |
133 |
134 | -
135 | UserFlows 2.1.4
136 |
137 |
139 | Leverage the new stroke arrows available in Sketch 51
140 | Use shared layer styles for connection lines
141 |
142 | ]]>
143 |
144 |
145 |
146 | -
147 | UserFlows 2.1.3
148 |
149 |
151 | Fixes for Sketch 50
152 |
153 | ]]>
154 |
155 |
156 |
157 | -
158 | UserFlows 2.1.2
159 |
160 |
162 | Added artboard magnets
163 | Fixed `newPageTitle` bug
164 | Simplified export options
165 |
166 | ]]>
167 |
168 |
169 |
170 | -
171 | UserFlows 2.1.1
172 |
173 |
175 | Added the ability to update an exported flow diagram.
176 |
177 | ]]>
178 |
179 |
180 |
181 | -
182 | UserFlows 2.1
183 |
184 |
186 | Include native Sketch Prototype flow connections in generated diagrams.
187 | Auto-redraw connections on layers moved (experimental)
188 |
189 | ]]>
190 |
191 |
192 |
193 | -
194 | UserFlows 2.0.8
195 |
196 |
198 | Fixes for Sketch 48.
199 | Changed `Create Link` shortcut from (Cmd Shift K) to (Cmd Shift M) to avoid clashing with a new native shortcut.
200 |
201 | ]]>
202 |
203 |
204 |
205 | -
206 | UserFlows 2.0.7
207 |
208 |
210 | Fixes for Sketch 47 and High Sierra.
211 | Added ability to remove all links from an Artboard or Page.
212 | Added option for generating flows at 1x but with retina images.
213 | Added option to customize the font size of Condition labels.
214 | Added support for Spanish (by @AlvYuste) and Italian (by @KingFelix)
215 |
216 | ]]>
217 |
218 |
219 |
220 | -
221 | UserFlows 2.0.6
222 |
223 |
225 | Minor bug fix for older documents
226 |
227 | ]]>
228 |
229 |
230 |
231 | -
232 | UserFlows 2.0.5
233 |
234 |
236 | Fixes for Sketch 45
237 |
238 | ]]>
239 |
240 |
241 |
242 |
243 |
244 |
--------------------------------------------------------------------------------
/user-flows-runner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abynim/UserFlows/7f8663c4e0effb8358a1a6a2441162c29544bf23/user-flows-runner.png
--------------------------------------------------------------------------------