~ubuntu-branches/ubuntu/quantal/shotwell/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
# po/shotwell-core/zh_CN.po
# Chinese (Mainland China / PRC) Translation for Shotwell Core Components
# Copyright (C) 2009-2012 Yorba Foundation
# This file is distributed under the GNU LGPL, version 2.1.
# 
msgid ""
msgstr ""
"Project-Id-Version: shotwell-0.11.1\n"
"Report-Msgid-Bugs-To: Lucas Stephen Beeler <lucas@yorba.org>\n"
"POT-Creation-Date: 2011-05-20 19:12-0700\n"
"PO-Revision-Date: 2011-05-21 16:08+0000\n"
"Last-Translator: lovenemesis <lovenemesis@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0\n"

# Translator credits string for the about box -- translators, add your name
# below if it's not already present
#: src/AppWindow.vala:661 plugins/common/Resources.vala:28
msgid "translator-credits"
msgstr ""
"Tommy He <tommy.he@linux.com>\n"
"zheng7fu2 <zheng7fu2@gmail.com>\n"
"Xhacker Liu <liu.dongyuan@gmail.com>\n"
"b6i <baddogai@gmail.com>"

# GNOME Application Name
msgid "Shotwell Photo Manager"
msgstr "Shotwell  照片管理器"

# GNOME Application Class ("Generic Name")
#: src/Resources.vala:15
msgid "Photo Manager"
msgstr "照片管理器"

# GNOME Application Comment
msgid "Organize your photos"
msgstr "组织您的照片"

# GNOME Application Name for Direct Edit Mode
msgid "Shotwell Photo Viewer"
msgstr "Shotwell 照片查看器"

# GNOME Application Class for Direct Edit Mode
#: src/Resources.vala:16
msgid "Photo Viewer"
msgstr "照片查看器"

#: src/AppWindow.vala:57
msgid "Pin Toolbar"
msgstr "固定工具栏"

#: src/AppWindow.vala:58
msgid "Pin the toolbar open"
msgstr "将工具栏固定为打开"

#: src/AppWindow.vala:61 src/AppWindow.vala:139
msgid "Leave fullscreen"
msgstr "离开全屏"

#: src/AppWindow.vala:138
msgid "Leave _Fullscreen"
msgstr "离开全屏(_F)"

#: src/AppWindow.vala:475
msgid "_Quit"
msgstr "退出(_Q)"

#: src/AppWindow.vala:480
msgid "_About"
msgstr "关于(_A)"

#: src/AppWindow.vala:485
msgid "Fulls_creen"
msgstr "全屏(_C)"

#: src/AppWindow.vala:490
msgid "_Contents"
msgstr "目录(_C)"

#: src/AppWindow.vala:495
msgid "_Frequently Asked Questions"
msgstr "常见问题(_F)"

#: src/AppWindow.vala:593 src/AppWindow.vala:611 src/AppWindow.vala:628
#: src/publishing/PublishingUI.vala:480 src/Dialogs.vala:18
#: src/Dialogs.vala:26 src/Dialogs.vala:1003 src/Dialogs.vala:1026
msgid "_Cancel"
msgstr "取消(_C)"

#: src/AppWindow.vala:638
#, c-format
msgid ""
"A fatal error occurred when accessing Shotwell's library.  Shotwell cannot continue.\n"
"\n"
"%s"
msgstr ""
"访问 Shotwell 媒体库时出现致命错误。Shotwell 无法继续。\n"
"\n"
"%s"

#: src/AppWindow.vala:658 plugins/common/Resources.vala:9
msgid "Visit the Yorba web site"
msgstr "访问 Yorba 网站"

#: src/AppWindow.vala:670
#, c-format
msgid "Unable to display help: %s"
msgstr "无法显示帮助 %s"

#: src/AppWindow.vala:678
#, c-format
msgid "Unable to display FAQ: %s"
msgstr "无法显示常见问题 %s"

#: src/SlideshowPage.vala:41 src/SlideshowPage.vala:221
msgid "Settings"
msgstr "设定"

#: src/SlideshowPage.vala:43
msgid "_Delay:"
msgstr "延时(_D):"

#: src/SlideshowPage.vala:45 src/SlideshowPage.vala:47
msgid "seconds"
msgstr "秒"

#: src/SlideshowPage.vala:63
msgid "_Transition effect:"
msgstr "过渡效果(_T):"

#: src/SlideshowPage.vala:90
msgid "Transition d_elay:"
msgstr "过渡延时(_E):"

#: src/SlideshowPage.vala:187
msgid "Slideshow"
msgstr "幻灯片演示"

#: src/SlideshowPage.vala:200
msgid "Back"
msgstr "上一步"

#: src/SlideshowPage.vala:201
msgid "Go to the previous photo"
msgstr "跳到上一张照片"

#: src/SlideshowPage.vala:207 src/SlideshowPage.vala:312
msgid "Pause"
msgstr "暂停"

#: src/SlideshowPage.vala:208 src/SlideshowPage.vala:313
msgid "Pause the slideshow"
msgstr "暂停幻灯片演示"

#: src/SlideshowPage.vala:214
msgid "Next"
msgstr "下一张"

#: src/SlideshowPage.vala:215
msgid "Go to the next photo"
msgstr "跳到下一张照片"

#: src/SlideshowPage.vala:222
msgid "Change slideshow settings"
msgstr "改变幻灯片演示设定"

#: src/SlideshowPage.vala:276
msgid "All photo source files are missing."
msgstr "所有的照片源文件丢失。"

#: src/SlideshowPage.vala:308
msgid "Play"
msgstr "播放"

#: src/SlideshowPage.vala:309
msgid "Continue the slideshow"
msgstr "继续幻灯片演示"

#: src/Photo.vala:2747
msgid "modified"
msgstr "修改"

#: src/Resources.vala:18
#: plugins/shotwell-publishing/FacebookPublishing.vala:32
#: plugins/shotwell-publishing/PicasaPublishing.vala:32
#: plugins/shotwell-publishing/YouTubePublishing.vala:32
#: plugins/shotwell-publishing/FlickrPublishing.vala:32
msgid "Copyright 2009-2012 Yorba Foundation"
msgstr "版权所有 2009-2012 Yorba 基金会"

#: src/Resources.vala:130
msgid "Rotate _Right"
msgstr "向右旋转(_R)"

#: src/Resources.vala:131 src/Resources.vala:136
msgid "Rotate"
msgstr "旋转"

#: src/Resources.vala:132
msgid "Rotate Right"
msgstr "向右旋转"

#: src/Resources.vala:133
msgid "Rotate the photos right (press Ctrl to rotate left)"
msgstr "向右旋转照片(按住 Ctrl 向左旋转)"

#: src/Resources.vala:135
msgid "Rotate _Left"
msgstr "向左旋转(_L)"

#: src/Resources.vala:137
msgid "Rotate Left"
msgstr "向左旋转"

#: src/Resources.vala:138
msgid "Rotate the photos left"
msgstr "向左旋转照片"

#: src/Resources.vala:140
msgid "Flip Hori_zontally"
msgstr "水平翻转(_Z)"

#: src/Resources.vala:141
msgid "Flip Horizontally"
msgstr "水平翻转"

#: src/Resources.vala:143
msgid "Flip Verti_cally"
msgstr "垂直翻转(_C)"

#: src/Resources.vala:144
msgid "Flip Vertically"
msgstr "垂直翻转"

#: src/Resources.vala:146
msgid "_Enhance"
msgstr "增强(_E)"

#: src/Resources.vala:147
msgid "Enhance"
msgstr "增强"

#: src/Resources.vala:148
msgid "Automatically improve the photo's appearance"
msgstr "自动增强照片的观感"

#: src/Resources.vala:150
msgid "_Crop"
msgstr "剪裁(_C)"

#: src/Resources.vala:151
msgid "Crop"
msgstr "剪裁"

#: src/Resources.vala:152
msgid "Crop the photo's size"
msgstr "剪裁照片尺寸"

#: src/Resources.vala:154
msgid "_Red-eye"
msgstr "红眼(_R)"

#: src/Resources.vala:155
msgid "Red-eye"
msgstr "红眼"

#: src/Resources.vala:156
msgid "Reduce or eliminate any red-eye effects in the photo"
msgstr "降低或去除照片上的红眼效果"

#: src/Resources.vala:158
msgid "_Adjust"
msgstr "修正(_A)"

#: src/Resources.vala:159
msgid "Adjust"
msgstr "修正"

#: src/Resources.vala:160
msgid "Adjust the photo's color and tone"
msgstr "修正照片的色彩和色调"

#: src/Resources.vala:162
msgid "Re_vert to Original"
msgstr "恢复到原始(_V)"

#: src/Resources.vala:163
msgid "Revert to Original"
msgstr "恢复到原始"

#: src/Resources.vala:165
msgid "Revert External E_dits"
msgstr "恢复额外修改(_D)"

#: src/Resources.vala:166
msgid "Revert to the master photo"
msgstr "恢复到主照片"

#: src/Resources.vala:168
msgid "Set as _Desktop Background"
msgstr "设置为桌面背景(_D)"

#: src/Resources.vala:169
msgid "Set selected image to be the new desktop background"
msgstr "设置选定照片为新的桌面背景"

#: src/Resources.vala:170
msgid "Set as _Desktop Slideshow..."
msgstr "设置为桌面幻灯片(_D)…"

#: src/Resources.vala:172
msgid "_Undo"
msgstr "取消(_U)"

#: src/Resources.vala:173
msgid "Undo"
msgstr "取消"

#: src/Resources.vala:175
msgid "_Redo"
msgstr "重做(_R)"

#: src/Resources.vala:176
msgid "Redo"
msgstr "重做"

#: src/Resources.vala:178
msgid "Re_name Event..."
msgstr "重新命名活动(_N)..."

#: src/Resources.vala:179 src/Dialogs.vala:920
msgid "Rename Event"
msgstr "重命名活动"

#: src/Resources.vala:181
msgid "Make _Key Photo for Event"
msgstr "创建活动关键照片(_K)"

#: src/Resources.vala:182
msgid "Make Key Photo for Event"
msgstr "创建活动关键照片"

#: src/Resources.vala:184
msgid "_New Event"
msgstr "新活动(_N)"

#: src/Resources.vala:185
msgid "New Event"
msgstr "新活动"

#: src/Resources.vala:187
msgid "Move Photos"
msgstr "移动照片"

#: src/Resources.vala:188
msgid "Move photos to an event"
msgstr "将照片移动到一个活动"

#: src/Resources.vala:190
msgid "_Merge Events"
msgstr "合并活动(_M)"

#: src/Resources.vala:191
msgid "Merge"
msgstr "合并"

#: src/Resources.vala:193
msgid "_Set Rating"
msgstr "设定评分(_S)"

#: src/Resources.vala:194
msgid "Set Rating"
msgstr "设定评分"

#: src/Resources.vala:195
msgid "Change the rating of your photo"
msgstr "改变您照片的评分"

#: src/Resources.vala:197
msgid "_Increase"
msgstr "增加(_I)"

#: src/Resources.vala:198
msgid "Increase Rating"
msgstr "增加评分"

#: src/Resources.vala:200
msgid "_Decrease"
msgstr "降低(_D)"

#: src/Resources.vala:201
msgid "Decrease Rating"
msgstr "降低评分"

#: src/Resources.vala:203
msgid "_Unrated"
msgstr "未评分(_U)"

#: src/Resources.vala:204
msgid "Unrated"
msgstr "未评分"

#: src/Resources.vala:205
msgid "Rate Unrated"
msgstr "未评分"

#: src/Resources.vala:206
msgid "Setting as unrated"
msgstr "设定为未评分"

#: src/Resources.vala:207
msgid "Remove any ratings"
msgstr "移除任何评分"

#: src/Resources.vala:209
msgid "_Rejected"
msgstr "次品(_R)"

#: src/Resources.vala:210
msgid "Rejected"
msgstr "次品"

#: src/Resources.vala:211
msgid "Rate Rejected"
msgstr "评为次品"

#: src/Resources.vala:212
msgid "Setting as rejected"
msgstr "设定为次品"

#: src/Resources.vala:213
msgid "Set rating to rejected"
msgstr "设定评分为次品"

#: src/Resources.vala:215
msgid "Rejected _Only"
msgstr "仅次品(_R)"

#: src/Resources.vala:216
msgid "Rejected Only"
msgstr "仅次品(_R)"

#: src/Resources.vala:217
msgid "Show only rejected photos"
msgstr "只显示次要的照片"

#: src/Resources.vala:219
msgid "All + _Rejected"
msgstr "全部为次品(_R)"

#: src/Resources.vala:220 src/Resources.vala:221
msgid "Show all photos, including rejected"
msgstr "显示所有照片,包括次品"

#: src/Resources.vala:223
msgid "_All Photos"
msgstr "所有照片(_A)"

#: src/Resources.vala:224 src/Resources.vala:225
msgid "Show all photos"
msgstr "显示所有照片"

#: src/Resources.vala:227
msgid "_Ratings"
msgstr "评分(_R)"

#: src/Resources.vala:228
msgid "Display each photo's rating"
msgstr "显示每张照片的评分"

#: src/Resources.vala:230
msgid "_Filter Photos"
msgstr "过滤照片(_F)"

#: src/Resources.vala:231
msgid "Filter Photos"
msgstr "过滤照片"

#: src/Resources.vala:232
msgid "Limit the number of photos displayed based on a filter"
msgstr "限制在过滤条件下显示的照片数量"

#: src/Resources.vala:234
msgid "_Duplicate"
msgstr "副本(_D)"

#: src/Resources.vala:235
msgid "Duplicate"
msgstr "副本"

#: src/Resources.vala:236
msgid "Make a duplicate of the photo"
msgstr "创建照片副本"

#: src/Resources.vala:238
msgid "_Export..."
msgstr "导出(_E)..."

#: src/Resources.vala:240
msgid "_Print..."
msgstr "打印(_P)..."

#: src/Resources.vala:242
msgid "Pu_blish..."
msgstr "发布(_B)..."

#: src/Resources.vala:243
msgid "Publish"
msgstr "发布"

#: src/Resources.vala:244
msgid "Publish to various websites"
msgstr "将所选照片发布到各种网站上"

#: src/Resources.vala:246
msgid "E_dit Title..."
msgstr "编辑标题(_D)..."

#: src/Resources.vala:247 src/Dialogs.vala:930
msgid "Edit Title"
msgstr "编辑标题"

#: src/Resources.vala:249
msgid "_Adjust Date and Time..."
msgstr "修改日期和时间(_A)..."

#: src/Resources.vala:250
msgid "Adjust Date and Time"
msgstr "修改日期和时间"

#: src/Resources.vala:252
msgid "Add _Tags..."
msgstr "添加标签(_T)..."

#: src/Resources.vala:253 src/Resources.vala:281
msgid "Add Tags"
msgstr "添加照片"

#: src/Resources.vala:255
msgid "_Preferences"
msgstr "首选项(_P)"

#: src/Resources.vala:257
msgid "_Open With External Editor"
msgstr "用外部编辑器打开(_O)"

#: src/Resources.vala:259
msgid "Open With RA_W Editor"
msgstr "用 RAW 编辑器打开(_W)"

#: src/Resources.vala:261
msgid "Send _To..."
msgstr "发送至(_T)..."

#: src/Resources.vala:263
msgid "_Find..."
msgstr "查找(_F)..."

#: src/Resources.vala:264
msgid "Find"
msgstr "查找"

#: src/Resources.vala:265
msgid "Find an image by typing text that appears in its name or tags"
msgstr "依据名称或者标签查找图片"

#: src/Resources.vala:267
msgid "_Flag"
msgstr "标注(_F)"

#: src/Resources.vala:269
msgid "Un_flag"
msgstr "取消标注(_F)"

#: src/Resources.vala:272
#, c-format
msgid "Unable to launch editor: %s"
msgstr "无法启动编辑器:%s"

#: src/Resources.vala:277
#, c-format
msgid "Add Tag \"%s\""
msgstr "添加标签 \"%s\""

#: src/Resources.vala:279
#, c-format
msgid "Add Tags \"%s\" and \"%s\""
msgstr "添加标签 \"%s\" 和 \"%s\""

#: src/Resources.vala:285
#, c-format
msgid "_Delete Tag \"%s\""
msgstr "删除标签\"%s\" (_D) "

#: src/Resources.vala:289
#, c-format
msgid "Delete Tag \"%s\""
msgstr "删除标签 \"%s\""

#: src/Resources.vala:293
#, c-format
msgid "Remove the tag \"%s\" from one photo"
msgid_plural "Remove the tag \"%s\" from %d photos"
msgstr[0] "移除标签 \"%s\" 从 %d 张照片中"

#: src/Resources.vala:297
msgid "Saved Search"
msgstr "保存搜索"

#: src/Resources.vala:300
#, c-format
msgid "_Delete Search \"%s\""
msgstr "删除搜索 \"%s\"(_D)"

#: src/Resources.vala:304
#, c-format
msgid "Delete saved search: \"%s\""
msgstr "删除保存的搜索:\"%s\""

#: src/Resources.vala:307
msgid "Delete Tag"
msgstr "删除标签"

#: src/Resources.vala:310
#, c-format
msgid "Re_name Tag \"%s\"..."
msgstr "重命名标签 \"%s\" (_N)..."

#: src/Resources.vala:314
#, c-format
msgid "Rename Tag \"%s\" to \"%s\""
msgstr "重命名标签 \"%s\" 为 \"%s\""

#: src/Resources.vala:318
#, c-format
msgid "Rename the tag \"%s\""
msgstr "重命名标签 \"%s\""

#: src/Resources.vala:321
msgid "Rename Tag"
msgstr "重命名标签"

#: src/Resources.vala:323
msgid "Modif_y Tags..."
msgstr "修改标签(_Y)..."

#: src/Resources.vala:324
msgid "Modify Tags"
msgstr "修改标签"

#: src/Resources.vala:327
#, c-format
msgid "Tag Photo as \"%s\""
msgstr "标注照片为 \"%s\""

#: src/Resources.vala:327
#, c-format
msgid "Tag Photos as \"%s\""
msgstr "标注照片为 \"%s\""

#: src/Resources.vala:331
#, c-format
msgid "Tag the selected photo as \"%s\""
msgstr "标注选定照片为 \"%s\""

#: src/Resources.vala:332
#, c-format
msgid "Tag the selected photos as \"%s\""
msgstr "标注选定照片为 \"%s\""

#: src/Resources.vala:336
#, c-format
msgid "Remove Tag \"%s\" From _Photo"
msgstr "从照片移除标签 \"%s\" (_P)"

#: src/Resources.vala:337
#, c-format
msgid "Remove Tag \"%s\" From _Photos"
msgstr "从照片移除标签 \"%s\" (_P)"

#: src/Resources.vala:341
#, c-format
msgid "Remove Tag \"%s\" From Photo"
msgstr "从照片移除标签 \"%s\""

#: src/Resources.vala:342
#, c-format
msgid "Remove Tag \"%s\" From Photos"
msgstr "从照片移除标签 \"%s\""

#: src/Resources.vala:346
#, c-format
msgid "Remove tag \"%s\" from the selected photo"
msgstr "从所选照片移除标签 \"%s\""

#: src/Resources.vala:347
#, c-format
msgid "Remove tag \"%s\" from the selected photos"
msgstr "从所选照片移除标签 \"%s\""

#: src/Resources.vala:351
#, c-format
msgid "Unable to rename tag to \"%s\" because the tag already exists."
msgstr "无法重命名标签为 \"%s\" 因为存在同名标签。"

#: src/Resources.vala:355
#, c-format
msgid "Delete Search \"%s\""
msgstr "Delete Search \"%s\""

#: src/Resources.vala:359
#, c-format
msgid "Unable to rename search to \"%s\" because the search already exists."
msgstr "无法重命名搜索为 \"%s\" 因为该搜索已存在。"

#: src/Resources.vala:362
msgid "Delete Search"
msgstr "删除搜索"

#: src/Resources.vala:365
#, c-format
msgid "_Edit Search \"%s\"..."
msgstr "编辑搜索 \"%s\"(_E)..."

#: src/Resources.vala:369
#, c-format
msgid "Edit the search \"%s\""
msgstr "编辑搜索 \"%s\""

#: src/Resources.vala:373
#, c-format
msgid "Re_name Search \"%s\"..."
msgstr "重命名搜索 \"%s\"(_N)..."

#: src/Resources.vala:377
#, c-format
msgid "Rename the search \"%s\""
msgstr "重命名搜索 \"%s\""

#: src/Resources.vala:381
#, c-format
msgid "Rename Search \"%s\" to \"%s\""
msgstr "重命名搜索 \"%s\" 为 \"%s\""

#: src/Resources.vala:539
#, c-format
msgid "Rate %s"
msgstr "评分 %s"

#: src/Resources.vala:540
#, c-format
msgid "Set rating to %s"
msgstr "设定评分为 %s"

#: src/Resources.vala:541
#, c-format
msgid "Setting rating to %s"
msgstr "设定评分为 %s"

#: src/Resources.vala:543
#, c-format
msgid "Display %s"
msgstr "显示 %s"

#: src/Resources.vala:544
#, c-format
msgid "Only show photos with a rating of %s"
msgstr "只显示评分为 %s 的照片"

#: src/Resources.vala:545
#, c-format
msgid "%s or Better"
msgstr "%s 或更高"

#: src/Resources.vala:546
#, c-format
msgid "Display %s or Better"
msgstr "显示 %s 或更高"

#: src/Resources.vala:547
#, c-format
msgid "Only show photos with a rating of %s or better"
msgstr "只显示评分为 %s 或更高的照片"

#: src/Resources.vala:637 src/Dialogs.vala:18 src/Dialogs.vala:26
#: src/Dialogs.vala:971
msgid "_Delete"
msgstr "删除(_D)"

#: src/Resources.vala:638
msgid "Remove the selected photos from the trash"
msgstr "从垃圾箱中移除选中照片"

#: src/Resources.vala:639
msgid "Remove the selected photos from the library"
msgstr "从媒体库移除选定照片"

#: src/Resources.vala:641
msgid "_Restore"
msgstr "重置(_R)"

#: src/Resources.vala:642
msgid "Move the selected photos back into the library"
msgstr "将选定照片移回至媒体库"

#: src/Resources.vala:644
msgid "Show in File Mana_ger"
msgstr "在文件管理器显示(_G)"

#: src/Resources.vala:645
msgid "Open the selected photo's directory in the file manager"
msgstr "在文件管理器中打开选定照片目录"

#: src/Resources.vala:648
#, c-format
msgid "Unable to open in file manager: %s"
msgstr "无法在文件管理器中打开:%s"

#: src/Resources.vala:651
msgid "R_emove From Library"
msgstr "从媒体库移除(_E)"

#: src/Resources.vala:653
msgid "_Move to Trash"
msgstr "移至垃圾箱(_M)"

#: src/Resources.vala:655
msgid "Select _All"
msgstr "选择全部(_A)"

#: src/Resources.vala:656
msgid "Select all items"
msgstr "选择全部项目"

#: src/Printing.vala:255
msgid "Fill the entire page"
msgstr "填充整个页面"

#: src/Printing.vala:256
msgid "2 images per page"
msgstr "每页 2 张"

#: src/Printing.vala:257
msgid "4 images per page"
msgstr "每页 4 张"

#: src/Printing.vala:258
msgid "6 images per page"
msgstr "每页 6 张"

#: src/Printing.vala:259
msgid "8 images per page"
msgstr "每页 8 张"

#: src/Printing.vala:260
msgid "16 images per page"
msgstr "每页 16 张"

#: src/Printing.vala:261
msgid "32 images per page"
msgstr "每页 32 张"

#: src/Printing.vala:298
msgid "Printed Image Size"
msgstr "图片打印尺寸"

#: src/Printing.vala:310
msgid "Use a _standard size:"
msgstr "使用标准尺寸(_S):"

#: src/Printing.vala:314
msgid "Use a c_ustom size:"
msgstr "使用自定义尺寸(_U):"

#: src/Printing.vala:318
msgid "_Autosize:"
msgstr "自动(_A):"

#: src/Printing.vala:387
msgid "in."
msgstr "英寸."

#: src/Printing.vala:388
msgid "cm"
msgstr "厘米"

#: src/Printing.vala:407
msgid "_Match photo aspect ratio"
msgstr "匹配照片比例(_M)"

#: src/Printing.vala:413
msgid "Titles"
msgstr "标题"

#: src/Printing.vala:420
msgid "Print image _title"
msgstr "图片打印标题(_T)"

#: src/Printing.vala:432
msgid "Pixel Resolution"
msgstr "像素分辨率"

#: src/Printing.vala:438
msgid "_Output photo at:"
msgstr "输出照片为(_O):"

#: src/Printing.vala:453
msgid "pixels per inch"
msgstr "每英寸像素数"

#: src/Printing.vala:931 src/EditingTools.vala:656
msgid "Wallet (2 x 3 in.)"
msgstr "用于皮夹 (2 x 3) 英寸"

#: src/Printing.vala:934 src/EditingTools.vala:657
msgid "Notecard (3 x 5 in.)"
msgstr "留言卡 (3 x 5 英寸)"

#: src/Printing.vala:937 src/EditingTools.vala:658
msgid "4 x 6 in."
msgstr "4 x 6 英寸."

#: src/Printing.vala:940 src/EditingTools.vala:659
msgid "5 x 7 in."
msgstr "5 x 7 英寸."

#: src/Printing.vala:943 src/EditingTools.vala:660
msgid "8 x 10 in."
msgstr "8 x 10 英寸."

#: src/Printing.vala:946 src/EditingTools.vala:661
msgid "11 x 14 in."
msgstr "11 x 14 英寸."

#: src/Printing.vala:949 src/EditingTools.vala:662
msgid "16 x 20 in."
msgstr "16 x 20 英寸."

#: src/Printing.vala:955 src/EditingTools.vala:664
msgid "Metric Wallet (9 x 13 cm)"
msgstr "用于皮夹 (9 x 13 cm)"

#: src/Printing.vala:958 src/EditingTools.vala:665
msgid "Postcard (10 x 15 cm)"
msgstr "明信片 (10 x 15 cm)"

#: src/Printing.vala:961 src/EditingTools.vala:666
msgid "13 x 18 cm"
msgstr "13 x 18 cm"

#: src/Printing.vala:964 src/EditingTools.vala:667
msgid "18 x 24 cm"
msgstr "18 x 24 cm"

#: src/Printing.vala:967 src/EditingTools.vala:668
msgid "20 x 30 cm"
msgstr "20 x 30 cm"

#: src/Printing.vala:970 src/EditingTools.vala:669
msgid "24 x 40 cm"
msgstr "24 x 40 cm"

#: src/Printing.vala:973 src/EditingTools.vala:670
msgid "30 x 40 cm"
msgstr "30 x 40 cm"

#: src/Printing.vala:989
msgid "Image Settings"
msgstr "图像设置"

#: src/Printing.vala:1002
msgid "Printing..."
msgstr "打印中..."

#: src/Printing.vala:1022 src/Printing.vala:1225
#, c-format
msgid ""
"Unable to print photo:\n"
"\n"
"%s"
msgstr ""
"无法打印照片:\n"
"\n"
"%s"

#: src/DirectoryMonitor.vala:879
#, c-format
msgid "Unable to monitor %s: Not a directory (%s)"
msgstr "无法监视 %s:不是一个目录 (%s)"

#: src/VideoSupport.vala:444
msgid "Export Videos"
msgstr "导出视频"

#: src/direct/DirectPhotoPage.vala:48 src/events/EventsDirectoryPage.vala:106
#: src/library/ImportQueuePage.vala:56 src/library/TrashPage.vala:54
#: src/library/OfflinePage.vala:59 src/PhotoPage.vala:2250
#: src/camera/ImportPage.vala:741 src/MediaPage.vala:273
msgid "_File"
msgstr "文件(_F)"

#: src/direct/DirectPhotoPage.vala:53 src/direct/DirectPhotoPage.vala:373
msgid "_Save"
msgstr "保存(_S)"

#: src/direct/DirectPhotoPage.vala:54
msgid "Save photo"
msgstr "保存照片"

#: src/direct/DirectPhotoPage.vala:59
msgid "Save _As..."
msgstr "另存为(_A)..."

#: src/direct/DirectPhotoPage.vala:60
msgid "Save photo with a different name"
msgstr "以其他名字保存照片"

#: src/direct/DirectPhotoPage.vala:71
msgid "Print the photo to a printer connected to your computer"
msgstr "使用连接到此电脑的打印机打印照片"

#: src/direct/DirectPhotoPage.vala:75
msgid "Edit"
msgstr "编辑"

#: src/direct/DirectPhotoPage.vala:79 src/PhotoPage.vala:2288
msgid "_Photo"
msgstr "照片(_P)"

#: src/direct/DirectPhotoPage.vala:83 src/PhotoPage.vala:2292
msgid "_Tools"
msgstr "工具(_T)"

#: src/direct/DirectPhotoPage.vala:88 src/PhotoPage.vala:2297
msgid "_Previous Photo"
msgstr "前一张照片(_P)"

#: src/direct/DirectPhotoPage.vala:89 src/PhotoPage.vala:2298
msgid "Previous Photo"
msgstr "前一张照片"

#: src/direct/DirectPhotoPage.vala:94 src/PhotoPage.vala:2303
msgid "_Next Photo"
msgstr "下一张照片(_N)"

#: src/direct/DirectPhotoPage.vala:95 src/PhotoPage.vala:2304
msgid "Next Photo"
msgstr "下一张照片"

#: src/direct/DirectPhotoPage.vala:161 src/events/EventsDirectoryPage.vala:110
#: src/library/ImportQueuePage.vala:66 src/library/TrashPage.vala:74
#: src/library/OfflinePage.vala:73 src/PhotoPage.vala:2284
#: src/camera/ImportPage.vala:761 src/MediaPage.vala:398
msgid "_View"
msgstr "查看(_V)"

#: src/direct/DirectPhotoPage.vala:165 src/events/EventsDirectoryPage.vala:114
#: src/library/ImportQueuePage.vala:70 src/library/TrashPage.vala:78
#: src/library/OfflinePage.vala:77 src/PhotoPage.vala:2443
#: src/camera/ImportPage.vala:765 src/MediaPage.vala:410
msgid "_Help"
msgstr "帮助(_H)"

#: src/direct/DirectPhotoPage.vala:170 src/PhotoPage.vala:2448
#: src/MediaPage.vala:329
msgid "Zoom _In"
msgstr "放大(_I)"

#: src/direct/DirectPhotoPage.vala:171 src/PhotoPage.vala:2449
msgid "Increase the magnification of the photo"
msgstr "放大缩略图"

#: src/direct/DirectPhotoPage.vala:176 src/PhotoPage.vala:2454
#: src/MediaPage.vala:335
msgid "Zoom _Out"
msgstr "缩小(_O)"

#: src/direct/DirectPhotoPage.vala:177 src/PhotoPage.vala:2455
msgid "Decrease the magnification of the photo"
msgstr "缩小缩略图"

#: src/direct/DirectPhotoPage.vala:182 src/PhotoPage.vala:2460
msgid "Fit to _Page"
msgstr "适合页面(_P)"

#: src/direct/DirectPhotoPage.vala:183 src/PhotoPage.vala:2461
msgid "Zoom the photo to fit on the screen"
msgstr "缩放照片以适合屏幕"

#: src/direct/DirectPhotoPage.vala:188 src/PhotoPage.vala:2466
msgid "Zoom _100%"
msgstr "缩放 100% (_1)"

#: src/direct/DirectPhotoPage.vala:189 src/PhotoPage.vala:2467
#, no-c-format
msgid "Zoom the photo to 100% magnification"
msgstr "缩放照片至 100% m比例"

#: src/direct/DirectPhotoPage.vala:194 src/PhotoPage.vala:2472
msgid "Zoom _200%"
msgstr "缩放 200%(_2)"

#: src/direct/DirectPhotoPage.vala:195 src/PhotoPage.vala:2473
#, no-c-format
msgid "Zoom the photo to 200% magnification"
msgstr "缩放照片至 200% m比例"

#: src/direct/DirectPhotoPage.vala:219
#, c-format
msgid "%s does not exist."
msgstr "%s 不存在。"

#: src/direct/DirectPhotoPage.vala:221
#, c-format
msgid "%s is not a file."
msgstr "%s 不是一个文件。"

#: src/direct/DirectPhotoPage.vala:223
#, c-format
msgid ""
"%s does not support the file format of\n"
"%s."
msgstr ""
"%s 不支持的文件类型\n"
"%s。"

#: src/direct/DirectPhotoPage.vala:373
msgid "_Save a Copy"
msgstr "保存为副本(_S)"

#: src/direct/DirectPhotoPage.vala:376
#, c-format
msgid "Lose changes to %s?"
msgstr "放弃对 %s 的更改?"

#: src/direct/DirectPhotoPage.vala:377
msgid "Close _without Saving"
msgstr "关闭但不保存(_W)"

#: src/direct/DirectPhotoPage.vala:410
#, c-format
msgid "Error while saving to %s: %s"
msgstr "保存 %s 时出错: %s"

#: src/direct/DirectPhotoPage.vala:433 src/direct/DirectPhotoPage.vala:454
msgid "Save As"
msgstr "保存为"

#: src/slideshow/TransitionEffects.vala:96
msgid "(None)"
msgstr "(无)"

#: src/slideshow/TransitionEffects.vala:292
msgid "None"
msgstr "无"

#: src/slideshow/Slideshow.vala:15
msgid "Slideshow Transitions"
msgstr "幻灯片过渡"

#: src/Properties.vala:38
msgid "%I:%M %p"
msgstr "%p%I:%M"

#: src/Properties.vala:50
msgid "Today"
msgstr "今天"

#: src/Properties.vala:52
msgid "Yesterday"
msgstr "昨天"

#: src/Properties.vala:283 src/Dialogs.vala:930
msgid "Title:"
msgstr "标题:"

#: src/Properties.vala:286
msgid "Items:"
msgstr "项目:"

#: src/Properties.vala:289
#, c-format
msgid "%d Event"
msgid_plural "%d Events"
msgstr[0] "%d 个活动"

#: src/Properties.vala:296 src/events/EventDirectoryItem.vala:78
#, c-format
msgid "%d Photo"
msgid_plural "%d Photos"
msgstr[0] "%d 个照片"

#: src/Properties.vala:298 src/events/EventDirectoryItem.vala:76
#, c-format
msgid "%d Video"
msgid_plural "%d Videos"
msgstr[0] "%d 个视频"

#: src/Properties.vala:320
msgid "Date:"
msgstr "日期:"

#: src/Properties.vala:324
msgid "Time:"
msgstr "时间:"

#: src/Properties.vala:327 src/Properties.vala:332
msgid "From:"
msgstr "从:"

#: src/Properties.vala:328 src/Properties.vala:333
msgid "To:"
msgstr "到:"

#: src/Properties.vala:338 src/EditingTools.vala:1740
msgid "Size:"
msgstr "尺寸:"

#: src/Properties.vala:347
msgid "Duration:"
msgstr "持续时长:"

#: src/Properties.vala:347
#, c-format
msgid "%.1f seconds"
msgstr "%.1f 秒"

#: src/Properties.vala:371 src/Properties.vala:375 src/Properties.vala:382
#: src/EditingTools.vala:2072
msgid "Exposure:"
msgstr "曝光:"

#: src/Properties.vala:470
msgid "Location:"
msgstr "地点:"

#: src/Properties.vala:472
msgid "File size:"
msgstr "文件大小:"

#: src/Properties.vala:475
msgid "Original dimensions:"
msgstr "原始尺寸:"

#: src/Properties.vala:478
msgid "Camera make:"
msgstr "相机厂商:"

#: src/Properties.vala:481
msgid "Camera model:"
msgstr "相机型号:"

#: src/Properties.vala:484
msgid "Flash:"
msgstr "闪光灯:"

#: src/Properties.vala:486
msgid "Focal length:"
msgstr "焦距:"

#: src/Properties.vala:489
msgid "Exposure bias:"
msgstr "曝光偏差:"

#: src/Properties.vala:491
msgid "GPS latitude:"
msgstr "GPS 纬度:"

#: src/Properties.vala:494
msgid "GPS longitude:"
msgstr "GPS 经度:"

#: src/Properties.vala:497
msgid "Artist:"
msgstr "艺术家:"

#: src/Properties.vala:499
msgid "Copyright:"
msgstr "版权:"

#: src/Properties.vala:501
msgid "Software:"
msgstr "软件:"

#: src/Properties.vala:510
msgid "Extended Information"
msgstr "扩展信息"

#: src/tags/Branch.vala:87
msgid "Tags"
msgstr "标签"

#: src/searches/SavedSearchDialog.vala:160
msgid "contains"
msgstr "包含"

#: src/searches/SavedSearchDialog.vala:161
msgid "is exactly"
msgstr "必须有"

#: src/searches/SavedSearchDialog.vala:162
msgid "starts with"
msgstr "以开始"

#: src/searches/SavedSearchDialog.vala:163
msgid "ends with"
msgstr "结束以"

#: src/searches/SavedSearchDialog.vala:164
msgid "does not contain"
msgstr "不包含"

#: src/searches/SavedSearchDialog.vala:165
msgid "is not set"
msgstr "未设为"

#: src/searches/SavedSearchDialog.vala:235
#: src/searches/SavedSearchDialog.vala:304
#: src/searches/SavedSearchDialog.vala:369
msgid "is"
msgstr "是"

#: src/searches/SavedSearchDialog.vala:236
msgid "is not"
msgstr "不是"

#: src/searches/SavedSearchDialog.vala:242
msgid "any photo"
msgstr "任意照片"

#: src/searches/SavedSearchDialog.vala:243
msgid "a raw photo"
msgstr "一个 RAW 照片"

#: src/searches/SavedSearchDialog.vala:244
msgid "a video"
msgstr "一个视频"

#: src/searches/SavedSearchDialog.vala:298
msgid "flagged"
msgstr "已标注"

#: src/searches/SavedSearchDialog.vala:299
msgid "not flagged"
msgstr "未标注"

#: src/searches/SavedSearchDialog.vala:362
msgid "and higher"
msgstr "及更高"

#: src/searches/SavedSearchDialog.vala:363
msgid "only"
msgstr "仅"

#: src/searches/SavedSearchDialog.vala:364
msgid "and lower"
msgstr "及更低"

#: src/searches/SavedSearchDialog.vala:490
msgid "any"
msgstr "任何"

#: src/searches/SavedSearchDialog.vala:491
msgid "all"
msgstr "全部"

#: src/searches/SavedSearchDialog.vala:492
msgid "none"
msgstr "无"

#: src/searches/SearchBoolean.vala:135
msgid "Any text"
msgstr "任意文字"

#: src/searches/SearchBoolean.vala:138
msgid "Title"
msgstr "标题"

#: src/searches/SearchBoolean.vala:141
msgid "Tag"
msgstr "标签"

#: src/searches/SearchBoolean.vala:144
msgid "Event name"
msgstr "活动名称"

#: src/searches/SearchBoolean.vala:147
msgid "File name"
msgstr "文件名"

#: src/searches/SearchBoolean.vala:150
msgid "Media type"
msgstr "媒体类型"

#: src/searches/SearchBoolean.vala:153
msgid "Flag state"
msgstr "标注状态"

#: src/searches/SearchBoolean.vala:156 src/SearchFilter.vala:922
msgid "Rating"
msgstr "评分"

#: src/searches/Branch.vala:65
msgid "Saved Searches"
msgstr "已保存搜索"

#: src/sidebar/Tree.vala:157 src/library/LibraryWindow.vala:348
msgid "Ne_w Search..."
msgstr "新建(_W)..."

#: src/util/misc.vala:231 src/util/misc.vala:236
msgid "%a %b %d"
msgstr "%a %b%d"

#: src/util/misc.vala:232
msgid "%d, %Y"
msgstr "%Y年%d"

#: src/util/misc.vala:237 src/util/misc.vala:242 src/util/misc.vala:243
#: src/util/misc.vala:251
msgid "%a %b %d, %Y"
msgstr "%a %b %d, %Y"

#: src/BatchImport.vala:25
msgid "Success"
msgstr "成功"

#: src/BatchImport.vala:28
msgid "File error"
msgstr "文件错误"

#: src/BatchImport.vala:31
msgid "Unable to decode file"
msgstr "无法解码文件"

#: src/BatchImport.vala:34
msgid "Database error"
msgstr "数据库错误"

#: src/BatchImport.vala:37
msgid "User aborted import"
msgstr "用户中止导入"

#: src/BatchImport.vala:40
msgid "Not a file"
msgstr "不是一个文件"

#: src/BatchImport.vala:43
msgid "File already exists in database"
msgstr "文件已存在于数据库中"

#: src/BatchImport.vala:46
msgid "Unsupported file format"
msgstr "不支持的文件格式"

#: src/BatchImport.vala:49
msgid "Not an image file"
msgstr "并不是照片文件"

#: src/BatchImport.vala:52
msgid "Disk failure"
msgstr "磁盘错误"

#: src/BatchImport.vala:55
msgid "Disk full"
msgstr "磁盘已满"

#: src/BatchImport.vala:58
msgid "Camera error"
msgstr "相机错误"

#: src/BatchImport.vala:61
msgid "File write error"
msgstr "文件写入错误"

#: src/BatchImport.vala:64
#, c-format
msgid "Imported failed (%d)"
msgstr "导入失败(%d)"

#: src/EditingTools.vala:563
msgid "Return to current photo dimensions"
msgstr "回到当前照片尺寸"

#: src/EditingTools.vala:566
msgid "Set the crop for this photo"
msgstr "对这张照片进行剪裁"

#: src/EditingTools.vala:578
msgid "Pivot the crop rectangle between portrait and landscape orientations"
msgstr "在肖像和风景方向上旋转剪裁矩形"

#: src/EditingTools.vala:648
msgid "Unconstrained"
msgstr "不限制"

#: src/EditingTools.vala:649
msgid "Square"
msgstr "方形"

#: src/EditingTools.vala:650
msgid "Screen"
msgstr "屏幕"

#: src/EditingTools.vala:651
#: plugins/shotwell-publishing/PicasaPublishing.vala:1242
msgid "Original Size"
msgstr "原始尺寸"

#: src/EditingTools.vala:652 src/EditingTools.vala:655
#: src/EditingTools.vala:663 src/EditingTools.vala:671
msgid "-"
msgstr "-"

#: src/EditingTools.vala:653
msgid "SD Video (4 : 3)"
msgstr "标清视频 (4 : 3)"

#: src/EditingTools.vala:654
msgid "HD Video (16 : 9)"
msgstr "高清视频 (16 : 9)"

#: src/EditingTools.vala:672 src/Dialogs.vala:1806
msgid "Custom"
msgstr "自定义"

#: src/EditingTools.vala:1755
msgid "Close the red-eye tool"
msgstr "关闭红眼工具"

#: src/EditingTools.vala:1758
msgid "Remove any red-eye effects in the selected region"
msgstr "移除在选定区域内的所有红眼效果"

#: src/EditingTools.vala:2061
msgid "_Reset"
msgstr "重置(_R)"

#: src/EditingTools.vala:2080
msgid "Saturation:"
msgstr "饱和度:"

#: src/EditingTools.vala:2088
msgid "Tint:"
msgstr "色彩:"

#: src/EditingTools.vala:2097
msgid "Temperature:"
msgstr "色温:"

#: src/EditingTools.vala:2105
msgid "Shadows:"
msgstr "阴影:"

#: src/EditingTools.vala:2159
msgid "Reset Colors"
msgstr "重置颜色"

#: src/EditingTools.vala:2159
msgid "Reset all color adjustments to original"
msgstr "将所有颜色修正重置至原始"

#: src/EditingTools.vala:2488
msgid "Temperature"
msgstr "色温"

#: src/EditingTools.vala:2494
msgid "Tint"
msgstr "色彩"

#: src/EditingTools.vala:2500
msgid "Saturation"
msgstr "饱和度"

#: src/EditingTools.vala:2506
msgid "Exposure"
msgstr "曝光"

#: src/EditingTools.vala:2512
msgid "Shadows"
msgstr "阴影"

#: src/EditingTools.vala:2522
msgid "Contrast Expansion"
msgstr "对比度扩展"

#: src/SearchFilter.vala:613 src/SearchFilter.vala:614
#: src/SearchFilter.vala:911 src/library/FlaggedPage.vala:8
msgid "Flagged"
msgstr "已标注"

#: src/SearchFilter.vala:619 src/SearchFilter.vala:620
msgid "Photos"
msgstr "照片"

#: src/SearchFilter.vala:625 src/SearchFilter.vala:626
msgid "Videos"
msgstr "视频"

#: src/SearchFilter.vala:631
msgid "RAW Photos"
msgstr "RAW 照片"

#: src/SearchFilter.vala:632
msgid "RAW photos"
msgstr "RAW 照片"

#: src/SearchFilter.vala:878
#, c-format
msgid "Error loading UI file %s: %s"
msgstr "载入 UI 文件 %s 时出错:%s"

#: src/SearchFilter.vala:895
msgid "Type"
msgstr "类型"

#: src/Exporter.vala:246
#, c-format
msgid "Unable to generate a temporary file for %s: %s"
msgstr "无法为 %s 生成临时文件: %s"

#: src/Exporter.vala:313
msgid "Exporting"
msgstr "正在导出"

#: src/Exporter.vala:330
#, c-format
msgid "File %s already exists.  Replace?"
msgstr "文件 %s 已存在。是否替换?"

#: src/Exporter.vala:332
msgid "_Skip"
msgstr "跳过(_S)"

#: src/Exporter.vala:332
msgid "_Replace"
msgstr "替换(_R)"

#: src/Exporter.vala:332
msgid "Replace _All"
msgstr "全部替换(_A)"

#: src/Exporter.vala:332
msgid "Export"
msgstr "导出"

#: src/AppDirs.vala:48
#, c-format
msgid "Unable to create data directory %s: %s"
msgstr "无法创建数据文件夹 %s : %s"

#: src/AppDirs.vala:84
msgid "Pictures"
msgstr "图片"

#: src/AppDirs.vala:124
#, c-format
msgid "Unable to create temporary directory %s: %s"
msgstr "无法创建临时文件夹 %s : %s"

#: src/AppDirs.vala:140
#, c-format
msgid "Unable to create data subdirectory %s: %s"
msgstr "无法创建子数据文件夹 %s: %s"

#: src/events/EventDirectoryItem.vala:74
#, c-format
msgid "%d Photo/Video"
msgid_plural "%d Photos/Videos"
msgstr[0] "%d 个照片/视频"

#: src/events/EventPage.vala:86
msgid "No Event"
msgstr "没有活动"

#: src/events/EventsDirectoryPage.vala:118 src/library/TrashPage.vala:58
#: src/library/OfflinePage.vala:63 src/PhotoPage.vala:2270
#: src/camera/ImportPage.vala:757 src/MediaPage.vala:287
msgid "_Edit"
msgstr "编辑(_E)"

#: src/events/EventsDirectoryPage.vala:122 src/MediaPage.vala:305
msgid "Even_ts"
msgstr "活动(_T)"

#: src/events/EventsDirectoryPage.vala:154
msgid "No events"
msgstr "没有活动"

#: src/events/EventsDirectoryPage.vala:158
msgid "No events found"
msgstr "没有找到活动"

#: src/events/EventsDirectoryPage.vala:205
msgid "Events"
msgstr "活动"

#: src/events/EventsDirectoryPage.vala:219
msgid "Undated"
msgstr "取消隐藏"

#: src/events/EventsDirectoryPage.vala:220
msgid "%Y"
msgstr "%Y"

#: src/events/EventsDirectoryPage.vala:221
msgid "%B"
msgstr "%B"

#: src/DesktopIntegration.vala:118
#, c-format
msgid "Unable to launch Nautilus Send-To: %s"
msgstr "无法启动文件管理器的 发送至:%s"

#: src/DesktopIntegration.vala:126
msgid "Send To"
msgstr "发送至"

#: src/DesktopIntegration.vala:169
#, c-format
msgid "Unable to export background to %s: %s"
msgstr "不能输出为背景到 %s : %s"

#: src/DesktopIntegration.vala:294
#, c-format
msgid "Unable to prepare desktop slideshow: %s"
msgstr "无法准备桌面幻灯片: %s"

#: src/Dimensions.vala:17
#: plugins/shotwell-publishing/FlickrPublishing.vala:1130
msgid "Original size"
msgstr "原始尺寸"

#: src/Dimensions.vala:20
msgid "Width or height"
msgstr "宽度或者高度"

#: src/Dimensions.vala:23
msgid "Width"
msgstr "宽度"

#: src/Dimensions.vala:26
msgid "Height"
msgstr "高度"

#: src/main.vala:81
#, c-format
msgid ""
"Your photo library is not compatible with this version of Shotwell.  It "
"appears it was created by Shotwell %s (schema %d).  This version is %s "
"(schema %d).  Please use the latest version of Shotwell."
msgstr ""
"您的媒体库和当前版本的 Shotwell 不兼容。它似乎是由 Shotwell %s (编号 %d)创建的。当前版本是 %s (编号 %d) "
"。请使用最新版本的 Shotwell。"

#: src/main.vala:86
#, c-format
msgid ""
"Shotwell was unable to upgrade your photo library from version %s (schema "
"%d) to %s (schema %d).  For more information please check the Shotwell Wiki "
"at %s"
msgstr ""
"Shotwell 无法将您的媒体库从 %s (编号 %d)版本升级到 %s (编号 %d)版本。更多的信息请查询 Shotwell 维基 %s"

#: src/main.vala:92
#, c-format
msgid ""
"Your photo library is not compatible with this version of Shotwell.  It "
"appears it was created by Shotwell %s (schema %d).  This version is %s "
"(schema %d).  Please clear your library by deleting %s and re-import your "
"photos."
msgstr ""
"您的媒体库和当前版本的 Shotwell 不兼容。它似乎是由 Shotwell %s (编号 %d)创建的。当前版本是 %s (编号 %d)。请删除 "
"%s 来释放您的照片库然后重新导入照片。"

#: src/main.vala:98
#, c-format
msgid "Unknown error attempting to verify Shotwell's database: %s"
msgstr "验证 Shotwell 数据库时发生未知错误: %s"

#: src/main.vala:130
msgid "Loading Shotwell"
msgstr "正在载入 Shotwell"

#: src/main.vala:347
msgid "[FILE]"
msgstr "[FILE]"

#: src/main.vala:351
#, c-format
msgid "Run '%s --help' to see a full list of available command line options.\n"
msgstr "运行 '%s --help' 来查看可用命令行选项的完整列表。\n"

#: src/publishing/PublishingUI.vala:69
#: plugins/shotwell-publishing/PicasaPublishing.vala:913
#: plugins/shotwell-publishing/YouTubePublishing.vala:844
msgid "_Login"
msgstr "登录(_L)"

#: src/publishing/PublishingUI.vala:144
msgid "The selected photos/videos were successfully published."
msgstr "选中的照片/视频已经成功发布。"

#: src/publishing/PublishingUI.vala:146
msgid "The selected videos were successfully published."
msgstr "选中的视频已经成功发布。"

#: src/publishing/PublishingUI.vala:148
msgid "The selected photos were successfully published."
msgstr "选中照片已经成功发布。"

#: src/publishing/PublishingUI.vala:151
msgid "The selected video was successfully published."
msgstr "选中的视频已经成功发布。"

#: src/publishing/PublishingUI.vala:153
msgid "The selected photo was successfully published."
msgstr "选中的照片已经成功发布。"

#: src/publishing/PublishingUI.vala:161
msgid "Fetching account information..."
msgstr "获取账户信息..."

#: src/publishing/PublishingUI.vala:167
msgid "Logging in..."
msgstr "正在登入……"

#: src/publishing/PublishingUI.vala:218
msgid "Publish Photos"
msgstr "发布照片"

#: src/publishing/PublishingUI.vala:219
msgid "Publish photos _to:"
msgstr "发布照片到(_T):"

#: src/publishing/PublishingUI.vala:221
msgid "Publish Videos"
msgstr "发布视频"

#: src/publishing/PublishingUI.vala:222
msgid "Publish videos _to"
msgstr "发布视频到(_T)"

#: src/publishing/PublishingUI.vala:224
msgid "Publish Photos and Videos"
msgstr "发布照片和视频"

#: src/publishing/PublishingUI.vala:225
msgid "Publish photos and videos _to"
msgstr "发布照片和视频到(_T)"

#: src/publishing/PublishingUI.vala:390
msgid "Unable to publish"
msgstr "无法发布"

#: src/publishing/PublishingUI.vala:391
#, c-format
msgid ""
"Shotwell cannot publish the selected items because you do not have a "
"compatible publishing plugin enabled. To correct this, choose <b>Edit %s "
"Preferences</b> and enable one or more of the publishing plugins on the "
"<b>Plugin</b> tab."
msgstr ""
"Shotwell 无法发布选定项目,因为您尚未启用兼容的发布插件。要修复此问题,请选择 <b>编辑 %s 首选项</b>,并且在 <b>插件</b> "
"标签页中启用一个或多个发布插件。"

#: src/publishing/PublishingUI.vala:475
msgid "_Close"
msgstr "关闭(_C)"

#: src/publishing/Publishing.vala:16
msgid "Publishing"
msgstr "发布中"

#: src/publishing/PublishingPluginHost.vala:11
msgid "Preparing for upload"
msgstr "准备上传"

#: src/publishing/PublishingPluginHost.vala:12
#, c-format
msgid "Uploading %d of %d"
msgstr "%d 在 %d 中在上传中"

#: src/publishing/PublishingPluginHost.vala:81
#, c-format
msgid "Publishing to %s can't continue because an error occurred:"
msgstr "无法继续发布到 %s 因为发生了一个错误:"

#: src/publishing/PublishingPluginHost.vala:84
msgid "To try publishing to another service, select one from the above menu."
msgstr "尝试发布到其他的服务,从上面的菜单中选择一个。"

#: src/library/LastImportPage.vala:8
msgid "Last Import"
msgstr "最近导入"

#: src/library/ImportQueuePage.vala:8
msgid "Importing..."
msgstr "导入..."

#: src/library/ImportQueuePage.vala:61
msgid "_Stop Import"
msgstr "停止导入(_S)"

#: src/library/ImportQueuePage.vala:62
msgid "Stop importing photos"
msgstr "停止导入照片"

#: src/library/ImportQueuePage.vala:126
msgid "Preparing to import..."
msgstr "准备导入..."

#: src/library/ImportQueuePage.vala:149
#, c-format
msgid "Imported %s"
msgstr "已导入 %s"

#: src/library/TrashPage.vala:8
msgid "Trash"
msgstr "标签"

#: src/library/TrashPage.vala:124
msgid "Trash is empty"
msgstr "垃圾箱为空"

#: src/library/TrashPage.vala:128
msgid "Delete"
msgstr "刪除"

#: src/library/TrashPage.vala:129
msgid "Deleting Photos"
msgstr "删除照片"

#: src/library/OfflinePage.vala:8
msgid "Missing Files"
msgstr "丢失文件"

#: src/library/OfflinePage.vala:122
msgid "Deleting..."
msgstr "删除..."

#: src/library/LibraryWindow.vala:304
msgid "_Import From Folder..."
msgstr "从文件夹导入(_I)..."

#: src/library/LibraryWindow.vala:305
msgid "Import photos from disk to library"
msgstr "从磁盘导入照片到媒体库"

#: src/library/LibraryWindow.vala:315
msgid "Sort _Events"
msgstr "排列活动(_E)"

#: src/library/LibraryWindow.vala:325
msgid "Empty T_rash"
msgstr "清空垃圾箱(_R)"

#: src/library/LibraryWindow.vala:326
msgid "Delete all photos in the trash"
msgstr "删除在回收站中的全部照片"

#: src/library/LibraryWindow.vala:331
msgid "View Eve_nt for Photo"
msgstr "查看照片所属活动(_N)"

#: src/library/LibraryWindow.vala:336
msgid "_Find"
msgstr "查找(_F)"

#: src/library/LibraryWindow.vala:337
msgid "Find photos and videos by search criteria"
msgstr "按照规则查找照片和视频"

#: src/library/LibraryWindow.vala:359
msgid "_Basic Information"
msgstr "基本信息(_B)"

#: src/library/LibraryWindow.vala:360
msgid "Display basic information for the selection"
msgstr "显示所选项的基本信息"

#: src/library/LibraryWindow.vala:365
msgid "E_xtended Information"
msgstr "扩展信息(_X)"

#: src/library/LibraryWindow.vala:366
msgid "Display extended information for the selection"
msgstr "显示所选项的扩展信息"

#: src/library/LibraryWindow.vala:371
msgid "_Search Bar"
msgstr "搜索栏(_S)"

#: src/library/LibraryWindow.vala:372
msgid "Display the search bar"
msgstr "显示搜索栏"

#: src/library/LibraryWindow.vala:384 src/MediaPage.vala:477
msgid "_Ascending"
msgstr "升序(_A)"

#: src/library/LibraryWindow.vala:385 src/MediaPage.vala:478
msgid "Sort photos in an ascending order"
msgstr "按照升序排列照片"

#: src/library/LibraryWindow.vala:391 src/MediaPage.vala:483
msgid "D_escending"
msgstr "降序(_D)"

#: src/library/LibraryWindow.vala:392 src/MediaPage.vala:484
msgid "Sort photos in a descending order"
msgstr "按照降序排列照片"

#: src/library/LibraryWindow.vala:622
msgid "Import From Folder"
msgstr "从文件夹导入"

#: src/library/LibraryWindow.vala:685
msgid "Empty Trash"
msgstr "清空垃圾箱"

#: src/library/LibraryWindow.vala:685
msgid "Emptying Trash..."
msgstr "导入..."

#: src/library/LibraryWindow.vala:828
msgid "Shotwell is configured to import photos to your home directory.\n"
msgstr "Shotwell 被配置为从您的主目录导入照片。\n"

#: src/library/LibraryWindow.vala:831
msgid "_Import"
msgstr "导入(_I)"

#: src/library/LibraryWindow.vala:831
msgid "Library Location"
msgstr "媒体库位置"

#: src/library/LibraryWindow.vala:844
msgid "Photos cannot be imported from this directory."
msgstr "无法从此文件夹导入照片。"

#: src/library/LibraryWindow.vala:1169
#, c-format
msgid "%s (%d%%)"
msgstr "%s (%d%%)"

#: src/library/LibraryWindow.vala:1202 src/library/LibraryWindow.vala:1210
msgid "Updating library..."
msgstr "更新媒体库..."

#: src/library/LibraryWindow.vala:1215
msgid "Preparing to auto-import photos..."
msgstr "准备自动导入照片..."

#: src/library/LibraryWindow.vala:1220
msgid "Auto-importing photos..."
msgstr "自动导入照片…"

#: src/library/LibraryWindow.vala:1225
msgid "Writing metadata to files..."
msgstr "写入元数据到文件…"

#: src/library/LibraryWindow.vala:1230
msgid "Processing RAW files..."
msgstr "处理 RAW 文件…"

#: src/library/Branch.vala:37
msgid "Library"
msgstr "媒体库"

#: src/CollectionPage.vala:207 src/PhotoPage.vala:2492
msgid "S_lideshow"
msgstr "幻灯片演示(_L)"

#: src/CollectionPage.vala:208 src/PhotoPage.vala:2493
msgid "Play a slideshow"
msgstr "开始幻灯片播放"

#: src/CollectionPage.vala:428
msgid "Export Photo/Video"
msgstr "导出照片/视频"

#: src/CollectionPage.vala:428
msgid "Export Photos/Videos"
msgstr "导出照片/视频"

#: src/CollectionPage.vala:430 src/Dialogs.vala:40 src/PhotoPage.vala:2967
msgid "Export Photo"
msgstr "导出照片"

#: src/CollectionPage.vala:430 src/Dialogs.vala:66
msgid "Export Photos"
msgstr "导出照片"

#: src/CollectionPage.vala:518 src/CollectionPage.vala:534
msgid "Rotating"
msgstr "正在旋转"

#: src/CollectionPage.vala:518 src/CollectionPage.vala:534
msgid "Undoing Rotate"
msgstr "正在取消旋转"

#: src/CollectionPage.vala:543
msgid "Flipping Horizontally"
msgstr "正在水平翻转"

#: src/CollectionPage.vala:544
msgid "Undoing Flip Horizontally"
msgstr "正在取消水平翻转"

#: src/CollectionPage.vala:553
msgid "Flipping Vertically"
msgstr "正在垂直翻转"

#: src/CollectionPage.vala:554
msgid "Undoing Flip Vertically"
msgstr "正在取消垂直翻转"

#: src/Dialogs.vala:14
#, c-format
msgid "This will remove the tag \"%s\" from one photo.  Continue?"
msgid_plural "This will remove the tag \"%s\" from %d photos.  Continue?"
msgstr[0] "这将移除标签 \"%s\" 从 %d 张照片中。继续么?"

#: src/Dialogs.vala:23
#, c-format
msgid "This will remove the saved search \"%s\".  Continue?"
msgstr "这将移除已保存搜索 \"%s\"。  继续?"

#: src/Dialogs.vala:40
msgid "Export Video"
msgstr "导出视频"

#: src/Dialogs.vala:94
#, c-format
msgid ""
"Shotwell couldn't create a file for editing this photo because you do not "
"have permission to write to %s."
msgstr "Shotwell 无法为编辑此照片创建必需的文件,因为您不具有 %s 的写入权限。"

#: src/Dialogs.vala:103
msgid ""
"Unable to export the following photo due to a file error.\n"
"\n"
msgstr ""
"由于文件错误无法导出以下照片。\n"
"\n"

#: src/Dialogs.vala:109
msgid ""
"\n"
"\n"
"Would you like to continue exporting?"
msgstr ""
"\n"
"\n"
"您想要继续导出吗?"

#: src/Dialogs.vala:110
msgid "Con_tinue"
msgstr "继续(_T)"

#: src/Dialogs.vala:126
msgid "Unmodified"
msgstr "未修改的"

#: src/Dialogs.vala:127
msgid "Current"
msgstr "当前"

#: src/Dialogs.vala:191
msgid "_Format:"
msgstr "格式(_F):"

#: src/Dialogs.vala:194
msgid "_Quality:"
msgstr "质量(_Q):"

#: src/Dialogs.vala:197
msgid "_Scaling constraint:"
msgstr "缩放限制(_S):"

#: src/Dialogs.vala:200
msgid " _pixels"
msgstr "像素(_P)"

#: src/Dialogs.vala:437
#, c-format
msgid "(and %d more)\n"
msgstr "(和另外 %d 个)\n"

#: src/Dialogs.vala:493
#, c-format
msgid "1 duplicate photo was not imported:\n"
msgid_plural "%d duplicate photos were not imported:\n"
msgstr[0] "%d 个重复的照片没有导入:\n"

#: src/Dialogs.vala:496
#, c-format
msgid "1 duplicate video was not imported:\n"
msgid_plural "%d duplicate videos were not imported:\n"
msgstr[0] "%d 个重复的视频没有导入:\n"

#: src/Dialogs.vala:499
#, c-format
msgid "1 duplicate photo/video was not imported:\n"
msgid_plural "%d duplicate photos/videos were not imported:\n"
msgstr[0] "%d 个重复的照片/视频没有导入:\n"

#: src/Dialogs.vala:513
#, c-format
msgid "1 photo failed to import due to a file or hardware error:\n"
msgid_plural "%d photos failed to import due to a file or hardware error:\n"
msgstr[0] "%d 个照片由于文件或硬件错误导入失败:\n"

#: src/Dialogs.vala:516
#, c-format
msgid "1 video failed to import due to a file or hardware error:\n"
msgid_plural "%d videos failed to import due to a file or hardware error:\n"
msgstr[0] "%d 个视频由于文件或硬件错误导入失败:\n"

#: src/Dialogs.vala:519
#, c-format
msgid "1 photo/video failed to import due to a file or hardware error:\n"
msgid_plural ""
"%d photos/videos failed to import due to a file or hardware error:\n"
msgstr[0] "%d 个照片/视频由于文件或硬件错误导入失败:\n"

#: src/Dialogs.vala:522
#, c-format
msgid "1 file failed to import due to a file or hardware error:\n"
msgid_plural "%d files failed to import due to a file or hardware error:\n"
msgstr[0] "%d 文件导入失败由于文件或硬件错误:\n"

#: src/Dialogs.vala:536
#, c-format
msgid ""
"1 photo failed to import because the photo library folder was not "
"writable:\n"
msgid_plural ""
"%d photos failed to import because the photo library folder was not "
"writable:\n"
msgstr[0] "%d 个照片由于无法写入媒体库导入失败:\n"

#: src/Dialogs.vala:539
#, c-format
msgid ""
"1 video failed to import because the photo library folder was not "
"writable:\n"
msgid_plural ""
"%d videos failed to import because the photo library folder was not "
"writable:\n"
msgstr[0] "%d 个视频由于无法写入媒体库导入失败:\n"

#: src/Dialogs.vala:542
#, c-format
msgid ""
"1 photo/video failed to import because the photo library folder was not "
"writable:\n"
msgid_plural ""
"%d photos/videos failed to import because the photo library folder was not "
"writable:\n"
msgstr[0] "%d 个照片/视频由于无法写入媒体库导入失败:\n"

#: src/Dialogs.vala:545
#, c-format
msgid ""
"1 file failed to import because the photo library folder was not writable:\n"
msgid_plural ""
"%d files failed to import because the photo library folder was not "
"writable:\n"
msgstr[0] "%d 文件导入失败因为照片库文件夹不可写入:\n"

#: src/Dialogs.vala:559
#, c-format
msgid "1 photo failed to import due to a camera error:\n"
msgid_plural "%d photos failed to import due to a camera error:\n"
msgstr[0] "%d 个照片由于相机错误导入失败:\n"

#: src/Dialogs.vala:562
#, c-format
msgid "1 video failed to import due to a camera error:\n"
msgid_plural "%d videos failed to import due to a camera error:\n"
msgstr[0] "%d 个视频由于相机错误导入失败:\n"

#: src/Dialogs.vala:565
#, c-format
msgid "1 photo/video failed to import due to a camera error:\n"
msgid_plural "%d photos/videos failed to import due to a camera error:\n"
msgstr[0] "%d 个照片/视频由于相机错误导入失败:\n"

#: src/Dialogs.vala:568
#, c-format
msgid "1 file failed to import due to a camera error:\n"
msgid_plural "%d files failed to import due to a camera error:\n"
msgstr[0] "%d 文件导入失败由于相机错误:\n"

#: src/Dialogs.vala:585
#, c-format
msgid "1 unsupported photo skipped:\n"
msgid_plural "%d unsupported photos skipped:\n"
msgstr[0] "跳过 %d 个不支持的照片:\n"

#: src/Dialogs.vala:600
#, c-format
msgid "1 non-image file skipped.\n"
msgid_plural "%d non-image files skipped.\n"
msgstr[0] "跳过 %d 个非照片文件。\n"

#: src/Dialogs.vala:611
#, c-format
msgid "1 photo skipped due to user cancel:\n"
msgid_plural "%d photos skipped due to user cancel:\n"
msgstr[0] "由于用户取消跳过 %d 个照片:\n"

#: src/Dialogs.vala:614
#, c-format
msgid "1 video skipped due to user cancel:\n"
msgid_plural "%d videos skipped due to user cancel:\n"
msgstr[0] "由于用户取消跳过 %d 个视频:\n"

#: src/Dialogs.vala:617
#, c-format
msgid "1 photo/video skipped due to user cancel:\n"
msgid_plural "%d photos/videos skipped due to user cancel:\n"
msgstr[0] "由于用户取消跳过 %d 个照片/视频:\n"

#: src/Dialogs.vala:620
#, c-format
msgid "1 file skipped due to user cancel:\n"
msgid_plural "%d file skipped due to user cancel:\n"
msgstr[0] "%d 文件被跳过由于用户取消:\n"

#: src/Dialogs.vala:634
#, c-format
msgid "1 photo successfully imported.\n"
msgid_plural "%d photos successfully imported.\n"
msgstr[0] "%d 个照片成功导入。\n"

#: src/Dialogs.vala:637
#, c-format
msgid "1 video successfully imported.\n"
msgid_plural "%d videos successfully imported.\n"
msgstr[0] "%d 个视频成功导入。\n"

#: src/Dialogs.vala:640
#, c-format
msgid "1 photo/video successfully imported.\n"
msgid_plural "%d photos/videos successfully imported.\n"
msgstr[0] "%d 个照片/视频成功导入。\n"

#: src/Dialogs.vala:656
msgid "No photos or videos imported.\n"
msgstr "没有照片或视频导入。\n"

#: src/Dialogs.vala:671
msgid "Import Complete"
msgstr "导入完成"

#: src/Dialogs.vala:833
#, c-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"

#: src/Dialogs.vala:836
#, c-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d 分钟"

#: src/Dialogs.vala:840
#, c-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d 小时"

#: src/Dialogs.vala:843
msgid "1 day"
msgstr "1 天"

#: src/Dialogs.vala:920
msgid "Name:"
msgstr "名称:"

#: src/Dialogs.vala:946
msgid "_Trash File"
msgid_plural "_Trash Files"
msgstr[0] "移至回收站(_T)"

#: src/Dialogs.vala:950
msgid "Only _Remove"
msgstr "只移除(_R)"

#: src/Dialogs.vala:970 src/camera/ImportPage.vala:1412
msgid "_Keep"
msgstr "保留(_K)"

#: src/Dialogs.vala:993
msgid "Revert External Edit?"
msgstr "恢复额外修改?"

#: src/Dialogs.vala:993
msgid "Revert External Edits?"
msgstr "恢复额外修改?"

#: src/Dialogs.vala:995
#, c-format
msgid "This will destroy all changes made to the external file.  Continue?"
msgid_plural ""
"This will destroy all changes made to %d external files.  Continue?"
msgstr[0] "这将毁掉对于 %d 个外部文件所做的全部修改。继续?"

#: src/Dialogs.vala:999
msgid "Re_vert External Edit"
msgstr "恢复额外修改(_V)"

#: src/Dialogs.vala:999
msgid "Re_vert External Edits"
msgstr "恢复额外修改(_V)"

#: src/Dialogs.vala:1020
#, c-format
msgid "This will remove the photo from the library.  Continue?"
msgid_plural "This will remove %d photos from the library.  Continue?"
msgstr[0] "这将从媒体库中移除 %d 张照片中。继续么?"

#: src/Dialogs.vala:1027
msgid "_Remove"
msgstr "移除(_R)"

#: src/Dialogs.vala:1028
msgid "Remove Photo From Library"
msgstr "从照片库移除照片"

#: src/Dialogs.vala:1028
msgid "Remove Photos From Library"
msgstr "从照片库移除照片"

#: src/Dialogs.vala:1117
#, c-format
msgid "%d%%"
msgstr "%d%%"

#: src/Dialogs.vala:1240
msgid "AM"
msgstr "上午"

#: src/Dialogs.vala:1241
msgid "PM"
msgstr "下午"

#: src/Dialogs.vala:1242
msgid "24 Hr"
msgstr "24 时"

#: src/Dialogs.vala:1257
msgid "_Shift photos/videos by the same amount"
msgstr "按照同样大小调整照片/视频(_S)"

#: src/Dialogs.vala:1262
msgid "Set _all photos/videos to this time"
msgstr "设置所有照片/视频到这个时间(_A)"

#: src/Dialogs.vala:1268
msgid "_Modify original file"
msgstr "修改原始文件(_M)"

#: src/Dialogs.vala:1268
msgid "_Modify original files"
msgstr "修改原始文件(_M)"

#: src/Dialogs.vala:1351
msgid "Original: "
msgstr "原始:"

# The string %m/%d/%y, %H:%M:%S is a format string that describes a U.S.-style
# 24 hour date and time (e.g. 9/22/2009, 13:15:04). You should translate
# %m/%d/%y, %H:%M:%S so that it describes the 24 hour date and time format
# used in your language and region. The format string you enter should conform
# to POSIX date and time formatting conventions. See the strftime manpage for
# a list of format specifiers and their meanings.
#: src/Dialogs.vala:1352
msgid "%m/%d/%Y, %H:%M:%S"
msgstr "%m/%d/%Y, %H:%M:%S"

# The string %m/%d/%y, %I:%M:%S %p is a format string that describes a
# U.S.-style
# 12 hour date and time with an am/pm specifier (e.g. 9/22/2009, 1:15:04 PM).
# You
# should translate %m/%d/%y, %I:%M:%S %p so that it describes the 12 hour date
# and time format used in your language and region. If 12 hour time isn't used
# in
# your region, then use a format string for 24 hour time. The format string
# you
# enter should conform to POSIX date and time formatting conventions. See the
# strftime manpage for a list of format specifiers and their meanings.
#: src/Dialogs.vala:1353
msgid "%m/%d/%Y, %I:%M:%S %p"
msgstr "%m/%d/%Y %p%I:%M:%S"

#: src/Dialogs.vala:1438
#, c-format
msgid ""
"Exposure time will be shifted forward by\n"
"%d %s, %d %s, %d %s, and %d %s."
msgstr ""
"曝光时间将会向较早时改变 \n"
"%d %s、%d %s、%d %s 和 %d %s。"

#: src/Dialogs.vala:1439
#, c-format
msgid ""
"Exposure time will be shifted backward by\n"
"%d %s, %d %s, %d %s, and %d %s."
msgstr ""
"曝光时间将会向较晚时改变 \n"
"%d %s、%d %s、%d %s 和 %d %s。"

#: src/Dialogs.vala:1441
msgid "day"
msgid_plural "days"
msgstr[0] "日"

#: src/Dialogs.vala:1442
msgid "hour"
msgid_plural "hours"
msgstr[0] "小时"

#: src/Dialogs.vala:1443
msgid "minute"
msgid_plural "minutes"
msgstr[0] "分钟"

#: src/Dialogs.vala:1444
msgid "second"
msgid_plural "seconds"
msgstr[0] "秒"

#: src/Dialogs.vala:1488
#, c-format
msgid ""
"\n"
"\n"
"And %d other."
msgid_plural ""
"\n"
"\n"
"And %d others."
msgstr[0] ""
"\n"
"\n"
"和另外 %d 个。"

#: src/Dialogs.vala:1509 src/Dialogs.vala:1533
msgid "Tags (separated by commas):"
msgstr "标签(由逗号分割):"

#: src/Dialogs.vala:1590
msgid "Welcome!"
msgstr "欢迎!"

#: src/Dialogs.vala:1598
#, c-format
msgid "Welcome to Shotwell!"
msgstr "欢迎使用 Shotwell !"

#: src/Dialogs.vala:1603
#, c-format
msgid "To get started, import photos in any of these ways:"
msgstr "若开始使用,请用以下任意一种方式导入照片:"

#: src/Dialogs.vala:1626
#, c-format
msgid "Choose <span weight=\"bold\">File %s Import From Folder</span>"
msgstr "选择 <span weight=\"bold\">文件 %s 从文件夹导入</span>"

#: src/Dialogs.vala:1627
msgid "Drag and drop photos onto the Shotwell window"
msgstr "拖放照片到 Shotwell 窗口中"

#: src/Dialogs.vala:1628
msgid "Connect a camera to your computer and import"
msgstr "链接相机到电脑上并导入"

#: src/Dialogs.vala:1637
msgid "Import photos from your _F-Spot library"
msgstr "从您的 F-Spot 照片库导入照片(_F)"

#: src/Dialogs.vala:1644
#, c-format
msgid "_Import photos from your %s folder"
msgstr "从您的 %s 文件夹导入照片"

#: src/Dialogs.vala:1654
msgid "You can also import photos in any of these ways:"
msgstr "您可以使用以下任意方式导入照片:"

#: src/Dialogs.vala:1666
msgid "_Don't show this message again"
msgstr "不再显示该消息(_D)"

#: src/Dialogs.vala:1786 src/Dialogs.vala:1790
msgid "(Help)"
msgstr "(帮助)"

#: src/Dialogs.vala:1799
#, c-format
msgid "Year%sMonth%sDay"
msgstr "年%s月%s日"

#: src/Dialogs.vala:1801
#, c-format
msgid "Year%sMonth"
msgstr "年%s月"

#: src/Dialogs.vala:1803
#, c-format
msgid "Year%sMonth-Day"
msgstr "年%s月-日"

#: src/Dialogs.vala:1805
msgid "Year-Month-Day"
msgstr "年-月-日"

#: src/Dialogs.vala:2032
msgid "Invalid pattern"
msgstr "无效的范例"

#: src/Dialogs.vala:2112
msgid ""
"Shotwell can copy the photos into your library folder or it can import them "
"without copying."
msgstr "Shotwell 可以复制照片到您的媒体库,或者可以导入但并不复制。"

#: src/Dialogs.vala:2117
msgid "Co_py Photos"
msgstr "复制照片(_P)"

#: src/Dialogs.vala:2118
msgid "_Import in Place"
msgstr "导入到地点(_I)"

#: src/Dialogs.vala:2119
msgid "Import to Library"
msgstr "导入到媒体库"

#: src/Dialogs.vala:2129 src/PhotoPage.vala:2864
msgid "Remove From Library"
msgstr "从媒体库移除"

#: src/Dialogs.vala:2130 src/PhotoPage.vala:2864
msgid "Removing Photo From Library"
msgstr "正在从媒体库移除照片"

#: src/Dialogs.vala:2130
msgid "Removing Photos From Library"
msgstr "从照片库移除照片"

#: src/Dialogs.vala:2144
#, c-format
msgid ""
"This will remove the photo/video from your Shotwell library.  Would you also like to move the file to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgid_plural ""
"This will remove %d photos/videos from your Shotwell library.  Would you also like to move the files to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgstr[0] ""
"将从 Shotwell 媒体库移除 %d 个照片/视频。你也想要从将这些文件移至桌面垃圾箱么?\n"
"\n"
"该操作将不可撤销。"

#: src/Dialogs.vala:2148
#, c-format
msgid ""
"This will remove the video from your Shotwell library.  Would you also like to move the file to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgid_plural ""
"This will remove %d videos from your Shotwell library.  Would you also like to move the files to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgstr[0] ""
"将从 Shotwell 媒体库移除 %d 个视频。你也想要从将这些文件移至桌面垃圾箱么?\n"
"\n"
"该操作将不可撤销。"

#: src/Dialogs.vala:2152
#, c-format
msgid ""
"This will remove the photo from your Shotwell library.  Would you also like to move the file to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgid_plural ""
"This will remove %d photos from your Shotwell library.  Would you also like to move the files to your desktop trash?\n"
"\n"
"This action cannot be undone."
msgstr[0] ""
"将从 Shotwell 媒体库移除 %d 个照片。你也想要从将这些文件移至桌面垃圾箱么?\n"
"\n"
"该操作将不可撤销。"

#: src/Dialogs.vala:2184
#, c-format
msgid ""
"The photo or video cannot be moved to your desktop trash.  Delete this file?"
msgid_plural ""
"%d photos/videos cannot be moved to your desktop trash.  Delete these files?"
msgstr[0] "%d 个照片/视频无法移动到您的桌面回收站。删除这些文件?"

#: src/Dialogs.vala:2201
#, c-format
msgid "The photo or video cannot be deleted."
msgid_plural "%d photos/videos cannot be deleted."
msgstr[0] "%d 照片/视频无法被删除。"

#: src/PhotoPage.vala:510
msgid "Previous photo"
msgstr "前一张照片"

#: src/PhotoPage.vala:515
msgid "Next photo"
msgstr "下一张照片"

#: src/PhotoPage.vala:1765
#, c-format
msgid "Photo source file missing: %s"
msgstr "照片源文件丢失: %s"

#: src/PhotoPage.vala:2477 src/MediaPage.vala:309 src/MediaPage.vala:439
msgid "Ta_gs"
msgstr "标签(_G)"

#: src/PhotoPage.vala:2987
#, c-format
msgid "Unable to export %s: %s"
msgstr "无法导出 %s : %s"

#: src/photos/PngSupport.vala:31
msgid "PNG"
msgstr "PNG"

#: src/photos/RawSupport.vala:135
msgid "RAW"
msgstr "RAW"

#: src/photos/TiffSupport.vala:87
msgid "TIFF"
msgstr "TIFF"

#: src/photos/JfifSupport.vala:85
msgid "JPEG"
msgstr "JPEG"

#: src/photos/JfifSupport.vala:180
#, c-format
msgid "Low (%d%%)"
msgstr "低 (%d%%)"

#: src/photos/JfifSupport.vala:183
#, c-format
msgid "Medium (%d%%)"
msgstr "中 (%d%%)"

#: src/photos/JfifSupport.vala:186
#, c-format
msgid "High (%d%%)"
msgstr "高 (%d%%)"

#: src/photos/JfifSupport.vala:189
#, c-format
msgid "Maximum (%d%%)"
msgstr "最大 (%d%%)"

#: src/Commands.vala:647
msgid "Reverting"
msgstr "正在还原"

#: src/Commands.vala:647
msgid "Undoing Revert"
msgstr "正在取消还原"

#: src/Commands.vala:691
msgid "Enhancing"
msgstr "正在增强"

#: src/Commands.vala:691
msgid "Undoing Enhance"
msgstr "正在取消增强"

#: src/Commands.vala:857
msgid "Creating New Event"
msgstr "正在创建新的事件"

#: src/Commands.vala:858
msgid "Removing Event"
msgstr "正在移除事件"

#: src/Commands.vala:867
msgid "Moving Photos to New Event"
msgstr "正在移动照片到新事件"

#: src/Commands.vala:868
msgid "Setting Photos to Previous Event"
msgstr "正在设置照片到先前的活动"

#: src/Commands.vala:898
msgid "Merging"
msgstr "正在合并"

#: src/Commands.vala:899
msgid "Unmerging"
msgstr "正在取消合并"

#: src/Commands.vala:908
msgid "Duplicating photos"
msgstr "正在创建照片副本"

#: src/Commands.vala:908
msgid "Removing duplicated photos"
msgstr "正在移除照片副本"

#: src/Commands.vala:931
#, c-format
msgid "Unable to duplicate one photo due to a file error"
msgid_plural "Unable to duplicate %d photos due to file errors"
msgstr[0] "由于文件错误无法创建 %d 照片副本"

#: src/Commands.vala:1018
msgid "Restoring previous rating"
msgstr "恢复先前评分"

#: src/Commands.vala:1028 src/Commands.vala:1029
msgid "Increasing ratings"
msgstr "提高评分"

#: src/Commands.vala:1028 src/Commands.vala:1029
msgid "Decreasing ratings"
msgstr "降低评分"

#: src/Commands.vala:1099
msgid "Original photo could not be adjusted."
msgstr "无法修改原始照片。"

#: src/Commands.vala:1119
msgid "Adjusting Date and Time"
msgstr "正在调整日期和时间"

#: src/Commands.vala:1119
msgid "Undoing Date and Time Adjustment"
msgstr "正在取消日期和时间调整"

#: src/Commands.vala:1146
msgid "One original photo could not be adjusted."
msgid_plural "The following original photos could not be adjusted."
msgstr[0] "无法修改下列原始照片。"

#: src/Commands.vala:1148 src/Commands.vala:1160
msgid "Time Adjustment Error"
msgstr "时间修改出错"

#: src/Commands.vala:1158
msgid "Time adjustments could not be undone on the following photo file."
msgid_plural ""
"Time adjustments could not be undone on the following photo files."
msgstr[0] "时间修改无法在以下照片上取消。"

#: src/Commands.vala:1465
msgid "Move Photos to Trash"
msgstr "移动照片至回收站"

#: src/Commands.vala:1465
msgid "Restore Photos from Trash"
msgstr "从回收站还原照片"

#: src/Commands.vala:1466
msgid "Move the photos to the Shotwell trash"
msgstr "将照片移至 Shotwell 回收站"

#: src/Commands.vala:1466
msgid "Restore the photos back to the Shotwell library"
msgstr "恢复这些照片到 Shotwell 媒体库"

#: src/Commands.vala:1485
msgid "Moving Photos to Trash"
msgstr "正在移动照片到回收站"

#: src/Commands.vala:1485
msgid "Restoring Photos From Trash"
msgstr "正在从回收站还原照片"

#: src/Commands.vala:1574
msgid "Flag"
msgstr "标注"

#: src/Commands.vala:1574
msgid "Unflag"
msgstr "取消标注"

#: src/Commands.vala:1575
msgid "Flag selected photos"
msgstr "标注选定照片"

#: src/Commands.vala:1575
msgid "Unflag selected photos"
msgstr "取消标注选定照片"

#: src/Page.vala:1215
msgid "No photos/videos"
msgstr "没有照片/视频"

#: src/Page.vala:1219
msgid "No photos/videos found"
msgstr "没有找到照片或视频"

#: src/Page.vala:2452
msgid "Photos cannot be exported to this directory."
msgstr "照片不可以被导出到该文件夹。"

#: src/camera/ImportPage.vala:404
msgid ""
"Unable to unmount camera.  Try unmounting the camera from the file manager."
msgstr "不能卸载相机。尝试从文件管理器中卸载相机。"

#: src/camera/ImportPage.vala:580 src/camera/ImportPage.vala:596
#: src/camera/Branch.vala:88
msgid "Camera"
msgstr "相机"

#: src/camera/ImportPage.vala:635
msgid "Hide photos already imported"
msgstr "隐藏已经导入的照片"

#: src/camera/ImportPage.vala:636
msgid "Only display photos that have not been imported"
msgstr "只显示尚未导入的照片"

#: src/camera/ImportPage.vala:730 src/MediaPage.vala:427
msgid "_Titles"
msgstr "标题(_T)"

#: src/camera/ImportPage.vala:731 src/MediaPage.vala:428
msgid "Display the title of each photo"
msgstr "显示每张照片的标题"

#: src/camera/ImportPage.vala:746
msgid "Import _Selected"
msgstr "导入选中的(_S)"

#: src/camera/ImportPage.vala:747
msgid "Import the selected photos into your library"
msgstr "导入选定的照片到您的媒体库"

#: src/camera/ImportPage.vala:752
msgid "Import _All"
msgstr "导入全部(_A)"

#: src/camera/ImportPage.vala:753
msgid "Import all the photos into your library"
msgstr "导入所有照片到您的在媒体库"

#: src/camera/ImportPage.vala:877
msgid ""
"Shotwell needs to unmount the camera from the filesystem in order to access "
"it.  Continue?"
msgstr "Shotwell 需要从文件系统卸载相机来访问它。继续?"

#: src/camera/ImportPage.vala:883
msgid "_Unmount"
msgstr "卸载(_U)"

#: src/camera/ImportPage.vala:888
msgid "Please unmount the camera."
msgstr "请卸载相机。"

#: src/camera/ImportPage.vala:893
msgid ""
"The camera is locked by another application.  Shotwell can only access the "
"camera when it's unlocked.  Please close any other application using the "
"camera and try again."
msgstr "该相机被其他程序锁定。Shotwell 在解锁之后才能访问该相机。请关闭其他使用该相机的程序再重试。"

#: src/camera/ImportPage.vala:903
msgid "Please close any other application using the camera."
msgstr "请关闭其他使用该相机的程序。"

#: src/camera/ImportPage.vala:908
#, c-format
msgid ""
"Unable to fetch previews from the camera:\n"
"%s"
msgstr ""
"无法从相机获取预览:\n"
"%s"

#: src/camera/ImportPage.vala:925
msgid "Unmounting..."
msgstr "卸载..."

#: src/camera/ImportPage.vala:994
msgid "Fetching photo information"
msgstr "获取照片信息"

#: src/camera/ImportPage.vala:1229
#, c-format
msgid "Fetching preview for %s"
msgstr "获取 %s 的预览"

#: src/camera/ImportPage.vala:1321
#, c-format
msgid "Unable to lock camera: %s"
msgstr "无法锁定相机:%s"

#: src/camera/ImportPage.vala:1395
#, c-format
msgid "Delete this photo from camera?"
msgid_plural "Delete these %d photos from camera?"
msgstr[0] "从相机删除 %d 张照片?"

#: src/camera/ImportPage.vala:1398
#, c-format
msgid "Delete this video from camera?"
msgid_plural "Delete these %d videos from camera?"
msgstr[0] "从相机删除这 %d 个视频?"

#: src/camera/ImportPage.vala:1401
#, c-format
msgid "Delete this photo/video from camera?"
msgid_plural "Delete these %d photos/videos from camera?"
msgstr[0] "从相机删除 %d 个照片/视频?"

#: src/camera/ImportPage.vala:1404
#, c-format
msgid "Delete these files from camera?"
msgid_plural "Delete these %d files from camera?"
msgstr[0] "从相机删除 %d 个文件?"

#: src/camera/ImportPage.vala:1431
msgid "Removing photos/videos from camera"
msgstr "正在从相机移除照片/视频"

#: src/camera/ImportPage.vala:1435
#, c-format
msgid "Unable to delete %d photo/video from the camera due to errors."
msgid_plural ""
"Unable to delete %d photos/videos from the camera due to errors."
msgstr[0] "由于错误无法从相机中删除 %d 个照片/视频。"

#: src/camera/Branch.vala:74
msgid "Cameras"
msgstr "相机"

#: src/alien_db/AlienDatabaseImportDialog.vala:51
#, c-format
msgid "Import from default %1$s library (%2$s)"
msgstr "从 %1$s 导入到媒体库 (%2$s)"

#: src/alien_db/AlienDatabaseImportDialog.vala:59
#, c-format
msgid "Import from another %s database file:"
msgstr "从其他 %s 数据库文件中导入:"

#: src/alien_db/AlienDatabaseImportDialog.vala:63
#, c-format
msgid "Import from a %s database file:"
msgstr "从一个 %s 数据库文件中导入:"

#: src/alien_db/AlienDatabaseImportDialog.vala:97
msgid "No database selected"
msgstr "没有选择数据库"

#: src/alien_db/AlienDatabaseImportDialog.vala:135
#, c-format
msgid "%s Database"
msgstr "%s 数据库"

#: src/alien_db/AlienDatabaseImportDialog.vala:155
msgid "Shotwell failed to load the database file"
msgstr "Shotwell 载入数据库文件失败"

#: src/alien_db/f_spot/FSpotDatabase.vala:57
msgid "F-Spot"
msgstr "F-Spot"

#: src/alien_db/f_spot/FSpotDatabaseDriver.vala:220
msgid "Import From _F-Spot..."
msgstr "从 F-Spot 导入(_F)..."

#: src/alien_db/f_spot/FSpotDatabaseDriver.vala:221
msgid "Import the content of an external F-Spot database"
msgstr "从外部 F-Spot 数据库导入内容"

#: src/alien_db/f_spot/FSpotDatabaseDriver.vala:239
msgid "Import From F-Spot"
msgstr "从 F-Spot 导入"

#: src/db/DatabaseTable.vala:37
#, c-format
msgid "Unable to open/create photo database %s: error code %d"
msgstr "无法打开/创建照片数据库 %s :错误代码 %d"

#: src/db/DatabaseTable.vala:46
#, c-format
msgid ""
"Unable to write to photo database file:\n"
" %s"
msgstr ""
"无法写入照片数据库文件:\n"
"%s"

#: src/db/DatabaseTable.vala:48
#, c-format
msgid ""
"Error accessing database file:\n"
" %s\n"
"\n"
"Error was: \n"
"%s"
msgstr ""
"访问数据库文件错误:\n"
"%s\n"
"\n"
"错误是:\n"
"%s"

#: src/MediaPage.vala:141
msgid "Adjust the size of the thumbnails"
msgstr "改变缩略图大小"

#: src/MediaPage.vala:301
msgid "_Photos"
msgstr "照片(_P)"

#: src/MediaPage.vala:330
msgid "Increase the magnification of the thumbnails"
msgstr "放大缩略图"

#: src/MediaPage.vala:336
msgid "Decrease the magnification of the thumbnails"
msgstr "缩小缩略图"

#: src/MediaPage.vala:402
msgid "Sort _Photos"
msgstr "照片排序(_P)"

#: src/MediaPage.vala:415
msgid "_Play Video"
msgstr "播放视频(_P)"

#: src/MediaPage.vala:416
msgid "Open the selected videos in the system video player"
msgstr "在系统视频播放器中打开选定视频"

#: src/MediaPage.vala:440
msgid "Display each photo's tags"
msgstr "显示每张照片的标签"

#: src/MediaPage.vala:455
msgid "By _Title"
msgstr "按照标题(_T)"

#: src/MediaPage.vala:456
msgid "Sort photos by title"
msgstr "按照标题排序"

#: src/MediaPage.vala:461
msgid "By Exposure _Date"
msgstr "按照曝光日期(_D)"

#: src/MediaPage.vala:462
msgid "Sort photos by exposure date"
msgstr "按照曝光日期排序"

#: src/MediaPage.vala:467
msgid "By _Rating"
msgstr "按照评分(_R)"

#: src/MediaPage.vala:468
msgid "Sort photos by rating"
msgstr "按照评分排序"

#: src/MediaPage.vala:655
#, c-format
msgid ""
"Shotwell was unable to play the selected video:\n"
"%s"
msgstr ""
"Shotwell 无法播放选中视频:\n"
"%s"

#: src/Event.vala:708
#, c-format
msgid "Event %s"
msgstr "活动 %s"

#: plugins/common/RESTSupport.vala:409
#: plugins/shotwell-publishing/FacebookPublishing.vala:1342
msgid "A temporary file needed for publishing is unavailable"
msgstr "发布所需要的临时文件不存在"

#: plugins/shotwell-publishing/FacebookPublishing.vala:64
#: plugins/shotwell-publishing/PicasaPublishing.vala:59
msgid "Shotwell Connect"
msgstr "Shotwell 连接"

#: plugins/shotwell-publishing/FacebookPublishing.vala:68
msgid ""
"You are not currently logged into Facebook.\n"
"\n"
"If you don't yet have a Facebook account, you can create one during the login process. During login, Shotwell Connect may ask you for permission to upload photos and publish to your feed. These permissions are required for Shotwell Connect to function."
msgstr ""
"您尚未登录 Facebook.\n"
"\n"
"如果您没有 Facebook 账户,可以在登录过程中创建一个。在登陆过程中, Shotwell Connect 将请求您上传照片和发布到订阅列表的权限。这些权限对于 Shotwell Connect 的工作是必须的。"

#: plugins/shotwell-publishing/FacebookPublishing.vala:70
msgid ""
"You have already logged in and out of Facebook during this Shotwell session.\n"
"To continue publishing to Facebook, quit and restart Shotwell, then try publishing again."
msgstr ""
"您已经登录了 Facebook 但并不在当前 Shotwell 进程中。\n"
"继续在 Facebook 上发布,退出并重新启动,然后再次尝试发布。"

#: plugins/shotwell-publishing/FacebookPublishing.vala:135
msgid "Standard (720 pixels)"
msgstr "标准 (720 像素)"

#: plugins/shotwell-publishing/FacebookPublishing.vala:138
msgid "Large (2048 pixels)"
msgstr "大型 (2048 像素)"

#: plugins/shotwell-publishing/FacebookPublishing.vala:272
msgid "Testing connection to Facebook..."
msgstr "测试到 Facebook 的连接..."

#: plugins/shotwell-publishing/FacebookPublishing.vala:458
#: plugins/shotwell-publishing/PicasaPublishing.vala:512
msgid "Creating album..."
msgstr "创建相册..."

#: plugins/shotwell-publishing/FacebookPublishing.vala:1612
#, c-format
msgid ""
"You are logged into Facebook as %s.\n"
"\n"
msgstr ""
"您已经作为 %s 登入 Facebook。\n"
"\n"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1613
msgid "Where would you like to publish the selected photos?"
msgstr "想在哪里发布选中的照片?"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1614
msgid "Upload _size:"
msgstr "上传尺寸(_S):"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1683
msgid "Publish to an e_xisting album:"
msgstr "发布到已有相册(_X):"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1686
msgid "Create a _new album named:"
msgstr "创建一个新相册名为(_N):"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1702
msgid "Videos and new photo albums _visible to:"
msgstr "视频和新照片相册可见于(_V):"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1717
#: plugins/shotwell-publishing/PicasaPublishing.vala:1166
#: plugins/shotwell-publishing/YouTubePublishing.vala:1029
#: plugins/shotwell-publishing/FlickrPublishing.vala:1064
msgid "_Publish"
msgstr "发布(_P)"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1719
#: plugins/shotwell-publishing/PicasaPublishing.vala:1156
#: plugins/shotwell-publishing/YouTubePublishing.vala:1019
#: plugins/shotwell-publishing/FlickrPublishing.vala:1060
msgid "_Logout"
msgstr "登出(_L)"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1883
#: plugins/shotwell-publishing/FlickrPublishing.vala:1104
msgid "Just me"
msgstr "仅有我"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1884
msgid "All friends"
msgstr "全部好友"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1885
msgid "Friends of friends"
msgstr "好友的好友"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1886
#: plugins/shotwell-publishing/FlickrPublishing.vala:1102
msgid "Everyone"
msgstr "所有人"

#: plugins/shotwell-publishing/PicasaPublishing.vala:58
msgid ""
"You are not currently logged into Picasa Web Albums.\n"
"\n"
"You must have already signed up for a Google account and set it up for use with Picasa to continue. You can set up most accounts by using your browser to log into the Picasa Web Albums site at least once."
msgstr ""
"您尚未登入 Picasa 网络相册。\n"
"\n"
"您必须已经注册了一个 Google 账户并设定为使用 Picasa 才能继续。您可以通过浏览器至少登录一次到 Picasa 网络相册来开启设定。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:819
msgid ""
"Enter the email address and password associated with your Picasa Web Albums "
"account."
msgstr "输入您关联 Picasa 网络相册账户的 Email 地址和密码。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:820
msgid ""
"Picasa Web Albums didn't recognize the email address and password you "
"entered. To try again, re-enter your email address and password below."
msgstr "Picasa 网络相册无法识别您所输入的 Email 地址和密码。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:821
msgid ""
"The email address and password you entered correspond to a Google account "
"that isn't set up for use with Picasa Web Albums. You can set up most "
"accounts by using your browser to log into the Picasa Web Albums site at "
"least once. To try again, re-enter your email address and password below."
msgstr ""
"您所输入的 Email 地址和密码链接到的 Google 账户并没有设定使用 Picasa 网络相册。您可以通过浏览器至少登录一次到 Picasa "
"网络相册来开启设定。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:822
msgid ""
"The email address and password you entered correspond to a Google account "
"that has been tagged as requiring additional security. You can clear this "
"tag by using your browser to log into Picasa Web Albums. To try again, re-"
"enter your email address and password below."
msgstr ""
"您所输入的 Email 地址和密码链接到的 Google 账户被标记需要额外的安全设定。您可以通过浏览器登录到 Picasa "
"网络相册来清除该标记。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:862
#: plugins/shotwell-publishing/YouTubePublishing.vala:793
#, c-format
msgid "Unrecognized User"
msgstr "无法识别的用户"

#: plugins/shotwell-publishing/PicasaPublishing.vala:866
#: plugins/shotwell-publishing/YouTubePublishing.vala:797
#, c-format
msgid "Account Not Ready"
msgstr "账户尚未就绪"

#: plugins/shotwell-publishing/PicasaPublishing.vala:875
#: plugins/shotwell-publishing/YouTubePublishing.vala:806
#, c-format
msgid "Additional Security Required"
msgstr "需要額外安全设定"

#: plugins/shotwell-publishing/PicasaPublishing.vala:886
#: plugins/shotwell-publishing/YouTubePublishing.vala:817
msgid "_Email address:"
msgstr "Email 地址(_E):"

#: plugins/shotwell-publishing/PicasaPublishing.vala:888
#: plugins/shotwell-publishing/YouTubePublishing.vala:819
msgid "_Password:"
msgstr "密码(_P):"

#: plugins/shotwell-publishing/PicasaPublishing.vala:908
#: plugins/shotwell-publishing/YouTubePublishing.vala:839
msgid "Go _Back"
msgstr "后退(_B)"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1043
#, c-format
msgid "You are logged into Picasa Web Albums as %s."
msgstr "您已经作为 %s 登入 Picasa 网络相册。"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1065
msgid "Videos will appear in:"
msgstr "视频将出现在:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1067
msgid "Photos will appear in:"
msgstr "照片将出现在:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1081
msgid "An _existing album:"
msgstr "一个已有的相册(_E):"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1095
msgid "A _new album named:"
msgstr "一个新相册名为(_N):"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1107
msgid "L_ist album in public gallery"
msgstr "显示公开相片库里的相册(_I)"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1125
msgid "Photo _size preset:"
msgstr "预置照片尺寸(_S):"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1239
msgid "Small (640 x 480 pixels)"
msgstr "小型 (640 x 480 像素)"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1240
msgid "Medium (1024 x 768 pixels)"
msgstr "中型 (1024 x 768 像素)"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1241
msgid "Recommended (1600 x 1200 pixels)"
msgstr "推荐 (1600 x 1200 像素)"

#: plugins/shotwell-publishing/YouTubePublishing.vala:57
msgid ""
"You are not currently logged into YouTube.\n"
"\n"
"You must have already signed up for a Google account and set it up for use with YouTube to continue. You can set up most accounts by using your browser to log into the YouTube site at least once."
msgstr ""
"您尚未登入 YouTube。\n"
"\n"
"您必须已经注册了一个 Google 账户并设定为使用 YouTube 才能继续。您可以通过浏览器设定绝大多数账户并至少登录 YouTube 一次。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:751
msgid ""
"Enter the email address and password associated with your YouTube account."
msgstr "输入您 YouTube 的 Email 地址和密码。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:752
msgid ""
"YouTube didn't recognize the email address and password you entered. To try "
"again, re-enter your email address and password below."
msgstr "YouTube 无法识别您所输入的 Email 地址和密码。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:753
msgid ""
"The email address and password you entered correspond to a Google account "
"that isn't set up for use with YouTube. You can set up most accounts by "
"using your browser to log into the YouTube site at least once. To try again,"
" re-enter your email address and password below."
msgstr ""
"您所输入的 Email 地址和密码链接到的 Google 账户并没有设定使用 YouTube。您可以通过浏览器至少登录一次到 YouTube "
"站点。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:754
msgid ""
"The email address and password you entered correspond to a Google account "
"that has been tagged as requiring additional security. You can clear this "
"tag by using your browser to log into YouTube. To try again, re-enter your "
"email address and password below."
msgstr ""
"您所输入的 Email 地址和密码链接到的 Google 账户被标记需要额外的安全设定。您可以通过浏览器登录到 YouTube "
"来清除该标记。若再次尝试,重新在下方输入您的 Email 地址和密码。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:964
#, c-format
msgid "You are logged into YouTube as %s."
msgstr "您已经作为 %s 登入 YouTube。"

#: plugins/shotwell-publishing/YouTubePublishing.vala:969
#, c-format
msgid "Videos will appear in '%s'"
msgstr "视频将出现在“%s”"

#: plugins/shotwell-publishing/YouTubePublishing.vala:992
msgid "Video privacy _setting:"
msgstr "视频隐私设置(_S):"

#: plugins/shotwell-publishing/YouTubePublishing.vala:1069
msgid "Public listed"
msgstr "公开列出"

#: plugins/shotwell-publishing/YouTubePublishing.vala:1070
msgid "Public unlisted"
msgstr "公开未列出"

#: plugins/shotwell-publishing/YouTubePublishing.vala:1071
msgid "Private"
msgstr "私人"

#: plugins/shotwell-publishing/shotwell-publishing.vala:25
msgid "Core Publishing Services"
msgstr "主要上传服务"

#: plugins/shotwell-publishing/FlickrPublishing.vala:59
msgid ""
"You are not currently logged into Flickr.\n"
"\n"
"You must have already signed up for a Flickr account to complete the login process. During login you will have to specifically authorize Shotwell Connect to link to your Flickr account."
msgstr ""
"您尚未登录 Flickr.\n"
"\n"
"您必需在注册一个 Flickr 账户才能完成登录过程。在登录过程中您需要特别授权 Shotwell 连接到您的 Flickr 账户。"

#: plugins/shotwell-publishing/FlickrPublishing.vala:61
msgid ""
"You have already logged in and out of Flickr during this Shotwell session.\n"
"To continue publishing to Flickr, quit and restart Shotwell, then try publishing again."
msgstr ""
"您已经登录 Flickr 但在本次 Shotwell 进程中已离开。\n"
"要继续发布到 Flickr,请退出并重新启动 Shotwell,然后再尝试发布。"

#: plugins/shotwell-publishing/FlickrPublishing.vala:350
msgid "Preparing to login..."
msgstr "准备登录..."

#: plugins/shotwell-publishing/FlickrPublishing.vala:991
#, c-format
msgid ""
"You are logged into Flickr as %s.\n"
"\n"
msgstr ""
"您已经作为 %s 登入 Flickr。\n"
"\n"

#: plugins/shotwell-publishing/FlickrPublishing.vala:993
#, c-format
msgid ""
"Your free Flickr account limits how much data you can upload per month.\n"
"This month, you have %d megabytes remaining in your upload quota."
msgstr ""
"您的 Flickr 免费账户限制您每月可以上传的数据。\n"
"本月您的流量限额还剩 %d MB。"

#: plugins/shotwell-publishing/FlickrPublishing.vala:995
msgid "Your Flickr Pro account entitles you to unlimited uploads."
msgstr "您的 Flickr Pro 账户让您可以无限上传。"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1020
msgid "Photos _visible to:"
msgstr "照片可见(_V):"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1022
msgid "Videos _visible to:"
msgstr "视频可见于(_V):"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1024
msgid "Photos and videos _visible to:"
msgstr "照片和视频可见于(_V):"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1027
msgid "Photo _size:"
msgstr "照片尺寸(_S):"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1103
msgid "Friends & family only"
msgstr "仅有朋友和家人"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1126
msgid "500 x 375 pixels"
msgstr "500 x 375 像素"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1127
msgid "1024 x 768 pixels"
msgstr "1024 x 768 像素"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1128
msgid "2048 x 1536 pixels"
msgstr "2048 x 1536 像素"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1129
msgid "4096 x 3072 pixels"
msgstr "4096 x 3072 像素"

#: plugins/shotwell-transitions/FadeEffect.vala:20
msgid "Fade"
msgstr "渐出"

#: plugins/shotwell-transitions/CrumbleEffect.vala:20
msgid "Crumble"
msgstr "碎片"

#: plugins/shotwell-transitions/shotwell-transitions.vala:21
msgid "Core Slideshow Transitions"
msgstr "主要幻灯片变换"

#: plugins/shotwell-transitions/shotwell-transitions.vala:68
msgid "Copyright 2010 Maxim Kartashev, Copyright 2011-2012 Yorba Foundation"
msgstr "版权所有 2010 Maxim Kartashev,版权所有 2009-2010 Yorba Foundation"

#: plugins/shotwell-transitions/SlideEffect.vala:20
msgid "Slide"
msgstr "幻灯片演示"

#: ui/set_background_dialog.glade:8
msgid "Set as Desktop Slideshow"
msgstr "设置为桌面幻灯片"

#: ui/set_background_dialog.glade:23
msgid "Show each photo for"
msgstr "显示每张照片为"

#: ui/set_background_dialog.glade:33
msgid "period of time"
msgstr "时间段"

#: ui/set_background_dialog.glade:52
msgid "How long each photo is shown on the desktop background"
msgstr "每张照片在桌面背景上出现多长时间"

#: ui/set_background_dialog.glade:88
msgid "Generate desktop background slideshow"
msgstr "生成桌面背景幻灯片"

#: ui/shotwell.glade:8
msgid "Search"
msgstr "搜索"

#: ui/shotwell.glade:27
msgid "_Name of search:"
msgstr "搜索名称(_N):"

#: ui/shotwell.glade:78
msgid "_Match"
msgstr "匹配(_M)"

#: ui/shotwell.glade:104
msgid "of the following:"
msgstr "以下这些:"

#: ui/shotwell.glade:243
msgid "Preparing pictures for import..."
msgstr "准备要导入的照片..."

#: ui/shotwell.glade:274
msgid "error"
msgstr "错误"

#: ui/shotwell.glade:413
msgid "Shotwell Preferences"
msgstr "Shotwell 首选项"

#: ui/shotwell.glade:455
msgid "white"
msgstr "白"

#: ui/shotwell.glade:478
msgid "black"
msgstr "黑"

#: ui/shotwell.glade:522
msgid "_Watch library directory for new files"
msgstr "监视媒体库文件夹中的新文件(_W)"

#: ui/shotwell.glade:548
msgid "Metadata"
msgstr "元数据"

#: ui/shotwell.glade:567
msgid "Write tags, titles, and other _metadata to photo files"
msgstr "写入标签、标题和其他元数据到照片文件(_M)"

#: ui/shotwell.glade:590
msgid "Display"
msgstr "显示"

#: ui/shotwell.glade:609
msgid "_Import photos to:"
msgstr "导入照片到(_I):"

#: ui/shotwell.glade:630
msgid "_Background:"
msgstr "背景(_B):"

#: ui/shotwell.glade:651
msgid "Importing"
msgstr "导入中"

#: ui/shotwell.glade:672
msgid "_Directory structure:"
msgstr "目录结构(_D):"

#: ui/shotwell.glade:708
msgid "_Pattern:"
msgstr "范例(_P):"

#: ui/shotwell.glade:779
msgid "Example:"
msgstr "例如:"

#: ui/shotwell.glade:795
msgid "R_ename imported files to lowercase"
msgstr "将导入文件以小写重命名(_E)"

#: ui/shotwell.glade:848
msgid "E_xternal photo editor:"
msgstr "外部照片编辑器(_X):"

#: ui/shotwell.glade:861
msgid "External _RAW editor:"
msgstr "外部 RAW 编辑器(_R):"

#: ui/shotwell.glade:911
msgid "External Editors"
msgstr "外部编辑器"

#: ui/shotwell.glade:936
msgid "Plugins"
msgstr "插件"