aboutsummaryrefslogtreecommitdiffstats
path: root/language/zh_CN/admin.lang.php
blob: 92a4f66fc1672c5c12072f6baa5d4b51f64583f8 (plain)
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
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery                                    |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2016 Piwigo Team                  http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify  |
// | it under the terms of the GNU General Public License as published by  |
// | the Free Software Foundation                                          |
// |                                                                       |
// | This program is distributed in the hope that it will be useful, but   |
// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
// | General Public License for more details.                              |
// |                                                                       |
// | You should have received a copy of the GNU General Public License     |
// | along with this program; if not, write to the Free Software           |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA.                                                                  |
// +-----------------------------------------------------------------------+

$lang['%d association'] = '%d张关联图片';
$lang['%d associations'] = '%d张关联图片';
$lang['%d album including'] = '%d个相册,其中包含';
$lang['%d albums including'] = '%d个相册,其中包含';
$lang['%d physical'] = '物理相册%d个';
$lang['%d physicals'] = '物理相册%d个 ';
$lang[' and %d virtual'] = ',虚拟相册%d个 ';
$lang[' and %d virtuals'] = ',虚拟相册%d个';
$lang['%d album moved'] = '%d个相册已移动';
$lang['%d albums moved'] = '%d个相册已移动';
$lang['%d group'] = '%d个组';
$lang['%d groups'] = '%d个组';
$lang['%d member'] = '%d位成员';
$lang['%d members'] = '%d位成员';
$lang['%d tag'] = '%d个标签';
$lang['%d tags'] = '%d个标签';
$lang['%d user comment rejected'] = '%d个用户评论未通过审核';
$lang['%d user comments rejected'] = '%d个用户评论未通过审核';
$lang['%d user comment validated'] = '%d个用户评论已通过审核';
$lang['%d user comments validated'] = '%d个用户评论已通过审核';
$lang['%d user deleted'] = '%d个用户已删除';
$lang['%d users deleted'] = '%d个用户已删除';
$lang['%d user'] = '%d个用户';
$lang['%d users'] = '%d个用户';
$lang['%d waiting for validation'] = '%d个等待审核';
$lang['Actions'] = '操作';
$lang['Activate'] = '启用';
$lang['Add/delete a permalink'] = '添加/删除一个固定链接';
$lang['Add a tag'] = '添加标签';
$lang['Add a user'] = '添加用户';
$lang['Add group'] = '添加组';
$lang['Add'] = '添加';
$lang['Allow user registration'] = '允许用户注册';
$lang['Apply to sub-albums'] = '应用到子相册';
$lang['Associated'] = '已关联';
$lang['Caddie management'] = '标记图片库管理';
$lang['Caddie'] = '标记图片库';
$lang['Albums authorized thanks to group associations'] = '以组成员身份授予访问权的相册';
$lang['Album manual order was saved'] = '相册手动排序已保存';
$lang['Check for upgrade failed for unknown reasons.'] = '因未知原因,更新检查失败。';
$lang['Check for upgrade'] = '检查更新';
$lang['Comments for all'] = '允许所有人评论(包括游客)';
$lang['Current name'] = '现用名';
$lang['Database'] = '数据库';
$lang['Deactivate'] = '停用';
$lang['Delete Representant'] = '删除相册缩略图';
$lang['Delete selected tags'] = '删除选中的标签';
$lang['Delete selected users'] = '删除选中的用户';
$lang['Deletions'] = '删除';
$lang['Deny selected groups'] = '所选组限制访问';
$lang['Deny selected users'] = '所选用户限制访问';
$lang['Description'] = '描述';
$lang['Display options'] = '显示选项';
$lang['Dissociated'] = '关联已取消';
$lang['Does not represent'] = '并非缩略图for';
$lang['Edit selected tags'] = '编辑选中的标签';
$lang['Edit tags'] = '编辑标签';
$lang['Email admins when a new user registers'] = '有新用户注册时,发邮件通知管理员';
$lang['Email admins when a valid comment is entered'] = '当有效的评论发布后,发邮件通知管理员';
$lang['Email admins when a comment requires validation'] = '有评论需要审核时,发邮件通知管理员';
$lang['Environment'] = '环境';
$lang['Form'] = '表单';
$lang['Gallery title'] = '图库标题';
$lang['Grant selected groups'] = '授权给所选组';
$lang['Grant selected users'] = '授权给所选用户';
$lang['Group name'] = '组名';
$lang['Groups'] = '组';
$lang['Guests'] = '游客';
$lang['History'] = '历史记录';
$lang['Informations'] = '信息';
$lang['Install'] = '安装';
$lang['Link all album photos to a new album'] = '关联相册的所有图片到新相册';
$lang['Link all album photos to some existing albums'] = '关联相册的所有图片到已有相册';
$lang['Linked albums'] = '已关联的相册';
$lang['Lock gallery'] = '锁定图库';
$lang['Maintenance'] = '维护';
$lang['Edit album permissions'] = '管理相册权限';
$lang['Manage permissions for group "%s"'] = '管理 "%s" 组的权限';
$lang['Manage permissions for user "%s"'] = '管理用户 "%s" 的权限';
$lang['Manage tags'] = '管理标签';
$lang['Members'] = '成员';
$lang['Metadata synchronized from file'] = '由文件同步元数据完成';
$lang['Move albums'] = '移动相册';
$lang['Move'] = '移动';
$lang['Name'] = '名字';
$lang['New name'] = '新名称';
$lang['New parent album'] = '新的父相册';
$lang['New tag'] = '新建标签';
$lang['Number of comments per page'] = '每页评论数';
$lang['Number of rates'] = '评分次数';
$lang['Only private albums are listed'] = '只列出了非公开相册';
$lang['Operating system'] = '操作系统';
$lang['Options'] = '选项';
$lang['Other private albums'] = '其他非公开相册';
$lang['Page banner'] = '页首banner';
$lang['Parent album'] = '父相册';
$lang['Path'] = '路径';
$lang['Permalink'] = '固定链接';
$lang['Permalink %s has been previously used by album %s. Delete from the permalink history first'] = '固定链接 %s 此前被相册 %s 使用。请先将其从固定链接历史记录中删除。';
$lang['The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'] = '固定链接名称必须由字符 a-z、A-Z、0-9、"-"、"_" 或 "/" 组成。但不能是纯数字或以数字开头后面紧跟"-"';
$lang['Permalink %s is already used by album %s'] = '固定链接 %s 已被相册 %s 使用了';
$lang['Permalink history'] = '固定链接历史记录';
$lang['Permalinks'] = '固定链接';
$lang['Permission denied'] = '禁止访问';
$lang['Permission granted thanks to a group'] = '以组成员身份授予访问权';
$lang['Permission granted'] = '允许访问';
$lang['Photo informations updated'] = '图片信息已更新';
$lang['Plugins'] = '插件';
$lang['Position'] = '位置';
$lang['Preferences'] = '偏好设置';
$lang['Properties'] = '属性';
$lang['Random photo'] = '随机图片';
$lang['Rate date'] = '评分日期';
$lang['Rating by guests'] = '允许游客评分';
$lang['Rating'] = '评分';
$lang['Reject'] = '拒绝';
$lang['Representant'] = '相册缩略图';
$lang['Representation of albums'] = '作为相册的缩略图';
$lang['Representative'] = '相册缩略图';
$lang['Represents'] = '是以下相册的缩略图:';
$lang['Save order'] = '保存排序';
$lang['Save to permalink history'] = '保存到固定链接历史记录';
$lang['Select at least one album'] = '请至少选择一个相册';
$lang['Select at least one photo'] = '请至少选择一张图片';
$lang['Select at least one user'] = '请至少选择一个用户';
$lang['Show info'] = '显示信息';
$lang['Site manager'] = '网站管理';
$lang['Status'] = '身份';
$lang['Statistics'] = '统计';
$lang['Storage album'] = '存储相册';
$lang['Sum of rates'] = '总评分';
$lang['Tag "%s" already exists'] = '标签 "%s" 已存在';
$lang['Tag "%s" was added'] = '标签 "%s" 已添加';
$lang['Tag selection'] = '标签选择';
$lang['The %d following tags were deleted'] = '以下%d个标签已删除';
$lang['Unable to check for upgrade.'] = '无法检查更新。';
$lang['Uninstall'] = '卸载';
$lang['Use the default photo sort order'] = '使用默认的图片排序';
$lang['User comments validation'] = '用户评论审核';
$lang['Users'] = '用户';
$lang['Validate'] = '批准';
$lang['Validation'] = '启用评论审核';
$lang['Version'] = '版本';
$lang['Virtual albums to move'] = '待移动的虚拟相册';
$lang['Virtual album name'] = '虚拟相册名称';
$lang['Webmaster cannot be deleted'] = '站长帐户不能删除';
$lang['You are running on development sources, no check possible.'] = '您运行的是源码开发版本,不能检查最新版。';
$lang['You cannot delete your account'] = '您无法删除自己的帐号';
$lang['You cannot move an album in its own sub album'] = '您不能将一个相册移动到其子相册里';
$lang['You need to confirm deletion'] = '您必须确认删除操作';
$lang['Associate to album'] = '关联到相册';
$lang['associate to group'] = '关联到组';
$lang['Authorized'] = '已授权';
$lang['Add a virtual album'] = '添加虚拟相册';
$lang['Authorize users to add comments on selected albums'] = '授权用户在所选相册中发表评论';
$lang['The name of an album must not be empty'] = '相册名称不能为空';
$lang['Lock albums'] = '锁定相册';
$lang['Private'] = '非公开相册';
$lang['Public'] = '公开相册';
$lang['Find a new representant by random'] = '采用新的随机相册缩略图';
$lang['Public / Private'] = '公开 / 非公开';
$lang['Manage authorizations for selected albums'] = '管理所选相册的授权';
$lang['Virtual album added'] = '虚拟相册已添加';
$lang['Virtual album deleted'] = '虚拟相册已删除';
$lang['Access type'] = '权限类型';
$lang['Information data registered in database'] = '信息数据已录入数据库';
$lang['Default display'] = '默认显示';
$lang['The gallery URL is not valid.'] = '图库地址无效。';
$lang['The number of comments a page must be between 5 and 50 included.'] = '每页用户评论数必须在5和50之间。';
$lang['Configuration'] = '设置';
$lang['confirm'] = '确认';
$lang['Date'] = '日期';
$lang['delete album'] = '删除相册';
$lang['Dissociate from album'] = '取消与相册的关联';
$lang['dissociate from group'] = '取消组关联';
$lang['Album updated successfully'] = '相册更新成功';
$lang['photos per page'] = '张图片/页';
$lang['High definition enabled'] = '高清功能已启用';
$lang['File'] = '文件';
$lang['first photo added on %s'] = '第一张图片上传于:%s';
$lang['Forbidden'] = '禁止';
$lang['global mode'] = '全局模式';
$lang['group "%s" added'] = '"%s" 组已添加';
$lang['group "%s" deleted'] = '"%s" 组已删除';
$lang['group "%s" updated'] = '"%s" 组已更新';
$lang['The name of a group must not contain " or \' or be empty.'] = '组的名称不能包含 " 或 \' 也不能为空。';
$lang['This name is already used by another group.'] = '组名已存在。';
$lang['High definition'] = '高清';
$lang['jump to album'] = '转至相册页';
$lang['jump to photo'] = '转至图片页';
$lang['leave'] = '留空(默认)';
$lang['Lock'] = '锁定';
$lang['Locked'] = '已锁定';
$lang['manage album photos'] = '管理相册中的图片';
$lang['manage sub-albums'] = '管理子相册';
$lang['Manage'] = '管理';
$lang['Execution time is out, treatment must be continue [Estimated time: %d second].'] = '已超过执行时间,处理还要继续[估计时间:%d 秒]。';
$lang['Execution time is out, treatment must be continue [Estimated time: %d seconds].'] = '已超过执行时间,处理还要继续[估计时间:%d 秒]。';
$lang['Prepared time for list of users to send mail is limited. Others users are not listed.'] = '由于准备 将被发送邮件的用户的列表 的时间有限,其余用户未被列出。';
$lang['Time to send mail is limited. Others mails are skipped.'] = '发送邮件时间有限,其余邮件已被跳过。';
$lang['To send ?'] = '发送?';
$lang['Last send'] = '上一次发送';
$lang['User'] = '用户';
$lang['See you soon,'] = '回见,';
$lang['Go to'] = '转至 ';
$lang['Hello'] = '您好';
$lang['New photos were added'] = '新图片已加入';
$lang['on'] = '时间:';
$lang['between'] = '介于';
$lang['and'] = ' 至 ';
$lang['The webmaster has subscribed you to receiving notifications by mail.'] = '站长开通了您的邮件通知功能。';
$lang['You have subscribed to receiving notifications by mail.'] = '您已订阅了邮件通知。';
$lang['To subscribe'] = '订阅';
$lang['If you encounter problems or have any question, please send a message to'] = '如遇故障或问题,请发邮件至';
$lang['[NBM] Problems or questions'] = '[NBM] 故障或问题';
$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = '站长取消了您的邮件通知功能。';
$lang['You have unsubscribed from receiving notifications by mail.'] = '您已取消订阅邮件通知。';
$lang[', click on'] = ',请点击 ';
$lang['To unsubscribe'] = '取消订阅';
$lang['With blank value, gallery title will be used'] = '如留空,则将使用图库标题';
$lang['Notification'] = 'RSS订阅';
$lang['Error when sending email to %s [%s].'] = '发送邮件给 %s [%s] 时发生了错误。';
$lang['Mail sent to %s [%s].'] = '邮件已发送至 %s [%s]。';
$lang['%d mail was sent.'] = '%s份邮件已发送。';
$lang['%d mails were sent.'] = '%s份邮件已发送。';
$lang['%d mail was not sent.'] = '%s份邮件未被发送。';
$lang['%d mails were not sent.'] = '%s份邮件未被发送。';
$lang['No mail to send.'] = '没有邮件要发送。';
$lang['There is no available subscribers to mail.'] = '没有用户订阅邮件通知。';
$lang['Subscribers could be listed (available) only if there is new elements to notify.'] = '只有当有新元素时,才能使用用户邮件通知功能。';
$lang['Anyway only webmasters can see this tab and never administrators.'] = '本表单页仅站长可见,管理员不可见。';
$lang['No user to send notifications by mail.'] = '没有需要邮件通知的用户。';
$lang['New photos added'] = '已加入新图片';
$lang['Subscribe to notification by mail'] = '用邮件订阅RSS更新';
$lang['Unsubscribe from notification by mail'] = '取消订阅邮件通知';
$lang['Parameter'] = '设置';
$lang['Continue processing treatment'] = '继续当前的处理';
$lang['Complementary mail content'] = '邮件附加内容';
$lang['Add detailed content'] = '增加细节内容';
$lang['Send mail as'] = '邮件标题';
$lang['Send mail to users'] = '向用户发送邮件';
$lang['Send'] = '发送';
$lang['Options'] = '选项';
$lang['Subscribed'] = '已订阅';
$lang['Subscribe'] = '订阅';
$lang['Parameters'] = '参数';
$lang['Select recipients'] = '选择接收邮件的用户';
$lang['Subscribe/unsubscribe users'] = '订阅/取消订阅用户';
$lang['Unsubscribed'] = '已取消';
$lang['%d parameter was updated.'] = '%d个参数已更新。';
$lang['%d parameters were updated.'] = '%d个参数已更新。';
$lang['%d user was not updated.'] = '%d个用户未被更新。';
$lang['%d users were not updated.'] = '%d个用户未被更新。';
$lang['User %s [%s] was removed from the subscription list.'] = '用户 %s [%s] 已从订阅列表中删除。';
$lang['User %s [%s] was added to the subscription list.'] = '用户 %s [%s] 已加入订阅列表。';
$lang['%d user was updated.'] = '%d个用户已更新。';
$lang['%d users were updated.'] = '%d个用户已更新。';
$lang['User %s [%s] was not removed from the subscription list.'] = '用户 %s [%s] 未从订阅列表中删除。';
$lang['User %s [%s] was not added to the subscription list.'] = '用户 %s [%s] 未加入订阅列表。';
$lang['User %s [%s] added.'] = '用户 %s [%s] 已添加。';
$lang['Warning: subscribing or unsubscribing will send mails to users'] = '注意:订阅或取消订阅都会给相关用户发送邮件';
$lang['Send mail on HTML format'] = '以HTML格式发送邮件';
$lang['Include display of recent photos grouped by dates'] = '包含显示最近的以日期分组的图片';
$lang['Available only with HTML format'] = '仅限HTML格式可用';
$lang['no write access'] = '无法写入';
$lang['Permissions'] = '权限';
$lang['private'] = '非公开';
$lang['public'] = '公开';
$lang['Purge never used notification feeds'] = '清除从未使用过的RSS订阅';
$lang['Purge sessions'] = '清除会话';
$lang['randomly represented'] = '随机相册缩略图';
$lang['registration date'] = '注册日期';
$lang['clean'] = '清除';
$lang['Create this site'] = '创建网站';
$lang['test'] = '测试';
$lang['test this remote site'] = '测试此远端站点';
$lang['remove tags'] = '删除所有标签';
$lang['Repair and optimize database'] = '修复和优化数据库';
$lang['selection'] = '选择';
$lang['set to'] = '设置为';
$lang['singly represented'] = '固定的相册缩略图';
$lang['This site already exists'] = '此站点已存在';
$lang['created'] = '已创建';
$lang['delete'] = '删除';
$lang['delete this site and all its attached elements'] = '删除此站点及与之关联的所有信息';
$lang['an error happened'] = '发生了错误';
$lang['Local'] = '本地';
$lang['Remote'] = '远端';
$lang['update the database from files'] = '根据文件更新数据库';
$lang['status'] = '身份';
$lang['Directory'] = '目录';
$lang['sub-albums'] = '子相册';
$lang['Synchronize metadata'] = '同步元数据';
$lang['target'] = '目标';
$lang['Thumbnail'] = '缩略图';
$lang['Title'] = '标题';
$lang['Album list management'] = '相册列表管理';
$lang['Piwigo configuration'] = 'Piwigo配置';
$lang['Edit album'] = '编辑相册';
$lang['Group management'] = '组管理';
$lang['User list'] = '用户列表';
$lang['Database synchronization with files'] = '根据文件来同步数据库';
$lang['all'] = '所有';
$lang['height must be a number superior to'] = '图片高度必须大于(整数)';
$lang['width must be a number superior to'] = '图片宽度必须大于(整数)';
$lang['for the file format'] = '对于文件格式';
$lang['Photo unreachable or no support'] = '不支持的图片格式或无法获取';
$lang['GD version'] = 'GD版本';
$lang['General statistics'] = '总体统计';
$lang['average time'] = '平均时间';
$lang['total time'] = '总时间';
$lang['for this file format'] = '对于此文件格式';
$lang['unit mode'] = '单一模式';
$lang['Unlocked'] = '已解锁';
$lang['unset'] = '复原';
$lang['Update albums informations'] = '更新相册信息';
$lang['Update photos information'] = '更新图片信息';
$lang['Synchronize'] = '同步';
$lang['reduce to single existing albums'] = '将同步范围限制于某个现有的相册';
$lang['Choose an option'] = '选择一个选项';
$lang['display maximum informations (added albums and photos, deleted albums and photos)'] = '显示全部信息(添加的相册和图片,删除的相册和图片)';
$lang['Error list'] = '错误列表';
$lang['Errors caption'] = '错误说明';
$lang['Detailed informations'] = '详细信息';
$lang['File/directory read error'] = '文件/目录读取错误';
$lang['The file or directory cannot be accessed (either it does not exist or the access is denied)'] = '无法打开文件或目录(不存在或拒绝访问)';
$lang['albums deleted in the database'] = '个相册已从数据库中删除';
$lang['photos deleted from the database'] = '张图片已从数据库中删除';
$lang['photos candidates for metadata synchronization'] = '张图片将与元数据同步';
$lang['photos informations synchronized with files metadata'] = '张图片的信息已与文件元数据同步';
$lang['errors during synchronization'] = '个错误在同步中发生';
$lang['albums added in the database'] = '个相册已添加到数据库';
$lang['photos added in the database'] = '张图片已添加到数据库';
$lang['photos updated in the database'] = '张图片已于数据库中更新';
$lang['Search for new images in the directories'] = '在目录中搜索新图片';
$lang['added'] = '已添加';
$lang['deleted'] = '已删除';
$lang['Metadata synchronization results'] = '元数据同步结果';
$lang['only perform a simulation (no change in database will be made)'] = '只进行模拟操作(不会改变数据库中的任何内容)';
$lang['Simulation'] = '模拟';
$lang['directories + files'] = '目录 + 文件';
$lang['only directories'] = '仅目录';
$lang['synchronize files structure with database'] = '文件结构与数据库同步';
$lang['synchronize files metadata with database photos informations'] = '数据库中的图片信息与文件元数据同步';
$lang['even already synchronized photos'] = '包括已同步过的图片';
$lang['Used metadata'] = '已使用的元数据';
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = '目录和文件的名称只能包含字母、数字、"-"、"_" 和 "."';
$lang['wrong filename'] = '错误的文件名';
$lang['Upload'] = '上传';
$lang['user "%s" added'] = '用户 "%s" 已添加';
$lang['User status'] = '用户身份';
$lang['user_status_admin'] = '管理员';
$lang['user_status_generic'] = '公共帐户';
$lang['user_status_guest'] = '游客';
$lang['user_status_normal'] = '个人帐户';
$lang['user_status_webmaster'] = '站长';
$lang['Virtual album'] = '虚拟相册';
$lang['Waiting'] = '等待';
$lang['default'] = '默认';
$lang['Toggle \'default group\' property'] = '反转\'默认组\'的属性';
$lang['Advanced features'] = '高级功能';
$lang['Overall'] = '概览';
$lang['Year'] = '年';
$lang['Month'] = '月';
$lang['Day'] = 'Day';
$lang['Pages seen'] = '已访问过的页面';
$lang['Time'] = '时间';
$lang['IP'] = 'IP';
$lang['Element'] = '元素';
$lang['Section'] = '区域';
$lang['An information email was sent to group "%s"'] = '已向 "%s" 组的成员发送了邮件信息';
$lang['Send an information email to group members'] = '向组成员发送一份信息邮件';
$lang['Group'] = '组';
$lang['[%s] Visit album %s'] = '[%s] 访问相册 %s';
$lang['Hello,'] = '您好,';
$lang['See you soon.'] = '回见。';
$lang['Discover album:'] = '探索相册:';
$lang['Mail content'] = '邮件内容';
$lang['none'] = '无';
$lang['high'] = '高清';
$lang['other'] = '其他';
$lang['Element type'] = '元素类型';
$lang['Image id'] = '图片id';
$lang['Summary'] = '概述';
$lang['%d line filtered'] = '%d行被过滤';
$lang['%d lines filtered'] = '%d行被过滤';
$lang['%d guest'] = '%d位游客';
$lang['%d guests'] = '%d位游客';
$lang['Hour'] = '小时';
$lang['guest'] = '游客';
$lang['default values'] = '默认值';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['Guest cannot be deleted'] = '游客不能删除';
$lang['Default user cannot be deleted'] = '不能删除默认用户';
$lang['Purge history detail'] = '清除详细历史记录';
$lang['Purge history summary'] = '清除历史摘要';
$lang['Check integrity'] = '检查完整性';
$lang['Anomaly'] = '异常';
$lang['Correction'] = '修复';
$lang['Automatic correction'] = '自动修复';
$lang['Impossible automatic correction'] = '无法自动修复';
$lang['Correction applied with success'] = '修复成功';
$lang['Correction applied with error'] = '修复出错';
$lang['%d anomaly has been detected.'] = '发现了%d个异常。';
$lang['%d anomalies have been detected.'] = '发现了%d个异常。';
$lang['%d anomaly has been corrected.'] = '修复了%d个异常。';
$lang['%d anomalies have been detected corrected.'] = '发现了%d个异常并已修复。';
$lang['%d anomaly has not been corrected.'] = '%d个异常未被修复。';
$lang['%d anomalies have not been corrected.'] = '%d个异常未被修复。';
$lang['Go to %s or %s for more informations'] = '获取更多信息,请到 %s 或者 %s ';
$lang['the forum'] = '论坛';
$lang['the wiki'] = 'wiki';
$lang['%s value is not correct file because exif are not supported'] = '%s 值不正确,因为不支持exif';
$lang['%s must be to set to false in your local/config/config.inc.php file'] = '在配置文件local/config/config.inc.php中,%s必须设置为"false"';
$lang['Main "guest" user does not exist'] = '主"游客"帐户不存在';
$lang['Main "guest" user status is incorrect'] = '主"游客"帐户状态异常';
$lang['Default user does not exist'] = '默认用户不存在';
$lang['Main "webmaster" user does not exist'] = '主"站长"帐户不存在';
$lang['Main "webmaster" user status is incorrect'] = '主"站长"帐户状态异常';
$lang['User "%s" created with "%s" like password'] = '用户 "%s" 已创建,密码是"%s"';
$lang['Status of user "%s" updated'] = '用户 "%s" 身份已更新';
$lang['add new photos to caddie'] = '将新图片添加到标记图片库';
// --------- Starting below: New or revised $lang ---- from Butterfly
$lang['No display'] = '不显示缩略图';
$lang['Classic display'] = '经典显示界面';
$lang['Hoverbox display'] = 'Hoverbox显示';
$lang['Minimum privacy level'] = '最低隐私等级';
$lang['Privacy level'] = '隐私等级';
$lang['Level 0'] = '---';
$lang['Level 1'] = '联系人';
$lang['Level 2'] = '朋友';
$lang['Level 4'] = '家人';
$lang['Level 8'] = '管理员';
$lang['Reinitialize check integrity'] = '初始化完整性检查';
$lang['Check all'] = '检查所有';
$lang['Uncheck all'] = '取消所有已选';
$lang['Check automatic corrections'] = '检查自动修复';
$lang['Apply selected corrections'] = '应用选中的修复';
$lang['Ignore selected anomalies'] = '忽略选中的异常';
$lang['Refresh'] = '刷新';
$lang['The anomaly will be ignored until next application version'] = '此异常将被忽略,待下个版本中解决';
$lang['Correction the anomaly will cancel the fact that it\'s ignored'] = '经过修复,此项异常将不再被忽略';
$lang['%d anomaly has been ignored.'] = '%d个异常已被忽略。';
$lang['%d anomalies have been ignored.'] = '%d个异常已被忽略。';
$lang['Plugins which need upgrade'] = '需要更新的插件';
$lang['Plugin list'] = '插件列表';
$lang['Check for updates'] = '检查更新';
$lang['Other plugins'] = '其他可用插件';
$lang['Last revisions'] = '最新修订版';
$lang['Are you sure you want to install this plugin?'] = '确定要安装此插件?';
$lang['Are you sure you want to delete this plugin?'] = '确定要删除此插件?';
$lang['Are you sure to install this upgrade? You must verify if this version does not need uninstallation.'] = '确定安装此更新?您必须确定此版本是否无需先进行卸载操作。';
$lang['Plugin has been successfully copied'] = '插件复制成功';
$lang['Can\'t create temporary file.'] = '无法创建临时文件。';
$lang['Can\'t download archive.'] = '无法下载归档文件。';
$lang['Can\'t read or extract archive.'] = '无法读取或解压归档文件。';
$lang['An error occured during extraction (%s).'] = '在解压文件(%s)时发生错误。';
$lang['Please check "plugins" folder and sub-folders permissions (CHMOD).'] = '请核实"plugins"文件夹及其子文件夹的权限(CHMOD)。';
$lang['Can\'t connect to server.'] = '无法连接到服务器。';
$lang['Purge compiled templates'] = '清除编译模板';
$lang['Support'] = '支持';
$lang['Documentation'] = '文档';
$lang['ACCESS_0'] = '自由访问';
$lang['ACCESS_1'] = '对所有人开放';
$lang['ACCESS_2'] = '只对注册用户开放';
$lang['ACCESS_3'] = '只对管理员开放';
$lang['ACCESS_4'] = '只对站长开放';
$lang['ACCESS_5'] = '不开放';
$lang['A new version of Piwigo is available.'] = 'Piwigo新版发布。';
$lang['Piwigo Administration'] = 'Piwigo管理';
$lang['Piwigo version'] = 'Piwigo版本';
$lang['You are running the latest version of Piwigo.'] = '您运行的是Piwigo最新版。';
$lang['The version of %s [%s] installed is not compatible with the version required [%s]'] = '%s [%s]安装版本跟[%s]版本不兼容';
$lang['You need to upgrade your system to take full advantage of the application else the application will not work correctly, or not at all'] = '为了获得程序的全部功能,您需要更新您的系统,否则程序可能运行不正常或无法运行。';
$lang['Deleted on'] = '删除于';
$lang['Last hit'] = '最新点击';
$lang['GD library is missing'] = '缺少GD库';
$lang['Templates'] = '模板';
$lang['Extend for templates'] = '扩展模板';
$lang['Replacement of original templates by customized templates from template-extension subfolder'] = '用位于template-extension子文件夹下的用户自定义模板替换原模板';
$lang['Replacers (customized templates)'] = '替换(自定义模板)';
$lang['Original templates'] = '原模板';
$lang['Optional URL keyword'] = '可选URL关键字';
$lang['Templates configuration has been recorded.'] = '模板设置已保存。';
$lang['All optimizations have been successfully completed.'] = '优化成功。';
$lang['Optimizations have been completed with some errors.'] = '优化完成,但发生了一些错误。';
$lang['Modify information'] = '修改信息';
$lang['nothing'] = '没有内容';
$lang['overrides existing values with empty ones'] = '用空数据来覆盖已存在的数据';
$lang['Manage photo ranks'] = '管理图片排序';
$lang['Edit ranks'] = '修改排列顺序';
$lang['No photo in this album'] = '此相册里没有图片';
$lang['Images manual order was saved'] = '图片手动排序已保存';
$lang['ranks'] = '顺序';
$lang['Drag to re-order'] = '拖放进行排序';
$lang['Quick Local Synchronization'] = '快速本地同步';
$lang['No photo can be deleted'] = '没有图片可以删除';
$lang['Delete selected photos'] = '删除选中的图片';
$lang['%d photo was deleted'] = '%d张图片已删除';
$lang['%d photos were deleted'] = '%d张图片已删除';
$lang['Downloads'] = '下载';
$lang['Released on'] = '发布于';
$lang['Number of downloads'] = '下载次数';
$lang['Operation in progress'] = '正在处理。';
$lang['Please wait...'] = '请稍候...';
$lang['Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it\'s important to know and upgrade) and when major events happen to the project. Only a few emails a year.'] = '订阅 Piwigo 最新消息,与 Piwigo 项目保持联系。当有新版本发布时,您将会收到邮件通知(有时也包括安全漏洞的修复,因而知晓并进行升级是很重要的),项目里一些重要事情发生时也一样。一年里也只有几封邮件喔。';
$lang['Password is missing. Please enter the password.'] = '密码未输入,请输入密码。';
$lang['Password confirmation is missing. Please confirm the chosen password.'] = '密码确认未完成,请确认所选定的密码。';
$lang['Allow users to edit their own comments'] = '允许用户编辑自己的评论';
$lang['Allow users to delete their own comments'] = '允许用户删除自己的评论';
$lang['Email administrators when a comment is modified'] = '有评论被修改后,发邮件通知管理员';
$lang['Email administrators when a comment is deleted'] = '有评论被删除后,发邮件通知管理员';
$lang['Cannot delete the old permalink !'] = '旧的固定链接无法删除!';
$lang['Hit'] = '点击';
$lang['Tools'] = '工具';
$lang['Photos'] = '图片';
$lang['Themes'] = '主题';
$lang['Instructions to use Piwigo'] = 'Piwigo 使用指南';
$lang['Installed Themes'] = '已安装主题';
$lang['Add New Theme'] = '添加新主题';
$lang['Forbid this theme to users'] = '对用户禁用此主题';
$lang['Set as default theme for unregistered and new users'] = '设置为游客和新用户的默认主题';
$lang['unknown'] = '未知';
$lang['Upload Photos'] = '上传图片';
$lang['Drop into album'] = '选择一个相册';
$lang['+ Add an upload box'] = '+ 添加一个上传框';
$lang['Create the "%s" directory at the root of your Piwigo installation'] = '在您的Piwigo安装根目录下创建 "%s" 目录';
$lang['Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'] = '给予Piwigo安装根目录下的 "%s" 文件夹以写权限 (chmod 777)';
$lang['existing album'] = '现有的相册';
$lang['create a new album'] = '创建一个新相册';
$lang['Album name'] = '相册名称';
$lang['Album "%s" has been added'] = '相册 "%s" 已添加';
$lang['Uploaded Photos'] = '已上传的图片';
$lang['%d photos uploaded'] = '%d张图片已上传';
$lang['Privacy level set to "%s"'] = '隐私级别设置为 "%s"';
$lang['Album "%s" now contains %d photos'] = '相册 "%s" 现包含 %d 张图片';
$lang['Manage this set of %d photos'] = '管理本集合的 %d 张图片';
$lang['Select files'] = '选择文件';
$lang['Everybody'] = '每个人';
$lang['Who can see these photos?'] = '图片对谁可见';
$lang['Settings'] = '设置';
$lang['Resize'] = '修改尺寸';
$lang['Maximum width'] = '最大宽度';
$lang['pixels'] = '像素';
$lang['Maximum height'] = '最大高度';
$lang['Image Quality'] = '图片质量';
$lang['Save Settings'] = '保存设置';
$lang['Your configuration settings are saved'] = '您的设置已保存';
$lang['Active Themes'] = '启用的主题';
$lang['Add write access to the "%s" directory'] = '为 "%s" 目录添加写权限';
$lang['Administration Home'] = '管理界面首页';
$lang['Change Admin Colors'] = '更改管理界面颜色';
$lang['Delete this theme'] = '删除此主题';
$lang['Directory does not exist'] = '目录不存在';
$lang['Download,'] = '下载,';
$lang['FTP + Synchronization'] = 'FTP + 同步';
$lang['Get Support on Piwigo Forum'] = '在Piwigo论坛上获取帮助';
$lang['Help Me'] = '帮助';
$lang['Impossible to activate this theme, the parent theme is missing: %s'] = '父主题%s不存在,此主题不能被启用。';
$lang['Impossible to delete this theme. Other themes depends on it: %s'] = '不能删除此主题,因其他主题有赖于它: %s';
$lang['Inactive Themes'] = '停用的主题';
$lang['Install on your computer,'] = '安装到您的电脑里,';
$lang['Make this theme available to users'] = '让用户可使用此主题';
$lang['Page end'] = '页尾';
$lang['Piwigo Uploader'] = 'Piwigo Uploader';
$lang['Read Piwigo Documentation'] = '阅读Piwigo文档';
$lang['Start pLoader and add your photos.'] = '开始使用pLoader并添加您的图片。';
$lang['Switch to clear or dark colors for administration'] = '更改管理界面为清爽或者炫黑的颜色';
$lang['Theme has been successfully installed'] = '主题已成功安装';
$lang['Visit Gallery'] = '浏览图库';
$lang['Visit Piwigo project website'] = '浏览 Piwigo 项目网站';
$lang['pLoader stands for <em>Piwigo Uploader</em>. From your computer, pLoader prepares your photos and transfer them to your Piwigo photo gallery.'] = 'pLoader代表<em>Piwigo Uploader</em>。pLoader可将您电脑里的图片上传到Piwigo图库里。';
$lang['Guest Settings'] = '游客设置';
$lang['Main Page'] = '主页';
$lang['Photo Page'] = '图片页';
$lang['Activate Navigation Bar'] = '启用导航条';
$lang['Activate Navigation Thumbnails'] = '启用缩略图导航';
$lang['Activate icon "%s"'] = '启用图标 "%s"';
$lang['Photo Properties'] = '图片属性';
$lang['Allow user customization'] = '允许用户自定义';
$lang['Languages'] = '语言';
$lang['Installed Languages'] = '已安装语言';
$lang['Add New Language'] = '添加新语言';
$lang['Language has been successfully installed'] = '语言已成功安装';
$lang['Select:'] = '选择:';
$lang['None'] = '无';
$lang['Invert'] = '反选';
$lang['Impossible to deactivate this theme, you need at least one theme.'] = '不能停用此主题,您至少需要使用一个主题。';
$lang['Webmaster status is required.'] = '仅限站长。';
$lang['Bound Theme'] = '绑定主题';
$lang['Allow rating'] = '允许评分';
$lang['Select at least one comment'] = '请至少选择一个评论';
$lang['Active Plugins'] = '启用的插件';
$lang['Inactive Plugins'] = '停用的插件';
$lang['Missing Plugins'] = '丢失的插件';
$lang['Uninstalled Plugins'] = '已卸载的插件';
$lang['By %s'] = '由%s开发';
$lang['Visit plugin site'] = '浏览插件网站';
$lang['Active Languages'] = '启用的语言';
$lang['Delete this language'] = '删除此种语言';
$lang['Forbid this language to users'] = '对用户禁用此语言';
$lang['Impossible to deactivate this language, first set another language as default.'] = '不能停用此语言,请先设置一个新的默认语言。';
$lang['Impossible to deactivate this language, you need at least one language.'] = '不能停用此语言,您至少需要使用一个语言。';
$lang['Inactive Languages'] = '停用的语言';
$lang['Make this language available to users'] = '让用户可使用此语言';
$lang['Set as default language for unregistered and new users'] = '设置为游客和新用户的默认语言';
$lang['Add Photos'] = '添加图片';
$lang['The following tag was deleted'] = '以下标签已删除';
$lang['Miscellaneous'] = '其他';
$lang['Virtual Links'] = '虚拟链接';
$lang['There is no other language available.'] = '没有其他的可用语言。';
$lang['There is no other plugin available.'] = '没有其他的可用插件。';
$lang['There is no other theme available.'] = '没有其他的可用主题。';
$lang['Add another set of photos'] = '添加另一组图片';
$lang['By rank'] = '按顺序';
$lang['Manual order'] = '手动排序';
$lang['Piwigo Announcements Newsletter'] = 'Piwigo最新消息公告';
$lang['Subscribe %s'] = '订阅%s';
$lang['Subscribe %s to Piwigo Announcements Newsletter'] = '以 %s 订阅Piwigo中国最新消息公告';
$lang['Purge search history'] = '清除搜索的历史记录';
$lang['Hide'] = '隐藏';
$lang['Order of menubar items has been updated successfully.'] = '菜单项目排列顺序更新成功。';
$lang['This theme was not designed to be directly activated'] = '此主题并非为直接启用而设计';
$lang['Who can see this photo?'] = '图片对谁可见';
$lang['Pending Comments'] = '待审核的评论';
$lang['Menu Management'] = '菜单';
$lang['In your php.ini file, the upload_max_filesize (%sB) is bigger than post_max_size (%sB), you should change this setting'] = '在您的 php.ini 文件,upload_max_filesize (%sB) 大于 post_max_size (%sB),您需要修改此设置';
$lang['Exif extension not available, admin should disable exif use'] = 'Exif 扩展不可用,管理员应禁用 exif。';
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = '上传文件超过了在 php.ini 文件里的 upload_max_filesize 的限制:%sB';
$lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] = '上传文件超过了在 php.ini 文件里的 post_max_size 的限制:%sB';
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = '上传文件超过了在 HTML 表单指定的 MAX_FILE_SIZE 的限制';
$lang['The uploaded file was only partially uploaded'] = '上传文件只上传了一部分';
$lang['No file was uploaded'] = '没有文件被上传';
$lang['Missing a temporary folder'] = '缺少临时文件夹';
$lang['Failed to write file to disk'] = '文件写入失败';
$lang['File upload stopped by extension'] = '文件上传被扩展中止';
$lang['Unknown upload error'] = '未知上传错误';
$lang['Error on file "%s" : %s'] = '文件"%s"上有错误:%s';
$lang['%d of %d photos selected'] = '%d 张已选 / 总 %d 张图片';
$lang['Action'] = '操作';
$lang['Add a filter'] = '添加过滤器';
$lang['Album photos associated to the following albums: %s'] = '图片已关联到以下相册:%s';
$lang['Albums automatically sorted'] = '相册已自动排序';
$lang['All %d photos are selected'] = '全部 %d 张图片已选中';
$lang['Apply action'] = '执行操作';
$lang['automatic order'] = '自动排序';
$lang['Batch Manager'] = '批量管理';
$lang['Choose an action'] = '选择一项操作';
$lang['Delete orphan tags'] = '删除未关联任何图片的标签';
$lang['delete photo'] = '删除图片';
$lang['Duplicates'] = '副本';
$lang['include child albums'] = '包含子相册';
$lang['manual order'] = '手动排序';
$lang['No photo in the current set.'] = '当前集合没有图片。';
$lang['No photo selected, %d photos in current set'] = '没有图片被选中,当前集合中有 %d 张图片';
$lang['No photo selected, no action possible.'] = '没有图片被选中,不能执行任何操作。';
$lang['on the %d selected photos'] = '于此 %d 张所选图片';
$lang['Orphan tags deleted'] = '未关联任何图片的标签已被删除';
$lang['Refresh photo set'] = '刷新图片集';
$lang['Remove all filters'] = '删除所有过滤器';
$lang['remove author'] = '删除作者';
$lang['remove creation date'] = '删除创建日期';
$lang['remove this filter'] = '删除此过滤器';
$lang['remove title'] = '删除标题';
$lang['Selection'] = '选择';
$lang['Set author'] = '设置作者';
$lang['Set creation date'] = '设置创建日期';
$lang['Set title'] = '设置标题';
$lang['The whole page'] = '整页';
$lang['The whole set'] = '整个集合';
$lang['Type here the author name'] = '在此输入作者名称';
$lang['Type here the title'] = '在此输入标题';
$lang['Week starts on'] = '星期起始于';
$lang['You have %d orphan tags: %s.'] = '您有 %d 个未关联任何图片的标签:%s。';
$lang['Remove from caddie'] = '从标记图片库中移除';
$lang['Themes which need upgrade'] = '需更新的主题';
$lang['Languages which need upgrade'] = '需要更新的语言';
$lang['All themes are up to date.'] = '所有主题已更新。';
$lang['All plugins are up to date.'] = '所有插件已更新。';
$lang['All languages are up to date.'] = '所有语言已更新。';
$lang['Visit theme site'] = '浏览主题网站';
$lang['Visit language site'] = '浏览语言网站';
$lang['New Version'] = '新版本';




$lang['Obsolete Plugins'] = '过期的插件';
$lang['WARNING! This plugin does not seem to be compatible with this version of Piwigo.'] = '警告!此插件并不适用于这个版本的Piwigo。';
$lang['Do you want to activate anyway?'] = '您仍想启用吗?';
$lang['THIS PLUGIN IS NOW PART OF PIWIGO CORE! DELETE IT NOW.'] = '【这个插件现在已经是Piwigo核心的一部分,请马上删除它!】';
$lang['ERROR: THIS PLUGIN IS MISSING BUT IT IS INSTALLED! UNINSTALL IT NOW.'] = '错误:该插件的实际内容已丢失但记录中它已被安装,请马上卸载它。';
$lang['new'] = '新的';
$lang['No results'] = '没有结果';
$lang['Searching...'] = '搜索中...';
$lang['Type in a search term'] = '输入搜索关键字';


$lang['display'] = '显示';
$lang['Average rate'] = "平均分";
$lang['Rate'] = '评分';
$lang['Activate icon "new" next to albums and pictures'] = '启用相册和图片旁边的"new"图标';
$lang['Add a criteria'] = '添加条件';
$lang['Deactivate all'] = '停用所有';
$lang['Default photos order'] = '默认图片排序';
$lang['Restore'] = '恢复';
$lang['Restore default configuration. You will lose your plugin settings!'] = '恢复默认的配置,您将失去您的插件的设置!';
$lang['You can\'t define a default photo order because you have a custom setting in your local configuration.'] = '您不能设置默认的图片排序,因为您已在本地配置文件里有自定义设置。';
$lang['You have specified <i>$conf[\'order_by\']</i> in your local configuration file, this parameter in deprecated, please remove it or rename it into <i>$conf[\'order_by_custom\']</i> !'] = '您已在本地配置文件里定义了 <i>$conf[\'order_by\']</i>,此参数已不再使用了,请移除或者将其改名为 <i>$conf[\'order_by_custom\']</i> !';
$lang['Thumbnails generation in progress...'] = '正在生成缩略图...';
$lang['Photos generation in progress...'] = '正在生成图片...';
$lang['%s photos have been regenerated'] = '%s张图片已更新';
$lang['%s photos can not be regenerated'] = '%s张图片不能被更新';
$lang['Update in progress... Please wait.'] = '正在更新... 请稍等。';
$lang['Ignore this update'] = '忽略此更新';
$lang['Reset ignored updates'] = '重置已忽略的更新';
$lang['Update All'] = '更新所有';
$lang['ERROR'] = '错误';
$lang['Update Complete'] = '更新完毕';
$lang['Piwigo Update'] = 'Piwigo更新';
$lang['Extensions Update'] = '扩展更新';
$lang['All extensions are up to date.'] = '所有扩展已更新。';
$lang['Following plugins may not be compatible with the new version of Piwigo:'] = '以下插件可能与新版 Piwigo 不兼容:';
$lang['Following themes may not be compatible with the new version of Piwigo:'] = '以下主题可能与新版 Piwigo 不兼容:';
$lang['I decide to update anyway'] = '仍决定更新';
$lang['Update to Piwigo %s'] = '更新到 Piwigo %s';
$lang['Two updates are available'] = '两项更新均可用';
$lang['This is a minor update, with only bug corrections.'] = '这是一次次要更新,只是对bug的修正。';
$lang['This is a major update, with <a href="%s">new exciting features</a>.'] = '这是一次重要更新,有着<a href="%s">令人欣喜的新功能</a>。';
$lang['Some themes and plugins may be not available yet.'] = '一些主题和插件可能还不能使用。';
$lang['You can update to Piwigo %s directly, without upgrading to Piwigo %s (recommended).'] = '您可以直接更新到 Piwigo %s,不需先更新到 Piwigo %s(推荐)。';
$lang['Save Template Directory'] = '保存模板目录';
$lang['Dump Database'] = '转存数据库';
$lang['Include history data (Warning: server memory limit may be exceeded)'] = '包括历史数据(警告:可能会超出服务器内存限制)';
$lang['Unable to dump database.'] = '无法转存数据库。';
$lang['Some upgrades are available for extensions.'] = '有已更新的扩展。';
$lang['Ignore All'] = '忽略所有';
$lang['Width'] = '宽度';
$lang['Height'] = '高度';
$lang['Follow Orientation'] = '按照方向';
$lang['Graphics Library'] = '图形库';
$lang['Show menubar'] = '显示菜单栏';
$lang['Updates'] = '更新';
$lang['Crop'] = '裁切';
$lang['... or '] = '...或 ';
$lang['Create'] = '创建';
$lang['Start Upload'] = '开始上传';
$lang['You are using the Flash uploader. Problems? Try the <a href="%s">Browser uploader</a> instead.'] = '您正在使用Flash上传方式,若有问题,请尝试<a href="%s">网页上传</a>。';
$lang['You are using the Browser uploader. Try the <a href="%s">Flash uploader</a> instead.'] = '您正在使用网页上传方式,若有问题,请尝试<a href="%s">Flash上传</a>。';
$lang['Maximum file size: %sB.'] = '文件最大体积:%sB。';
$lang['Allowed file types: %s.'] = '允许的文件类型:%s。';
$lang['Approximate maximum resolution: %dM pixels (that\'s %dx%d pixels).'] = '最大的分辨率约:%dM 像素 (即 %dx%d 像素)。';
$lang['Manage Permissions'] = '管理权限';
$lang['Learn more'] = '了解更多';
$lang['Photo %s of %s'] = 'Photo %s of %s';
$lang['show details'] = '显示详情';
$lang['hide details'] = '隐藏详情';
$lang['Merge tags'] = '合并标签';
$lang['Select the destination tag'] = '选择目标标签';
$lang['(this tag will be deleted)'] = '(此标签将被删除)';
$lang['Confirm merge'] = '确认合并';
$lang['Merge selected tags'] = '合并选中的标签';
$lang['No destination tag selected'] = '没有选中的目的标签';
$lang['Tags <em>%s</em> merged into tag <em>%s</em>'] = '标签<em>%s</em>已并入标签<em>%s</em>';
$lang['Select at least two tags for merging'] = '请至少选择2个标签以合并';
$lang['Select an album'] = '选择一个相册';
$lang['By default, Piwigo will create a new websize from the HD (high definition) version of your photo.'] = '默认情况下,Piwigo将基于图片的HD(高清)版本为图片创建一个新的网页尺寸。';
$lang['If no HD is available and if the current websize is bigger than resize dimensions, Piwigo will move it as HD and create a downsized websize photo from it.'] = '若无高清图片且当前网页尺寸的图片大于重置尺寸,Piwigo会将其视为高清图片并用它生成较小尺寸的网页尺寸图片。';
$lang['An error has occured during upgrade.'] = '在升级过程中出现了一个错误。';
$lang['An error has occured during extract. Please check files permissions of your piwigo installation.<br><a href="%s">Click here to show log error</a>.'] = '在解压时出现了一个错误。请检查您 piwigo 安装文件的读写权限。<br><a href="%s">点此查看错误日志</a>';
$lang['Piwigo cannot retrieve upgrade file from server'] = 'Piwigo无法从服务器中获取升级文件';
$lang['%s has been successfully updated.'] = '%s更新成功。';
$lang['Activate comments'] = '启用评论';
$lang['Add tags'] = '添加标签';
$lang['Add to caddie'] = '添加到标记图片库';
$lang['Default comments order'] = '默认评论顺序';
$lang['Last import'] = '最后导入';
$lang['Original Size'] = '原始尺寸';
$lang['Photo name'] = '图片名称';
$lang['Predefined filter'] = '预定义过滤器';
$lang['Resize after upload'] = '上传后修改尺寸';
$lang['Send connection settings by email'] = '用邮件发送注册信息';
$lang['The original image quality must be a number between %d and %d'] = '源图片质量必须是在%d和%d之间的数字';
$lang['The original maximum height must be a number between %d and %d'] = '源图片最大高度必须是在%d和%d之间的数字';
$lang['The original maximum width must be a number between %d and %d'] = '源图片最大宽度必须是在%d和%d之间的数字';
$lang['With no album'] = '没有相册';
$lang['With no tag'] = '没有标签';
$lang['With no virtual album'] = '没有虚拟相册';
$lang['Zoom'] = '缩放';
$lang['A locked gallery is only visible to administrators'] = '被锁定的图库只对管理员可见';
$lang['administrators'] = '管理员';
$lang['Center of interest'] = '兴趣中心';
$lang['Gallery unlocked'] = '图库已解锁';
$lang['modified'] = '已修改';
$lang['Move to album'] = '移动到相册';
$lang['Not cropped correctly?'] = '剪裁不正确?';
$lang['Notify administrators when a comment is'] = '通知管理员,当一个评论 ';
$lang['pending validation'] = '待审核';
$lang['registered users'] = '注册用户';
$lang['Save visits in history for'] = '保存访问的历史记录for';
$lang['simple visitors'] = '单个访问者';
$lang['This album contains %d photos, added between %s and %s.'] = '此相册包含%d张图片,添加于%s和%s之间。';
$lang['This album contains %d photos, added on %s.'] = '此相册包含%d张图片,添加于%s。';
$lang['This album contains no photo.'] = '此相册中没有图片。';
$lang['Unlock gallery'] = '解锁图库';
$lang['<em>Piwigo for Android</em> application empowers you to connect your Android phone or table to your Piwigo gallery, create some albums and upload several photos at once.'] = '<em>Piwigo Android版</em> 使您能够从Android手机或平板电脑连接到您的Piwigo图库,方便您随时随地创建相册和上传图片。';
$lang['<em>Piwigo for iOS</em> application empowers you to connect to your Piwigo gallery from your iPhone, iPad or iPod Touch, create some albums and upload several photos at once.'] = '<em>Piwigo iOS版</em> 使您能够从iPhone、iPad或iPod Touch连接到您的Piwigo图库,方便您随时随地创建相册和上传图片。';
$lang['Applications'] = '应用程序';
$lang['apply automatic sort order'] = '应用自动排序';
$lang['Automatic sort order'] = '自动排序';
$lang['Available on'] = '可用在';
$lang['Available versions for'] = '可用版本';
$lang['cancel manual order'] = '取消手动排序';
$lang['Cancel'] = '取消';
$lang['List'] = '列表';
$lang['Piwigo for Android'] = 'Piwigo Android版';
$lang['Piwigo for iOS (iPhone, iPad, iPod Touch)'] = 'Piwigo iOS版 (iPhone, iPad, iPod Touch)';
$lang['Save manual order'] = '保存手动排序';
$lang['Web Form'] = '浏览器';
$lang['You can activate only one mobile theme.'] = '您只能启用一套手机版主题';
$lang['%u users have automatic permission because they belong to a granted group.'] = '%u 用户因属于有权限的组,所以自动拥有权限。';
$lang['Adobe Photoshop Lightroom is a photography software designed to manage large quantities of digital images and doing post production work.'] = 'Adobe公司的Photoshop Lightroom是一款图片处理软件,用于管理大量的数字图像和后期制作工作。';
$lang['any visitor can see this album'] = '任何访问者都可查看此相册';
$lang['Aperture is a powerful tool to refine images and manage massive libraries on Mac.'] = 'Aperture是Mac上一个功能强大的图片管理、编辑工具。';
$lang['Aperture is designed for professional photographers with iPhoto simplicity.'] = 'Aperture用于在iPhoto上进行专业的图片处理。';
$lang['Delete multiple size images'] = '删除多尺寸图片';
$lang['digiKam is an advanced digital photo management free software for Linux, Windows, and MacOSX.'] = 'digiKam是Linux,Windows和MacOSX平台上的免费高级数码照片管理软件。';
$lang['digiKam is designed for photographers who want to view, manage, edit, enhance, organize, tag, and share photographs.'] = 'digiKam可以查看,管理,编辑,增强,组织,标记和共享图片。';
$lang['Features include gallery browsing, album creation and photo upload.'] = '其特点包括浏览图库,创建相册和上传图片。';
$lang['Generate multiple size images'] = '生成多尺寸图片';
$lang['Groups and users'] = '组和用户';
$lang['include photos with lower privacy level'] = '包括隐私级别更低的图片';
$lang['iPhoto is the default photo manager on MacOSX. The Piwigo export plugin let you create new albums and export your photos directly from iPhoto to your Piwigo photo gallery.'] = 'iPhoto是MacOSX上的默认照片管理器。Piwigo export插件可以让您创建新的相册,并将您的图片从iPhoto直接导出到您的Piwigo图库。';
$lang['On your Linux, simply install Shotwell with your package manager and the activate Piwigo publishing option.'] = '在您的Linux上,只需用安装软件包管理器安装Shotwell并启用Piwigo的发布选项。';
$lang['Permission granted for groups'] = '为组授予的权限';
$lang['Permission granted for users'] = '为用户授予的权限';
$lang['Piwigo export plugin for Aperture'] = 'Piwigo export插件 for Aperture';
$lang['Piwigo export plugin for iPhoto'] = 'Piwigo export插件 for iPhoto';
$lang['Piwigo publish plugin for digiKam'] = 'Piwigo publish插件 for digiKam';
$lang['Piwigo Publish plugin for Lightroom'] = 'Piwigo publish插件 for Lightroom';
$lang['Piwigo publish plugin for Shotwell'] = 'Piwigo publish插件 for Shotwell';
$lang['ReGalAndroid (RemoteGallery client for Android) is an open source (GPL v3) Piwigo client for the Android platform.'] = 'ReGalAndroid (Android RemoteGallery客户端) 是一个开源(GPL v3)的Android平台Piwigo客户端。';
$lang['Select groups...'] = '选择组';
$lang['Select users...'] = '选择用户...';
$lang['Shotwell is an open source digital photo organizer that runs on Linux. It is the default photo manager in Ubuntu and Fedora.'] = 'Shotwell是一个运行在Linux上的开源数码照片管理软件。它是Ubuntu和Fedora的默认照片管理软件。';
$lang['The Piwigo export plugin allows you to create albums and export photos.'] = 'Piwigo export插件允许您创建相册和导出图片。';
$lang['The Piwigo publish Plug-in allows you to export and synchronize photos from Lightroom directly to your Piwigo photo gallery.'] = 'Piwigo publish插件允许您从Lightroom直接导出和同步图片到您的Piwigo图库。';
$lang['There is no group in this gallery.'] = '这个图库中还没有组。';
$lang['To export your photos from digiKam to Piwigo, simply install digiKam and the Kipi-plugins.'] = '只要安装digiKam和Kipi插件,就可以从digiKam中导出图片到Piwigo。';
$lang['visitors need to login and have the appropriate permissions to see this album'] = '需要登录且有适当的权限才能查看这个相册';
$lang['Apply watermark if height is bigger than'] = '如果高度大于此值则添加水印:';
$lang['Apply watermark if width is bigger than'] = '如果宽度大于此值则添加水印:';
$lang['By default, the center of interest is placed in the middle of the photo.'] = '默认情况下,兴趣中心置于图片的中心。';
$lang['For photo sizes with crop, such as "Square", Piwigo will do its best to include the center of interest.'] = '对于剪裁过的图片尺寸,如“正方形”,Piwigo将尽可能把兴趣中心包含在内。';
$lang['No group is permitted to see this private album'] = '没有组被允许查看此非公开相册';
$lang['Opacity'] = '透明度';
$lang['Permission management'] = '权限管理';
$lang['Photo sizes with crop'] = '图片剪裁尺寸';
$lang['Select a file'] = '选择文件';
$lang['Select a zone with your mouse to define a new center of interest.'] = '用鼠标选择一个区域,以定义一个新的兴趣中心。';
$lang['The center of interest is the most meaningful zone in the photo.'] = '兴趣中心是图片中最有意义的区域。';
$lang['X Position'] = 'X轴位置';
$lang['X Repeat'] = 'X轴平铺';
$lang['Y Position'] = 'Y轴位置';
$lang['add a new watermark'] = '添加新水印';
$lang['bottom left corner'] = '左下角';
$lang['bottom right corner'] = '右下角';
$lang['custom'] = '自定义';
$lang['middle'] = '中';
$lang['top left corner'] = '左上角';
$lang['top right corner'] = '右上角';
$lang['Multiple Size'] = '多尺寸';
$lang['%d days'] = '%d天';
$lang['%d day'] = '%d天';
$lang['%d hours'] = '%d小时';
$lang['%d hour'] = '%d小时';
$lang['%d minutes'] = '%d分';
$lang['%d minute'] = '%d分';
$lang['%d months'] = '%d个月';
$lang['%d month'] = '%d个月';
$lang['%d seconds'] = '%d秒';
$lang['%d second'] = '%d秒';
$lang['%d years'] = '%d年';
$lang['%d year'] = '%d年';
$lang['%s ago'] = '%s以前';
$lang['%s in the future'] = '%s in the future';
$lang['Added by %s'] = '由%s添加';
$lang['Numeric identifier : %d'] = '数字ID:%d';
$lang['Original file : %s'] = '原文件:%s';
$lang['Posted %s on %s'] = 'Posted %s on %s';
$lang['Rated %d times, score : %.2f'] = '评分:%d次,得分:%.2f';
$lang['Sharpen'] = '锐化';
$lang['Visited %d times'] = '访问数:%d';
$lang['Watermark'] = '水印';
$lang['%d weeks'] = '%d周';
$lang['%d week'] = '%d周';
$lang['Edit photo'] = '编辑图片';
$lang['create a new site'] = '创建一个新站点';
$lang['No order field selected'] = '未选择排序字段';
$lang['Duplicate selected tags'] = '复制选中的标签';
$lang['Name of the duplicate'] = '副本的名称';
$lang['Source tag'] = '源标签';
$lang['Tag "%s" is now a duplicate of "%s"'] = '标签 "%s" 已是标签 "%s" 的一个副本';
$lang['Landscape'] = '风景(宽>高)';
$lang['Manage photos'] = '管理图片';
$lang['Minimum height'] = '最小高度';
$lang['Minimum width'] = '最小宽度';
$lang['Number of albums per page'] = '每页相册数';
$lang['Panorama'] = '全景图';
$lang['Portrait'] = '人像(高>宽)';
$lang['View in gallery'] = '在图库中查看';
$lang['The version of %s [%s] installed is not compatible with the version required ']['%s'] = '所安装的 %s [%s] 版本跟所要求的版本 [%s] 不兼容';
$lang['Ratio'] = '比例';
$lang['between %.2f and %.2f'] = '在 %.2f 与 %.2f 之间';
$lang['between %d and %d pixels'] = '在 %d 与 %d 像素之间';
$lang['This group will be set to default'] = '该组将用作默认组';
$lang['This group will be unset to default'] = '该组将不再用作默认组';
$lang['No members to manage'] = '没有可管理的用户';
$lang['Please select at least two groups'] = '请至少选择两个组';
$lang['Rename'] = '重命名';
$lang['Type here the name of the new group'] = '在此输入新组的名称';
$lang['Duplicate'] = '复制';
$lang['Manage the members'] = '管理用户';
$lang['Merge selected groups'] = '合并所选组';
$lang['No group selected, no action possible.'] = '没有组被选中,不能执行任何操作。';
$lang['Purge user cache'] = '清除用户缓存';
$lang['The picture dimensions will be reduced to %dx%d pixels.'] = '相片的分辨率将会被减少到 %dx%d 象素.';
$lang['Resize after upload disabled due to the use of GD as graphic library'] = '由于使用 GD 图形库,因此禁用上传后调整大小';
$lang['Select at least one tag'] = '至少选择一个标签';
$lang['Basic settings'] = '基本设置';
$lang['General'] = '总体';
$lang['Mail theme'] = '邮件主题';
$lang['No user selected of %d users'] = '%d 个用户中无用户被选中';
$lang['No user selected, no action possible.'] = '无用户被选中,无法执行。';
$lang['Password updated'] = '密码已更新';
$lang['Registered on %s, %s.'] = '注册于 %s, %s。';
$lang['Show %s users'] = '显示 %s 个用户';
$lang['Showing %s to %s of %s users'] = '显示第 %s 至 %s 个用户,共 %s 个用户';
$lang['Update user'] = '更新用户';
$lang['User %s added'] = '用户 %s 已添加';
$lang['User %s updated'] = '用户 %s 已更新';
$lang['Users modified'] = '用户已修改';
$lang['on the %d selected users'] = '于 %d 个已选中的用户';
$lang['All %d users are selected'] = '已选中全部 %d 个用户';
$lang['Change password'] = '更改密码';
$lang['Change username'] = '更改用户名';
$lang['Last visit on %s, %s.'] = '于 %s, %s 的最后访问。';
$lang['Loading...'] = '加载中…';
$lang['No matching user found'] = '未发现匹配的用户';
$lang['%d of %d users selected'] = '已选中用户数/总数:%d / %d';
$lang['(filtered from %s total users)'] = '(已从 %s 个总用户中过滤)';
$lang['Close user details'] = '关闭用户明细';
$lang['Open user details'] = '打开用户明细';
$lang['close'] = '关闭';
$lang['Activate it now'] = '马上激活';
$lang['Allow users to add a link to their website'] = '允许用户添加一个链接到其网站';
$lang['Empty caddie'] = '清空标记图片库';
$lang['Impossible to deactivate the default theme.'] = '默认主题无法被停用。';
$lang['Mail address is mandatory for registration'] = '注册时邮箱地址为必填项';
$lang['The settings for the guest are from the %s user'] = '游客的设置取自用户 %s';
$lang['No and unlock sub-albums'] = '否,并解锁子相册';
$lang['based on'] = '基于';
$lang['between %s and %s MB'] = '在 %s 和 %s MB 之间';
$lang['date & time'] = '日期与时间';
$lang['file name'] = '文件名';
$lang['width & height'] = '宽度&高度';
$lang['Upload in progress'] = '正在上传';
$lang['Each email sent will contain its own automatic authentication key on links, valid for %s.'] = '每封发出的email中的链接将包含自动生成的唯一验证密钥,有效期 %s。';
$lang['For security reason, authentication keys do not work for administrators.'] = '出于安全原因,验证密钥对管理员不起作用。';
$lang['Edit user'] = '编辑用户';
$lang['No recipient selected'] = '未选择收件人';
$lang['No user is permitted to see this private album'] = '没有用户被允许查看该非公开相册';
$lang['Recipients'] = '收件人';
$lang['Y Repeat'] = 'Y轴平铺';
$lang['Delete %d orphan photos'] = '删除 %d 没有任何关联的图片';
$lang['Orphans'] = '没有任何关联';