forked from filerun/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chinese.php
2361 lines (2361 loc) · 133 KB
/
chinese.php
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
<?php return array (
'trans' =>
array (
'Login Page' =>
array (
'Username' => '用户名',
'Password' => '密码',
'Language' => '语言',
'Sign in' => '登录',
'Please login.' => '请登录',
'Please type a username.' => '请输入用户名',
'Invalid password.' => '错误的密码',
'Invalid username.' => '错误的用户名',
'Your account has been deactivated!' => '你的账户已被停用',
'Create account' => '注册',
'Forgot password?' => '忘记密码?',
'Signing in...' => '正在登录...',
'Your account access is limited to a particular IP address!' => '您的账户仅被允许从特定IP地址访问!',
'2-step verification: add account' => '两步验证:添加账户',
'Scan this barcode with the <a href="%1" target="_blank">Google Authenticator</a> app on your mobile device to add your account.' => '通过你手机上的<a href="%1" target="_blank">Google Authenticator</a> APP 扫描这个二维码来添加你的账户',
'Done' => '完成',
'Your account is configured for 2-step verification. You need to type in a verification code!' => '你的账户已经设置了两步验证,你需要输入一个验证代码',
'The provided verification code is not valid!' => '提供的验证代码不匹配',
'Your account is configured for 2-step verification. Click Ok to start the setup.' => '你的账户已经设置了两步验证,点击“OK”以启动安装',
'Type the following key code into your authentication app:' => '输入你的身份认证APP上显示的KEY代码:',
'Verification code' => '验证码',
'Please type a password.' => '请输入密码',
'Changing language...' => '更改语言',
'Loading...' => '正在加载...',
'There is an Android app that you can use to access your files more comfortably. Would you like to try that instead?' => '我们提供了一个安卓 APP使你可以更好的访问你的文件,你希望试一试吗?',
'Add a new <a href="%1" target="_blank">Google Authenticator</a> account with the following key:' => '使用以下密钥添加新的<a href="%1" target="_blank">Google身份验证器</a>帐户:',
'2-step: Add account' => '两步:添加帐户',
'Authentication should be made with the remote system.' => '应使用远程系统进行身份验证。',
),
'User Registration' =>
array (
'User Registration' => '用户注册',
'Username' => '用户名',
'E-mail address' => '电子邮箱地址',
'Password' => '新密码',
'Retype password' => '确认新密码',
'Name' => '姓名',
'Company' => '公司',
'Web site address' => '网站地址',
'Comment' => '评论',
'Submit' => '提交',
'Please type a username!' => '请输入用户名',
'Please avoid using special characters for the username!' => '用户名不能为特殊字符',
'Username already in use. Please choose another one.' => '用户名已存在,请选择其他用户名',
'Please type a password!' => '请输入密码',
'Please retype the password correctly!' => '请确认两次输入的密码相同',
'Please type your name!' => '请输入您的姓名',
'Please type your email address!' => '请输入电子邮箱地址',
'Please type the company name!' => '请输入公司名称',
'Please type your website address!' => '请输入网站地址',
'Please type the comment!' => '请输入评论内容',
'Failed to create user account!' => '用户创建失败',
'Your account has been successfully created.' => '用户创建成功',
'Login' => '登录',
'Your account information has been emailed to you!' => '账户信息已发送至您的电子邮箱',
'An e-mail message has been sent at "%1" with details on how to complete the registration process.' => '关于如何完成注册过程的详情,已发送至"%1"',
'E-mail address already registered. Please use the password recovery options if you forgot your password.' => '该电子邮件地址已被注册. 如果您忘记密码请使用密码恢复功能',
'Cancel' => '取消',
'Please make sure you are not a robot! :)' => '请正确的输入这两个字符串',
'Please type your last name!' => '请输入您的姓名',
'Loading...' => '正在加载...',
'Phone' => '电话',
'Please type the phone number' => '请输入电话号码',
),
'Password Reset' =>
array (
'The login information has been sent to your email address.' => '登录信息已发送到您的电子邮箱',
'Password Reset' => '密码重置',
'E-mail address' => '电子邮箱地址',
'Submit' => '提交',
'Please type the e-mail address.' => '请输入电子邮箱地址',
'The e-mail address was not found in the database.' => '未检索到该电子邮箱地址',
'Please check your inbox for information on how to reset your account\'s password.' => '关于如何找回密码,请检查您的收件箱',
'Please wait...' => '请等待',
'Sign in' => '登陆',
),
'Main Interface' =>
array (
'The file is already in the download cart' => '这个文件已经位于你的 等待下载 列表',
'Rating' => '评分',
'Please check your network connection.' => '请检查你的网络连接',
'<a href="%1">The data</a> recevied from the server contains errors.' => '<a href="%1">从收到的数据有错误</a>',
'Loading...' => '正在加载...',
'Sign out' => '注销',
'Control Panel' => '控制面板',
'Change password' => '修改密码',
'Preview' => '预览',
'No preview available for this type of files.' => '此类文件无可用预览',
'Comments' => '评论',
'Please select a file.' => '请选择一个文件。',
'Folder contains no image file' => '此目录内无图像文件',
'There are no files in this folder' => '此目录内无任何文件',
'This item contains changes' => '自您上次登陆,此文件被创建或修改',
'This file is locked by %1.' => '此文件被 %1 锁定.',
'This file has %1 comment(s).' => '此文件有 %1 条评论.',
'This file has a WebLink attached to it.' => '此文件有一个Web链接',
'Loading Preview...' => '正在加载预览...',
'Free space available:' => '剩余空间:',
'Delete "%1"?' => '删除 "%1"?',
'Internet Explorer is blocking the download?<br>Click <a href="%1" target="_blank">here</a> to download the file without reloading this page.' => '无法下载?<br>点击 <a href="%1" target="_blank">这里</a> 下载文件',
'Upload' => '上传',
'%1 used (%2%)' => '%1 已使用 (%2%)',
'Please type a file name:' => '请输入文件名',
'Creating blank file...' => '正在创建空白文件...',
'Sort' => '排序',
'Settings' => '设置',
'Select All' => '选择所有',
'View' => '查看',
'Tools' => '工具',
'List view' => '详细视图',
'Refresh' => '刷新',
'New File' => '新建文件',
'New tab' => '新标签',
'Space:' => '容量:',
'Search' => '搜索',
'File Search' => '文件搜索',
'Share' => '共享',
'Sharing' => '正在共享',
'New sub-folder' => '新建子目录',
'Rename' => '重命名',
'Remove' => '删除',
'Properties' => '属性',
'Download' => '下载',
'..in one zip file' => '..到一个压缩文件',
'Open with..' => '打开方式',
'E-mail Files' => 'E-mail 文件',
'Share with users' => '与其他用户共享',
'Get link' => '生成Web链接',
'Details and activity' => '通知',
'Upload, Delete, Rename, etc.' => '上传,删除,重命名等',
'Download, Preview, Copy, etc.' => '下载,预览,复制等',
'Versioning' => '版本',
'Previous Versions' => '上一版本',
'Lock' => '锁定',
'Unlock' => '解锁',
'File Versions' => '文件版本',
'Metadata' => '元数据',
'Comment' => '评论',
'Zip archive..' => '添加到压缩文件',
'Extract archive..' => '解压缩',
'Copy' => '复制',
'Loading file list...' => '加载文件列表...',
'Name' => '名称',
'Size' => '大小',
'Type' => '类型',
'Meta Type' => 'Meta类型',
'Modified' => '修改时间',
'Created' => '创建时间',
'Comments count' => '评论条数',
'Yes' => '是',
'No' => '否',
'Version' => '版本',
'Is new' => '新的',
'Locked by' => '被谁锁定:',
'Sort Ascending' => '升序排列',
'Sort Descending' => '降序排列',
'Columns' => '列',
'Reset Columns' => '重置列',
'%1 items' => '%1个项目',
'Opening popup window... <br>Click <a href="%1" target="_blank">here</a> if the browser prevents it from opening.' => '正在打开窗口... <br>如果打开窗口失败,请点击 <a href="%1" target="_blank">这里</a>',
'Moving files...' => '移动文件...',
'Moving folder...' => '移动目录...',
'Renaming file...' => '重命名文件...',
'Zipping files...' => '压缩文件...',
'Extracting archive contents...' => '解压缩文件...',
'Deleting...' => '删除文件...',
'Restoring file(s)...' => '恢复文件...',
'Locking file...' => '锁定文件...',
'Unlocking file...' => '解锁文件...',
'Renaming folder...' => '重命名目录...',
'Please wait while the selected files are being zipped...' => '正在所选文件,请稍候...',
'Please wait while the selected folder is being zipped...' => '正在所选目录,请稍候...',
'Selected Files.zip' => '所选文件.zip',
'Downloading zip file...' => '下载压缩文件...',
'Are you sure you want to delete the selected file(s)?' => '确定删除所选文件?',
'The selected folder and all its contents will be deleted.' => '确定删除所选目录及目录下所有内容?',
'Permanent deletion' => '永久删除',
'New Folder' => '创建新目录',
'Creating new folder...' => '创建新目录...',
'Please type a folder name for the archive contents:' => '为压缩文件输入目录名:',
'Extracted Files' => '解压缩文件',
'Deleted from' => '从何处删除',
'Trash' => '已删除文件',
'Restore' => '还原',
'Recent' => '最近',
'Shared by me' => '由我共享',
'There are no shared files or folders' => '没有共享的文件或文件夹',
'Files' => '文件',
'There are no recently accessed files' => '没有最近访问过的文件',
'Folder Activity' => '目录活动',
'Please type a name for the zip file:' => '输入压缩文件名称:',
'New Archive.zip' => '新建压缩文件Archive.zip',
'E-mail' => 'Email地址',
'Activity log' => '活动日志',
'Loading the file\'s activity log...' => '正在加载文件的变更日志',
'External Window' => '外部窗口',
'Folders' => '文件夹',
'Zip and download' => '压缩并下载',
'This type of archives is not supported by the current server configuration.' => '服务器不支持此类压缩包',
'With users' => '关联用户',
'One item' => '一个项目',
'One item selected' => '选中1个项目',
'More' => '更多',
'Confirm' => '确认',
'Details' => '详情',
'My Files' => '我的文件',
'Upload to "%1"' => '上传至 "%1"',
'Folder upload' => '上传目录',
'File upload' => '上传文件',
'Create new' => '创建新的',
'Add Files' => '添加文件',
'Add Folder' => '添加目录',
'Remove from queue' => '从队列中删除',
'Cancel' => '取消',
'Cancel all' => '取消所有',
'Skip file' => '跳过文件',
'Resume file' => '恢复文件',
'Pause all' => '暂停所有',
'File name' => '文件名',
'Uploaded' => '已上传',
'Progress' => '进度',
'Speed' => '速度',
'Time remaining' => '剩余时间',
'%1 files left' => '剩余 %1 个文件',
'%1 of %2' => '%2 中的 %1 项',
'[Skipped]' => '[已跳过]',
'Paused' => '已暂停',
'Uploading (Retry #%1)...' => '正在上传 (第 %1 次重试)',
'Paused (%1%)' => '已暂停 (%1%)',
'Waiting (100%)' => '等待完成 (100%)',
'Server error' => '服务器错误',
'A problem has been encountered!' => '出现了一些故障',
'Try again' => '再试一次',
'%1 hours' => '%1 小时',
'%1 minutes' => '%1 分',
'%1 seconds' => '%1 秒',
'You are not allowed to upload the file "%1"' => '你无权上传该文件: "%1"',
'There are no comments for this item' => '本项目暂无评论',
'Write a comment...' => '写一个评论',
'Contents' => '内容',
'Use the displayed header bar to sort by the desired field.' => '使用显示的标题栏按照所需字段排序',
'Drop files here' => '拖拽文件到这里上传',
'or use the "NEW" button' => '或者使用“创建/上传”按钮',
'Queued' => '已加入队列',
'Mute sound notifications' => '关闭通知',
'Notifications' => '通知',
'Add to cart' => '添加到 等待下载 列表',
'Download cart' => '批量下载',
'Label' => '标签',
'No label' => '无标签',
'Custom label' => '自定义标签',
'New label' => '新标签',
'Page' => '页',
'of {0}' => '第 {0}',
'First Page' => '首页',
'Last Page' => '尾页',
'Next Page' => '下一页',
'Previous Page' => '上一页',
'Uploading pasted image...' => '正在上传粘贴的图像...',
'Pasted image' => '粘贴的图像',
'Pasted image successfully uploaded' => '图片粘贴上传成功',
'Are you sure you want to remove the comment?' => '你确定要删除评论吗?',
'%1 of %2 results' => '%1 of %2 结果',
'%1 results' => '%1 个结果',
'Show more...' => '显示更多...',
'Star' => '收藏',
'Starred' => '收藏夹',
'Remove star' => '取消收藏',
'There are no starred files or folders' => '没有已收藏的文件或文件夹',
'There are no shared links' => '没有已创建的共享链接',
'Folder' => '创建目录',
'File' => '创建文件',
'More options' => '更多选项',
'Location' => '本地的',
'Please wait as loading the file might take a while...' => '请耐心等待,载入此文件可能需要一些时间...',
'New' => '创建/上传',
'Shared links' => '共享链接',
'Locate' => '定位',
'Next' => '继续',
'Previous' => '返回',
'Close' => '关闭',
'Zoom' => '放大',
'%1/%2' => '%1/%2
',
'First page' => '第一页',
'Page %1' => '页 %1',
'You are required to change your password.' => '你需要更改你的密码',
'No file was found matching your search criteria.' => '没有找到符合您搜索条件的文件',
'To upload files, drag them from your computer' => '要上传文件,请将其从资源管理器中拖出',
'Account settings' => '帐号设定',
'Download all' => '下载全部文件',
'Use "Page Down" and "Page Up" to change the page' => '使用 "Page Down" 和 "Page Up" 来改变页',
'Empty trash' => '清空已删除文件',
'Emptying trash...' => '正在清空...',
'Empty trash?' => '确定要清空?',
'All files and folders in your trash are about to be permanently deleted.' => '垃圾桶中的所有文件和文件夹将被永久删除',
'An error occurred while trying to process the request.' => '尝试处理请求时发生错误',
'Resume' => '恢复',
'Delete folder?' => '是否确认删除文件夹?',
'Please enter a new name for the item:' => '请为该项目取一个新名称:
',
'Are you sure you want to move the folder?' => '你确定要移动文件夹吗?',
'Move folder?' => '是否确认移动文件夹?',
'Web link' => '共享链接',
'Please type the %1label\'s text%2' => '请输入 %1label\'s text%2',
'Date Format: Files' => 'm/d/Y h:i A',
'Tags' => '标签',
'Failed to load file list.' => '载入文件列表失败',
'You need a modern browser in order to use this feature.' => '您需要一个现代浏览器才能使用此功能',
'Please select a PNG or JPG image file.' => '请选择一个 PNG 或者 JPG 格式的图像文件',
'File request' => '创建文件提交页面',
'What are you requesting?' => '你想要什么?',
'Photos, Documents, Contracts...' => '照片,文件,文档...',
'Shared with' => '共享',
'Search options' => '搜索选项',
'Create new folder' => '创建新目录',
'This field is required' => '这是必填项',
'Photos' => '照片',
'Uploading...' => '上传中...',
'Help' => '帮助',
'Date deleted' => '删除日期',
'Search in' => '搜索',
'Index files' => '文件索引',
'Display mode' => '显示模式',
'Detailed list' => '详细列表',
'Thumbnails' => '缩略图',
'Last taken' => '最近拍摄的',
'By date' => '按 日期 分组',
'By tag' => '按 标签 分组',
'Music' => '音乐',
'Last added' => '最近添加的',
'By artist' => '按 艺术家 分组',
'By album' => '按 专辑 分组',
'Random' => '随机',
'Failed to load audio file.' => '加载音频文件失败',
'There are no photos in here' => '没有照片',
'There are no audio files in here' => '没有音频文件',
'There is one other item' => '还有一个项目',
'There are %1 other items' => '有%1个其他项目',
'Show all items' => '显示所有项目',
'Show the item' => '显示项目',
'Scan files for changes' => '扫描文件所进行的更改',
'This folder is empty' => '这个文件夹是空白的',
'Tag files' => '标记文件',
'Please select at least a file or a folder!' => '请至少选择一个文件或文件夹!',
'Please add at least one tag!' => '请添加至少一个标签!',
'Add tags...' => '添加标签...',
'Tag selected' => '已选择标记',
),
'General' =>
array (
'One file successfully copied.' => '文件成功复制',
'Folder successfully moved.' => '文件夹移动成功',
'One minute ago' => '大于1分钟',
'One minute' => '1分钟',
'Under one minute' => '小于1分钟',
'just now' => '刚才',
'Folder successfully copied.' => '文件夹复制成功',
'Copying...' => '正在...',
'Submit' => '提交',
'Save' => '保存',
'Cancel' => '取消',
'Error' => '错误',
'Invalid path.' => '非法路径.',
'File not found!' => '文件不存在!',
'You are not allowed to preview the selected file.' => '您无权预览选定文件.',
'%1 users' => '%1 用户',
'You are not allowed to download the requested file!' => '您无权下载该文件!',
'The file you are trying to download is no longer available!' => '您试图下载的文件已失效!',
'You are not allowed to download or preview files.' => '您无权下载或预览文件.',
'Invalid folder.' => '非法目录.',
'You are not allowed to copy that shared file.' => '您无权复制该共享文件.',
'You are not allowed to copy files to the specified target.' => '您无权复制文件至指定目标.',
'No file was copied!' => '文件复制失败',
'One file copied.' => '1个文件被复制完毕.',
'%1 files copied.' => '%1个文件被复制完毕.',
'No more file space available.' => '磁盘空间不足.',
'You are not allowed to delete files from this shared folder.' => '您无权从此共享目录删除文件.',
'No files were deleted!' => '没有文件被删除!',
'One file deleted.' => '1个文件被成功删除.',
'%1 files successfully deleted.' => '%1个文件被成功删除.',
'You are not allowed to move that shared file.' => '您无权移动该共享文件.',
'You are not allowed to move files to the specified target.' => '您无权移动文件至指定目标.',
'You are not allowed to move these shared files to your own folder.' => '您无权移动此共享文件到您的目录.',
'No file was moved!' => '没有文件被移动!',
'One file moved.' => '1个文件被移动.',
'%1 files moved.' => '%1个文件被移动.',
'Invalid target path, file already exists.' => '目标路径非法, 文件已存在.',
'The selected file is currently locked by another user.' => '文件被其他人锁定.',
'Invalid path, not a file.' => '非法路径, 不是一个文件.',
'Invalid path, not a folder.' => '非法路径, 不是一个目录.',
'Invalid source path, not a folder.' => '非法源路径, 不是一个目录.',
'Invalid target path, not a folder.' => '非法目标路径, 不是一个目录.',
'Invalid source path, not a file.' => '非法源路径, 不是一个文件.',
'You are not allowed to rename files in this shared folder.' => '您无权重命名此共享目录下的文件.',
'File successfully renamed.' => '文件重命名成功.',
'There is already a file or a folder with the same name!' => '此目录已存在同名文件!',
'Failed to rename file!' => '重命名文件失败!',
'You are not allowed to extract archives in this shared folder.' => '您无权在此共享目录内解压文件.',
'You are not allowed to zip files in this shared folder.' => '您无权在此共享目录内压缩文件.',
'Invalid folder name!' => '非法目录名!',
'Invalid file name' => '非法文件名',
'A folder with that name already exists!' => '已存在同名目录!',
'Unzipped Files' => '解压缩文件',
'The archive was successfully extracted.' => '文档成功解压.',
'Invalid zip name!' => '压缩文件名非法!',
'A file with that name already exists!' => '已存在同名文件!',
'Zip archive successfully created.' => '成功创建压缩文档.',
'You are not allowed to delete that shared folder.' => '您无权删除该共享目录.',
'You cannot delete the root of a shared folder.' => '不能删除共享根目录.',
'Folder deleted.' => '目录删除成功.',
'Failed to delete folder!' => '目录删除失败!',
'You are not allowed to move that shared folder.' => '您无权移动该共享目录.',
'You are not allowed to copy that shared folder.' => '您无权复制该共享目录.',
'You are not allowed to copy folder to the specified target.' => '您无权复制目录至指定目标.',
'You are not allowed to move the folder to the shared location.' => '您无权移动目录至共享位置.',
'You are not allowed to move this shared folder to your own folder.' => '您无权移动该共享目录到您的目录.',
'Folder moved.' => '目录移动成功.',
'Failed to move folder!' => '目录移动失败!',
'Failed to rename folder!' => '文件夹重命名失败',
'There is already a folder with the same name in this folder!' => '此目录下已存在同名目录!',
'Folder successfully created.' => '目录创建成功.',
'Failed to create folder!' => '目录创建失败!',
'Failed to upload file "%1": %2' => '上传文件失败 "%1": %2',
'You are not allowed to upload to this shared folder.' => '您无权上传至此共享目录.',
'No more file space available!' => '磁盘空间不足!',
'File uploaded.' => '文件上传成功.',
'The previous version is available from the versioning menu.' => '上一可用版本.',
'Failed to upload file.' => '文件上传失败.',
'Please specify a file for upload.' => '请指定上传文件.',
'The monthly traffic limit has been reached!' => '已达到月流量限制!',
'Click <a href="%1">here</a> to go back.' => '点击 <a href="%1">这里</a> 返回.',
'A file named "%1" already exists!' => '已存在同名文件 "%1" !',
'The path of your home folder doesn\'t point to an existing folder. Please contact the site administrator.' => '您的个人工作目录不存在, 请联系系统管理员.',
'Failed to move file %1' => '无法移动文件 %1',
'The file size exceeds the destination folder quota.' => '文件大小超过目标文件夹配额。',
'Zip Archive.zip' => '压缩为archive.zip',
'The shared folder is no longer available.' => '共享文件夹不再可用。',
'You are not allowed to modify files in this shared folder.' => '您无权修改此共享目录内的文件',
'You are not allowed to upload files in this folder.' => '您无权在此目录上传文件',
'Please type a name for the file!' => '请为此文件输入文件名',
'Please type a name for the folder!' => '请输入文件夹的名称',
'You are not allowed to create folders under this shared folder.' => '您无权在此目录创建文件夹',
'%1 minutes' => '%1分钟',
'%1 minutes ago' => '%1分钟之前',
'One hour' => '1小时',
'One hour ago' => '1小时之前',
'%1 hours' => '%1小时',
'%1 hours ago' => '%1小时之前',
'One day' => '1天',
'One day ago' => '1天之前',
'Yesterday' => '昨天',
'%1 days' => '%1天',
'%1 days ago' => '%1天之前',
'One week' => '1周',
'One week ago' => '1周之前',
'%1 weeks' => '%1周',
'%1 weeks ago' => '%1周之前',
'One month' => '1个月',
'One month ago' => '1个月之前',
'%1 months' => '%1个月',
'%1 months ago' => '%1个月之前',
'One year' => '1年',
'One year ago' => '1年之前',
'%1 years' => '%1年',
'%1 years ago' => '%1年之前',
'You are not allowed to rename folders!' => '您不能重命名文件夹',
'You are not allowed to create folders!' => '你不能创建文件夹',
'One file moved to trash.' => '移动文件到垃圾箱',
'%1 files successfully moved to trash.' => '%1 个文件已成功移至垃圾箱',
'One folder moved to trash.' => '移动文件夹到垃圾箱',
'%1 files and folders successfully deleted.' => '%1 个文件和文件夹已成功删除',
'%1 files and folders successfully moved to trash.' => '%1 个文件和文件夹已成功移至垃圾箱',
'Invalid folder name' => '文件夹名称无效',
'Folder successfully renamed.' => '文件夹重命名成功',
'One folder successfully copied.' => '文件夹成功复制',
'One folder successfully moved.' => '文件夹成功移动',
'File successfully copied.' => '文件成功复制',
'File successfully moved.' => '文件成功移动',
'%1 files and folders successfully copied.' => '已成功复制%1 个文件和文件夹',
'%1 files and folders successfully moved.' => '%1 个文件和文件夹已成功移动',
'%1 folders successfully copied.' => '%1 个文件夹已成功复制',
'%1 folders successfully moved.' => '%1 个文件夹已成功移动',
'You cannot copy a deleted file.' => '您不能复制已删除的文件',
'You cannot move a deleted file.' => '您无法移动已删除的文件',
'The folder cannot be copied under itself!' => '该文件夹不能被复制在原文件夹中',
'The folder cannot be moved under itself!' => '该文件夹不能被移动到原文件夹中',
'The specified target location is the same!' => '指定的目标位置是相同的',
'One file successfully moved.' => '文件成功移动',
'%1 files successfully copied.' => '%1 个文件已成功复制',
'%1 files successfully moved.' => '%1 个文件已成功移动',
'You are not allowed to zip folders' => '你不能压缩文件夹',
'You are no longer logged in.' => '您没有登录',
'This application requires authentication.' => '此应用程序需要验证',
'Your user account does not have permission to perform the requested operation!' => '您的用户帐户无权这样做',
'You are not allowed to move this shared item.' => '您不能移动这个共享项目',
'You are not allowed to rename this shared item.' => '你不能重命名这个共享项目',
'You are not allowed to delete this shared item.' => '您不能删除此共享项目',
'The destination folder no longer exists!' => '目标文件夹不再存在!',
'The selected file or folder no longer exists!' => '所选文件或文件夹不再存在!',
'Please type a new folder name!' => '请输入新的文件夹名称!',
'Please type a new file name!' => '请输入新的文件名称!',
),
'DateTime' =>
array (
'This month' => '本月',
'January' => '一月',
'February' => '二月',
'March' => '三月',
'April' => '四月',
'May' => '五月',
'June' => '六月',
'July' => '七月',
'August' => '八月',
'September' => '九月',
'October' => '十月',
'November' => '十一月',
'December' => '十二月',
'Sunday' => '星期日',
'Monday' => '星期一',
'Tuesday' => '星期二',
'Wednesday' => '星期三',
'Thursday' => '星期四',
'Friday' => '星期五',
'Saturday' => '星期六',
'Today' => '今天',
'This date is before the minimum date' => '此日期早于最早许可日期',
'This date is after the maximum date' => '此日期晚于最晚许可日期',
'Next Month (Control+Right)' => '下月(Control+右方向键)',
'Previous Month (Control+Left)' => '前月(Control+左方向键)',
'Choose a month (Control+Up/Down to move years)' => '选择月份(Control+上/下方向键来改变年份)',
'{0} (Spacebar)' => '{0} (空格键)',
'Cancel' => '取消',
'Jan' => '一月',
'Feb' => '二月',
'Mar' => '三月',
'Apr' => '四月',
'Jun' => '六月',
'Jul' => '七月',
'Aug' => '八月',
'Sep' => '九月',
'Oct' => '十月',
'Nov' => '十一月',
'Dec' => '十二月',
),
'Trash' =>
array (
'A file or folder already exists at the original location.' => '已存在该恢复路径.',
'One item permanently deleted.' => '1 个项目被永久删除',
'No items were restored!' => '没有项目被恢复!',
'One item restored.' => '1 个项目被恢复',
'%1 items successfully restored.' => '%1 个项目被恢复',
'Trash emptied' => '清空回收站',
'Failed to empty trash' => '清空回收站失败',
'%1 items permanently deleted.' => '%1 个项目被永久删除',
),
'Account Settings' =>
array (
'Current password' => '当前密码',
'New password' => '新密码',
'Confirm new password' => '确认新密码',
'Save changes' => '保存',
'Cancel' => '取消',
'Please type the current password correctly.' => '请正确输入当前密码.',
'The password needs at least one character.' => '密码需要包含至少1个字符',
'Please do not use question marks (?) for the new password.' => '新密码请勿使用问号(?).',
'Please retype the new password correctly.' => '请正确输入确认密码.',
'The new password is the same as the current one.' => '新密码与旧密码相同.',
'Please type your name' => '请输入你的用户名',
'Please type your e-mail address' => '请输入你的 E-mail 地址',
'Basic details' => '基础信息',
'The password needs at least %1 more characters.' => '密码需要包含至少%1个字符',
'The password needs at least one uppercase letter.' => '密码需要包含至少1个大写字母',
'The password needs at least one special character.' => '密码需要包含至少1个特殊字符',
'The password needs at to contain at least one letter.' => '密码需要包含至少1个字母',
'The password needs at to contain at least one digit.' => '密码需要包含至少1个数字',
'The password cannot contain the "%1" sequence.' => '密码不能包含"%1"数列',
'The password cannot contain the "%1" part.' => '密码不能包含"%1"部分',
'Access revoked for %1 apps' => '已取消%1应用的访问权限',
'The changes has been successfully saved' => '修改已经成功保存',
'Failed to save the changes!' => '修改保存失败',
'No changes made' => '没有进行任何修改',
'Change password' => '修改密码',
'Your password has been last changed %1' => '在%1您修改过密码',
'2-Step verification' => '两步验证',
'Enable 2-step verification' => '启用两步验证',
'Every time you login you will need to type in also a temporary code which can be generated on your mobile device with a dedicated app such as Google Authenticator.' => '每次登录时,您都需要输入一个临时代码,这个代码可以通过Google Authenticator等专用应用程序在您的移动设备上生成',
'Name' => '姓名',
'E-mail address' => 'E-mail 地址',
'E-mail notifications' => 'E-mail 通知',
'Mute sound notifications' => '声音提示静音',
'Connected apps' => '已连接的apps',
'Revoke access' => '取消访问授权',
'Granted on %1 from %2' => '从 %2 授予 %1',
'Profile image successfully updated' => '头像上传成功',
'Failed to upload image file: %1' => '上传图像文件%1失败',
'Profile image' => '头像',
'Phone' => '电话',
),
'File Upload' =>
array (
'File uploaded' => '文件上传成功',
'Failed to upload file' => '文件上传失败',
'Failed to create folder' => '文件夹创建失败',
'Failed to upload file "%1": %2' => '文件 "%1": %2 上传失败',
'The monthly traffic limit has been reached!' => '已经到达每月流量限额!',
'No more file space available!' => '没有更多的可用空间了!',
'A file named "%1" already exists!' => '已经存在一个名为 "%1" 的文件!',
'The file needs to be uploaded from the beginning.' => '这个文件需要重新开始上传',
'Failed to transfer data. Make sure you are not trying to upload an empty folder.' => '转移数据失败,请确保你没有在尝试上传一个空文件夹',
'You are not allowed to upload to this shared folder.' => '你无权上传文件到这个共享文件夹',
'Failed to upload file part' => '上传文件分片失败',
'Failed to upload file. Please try again.' => '文件上传失败,请再试一次',
),
'E-mail Files' =>
array (
'Done' => '完成',
'Please fill in "From" field!' => '请填写发件人!',
'Please set at least one recipient!' => '请填写收件人!',
'Please type a subject!' => '请输入标题!',
'Please type a message!' => '请输入内容!',
'Email successfuly sent!' => 'Email发送成功!',
'Failed to send email!' => 'Email发送失败!',
'From' => '发件人',
'To' => '收件人',
'Separate recipients by ,' => '多个收件人用 , 分隔',
'Select Users' => '选择用户',
'Cancel' => '取消',
'Subject' => '标题',
'Message' => '内容',
'Attachments' => '附件',
'Send WebLinks instead of attaching the files.' => '创建附件链接,而不发送真实附件.',
'Web link to' => '链接至',
'Send' => '发送',
'Please make the appropriate <br>changes to the highlighted fields.' => '高亮区域请做适当修改.',
'Sending e-mail...' => '正在发送,请稍候...',
'No recipient addresses found!' => '未发现收件人!',
'You are not allowed to share the file "%1"!' => '您无权从该目录发送文件!',
'Optional: include a personal message...' => '可选:包含个人信息......',
'Web Link Options' => '分享链接选项',
'The message was not sent to any of the recipients' => '该消息没有发送到任何人。',
'The message has been sent to one recipient' => '该消息已经被发送给1个收件人。',
'The message has been sent to %1 recipients' => '该消息已经被发送给1%个收件人。',
'Errors: %1' => '错误: %1',
'Overwrite existing link settings.' => '覆盖现有的链接设置',
'You are not allowed to share the folder "%1"!' => '你没有分享 "%1" 文件夹的权限!',
'You are not allowed to create links! You can send files only as attachments.' => '你没有创建链接的权限!你只能通过附件发送文件。',
'%1 sent you a file' => '%1 向你发送了 1 个文件',
'%1 sent you %2 files' => '%1 向你发送了 %2 个文件',
'Please wait' => '请稍等',
),
'Share Files' =>
array (
'Add guest user' => '添加访客用户',
'Next' => '下一个',
'Upload' => '上传',
'Download' => '下载',
'Add comments' => '添加评论',
'Read comments' => '读取评论',
'Make changes' => '做出改变',
'Share anonymously' => '匿名共享',
'Share with' => '共享',
'Select Users' => '选择用户',
'Cancel' => '取消',
'Unsorted, %1 users' => '不排序, %1用户',
'Permissions' => '权限',
'Options' => '选项',
'Add Users' => '添加用户',
'Remove' => '移除',
'Save' => '保存',
'Loading data...' => '加载数据...',
'Saving options...' => '保存选项...',
'Add users to share with.' => '添加共享用户.',
'Sharing options saved.' => '共享选项已保存.',
'Ok' => '确定',
'Share as' => '共享为',
'Share links' => '分享链接',
'Add user' => '添加用户',
),
'Folder Notifications' =>
array (
'Notification settings successfully saved' => '通知消息成功保存',
'Notifications for "read" actions cannot be set on shared folders.' => '无法在已共享的文件夹上设置关于“读取”行为的通知消息',
'No changes were made.' => '没有做出修改',
),
'Web Links' =>
array (
'Upload' => '上传',
'The link has been copied to clipboard.' => '链接已经拷贝到剪切板',
'Loading data...' => '加载数据...',
'Link address' => '链接地址',
'Expiration date' => '过期时间',
'Download limit' => '可供下载次数',
'Set a password' => '设置密码',
'Receive e-mail notifications.' => '接受电子邮件提示',
'Allow visitors to upload files.' => '允许访问者上传文件',
'Save changes' => '更新设置',
'Remove link' => '移除Web链接',
'You cannot allow uploads in this folder' => '你不能设置允许上传文件到该文件夹',
'Web link successfully created!' => 'Web链接创建成功!',
'Failed to create web link!' => 'Web链接创建失败!',
'Web link successfully updated!' => 'Web链接更新成功!',
'Failed to update web link!' => 'Web链接更新失败!',
'Web link successfully deleted!' => 'Web链接删除成功!',
'Failed to delete web link!' => 'Web链接删除失败!',
'The requested file requires a password.' => '请求的文件需要密码.',
'Password' => '密码',
'Submit' => '提交',
'The requested file is no longer available!' => '请求的文件已失效!',
'Click <a href="%1">here</a> to go back.' => '点击 <a href="%1">这里</a> 返回.',
'Open' => '打开',
'E-mail' => '电子邮件',
'Grid view' => '网格显示',
'Short Link' => '短链接',
'Image gallery' => '图像库',
'Audio playlist' => '音频播放列表',
'RSS feed' => 'RSS订阅',
'You are required to password protect the link' => '你需要一个密码以保护该链接',
'Advanced' => '高级',
'Download Terms' => '下载条款',
'Comments' => '注释',
'Share the file comments with the visitors.' => '向访客分享文件的评论',
'Link' => '链接',
'Add download terms and conditions' => '添加下载条款和限制:',
'Force the visitors to accept your written terms before being able to download files.' => '强制访客在下载前接受你的条款。',
'QR Code' => 'QR码',
'Scan this QR code with your mobile device.' => '用你的移动设备扫描该QR码',
'A Bitly Access Token needs to be configured from the control panel.' => '需要从控制面板配置令牌',
'Ok' => '确认',
'You are not allowed to access web links!' => '没有权限访问此链接',
'Prevent the browser from opening the file.' => '阻止浏览器直接打开文件',
'Some common types of files are being opened by the browser instead of asking the visitors from saving to their computers.' => '一些普通类型的文件会通过浏览器直接打开而不是开始下载',
'Changes saved.' => '保存修改',
'Empty contents.' => '清空评论',
'Failed to save changes.' => '保存修改失败',
'Done' => '完成',
'E-mail program' => 'E-mail 程序',
'Share link' => '共享链接',
'Shorten' => '短链接转化',
'You are not allowed to share the selected file!' => '你无权分享选定的文件!',
'Cancel' => '取消',
'Display users names.' => '显示用户的名字',
'Download' => '下载',
'Give this link to people you’re requesting files from' => '将此链接指向要请求文件的人员
',
'Download All' => '下载所有',
'Submit files' => '发送文件',
'%1 is requesting' => '%1正在请求',
'Only %1 will see the files you upload.' => '只有 %1 可以看见你上传的这些文件',
'Choose files' => '选择文件',
'File request' => '文件请求
',
'Enable file request.' => '启用文件请求。
',
'Allow visitors to see and download the existing files.' => '允许访客浏览和下载存在的文件',
'Or drag them from your computer onto this page.' => '或者将他们从你的电脑拖动到这个页面',
'Who is sending the files?' => '谁在发送这些文件?',
'Type your name here' => '在此输入你的名字',
'Start upload' => '开始上传',
'The files have been successfully sent!' => '文件已经成功发送',
'Upload starting...' => '开始上传...',
'Uploading...' => '上传中...',
'Refreshing page...' => '刷新页面...',
'List view' => '列表显示',
'One item' => '一个项目',
'Empty folder' => '空文件夹',
'%1 items' => '%1 项目',
'Options' => '选项',
'Copy' => '复制',
'Require visitors to be signed in.' => '要求访问者登录',
'Only registered users will be able to access this link.' => '只有注册用户才能访问此链接',
),
'Files Activity Log' =>
array (
'File moved with parent folder' => '文件与父文件夹一起移动',
'Folder moved with parent folder' => '文件夹与父文件夹移动',
'Date' => '日期',
'User' => '用户',
'Action' => '行为',
'Details' => '明细',
'No activity records found for this file.' => '没有发现该文件的活动日志。',
'You are not allowed to access the files activity logs' => '你不允许访问该文件的活动日志。',
'Displaying records {0} - {1} of {2}' => '显示记录{0} - {1} of {2}',
'No records to display' => '没有要显示的记录',
'Page' => '页',
'of {0}' => '共{0}',
'First Page' => '第一页',
'Last Page' => '最后一页',
'Next Page' => '下一页',
'Previous Page' => '前一页',
'Refresh' => '刷新',
'%2 by <span style="color:black">%1</span>' => '%2 由<span style="color:black">%1</span>',
'File uploaded' => '文件已上传',
'Uploaded by %1' => '由%1上传',
'File downloaded' => '文件已下载',
'Downloaded by %1' => '由%1下载',
'File archived for download' => '文件已经被打包供下载',
'Archived for download by %1' => '由%1打包',
'File archived' => '文件被打包',
'File copied' => '文件被复制',
'Copied by %1' => '由%1复制',
'File pasted' => '文件被粘贴',
'Pasted by %1' => '由%1粘贴',
'File moved' => '文件被移动',
'Moved by %1' => '有%1移动',
'File deleted' => '文件被删除',
'Deleted by %1' => '被%1删除',
'Deleted file restored' => '已恢复被删除文件',
'Restored by %1' => '由%恢复',
'File previewed' => '文件被预览',
'Previewed by %1' => '由%1预览',
'WebLink download' => 'WebLink被下载',
'Downloaded through %1\'s WebLink' => '下载通过%1的WebLink',
'WebLink created' => 'WebLink被创建',
'%1 attached a WebLink' => '%1附加了WebLink',
'WebLink updated' => 'WebLink被更新',
'%1 changed the WebLink\'s options' => '%1更改了WebLink选项',
'WebLink removed' => 'WebLink被删除',
'%1 removed the WebLink' => '%1删除了WebLink',
'Comment added' => '评论被添加',
'%1 wrote a comment' => '%1添加了评论:%2',
'Comment removed' => '评论被删除',
'%1 removed a comment' => '%1删除了评论:%2',
'Metadata changed' => '元数据被更改',
'Metadata changed by %1' => '元数据被%1更改',
'File locked' => '文件被锁定',
'Locked by %1' => '文件被%1锁定',
'File unlocked' => '文件被解锁',
'Unlocked by %1' => '文件被%1解锁',
'Previous file version restored' => '预览文件版本被恢复',
'Previous version restored by %1' => '预览文件版本被%1恢复',
'Previous file version deleted' => '预览文件版本被删除',
'Previous version deleted by %1' => '预览文件版本被%1删除',
'File renamed' => '文件被重命名',
'Renamed by %1' => '文件被%1重命名',
'File encrypted' => '文件被加密',
'Encrypted by %1' => '文件被%1加密',
'File decrypted' => '文件被解密',
'Decrypted by %1' => '文件被%1解密',
'File sent by e-mail' => '文件被通过电子邮件发送',
'Send by e-mail by %1' => '由%1通过电子邮件发送',
'Changed label' => '更改标记',
'Label removed' => '标记被删除',
'Labeled by %1: %2' => '被 %1: %2 标记',
'Label removed by %1' => '标记被 %1 删除',
'Are you sure you want to clear the file\'s activity log?' => '你确定要清除文件活动日志吗?',
'Activity log successfully cleared' => '活动日志成功清除',
'Failed to clear activity log' => '活动日志清除失败',
'Clear log' => '清除日志',
'Activity log has been successfully archived!' => '活动日志已成功存档!',
'No activity records found for this folder' => '没有查找到此文件夹的活动记录',
),
'Metadata' =>
array (
'You are not allowed to alter data in this shared folder.' => '您无权在此共享目录内更改数据.',
'Software Error: Failed to insert new path.' => '软件错误: 插入新路径失败.',
'File Type' => '文件类型',
'Select...' => '选择...',
'- File Type Not Found -' => '- 未找到文件类型 -',
'Save' => '保存',
'Saving data...' => '保存数据...',
'Failed to save data!' => '保存数据失败!',
'- No Special Type -' => '- 无指定类型 -',
'No changes were made' => '无变化',
'Changes saved' => '已保存更改',
),
'Versioning' =>
array (
'Version' => '版本',
'User' => '用户',
'Date' => '日期',
'Download' => '下载',
'Restore' => '还原',
'Delete' => '删除',
'File version restored.' => '文件版本还原成功.',
'Failed to restore file version.' => '文件版本还原失败.',
'File version deleted.' => '文件版本删除成功.',
'Failed to delete file version.' => '文件版本删除失败.',
'You are not allowed to lock/unlock files in this shared folder.' => '您无权在此目录内锁定/解锁文件.',
'The file has been locked.' => '该文件已被锁定.',
'The file has been unlocked.' => '该文件已解锁.',
'Failed to lock file!' => '锁定文件失败!',
'Failed to unlock file!' => '解锁文件失败!',
'File is locked by another user.' => '文件已被其他人锁定.',
'File is already locked by somebody else.' => '文件已被其他人锁定.',
'Modified by' => '修改者',
'Size' => '大小',
'The file is not locked.' => '文件还未被锁定',
'The file is already locked.' => '文件已经被锁定',
),
'Searching' =>
array (
'File name' => '文件名',
'File contents' => '文件内容',
'Look in' => '查看',
'Metadata Field' => '元数据域',
'Metadata' => '元数据',
'Select...' => '选择...',
'Path' => '路径',
'Searching...' => '搜索...',
'Search' => '搜索',
'- None Selected -' => '- 未选定 -',
'Metadata Type' => '元数据类型',
'Field Value' => '字段值',
),
'Custom Actions: CloudConvert' =>
array (
'API Key' => 'API密钥
',
'Convert "%1" to:' => '将“%1”转换为:
',
'No conversion option found for the "%1" file type.' => '找不到“%1”文件类型的转换选项。',
),
'File Comments' =>
array (
'Author' => '作者',
'Comment' => '评论',
'Add comment' => '添加评论',
'Type in your comment' => '输入您的评论',
'Remove comment' => '删除评论',
'You are not allowed to read comments.' => '您无权读取评论',
'You are not allowed to add comments.' => '您无权添加评论',
'You are not allowed to remove comments.' => '您无权删除评论',
'You are not allowed to add comments to files in this shared folder.' => '您无权添加此目录的评论。',
'You are not allowed to remove comments from files in this shared folder.' => '您无权删除此目录的评论。',
'You are allowed to delete only your own comments from a shared file.' => '您仅可删除共享文件中您自己的评论.',
'You are not allowed to read comments in this shared folder.' => '您无权读取此目录的评论。',
'No comments available for this file.' => '没有评论。',
'Comment successfully added.' => '评论成功.',
'Failed to add comment to file.' => '评论失败.',
'Comment successfully removed.' => '评论删除成功.',
'Failed to remove comment from file.' => '评论删除失败.',
),
'Custom Actions: Text Editor' =>
array (
'Text Editor' => '文本编辑器',
'Text File' => '创建文本文件',
'Untitled.txt' => '未命名.txt',
'Save' => '保存',
'Saving...' => '保存中...',
'File successfully saved' => '文本文件保存成功',
'File successfully created' => '文本文件创建成功',
'A file with that name already exists' => '同名文件已存在',
'Please type a file name' => '请输入文件名',
'Other..' => '其他..',
'New Text File.txt' => '新建文本文件.txt',
'Would you like to reload the file using the selected charset? Any unsaved changes will be lost.' => '你想使用选定的字符集重新加载文件?任何未保存的更改都将丢失。
',
'Save and close' => '保存并关闭',
'Word wrap' => '自动换行
',
'The file type is not allowed.' => '文件类型是不允许的。
',
'Close' => '关闭',
),
'Custom Actions: Zoho' =>
array (
'API key' => 'API密钥
',
'Zoho Editor' => 'Zoho 编辑器',
'Document with Zoho' => 'Zoho文档',
'Untitled.docx' => '未命名.docx',
'Blank file created successfully' => '空文件创建成功',
),
'Custom Actions: File Encryption' =>
array (
'Path to AESCrypt' => 'AESCrypt的路径
',
'Download and install AESCrypt from <a href="%1" target="_blank">here</a>.' => '
从<a href="%1" target="_blank">此处</a>下载并安装AESCrypt。',
'AES File Encryption' => 'AES文件加密',
'Password' => '密码',
'Decrypt "%1"' => '解密 “%1”',
'Encrypt "%1"' => '加密 “%1”',
'Processing file...' => '文件处理中...',
'The user doesn\'t have permission to use this function!' => '这个用户无权使用该功能!',
'The selected file was successfully decrypted.' => '选中的文件已被成功解密。',
'Failed to decrypt the selected file!' => '选中的文件无法成功解密!',
'A file named "%1" already exists!' => '一个叫做“%1”的文件已经存在!',
'The selected file was successfully encrypted.' => '选中的文件已被成功加密。',
'Failed to encrypt the selected file!' => '选中的文件无法成功加密!',
'The selected file was not found!' => '无法找到选中的文件!',
'Confirm password' => '确认密码',
'Delete the source file' => '删除源文件',
'Please type the password' => '请输入密码',
'Please confirm the password' => '请再次输入密码',
),
'Admin' =>
array (
'Control Panel' => '控制面板',
'Users' => '用户',
'Import users' => '导入用户',
'Activity logs' => '活动日志',
'E-mail notifications' => 'E-mail通知',
'Configuration' => '系统配置',