-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdefault
3255 lines (3255 loc) · 145 KB
/
default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
" : Licensed to {0}" :: " : 已授权"
" : Unlicensed" :: " : 未授权"
" {0} {1}ms" :: " {0} {1} 毫秒"
" and " :: " 并且 "
" and " :: "与"
" bottom left" :: " 左下"
" bottom right" :: " 右下"
" bottom" :: " 底部"
" bring to front" :: "置于顶层"
" center" :: " 中心"
" clockwise" :: " 顺时针"
" Components" :: " 的母版"
" contains " :: " 包含 "
" counterclockwise" :: " 逆时针"
" does not contain " :: " 不包含 "
" does not equal " :: " != "
" enters " :: " 进入 "
" equal to " :: " = "
" equals " :: " == "
" from {0}" :: " 从 {0}"
" is alpha " :: " 是字母 "
" is alpha-numeric " :: " 是字母或数字 "
" is already in your available libraries. Your libraries are automatically updated and do not need to be reinstalled.\n\nIf you’d like to edit the library instead, click \"Edit Library\" below or \"File…Open\" in the Axure RP application." :: "已经添加到您的元件库列表中。您的元件库会自动更新,无需重新加载。\n\n如果您想编辑库,请单击下方的“编辑元件库”,或者通过 Axure RP 应用程序中的“文件-打开”进行编辑。"
" is checked in." :: " 已签入。"
" is checked out." :: " 已签出。"
" is greater than " :: " > "
" is greater than or equals " :: " >= "
" is less than " :: " < "
" is less than or equals " :: " <= "
" is not alpha-numeric " :: " 不是字母或数字 "
" is not numeric " :: " 不是数字 "
" is not one of " :: " 不是之一 "
" is not over " :: " 未接触 "
" is numeric " :: " 是数字 "
" is one of " :: " 是之一 "
" is over " :: " 接触 "
" leaves " :: " 离开 "
" left" :: " 左侧"
" library" :: " 元件库"
" or " :: " 或者 "
" properties" :: "属性"
" pull" :: " 拉动"
" push" :: " 推动"
" push/pull" :: " 推动和拉动"
" right" :: " 右侧"
" select text" :: " 选中文本"
" Style Effect" :: "交互样式"
" There are {1} days remaining in your trial." :: "\n您的试用期还剩余{1}天。"
" to " :: " 到 "
" to Back" :: " 到 底层"
" to check for updates or update at" :: "检查更新或访问后方网址进行更新:"
" to Front" :: " 到 顶层"
" top left" :: " 左上"
" top right" :: " 右上"
" top" :: " 顶部"
" widgets " :: " 元件 "
" will be added to your available libraries." :: "将被添加到您的可用元件库中。"
" wrap" :: " 循环"
", remove other filters" :: " 并移除其它筛选"
"; {0} to {1}" :: "; {0} 到 {1}"
":disabled" :: ":禁用"
":focused" :: ":获得焦点"
":hint" :: ":提示"
":mousedown" :: ":鼠标按下"
":mouseover" :: ":鼠标悬停"
":selected" :: ":选中"
"({0} Name)" :: "({0}名称)"
"(browser only)" :: "(仅在浏览器中有效)"
"(click to toggle {0})" :: "(点击切换{0})"
"(none)" :: "(无记录)"
"(Optional)" :: "(选填)"
"(Page Interactions)" :: "(页面交互)"
"(Page Note)" :: "(页面注释)"
"(Screenshot)" :: "(屏幕快照)"
"(Widget Table)" :: "(元件表)"
"{0} (default)" :: "{0}(默认)"
"{0} {1} {2}ms" :: "{0} {1} {2}毫秒"
"{0} {1}{2} {3}ms" :: "{0} {1}{2} {3}毫秒"
"{0} {1}{2}ms" :: "{0} {1}{2}毫秒"
"{0} {1}ms " :: "{0} {1}毫秒 "
"{0} {1}ms" :: "{0} {1}毫秒"
"{0} as {1} {2}" :: "{0} 按照 {1} {2}"
"{0} changed" :: "{0} 已更改"
"{0} for Marked" :: "{0} 于已标记的行"
"{0} for This" :: "{0} 于当前行"
"{0} image" :: "{0}图片"
"{0} in Parent Frame" :: "{0} 在父级框架"
"{0} is up to date." :: "{0} 已是最新版本。"
"{0} Set to " :: "{0} 设置为 "
"{0} style manager" :: "{0}样式管理"
"{0} to {1}" :: "{0} 到 {1}"
"{0} to \"{1}\"" :: "{0} 为 \"{1}\""
"{0} where \"{1}\"" :: "{0} 当符合规则“{1}”时"
"{0}{1} {2} {3}ms" :: "{0}{1} {2} {3}毫秒"
"{0}{1} {2}ms" :: "{0}{1} {2}毫秒"
"{0}{1}{2} {3}ms" :: "{0}{1}{2} {3}毫秒"
"{1} on {0}" :: "{0} 的 {1}"
"\n and " :: "\n 并且 "
"\n or " :: "\n 或者 "
"&About {0}..." :: "关于 {0}…"
"&Adaptive View Sets..." :: "自适应视图集…"
"&Add case" :: "添加用例"
"&Add Local Library" :: "添加本地元件库"
"&Add to Pages..." :: "添加到页面中…"
"&Add" :: "添加"
"&Arrange" :: "布局"
"&Backup Settings..." :: "备份设置…"
"&Branch" :: "分支"
"&Break Away" :: "从母版脱离"
"&Bring All to Front" :: "全部置于顶层"
"&Browse Libraries..." :: "浏览元件库…"
"&Browse Team Project History..." :: "浏览团队项目历史记录…"
"&Check for Updates..." :: "检查更新…"
"&Child Component" :: "子母版"
"&Child Page" :: "子页面"
"&Child Widget" :: "子元件"
"&Clear Condition" :: "清除条件"
"&Clear Recent Files" :: "清空最近打开的文件"
"&Close" :: "关闭"
"&Copy" :: "复制"
"&Create Component" :: "创建母版"
"&Create Guides..." :: "创建辅助线…"
"&Create Repeater" :: "创建中继器"
"&Create Team Project from Current File..." :: "从当前文件创建团队项目…"
"&Customize Main Toolbar..." :: "自定义主工具栏…"
"&Cut" :: "剪切"
"&Delete All Cases" :: "删除所有用例"
"&Delete All Guides" :: "删除所有辅助线"
"&Delete from All Views" :: "从所有视图中删除"
"&Delete Menu Item" :: "删除菜单项"
"&Delete Node" :: "删除节点"
"&Delete" :: "删除"
"&Distribute" :: "分布"
"&Duplicate" :: "创建副本"
"&Edit Library" :: "编辑元件库"
"&Edit Menu Padding" :: "编辑菜单边距"
"&Edit Number" :: "编辑序号"
"&Edit Tree Properties" :: "编辑树属性"
"&Edit" :: "编辑"
"&Export All Pages to Image..." :: "将所有页面导出为图片…"
"&Export All Widgets to Image..." :: "将所有元件导出为图片…"
"&File" :: "文件"
"&Find on Disk" :: "在磁盘中查找"
"&Find" :: "查找"
"&Flow" :: "流程图"
"&Folder" :: "文件夹"
"&Gallery Tab" :: "缩略图选项卡"
"&Generate HTML Files..." :: "生成 HTML 文件…"
"&Get All Changes from Team Directory" :: "从团队目录获取全部变更"
"&Get All Changes" :: "获取全部更新"
"&Get and Open Team Project{0}..." :: "获取并打开团队项目…"
"&Get Branch Changes" :: "获取分支变更"
"&Get Changes" :: "获取变更"
"&Get Libraries..." :: "获取元件库…"
"&Getting Started Tour..." :: "新手入门…"
"&Group" :: "组合"
"&Help" :: "帮助"
"&Hide {0}" :: "隐藏 {0}"
"&Import from RP File..." :: "从 RP 文件导入…"
"&Indent" :: "降级"
"&Keyboard Shortcuts..." :: "键盘快捷键…"
"&Lock Guides" :: "锁定辅助线"
"&Lock Location and Size" :: "锁定位置和大小"
"&Main Toolbar" :: "主工具栏"
"&Manage Accounts..." :: "管理账号…"
"&Manage License..." :: "管理授权…"
"&Manage Servers..." :: "管理服务器…"
"&Masks" :: "遮罩"
"&Minimize" :: "最小化"
"&More Generators and Configurations..." :: "更多生成器和配置…"
"&Move" :: "移动"
"&New" :: "新建"
"&Online Training..." :: "在线培训…"
"&Open in {0}" :: "打开{0}"
"&Open..." :: "打开…"
"&Order" :: "顺序"
"&Outdent" :: "升级"
"&Page Style Manager..." :: "页面样式管理器…"
"&Page" :: "页面"
"&Pages" :: "页面"
"&Panes" :: "面板"
"&Paste" :: "粘贴"
"&Place Anywhere" :: "放置在任意位置"
"&Preview" :: "预览"
"&Print All Widgets..." :: "打印所有元件…"
"&Print..." :: "打印…"
"&Project" :: "项目"
"&Prototyping Basics..." :: "原型设计基础…"
"&Proxy Settings..." :: "代理设置…"
"&Quit {0}" :: "退出 {0}"
"&Quit Axure RP" :: "退出 Axure RP"
"&Redo" :: "重做"
"&Reflow All Connectors" :: "重新摆放所有的连接符"
"&Regenerate Current Page to HTML" :: "重新生成当前页面的 HTML 文件"
"&Remove from Pages..." :: "从页面中移除…"
"&Remove Library" :: "移除元件库"
"&Rename" :: "重命名"
"&Renumber All Footnotes" :: "重新编号所有脚注"
"&Repoint Team Project..." :: "重新设定团队项目..."
"&Reset View" :: "重置视图"
"&Rulers, Grid, and Guides" :: "标尺、网格和辅助线"
"&Save" :: "保存"
"&Search Online Help..." :: "搜索在线帮助…"
"&Select All" :: "全选"
"&Send All Changes to Team Directory" :: "提交所有变更到团队目录"
"&Send All Changes" :: "提交所有更新"
"&Send Branch Changes" :: "提交分支变更"
"&Send Changes" :: "提交变更"
"&Show All" :: "全部显示"
"&Snap to Grid" :: "网格对齐"
"&Style Toolbar" :: "样式工具栏"
"&Team" :: "团队"
"&Thanks..." :: "致谢…"
"&Toolbars" :: "工具栏"
"&Undo All Check Outs" :: "撤销所有签出"
"&Undo Check Out Branch" :: "撤销签出分支"
"&Undo Check Out" :: "撤销签出"
"&Undo" :: "撤销"
"&Ungroup" :: "取消组合"
"&Unlock Location and Size" :: "取消锁定位置和大小"
"&Unplace from View" :: "从视图中隐藏"
"&Usage Report..." :: "使用报告…"
"&View" :: "视图"
"&Welcome Screen..." :: "欢迎屏幕…"
"&Widget Style Manager..." :: "元件样式管理器…"
"&Zoom" :: "缩放"
"# of Columns:" :: "列数:"
"# of Rows:" :: "行数:"
"+ Add Target" :: "+ 添加目标"
"+ Logic" :: "+ 添加条件"
"+Add boundary" :: "+添加边界"
"+Add event" :: "+添加事件"
"+Add" :: "+新增"
"+Logic" :: "+添加条件"
"100% Wide (browser only)" :: "100%宽度(仅限浏览器)"
"1200 Grid: 12 Column" :: "1200 像素网格:12 列"
"1200 Grid: 15 Column" :: "1200 像素网格:15 列"
"56x56 (hi-res for Mac retina displays)" :: "56x56 (Mac 视网膜显示器专用高清图标)"
"960 Grid: 12 Column" :: "960 像素网格:12 列"
"960 Grid: 16 Column" :: "960 像素网格:16 列"
"A key is released (after being pressed down) while the {0} has focus" :: "当焦点在{0}上并按下键盘上任意按键后松开时"
"A key is released (after being pressed down)" :: "键盘按键释放时(在被按下之后)"
"A repeater cannot contain another repeater." :: "中继器禁止包含其它中继器。"
"A repeater item's size is changed due to an interaction on a widget in the item" :: "中继器列表项的尺寸因列表项中某个元件上的交互而更改时"
"A workspace with this name already exists." :: "已存在同名工作空间。"
"A&ccount" :: "账号"
"Access code for shareable link" :: "用于分享链接的访问密码"
"Accessibility" :: "辅助功能"
"Accordion" :: "手风琴"
"ACCOUNT" :: "账号"
"Account" :: "账号"
"Action Description" :: "动作描述"
"Action" :: "动作"
"Actor" :: "角色"
"Adaptive view changed" :: "自适应视图改变时"
"Adaptive View Set" :: "自适应视图集"
"Adaptive View Sets" :: "自适应视图集"
"adaptive view" :: "自适应视图"
"Adaptive view" :: "自适应视图"
"ADAPTIVE VIEW" :: "自适应视图"
"Adaptive views" :: "自适应视图"
"Add {0} to:" :: "添加 {0} 到:"
"Add &Child" :: "添加子节点"
"Add &Image Folder" :: "添加图片文件夹"
"Add &Submenu" :: "添加子菜单"
"Add a style effect like MouseOver" :: "添加样式效果(如鼠标悬停)"
"Add account" :: "添加账号"
"Add action" :: "添加动作"
"ADD ACTION" :: "添加动作"
"Add Adaptive Views" :: "添加自适应视图"
"Add adaptive views" :: "添加自适应视图"
"Add all" :: "添加全部"
"Add and organize the list options.\nCheck an option to set it to be selected by default." :: "添加和组织列表选项。\n勾选一项作为默认项,未勾选则默认为第一项。"
"Add Bottom Connector" :: "新增底部连接器"
"Add boundary" :: "添加边界"
"Add case" :: "添加用例"
"Add Column Left" :: "左侧添加列"
"Add Column Right" :: "右侧添加列"
"Add Column" :: "添加列"
"Add common conditions" :: "添加常用条件"
"Add component views" :: "添加母版视图"
"Add component" :: "添加母版"
"Add condition" :: "添加条件"
"Add conditions to perform the cases automatically when the conditions are met" :: "添加条件,以便在满足条件时自动执行相应用例"
"Add conditions" :: "添加条件"
"Add configuration" :: "添加配置"
"Add event" :: "添加事件"
"ADD EVENT" :: "添加事件"
"Add events" :: "添加事件"
"Add filter" :: "添加筛选"
"Add folder" :: "添加文件夹"
"Add font" :: "添加字体"
"Add Frame Target" :: "添加框架目标"
"Add Interaction or Style Effect" :: "添加交互或样式效果"
"Add Interaction" :: "添加交互"
"Add Library" :: "添加元件库"
"Add Local Variable" :: "添加局部变量"
"Add Logic" :: "添加条件"
"Add Mapping" :: "添加映射"
"Add Menu Item &After" :: "在后方添加菜单项"
"Add Menu Item &Before" :: "在前方添加菜单项"
"Add mouseover effects, animate\ncarousels, validate forms and so much more." :: "添加鼠标悬停效果、轮播动画、验证表单等."
"Add new..." :: "新建…"
"add one?" :: "添加一个吗?"
"Add page interactions above\nor select a widget on the canvas\nto make the widget interactive" :: "在上方添加页面交互,或在画布上\n选择一个小部件,使其具有交互功能。"
"Add page" :: "添加页面"
"Add Reference Page" :: "添加引用页面"
"Add Right Connector" :: "新增右侧连接器"
"Add Row Above" :: "在上方添加行"
"Add Row Below" :: "在下方添加行"
"Add Row" :: "添加行"
"Add Rows to Repeater" :: "添加行到中继器"
"Add rows" :: "添加行"
"Add Sibling &After" :: "在下方添加节点"
"Add Sibling &Before" :: "在上方添加节点"
"Add sort" :: "添加排序"
"Add State" :: "添加状态"
"Add style effect" :: "添加样式效果"
"Add target" :: "添加目标"
"Add Targets" :: "添加目标"
"Add Variable" :: "添加变量"
"Add Variables" :: "添加变量"
"Add Widget Library" :: "添加元件库"
"Add Widget" :: "添加元件"
"Add" :: "添加"
"add" :: "添加"
"Additional text options" :: "附加文本选项"
"Address Book O" :: "通讯录-空"
"Address Book" :: "通讯录"
"Address Card O" :: "地址卡-空"
"Address Card" :: "地址卡"
"Adjust Color" :: "调整颜色"
"Adjust color" :: "调整颜色"
"Adjust" :: "调整"
"Affect All Views" :: "影响所有视图"
"Al&ign" :: "对齐"
"Align &Bottom" :: "底部对齐"
"Align &Center" :: "水平居中"
"Align &Left" :: "左对齐"
"Align &Middle" :: "垂直居中"
"Align &Right" :: "右对齐"
"Align &Top" :: "顶部对齐"
"Align bottom" :: "底部对齐"
"Align center ({0})" :: "水平居中({0})"
"Align Center ({0})" :: "水平居中({0})"
"Align center" :: "水平居中"
"Align Center" :: "水平居中"
"Align Checkbox Left" :: "复选框左对齐"
"Align Checkbox Right" :: "复选框右对齐"
"Align Justify" :: "两端对齐"
"Align Left ({0})" :: "左对齐({0})"
"Align left ({0})" :: "左对齐({0})"
"Align left" :: "左对齐"
"Align Left" :: "左对齐"
"Align middle" :: "垂直居中"
"Align Radio Button Left" :: "单选按钮左对齐"
"Align Radio Button Right" :: "单选按钮右对齐"
"Align Right ({0})" :: "右对齐({0})"
"Align right ({0})" :: "右对齐({0})"
"Align right" :: "右对齐"
"Align Right" :: "右对齐"
"Align top" :: "顶部对齐"
"Align" :: "对齐"
"ALIGNMENT" :: "对齐"
"Alignment" :: "对齐"
"All Fields" :: "全部字段"
"All libraries" :: "所有元件库"
"all rows" :: "全部行"
"All widgets below This" :: "在此下方的所有元件"
"All widgets to the right of This" :: "在此右侧的所有元件"
"All Widgets" :: "全部元件"
"All" :: "全部"
"Allow Comments" :: "允许评论"
"Allow multiple items to be selected by default" :: "默认允许选中多个项"
"Allow rows to break across pages" :: "允许跨页断行"
"Allow screenshots to split across pages (single column only)" :: "允许跨页分割屏幕快照(只用于单列)"
"alpha-numeric" :: "字母或数字"
"alpha" :: "字母"
"Already have an account?" :: "已有账号?"
"Also move library file to the Axure application's directory" :: "同时将元件库文件移动到 Axure 应用程序目录中"
"Alternate Colors" :: "交替颜色"
"Alternate" :: "交替"
"Always Scroll" :: "始终滚动"
"Always show case names" :: "始终显示用例名称"
"Always show locations in ruler" :: "始终在标尺中显示位置"
"Always Show Scrollbars" :: "始终显示滚动条"
"Ambulance" :: "救护车"
"American Sign Language Interpreting" :: "美语手语翻译"
"An error has caused Axure RP to shut down.Please email support@axure.com to troubleshoot. Let us know what you were doing when the error occurred, and send us the error log from this location:\r\n\r\n{0}\r\n\r\nTo continue working, re-launch Axure RP." :: "错误导致 Axure RP 关闭。请发送电子邮件至 support@axure.com 进行故障排除,并将错误日志发送给我们,让我们知道错误发生时您在做什么,错误日志的保存位置:\r\n\r\n{0}\r\n\r\n如果需要继续工作,请重新启动 Axure RP。"
"An error has occurred. Click “Submit” to send an error report to Axure. Providing an email address will give us an opportunity to request additional information. Please email support@axure.com if you need assistance." :: "发生了一个错误。点击“提交”按钮发送错误报告给 Axure 团队。留下您的电子邮箱地址,让我们有机会获取额外的信息。如果您需要帮助,请用发送电子邮件至“support@axure.com”。"
"anchor " :: "锚点 "
"anchor" :: "锚点"
"Anchor" :: "锚点"
"and" :: "并且"
"Android Tablet" :: "安卓平板"
"ANDROID" :: "安卓"
"Angle Double Down" :: "双角符-下"
"Angle Double Left" :: "双角符-左"
"Angle Double Right" :: "双角符-右"
"Angle Double Up" :: "双角符-上"
"Angle Down" :: "单角符-下"
"Angle Left" :: "单角符-左"
"Angle Right" :: "单角符-右"
"Angle Up" :: "单角符-上"
"Animate Hide" :: "隐藏动画"
"ANIMATE HIDE" :: "隐藏动画"
"Animate In" :: "进入动画"
"Animate Out" :: "退出动画"
"Animate Show" :: "显示动画"
"ANIMATE SHOW" :: "显示动画"
"Animate" :: "动画"
"ANIMATE" :: "动画"
"Any key is pressed down while the {0} has focus" :: "当焦点在 {0} 上并按下任意按键时"
"Any key is pressed down" :: "按下任意按键时"
"any" :: "任意"
"Appearance" :: "外观"
"APPLE" :: "苹果"
"Applied Actions" :: "执行动作"
"Applied Word Styles" :: "应用的 Word 样式"
"Apply all" :: "应用全部"
"Apply checked properties to selected Widgets" :: "将已选属性应用到选中的元件。"
"Apply default OnPageLoad and widget OnLoad cases" :: "使用默认的“OnPageLoad”和元件“OnLoad”用例"
"Apply mouse style effects on all widgets in group" :: "对组合中的所有元件应用鼠标样式"
"Apply mouse style effects on all widgets in panel" :: "对面板中的所有元件应用鼠标样式"
"Apply mouse style effects on all widgets in repeater item" :: "对中继器项目中的所有元件应用鼠标样式"
"Apply mouse style effects" :: "应用鼠标样式效果"
"Apply style" :: "应用样式"
"Apply to:" :: "应用于:"
"Apply" :: "应用"
"Arc clockwise" :: "顺时针旋转"
"Arc counterclockwise" :: "逆时针旋转"
"Archive" :: "存档"
"Are you sure you want to delete this adaptive view set?\nIt cannot be undone." :: "您确定要删除这个自适应视图集吗?\n此操作执行后无法撤销。"
"Are you sure you want to delete this category?\nIt cannot be undone." :: "您确定要删除这个类别吗?\n此操作执行后无法撤销。"
"Are you sure you want to delete this event?\nIt cannot be undone." :: "您确定要删除这个事件吗?\n此操作执行后无法撤销。"
"Are you sure you want to delete this field?\nIt cannot be undone." :: "您确定要删除这个字段吗?\n此操作执行后无法撤销。"
"Are you sure you want to delete this variable?\nIt cannot be undone." :: "您确定要删除这个变量吗?\n此操作执行后无法撤销。"
"Are you sure you want to undo these check outs?\nAll changes will be lost." :: "确认要撤销签出?所有的变更将丢失!"
"Area Chart" :: "面积图"
"area of " :: "范围于 "
"area of widget" :: "元件范围"
"Arrange in Front" :: "排在前面"
"Arrange" :: "布局"
"Arrow Circle Down" :: "箭头-圆形-上"
"Arrow Circle Left" :: "箭头-圆形-左"
"Arrow Circle O Down" :: "箭头-圆圈-下"
"Arrow Circle O Left" :: "箭头-圆圈-左"
"Arrow Circle O Right" :: "箭头-圆圈-右"
"Arrow Circle O Up" :: "箭头-圆圈-上"
"Arrow Circle Right" :: "箭头-圆形-右"
"Arrow Circle Up" :: "箭头-圆形-上"
"Arrow Down" :: "向下箭头"
"Arrow Left" :: "向左箭头"
"Arrow Right" :: "向右箭头"
"Arrow Style" :: "箭头样式"
"Arrow Up" :: "向上箭头"
"Arrows Alt" :: "放大箭头"
"Arrows H" :: "水平箭头"
"Arrows V" :: "垂直箭头"
"Arrows" :: "箭头"
"asc" :: "升序"
"Ascending" :: "升序"
"Asl Interpreting" :: "手语翻译"
"Assign Radio Group:" :: "指定单选按钮组"
"Assign Radio Group" :: "指定单选按钮的组"
"Assign Selection Group..." :: "指定选项组…"
"Assign Submit Button..." :: "指定提交按钮…"
"Assign Submit Button" :: "指定提交按钮"
"Assign widget" :: "指定元件"
"Assistive Listening Systems" :: "辅助听力系统"
"Asterisk" :: "星号"
"At least one variable must exist in the project." :: "项目中至少保留一个变量。"
"At" :: "艾特"
"Audio Description" :: "音频描述"
"Auto" :: "自动"
"auto" :: "自动"
"Automobile" :: "汽车"
"AutoSave date/time" :: "自动保存日期/时间"
"Axure Cloud accounts" :: "Axure Cloud 账号"
"Axure Cloud and license" :: "Axure Cloud 和授权"
"Axure Print Preview" :: "Axure 打印预览"
"Axure RP cannot open the file:\n\"{0}\"\n\nValid Axure RP files are: {1}, {2}, {3}, {4} and {5}." :: "Axure RP 不能打开:{0}\n有效的 Axure RP 文件包含: {1} | {2} | {3} | {4} | {5}。"
"Axure RP cannot open the file:\r\n\"{0}\"\r\n\r\nThis is most likely not a valid .rp file. The file may have been corrupted or encrypted.\r\n\r\nYou can try using the 'File -> Recover File from Backup...' feature on the computer where the file was last edited to retrieve an autosaved copy.\r\n\r\nIf you are sharing the file with others, the file may have been encrypted on another computer or shared drive. If that is the case, the person who saved that file will need to open it and save an unencrypted version. Or if the file was emailed, it may have been corrupted over email.\r\n\r\nContact support@axure.com if you have any questions." :: "Axure RP 无法打开文件:\r\n\"{0}\"\r\n\r\n这很可能不是有效的.rp文件。该文件可能已损坏或加密。\r\n\r\n可以尝试使用上次编辑该文件的计算机上的“文件”->“从备份中恢复文件…”功能来检索自动保存的副本。\r\n\r\n如果您与其他人共享该文件,则该文件可能已在其他计算机或共享驱动器上加密。如果是这种情况,则保存该文件的人需要打开该文件并保存未加密的版本。或者,如果该文件是通过电子邮件发送的,它可能已通过电子邮件损坏。\r\n\r\n如果您有任何问题,请联系 support@axure.com。"
"Axure RP cannot spell check for the current language settings." :: "Axure RP 无法对当前语言设置进行拼写检查。"
"Axure RP is activated with a license key." :: "Axure RP 已使用授权密钥激活。"
"Axure RP Needs to Close" :: "Axure RP 需要关闭"
"Axure RP update" :: "Axure RP 更新"
"Axure RP will verify your subscription. If Axure RP cannot connect to the internet, please click \"Shared activation\" to activate manually." :: "Axure RP 将验证您的订阅。如果 Axure RP 无法连接到互联网,请点击“共享激活”手动激活。"
"Axure terms" :: "Axure 条款"
"AxureHeading 1" :: "Axure 一级标题"
"AxureHeading 2" :: "Axure 二级标题"
"AxureHeading 3" :: "Axure 三级标题"
"AxureHeading 4" :: "Axure 四级标题"
"AxureHeading1" :: "Axure 一级标题"
"AxureHeading2" :: "Axure 二级标题"
"AxureHeading3" :: "Axure 三级标题"
"AxureHeading4" :: "Axure 四级标题"
"AxureHeadingBasic" :: "Axure 基本标题"
"AxureTableHeaderText" :: "Axure 表格标题文字"
"AxureTableNormalText" :: "Axure 表格常规文字"
"AxureTableStyle" :: "Axure 表格样式"
"B" :: "下"
"Back to previous page" :: "返回上一页"
"Back to RP" :: "返回 RP"
"Back" :: "置于底层"
"Backdrop blur" :: "背景模糊"
"Background Color" :: "背景颜色"
"Backup interval" :: "备份间隔"
"BACKUPS" :: "备份"
"Backups" :: "备份"
"Backward" :: "下移一层"
"Balance Scale" :: "天枰"
"Ban" :: "禁止"
"Bank" :: "银行"
"Bar Chart O" :: "条形图-空"
"Bar Chart" :: "条形图"
"Barcode" :: "条形码"
"Bars" :: "功能"
"Base" :: "基本"
"Baseline" :: "基线"
"Basic Shapes" :: "基本形状"
"Bath" :: "浴室"
"Bathtub" :: "浴缸"
"Battery 0" :: "电量-0格"
"Battery 1" :: "电量-1格"
"Battery 2" :: "电量-2格"
"Battery 3" :: "电量-3格"
"Battery 4" :: "电量-4格"
"Battery Empty" :: "电量-空"
"Battery Full" :: "电量-满"
"Battery Half" :: "电量-1/2"
"Battery Quarter" :: "电量-1/4"
"Battery Three Quarters" :: "电量-3/4"
"Battery" :: "电池"
"Bed" :: "床"
"Beer" :: "啤酒"
"Bell O" :: "铃声-空"
"Bell Slash O" :: "静音-空"
"Bell Slash" :: "静音"
"Bell" :: "铃声"
"Below" :: "下方"
"below" :: "下方"
"Beta version {0} expires in {1} days" :: "测试版本 {0} 将在 {1} 天后过期"
"Beta Version {0} has expired\nUpdate with Help > Check for Updates or at www.axure.com/beta" :: "测试版本 {0} 已过期\n请通过“帮助”-“检查更新”或访问“www.axure.com/beta”进行软件升级"
"Beveled rectangle" :: "斜角矩形"
"Bicycle" :: "自行车"
"Binoculars" :: "望远镜"
"Birthday Cake" :: "生日蛋糕"
"Bitcoin" :: "比特币"
"Blind" :: "盲人"
"Bluetooth B" :: "蓝牙"
"Bluetooth" :: "蓝牙-圆"
"Blur" :: "模糊"
"Bold ({0})" :: "粗体({0})"
"Bold" :: "粗体"
"Bolt" :: "闪电"
"Bomb" :: "炸弹"
"Book" :: "书"
"Bookmark O" :: "书签-空"
"Bookmark" :: "书签"
"Boolean" :: "布尔"
"Border color" :: "边框颜色"
"border options" :: "边框选项"
"Border options" :: "边框选项"
"Border Pattern" :: "边框样式"
"Border Thickness" :: "边框粗细"
"Border Visibility" :: "边框可见性"
"Border width" :: "边框宽度"
"Border:" :: "边框:"
"Border" :: "边框"
"BORDER" :: "边框"
"both vertically and horizontally" :: "纵向和横向"
"Both" :: "不限"
"bottom left" :: "左下角"
"Bottom Pad" :: "底部边距"
"bottom right" :: "右下角"
"Bottom, " :: "底部, "
"bottom" :: "底部"
"Bottom" :: "底部对齐"
"bounce" :: "弹跳"
"Bounce" :: "弹跳"
"Bounds" :: "边界"
"Box 1" :: "矩形 1"
"Box 2" :: "矩形 2"
"Box 3" :: "矩形 3"
"Box 4" :: "矩形 4"
"Bracket" :: "括号"
"Braille" :: "盲文"
"Brand" :: "商标"
"Break Apart" :: "分开"
"Break Away First State" :: "从首个状态脱离"
"Break Away" :: "脱离母版"
"Briefcase" :: "公文包"
"Brightness:" :: "亮度:"
"Bring &Forward" :: "上移一层"
"Bring <a>{0}</a> to Front " :: "将 <a>{0}</a> 置于顶层 "
"Bring <a>Widget</a> to Front/Back" :: "将<a>元件</a>置于顶层/底层"
"Bring to Fron&t" :: "置于顶层"
"Bring to Front" :: "置于顶层"
"Bring to front/back" :: "置于顶层/底层"
"Browse local images" :: "浏览本地图片"
"Browser" :: "浏览器"
"Btc" :: "比特币"
"Bug" :: "臭虫"
"Building O" :: "建筑-空"
"Building" :: "建筑"
"Built-In Word Styles" :: "Word 内置样式"
"Bulleted list" :: "项目符号列表"
"Bullhorn" :: "扩音器"
"Bullseye" :: "靶心"
"Bus" :: "公共汽车"
"Button group filled" :: "填充按钮组"
"Button group raised" :: "凸起按钮组"
"Button Group" :: "按钮组"
"Button" :: "按钮"
"BUTTON" :: "按钮"
"Buttons" :: "按钮"
"Buy now" :: "立即购买"
"by ({0},{1})" :: "经过({0},{1})"
"by {0} deg" :: "经过 {0}°"
"by {0}°" :: "经过 {0}°"
"By" :: "经过"
"C&heck Out {0}" :: "签出{0}"
"C&heck Out" :: "签出"
"Cab" :: "出租车"
"Calculator" :: "计算器"
"Calendar Check O" :: "日历-对号"
"Calendar Minus O" :: "日历-减号"
"Calendar O" :: "日历-空"
"Calendar Picker" :: "日历选择器"
"Calendar Plus O" :: "日历-加号"
"Calendar Times O" :: "日历-乘号"
"Calendar" :: "日历"
"Camera Retro" :: "老式相机"
"Camera" :: "照相机"
"Cancel" :: "取消"
"Canvas color" :: "画布颜色"
"Canvas" :: "画布"
"CANVAS" :: "画布"
"Car" :: "小汽车"
"Card" :: "卡片"
"Caret Down" :: "插入符-下"
"Caret Left" :: "插入符-左"
"Caret Right" :: "插入符-右"
"Caret Square O Down" :: "插入符-方形-下"
"Caret Square O Left" :: "插入符-方形-左"
"Caret Square O Right" :: "插入符-方形-右"
"Caret Square O Up" :: "插入符-方形-上"
"Caret Up" :: "插入符-上"
"Carousel" :: "轮播"
"Cart Arrow Down" :: "购物车-箭头-下"
"Cart Plus" :: "购物车-加号"
"CASE 1" :: "用例 1"
"CASE 2" :: "用例 2"
"Case behavior" :: "用例行为"
"Case name" :: "用例名称"
"Case" :: "用例"
"CC Amex" :: "支付-Amex"
"Cc Amex" :: "支付-Amex"
"CC Diners Club" :: "支付-Diners Club"
"Cc Diners Club" :: "支付-Diners Club"
"CC Discover" :: "支付-Discover"
"Cc Discover" :: "支付-Discover"
"Cc Jcb" :: "支付-Jcb"
"CC JCB" :: "支付-JCB"
"Cc JCB" :: "支付-JCB"
"Cc Mastercard" :: "支付-Mastercard"
"CC MasterCard" :: "支付-MasterCard"
"Cc MasterCard" :: "支付-MasterCard"
"CC PayPal" :: "支付-PayPal"
"Cc Paypal" :: "支付-Paypal"
"CC Stripe" :: "支付-Stripe"
"Cc Stripe" :: "支付-Stripe"
"CC Visa" :: "支付-Visa"
"Cc Visa" :: "支付-Visa"
"Cc" :: "闭合字幕"
"CC" :: "支付"
"center" :: "居中"
"Center" :: "水平居中"
"Certificate" :: "证书"
"Chain Broken" :: "链接-断开"
"Chain" :: "链接"
"Change account" :: "更换账号"
"Change key" :: "更改密钥"
"Change Notes:" :: "变更说明:"
"Character spacing" :: "字间距"
"Character" :: "字符"
"Chart" :: "图表"
"Check &In Branch" :: "签入分支"
"Check &In Everything" :: "签入全部"
"Check &In" :: "签入"
"Check &Out Branch" :: "签出分支"
"Check &Out Everything" :: "签出全部"
"Check &Out" :: "签出"
"Check Circle O" :: "对号-圆圈"
"Check Circle" :: "对号-圆形"
"Check for updates when Axure RP starts" :: "Axure RP 启动时检查更新"
"Check I&n {0}" :: "签入{0}"
"Check I&n" :: "签入"
"Check in notes:" :: "签入注释:"
"Check In" :: "签入"
"Check in" :: "签入"
"Check Out" :: "签出"
"Check Square O" :: "对号-方形-空"
"Check Square" :: "对号-方形"
"Check the button that is clicked when the Enter key is pressed." :: "按下回车键时将触发该按钮鼠标单击事件。"
"Check the events to raise in this action. <a>https://www.axure.com/support/reference/masters-raised-events||Help with Raised Events?</a>" :: "选择此操作中要触发的事件。 <a>https://www.axure.com/support/reference/masters-raised-events||查看引发事件的帮助信息</a>"
"Check the events to raise in this action" :: "选择事件触发的动作"
"Check the properties to override with this style." :: "检查属性并用如下样式替换。"
"Check to make location, size, and style changes affect all views" :: "选中后,位置、尺寸和样式更改将会影响所有视图。"
"Check" :: "对号"
"Checkbox" :: "复选框"
"checkbox" :: "复选框"
"Checkboxes" :: "复选框"
"Checked Change" :: "选中改变时"
"Checked In" :: "签入"
"Checked Out" :: "签出"
"Checking Connection" :: "正在检查连接…"
"Checking for updates" :: "正在检查更新…"
"Checking in" :: "正在签入"
"Checking out" :: "正在签出"
"Chevron Circle Down" :: "臂章-圆形-下"
"Chevron Circle Left" :: "臂章-圆形-左"
"Chevron Circle Right" :: "臂章-圆形-右"
"Chevron Circle Up" :: "臂章-圆形-上"
"Chevron Down" :: "臂章-下"
"Chevron Left" :: "臂章-左"
"Chevron Right" :: "臂章-右"
"Chevron Up" :: "臂章-上"
"Child" :: "儿童"
"Choose Existing Workspace" :: "选择现有工作区"
"Choose image" :: "选择图片"
"Choose style" :: "选择样式"
"Choose Team Project" :: "选择团队项目"
"Choose Variable" :: "选择变量"
"Chrome" :: "Chrome 浏览器"
"Circle marker" :: "圆形标记"
"Circle O Notch" :: "圆形-空-缺口"
"Circle O" :: "圆形-空"
"Circle Thin" :: "圆形-空-细边"
"Circle" :: "圆形"
"Classic menu - horizontal" :: "经典菜单 - 横向"
"Classic menu - vertical" :: "经典菜单 - 纵向"
"Classic tab" :: "传统标签"
"Classic table" :: "传统表格"
"Clear Reference Page" :: "清除引用页面"
"Clear Reference" :: "清除引用"
"Clear" :: "清除"
"Click a side to toggle border visibility" :: "点击侧边切换边框可见性"
"Click here" :: "点击这里"
"Click or tap" :: "点击或轻触"
"Click the 'Add font' button to add\nweb and CSS font definitions" :: "单击 “添加字体” 按钮以添加网页和 CSS 字体定义。"
"Click the 'Add mapping' button\nto add a new font mapping" :: "单击 “添加映射” 按钮以添加新的字体映射。"
"Click to check out and make changes." :: "点击签出并进行修改。"
"Click to combine and edit the different styles" :: "单击进行合并和编辑不同样式"
"Clicking the widget opens the reference page" :: "点击元件时打开引用页面"
"Clipboard" :: "剪贴板"
"Clock O" :: "时钟-空"
"Clockwise" :: "顺时针"
"clockwise" :: "顺时针"
"Clone" :: "克隆"
"Close (Publishing will continue in background)" :: "关闭(发布将继续在后台进行)"
"Close all tabs" :: "关闭所有标签"
"Close current window" :: "关闭当前窗口"
"Close other tabs" :: "关闭其它标签"
"Close path" :: "闭合路径"
"Close tab" :: "关闭标签"
"Close window" :: "关闭窗口"
"Close" :: "关闭"
"Cloud Download" :: "云下载"
"Cloud for business" :: "Cloud 企业版"
"Cloud location" :: "发布到的位置:"
"Cloud Upload" :: "云上传"
"Cloud" :: "云"
"Cny" :: "人民币"
"CNY" :: "人民币"
"Code Fork" :: "代码分支"
"Code" :: "代码"
"Coffee" :: "咖啡"
"Cog" :: "齿轮"
"Cogs" :: "齿轮组"
"Collapse <a>{0}</a>" :: "收起 <a>{0}</a>"
"Collapse all" :: "全部收起"
"Collapse" :: "收起"
"Collapse/expand all" :: "全部展开/收起"
"Collate" :: "整理"
"Color adjust" :: "颜色调整"
"Color picker" :: "颜色选择器"
"color space" :: "色彩空间"
"Color space" :: "色彩空间"
"Color: " :: "颜色:"
"Color" :: "颜色"
"Column filters" :: "列筛选"
"Column heading labels" :: "列标题"
"Column width:" :: "列宽:"
"Column" :: "列"
"Columns + Value" :: "列 + 值"
"Columns can be configured in the Layout section." :: "列能够在布局中配置。"
"Columns" :: "多栏"
"Combine" :: "合并"
"Comment O" :: "讨论-空"
"Comment" :: "讨论"
"Commenting O" :: "讨论中-空"
"Commenting" :: "讨论中"
"Comments disabled" :: "已禁用评论"
"Comments enabled" :: "已启用评论"
"Comments O" :: "讨论组-空"
"Comments" :: "讨论组"
"Common interactions" :: "常用交互"
"Common" :: "公用"
"Compass" :: "指南针"
"Completed" :: "完成"
"Component instance props" :: "母版实例属性"
"Component override" :: "母版覆盖"
"COMPONENT VIEW" :: "母版视图"
"COMPONENT VIEWS" :: "母版视图"
"Component views" :: "母版视图"
"Component" :: "母版"
"Components can be reused across\nyour project. Edit once and see your\nchanges everywhere.\n\n<a>https://docs.axure.com/axure-rp/reference/creating-and-using-masters||Learn more about components</a>" :: "母版是可以在项目中重复使用的。只需编辑\n一次,即可在任何地方查看所做的更改。\n\n<a>https://docs.axure.com/axure-rp/reference/creating-and-using-masters||了解关于母版的更多信息"
"Components" :: "母版"
"Compress" :: "收缩"
"Condensed View" :: "精简视图"
"Condition builder" :: "条件编辑器"
"Conditions" :: "情形"
"Configuration" :: "配置"
"Configure actions" :: "设置动作"
"Configure and create your new template below." :: "在下方配置并新建模板。"
"Configure" :: "配置"
"Congratulations!" :: "恭喜您!"
"Connect" :: "连线"
"Connector Mode" :: "连线模式"
"Connector Tool" :: "连线工具"
"Connector" :: "连线"
"Contact Support..." :: "联系支持…"
"Containers" :: "容器"
"contains" :: "包含"
"Content" :: "内容"
"Context menu (right click)" :: "上下文菜单(鼠标右键单击)"
"Continue to trial" :: "继续试用"
"Continue your free trial or subscribe to RP 11 now. Existing RP users with a license key must have a subscription to use RP 11." :: "继续您的免费试用或立即订阅 RP 11。已有许可证密钥的 RP 用户必须订阅才能使用 RP 11。"
"Continue" :: "继续"
"Contrast:" :: "对比度:"
"Convert SVG to Shapes" :: "将 SVG 转换为形状"
"Convert to Image" :: "转换为图片"
"Converting {0} ..." :: "正在转换 {0}…"
"Copy error" :: "复制错误信息"
"Copy formatting from {0}." :: "从 {0} 复制格式。"
"Copy formatting from selected Widgets" :: "从所选的元件复制格式"
"Copy Link" :: "复制链接"
"Copy page style properties" :: "复制页面样式属性"
"Copy system proxy settings" :: "复制系统代理设置"
"Copy" :: "复制"
"Copyright" :: "版权"
"Corner Radius" :: "圆角半径"
"Corner radius" :: "圆角半径"
"Corner Visibility" :: "圆角可见性"
"CORNER" :: "圆角"
"Could not find compatible system proxy settings.\nPlease make sure the proxy settings are enabled." :: "找不到兼容的系统代理设置。\n请确保已启用代理设置。"
"counterclockwise " :: "逆时针 "
"Counterclockwise" :: "逆时针"
"Create &Component" :: "创建母版"
"Create &Dynamic Panel" :: "创建动态面板"
"Create &Repeater" :: "创建中继器"
"Create a new account" :: "创建新账号"
"Create a password" :: "创建密码"
"Create a variety of pages for prototypes,\nflows and more." :: "为原型、流程等创建各种页面."
"Create account" :: "创建账号"
"Create an account" :: "注册账号"
"Create as Global Guides" :: "创建为全局辅助线"
"Create component" :: "创建母版"
"Create CSV Report" :: "创建 CSV 报告"
"Create Guides" :: "创建辅助线"
"Create local variables to insert widget values above. Variables names must be alphanumeric and contain no spaces." :: "在下方创建用于插入元件值的局部变量,局部变量名称必须是字母数字, 不允许包含空格。"
"Create New Adaptive View Set" :: "新建自适应视图集"
"Create New Style" :: "新建样式"
"Create New Template" :: "新建模板"
"Create new workspace" :: "创建新的工作区"
"Create on" :: "创建于"
"Create team project" :: "创建团队项目"
"Create variables to store data that persists from page to page in the browser. Recommend using 25 or less variables if viewing protoypes in Microsoft IE." :: "创建全局变量用于浏览器中页面切换时存储数据。如果在 IE 浏览器浏览原型,推荐使用 25 个或更少的变量。"
"Create your Axure account to start your\nfree trial." :: "创建您的 Axure 账号开始免费试用。"
"Create your Axure account" :: "创建您的 Axure 账号"
"Create" :: "创建"
"Creating realistic, functional prototypes is faster and easier than ever. Explore the Sample File or jump right in. You'll be creating rich, UX prototypes in no time!" :: "创建逼真、功能齐全的原型比以往任何时候都更快、更容易。探索示例文件或直接进入。您将在短时间内创建丰富的用户体验原型。"
"Creating realistic, functional prototypes is faster and easier than ever." :: "创建逼真、功能齐全的原型比以往任何时候都更快、更容易。"
"Creating Repository" :: "创建仓库"
"Creating Team Project" :: "创建团队项目"
"Creating Workspace" :: "创建工作空间"
"Creative Commons" :: "知识共享"
"Credit Card Alt" :: "信用卡-反色"
"Credit Card" :: "信用卡"
"Crop Image" :: "裁剪图片"
"Crop" :: "裁剪"
"Cropping image" :: "裁剪图片"
"Crosshairs" :: "准星"
"CSV Reports" :: "CSV 报告"
"Cu&t" :: "剪切"
"Cube" :: "立方体"
"Cubes" :: "立方体组"
"Curly bracket" :: "花括号"
"Currency" :: "货币"
"current adaptive view" :: "当前自适应视图"
"CURRENT ADAPTIVE VIEW" :: "当前自适应视图"
"Current Diagram" :: "当前图表"
"Current version: {0}" :: "当前版本:{0}"
"Current version:" :: "当前版本:"
"Current window" :: "当前窗口"
"Currently:" :: "当前:"
"cursor" :: "光标"
"Cursor" :: "光标"
"Curve All Points" :: "曲线连接各点"
"Curve" :: "曲线"
"Curved" :: "曲线"
"Custom Device" :: "自定义设备"
"Custom icon" :: "自定义图标"
"Custom Preview" :: "自定义预览"
"Custom shapes" :: "自定义形状"
"Customize Main Toolbar..." :: "定制主工具栏…"
"Customize page fields" :: "自定义页面字段"
"Customize Toolbar..." :: "自定义工具栏…"
"Customize widget fields" :: "自定义元件字段"
"Cut" :: "剪切"
"Cut/Copy/Paste" :: "剪切/复制/粘贴"
"Cutlery" :: "餐具"
"Dark mode" :: "深色模式"
"Dashboard" :: "仪表盘"
"DATA" :: "数据"
"Database" :: "数据库"
"Date" :: "日期"
"days" :: "天"
"De&lete Submenu" :: "删除子菜单"
"Deaf" :: "聋人"
"Deafness" :: "耳聋"
"Dedent" :: "取消缩进"
"Default Axure Styles" :: "Axure 默认样式"
"Default browser" :: "默认浏览器"
"Default Value" :: "默认值"
"Default" :: "Default"
"delay first change " :: "首次改变延时 "
"Delay first state change by {0} ms" :: "首个状态延时 {0} 毫秒后切换"
"Delay" :: "延迟"
"Delete Column" :: "删除列"
"Delete Columns" :: "删除列"
"Delete Font" :: "删除字体"
"Delete Mapping" :: "删除映射"
"Delete Row" :: "删除行"
"Delete rows" :: "删除行"
"Delete State" :: "删除状态"
"Delete" :: "删除"
"Deleting a view cannot be undone.\r\n\r\nWould you like to continue?" :: "删除视图将不能撤销。\r\n\r\n您想继续吗?"
"Deleting these pages and folders will delete all of their sub pages.\nAre you sure you want to delete all of these pages?" :: "删除这些页面和文件夹将会删除它们的子页面。是否删除?"
"Descending" :: "降序"
"Deselect children" :: "取消选择子项"
"Desktop" :: "桌面"
"Destination Directory Missing" :: "目标目录不存在"
"Diagram &Type" :: "图表类型"
"Diagram to Paper Size" :: "图表到纸张尺寸"
"Diagram Type" :: "图表类型"
"Diamond" :: "菱形"
"Dimensions:" :: "尺寸:"
"Direction" :: "方向"
"Directional" :: "方向"
"Disable <a>{0}</a>" :: "禁用 <a>{0}</a>"
"Disable action" :: "禁用动作"
"Disable case" :: "禁用条件"
"Disable event" :: "禁用事件"
"Disable" :: "禁用"
"Disabled Properties" :: "禁用的属性"
"Disabled Style" :: "禁用的样式"
"Disabled" :: "已禁用"
"Discuss on the Axure &Forums..." :: "在 Axure 论坛中讨论…"
"Display" :: "显示"
"Distribute &horizontally" :: "水平分布"
"Distribute &vertically" :: "垂直分布"
"Distribute horizontally" :: "水平分布"
"Distribute on &Grid" :: "网格分布"
"Distribute on grid" :: "网格分布"
"Distribute vertically" :: "垂直分布"
"DISTRIBUTE" :: "分布"
"Distribute" :: "分布"
"Do not apply background styles" :: "不应用背景样式"
"Do not import any" :: "全部无需导入"
"Do not import" :: "无需导入"
"Do not open" :: "不打开"
"Do not scale footnotes with screenshot" :: "脚注编号不随屏幕快照缩放"
"Do you want single key shortcuts enabled?" :: "您要启用单键快捷键吗?"
"Document" :: "文档"
"does not contain" :: "不包含"
"does not equal" :: "!="
"Dollar" :: "美元"
"Don't ask for name when converting to component" :: "转换为母版时不询问名称"
"Don't have an account?" :: "您还没有账号?"
"Don't Save" :: "不保存"
"Don't save" :: "不保存"
"Don't show again" :: "不再显示"
"Don't show this at startup." :: "启动时不再显示"
"Done" :: "完成"
"Dot Circle O" :: "点圆-空"
"Double arrow" :: "双向箭头"
"Double click or double tap" :: "鼠标双击或手指轻触"