aboutsummaryrefslogtreecommitdiffstats
path: root/language/zh_HK/admin.lang.php
blob: b6e310f56761c6fcc27b743f0c2cd9993a0b9f0e (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
<?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 photos uploaded'] = '%d 相片已被上傳';
$lang['%d photos were deleted'] = '%d 相片已被上傳';
$lang['%d physical'] = '%d 實體';
$lang['%d physicals'] = '%d 實體';
$lang['%d second'] = '%d 秒';
$lang['%d seconds'] = '%d 秒';
$lang['%d tag'] = '%d 標籤';
$lang['%d tags'] = '%d 標籤';
$lang['%d user'] = '%d 用戶';
$lang['%d user comment rejected'] = '%d 用戶意見已被拒絕';
$lang['%d user comment validated'] = '%d 用戶意見已被接納';
$lang['%d user comments rejected'] = '%d 用戶意見已被拒絕';
$lang['%d user comments validated'] = '%d 用戶意見已被接納';
$lang['%d user deleted'] = '%d 用戶已被刪除';
$lang['%d user was not updated.'] = '%d 用戶沒有更新';
$lang['%d user was updated.'] = '%d 用戶已被更新';
$lang['%d users'] = '%d 用戶';
$lang['%d users deleted'] = '%d 用戶已被刪除';
$lang['%d users were not updated.'] = '%d 用戶沒有更新';
$lang['%d users were updated.'] = '%d 用戶已被更新';
$lang['%d mail was not sent.'] = '%s 郵件未被發送';
$lang['%d mail was sent.'] = '%s 郵件已被發送';
$lang['%d mails were not sent.'] = '%s 郵件未被發送';
$lang['%d mails were sent.'] = '%s 郵件已被發送';
$lang['%d of %d photos selected'] = '%d / %d 相片被選取';
$lang['%d parameter was updated.'] = '%d 參數已更新';
$lang['%d parameters were updated.'] = '%d 參數已更新';
$lang['%d photo was deleted'] = '%d 圖片已被刪除';
$lang['%d guest'] = '%d 訪客';
$lang['%d guests'] = '%d 訪客';
$lang['%d hour'] = '%d 小時';
$lang['%d hours'] = '%d 小時';
$lang['%d line filtered'] = '%d 行被過濾';
$lang['%d lines filtered'] = '%d 行被過濾';
$lang['%d member'] = '%d 會員';
$lang['%d members'] = '%d 會員';
$lang['%d minute'] = '%d 分鐘';
$lang['%d minutes'] = '%d 分鐘';
$lang['%d month'] = '%d 月';
$lang['%d months'] = '%d 月';
$lang[' and %d virtual'] = '和 %d 虛擬';
$lang[' and %d virtuals'] = '和 %d 虛擬';
$lang['%d album including'] = '包含 %d 相簿';
$lang['%d album moved'] = '%d 相簿已移走';
$lang['%d albums including'] = '包含 %d 相簿';
$lang['%d albums moved'] = '%d 相簿已移走';
$lang['%d anomalies have been detected corrected.'] = '揁察及修正了 %d 個異常';
$lang['%d anomalies have been detected.'] = '揁察到 %d 個異常';
$lang['%d anomalies have been ignored.'] = '%d 異常被忽略';
$lang['%d anomalies have not been corrected.'] = '不能修正 %d 個異常';
$lang['%d anomaly has been corrected.'] = '修正了 %d 異常';
$lang['%d anomaly has been detected.'] = '揁察到 %d 異常';
$lang['%d anomaly has not been corrected.'] = '不能修正 %d 異常';
$lang['%d association'] = '%d 聯繫';
$lang['%d associations'] = '%d 聯繫';
$lang['%d anomaly has been ignored.'] = '%d 異常被忽略';
$lang['%d day'] = '%d 天';
$lang['%d days'] = '%d 天';
$lang['%d group'] = '%d 群組';
$lang['%d groups'] = '%d 群組';
$lang['ranks'] = '等級';
$lang['registered users'] = '已註冊用戶';
$lang['registration date'] = '註冊日期';
$lang['selection'] = '選擇';
$lang['simple visitors'] = '簡單訪客';
$lang['private'] = '私人';
$lang['public'] = '公開';
$lang['randomly represented'] = '隨機相簿縮圖';
$lang['sub-albums'] = '相簿子 ';
$lang['synchronize files structure with database'] = '檔案結構跟數據庫同步';
$lang['target'] = '目標';
$lang['test'] = '測試';
$lang['test this remote site'] = '測試這個遠程地址';
$lang['the forum'] = '討論區';
$lang['the wiki'] = '維基百科';
$lang['top left corner'] = '左上角';
$lang['top right corner'] = '右上角  ';
$lang['total time'] = '總算時間';
$lang['unit mode'] = '個人模式 ';
$lang['unknown'] = '不知名的 ';
$lang['unset'] = '去設定除 ';
$lang['update the database from files'] = '以檔案來更新數據庫';
$lang['user "%s" added'] = '用戶"%s"已增加';
$lang['user_status_admin'] = '管理員';
$lang['user_status_generic'] = '基本';
$lang['user_status_guest'] = '嘉賓';
$lang['user_status_normal'] = '用戶';
$lang['user_status_webmaster'] = '網主';
$lang['visitors need to login and have the appropriate permissions to see this album'] = '訪客需要登入及指定權限才看到相簿';
$lang['width must be a number superior to'] = '闊度一定要大過';
$lang['wrong filename'] = '錯誤檔案名稱';
$lang['A new version of Piwigo is available.'] = '新版本的Piwigo已經可用';
$lang['Add'] = '新增';
$lang['Active Languages'] = '現行的插件';
$lang['Active Plugins'] = '現行的插件';
$lang['%d waiting for validation'] = '%d 等候審批';
$lang['%d week'] = '%d 星期';
$lang['%d weeks'] = '%d 星期';
$lang['%d year'] = '%d 年';
$lang['%d years'] = '%d 年';
$lang['%s ago'] = '%s 之前';
$lang['%s has been successfully updated.'] = '%s 已成功更新';
$lang['%s in the future'] = '%s 在將來';
$lang['%s must be to set to false in your local/config/config.inc.php file'] = '%s 在local/config/config.inc.php檔案內必需設定為錯誤.';
$lang['%s photos can not be regenerated'] = '%s 相片不能重新製作';
$lang['%s photos have been regenerated'] = '%s 相片已成功製作';
$lang['%s value is not correct file because exif are not supported'] = '%s 數目錯誤因為不支援exif';
$lang['%u users have automatic permission because they belong to a granted group.'] = '%u 用戶已經自動取得許可, 因為他們屬於一個已審批的組群.';
$lang['(this tag will be deleted)'] = '(這個標籤將會被刪除)';
$lang['+ Add an upload box'] = '+加一個上傳框架';
$lang[', click on'] = ', 按在';
$lang['... or '] = '...或';
$lang['A locked gallery is only visible to administrators'] = '已封鎖的相簿祗會被管理員看到';
$lang['albums added in the database'] = '相簿已在數量庫增加';
$lang['albums deleted in the database'] = '相簿已在數量庫刪除';
$lang['all'] = '全部';
$lang['an error happened'] = '一個錯誤出現';
$lang['and'] = '及';
$lang['any visitor can see this album'] = '所有訪客都可看到這個相簿';
$lang['apply automatic sort order'] = '行使自動依次序排序';
$lang['automatic order'] = '自動排序';
$lang['average time'] = '平均時間';
$lang['between'] = '之間';
$lang['between %.2f and %.2f'] = '%.2f 及 %.2f 之間';
$lang['between %d and %d pixels'] = '%d 及 %d 像點之間';
$lang['bottom left corner'] = '左下角';
$lang['bottom right corner'] = '右下角 ';
$lang['cancel manual order'] = '取消手動排序';
$lang['clean'] = '清空';
$lang['confirm'] = '確定';
$lang['Anomaly'] = '異常';
$lang['Album name'] = '相簿名稱';
$lang['Album updated successfully'] = '相簿更新成功';
$lang['Albums automatically sorted'] = '相簿自動排列';
$lang['All %d photos are selected'] = '所有%d相片已選';
$lang['All languages are up to date.'] = '所有語言已是最新版本';
$lang['All optimizations have been successfully completed.'] = '所有優化已已經完成';
$lang['All plugins are up to date.'] = '所有插件已是最新版本';
$lang['All themes are up to date.'] = '所有主題佈置已是最新版本';
$lang['An error has occured during upgrade.'] = '升級時發生錯誤';
$lang['An error occured during extraction (%s).'] = '檔案(%s)解壓時發生錯誤';
$lang['Allow rating'] = '允許評分';
$lang['Allow user customization'] = '允許用戶更改設定';
$lang['Allow user registration'] = '允許用戶登記';
$lang['Allow users to delete their own comments'] = '允許用戶刪除自己的評語';
$lang['Allow users to edit their own comments'] = '允許用戶修改自己的評語';
$lang['Allowed file types: %s.'] = '允許檔案種類: %s.';
$lang['Add Photos'] = '新增相片';
$lang['Add a user'] = '新增用戶';
$lang['Add group'] = '新增用戶群';
$lang['Add New Language'] = '新增新語言';
$lang['Add New Theme'] = '新增新主題佈置';
$lang['ACCESS_0'] = '隨意使用';
$lang['ACCESS_1'] = '使用所有';
$lang['ACCESS_2'] = '進入註冊用戶';
$lang['ACCESS_3'] = '進入管理員';
$lang['ACCESS_4'] = '進入網頁管理員';
$lang['ACCESS_5'] = '沒有使用權';
$lang['Access type'] = '使用權種類';
$lang['Action'] = '行動';
$lang['Actions'] = '行動';
$lang['Activate'] = '啟動  ';
$lang['Activate Navigation Bar'] = '啟動導航橫槓';
$lang['Activate Navigation Thumbnails'] = '啟動導航縮圖';
$lang['Activate comments'] = '啟動意見';
$lang['Activate icon "%s"'] = '啟動圖標"%s"';
$lang['Activate icon "new" next to albums and pictures'] = '啟動圖標"new"在相簿及相片旁';
$lang['Active Themes'] = '啟動主題佈置';
$lang['Hello'] = '你好 ';
$lang['Hello,'] = '你好,';
$lang['Help Me'] = '幫助我';
$lang['Hide'] = '隱藏';
$lang['High definition'] = '高畫質';
$lang['High definition enabled'] = '高畫質已啟用';
$lang['History'] = '歷史';
$lang['Hit'] = '點擊';
$lang['Hour'] = '小時';
$lang['Hoverbox display'] = '懸停框顯示';
$lang['I decide to update anyway'] = '我決定要更新';
$lang['IP'] = 'IP';
$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['If you encounter problems or have any question, please send a message to'] = '如有遇到故障或問題,請發郵件至 ';
$lang['Ignore All'] = '忽略全部';
$lang['Ignore selected anomalies'] = '忽視選擇異常';
$lang['Ignore this update'] = '忽略此更新';
$lang['Image Quality'] = '圖片質量';
$lang['Image id'] = '圖片ID';
$lang['Images manual order was saved'] = '圖片手動排序已保存';
$lang['Gallery unlocked'] = '畫廊已解鎖';
$lang['General'] = '普通';
$lang['General statistics'] = '普通統計';
$lang['Generate multiple size images'] = '產生多種大小的圖像';
$lang['Get Support on Piwigo Forum'] = '在 Piwigo 論壇上獲取幫助';
$lang['Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'] = '給予根目錄下的 "%s" 目錄寫權限 (chmod 777) 以完成 Piwigo 的安裝';
$lang['Go to'] = '轉至 ';
$lang['Go to %s or %s for more informations'] = '獲取更多信息,請到 %s 或者 %s ';
$lang['Grant selected groups'] = '對所選群組授權';
$lang['Grant selected users'] = '對所選用戶授權';
$lang['Graphics Library'] = '圖庫';
$lang['Group'] = '群組';
$lang['Group management'] = '群組管理';
$lang['Group name'] = '群組名稱';
$lang['Groups'] = '群組';
$lang['Groups and users'] = '群組別和用戶';
$lang['Guest Settings'] = '訪客設定';
$lang['Guest cannot be deleted'] = '不能刪除訪客';
$lang['Guests'] = '訪客';
$lang['Height'] = '高度';
$lang['Extend for templates'] = '擴充模板';
$lang['Extensions Update'] = '擴充更新';
$lang['FTP + Synchronization'] = 'FTP + 同步';
$lang['Failed to write file to disk'] = '檔案寫入失敗';
$lang['Features include gallery browsing, album creation and photo upload.'] = '功能包括:畫廊瀏覽、建立相冊和照片上傳';
$lang['File'] = '檔案';
$lang['File upload stopped by extension'] = '擴展使文件上傳停止';
$lang['File/directory read error'] = '檔案/目錄的讀取錯誤';
$lang['Find a new representant by random'] = '搜尋一個新的隨機相冊縮略圖';
$lang['Follow Orientation'] = '定位';
$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['For photo sizes with crop, such as "Square", Piwigo will do its best to include the center of interest.'] = '如選擇相片剪裁(如「正方形」),Piwigo會盡可能保留相片的焦點';
$lang['Forbid this language to users'] = '禁止用戶使用此語言';
$lang['Forbid this theme to users'] = '禁用此主題';
$lang['Forbidden'] = '禁止';
$lang['Form'] = '表格';
$lang['GD library is missing'] = '缺少GD庫';
$lang['GD version'] = 'GD版本';
$lang['Gallery title'] = '圖庫標題';
$lang['Edit ranks'] = '編輯排名';
$lang['Edit selected tags'] = '編輯所選標籤';
$lang['Edit tags'] = '編輯標籤';
$lang['Element'] = '單元';
$lang['Element type'] = '單元類型';
$lang['Email administrators when a comment is deleted'] = '當評論被刪除後,發郵件通知管理員';
$lang['Email administrators when a comment is modified'] = '當評論被修改後,發郵件通知管理員';
$lang['Email admins when a comment requires validation'] = '當用戶要求確認他的評論時通知管理員';
$lang['Email admins when a new user registers'] = '當有新的使用者註冊就通知管理員';
$lang['Email admins when a valid comment is entered'] = '當用戶發表評論時就通知管理員';
$lang['Environment'] = '環境';
$lang['Error list'] = '錯誤清單';
$lang['Error on file "%s" : %s'] = '文件上的錯誤 "%s" : %s';
$lang['Error when sending email to %s [%s].'] = '發送郵件 給 %s [%s]發生了錯誤.';
$lang['Errors caption'] = '錯誤說明';
$lang['Everybody'] = '所有人';
$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['Exif extension not available, admin should disable exif use'] = 'Exif 擴展不能使用,管理員應該禁用 exif 功能。';
$lang['Discover album:'] = '探索相冊:';
$lang['Display options'] = '顯示選項';
$lang['Dissociate from album'] = '從相冊裡分離';
$lang['Dissociated'] = '取消聯繫';
$lang['Do you want to activate anyway?'] = '無論如何都要啟動嗎?';
$lang['Documentation'] = '檔案';
$lang['Does not represent'] = '不是縮略圖';
$lang['Download,'] = '下載,';
$lang['Downloads'] = '下載';
$lang['Drag to re-order'] = '點擊並拖動以重新排序';
$lang['Drop into album'] = '選擇相冊';
$lang['Dump Database'] = '轉儲資料庫';
$lang['Duplicate'] = '重複';
$lang['Duplicate selected tags'] = '重複選取標籤';
$lang['Duplicates'] = '重複';
$lang['ERROR'] = '錯誤';
$lang['ERROR: THIS PLUGIN IS MISSING BUT IT IS INSTALLED! UNINSTALL IT NOW.'] = '錯誤:這個插件雖已安裝但並不存在! 請立即移除它!';
$lang['Edit album'] = '修改相冊';
$lang['Edit album permissions'] = '管理相冊權限';
$lang['Edit photo'] = '編輯相片';
$lang['Default display'] = '預設顯示資訊';
$lang['Default photos order'] = '預設的相片順序';
$lang['Default user cannot be deleted'] = '不能刪除預設用戶';
$lang['Default user does not exist'] = '預設用戶不存在';
$lang['Delete Representant'] = '刪除相冊縮略圖';
$lang['Delete multiple size images'] = '刪除多種大小的圖像';
$lang['Delete orphan tags'] = '刪除沒被關聯的標籤';
$lang['Delete selected photos'] = '刪除圖片';
$lang['Delete selected tags'] = '刪除所選標籤';
$lang['Delete selected users'] = '刪除所選用戶';
$lang['Delete this language'] = '刪除此語言';
$lang['Delete this theme'] = '刪除此主題';
$lang['Deleted on'] = '刪除於';
$lang['Deletions'] = '刪除';
$lang['Deny selected groups'] = '拒絕所選群組';
$lang['Deny selected users'] = '拒絕所選的用戶';
$lang['Description'] = '描述';
$lang['Detailed informations'] = '詳細信息';
$lang['Directory'] = '目錄';
$lang['Directory does not exist'] = '目錄不存在';
$lang['Create the "%s" directory at the root of your Piwigo installation'] = '建立"%s"在安裝Piwigo的根目錄下';
$lang['Complementary mail content'] = '郵件附加內容';
$lang['Configuration'] = '設定';
$lang['Confirm merge'] = '確認合併';
$lang['Continue processing treatment'] = '正在繼續處理中...';
$lang['Correction'] = '修正';
$lang['Correction applied with error'] = '修正適用的錯誤';
$lang['Correction applied with success'] = '成功修正';
$lang['Correction the anomaly will cancel the fact that it\'s ignored'] = '的不再被忽視異的修正';
$lang['Create'] = '建立';
$lang['Create this site'] = '建立網站';
$lang['Crop'] = '剪裁';
$lang['Current name'] = '現用名';
$lang['Database'] = '現用名';
$lang['Database synchronization with files'] = '根據文件來同步資料庫';
$lang['Date'] = '日期';
$lang['Day'] = '日';
$lang['Deactivate'] = '停用';
$lang['Deactivate all'] = '停用所有';
$lang['Default comments order'] = '預設評論順序';
$lang['Can\'t connect to server.'] = '無法連接到服務器。';
$lang['Can\'t create temporary file.'] = '無法建立臨時文件。';
$lang['Can\'t download archive.'] = '無法下載歸檔文件。';
$lang['Can\'t read or extract archive.'] = '無法讀取或解壓歸檔文件.';
$lang['Cancel'] = '取消';
$lang['Cannot delete the old permalink !'] = '舊的固定連結不能被刪除!';
$lang['Center of interest'] = '中心愛好';
$lang['Change Admin Colors'] = '更改管理員後台顏色';
$lang['Change password'] = '更改密碼';
$lang['Change username'] = '更改用戶名';
$lang['Check all'] = '檢查全部';
$lang['Check automatic corrections'] = '檢查自動修正';
$lang['Check for updates'] = '檢查是否有更新';
$lang['Check for upgrade'] = '檢查是否有升級';
$lang['Check for upgrade failed for unknown reasons.'] = '檢查是否有升級失敗由於未知原因。';
$lang['Check integrity'] = '完整性檢查';
$lang['Choose an action'] = '選擇一個動作';
$lang['Choose an option'] = '選擇一個選項';
$lang['Classic display'] = '經典顯示';
$lang['Comments for all'] = '評論所有的';
$lang['Are you sure you want to install this plugin?'] = '確定安裝此插件嗎?';
$lang['Associate to album'] = '關聯到相冊';
$lang['Associated'] = '已關聯';
$lang['Authorize users to add comments on selected albums'] = '讓用戶可在所選相冊裡發表評論';
$lang['Authorized'] = '已授權';
$lang['Automatic correction'] = '自動修改';
$lang['Automatic sort order'] = '自動排序';
$lang['Available on'] = '可用的';
$lang['Available only with HTML format'] = '僅適用於HTML格式';
$lang['Available versions for'] = '可用的版本是';
$lang['Average rate'] = '平均分';
$lang['Basic settings'] = '基本設置';
$lang['Batch Manager'] = '批量管理';
$lang['Bound Theme'] = '綁定主題';
$lang['By %s'] = '按 %s';
$lang['By default, Piwigo will create a new websize from the HD (high definition) version of your photo.'] = '在預設狀況下,Piwigo 將從原照片的高清晰度版本,建立另一個適用於網頁的尺寸版本。';
$lang['By default, the center of interest is placed in the middle of the photo.'] = '在預設情況下,焦點是擺在相片的中間';
$lang['By rank'] = '按等級';
$lang['Caddie'] = '購物籃';
$lang['Caddie management'] = '購物籃管理';
$lang['Album list management'] = '相冊清單管理';
$lang['Album manual order was saved'] = '相冊手動排序已保存';
$lang['Album photos associated to the following albums: %s'] = '相片已關聯到相冊:%s';
$lang['Albums authorized thanks to group associations'] = '相冊群組織授權感謝協會';
$lang['All %d users are selected'] = '所有%d的用戶都被選中';
$lang['All extensions are up to date.'] = '所有的擴展已是最新的';
$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['An information email was sent to group "%s"'] = '已向群組"%s"的所有成員發送了信息郵件';
$lang['Anyway only webmasters can see this tab and never administrators.'] = '任何人都不能使用此標籤(網管除外).';
$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['Applications'] = '申請';
$lang['Apply action'] = '套用';
$lang['Apply selected corrections'] = '套用所選的修正';
$lang['Apply to sub-albums'] = '套用到子相冊';
$lang['Apply watermark if height is bigger than'] = '使用浮水印當高度大於';
$lang['Apply watermark if width is bigger than'] = '使用浮水印當寬度大於';
$lang['Approximate maximum resolution: %dM pixels (that\'s %dx%d pixels).'] = '大約最高解像度: %dM像素 (即 %dx%d像素).';
$lang['Are you sure to install this upgrade? You must verify if this version does not need uninstallation.'] = '確定安裝此更新嗎? 你必須核實無需卸載操作再進行安裝此更新.';
$lang['Are you sure you want to delete this plugin?'] = '確定要刪除此插件嗎?';
$lang['%d of %d users selected'] = '%d到%d位用戶選擇';
$lang['(filtered from %s total users)'] = '(共%s用戶被過濾)';
$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>Android 版的Piwigo</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>iOS 版的Piwigo</em>允許您從iPhone, iPad 或 iPod Touch 連接到您的Piwigo畫廊,建立多個相冊並一次上傳多張相片。';
$lang['Add a criteria'] = '增加准則';
$lang['Add a filter'] = '增加篩選';
$lang['Add a tag'] = '增加標籤';
$lang['Add a virtual album'] = '增加虛擬相冊';
$lang['Add another set of photos'] = '增加另一組相片';
$lang['Add detailed content'] = '增加內容細節';
$lang['Add tags'] = '增加標籤';
$lang['Add to caddie'] = '放入購物籃';
$lang['Add write access to the "%s" directory'] = '為"%s"目錄增加寫入權限';
$lang['Add/delete a permalink'] = '增加/刪除一個固定連結';
$lang['Added by %s'] = '由 %s 加入';
$lang['Administration Home'] = '管理員首頁';
$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['Advanced features'] = '進階功能';
$lang['Album "%s" has been added'] = '已增加相冊 "%s" ';
$lang['Album "%s" now contains %d photos'] = '相冊"%s"現已包含了%d張相片';
$lang['pending validation'] = '待審定';
$lang['photos added in the database'] = '增加圖片到資料庫';
$lang['photos candidates for metadata synchronization'] = '對應同步元數據的候選圖片';
$lang['photos deleted from the database'] = '圖片已從資料庫中刪除';
$lang['photos informations synchronized with files metadata'] = '相片信息已和檔案metadata同步';
$lang['photos per page'] = '每頁圖片';
$lang['photos updated in the database'] = '更新資料庫中的圖片';
$lang['pixels'] = '像素';
$lang['reduce to single existing albums'] = '減少現有的單獨相冊';
$lang['remove author'] = '刪除作者';
$lang['remove creation date'] = '刪除建立日期';
$lang['remove tags'] = '刪除所有標籤';
$lang['remove this filter'] = '刪除此篩選';
$lang['remove title'] = '刪除標題';
$lang['set to'] = '設定為';
$lang['show details'] = '顯示細節';
$lang['singly represented'] = '固定相冊縮略圖';
$lang['status'] = '狀態';
$lang['synchronize files metadata with database photos informations'] = '根據文件metadata同步資料庫中的相片信息';
$lang['jump to photo'] = '跳到圖';
$lang['leave'] = '離開';
$lang['manage album photos'] = '管理相冊裡的相片';
$lang['manage sub-albums'] = '管理子相冊';
$lang['manual order'] = '手工排序';
$lang['middle'] = '中間';
$lang['modified'] = '已修改';
$lang['new'] = '新增';
$lang['no write access'] = '沒有寫入權限';
$lang['none'] = '沒有寫入權限';
$lang['nothing'] = '沒有寫入權限';
$lang['on'] = '在';
$lang['on the %d selected photos'] = '在%d張已選相片上';
$lang['on the %d selected users'] = '%d的選定用戶';
$lang['only directories'] = '僅目錄';
$lang['only perform a simulation (no change in database will be made)'] = '只進行模擬操作(不會改變資料庫中的任何內容)';
$lang['other'] = '另外';
$lang['overrides existing values with empty ones'] = '用空數據來刪除已存在的數據';
$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 上傳者</em> 的官方標準軟件。pLoader 可將您電腦裡的相片傳送到 Piwigo 的相片畫廊裡。';
$lang['display maximum informations (added albums and photos, deleted albums and photos)'] = '顯示最大量的信息(增加相冊和相片,刪除的相冊和照片)';
$lang['dissociate from group'] = '取消群組關聯';
$lang['errors during synchronization'] = '同步期間發生錯誤';
$lang['even already synchronized photos'] = '包括已經同步的圖片';
$lang['existing album'] = '現有的相冊';
$lang['first photo added on %s'] = '於%s上傳了第一幅圖';
$lang['for the file format'] = '對於檔案格式';
$lang['for this file format'] = '對於此檔案格式';
$lang['global mode'] = '全局模式';
$lang['group "%s" added'] = '增加 "%s" 群組';
$lang['group "%s" deleted'] = '刪除 "%s" 群組';
$lang['group "%s" updated'] = '更新 "%s" 群組';
$lang['guest'] = '訪客';
$lang['height must be a number superior to'] = '圖片高度必須超過(整數)';
$lang['hide details'] = '隱藏細節';
$lang['high'] = '高';
$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匯出插件,可讓你直接從iPhoto匯出相片至Piwigo圖庫,並建立新相冊';
$lang['include child albums'] = '包含子相冊';
$lang['include photos with lower privacy level'] = '包含隱私級別較低的相片';
$lang['jump to album'] = '跳到相冊';
$lang['You can update to Piwigo %s directly, without upgrading to Piwigo %s (recommended).'] = '您可直接升級到Piwigo的%s,而不需升級到Piwigo的%s(建議版本)';
$lang['add new photos to caddie'] = '把所有新圖片放到購物籃';
$lang['added'] = '已加入';
$lang['administrators'] = '管理員';
$lang['associate to group'] = '關聯到群組';
$lang['create a new album'] = '建立一個新相冊';
$lang['create a new site'] = '建立新的網站';
$lang['created'] = '已建立';
$lang['custom'] = '自定義';
$lang['default'] = '預設';
$lang['default values'] = '預設值';
$lang['delete'] = '刪除';
$lang['delete album'] = '刪除相冊';
$lang['delete photo'] = '刪除相冊';
$lang['delete this site and all its attached elements'] = '刪除此站點和與其相關聯的所有信息';
$lang['deleted'] = '已刪除';
$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['directories + files'] = '目錄+文件';
$lang['display'] = '顯示';
$lang['You are running the latest version of Piwigo.'] = '你正在執行的是Piwigo最新版。';
$lang['You are using the Browser uploader. Try the <a href="%s">Flash uploader</a> instead.'] = '您正在使用瀏覽器上傳,您也可改用<a href="%s">Flash上傳器上傳。';
$lang['You are using the Flash uploader. Problems? Try the <a href="%s">Browser uploader</a> instead.'] = '您正在使用Flash上傳器上傳;若有問題,您也可改用<a href="%s">瀏覽器上傳。';
$lang['You can activate only one mobile theme.'] = '您最多只能啟用一個手機主題。';
$lang['You can\'t define a default photo order because you have a custom setting in your local configuration.'] = '無法使用預設相片順序,因你在本機配置另有自訂設定。';
$lang['You cannot delete your account'] = '你不能刪除自己本身帳號';
$lang['You cannot move an album in its own sub album'] = '您不能將一個相冊移動到其子相冊裡';
$lang['You have %d orphan tags: %s.'] = '您已 %d 無關聯標籤: %s。';
$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['You have subscribed to receiving notifications by mail.'] = '你開通了郵件通知功能。';
$lang['You have unsubscribed from receiving notifications by mail.'] = '你取消了你的郵件通知功能。';
$lang['You need to confirm deletion'] = '您必須確認刪除。';
$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['Your configuration settings are saved'] = '你的設定已儲存';
$lang['Zoom'] = '放大';
$lang['[%s] Visit album %s'] = '[%s] 參觀相冊 %s';
$lang['[NBM] Problems or questions'] = '[NBM] 故障或者疑問';
$lang['add a new watermark'] = '增加新浮水印';
$lang['WARNING! This plugin does not seem to be compatible with this version of Piwigo.'] = '警告! 這個插件與此Piwigo版本不相容!';
$lang['Waiting'] = '等待';
$lang['Warning: subscribing or unsubscribing will send mails to users'] = '注意, 訂閱或退訂都會給相關用戶發送郵件';
$lang['Watermark'] = '浮水印';
$lang['Web Form'] = '網頁表格';
$lang['Webmaster cannot be deleted'] = '不能刪除網管帳戶';
$lang['Webmaster status is required.'] = '必須設置網站管理員。';
$lang['Week starts on'] = '星期起始於';
$lang['Who can see these photos?'] = '哪些人可以看到這些相片?';
$lang['Who can see this photo?'] = '有哪些人能看這些相片?';
$lang['Width'] = '寬度';
$lang['With blank value, gallery title will be used'] = '圖庫標題允許為空';
$lang['With no album'] = '沒有相冊';
$lang['With no tag'] = '沒有標籤';
$lang['With no virtual album'] = '沒有虛擬相冊';
$lang['X Position'] = 'X 位置';
$lang['X Repeat'] = 'X 重複';
$lang['Y Position'] = 'Y 重複';
$lang['Year'] = '年';
$lang['You are running on development sources, no check possible.'] = '你運行的是源碼開發版本, 不能檢測最新版。';
$lang['User list'] = '用戶名單';
$lang['User status'] = '用戶狀態';
$lang['Users'] = '用戶';
$lang['Users modified'] = '用戶修改';
$lang['Validate'] = '確認';
$lang['Validation'] = '確認';
$lang['Version'] = '版本';
$lang['View in gallery'] = '以畫廊模式瀏覽';
$lang['Virtual Links'] = '虛擬連結';
$lang['Virtual album'] = '虛擬相冊';
$lang['Virtual album added'] = '虛擬相冊已添加';
$lang['Virtual album deleted'] = '虛擬相冊已刪除';
$lang['Virtual album name'] = '虛擬相冊名稱';
$lang['Virtual albums to move'] = '移動虛擬相冊';
$lang['Visit Gallery'] = '瀏覽畫廊';
$lang['Visit Piwigo project website'] = '瀏覽 Piwigo 項目網站';
$lang['Visit language site'] = '瀏覽語言頁面';
$lang['Visit plugin site'] = '瀏覽插件網站';
$lang['Visit theme site'] = '瀏覽主題頁面';
$lang['Visited %d times'] = '訪問了 %d 次';
$lang['Update in progress... Please wait.'] = '更新進行中,請稍候。';
$lang['Update photos information'] = '更新相片信息';
$lang['Update to Piwigo %s'] = '更新到Piwigo %s';
$lang['Update user'] = '更新用戶';
$lang['Updates'] = '更新';
$lang['Upload'] = '上傳';
$lang['Upload Photos'] = '上傳相片';
$lang['Uploaded Photos'] = '相片已上傳';
$lang['Use the default photo sort order'] = '使用預設的的照片排序順序';
$lang['Used metadata'] = 'metadata已使用';
$lang['User'] = '用戶';
$lang['User "%s" created with "%s" like password'] = '用戶 "%s" 已建立,密碼是"%s"';
$lang['User %s [%s] added.'] = '用戶 %s [%s] 已加入。';
$lang['User %s [%s] was added to the subscription list.'] = '用戶 %s [%s] 加入到註冊名單中。';
$lang['User %s [%s] was not added to the subscription list.'] = '用戶 %s [%s] 沒有加到註冊名當中。';
$lang['User %s [%s] was not removed from the subscription list.'] = '用戶 %s [%s] 沒有從註冊名單中刪除。';
$lang['User %s [%s] was removed from the subscription list.'] = '用戶 %s [%s] 從註冊名單中刪除。';
$lang['User %s added'] = '用戶 %s 已添加';
$lang['User %s updated'] = '用戶 %s 已更新';
$lang['User comments validation'] = '確認用戶評論';
$lang['Toggle \'default group\' property'] = '賦予\'預設的群組\'屬性';
$lang['Tools'] = '工具';
$lang['Two updates are available'] = '兩個更新可使用';
$lang['Type here the author name'] = '在此輸入作者名稱';
$lang['Type here the name of the new group'] = '在這輸入新的群組別名稱';
$lang['Type here the title'] = '在此輸入標題';
$lang['Type in a search term'] = '輸入一個搜索詞';
$lang['Unable to check for upgrade.'] = '無法檢查是否有升級。';
$lang['Unable to dump database.'] = '無法轉儲資料庫。';
$lang['Uncheck all'] = '取消全選';
$lang['Uninstall'] = '解除安裝';
$lang['Uninstalled Plugins'] = '未安裝的插件';
$lang['Unknown upload error'] = '未知上傳錯誤';
$lang['Unlock gallery'] = '將畫廊解鎖';
$lang['Unlocked'] = '解除鎖定';
$lang['Unsubscribe from notification by mail'] = '取消訂閱郵件通知功能';
$lang['Unsubscribed'] = '已取消訂閱';
$lang['Update All'] = '已取消訂閱';
$lang['Update Complete'] = '已完成更新';
$lang['Update albums informations'] = '上傳相冊信息';
$lang['There is no other theme available.'] = '沒有其他可用的主題。';
$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['This group will be set to default'] = '這本相冊沒有照片';
$lang['This group will be unset to default'] = '該群組別不再被使用為預設';
$lang['This is a major update, with <a href="%s">new exciting features</a>.'] = '這是一個重大更新,包括<a href="%s">這個令人興奮的新功能</a>。';
$lang['This is a minor update, with only bug corrections.'] = '這是一個次要更新,只有bug修正';
$lang['This name is already used by another group.'] = '群組名已存在。';
$lang['This site already exists'] = '此站點已存在';
$lang['This theme was not designed to be directly activated'] = '此主題並未設計為直接啟動';
$lang['Thumbnail'] = '縮略圖';
$lang['Thumbnails generation in progress...'] = '縮略圖製作中...';
$lang['Time'] = '時間';
$lang['Time to send mail is limited. Others mails are skipped.'] = '發送郵件時間有限,其餘郵件被忽略。';
$lang['Title'] = '標題';
$lang['To export your photos from digiKam to Piwigo, simply install digiKam and the Kipi-plugins.'] = '從digiKam要匯出相片到Piwigo,只需安裝digiKam和Kipi-plugins插件。';
$lang['To send ?'] = '發送?';
$lang['To subscribe'] = '如要訂閱';
$lang['To unsubscribe'] = '要取消訂閱';
$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['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-zA-Z0-9", "-", "_" ou "/"). 禁止使用數字和以"-"開頭後面緊跟數字';
$lang['The picture dimensions will be reduced to %dx%d pixels.'] = '圖片的尺寸將減少到 %dx%d 像素。';
$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 exceeds the upload_max_filesize directive in php.ini: %sB'] = '上傳文件超過了在 php.ini 文件裡的 upload_max_filesize 限制: %sB';
$lang['The uploaded file was only partially uploaded'] = '上傳文件只上傳了一部分';
$lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] = '上傳文件超過了在 php.ini 文件裡的 post_max_size 限制: %sB';
$lang['The version of %s [%s] installed is not compatible with the version required ']['%s'] = '%s [%s]安裝版本跟[%s]版本不兼容';
$lang['The webmaster has subscribed you to receiving notifications by mail.'] = '網管開通了你的郵件通知功能。';
$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = '網管取消了你的郵件通知功能。';
$lang['The whole page'] = '整張相片';
$lang['The whole set'] = '整個集合';
$lang['Theme has been successfully installed'] = '主題已成功安裝';
$lang['Themes'] = '主題';
$lang['Themes which need upgrade'] = '需更新的主題';
$lang['There is no available subscribers to mail.'] = '沒有用戶需要郵件通知。';
$lang['There is no group in this gallery.'] = '此畫廊內沒有群組。';
$lang['There is no other language available.'] = '沒有其他可用的語言。';
$lang['There is no other plugin available.'] = '沒有其他可用的插件。';
$lang['Tag "%s" already exists'] = '標籤 "%s" 已存在';
$lang['Tag "%s" is now a duplicate of "%s"'] = '"%s" 標籤與 "%s" 標籤重複';
$lang['Tag "%s" was added'] = '標籤 "%s" 已加入';
$lang['Tag selection'] = '標籤選擇';
$lang['Tags <em>%s</em> merged into tag <em>%s</em>'] = '標籤 <em>%s</em> 已合併成標籤 <em>%s</em>';
$lang['Templates'] = '模板';
$lang['Templates configuration has been recorded.'] = '模板設定已經被記錄。';
$lang['The %d following tags were deleted'] = '下面標籤 %d 已刪除';
$lang['The Piwigo export plugin allows you to create albums and export photos.'] = 'Piwigo的匯出插件,允許你建立相冊和匯出照片';
$lang['The Piwigo publish Plug-in allows you to export and synchronize photos from Lightroom directly to your Piwigo photo gallery.'] = 'Piwigo的發布插件允許你 從Lightroom匯出照片,使你的Lightroom照片與您的Piwigo相冊同步。';
$lang['The anomaly will be ignored until next application version'] = '此異常將被忽略,待下次版本中解決';
$lang['The center of interest is the most meaningful zone in the photo.'] = '焦點是相片中最有意思的部份';
$lang['The file or directory cannot be accessed (either it does not exist or the access is denied)'] = '檔案或目錄無法訪問(無論是它不存在或訪問被拒絕)';
$lang['The following tag was deleted'] = '以下標籤已刪除';
$lang['The gallery URL is not valid.'] = '以下標籤已刪除';
$lang['The name of a group must not contain " or \' or be empty.'] = '以下標籤已刪除';
$lang['The name of an album must not be empty'] = '相冊名稱不能為空白';
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = '目錄和檔案的名稱必須包括字母,數字,"-", "_" 或 "."';
$lang['The number of comments a page must be between 5 and 50 included.'] = '每頁用戶評論數必須在5和50之間。';
$lang['The original image quality must be a number between %d and %d'] = '原始圖品質必須在 %d 和 %d 之間';
$lang['Start Upload'] = '開始上傳';
$lang['Start pLoader and add your photos.'] = '開始使用pLoader的並新增你的照片。';
$lang['Statistics'] = '統計';
$lang['Status'] = '狀態';
$lang['Status of user "%s" updated'] = '用戶 "%s" 狀態已更新';
$lang['Storage album'] = '存儲相冊';
$lang['Subscribe'] = '訂閱';
$lang['Subscribe %s'] = '訂閱 %s';
$lang['Subscribe %s to Piwigo Announcements Newsletter'] = '訂閱 %s Piwigo中國最新消息公告';
$lang['Subscribe to notification by mail'] = '訂閱郵件通知功能';
$lang['Subscribe/unsubscribe users'] = '訂閱/取消訂閱用戶';
$lang['Subscribed'] = '已訂閱';
$lang['Subscribers could be listed (available) only if there is new elements to notify.'] = '當有新圖片時,才能使用用戶郵件通知功能.';
$lang['Sum of rates'] = '總投票分';
$lang['Summary'] = '概述';
$lang['Support'] = '支持';
$lang['Switch to clear or dark colors for administration'] = '切換管理員後台為清晰或黑暗的顏色';
$lang['Synchronize'] = '同步';
$lang['Synchronize metadata'] = 'metadata 同步';
$lang['THIS PLUGIN IS NOW PART OF PIWIGO CORE! DELETE IT NOW.'] = '這個插件已是Piwigo核心一部份! 請立即移除它!';
$lang['Send mail as'] = '發送郵件為';
$lang['Send mail on HTML format'] = '以HTML格式發送郵件';
$lang['Send mail to users'] = '給用戶發送郵件';
$lang['Set as default language for unregistered and new users'] = '未註冊和新用戶的語言設定為預設的語言';
$lang['Set as default theme for unregistered and new users'] = '未註冊者和新用戶的主題設定為預設的主題';
$lang['Set author'] = '設定作者';
$lang['Set creation date'] = '設定建立日期';
$lang['Set title'] = '設定標題';
$lang['Settings'] = '設定';
$lang['Sharpen'] = '銳化';
$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['Show %s users'] = '顯示%s用戶';
$lang['Show info'] = '顯示所有信息';
$lang['Show menubar'] = '顯示選單列';
$lang['Showing %s to %s of %s users'] = '顯示%s的用戶從%s到%s';
$lang['Simulation'] = '模擬';
$lang['Site manager'] = '網管';
$lang['Some themes and plugins may be not available yet.'] = '一些主題和插件可能尚無法使用';
$lang['Some upgrades are available for extensions.'] = '一些可升級用於擴展。';
$lang['Source tag'] = '來源標籤';
$lang['See you soon.'] = '很快再見。';
$lang['Select a file'] = '選擇檔案';
$lang['Select a zone with your mouse to define a new center of interest.'] = '用鼠標選擇新的焦點';
$lang['Select an album'] = '選擇一個相冊';
$lang['Select at least one album'] = '選擇最後一個相冊';
$lang['Select at least one comment'] = '至少選擇一個評論';
$lang['Select at least one photo'] = '至少選中一張圖片';
$lang['Select at least one tag'] = '選擇至少一個標籤';
$lang['Select at least one user'] = '至少選中一個用戶';
$lang['Select at least two tags for merging'] = '至少選擇兩個需合併的標籤';
$lang['Select files'] = '選擇檔案';
$lang['Select groups...'] = '選擇群組別...';
$lang['Select recipients'] = '選擇接受郵件用戶';
$lang['Select the destination tag'] = '選擇目的標籤';
$lang['Select users...'] = '選擇用戶...';
$lang['Select:'] = '選擇:';
$lang['Selection'] = '選擇:';
$lang['Send'] = '發送';
$lang['Send an information email to group members'] = '發送一份信息郵件給群組成員';
$lang['Send connection settings by email'] = '通過電子郵件發送連接的設定';
$lang['Representant'] = '相冊縮略圖';
$lang['Representation of albums'] = '相冊縮略圖';
$lang['Representative'] = '相冊縮略圖';
$lang['Represents'] = '縮略圖是給';
$lang['Reset ignored updates'] = '重設忽略更新';
$lang['Resize'] = '調整大小';
$lang['Resize after upload'] = '上傳後調整大小';
$lang['Resize after upload disabled due to the use of GD as graphic library'] = '由於使用了GD圖形程式,上傳後調整尺寸的功能已關閉。';
$lang['Restore'] = '還原';
$lang['Restore default configuration. You will lose your plugin settings!'] = '還原至預設設定。你會失去你的插件的設定!';
$lang['Save Settings'] = '儲存設定';
$lang['Save Template Directory'] = '儲存模板目錄';
$lang['Save manual order'] = '儲存手動排序';
$lang['Save order'] = '儲存排序';
$lang['Save to permalink history'] = '儲存到固定連結的歷史記錄中';
$lang['Save visits in history for'] = '保存訪問的歷史';
$lang['Search for new images in the directories'] = '在目錄中搜尋新圖片';
$lang['Searching...'] = '搜尋中...';
$lang['Section'] = '區域';
$lang['See you soon,'] = '很快再見,';
$lang['Rate date'] = '投票日期';
$lang['Rated %d times, score : %.2f'] = '被評價 %d 次,分數為 %.2f';
$lang['Rating'] = '投票';
$lang['Rating by guests'] = '訪客投票數';
$lang['Ratio'] = '比例';
$lang['ReGalAndroid (RemoteGallery client for Android) is an open source (GPL v3) Piwigo client for the Android platform.'] = 'ReGalAndroid(Android行動相冊)是一個開放原始碼軟體(GPL V3),是Android平台上的Piwigo';
$lang['Read Piwigo Documentation'] = '閱讀 Piwigo 檔案';
$lang['Refresh'] = '刷新';
$lang['Refresh photo set'] = '刷新相片集';
$lang['Registered on %s, %s.'] = '註冊在%s, %s。';
$lang['Reinitialize check integrity'] = '重新完整性檢測';
$lang['Reject'] = '拒絕';
$lang['Released on'] = '發佈於';
$lang['Remote'] = '遠端';
$lang['Remove all filters'] = '刪除所有篩選';
$lang['Remove from caddie'] = '從購物藍裡移除';
$lang['Rename'] = '重新命名';
$lang['Repair and optimize database'] = '修復和優化資料庫';
$lang['Replacement of original templates by customized templates from template-extension subfolder'] = '用位於template-extension文件夾下的用戶自定義模板更換原模板';
$lang['Replacers (customized templates)'] = '替代(自訂的模板)';
$lang['Posted %s on %s'] = '在 %s 貼上 %s';
$lang['Predefined filter'] = '預先定義的篩選';
$lang['Preferences'] = '偏好設定';
$lang['Prepared time for list of users to send mail is limited. Others users are not listed.'] = '由於發送用戶列表的準備時間受限制,其餘用戶將不被列出.';
$lang['Privacy level'] = '隱私等級';
$lang['Privacy level set to "%s"'] = '私有級別設定為 "%s"';
$lang['Private'] = '私人';
$lang['Properties'] = '屬性';
$lang['Public'] = '公開';
$lang['Public / Private'] = '私人/公開';
$lang['Purge compiled templates'] = '清除編譯模板';
$lang['Purge history detail'] = '清除歷史記錄';
$lang['Purge history summary'] = '清除歷史摘要';
$lang['Purge never used notification feeds'] = '清除從沒使用過的通知回饋';
$lang['Purge search history'] = '清除查尋歷史記錄';
$lang['Purge sessions'] = '清除Sessions';
$lang['Purge user cache'] = '清除用戶快取';
$lang['Quick Local Synchronization'] = '快速同步';
$lang['Random photo'] = '隨機相片';
$lang['Rate'] = '評分';
$lang['Piwigo Update'] = 'Piwigo 更新';
$lang['Piwigo Uploader'] = 'Piwigo 上傳者';
$lang['Piwigo cannot retrieve upgrade file from server'] = 'Piwigo 無法從伺服器中取得升級檔 ';
$lang['Piwigo configuration'] = 'Piwigo的設定';
$lang['Piwigo export plugin for Aperture'] = 'Aperture的Piwigo匯出插件';
$lang['Piwigo export plugin for iPhoto'] = 'iPhoto的Piwigo匯出插件';
$lang['Piwigo for Android'] = 'Android 版的Piwigo';
$lang['Piwigo for iOS (iPhone, iPad, iPod Touch)'] = 'iOS (iPhone, iPad, iPod Touch) 版的 Piwigo ';
$lang['Piwigo publish plugin for Shotwell'] = 'Piwigo 的 Shotwell 照片發布插件 ';
$lang['Piwigo publish plugin for digiKam'] = 'Piwigo 的 ddgiKam 照片發布插件';
$lang['Piwigo version'] = 'Piwigo版本';
$lang['Please check "plugins" folder and sub-folders permissions (CHMOD).'] = '請核實"plugins"文件夾及其子文件夾的權限(CHMOD).';
$lang['Please select at least two groups'] = '請最少選擇二個群組別';
$lang['Please wait...'] = '請稍後...';
$lang['Plugin has been successfully copied'] = '插件複製成功.';
$lang['Plugin list'] = '插件列表';
$lang['Plugins'] = '插件';
$lang['Plugins which need upgrade'] = '插件待升級';
$lang['Portrait'] = '人像';
$lang['Position'] = '位置';
$lang['Permalinks'] = '固定連結';
$lang['Permission denied'] = '禁止訪問';
$lang['Permission granted'] = '允許訪問';
$lang['Permission granted for groups'] = '群組別擁有的權限';
$lang['Permission granted for users'] = '用戶擁有的權限';
$lang['Permission granted thanks to a group'] = '同群組成員可以訪問授權類';
$lang['Permission management'] = '權限管理';
$lang['Permissions'] = '權限';
$lang['Photo %s of %s'] = '圖片 %s 中的圖片 %s';
$lang['Photo Page'] = '相片頁';
$lang['Photo Properties'] = '相片屬性';
$lang['Photo informations updated'] = '相片更新信息';
$lang['Photo name'] = '相片名稱';
$lang['Photo sizes with crop'] = '相片剪裁';
$lang['Photo unreachable or no support'] = '不支持圖片格式或無法顯示';
$lang['Photos'] = '相片';
$lang['Photos generation in progress...'] = '相片製作中...';
$lang['Piwigo Administration'] = 'Piwigo管理';
$lang['Piwigo Announcements Newsletter'] = 'Piwigo最新消息公告';
$lang['Piwigo Publish plugin for Lightroom'] = 'Piwigo 的 Lightroom 照片發布插件';
$lang['Orphan tags deleted'] = '無關聯標籤已被刪除';
$lang['Other plugins'] = '其他可用的插件';
$lang['Other private albums'] = '其他私人相冊';
$lang['Overall'] = '概覽';
$lang['Page banner'] = '網頁標語';
$lang['Page end'] = '頁尾';
$lang['Pages seen'] = '已訪問過的頁面';
$lang['Panorama'] = '全景';
$lang['Parameter'] = '設定';
$lang['Parameters'] = '參數';
$lang['Parent album'] = '主相冊';
$lang['Password confirmation is missing. Please confirm the chosen password.'] = '密碼確認未完成,請確認所選定的密碼。';
$lang['Password is missing. Please enter the password.'] = '密碼沒有輸入,請輸入密碼。';
$lang['Password updated'] = '密碼已更新';
$lang['Path'] = '路徑';
$lang['Pending Comments'] = '待批的評論';
$lang['Permalink'] = '固定連結';
$lang['Permalink %s has been previously used by album %s. Delete from the permalink history first'] = '固定連結 %s 已被 %s 相冊使用了。請先從固定鏈接歷史記錄刪除。';
$lang['Permalink %s is already used by album %s'] = '固定連結 %s 已被 %s 相冊使用了';
$lang['Permalink history'] = '固定連結歷史記錄';
$lang['Notify administrators when a comment is'] = '通知管理員當評論是';
$lang['Number of albums per page'] = '每頁相本數量';
$lang['Number of comments per page'] = '每頁評論數量';
$lang['Number of downloads'] = '下載次數';
$lang['Number of rates'] = '投票數';
$lang['Numeric identifier : %d'] = '數字識別碼: %d';
$lang['Obsolete Plugins'] = '廢棄的插件';
$lang['On your Linux, simply install Shotwell with your package manager and the activate Piwigo publishing option.'] = '在Linux下,只需安裝Shotwell套件和啟用 Piwigo發佈選項。';
$lang['Only private albums are listed'] = '只列出私人相冊';
$lang['Opacity'] = '不透明度';
$lang['Operating system'] = '操作系統';
$lang['Operation in progress'] = '正在處理中。';
$lang['Optimizations have been completed with some errors.'] = '優化已完成,但出現一些錯誤。';
$lang['Optional URL keyword'] = '可選URL關鍵字';
$lang['Options'] = '選項';
$lang['Order of menubar items has been updated successfully.'] = '已成功更新的選單欄項目的順序。';
$lang['Original Size'] = '原始大小';
$lang['Original file : %s'] = '原始檔案 : %s';
$lang['Original templates'] = '原模板';
$lang['No display'] = '不顯示';
$lang['No file was uploaded'] = '沒有文件被上傳';
$lang['No group is permitted to see this private album'] = '沒有群組別有權限觀看此私人相冊';
$lang['No group selected, no action possible.'] = '尚未選取群組別,無法動作';
$lang['No mail to send.'] = '沒有郵件要發送.';
$lang['No matching user found'] = '沒有發現匹配的用戶';
$lang['No members to manage'] = '沒有會員可以管理';
$lang['No order field selected'] = '未選取排序欄位';
$lang['No photo can be deleted'] = '沒有圖片可以刪除';
$lang['No photo in the current set.'] = '當前集合沒有相片.';
$lang['No photo in this album'] = '沒有相片在此相冊裡';
$lang['No photo selected, %d photos in current set'] = '沒有選擇相片, 當前集合有%d張相片';
$lang['No photo selected, no action possible.'] = '沒有選擇相片,不會有動作執行';
$lang['No results'] = '沒有結果';
$lang['No user selected of %d users'] = '%d個用戶沒有用戶選擇';
$lang['No user selected, no action possible.'] = '沒有用戶選擇,沒有行動的可能。';
$lang['No user to send notifications by mail.'] = '沒有郵件通知用戶.';
$lang['None'] = '沒有';
$lang['Not cropped correctly?'] = '不正確的裁剪?';
$lang['Notification'] = '通知';
$lang['Minimum privacy level'] = '最小隱私等級';
$lang['Minimum width'] = '最小寬度';
$lang['Miscellaneous'] = '雜項';
$lang['Missing Plugins'] = '丟失的插件';
$lang['Missing a temporary folder'] = '缺少臨時文件目錄';
$lang['Modify information'] = '修改信息';
$lang['Month'] = '月';
$lang['Move'] = '移動';
$lang['Move albums'] = '移動相冊';
$lang['Move to album'] = '移動到相冊';
$lang['Multiple Size'] = '多種大小';
$lang['Name'] = '名字';
$lang['Name of the duplicate'] = '名稱重複';
$lang['New Version'] = '新版本';
$lang['New name'] = '新名';
$lang['New parent album'] = '新的父相冊';
$lang['New photos added'] = '已加入新相片';
$lang['New photos were added'] = '已加入新相片';
$lang['New tag'] = '新標籤';
$lang['No destination tag selected'] = '未選擇目標標籤';
$lang['Manage authorizations for selected albums'] = '管理所選相冊的授權';
$lang['Manage permissions for group "%s"'] = '對群組 "%s" 進行權限管理';
$lang['Manage permissions for user "%s"'] = '對用戶 "%s" 進行權限管理';
$lang['Manage photo ranks'] = '管理圖片排序';
$lang['Manage photos'] = '管理照片';
$lang['Manage tags'] = '管理標籤';
$lang['Manage the members'] = '管理會員';
$lang['Manage this set of %d photos'] = '管理此設置的%d張照片 ';
$lang['Manual order'] = '手工排序';
$lang['Maximum file size: %sB.'] = '最大尺寸: %sB';
$lang['Maximum height'] = '最大高度';
$lang['Maximum width'] = '最大寬度';
$lang['Members'] = '會員';
$lang['Menu Management'] = '功能表';
$lang['Merge selected groups'] = '合併選擇群組';
$lang['Merge selected tags'] = '合併選定的標籤';
$lang['Merge tags'] = '合併標籤';
$lang['Metadata synchronization results'] = 'Metadata更新結果';
$lang['Metadata synchronized from file'] = '對文件進行Metadata同步';
$lang['Minimum height'] = '最小高度';
$lang['Loading...'] = '加載中...';
$lang['Local'] = '本地';
$lang['Lock'] = '上鎖';
$lang['Lock albums'] = '鎖定相冊';
$lang['Lock gallery'] = '鎖定圖庫';
$lang['Locked'] = '鎖定';
$lang['Mail content'] = '郵件內容';
$lang['Mail sent to %s [%s].'] = '已發送至 %s [%s].';
$lang['Mail theme'] = '郵件主題';
$lang['Main "guest" user does not exist'] = '主"訪客"用戶不存在';
$lang['Main "guest" user status is incorrect'] = '主"訪客"用戶狀態異常';
$lang['Main "webmaster" user does not exist'] = '主網管帳戶不再存在';
$lang['Main "webmaster" user status is incorrect'] = '主網管用戶狀態異常';
$lang['Main Page'] = '主頁';
$lang['Maintenance'] = '維護';
$lang['Make this language available to users'] = '讓用戶可使用此語言';
$lang['Make this theme available to users'] = '讓用戶可使用此主題';
$lang['Manage'] = '管理';
$lang['Manage Permissions'] = '管理權限';
$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['Landscape'] = '橫向';
$lang['Language has been successfully installed'] = '語言已成功安裝';
$lang['Languages'] = '語言';
$lang['Languages which need upgrade'] = '需更新的語言';
$lang['Last hit'] = '最後一次查看';
$lang['Last import'] = '最後匯入';
$lang['Last revisions'] = '最新修訂版';
$lang['Last send'] = '最後一次發送';
$lang['Last visit on %s, %s.'] = '最後的訪問在%s, %s。';
$lang['Learn more'] = '瞭解更多';
$lang['Level 0'] = '---';
$lang['Level 1'] = '聯繫';
$lang['Level 2'] = '朋友';
$lang['Level 4'] = '家庭';
$lang['Level 8'] = '管理者';
$lang['Link all album photos to a new album'] = '鏈接所有相冊的相片到新的相冊';
$lang['Link all album photos to some existing albums'] = '連結所有相冊的相片到現有的相冊';
$lang['Linked albums'] = '已鏈接相冊';
$lang['List'] = '清單';
$lang['Impossible automatic correction'] = '無法自動修復';
$lang['Impossible to activate this theme, the parent theme is missing: %s'] = '這個主題不能啟動,因為缺少主頁主題:%s';
$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['Impossible to deactivate this theme, you need at least one theme.'] = '無法停用這個語言,你需要至少一種語言。';
$lang['Impossible to delete this theme. Other themes depends on it: %s'] = '此主題不能刪除,因為其他主題還有依賴與它: %s';
$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['Inactive Languages'] = '停用語言';
$lang['Inactive Plugins'] = '停用語言';
$lang['Inactive Themes'] = '停用主題';
$lang['Include display of recent photos grouped by dates'] = '包括顯示最近按日期分群組的圖片';
$lang['Include history data (Warning: server memory limit may be exceeded)'] = '包含歷史數據(警告:可能會超過伺服器儲存限制)';
$lang['Information data registered in database'] = '信息已保存到資料庫中';
$lang['Informations'] = '信息';
$lang['Install'] = '安裝';
$lang['Install on your computer,'] = '安裝到您的電腦,';
$lang['Installed Languages'] = '安裝語言';
$lang['Installed Themes'] = '安裝主題';
$lang['Instructions to use Piwigo'] = 'Piwigo 使用指南';
$lang['Invert'] = '反轉';
$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['No and unlock sub-albums'] = '否及解開子相冊';
$lang['The settings for the guest are from the %s user'] = '訪客的設定是跟從用戶%s ';
$lang['Upload in progress'] = '正在上傳';
$lang['based on'] = '基於';
$lang['between %s and %s MB'] = '
%s 和 %s MB之間';
$lang['date & time'] = '日期和時間';
$lang['file name'] = '檔案名稱';
$lang['width & height'] = '寬度和高度';
$lang['Delete %d orphan photos'] = '刪除%d個孤兒照片';
$lang['Each email sent will contain its own automatic authentication key on links, valid for %s.'] = '每封電子郵件將包含自動認證密鑰的鏈接,有效%s。';
$lang['Edit user'] = '編輯用戶';
$lang['For security reason, authentication keys do not work for administrators.'] = '出於安全原因,認證密鑰對管理員工作不起作用。';
$lang['No recipient selected'] = '
沒有選擇收件人';
$lang['No user is permitted to see this private album'] = '沒有用戶被允許看到這個私人相冊';
$lang['Orphans'] = '孤兒';
$lang['Recipients'] = '收件人';
$lang['Y Repeat'] = 'Y 重複';