~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
# po/shotwell-core/th.po
# Thai 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 02:17+0000\n"
"Last-Translator: verayin <vera@yorba.org>\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: th\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 ""
"Piyachat Chinsaeng <neo.bojang@gmail.com>\n"
"Sira Nokyoongtong <gumaraa@gmail.com>"

# GNOME Application Name
msgid "Shotwell Photo Manager"
msgstr ""

# 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 ""

# 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 "เลิกแสดงแบบเ_ต็มหน้าจอ"

#: src/AppWindow.vala:475
msgid "_Quit"
msgstr "_ออก"

#: src/AppWindow.vala:480
msgid "_About"
msgstr "เ_กี่ยวกับ"

#: src/AppWindow.vala:485
msgid "Fulls_creen"
msgstr "เ_ต็มหน้าจอ"

#: src/AppWindow.vala:490
msgid "_Contents"
msgstr "เ_นื้อหา"

#: src/AppWindow.vala:495
msgid "_Frequently Asked Questions"
msgstr ""

#: 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 "_ยกเลิก"

#: 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 ""

#: src/SlideshowPage.vala:41 src/SlideshowPage.vala:221
msgid "Settings"
msgstr "ตั้งค่า"

#: src/SlideshowPage.vala:43
msgid "_Delay:"
msgstr ""

#: src/SlideshowPage.vala:45 src/SlideshowPage.vala:47
msgid "seconds"
msgstr "วินาที"

#: src/SlideshowPage.vala:63
msgid "_Transition effect:"
msgstr ""

#: src/SlideshowPage.vala:90
msgid "Transition d_elay:"
msgstr ""

#: 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 Foundation"

#: src/Resources.vala:130
msgid "Rotate _Right"
msgstr "หมุนไปทาง_ขวา"

#: 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 ""

#: src/Resources.vala:135
msgid "Rotate _Left"
msgstr "หมุนไป_ทางซ้าย"

#: 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 "กลับข้างแนว_นอน"

#: src/Resources.vala:141
msgid "Flip Horizontally"
msgstr "กลับข้างแนวนอน"

#: src/Resources.vala:143
msgid "Flip Verti_cally"
msgstr "กลับข้างแนว_ตั้ง"

#: src/Resources.vala:144
msgid "Flip Vertically"
msgstr "กลับข้างแนวตั้ง"

#: src/Resources.vala:146
msgid "_Enhance"
msgstr "_ปรับปรุง"

#: 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 "_ครอบตัด"

#: 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 "_ตาแดง"

#: 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 "_ปรับแก้"

#: 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 "_คืนกลับค่าดั้งเดิม"

#: src/Resources.vala:163
msgid "Revert to Original"
msgstr "คืนกลับค่าดั้งเดิม"

#: src/Resources.vala:165
msgid "Revert External E_dits"
msgstr "กลับไปใช้โปรแกรมแ_ก้ไขภายนอก"

#: src/Resources.vala:166
msgid "Revert to the master photo"
msgstr "คืนกลับเป็นภาพต้นแบบ"

#: src/Resources.vala:168
msgid "Set as _Desktop Background"
msgstr "ตั้งเป็นภาพพื้นหลังของ_พื้นโต๊ะ"

#: 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 ""

#: src/Resources.vala:172
msgid "_Undo"
msgstr "เ_รียกคืน"

#: src/Resources.vala:173
msgid "Undo"
msgstr "เรียกคืน"

#: src/Resources.vala:175
msgid "_Redo"
msgstr "_ทำซ้ำ"

#: src/Resources.vala:176
msgid "Redo"
msgstr "ทำซ้ำ"

#: src/Resources.vala:178
msgid "Re_name Event..."
msgstr "เ_ปลี่ยนชื่อเหตุการณ์"

#: src/Resources.vala:179 src/Dialogs.vala:920
msgid "Rename Event"
msgstr "เปลี่ยนชื่อเหตุการณ์"

#: src/Resources.vala:181
msgid "Make _Key Photo for Event"
msgstr "สร้างกุญแ_จภาพถ่ายของเหตุการณ์"

#: src/Resources.vala:182
msgid "Make Key Photo for Event"
msgstr "สร้างกุญแจภาพถ่ายของเหตุการณ์"

#: src/Resources.vala:184
msgid "_New Event"
msgstr "เหตุการณ์ใ_หม่"

#: 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 "_รวมเหตุการณ์"

#: src/Resources.vala:191
msgid "Merge"
msgstr "รวมภาพ"

#: src/Resources.vala:193
msgid "_Set Rating"
msgstr "_ตั้งค่าคะแนน"

#: 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 "_เพิ่มขึ้น"

#: src/Resources.vala:198
msgid "Increase Rating"
msgstr "ให้คะแนน"

#: src/Resources.vala:200
msgid "_Decrease"
msgstr "_ลดลง"

#: src/Resources.vala:201
msgid "Decrease Rating"
msgstr "ลดคะแนน"

#: src/Resources.vala:203
msgid "_Unrated"
msgstr "เ_ลิกให้คะแนน"

#: 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 "ถูก_ปฏิเสธ"

#: 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 ""

#: src/Resources.vala:216
msgid "Rejected Only"
msgstr ""

#: src/Resources.vala:217
msgid "Show only rejected photos"
msgstr ""

#: src/Resources.vala:219
msgid "All + _Rejected"
msgstr "ทั้งหมด + _ที่ถูกปฏิเสธ"

#: src/Resources.vala:220 src/Resources.vala:221
msgid "Show all photos, including rejected"
msgstr "แสดงภาพถ่ายทั้งหมด รวมถึงที่ถูกปฏิเสธ"

#: src/Resources.vala:223
msgid "_All Photos"
msgstr "_ภาพถ่ายทั้งหมด"

#: src/Resources.vala:224 src/Resources.vala:225
msgid "Show all photos"
msgstr "แสดงภาพถ่ายทั้งหมด"

#: src/Resources.vala:227
msgid "_Ratings"
msgstr "ให้_คะแนน"

#: src/Resources.vala:228
msgid "Display each photo's rating"
msgstr "แสดงคะแนนของแต่ละภาพถ่าย"

#: src/Resources.vala:230
msgid "_Filter Photos"
msgstr "_กรองภาพถ่าย"

#: 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 "ทำ_สำเนา"

#: 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 "_ส่งออก..."

#: src/Resources.vala:240
msgid "_Print..."
msgstr "_พิมพ์..."

#: src/Resources.vala:242
msgid "Pu_blish..."
msgstr "เ_ผยแพร่..."

#: 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 "แ_ก้ไขหัวเรื่อง..."

#: src/Resources.vala:247 src/Dialogs.vala:930
msgid "Edit Title"
msgstr "แก้ไขชื่อ"

#: src/Resources.vala:249
msgid "_Adjust Date and Time..."
msgstr "_ตั้งค่าวันที่และเวลา..."

#: src/Resources.vala:250
msgid "Adjust Date and Time"
msgstr "ตั่งค่าวันที่และเวลา"

#: src/Resources.vala:252
msgid "Add _Tags..."
msgstr "เพิ่มแ_ท็ก..."

#: src/Resources.vala:253 src/Resources.vala:281
msgid "Add Tags"
msgstr "เพิ่มแท็ก"

#: src/Resources.vala:255
msgid "_Preferences"
msgstr "_ปรับแต่ง"

#: src/Resources.vala:257
msgid "_Open With External Editor"
msgstr "เ_ปิดด้วยตัวแก้ไขภายนอก"

#: src/Resources.vala:259
msgid "Open With RA_W Editor"
msgstr "เปิดด้วยโปรแกรมแก้ไขภาพดิบ"

#: src/Resources.vala:261
msgid "Send _To..."
msgstr "ส่งไ_ป ..."

#: src/Resources.vala:263
msgid "_Find..."
msgstr "_ค้นหา..."

#: 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 "ติด_ป้าย"

#: src/Resources.vala:269
msgid "Un_flag"
msgstr "เลิกติด_ป้าย"

#: 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\""

#: 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 ""

#: src/Resources.vala:304
#, c-format
msgid "Delete saved search: \"%s\""
msgstr ""

#: src/Resources.vala:307
msgid "Delete Tag"
msgstr "ลบแท็ก"

#: src/Resources.vala:310
#, c-format
msgid "Re_name Tag \"%s\"..."
msgstr "เ_ปลี่ยนขื่อแท็ก \"%s\"..."

#: 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 "แก้ไ_ขแท็ก..."

#: 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 ""

#: 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 ""

#: src/Resources.vala:336
#, c-format
msgid "Remove Tag \"%s\" From _Photo"
msgstr "ลบแท็ก \"%s\" จาก_ภาพถ่าย"

#: src/Resources.vala:337
#, c-format
msgid "Remove Tag \"%s\" From _Photos"
msgstr ""

#: 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 ""

#: 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 ""

#: 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 ""

#: src/Resources.vala:359
#, c-format
msgid "Unable to rename search to \"%s\" because the search already exists."
msgstr ""

#: src/Resources.vala:362
msgid "Delete Search"
msgstr ""

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

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

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

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

#: src/Resources.vala:381
#, c-format
msgid "Rename Search \"%s\" to \"%s\""
msgstr ""

#: 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 ""

#: 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 ""

#: src/Resources.vala:637 src/Dialogs.vala:18 src/Dialogs.vala:26
#: src/Dialogs.vala:971
msgid "_Delete"
msgstr "_ลบ"

#: 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 "กู้_คืน"

#: 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 "แสดงในโปรแกรม_จัดการแฟ้ม"

#: 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 "_ลบออกจากไลบรารี"

#: src/Resources.vala:653
msgid "_Move to Trash"
msgstr "ทิ้งลงถังขยะ"

#: src/Resources.vala:655
msgid "Select _All"
msgstr "เ_ลือกทั้งหมด"

#: 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 "ใช้ขนาด_มาตรฐาน:"

#: src/Printing.vala:314
msgid "Use a c_ustom size:"
msgstr "เ_ลือกขนาดเอง:"

#: src/Printing.vala:318
msgid "_Autosize:"
msgstr "ขนาด_อัตโนมัติ"

#: src/Printing.vala:387
msgid "in."
msgstr "นิ้ว"

#: src/Printing.vala:388
msgid "cm"
msgstr "ซม."

#: src/Printing.vala:407
msgid "_Match photo aspect ratio"
msgstr "_สัดส่วนภาพที่ตรงกัน"

#: src/Printing.vala:413
msgid "Titles"
msgstr "ชื่อเรื่อง"

#: src/Printing.vala:420
msgid "Print image _title"
msgstr "พิมพ์_ชื่อภาพถ่าย"

#: src/Printing.vala:432
msgid "Pixel Resolution"
msgstr "ความละเอียดของพิกเซล"

#: src/Printing.vala:438
msgid "_Output photo at:"
msgstr "ส่งผล_ลัพธ์ไปที่:"

#: 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 ซม.)"

#: src/Printing.vala:958 src/EditingTools.vala:665
msgid "Postcard (10 x 15 cm)"
msgstr "ไปรษณียบัตร (10 x 15 ซม.)"

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

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

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

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

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

#: 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 ""

#: 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 "แ_ฟ้ม"

#: src/direct/DirectPhotoPage.vala:53 src/direct/DirectPhotoPage.vala:373
msgid "_Save"
msgstr "_บันทึก"

#: src/direct/DirectPhotoPage.vala:54
msgid "Save photo"
msgstr "บันทึกภาพถ่าย"

#: src/direct/DirectPhotoPage.vala:59
msgid "Save _As..."
msgstr "บันทึกเ_ป็น..."

#: 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 "_ภาพถ่าย"

#: src/direct/DirectPhotoPage.vala:83 src/PhotoPage.vala:2292
msgid "_Tools"
msgstr "เ_ครื่องมือ"

#: src/direct/DirectPhotoPage.vala:88 src/PhotoPage.vala:2297
msgid "_Previous Photo"
msgstr "ภาพถ่ายที่แ_ล้ว"

#: 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 "ภาพถ่าย_ถัดไป"

#: 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 "มุ_มมอง"

#: 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 "_วิธีใช้"

#: src/direct/DirectPhotoPage.vala:170 src/PhotoPage.vala:2448
#: src/MediaPage.vala:329
msgid "Zoom _In"
msgstr "แสดง_ขยาย"

#: 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 "แสดง_ย่อ"

#: 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 "พอดีกับ_กระดาษ"

#: 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%"

#: src/direct/DirectPhotoPage.vala:189 src/PhotoPage.vala:2467
#, no-c-format
msgid "Zoom the photo to 100% magnification"
msgstr "ปรับมุมมองภาพถ่ายเป็น 100%"

#: src/direct/DirectPhotoPage.vala:194 src/PhotoPage.vala:2472
msgid "Zoom _200%"
msgstr "ขยาย _200%"

#: src/direct/DirectPhotoPage.vala:195 src/PhotoPage.vala:2473
#, no-c-format
msgid "Zoom the photo to 200% magnification"
msgstr "ปรับมุมมองภาพถ่ายเป็น 200%"

#: 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 "_บันทึกเป็นสำเนา"

#: src/direct/DirectPhotoPage.vala:376
#, c-format
msgid "Lose changes to %s?"
msgstr "ล้มเหลวในการเปลี่ยนเป็น %s?"

#: src/direct/DirectPhotoPage.vala:377
msgid "Close _without Saving"
msgstr "ปิดโดยไ_ม่บันทึก"

#: 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 "%I:%M %p"

#: 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] ""

#: 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 ""

#: 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 ""

#: 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 ""

#: 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 "%d, %Y"

#: 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 "_ตั้งค่าใหม่"

#: 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 "ภาพถ่ายดิบ"

#: src/SearchFilter.vala:632
msgid "RAW photos"
msgstr "ภาพถ่ายดิบ"

#: src/SearchFilter.vala:878
#, c-format
msgid "Error loading UI file %s: %s"
msgstr ""

#: src/SearchFilter.vala:895
msgid "Type"
msgstr "ประเภท"

#: src/Exporter.vala:246
#, c-format
msgid "Unable to generate a temporary file for %s: %s"
msgstr ""

#: 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 "_ข้าม"

#: src/Exporter.vala:332
msgid "_Replace"
msgstr "แ_ทนที่"

#: src/Exporter.vala:332
msgid "Replace _All"
msgstr "แทนที่ทั้ง_หมด"

#: 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 "แ_ก้ไข"

#: src/events/EventsDirectoryPage.vala:122 src/MediaPage.vala:305
msgid "Even_ts"
msgstr "เ_หตุการณ์"

#: 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 ""

#: 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 ""

#: 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 ""

#: 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 ""

#: 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 ""

#: src/main.vala:98
#, c-format
msgid "Unknown error attempting to verify Shotwell's database: %s"
msgstr ""

#: src/main.vala:130
msgid "Loading Shotwell"
msgstr "กำลังโหลด Shotwell"

#: src/main.vala:347
msgid "[FILE]"
msgstr "[แฟ้ม]"

#: 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 "เ_ข้าระบบ"

#: 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 "เผยแพร่ภาพถ่ายไ_ปยัง:"

#: src/publishing/PublishingUI.vala:221
msgid "Publish Videos"
msgstr "เผยแพร่วิดีโอ"

#: src/publishing/PublishingUI.vala:222
msgid "Publish videos _to"
msgstr "เผยแพร่วิดีโอไ_ปที่"

#: src/publishing/PublishingUI.vala:224
msgid "Publish Photos and Videos"
msgstr "เผยแพร่ภาพถ่ายและวีดีโอ"

#: src/publishing/PublishingUI.vala:225
msgid "Publish photos and videos _to"
msgstr "เผยแพร่ภาพถ่ายและวีดีโอไ_ปที่"

#: 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 ""

#: src/publishing/PublishingUI.vala:475
msgid "_Close"
msgstr "_ปิด"

#: 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 ""

#: 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 "_หยุดการนำเข้า"

#: 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 "_นำเข้าจากโฟลเดอร์..."

#: src/library/LibraryWindow.vala:305
msgid "Import photos from disk to library"
msgstr "นำเข้าภาพถ่ายจากดิสก์ไปยังไลบรารี"

#: src/library/LibraryWindow.vala:315
msgid "Sort _Events"
msgstr "เรียงลำดับเ_หตุการณ์"

#: src/library/LibraryWindow.vala:325
msgid "Empty T_rash"
msgstr "ลบข้อมูลใน_ถังขยะ"

#: 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 ""

#: src/library/LibraryWindow.vala:336
msgid "_Find"
msgstr "_ค้นหา"

#: src/library/LibraryWindow.vala:337
msgid "Find photos and videos by search criteria"
msgstr ""

#: src/library/LibraryWindow.vala:359
msgid "_Basic Information"
msgstr "ข้อมูล_พื้นฐาน"

#: src/library/LibraryWindow.vala:360
msgid "Display basic information for the selection"
msgstr "แสดงข้อมูลพื้นฐานของภาพที่เลือก"

#: src/library/LibraryWindow.vala:365
msgid "E_xtended Information"
msgstr "ข้อมูลเ_พิ่มเติม"

#: src/library/LibraryWindow.vala:366
msgid "Display extended information for the selection"
msgstr "แสดงข้อมูลเพิ่มเติมของแฟ้มที่เลือก"

#: src/library/LibraryWindow.vala:371
msgid "_Search Bar"
msgstr ""

#: src/library/LibraryWindow.vala:372
msgid "Display the search bar"
msgstr ""

#: src/library/LibraryWindow.vala:384 src/MediaPage.vala:477
msgid "_Ascending"
msgstr "จาก_น้อยไปหามาก"

#: 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 "จาก_มากไปหาน้อย  "

#: 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 "_นำเข้า"

#: 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 "กำลังประมวลผลไฟล์ภาพถ่ายดิบ ..."

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

#: src/CollectionPage.vala:207 src/PhotoPage.vala:2492
msgid "S_lideshow"
msgstr ""

#: 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 ""

#: 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 ""

#: 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 "_ต่อไป"

#: src/Dialogs.vala:126
msgid "Unmodified"
msgstr ""

#: src/Dialogs.vala:127
msgid "Current"
msgstr "ปัจจุบัน"

#: src/Dialogs.vala:191
msgid "_Format:"
msgstr "รู_ปแบบ:"

#: src/Dialogs.vala:194
msgid "_Quality:"
msgstr "คุ_ณภาพ:"

#: src/Dialogs.vala:197
msgid "_Scaling constraint:"
msgstr "ข้อจำกัดมาตร_ส่วน:"

#: src/Dialogs.vala:200
msgid " _pixels"
msgstr " _พิกเซล"

#: 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] ""

#: 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] ""

#: 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] ""

#: 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] ""

#: 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] ""

#: 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] ""

#: 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] "แฟ้มใน_ถังขยะ"

#: src/Dialogs.vala:950
msgid "Only _Remove"
msgstr "_ลบออกเท่านั้น"

#: src/Dialogs.vala:970 src/camera/ImportPage.vala:1412
msgid "_Keep"
msgstr "เ_ก็บไว้"

#: 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 "_กลับไปใช้โปรแกรมแก้ไขภายนอก"

#: src/Dialogs.vala:999
msgid "Re_vert External Edits"
msgstr ""

#: 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] ""

#: src/Dialogs.vala:1027
msgid "_Remove"
msgstr "_ลบ"

#: 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 "AM"

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

#: src/Dialogs.vala:1242
msgid "24 Hr"
msgstr "24 ชั่วโมง"

#: src/Dialogs.vala:1257
msgid "_Shift photos/videos by the same amount"
msgstr ""

#: src/Dialogs.vala:1262
msgid "Set _all photos/videos to this time"
msgstr ""

#: src/Dialogs.vala:1268
msgid "_Modify original file"
msgstr "แ_ก้ไขแฟ้มดั้งเดิม"

#: src/Dialogs.vala:1268
msgid "_Modify original files"
msgstr ""

#: 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, %I:%M:%S %p"

#: 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, and %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, and %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 ของคุณ"

#: 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 "ไ_ม่ต้องแสดงข้อความนี้อีก"

#: 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 ""

#: src/Dialogs.vala:2117
msgid "Co_py Photos"
msgstr "คัดล_อกภาพถ่าย"

#: src/Dialogs.vala:2118
msgid "_Import in Place"
msgstr "_นำเข้าสถานที่"

#: 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] ""

#: 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] ""

#: 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] ""
"นี่จะเป็นการลบภาพถ่าย %d จากไลบรารีของ Shotwell คุณต้องการลบแฟ้มเหล่านี้ลงถังขยะหรือไม่?\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] ""

#: src/Dialogs.vala:2201
#, c-format
msgid "The photo or video cannot be deleted."
msgid_plural "%d photos/videos cannot be deleted."
msgstr[0] ""

#: 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 "แ_ท็ก"

#: 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 ""

#: 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 "_ชื่อ"

#: 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 "นำเข้าที่เ_ลือก"

#: src/camera/ImportPage.vala:747
msgid "Import the selected photos into your library"
msgstr "นำเข้าภาพถ่ายที่เลือกเข้าสู่ไลบรารีของคุณ"

#: src/camera/ImportPage.vala:752
msgid "Import _All"
msgstr "นำเข้า_ทั้งหมด"

#: 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 "เ_ลิกเมานท์"

#: 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] ""

#: 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] ""

#: 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..."

#: 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 ""

#: src/db/DatabaseTable.vala:46
#, c-format
msgid ""
"Unable to write to photo database file:\n"
" %s"
msgstr ""

#: src/db/DatabaseTable.vala:48
#, c-format
msgid ""
"Error accessing database file:\n"
" %s\n"
"\n"
"Error was: \n"
"%s"
msgstr ""

#: src/MediaPage.vala:141
msgid "Adjust the size of the thumbnails"
msgstr "เปลี่ยนขนาดของรูปย่อ"

#: src/MediaPage.vala:301
msgid "_Photos"
msgstr "_ภาพถ่าย"

#: 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 "เ_รียงภาพถ่าย"

#: src/MediaPage.vala:415
msgid "_Play Video"
msgstr ""

#: 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 "_ตามชื่อ"

#: src/MediaPage.vala:456
msgid "Sort photos by title"
msgstr "เรียงภาพถ่ายตามชื่อ"

#: src/MediaPage.vala:461
msgid "By Exposure _Date"
msgstr "ตามวันที่ถ่าย"

#: src/MediaPage.vala:462
msgid "Sort photos by exposure date"
msgstr "เรียงตามวันที่ถ่าย"

#: src/MediaPage.vala:467
msgid "By _Rating"
msgstr "เรียงตามคะแนน"

#: 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 ""

#: 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 Connect"

#: 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 จะขออนุญาตอัปโหลดภาพและเผยแพร่ลงกระดานข้อความของคุณ โดยต้องการการอนุญาตเพื่อใช้งาน 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 ให้ปิดและเปิด Shotwell ใหม่แล้วลองเผยแพร่ภาพถ่ายอีกครั้ง"

#: 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 "คุณเข้าสู่ Facebook เป็น %s \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 ""

#: plugins/shotwell-publishing/FacebookPublishing.vala:1683
msgid "Publish to an e_xisting album:"
msgstr "เผยแพร่ไปที่อัลบั้ม_ที่มีแล้ว:"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1686
msgid "Create a _new album named:"
msgstr "สร้างอัลบั้มใ_หม่ชื่อ:"

#: plugins/shotwell-publishing/FacebookPublishing.vala:1702
msgid "Videos and new photo albums _visible to:"
msgstr ""

#: 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 "เ_ผยแพร่"

#: 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 "_ออกจากระบบ"

#: 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 Web Albums\n"
"\n"
"คุณต้องมีบัญชี Google และตั้งค่าเพื่อใช้ Picasa เพื่อดำเนินการต่อ คุณสามารถตั้งค่าบัญชีได้โดยใช้เว็บเบราซ์เซอร์เพื่อเข้าไปยัง Picasa Web Albums"

#: plugins/shotwell-publishing/PicasaPublishing.vala:819
msgid ""
"Enter the email address and password associated with your Picasa Web Albums "
"account."
msgstr "ป้อนที่อยู่อีเมลและรหัสผ่านที่ใช้กับบัญชี Picasa Web Albums ของคุณ"

#: 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 Web Albums ไม่รู้จักที่อยู่อีเมลและรหัสผ่านที่คุณป้อน "
"ลองป้อนที่อยู่อีเมลและรหัสผ่านอีกครั้ง"

#: 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 ""
"ที่อยู่อีเมลและรหัสผ่านของบัญชีผู้ใช้ Google "
"ที่คุณป้อนยังไม่ได้ถูกตั้งค่าให้ใช้กับ Picasa Web Albums "
"คุณสามารถตั้งค่าได้โดยเข้าใช้ Picasa Web Albums "
"ผ่านเบราว์เซอร์ก่อนหนึ่งครั้ง แล้วลองกรอกที่อยู่อีเมลและรหัสผ่านอีกครั้ง"

#: 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 ""
"ที่อยู่อีเมลล์และรหัสผ่านของบัญชีผู้ใช้ Google "
"ที่เคยถูกแท็กต้องการการตั้งค่าความปลอดภัยเพิ่มเติม "
"คุณสามารถลบแท็กนี้ได้โดยเข้าใช้ Picasa Web Albums ผ่านเบราว์เซอร์ "
"แล้วลองกรอกที่อยู่อีเมลและรหัสผ่านอีกครั้ง"

#: 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 "ที่อยู่_อีเมล:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:888
#: plugins/shotwell-publishing/YouTubePublishing.vala:819
msgid "_Password:"
msgstr "_รหัสผ่าน:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:908
#: plugins/shotwell-publishing/YouTubePublishing.vala:839
msgid "Go _Back"
msgstr "_กลับไป"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1043
#, c-format
msgid "You are logged into Picasa Web Albums as %s."
msgstr "คุณเข้าใช้ Picasa Web Albums เป็น %s"

#: 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 "อัลบั้มที่มีแล้ว:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1095
msgid "A _new album named:"
msgstr "ชื่อใ_หม่ของอัลบั้ม:"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1107
msgid "L_ist album in public gallery"
msgstr "แ_สดงรายการอัลบั้มในแกลเลอรีสาธารณะ"

#: plugins/shotwell-publishing/PicasaPublishing.vala:1125
msgid "Photo _size preset:"
msgstr "_ขนาดภาพถ่ายที่ตั้งไว้:"

#: 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 ""

#: plugins/shotwell-publishing/YouTubePublishing.vala:751
msgid ""
"Enter the email address and password associated with your YouTube account."
msgstr ""

#: 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 ""

#: 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 ""

#: 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 ""

#: plugins/shotwell-publishing/YouTubePublishing.vala:964
#, c-format
msgid "You are logged into YouTube as %s."
msgstr ""

#: plugins/shotwell-publishing/YouTubePublishing.vala:969
#, c-format
msgid "Videos will appear in '%s'"
msgstr ""

#: plugins/shotwell-publishing/YouTubePublishing.vala:992
msgid "Video privacy _setting:"
msgstr ""

#: 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 Connect เข้าใช้งาน 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"
"ปิดแล้วเปิด Shotwell ใหม่ แล้วลองเผยแพร่ลง Flickr อีกครั้ง "

#: 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 ""
"คุณเข้าระบบของ Flickr เป็น %s\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 เมกะไบต์  "

#: plugins/shotwell-publishing/FlickrPublishing.vala:995
msgid "Your Flickr Pro account entitles you to unlimited uploads."
msgstr "บัญชีผู้ใช้ Flikr Pro ของคุณสามารถอัปโหลดได้ไม่จำกัด"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1020
msgid "Photos _visible to:"
msgstr "แสดงภาพ (_v) เป็น:"

#: plugins/shotwell-publishing/FlickrPublishing.vala:1022
msgid "Videos _visible to:"
msgstr ""

#: plugins/shotwell-publishing/FlickrPublishing.vala:1024
msgid "Photos and videos _visible to:"
msgstr ""

#: plugins/shotwell-publishing/FlickrPublishing.vala:1027
msgid "Photo _size:"
msgstr "_ขนาดภาพถ่าย:"

#: 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, สงวนลิขสิทธิ์  2011 มูลนิธิ Yorba"

#: 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 ""

#: ui/shotwell.glade:78
msgid "_Match"
msgstr ""

#: 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 ""

#: 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 ""

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

#: ui/shotwell.glade:567
msgid "Write tags, titles, and other _metadata to photo files"
msgstr ""

#: ui/shotwell.glade:590
msgid "Display"
msgstr "แสดง"

#: ui/shotwell.glade:609
msgid "_Import photos to:"
msgstr "_นำเข้าภาพถ่ายไปที่: "

#: ui/shotwell.glade:630
msgid "_Background:"
msgstr "_พื้นหลัง :"

#: ui/shotwell.glade:651
msgid "Importing"
msgstr "กำลังนำเข้า"

#: ui/shotwell.glade:672
msgid "_Directory structure:"
msgstr ""

#: ui/shotwell.glade:708
msgid "_Pattern:"
msgstr "_รูปแบบ :"

#: ui/shotwell.glade:779
msgid "Example:"
msgstr "ตัวอย่าง :"

#: ui/shotwell.glade:795
msgid "R_ename imported files to lowercase"
msgstr "เ_ปลี่ยนชื่อ ไฟล์ที่นำเข้าไปเป็นตัวพิมพ์เล็ก"

#: ui/shotwell.glade:848
msgid "E_xternal photo editor:"
msgstr ""

#: ui/shotwell.glade:861
msgid "External _RAW editor:"
msgstr "โปรแกรมแก้ไขภาพถ่าย_ดิบภายนอก"

#: ui/shotwell.glade:911
msgid "External Editors"
msgstr "โปรแกรมแก้ไขภายนอก"

#: ui/shotwell.glade:936
msgid "Plugins"
msgstr "โปรแกรมเสริม"