~ubuntu-l10n-en-au/+junk/en_AU-precise

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
# English (Australia) translation for seahorse
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the seahorse package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: seahorse\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-03 13:34+0000\n"
"PO-Revision-Date: 2011-12-06 23:26+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: English (Australia) <en_AU@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2012-01-02 14:45+0000\n"
"X-Generator: Launchpad (build 14560)\n"

#: ../gkr/seahorse-add-keyring.xml.h:1
msgid "Add Password Keyring"
msgstr "Add Password Keyring"

#: ../gkr/seahorse-add-keyring.xml.h:2
msgid "New Keyring Name:"
msgstr "New Keyring Name:"

#: ../gkr/seahorse-add-keyring.xml.h:3
msgid ""
"Please choose a name for the new keyring. You will be prompted for an unlock "
"password."
msgstr ""
"Please choose a name for the new keyring. You will be prompted for an unlock "
"password."

#: ../gkr/seahorse-add-keyring.xml.h:4
#: ../libseahorse/seahorse-add-keyserver.xml.h:5
#: ../ssh/seahorse-ssh-upload.xml.h:3
msgid "The host name or address of the server."
msgstr "The host name or address of the server."

#: ../gkr/seahorse-gkr-add-item.c:61 ../gkr/seahorse-gkr-add-keyring.c:72
msgid "Couldn't add keyring"
msgstr "Couldn't add keyring"

#: ../gkr/seahorse-gkr-add-item.xml.h:1
msgid "Add Password"
msgstr "Add Password"

#: ../gkr/seahorse-gkr-add-item.xml.h:2
#: ../gkr/seahorse-gkr-item-properties.xml.h:12 ../pgp/seahorse-revoke.xml.h:5
msgid "_Description:"
msgstr "_Description:"

#: ../gkr/seahorse-gkr-add-item.xml.h:3
msgid "_Keyring:"
msgstr "_Keyring:"

#: ../gkr/seahorse-gkr-add-item.xml.h:4
msgid "_Password:"
msgstr "_Password:"

#: ../gkr/seahorse-gkr-add-item.xml.h:5
msgid "_Show Password"
msgstr "_Show Password"

#: ../gkr/seahorse-gkr-item-commands.c:78
msgid "Couldn't delete item"
msgstr "Couldn't delete item"

#: ../gkr/seahorse-gkr-item-commands.c:100
#, c-format
msgid "Are you sure you want to delete the password '%s'?"
msgstr "Are you sure you want to delete the password '%s'?"

#: ../gkr/seahorse-gkr-item-commands.c:103
#, c-format
msgid "Are you sure you want to delete %d password?"
msgid_plural "Are you sure you want to delete %d passwords?"
msgstr[0] "Are you sure you want to delete %d password?"
msgstr[1] "Are you sure you want to delete %d passwords?"

#: ../gkr/seahorse-gkr-item-commands.c:114
msgid "Deleting item"
msgid_plural "Deleting items"
msgstr[0] "Deleting item"
msgstr[1] "Deleting items"

#: ../gkr/seahorse-gkr-item-properties.c:70
msgid "Access a network share or resource"
msgstr "Access a network share or resource"

#: ../gkr/seahorse-gkr-item-properties.c:73
msgid "Access a website"
msgstr "Access a website"

#: ../gkr/seahorse-gkr-item-properties.c:76
msgid "Unlocks a PGP key"
msgstr "Unlocks a PGP key"

#: ../gkr/seahorse-gkr-item-properties.c:79
msgid "Unlocks a Secure Shell key"
msgstr "Unlocks a Secure Shell key"

#: ../gkr/seahorse-gkr-item-properties.c:82
msgid "Saved password or login"
msgstr "Saved password or login"

#: ../gkr/seahorse-gkr-item-properties.c:106
msgid "Network Credentials"
msgstr "Network Credentials"

#: ../gkr/seahorse-gkr-item-properties.c:111
msgid "Password"
msgstr "Password"

#: ../gkr/seahorse-gkr-item-properties.c:211
msgid "Couldn't change password."
msgstr "Couldn't change password."

#: ../gkr/seahorse-gkr-item-properties.c:256
#: ../gkr/seahorse-gkr-item-properties.c:377
msgid "Updating password"
msgstr "Updating password"

#: ../gkr/seahorse-gkr-item-properties.c:337
msgid "Couldn't set description."
msgstr "Couldn't set description."

#: ../gkr/seahorse-gkr-item-properties.xml.h:1
msgid "<b>Password:</b>"
msgstr "<b>Password:</b>"

#: ../gkr/seahorse-gkr-item-properties.xml.h:2
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:8
#: ../ssh/seahorse-ssh-key-properties.xml.h:7
msgid "<b>Technical Details:</b>"
msgstr "<b>Technical Details:</b>"

#: ../gkr/seahorse-gkr-item-properties.xml.h:3
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:22
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:19
#: ../ssh/seahorse-ssh-key-properties.xml.h:15
msgid "Details"
msgstr "Details"

#: ../gkr/seahorse-gkr-item-properties.xml.h:4
#: ../pgp/seahorse-pgp-subkey.c:366
#: ../ssh/seahorse-ssh-key-properties.xml.h:17
msgid "Key"
msgstr "Key"

#: ../gkr/seahorse-gkr-item-properties.xml.h:5
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:30
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:30
#: ../ssh/seahorse-ssh-key-properties.xml.h:18
msgid "Key Properties"
msgstr "Key Properties"

#: ../gkr/seahorse-gkr-item-properties.xml.h:6
msgid "Login:"
msgstr "Login:"

#: ../gkr/seahorse-gkr-item-properties.xml.h:7
msgid "Server:"
msgstr "Server:"

#: ../gkr/seahorse-gkr-item-properties.xml.h:8
msgid "Show pass_word"
msgstr "Show pass_word"

#: ../gkr/seahorse-gkr-item-properties.xml.h:9
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:44
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:38
msgid "Type:"
msgstr "Type:"

#. To translators: This is the noun not the verb.
#: ../gkr/seahorse-gkr-item-properties.xml.h:11
msgid "Use:"
msgstr "Use:"

#: ../gkr/seahorse-gkr-keyring.c:120
#, c-format
msgid "Passwords: %s"
msgstr "Passwords: %s"

#: ../gkr/seahorse-gkr-keyring.c:121
#, c-format
msgid "<b>Passwords:</b> %s"
msgstr "<b>Passwords:</b> %s"

#: ../gkr/seahorse-gkr-keyring-commands.c:113
msgid "Password Keyring"
msgstr "Password Keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:114
msgid "Used to store application and network passwords"
msgstr "Used to store application and network passwords"

#: ../gkr/seahorse-gkr-keyring-commands.c:115
msgid "Stored Password"
msgstr "Stored Password"

#: ../gkr/seahorse-gkr-keyring-commands.c:116
msgid "Safely store a password or secret."
msgstr "Safely store a password or secret."

#: ../gkr/seahorse-gkr-keyring-commands.c:128
msgid "Couldn't unlock keyring"
msgstr "Couldn't unlock keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:165
msgid "Couldn't lock keyring"
msgstr "Couldn't lock keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:202
msgid "Couldn't set default keyring"
msgstr "Couldn't set default keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:239
msgid "Couldn't change keyring password"
msgstr "Couldn't change keyring password"

#: ../gkr/seahorse-gkr-keyring-commands.c:268
msgid "_Lock"
msgstr "_Lock"

#: ../gkr/seahorse-gkr-keyring-commands.c:269
msgid ""
"Lock the password storage keyring so a master password is required to unlock "
"it."
msgstr ""
"Lock the password storage keyring so a master password is required to unlock "
"it."

#: ../gkr/seahorse-gkr-keyring-commands.c:270
msgid "_Unlock"
msgstr "_Unlock"

#: ../gkr/seahorse-gkr-keyring-commands.c:271
msgid ""
"Unlock the password storage keyring with a master password so it is "
"available for use."
msgstr ""
"Unlock the password storage keyring with a master password so it is "
"available for use."

#: ../gkr/seahorse-gkr-keyring-commands.c:272
msgid "_Set as default"
msgstr "_Set as default"

#: ../gkr/seahorse-gkr-keyring-commands.c:273
msgid "Applications usually store new passwords in the default keyring."
msgstr "Applications usually store new passwords in the default keyring."

#: ../gkr/seahorse-gkr-keyring-commands.c:274
msgid "Change _Password"
msgstr "Change _Password"

#: ../gkr/seahorse-gkr-keyring-commands.c:275
msgid "Change the unlock password of the password storage keyring"
msgstr "Change the unlock password of the password storage keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:340
msgid "Couldn't delete keyring"
msgstr "Couldn't delete keyring"

#: ../gkr/seahorse-gkr-keyring-commands.c:358
#, c-format
msgid "Are you sure you want to delete the password keyring '%s'?"
msgstr "Are you sure you want to delete the password keyring '%s'?"

#: ../gkr/seahorse-gkr-keyring-commands.c:368
msgid "Deleting keyring"
msgid_plural "Deleting keyrings"
msgstr[0] "Deleting keyring"
msgstr[1] "Deleting keyrings"

#. -----------------------------------------------------------------------------
#. * PUBLIC
#. 
#. To translators: This is the noun not the verb.
#: ../gkr/seahorse-gkr-keyring.xml.h:2
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:19
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:18
msgid "Created:"
msgstr "Created:"

#: ../gkr/seahorse-gkr-keyring.xml.h:3
msgid "Keyring"
msgstr "Keyring"

#: ../gkr/seahorse-gkr-keyring.xml.h:4
msgid "Keyring Properties"
msgstr "Keyring Properties"

#: ../gkr/seahorse-gkr-keyring.xml.h:5
msgid "_Name:"
msgstr "_Name:"

#: ../gkr/seahorse-gkr-operation.c:52 ../pgp/seahorse-gpgme.c:73
#: ../pgp/seahorse-hkp-source.c:662 ../ssh/seahorse-ssh-operation.c:193
msgid "The operation was cancelled"
msgstr "The operation was cancelled"

#: ../gkr/seahorse-gkr-operation.c:57
msgid "Access to the key ring was denied"
msgstr "Access to the keyring was denied"

#: ../gkr/seahorse-gkr-operation.c:60
msgid "The gnome-keyring daemon is not running"
msgstr "The gnome-keyring daemon is not running"

#: ../gkr/seahorse-gkr-operation.c:63
msgid "The key ring has already been unlocked"
msgstr "The keyring has already been unlocked"

#: ../gkr/seahorse-gkr-operation.c:66
msgid "No such key ring exists"
msgstr "No such keyring exists"

#: ../gkr/seahorse-gkr-operation.c:69
msgid "Couldn't communicate with key ring daemon"
msgstr "Couldn't communicate with keyring daemon"

#: ../gkr/seahorse-gkr-operation.c:72
msgid "The item already exists"
msgstr "The item already exists"

#: ../gkr/seahorse-gkr-operation.c:78
msgid "Internal error accessing gnome-keyring"
msgstr "Internal error accessing gnome-keyring"

#: ../libegg/egg-datetime.c:317
msgid "Display flags"
msgstr "Display flags"

#: ../libegg/egg-datetime.c:318
msgid "Displayed date and/or time properties"
msgstr "Displayed date and/or time properties"

#: ../libegg/egg-datetime.c:323
msgid "Lazy mode"
msgstr "Lazy mode"

#: ../libegg/egg-datetime.c:324
msgid "Lazy mode doesn't normalize entered date and time values"
msgstr "Lazy mode doesn't normalise entered date and time values"

#: ../libegg/egg-datetime.c:329
msgid "Year"
msgstr "Year"

#: ../libegg/egg-datetime.c:330
msgid "Displayed year"
msgstr "Displayed year"

#: ../libegg/egg-datetime.c:335
msgid "Month"
msgstr "Month"

#: ../libegg/egg-datetime.c:336
msgid "Displayed month"
msgstr "Displayed month"

#: ../libegg/egg-datetime.c:341
msgid "Day"
msgstr "Day"

#: ../libegg/egg-datetime.c:342
msgid "Displayed day of month"
msgstr "Displayed day of month"

#: ../libegg/egg-datetime.c:347
msgid "Hour"
msgstr "Hour"

#: ../libegg/egg-datetime.c:348
msgid "Displayed hour"
msgstr "Displayed hour"

#: ../libegg/egg-datetime.c:353
msgid "Minute"
msgstr "Minute"

#: ../libegg/egg-datetime.c:354
msgid "Displayed minute"
msgstr "Displayed minute"

#: ../libegg/egg-datetime.c:359
msgid "Second"
msgstr "Second"

#: ../libegg/egg-datetime.c:360
msgid "Displayed second"
msgstr "Displayed second"

#: ../libegg/egg-datetime.c:365
msgid "Lower limit year"
msgstr "Lower limit year"

#: ../libegg/egg-datetime.c:366
msgid "Year part of the lower date limit"
msgstr "Year part of the lower date limit"

#: ../libegg/egg-datetime.c:371
msgid "Upper limit year"
msgstr "Upper limit year"

#: ../libegg/egg-datetime.c:372
msgid "Year part of the upper date limit"
msgstr "Year part of the upper date limit"

#: ../libegg/egg-datetime.c:377
msgid "Lower limit month"
msgstr "Lower limit month"

#: ../libegg/egg-datetime.c:378
msgid "Month part of the lower date limit"
msgstr "Month part of the lower date limit"

#: ../libegg/egg-datetime.c:383
msgid "Upper limit month"
msgstr "Upper limit month"

#: ../libegg/egg-datetime.c:384
msgid "Month part of the upper date limit"
msgstr "Month part of the upper date limit"

#: ../libegg/egg-datetime.c:389
msgid "Lower limit day"
msgstr "Lower limit day"

#: ../libegg/egg-datetime.c:390
msgid "Day of month part of the lower date limit"
msgstr "Day of month part of the lower date limit"

#: ../libegg/egg-datetime.c:395
msgid "Upper limit day"
msgstr "Upper limit day"

#: ../libegg/egg-datetime.c:396
msgid "Day of month part of the upper date limit"
msgstr "Day of month part of the upper date limit"

#: ../libegg/egg-datetime.c:401
msgid "Lower limit hour"
msgstr "Lower limit hour"

#: ../libegg/egg-datetime.c:402
msgid "Hour part of the lower time limit"
msgstr "Hour part of the lower time limit"

#: ../libegg/egg-datetime.c:407
msgid "Upper limit hour"
msgstr "Upper limit hour"

#: ../libegg/egg-datetime.c:408
msgid "Hour part of the upper time limit"
msgstr "Hour part of the upper time limit"

#: ../libegg/egg-datetime.c:413
msgid "Lower limit minute"
msgstr "Lower limit minute"

#: ../libegg/egg-datetime.c:414
msgid "Minute part of the lower time limit"
msgstr "Minute part of the lower time limit"

#: ../libegg/egg-datetime.c:419
msgid "Upper limit minute"
msgstr "Upper limit minute"

#: ../libegg/egg-datetime.c:420
msgid "Minute part of the upper time limit"
msgstr "Minute part of the upper time limit"

#: ../libegg/egg-datetime.c:425
msgid "Lower limit second"
msgstr "Lower limit second"

#: ../libegg/egg-datetime.c:426
msgid "Second part of the lower time limit"
msgstr "Second part of the lower time limit"

#: ../libegg/egg-datetime.c:431
msgid "Upper limit second"
msgstr "Upper limit second"

#: ../libegg/egg-datetime.c:432
msgid "Second part of the upper time limit"
msgstr "Second part of the upper time limit"

#. Translate to calendar:week_start:1 if you want Monday to be the
#. * first day of the week; otherwise translate to calendar:week_start:0.
#. * Do *not* translate it to anything else, if it isn't calendar:week_start:1
#. * or calendar:week_start:0 it will not work.
#. 
#: ../libegg/egg-datetime.c:474
msgid "calendar:week_start:0"
msgstr "calendar:week_start:0"

#: ../libegg/egg-datetime.c:496
msgid "Date"
msgstr "Date"

#: ../libegg/egg-datetime.c:496
msgid "Enter the date directly"
msgstr "Enter the date directly"

#: ../libegg/egg-datetime.c:503
msgid "Select Date"
msgstr "Select Date"

#: ../libegg/egg-datetime.c:503
msgid "Select the date from a calendar"
msgstr "Select the date from a calendar"

#: ../libegg/egg-datetime.c:521 ../libegg/egg-datetime.c:2199
msgid "Time"
msgstr "Time"

#: ../libegg/egg-datetime.c:521
msgid "Enter the time directly"
msgstr "Enter the time directly"

#: ../libegg/egg-datetime.c:528
msgid "Select Time"
msgstr "Select Time"

#: ../libegg/egg-datetime.c:528
msgid "Select the time from a list"
msgstr "Select the time from a list"

#. Translators: set this to anything else if you want to use a
#. * 24 hour clock.
#. 
#: ../libegg/egg-datetime.c:793
msgid "24hr: no"
msgstr "24hr: no"

#: ../libegg/egg-datetime.c:797 ../libegg/egg-datetime.c:1260
#: ../libegg/egg-datetime.c:1264
msgid "AM"
msgstr "AM"

#: ../libegg/egg-datetime.c:799 ../libegg/egg-datetime.c:1261
#: ../libegg/egg-datetime.c:1268
msgid "PM"
msgstr "PM"

#. Translators: This is hh:mm:ss AM/PM.
#: ../libegg/egg-datetime.c:807
#, c-format
msgid "%02d:%02d:%02d %s"
msgstr "%02d:%02d:%02d %s"

#. Translators: This is hh:mm AM/PM.
#: ../libegg/egg-datetime.c:810
#, c-format
msgid "%02d:%02d %s"
msgstr "%02d:%02d %s"

#. Translators: This is hh:mm:ss.
#: ../libegg/egg-datetime.c:814
#, c-format
msgid "%02d:%02d:%02d"
msgstr "%02d:%02d:%02d"

#. Translators: This is hh:mm.
#: ../libegg/egg-datetime.c:817
#, c-format
msgid "%02d:%02d"
msgstr "%02d:%02d"

#. TODO: should handle other display modes as well...
#. Translators: This is YYYY-MM-DD
#: ../libegg/egg-datetime.c:1176
#, c-format
msgid "%04d-%02d-%02d"
msgstr "%04d-%02d-%02d"

#. Translators: This is hh:mm:ss.
#: ../libegg/egg-datetime.c:1241
#, c-format
msgid "%u:%u:%u"
msgstr "%u:%u:%u"

#: ../libseahorse/seahorse-add-keyserver.xml.h:1
msgid ":"
msgstr ":"

#: ../libseahorse/seahorse-add-keyserver.xml.h:2
msgid "Add Key Server"
msgstr "Add Key Server"

#: ../libseahorse/seahorse-add-keyserver.xml.h:3
msgid "Host:"
msgstr "Host:"

#: ../libseahorse/seahorse-add-keyserver.xml.h:4
msgid "Key Server Type:"
msgstr "Key Server Type:"

#: ../libseahorse/seahorse-add-keyserver.xml.h:6
msgid "The port to access the server on."
msgstr "The port to access the server on."

#: ../libseahorse/seahorse-add-keyserver.xml.h:7
msgid "initial temporary item"
msgstr "initial temporary item"

#: ../libseahorse/seahorse-passphrase.c:180
msgid "Passphrase"
msgstr "Passphrase"

#: ../libseahorse/seahorse-passphrase.c:183 ../ssh/seahorse-ssh-askpass.c:99
msgid "Password:"
msgstr "Password:"

#. The second and main entry
#: ../libseahorse/seahorse-passphrase.c:246
msgid "Confirm:"
msgstr "Confirm:"

#: ../libseahorse/seahorse-prefs.c:68
msgid "Not a valid Key Server address."
msgstr "Not a valid Key Server address."

#: ../libseahorse/seahorse-prefs.c:69
msgid ""
"For help contact your system adminstrator or the administrator of the key "
"server."
msgstr ""
"For help contact your system adminstrator or the administrator of the key "
"server."

#: ../libseahorse/seahorse-prefs.c:183
msgid "URL"
msgstr "URL"

#: ../libseahorse/seahorse-prefs.c:353
msgid "Custom"
msgstr "Custom"

#: ../libseahorse/seahorse-prefs.c:406
msgid "None: Don't publish keys"
msgstr "None: Don't publish keys"

#: ../libseahorse/seahorse-prefs.xml.h:1
msgid "Automatically retrieve keys from _key servers"
msgstr "Automatically retrieve keys from _key servers"

#: ../libseahorse/seahorse-prefs.xml.h:2
msgid "Automatically synchronize _modified keys with key servers"
msgstr "Automatically synchronise _modified keys with key servers"

#: ../libseahorse/seahorse-prefs.xml.h:3
msgid "Key Servers"
msgstr "Key Servers"

#: ../libseahorse/seahorse-prefs.xml.h:4
msgid "Preferences"
msgstr "Preferences"

#: ../libseahorse/seahorse-prefs.xml.h:5
msgid "_Find keys via:"
msgstr "_Find keys via:"

#: ../libseahorse/seahorse-prefs.xml.h:6
msgid "_Publish keys to:"
msgstr "_Publish keys to:"

#: ../libseahorse/seahorse-transfer.c:178
msgid "Retrieving data"
msgstr "Retrieving data"

#: ../libseahorse/seahorse-transfer.c:178
msgid "Exporting data"
msgstr "Exporting data"

#: ../libseahorse/seahorse-transfer.c:182
msgid "Importing data"
msgstr "Importing data"

#: ../libseahorse/seahorse-transfer.c:182
msgid "Sending data"
msgstr "Sending data"

#: ../libseahorse/seahorse-unknown.c:59
msgid "Unavailable"
msgstr "Unavailable"

#: ../libseahorse/seahorse-util.c:259
msgid "%Y-%m-%d"
msgstr "%Y-%m-%d"

#: ../libseahorse/seahorse-util.c:444
msgid "Key Data"
msgstr "Key Data"

#: ../libseahorse/seahorse-util.c:446
msgid "Multiple Keys"
msgstr "Multiple Keys"

#. Filter for PGP keys. We also include *.asc, as in many
#. cases that extension is associated with text/plain
#: ../libseahorse/seahorse-util.c:734
msgid "All key files"
msgstr "All key files"

#: ../libseahorse/seahorse-util.c:745 ../libseahorse/seahorse-util.c:793
#: ../pgp/seahorse-gpgme-photos.c:242
msgid "All files"
msgstr "All files"

#: ../libseahorse/seahorse-util.c:786
msgid "Archive files"
msgstr "Archive files"

#: ../libseahorse/seahorse-util.c:856
msgid ""
"<b>A file already exists with this name.</b>\n"
"\n"
"Do you want to replace it with a new file?"
msgstr ""
"<b>A file already exists with this name.</b>Do you want to replace it with a "
"new file?"

#: ../libseahorse/seahorse-util.c:859
msgid "_Replace"
msgstr "_Replace"

#: ../libseahorse/seahorse-validity.c:40 ../pgp/seahorse-gpgme-subkey.c:197
#: ../pgp/seahorse-pgp-key-properties.c:1273
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:46
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:40
msgid "Unknown"
msgstr "Unknown"

#: ../libseahorse/seahorse-validity.c:42
#: ../pgp/seahorse-pgp-key-properties.c:1279
msgctxt "Validity"
msgid "Never"
msgstr "Never"

#: ../libseahorse/seahorse-validity.c:44
#: ../pgp/seahorse-pgp-key-properties.c:1286
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:32
msgid "Marginal"
msgstr "Marginal"

#: ../libseahorse/seahorse-validity.c:46
#: ../pgp/seahorse-pgp-key-properties.c:1292
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:26
msgid "Full"
msgstr "Full"

#: ../libseahorse/seahorse-validity.c:48
#: ../pgp/seahorse-pgp-key-properties.c:1298
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:45
msgid "Ultimate"
msgstr "Ultimate"

#: ../libseahorse/seahorse-validity.c:50
#: ../pgp/seahorse-pgp-key-properties.c:1491
msgid "Disabled"
msgstr "Disabled"

#: ../libseahorse/seahorse-validity.c:52
#: ../pgp/seahorse-pgp-key-properties.c:1487
msgid "Revoked"
msgstr "Revoked"

#: ../libseahorse/seahorse-widget.c:461
#, c-format
msgid "Could not display help: %s"
msgstr "Could not display help: %s"

#: ../pgp/seahorse-add-subkey.xml.h:1
msgid "Expiration Date:"
msgstr "Expiration Date:"

#: ../pgp/seahorse-add-subkey.xml.h:2
msgid "Generate a new subkey"
msgstr "Generate a new subkey"

#: ../pgp/seahorse-add-subkey.xml.h:3
msgid "If key never expires"
msgstr "If key never expires"

#: ../pgp/seahorse-add-subkey.xml.h:4
msgid "Key _Length:"
msgstr "Key _Length:"

#: ../pgp/seahorse-add-subkey.xml.h:5
msgid "Key _Type:"
msgstr "Key _Type:"

#: ../pgp/seahorse-add-subkey.xml.h:6
msgid "Length of Key"
msgstr "Length of Key"

#: ../pgp/seahorse-add-subkey.xml.h:7
msgid "Never E_xpires"
msgstr "Never E_xpires"

#: ../pgp/seahorse-add-uid.xml.h:1
msgid "Add User ID"
msgstr "Add User ID"

#: ../pgp/seahorse-add-uid.xml.h:2
msgid "Create the new user ID"
msgstr "Create the new user ID"

#: ../pgp/seahorse-add-uid.xml.h:3 ../pgp/seahorse-pgp-generate.xml.h:7
msgid "Full _Name:"
msgstr "Full _Name:"

#: ../pgp/seahorse-add-uid.xml.h:4
msgid "Key Co_mment:"
msgstr "Key Co_mment:"

#: ../pgp/seahorse-add-uid.xml.h:5
msgid "Must be at least 5 characters long"
msgstr "Must be at least 5 characters long"

#: ../pgp/seahorse-add-uid.xml.h:6
msgid "Optional comment describing key"
msgstr "Optional comment describing key"

#: ../pgp/seahorse-add-uid.xml.h:7
msgid "Optional email address"
msgstr "Optional email address"

#: ../pgp/seahorse-add-uid.xml.h:8 ../pgp/seahorse-pgp-generate.xml.h:13
msgid "_Email Address:"
msgstr "_Email Address:"

#: ../pgp/seahorse-expires.xml.h:1
msgid "C_hange"
msgstr "C_hange"

#: ../pgp/seahorse-expires.xml.h:2 ../pgp/seahorse-revoke.xml.h:4
msgid "Revoke key"
msgstr "Revoke key"

#: ../pgp/seahorse-expires.xml.h:3
msgid "_Never expires"
msgstr "_Never expires"

#: ../pgp/seahorse-gpgme-add-subkey.c:162
msgid "Couldn't add subkey"
msgstr "Couldn't add subkey"

#: ../pgp/seahorse-gpgme-add-subkey.c:181
#, c-format
msgid "Add subkey to %s"
msgstr "Add subkey to %s"

#: ../pgp/seahorse-gpgme-add-subkey.c:197 ../pgp/seahorse-gpgme-generate.c:130
msgid "DSA (sign only)"
msgstr "DSA (sign only)"

#: ../pgp/seahorse-gpgme-add-subkey.c:205
msgid "ElGamal (encrypt only)"
msgstr "ElGamal (encrypt only)"

#: ../pgp/seahorse-gpgme-add-subkey.c:211 ../pgp/seahorse-gpgme-generate.c:131
msgid "RSA (sign only)"
msgstr "RSA (sign only)"

#: ../pgp/seahorse-gpgme-add-subkey.c:217
msgid "RSA (encrypt only)"
msgstr "RSA (encrypt only)"

#: ../pgp/seahorse-gpgme-add-uid.c:100
msgid "Couldn't add user id"
msgstr "Couldn't add user id"

#: ../pgp/seahorse-gpgme-add-uid.c:122
#, c-format
msgid "Add user ID to %s"
msgstr "Add user ID to %s"

#: ../pgp/seahorse-gpgme.c:69
msgid "Decryption failed. You probably do not have the decryption key."
msgstr "Decryption failed. You probably do not have the decryption key."

#: ../pgp/seahorse-gpgme-expires.c:65
msgid "Invalid expiry date"
msgstr "Invalid expiry date"

#: ../pgp/seahorse-gpgme-expires.c:66
msgid "The expiry date must be in the future"
msgstr "The expiry date must be in the future"

#: ../pgp/seahorse-gpgme-expires.c:79
msgid "Couldn't change expiry date"
msgstr "Couldn't change expiry date"

#: ../pgp/seahorse-gpgme-expires.c:140
#, c-format
msgid "Expiry: %s"
msgstr "Expiry: %s"

#: ../pgp/seahorse-gpgme-generate.c:91
msgid "PGP Key"
msgstr "PGP Key"

#: ../pgp/seahorse-gpgme-generate.c:92
msgid "Used to encrypt email and files"
msgstr "Used to encrypt email and files"

#: ../pgp/seahorse-gpgme-generate.c:128
msgid "RSA"
msgstr "RSA"

#: ../pgp/seahorse-gpgme-generate.c:129
msgid "DSA Elgamal"
msgstr "DSA Elgamal"

#: ../pgp/seahorse-gpgme-generate.c:178
msgid "Couldn't generate PGP key"
msgstr "Couldn't generate PGP key"

#: ../pgp/seahorse-gpgme-generate.c:209
msgid "Passphrase for New PGP Key"
msgstr "Passphrase for New PGP Key"

#: ../pgp/seahorse-gpgme-generate.c:210
msgid "Enter the passphrase for your new key twice."
msgstr "Enter the passphrase for your new key twice."

#: ../pgp/seahorse-gpgme-generate.c:219
msgid "Generating key"
msgstr "Generating key"

#: ../pgp/seahorse-gpgme-key-op.c:370
msgid "Wrong password"
msgstr "Wrong password"

#: ../pgp/seahorse-gpgme-key-op.c:370
msgid ""
"This was the third time you entered a wrong password. Please try again."
msgstr ""
"This was the third time you entered a wrong password. Please try again."

#: ../pgp/seahorse-gpgme-photos.c:73
#, c-format
msgid ""
"<big><b>The photo is too large</b></big>\n"
"The recommended size for a photo on your key is %d x %d pixels."
msgstr ""
"<big><b>The photo is too large</b></big>The recommended size for a photo on "
"your key is %d x %d pixels."

#: ../pgp/seahorse-gpgme-photos.c:78
msgid "_Don't Resize"
msgstr "_Don't Resize"

#: ../pgp/seahorse-gpgme-photos.c:79
msgid "_Resize"
msgstr "_Resize"

#: ../pgp/seahorse-gpgme-photos.c:128
#, c-format
msgid ""
"This is not a image file, or an unrecognized kind of image file. Try to use "
"a JPEG image."
msgstr ""
"This is not a image file, or an unrecognised kind of image file. Try to use "
"a JPEG image."

#: ../pgp/seahorse-gpgme-photos.c:224
msgid "All image files"
msgstr "All image files"

#: ../pgp/seahorse-gpgme-photos.c:237
msgid "All JPEG files"
msgstr "All JPEG files"

#: ../pgp/seahorse-gpgme-photos.c:261
msgid "Choose Photo to Add to Key"
msgstr "Choose Photo to Add to Key"

#: ../pgp/seahorse-gpgme-photos.c:278
msgid "Couldn't prepare photo"
msgstr "Couldn't prepare photo"

#: ../pgp/seahorse-gpgme-photos.c:288 ../pgp/seahorse-gpgme-photos.c:292
msgid "Couldn't add photo"
msgstr "Couldn't add photo"

#: ../pgp/seahorse-gpgme-photos.c:289
msgid "The file could not be loaded. It may be in an invalid format"
msgstr "The file could not be loaded. It may be in an invalid format"

#: ../pgp/seahorse-gpgme-photos.c:318
msgid "Are you sure you want to remove the current photo from your key?"
msgstr "Are you sure you want to remove the current photo from your key?"

#: ../pgp/seahorse-gpgme-photos.c:331
msgid "Couldn't delete photo"
msgstr "Couldn't delete photo"

#: ../pgp/seahorse-gpgme-revoke.c:75
msgid "Couldn't revoke subkey"
msgstr "Couldn't revoke subkey"

#: ../pgp/seahorse-gpgme-revoke.c:96
#, c-format
msgid "Revoke: %s"
msgstr "Revoke: %s"

#: ../pgp/seahorse-gpgme-revoke.c:107
msgid "No reason"
msgstr "No reason"

#: ../pgp/seahorse-gpgme-revoke.c:108
msgid "No reason for revoking key"
msgstr "No reason for revoking key"

#: ../pgp/seahorse-gpgme-revoke.c:114
msgid "Compromised"
msgstr "Compromised"

#: ../pgp/seahorse-gpgme-revoke.c:115
msgid "Key has been compromised"
msgstr "Key has been compromised"

#: ../pgp/seahorse-gpgme-revoke.c:121
msgid "Superseded"
msgstr "Superseded"

#: ../pgp/seahorse-gpgme-revoke.c:122
msgid "Key has been superseded"
msgstr "Key has been superseded"

#: ../pgp/seahorse-gpgme-revoke.c:128
msgid "Not Used"
msgstr "Not Used"

#: ../pgp/seahorse-gpgme-revoke.c:129
msgid "Key is no longer used"
msgstr "Key is no longer used"

#: ../pgp/seahorse-gpgme-revoke.c:166
#, c-format
msgid ""
"You are about to add %s as a revoker for %s. This operation cannot be "
"undone! Are you sure you want to continue?"
msgstr ""
"You are about to add %s as a revoker for %s. This operation cannot be "
"undone! Are you sure you want to continue?"

#: ../pgp/seahorse-gpgme-revoke.c:178
msgid "Couldn't add revoker"
msgstr "Couldn't add revoker"

#: ../pgp/seahorse-gpgme-sign.c:101
#, c-format
msgid ""
"This key was already signed by\n"
"\"%s\""
msgstr ""
"This key was already signed by\n"
"\"%s\""

#: ../pgp/seahorse-gpgme-sign.c:105
msgid "Couldn't sign key"
msgstr "Couldn't sign key"

#. TODO: We should be giving an error message that allows them to
#. generate or import a key
#: ../pgp/seahorse-gpgme-sign.c:161 ../pgp/seahorse-signer.c:61
msgid "No keys usable for signing"
msgstr "No keys usable for signing"

#: ../pgp/seahorse-gpgme-sign.c:162
msgid ""
"You have no personal PGP keys that can be used to indicate your trust of "
"this key."
msgstr ""
"You have no personal PGP keys that can be used to indicate your trust of "
"this key."

#: ../pgp/seahorse-gpgme-source.c:84
#, c-format
msgid "Wrong passphrase."
msgstr "Wrong passphrase."

#: ../pgp/seahorse-gpgme-source.c:88
#, c-format
msgid "Enter new passphrase for '%s'"
msgstr "Enter new passphrase for '%s'"

#: ../pgp/seahorse-gpgme-source.c:90
#, c-format
msgid "Enter passphrase for '%s'"
msgstr "Enter passphrase for '%s'"

#: ../pgp/seahorse-gpgme-source.c:93 ../src/seahorse-change-passphrase.xml.h:4
msgid "Enter new passphrase"
msgstr "Enter new passphrase"

#: ../pgp/seahorse-gpgme-source.c:95
msgid "Enter passphrase"
msgstr "Enter passphrase"

#: ../pgp/seahorse-gpgme-source.c:326
#, c-format
msgid "Loaded %d key"
msgid_plural "Loaded %d keys"
msgstr[0] "Loaded %d key"
msgstr[1] "Loaded %d keys"

#: ../pgp/seahorse-gpgme-source.c:647
msgid ""
"Invalid key data (missing UIDs). This may be due to a computer with a date "
"set in the future or a missing self-signature."
msgstr ""
"Invalid key data (missing UIDs). This may be due to a computer with a date "
"set in the future or a missing self-signature."

#: ../pgp/seahorse-gpgme-subkey.c:199
msgid "ElGamal"
msgstr "ElGamal"

#: ../pgp/seahorse-hkp-source.c:645
msgid "HTTP Key Server"
msgstr "HTTP Key Server"

#: ../pgp/seahorse-hkp-source.c:680
#, c-format
msgid "Search was not specific enough. Server '%s' found too many keys."
msgstr "Search was not specific enough. Server '%s' found too many keys."

#: ../pgp/seahorse-hkp-source.c:683
#, c-format
msgid "Couldn't communicate with server '%s': %s"
msgstr "Couldn't communicate with server '%s': %s"

#: ../pgp/seahorse-ldap-source.c:440
#, c-format
msgid "Couldn't communicate with '%s': %s"
msgstr "Couldn't communicate with '%s': %s"

#: ../pgp/seahorse-ldap-source.c:651
#, c-format
msgid "Connecting to: %s"
msgstr "Connecting to: %s"

#: ../pgp/seahorse-ldap-source.c:657
#, c-format
msgid "Couldn't resolve address: %s"
msgstr "Couldn't resolve address: %s"

#: ../pgp/seahorse-ldap-source.c:701
#, c-format
msgid "Resolving server address: %s"
msgstr "Resolving server address: %s"

#: ../pgp/seahorse-ldap-source.c:781
msgid "LDAP Key Server"
msgstr "LDAP Key Server"

#: ../pgp/seahorse-pgp-commands.c:104
msgid "_Sign Key..."
msgstr "_Sign Key..."

#: ../pgp/seahorse-pgp-commands.c:104
msgid "Sign public key"
msgstr "Sign public key"

#: ../pgp/seahorse-pgp-commands.c:174
#, c-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Are you sure you want to permanently delete %s?"

#: ../pgp/seahorse-pgp-commands.c:179
#, c-format
msgid "Are you sure you want to permanently delete %d keys and identities?"
msgstr "Are you sure you want to permanently delete %d keys and identities?"

#: ../pgp/seahorse-pgp-commands.c:181
#, c-format
msgid "Are you sure you want to permanently delete %d keys?"
msgstr "Are you sure you want to permanently delete %d keys?"

#: ../pgp/seahorse-pgp-commands.c:183
#, c-format
msgid "Are you sure you want to permanently delete %d identities?"
msgstr "Are you sure you want to permanently delete %d identities?"

#: ../pgp/seahorse-pgp-commands.c:201 ../pgp/seahorse-pgp-key-properties.c:348
msgid "Couldn't delete user ID"
msgstr "Couldn't delete user ID"

#: ../pgp/seahorse-pgp-commands.c:205
msgid "Couldn't delete private key"
msgstr "Couldn't delete private key"

#: ../pgp/seahorse-pgp-commands.c:208
msgid "Couldn't delete public key"
msgstr "Couldn't delete public key"

#: ../pgp/seahorse-pgp-generate.xml.h:1 ../ssh/seahorse-ssh-generate.xml.h:1
msgid "<b>_Advanced key options</b>"
msgstr "<b>_Advanced key options</b>"

#: ../pgp/seahorse-pgp-generate.xml.h:2
msgid "A PGP key allows you to encrypt email or files to other people."
msgstr "A PGP key allows you to encrypt email or files to other people."

#: ../pgp/seahorse-pgp-generate.xml.h:3
msgid "Algorithms here"
msgstr "Algorithms here"

#: ../pgp/seahorse-pgp-generate.xml.h:4
msgid "C_reate"
msgstr "C_reate"

#: ../pgp/seahorse-pgp-generate.xml.h:5
msgid "E_xpiration Date:"
msgstr "E_xpiration Date:"

#: ../pgp/seahorse-pgp-generate.xml.h:6 ../ssh/seahorse-ssh-generate.xml.h:4
msgid "Encryption _Type:"
msgstr "Encryption _Type:"

#: ../pgp/seahorse-pgp-generate.xml.h:8
msgid "Generate a new key"
msgstr "Generate a new key"

#: ../pgp/seahorse-pgp-generate.xml.h:9 ../ssh/seahorse-ssh-generate.xml.h:6
msgid "Key _Strength (bits):"
msgstr "Key _Strength (bits):"

#: ../pgp/seahorse-pgp-generate.xml.h:10
msgid "Ne_ver Expires"
msgstr "Ne_ver Expires"

#: ../pgp/seahorse-pgp-generate.xml.h:11
msgid "New PGP Key"
msgstr "New PGP Key"

#: ../pgp/seahorse-pgp-generate.xml.h:12
msgid "_Comment:"
msgstr "_Comment:"

#: ../pgp/seahorse-pgp-key.c:572 ../pgp/seahorse-pgp-key-properties.c:1489
msgid "Expired"
msgstr "Expired"

#: ../pgp/seahorse-pgp-key-properties.c:319
msgid "Couldn't change primary user ID"
msgstr "Couldn't change primary user ID"

#: ../pgp/seahorse-pgp-key-properties.c:338
#, c-format
msgid "Are you sure you want to permanently delete the '%s' user ID?"
msgstr "Are you sure you want to permanently delete the '%s' user ID?"

#: ../pgp/seahorse-pgp-key-properties.c:433
#: ../pgp/seahorse-pgp-key-properties.c:1604
msgid "[Unknown]"
msgstr "[Unknown]"

#: ../pgp/seahorse-pgp-key-properties.c:533
#: ../pgp/seahorse-pgp-key-properties.c:1885
msgid "Name/Email"
msgstr "Name/Email"

#: ../pgp/seahorse-pgp-key-properties.c:538
msgid "Signature ID"
msgstr "Signature ID"

#: ../pgp/seahorse-pgp-key-properties.c:671
msgid "Couldn't change primary photo"
msgstr "Couldn't change primary photo"

#: ../pgp/seahorse-pgp-key-properties.c:903
msgid "(unknown)"
msgstr "(unknown)"

#: ../pgp/seahorse-pgp-key-properties.c:906
#, c-format
msgid "This key expired on: %s"
msgstr "This key expired on: %s"

#: ../pgp/seahorse-pgp-key-properties.c:967
#: ../src/seahorse-key-manager-store.c:802
msgid "Name"
msgstr "Name"

#: ../pgp/seahorse-pgp-key-properties.c:1078
#, c-format
msgid "Are you sure you want to permanently delete subkey %d of %s?"
msgstr "Are you sure you want to permanently delete subkey %d of %s?"

#: ../pgp/seahorse-pgp-key-properties.c:1087
msgid "Couldn't delete subkey"
msgstr "Couldn't delete subkey"

#: ../pgp/seahorse-pgp-key-properties.c:1127
#: ../pgp/seahorse-pgp-key-properties.c:1567
msgid "Unable to change trust"
msgstr "Unable to change trust"

#: ../pgp/seahorse-pgp-key-properties.c:1142 ../src/seahorse-viewer.c:299
#: ../ssh/seahorse-ssh-key-properties.c:201
#, c-format
msgid "Couldn't export key to \"%s\""
msgstr "Couldn't export key to \"%s\""

#: ../pgp/seahorse-pgp-key-properties.c:1172
#: ../ssh/seahorse-ssh-key-properties.c:225
msgid "Export Complete Key"
msgstr "Export Complete Key"

#: ../pgp/seahorse-pgp-key-properties.c:1197
#: ../ssh/seahorse-ssh-key-properties.c:247
msgid "Couldn't export key."
msgstr "Couldn't export key."

#: ../pgp/seahorse-pgp-key-properties.c:1407
#: ../pgp/seahorse-pgp-key-properties.c:1496
msgctxt "Expires"
msgid "Never"
msgstr "Never"

#: ../pgp/seahorse-pgp-key-properties.c:1454
msgid "ID"
msgstr "ID"

#. The key type column
#: ../pgp/seahorse-pgp-key-properties.c:1457
#: ../src/seahorse-key-manager-store.c:833
msgid "Type"
msgstr "Type"

#: ../pgp/seahorse-pgp-key-properties.c:1460
msgid "Created"
msgstr "Created"

#: ../pgp/seahorse-pgp-key-properties.c:1463
msgid "Expires"
msgstr "Expires"

#: ../pgp/seahorse-pgp-key-properties.c:1466
msgid "Status"
msgstr "Status"

#: ../pgp/seahorse-pgp-key-properties.c:1469
msgid "Strength"
msgstr "Strength"

#: ../pgp/seahorse-pgp-key-properties.c:1493
msgid "Good"
msgstr "Good"

#: ../pgp/seahorse-pgp-key-properties.c:1888
#: ../src/seahorse-key-manager-store.c:814
msgid "Key ID"
msgstr "Key ID"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:1
msgid "<b>Actions</b>"
msgstr "<b>Actions</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:2
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:1
msgid "<b>Comment:</b>"
msgstr "<b>Comment:</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:3
msgid "<b>Dates</b>"
msgstr "<b>Dates</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:4
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:3
msgid "<b>Email:</b>"
msgstr "<b>Email:</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:5
msgid "<b>Fingerprint</b>"
msgstr "<b>Fingerprint</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:6
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:6
msgid "<b>Key ID:</b>"
msgstr "<b>Key ID:</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:7
msgid "<b>Key Names and Signatures</b>"
msgstr "<b>Key Names and Signatures</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:8
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:7
msgid "<b>Photo </b>"
msgstr "<b>Photo </b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:9
msgid "<b>Technical Details</b>"
msgstr "<b>Technical Details</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:10
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:9
msgid "<b>This key has been revoked</b>"
msgstr "<b>This key has been revoked</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:11
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:10
msgid "<b>This key has expired</b>"
msgstr "<b>This key has expired</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:12
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:11
#: ../ssh/seahorse-ssh-key-properties.xml.h:9
msgid "<b>Type:</b>"
msgstr "<b>Type:</b>"

#. To translators: This is the noun not the verb.
#: ../pgp/seahorse-pgp-private-key-properties.xml.h:14
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:13
#: ../ssh/seahorse-ssh-key-properties.xml.h:11
msgid "<b>Use:</b>"
msgstr "<b>Use:</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:15
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:17
msgid "<b>_Subkeys</b>"
msgstr "<b>_Subkeys</b>"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:16
msgid "Add"
msgstr "Add"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:17
msgid "Add a photo to this key"
msgstr "Add a photo to this key"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:18
#: ../ssh/seahorse-ssh-key-properties.xml.h:14
msgid "Change _Passphrase"
msgstr "Change _Passphrase"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:20
msgid "Decrypt files and email sent to you."
msgstr "Decrypt files and email sent to you."

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:21
msgid "Delete"
msgstr "Delete"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:23
msgid "Expire"
msgstr "Expire"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:24
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:21
msgid "Expires:"
msgstr "Expires:"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:25
msgid "Export"
msgstr "Export"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:27
msgid "Go to next photo"
msgstr "Go to next photo"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:28
msgid "Go to previous photo"
msgstr "Go to previous photo"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:29
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:29
msgid "Key ID:"
msgstr "Key ID:"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:31
msgid "Make this photo the primary photo"
msgstr "Make this photo the primary photo"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:33
msgid "Names and Signatures"
msgstr "Names and Signatures"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:34
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:32
msgid "Never"
msgstr "Never"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:35
msgid "Override Owner _Trust:"
msgstr "Override Owner _Trust:"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:36
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:33
msgid "Owner"
msgstr "Owner"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:37
msgid "Primary"
msgstr "Primary"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:38
msgid "Private PGP Key"
msgstr "Private PGP Key"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:39
msgid "Remove this photo from this key"
msgstr "Remove this photo from this key"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:40
msgid "Revoke"
msgstr "Revoke"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:41
msgid "Sign"
msgstr "Sign"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:42
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:35
msgid "Strength:"
msgstr "Strength:"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:43
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:36
msgid "The owner of the key revoked the key. It can no longer be used."
msgstr "The owner of the key revoked the key. It can no longer be used."

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:47
msgid "_Add Name"
msgstr "_Add Name"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:48
msgid "_Export Complete Key:"
msgstr "_Export Complete Key:"

#: ../pgp/seahorse-pgp-private-key-properties.xml.h:49
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:46
msgctxt "name-of-key"
msgid "<b>Name:</b>"
msgstr "<b>Name:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:2
msgid "<b>Dates:</b>"
msgstr "<b>Dates:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:4
#: ../ssh/seahorse-ssh-key-properties.xml.h:2
msgid "<b>Fingerprint:</b>"
msgstr "<b>Fingerprint:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:5
msgid "<b>Indicate Trust:</b>"
msgstr "<b>Indicate Trust:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:14
msgid "<b>Your trust of this key</b>"
msgstr "<b>Your trust of this key</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:15
msgid "<b>_Other Names:</b>"
msgstr "<b>_Other Names:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:16
msgid "<b>_People who have signed this key:</b>"
msgstr "<b>_People who have signed this key:</b>"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:20
msgid "Encrypt files and email to the key's owner "
msgstr "Encrypt files and email to the key's owner "

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:22
msgid "Fully"
msgstr "Fully"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:24
#, no-c-format
msgid "I trust signatures from '%s' on other keys"
msgstr "I trust signatures from '%s' on other keys"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:26
#, no-c-format
msgid ""
"If you believe that the person that owns this key is '%s', <i>sign</i> this "
"key:"
msgstr ""
"If you believe that the person that owns this key is '%s', <i>sign</i> this "
"key:"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:28
#, no-c-format
msgid ""
"If you no longer trust that '%s' owns this key, <i>revoke</i> your signature:"
msgstr ""
"If you no longer trust that '%s' owns this key, <i>revoke</i> your signature:"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:31
msgid "Marginally"
msgstr "Marginally"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:34
msgid "Public PGP Key"
msgstr "Public PGP Key"

#. Trust column
#: ../pgp/seahorse-pgp-public-key-properties.xml.h:37
#: ../src/seahorse-key-manager-store.c:827
msgid "Trust"
msgstr "Trust"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:39
msgid "Ultimately"
msgstr "Ultimately"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:41
msgid "You _Trust the Owner:"
msgstr "You _Trust the Owner:"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:42
msgid "Your trust is manually specified on the <i>Details</i> tab."
msgstr "Your trust is manually specified on the <i>Details</i> tab."

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:43
msgid "_Only display the signatures of people I trust"
msgstr "_Only display the signatures of people I trust"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:44
msgid "_Revoke Signature"
msgstr "_Revoke Signature"

#: ../pgp/seahorse-pgp-public-key-properties.xml.h:45
msgid "_Sign this Key"
msgstr "_Sign this Key"

#: ../pgp/seahorse-pgp-subkey.c:371
#, c-format
msgid "Subkey %d of %s"
msgstr "Subkey %d of %s"

#: ../pgp/seahorse-revoke.xml.h:1
msgid "Optional description of revocation"
msgstr "Optional description of revocation"

#: ../pgp/seahorse-revoke.xml.h:2
msgid "Re_voke"
msgstr "Re_voke"

#: ../pgp/seahorse-revoke.xml.h:3
msgid "Reason for revoking the key"
msgstr "Reason for revoking the key"

#: ../pgp/seahorse-revoke.xml.h:6
msgid "_Reason:"
msgstr "_Reason:"

#: ../pgp/seahorse-signer.c:62
msgid ""
"You have no personal PGP keys that can be used to sign a document or message."
msgstr ""
"You have no personal PGP keys that can be used to sign a document or message."

#: ../pgp/seahorse-sign.xml.h:1
msgid "<b>How carefully have you checked this key?</b>"
msgstr "<b>How carefully have you checked this key?</b>"

#: ../pgp/seahorse-sign.xml.h:2
msgid "<b>How others will see this signature:</b>"
msgstr "<b>How others will see this signature:</b>"

#: ../pgp/seahorse-sign.xml.h:3
msgid "<b>Sign key as:</b>"
msgstr "<b>Sign key as:</b>"

#: ../pgp/seahorse-sign.xml.h:4
msgid ""
"<i>Casually:</i> means you have done a casual verification that the key is "
"owned by the person who claims to own it. For example, you could read the "
"key fingerprint to the owner over the phone. "
msgstr ""
"<i>Casually:</i> means you have done a casual verification that the key is "
"owned by the person who claims to own it. For example, you could read the "
"key fingerprint to the owner over the phone. "

#: ../pgp/seahorse-sign.xml.h:5
msgid "<i>Key Name</i>"
msgstr "<i>Key Name</i>"

#: ../pgp/seahorse-sign.xml.h:6
msgid ""
"<i>Not at all:</i> means you believe the key is owned by the person who "
"claims to own it, but you could not or did not verify this to be a fact."
msgstr ""
"<i>Not at all:</i> means you believe the key is owned by the person who "
"claims to own it, but you could not or did not verify this to be a fact."

#: ../pgp/seahorse-sign.xml.h:7
msgid ""
"<i>Very Carefully:</i> Select this only if you are absolutely sure that this "
"key is genuine."
msgstr ""
"<i>Very Carefully:</i> Select this only if you are absolutely sure that this "
"key is genuine."

#: ../pgp/seahorse-sign.xml.h:8
msgid "By signing you indicate your trust that this key belongs to:"
msgstr "By signing you indicate your trust that this key belongs to:"

#: ../pgp/seahorse-sign.xml.h:9
msgid "I can _revoke this signature at a later date."
msgstr "I can _revoke this signature at a later date."

#: ../pgp/seahorse-sign.xml.h:10
msgid "Sign Key"
msgstr "Sign Key"

#: ../pgp/seahorse-sign.xml.h:11
msgid ""
"You could use a hard to forge photo identification (such as a passport) to "
"personally check that the name on the key is correct. You should have also "
"used email to check that the email address belongs to the owner."
msgstr ""
"You could use a hard to forge photo identification (such as a passport) to "
"personally check that the name on the key is correct. You should have also "
"used email to check that the email address belongs to the owner."

#: ../pgp/seahorse-sign.xml.h:12
msgid "_Casually"
msgstr "_Casually"

#: ../pgp/seahorse-sign.xml.h:13
msgid "_Not at all"
msgstr "_Not at all"

#: ../pgp/seahorse-sign.xml.h:14
msgid "_Others may not see this signature"
msgstr "_Others may not see this signature"

#: ../pgp/seahorse-sign.xml.h:15
msgid "_Sign"
msgstr "_Sign"

#: ../pgp/seahorse-sign.xml.h:16
msgid "_Signer:"
msgstr "_Signer:"

#: ../pgp/seahorse-sign.xml.h:17
msgid "_Very Carefully"
msgstr "_Very Carefully"

#: ../pgp/seahorse-signer.xml.h:1
msgid "_Sign message with key:"
msgstr "_Sign message with key:"

#: ../pkcs11/seahorse-pkcs11-certificate.c:106
#: ../pkcs11/seahorse-pkcs11-certificate-props.c:66
msgid "Certificate"
msgstr "Certificate"

#: ../pkcs11/seahorse-pkcs11-commands.c:106
msgid "Couldn't delete"
msgstr "Couldn't delete"

#: ../pkcs11/seahorse-pkcs11-commands.c:127
#, c-format
msgid "Are you sure you want to delete the certificate '%s'?"
msgstr "Are you sure you want to delete the certificate '%s'?"

#: ../pkcs11/seahorse-pkcs11-commands.c:130
#, c-format
msgid "Are you sure you want to delete %d certificate?"
msgid_plural "Are you sure you want to delete %d certificates?"
msgstr[0] "Are you sure you want to delete %d certificate?"
msgstr[1] "Are you sure you want to delete %d certificates?"

#: ../pkcs11/seahorse-pkcs11-commands.c:143
msgid "Deleting"
msgstr "Deleting"

#: ../src/seahorse-change-passphrase.xml.h:1
msgid "Change Passphrase"
msgstr "Change Passphrase"

#: ../src/seahorse-change-passphrase.xml.h:2
msgid "Con_firm Passphrase:"
msgstr "Con_firm Passphrase:"

#: ../src/seahorse-change-passphrase.xml.h:3
msgid "Confirm new passphrase"
msgstr "Confirm new passphrase"

#: ../src/seahorse-change-passphrase.xml.h:5
msgid "New _Passphrase:"
msgstr "New _Passphrase:"

#: ../src/seahorse.desktop.in.in.h:1
msgid "Manage your passwords and encryption keys"
msgstr "Manage your passwords and encryption keys"

#: ../src/seahorse.desktop.in.in.h:2 ../src/seahorse-key-manager.c:868
#: ../src/seahorse-main.c:76 ../src/seahorse-viewer.c:148
msgid "Passwords and Keys"
msgstr "Passwords and Keys"

#: ../src/seahorse-generate-select.xml.h:1
msgid "<b>_Select the type of item to create:</b>"
msgstr "<b>_Select the type of item to create:</b>"

#: ../src/seahorse-generate-select.xml.h:2
msgid "C_ontinue"
msgstr "C_ontinue"

#: ../src/seahorse-generate-select.xml.h:3
msgid "Create New ..."
msgstr "Create New ..."

#: ../src/seahorse-key-manager.c:251 ../src/seahorse-keyserver-results.c:116
#, c-format
msgid "Selected %d key"
msgid_plural "Selected %d keys"
msgstr[0] "Selected %d key"
msgstr[1] "Selected %d keys"

#: ../src/seahorse-key-manager.c:431 ../src/seahorse-key-manager.c:489
#: ../src/seahorse-key-manager.c:550 ../src/seahorse-viewer.c:454
msgid "Couldn't import keys"
msgstr "Couldn't import keys"

#: ../src/seahorse-key-manager.c:433 ../src/seahorse-viewer.c:456
msgid "Imported keys"
msgstr "Imported keys"

#: ../src/seahorse-key-manager.c:484
msgid "Importing keys"
msgstr "Importing keys"

#: ../src/seahorse-key-manager.c:504 ../ssh/seahorse-ssh-operation.c:891
msgid "Import Key"
msgstr "Import Key"

#: ../src/seahorse-key-manager.c:550
msgid "Unrecognized key type, or invalid data format"
msgstr "Unrecognised key type, or invalid data format"

#: ../src/seahorse-key-manager.c:565
msgid "Importing Keys"
msgstr "Importing Keys"

#: ../src/seahorse-key-manager.c:737 ../src/seahorse-keyserver-results.c:254
msgid "_Remote"
msgstr "_Remote"

#: ../src/seahorse-key-manager.c:739
msgid "Close this program"
msgstr "Close this program"

#: ../src/seahorse-key-manager.c:740
msgid "_New..."
msgstr "_New..."

#: ../src/seahorse-key-manager.c:741
msgid "Create a new key or item"
msgstr "Create a new key or item"

#: ../src/seahorse-key-manager.c:742
msgid "_Import..."
msgstr "_Import..."

#: ../src/seahorse-key-manager.c:743
msgid "Import from a file"
msgstr "Import from a file"

#: ../src/seahorse-key-manager.c:745
msgid "Import from the clipboard"
msgstr "Import from the clipboard"

#: ../src/seahorse-key-manager.c:750 ../src/seahorse-keyserver-results.c:264
msgid "_Find Remote Keys..."
msgstr "_Find Remote Keys..."

#: ../src/seahorse-key-manager.c:751 ../src/seahorse-keyserver-results.c:265
msgid "Search for keys on a key server"
msgstr "Search for keys on a key server"

#: ../src/seahorse-key-manager.c:752
msgid "_Sync and Publish Keys..."
msgstr "_Sync and Publish Keys..."

#: ../src/seahorse-key-manager.c:753
msgid "Publish and/or synchronize your keys with those online."
msgstr "Publish and/or synchronise your keys with those online."

#: ../src/seahorse-key-manager.c:758
msgid "T_ypes"
msgstr "T_ypes"

#: ../src/seahorse-key-manager.c:758
msgid "Show type column"
msgstr "Show type column"

#: ../src/seahorse-key-manager.c:760
msgid "_Expiry"
msgstr "_Expiry"

#: ../src/seahorse-key-manager.c:760
msgid "Show expiry column"
msgstr "Show expiry column"

#: ../src/seahorse-key-manager.c:762
msgid "_Trust"
msgstr "_Trust"

#: ../src/seahorse-key-manager.c:762
msgid "Show owner trust column"
msgstr "Show owner trust column"

#: ../src/seahorse-key-manager.c:764
msgid "_Validity"
msgstr "_Validity"

#: ../src/seahorse-key-manager.c:764
msgid "Show validity column"
msgstr "Show validity column"

#: ../src/seahorse-key-manager.c:941
msgid "Filter:"
msgstr "Filter:"

#: ../src/seahorse-key-manager.xml.h:1
msgid "<big><b>First time options:</b></big>"
msgstr "<big><b>First time options:</b></big>"

#: ../src/seahorse-key-manager.xml.h:2
msgid "Generate a new key of your own: "
msgstr "Generate a new key of your own: "

#: ../src/seahorse-key-manager.xml.h:3
msgid "Import existing keys from a file:"
msgstr "Import existing keys from a file:"

#: ../src/seahorse-key-manager.xml.h:4
msgid "My _Personal Keys"
msgstr "My _Personal Keys"

#: ../src/seahorse-key-manager.xml.h:5
msgid "Other _Keys"
msgstr "Other _Keys"

#: ../src/seahorse-key-manager.xml.h:6
msgid "To get started with encryption you will need keys."
msgstr "To get started with encryption you will need keys."

#: ../src/seahorse-key-manager.xml.h:7 ../src/seahorse-viewer.c:519
msgid "_Import"
msgstr "_Import"

#: ../src/seahorse-key-manager.xml.h:8
msgid "_Passwords"
msgstr "_Passwords"

#: ../src/seahorse-key-manager-store.c:610 ../src/seahorse-viewer.c:264
msgid "Couldn't export keys"
msgstr "Couldn't export keys"

#: ../src/seahorse-key-manager-store.c:820
msgid "Validity"
msgstr "Validity"

#. Expiry date column
#: ../src/seahorse-key-manager-store.c:839
msgid "Expiration Date"
msgstr "Expiration Date"

#: ../src/seahorse-keyserver-results.c:256
msgid "Close this window"
msgstr "Close this window"

#: ../src/seahorse-keyserver-results.c:257
msgid "_Expand All"
msgstr "_Expand All"

#: ../src/seahorse-keyserver-results.c:258
msgid "Expand all listings"
msgstr "Expand all listings"

#: ../src/seahorse-keyserver-results.c:259
msgid "_Collapse All"
msgstr "_Collapse All"

#: ../src/seahorse-keyserver-results.c:260
msgid "Collapse all listings"
msgstr "Collapse all listings"

#: ../src/seahorse-keyserver-results.c:331
msgid "Remote Keys"
msgstr "Remote Keys"

#: ../src/seahorse-keyserver-results.c:333
#, c-format
msgid "Remote Keys Containing '%s'"
msgstr "Remote Keys Containing '%s'"

#: ../src/seahorse-keyserver-search.xml.h:1
msgid "<b>Key Servers:</b>"
msgstr "<b>Key Servers:</b>"

#: ../src/seahorse-keyserver-search.xml.h:2
msgid "<b>Shared Keys Near Me:</b>"
msgstr "<b>Shared Keys Near Me:</b>"

#: ../src/seahorse-keyserver-search.xml.h:3
msgid "Find Remote Keys"
msgstr "Find Remote Keys"

#: ../src/seahorse-keyserver-search.xml.h:4
msgid ""
"This will find keys for others on the Internet. These keys can then be "
"imported into your local key ring."
msgstr ""
"This will find keys for others on the Internet. These keys can then be "
"imported into your local keyring."

#: ../src/seahorse-keyserver-search.xml.h:5
msgid "Where to search:"
msgstr "Where to search:"

#: ../src/seahorse-keyserver-search.xml.h:6
msgid "_Search"
msgstr "_Search"

#: ../src/seahorse-keyserver-search.xml.h:7
msgid "_Search for keys containing: "
msgstr "_Search for keys containing: "

#: ../src/seahorse-keyserver-sync.c:58
msgid "Couldn't publish keys to server"
msgstr "Couldn't publish keys to server"

#: ../src/seahorse-keyserver-sync.c:77
#, c-format
msgid "Couldn't retrieve keys from server: %s"
msgstr "Couldn't retrieve keys from server: %s"

#: ../src/seahorse-keyserver-sync.c:161
#, c-format
msgid "<b>%d key is selected for synchronizing</b>"
msgid_plural "<b>%d keys are selected for synchronizing</b>"
msgstr[0] "<b>%d key is selected for synchronising</b>"
msgstr[1] "<b>%d keys are selected for synchronising</b>"

#: ../src/seahorse-keyserver-sync.c:247
msgid "Synchronizing keys..."
msgstr "Synchronising keys..."

#: ../src/seahorse-keyserver-sync.xml.h:1
msgid "Sync Keys"
msgstr "Sync Keys"

#: ../src/seahorse-keyserver-sync.xml.h:2
msgid ""
"This will publish the keys in your key ring so they're available for others "
"to use. You'll also get any changes others have made since you received "
"their keys."
msgstr ""
"This will publish the keys in your keyring so they're available for others "
"to use. You'll also get any changes others have made since you received "
"their keys."

#: ../src/seahorse-keyserver-sync.xml.h:3
msgid ""
"This will retrieve any changes others have made since you received their "
"keys. No key server has been chosen for publishing, so your keys will not be "
"made available to others."
msgstr ""
"This will retrieve any changes others have made since you received their "
"keys. No key server has been chosen for publishing, so your keys will not be "
"made available to others."

#: ../src/seahorse-keyserver-sync.xml.h:4
msgid "_Key Servers"
msgstr "_Key Servers"

#: ../src/seahorse-keyserver-sync.xml.h:5
msgid "_Sync"
msgstr "_Sync"

#: ../src/seahorse-main.c:60
msgid "Version of this application"
msgstr "Version of this application"

#: ../src/seahorse-viewer.c:124
msgid "Contributions:"
msgstr "Contributions:"

#: ../src/seahorse-viewer.c:150
msgid "translator-credits"
msgstr ""
"Launchpad Contributions:\n"
"  Joel Addison https://launchpad.net/~joeladdison\n"
"  Joel Pickett https://launchpad.net/~jpickett"

#: ../src/seahorse-viewer.c:153
msgid "Seahorse Project Homepage"
msgstr "Seahorse Project Homepage"

#. Top menu items
#: ../src/seahorse-viewer.c:173
msgid "_File"
msgstr "_File"

#: ../src/seahorse-viewer.c:174
msgid "_Edit"
msgstr "_Edit"

#: ../src/seahorse-viewer.c:175
msgid "_View"
msgstr "_View"

#: ../src/seahorse-viewer.c:176
msgid "_Help"
msgstr "_Help"

#: ../src/seahorse-viewer.c:178
msgid "Prefere_nces"
msgstr "Prefere_nces"

#: ../src/seahorse-viewer.c:179
msgid "Change preferences for this program"
msgstr "Change preferences for this program"

#: ../src/seahorse-viewer.c:182
msgid "About this program"
msgstr "About this program"

#: ../src/seahorse-viewer.c:183
msgid "_Contents"
msgstr "_Contents"

#: ../src/seahorse-viewer.c:184
msgid "Show Seahorse help"
msgstr "Show Seahorse help"

#: ../src/seahorse-viewer.c:285
msgid "Export public key"
msgstr "Export public key"

#: ../src/seahorse-viewer.c:306
msgid "Exporting keys"
msgstr "Exporting keys"

#: ../src/seahorse-viewer.c:335
msgid "Couldn't retrieve data from key server"
msgstr "Couldn't retrieve data from key server"

#. Translators: "Copied" is a verb (used as a status indicator), not an adjective for the word "keys"
#: ../src/seahorse-viewer.c:347
msgid "Copied keys"
msgstr "Copied keys"

#: ../src/seahorse-viewer.c:372
msgid "Retrieving keys"
msgstr "Retrieving keys"

#: ../src/seahorse-viewer.c:427
#, c-format
msgid "%s is a private key. Are you sure you want to proceed?"
msgstr "%s is a private key. Are you sure you want to proceed?"

#: ../src/seahorse-viewer.c:481
msgid "Importing keys from key servers"
msgstr "Importing keys from key servers"

#: ../src/seahorse-viewer.c:506
msgid "Show properties"
msgstr "Show properties"

#: ../src/seahorse-viewer.c:507
msgctxt "This text refers to deleting an item from its type's backing store."
msgid "_Delete"
msgstr "_Delete"

#: ../src/seahorse-viewer.c:508
msgid "Delete selected items"
msgstr "Delete selected items"

#: ../src/seahorse-viewer.c:512
msgid "E_xport..."
msgstr "E_xport..."

#: ../src/seahorse-viewer.c:513
msgid "Export to a file"
msgstr "Export to a file"

#: ../src/seahorse-viewer.c:515
msgid "Copy to the clipboard"
msgstr "Copy to the clipboard"

#: ../src/seahorse-viewer.c:520
msgid "Import selected keys to local key ring"
msgstr "Import selected keys to local keyring"

#: ../ssh/seahorse-ssh-askpass.c:60 ../ssh/seahorse-ssh-askpass.c:68
msgid "Enter your Secure Shell passphrase:"
msgstr "Enter your Secure Shell passphrase:"

#: ../ssh/seahorse-ssh-askpass.c:82
msgid "Old Key Passphrase"
msgstr "Old Key Passphrase"

#: ../ssh/seahorse-ssh-askpass.c:83
#, c-format
msgid "Enter the old passphrase for: %s"
msgstr "Enter the old passphrase for: %s"

#: ../ssh/seahorse-ssh-askpass.c:87 ../ssh/seahorse-ssh-askpass.c:92
msgid "New Key Passphrase"
msgstr "New Key Passphrase"

#: ../ssh/seahorse-ssh-askpass.c:88
#, c-format
msgid "Enter the new passphrase for: %s"
msgstr "Enter the new passphrase for: %s"

#: ../ssh/seahorse-ssh-askpass.c:93
#, c-format
msgid "Enter the new passphrase again: %s"
msgstr "Enter the new passphrase again: %s"

#: ../ssh/seahorse-ssh-commands.c:86
msgid "Configure Key for _Secure Shell..."
msgstr "Configure Key for _Secure Shell..."

#: ../ssh/seahorse-ssh-commands.c:87
msgid ""
"Send public Secure Shell key to another machine, and enable logins using "
"that key."
msgstr ""
"Send public Secure Shell key to another machine, and enable logins using "
"that key."

#: ../ssh/seahorse-ssh-commands.c:118
#, c-format
msgid "Are you sure you want to delete the secure shell key '%s'?"
msgstr "Are you sure you want to delete the secure shell key '%s'?"

#: ../ssh/seahorse-ssh-commands.c:121
#, c-format
msgid "Are you sure you want to delete %d secure shell keys?"
msgstr "Are you sure you want to delete %d secure shell keys?"

#: ../ssh/seahorse-ssh-commands.c:133
msgid "Couldn't delete key"
msgstr "Couldn't delete key"

#: ../ssh/seahorse-ssh-generate.c:60 ../ssh/seahorse-ssh-key.c:91
#: ../ssh/seahorse-ssh-key.c:95 ../ssh/seahorse-ssh-key-properties.xml.h:19
msgid "Secure Shell Key"
msgstr "Secure Shell Key"

#: ../ssh/seahorse-ssh-generate.c:61
msgid "Used to access other computers (eg: via a terminal)"
msgstr "Used to access other computers (eg: via a terminal)"

#: ../ssh/seahorse-ssh-generate.c:115 ../ssh/seahorse-ssh-generate.c:131
msgid "Couldn't generate Secure Shell key"
msgstr "Couldn't generate Secure Shell key"

#: ../ssh/seahorse-ssh-generate.c:197
msgid "Creating Secure Shell Key"
msgstr "Creating Secure Shell Key"

#: ../ssh/seahorse-ssh-generate.xml.h:2
msgid ""
"<i>Use your email address, and any other reminder you need about what this "
"key is for.</i>"
msgstr ""
"<i>Use your email address, and any other reminder you need about what this "
"key is for.</i>"

#: ../ssh/seahorse-ssh-generate.xml.h:3
msgid ""
"A Secure Shell (SSH) key lets you connect securely to trusted computers "
"using SSH, without entering a different password for each of them."
msgstr ""
"A Secure Shell (SSH) key lets you connect securely to trusted computers "
"using SSH, without entering a different password for each of them."

#: ../ssh/seahorse-ssh-generate.xml.h:5
msgid ""
"If there is already a computer you want to use this key with, you can set up "
"that computer to recognize your key now. "
msgstr ""
"If there is already a computer you want to use this key with, you can set up "
"that computer to recognise your key now. "

#: ../ssh/seahorse-ssh-generate.xml.h:7
msgid "New Secure Shell Key"
msgstr "New Secure Shell Key"

#: ../ssh/seahorse-ssh-generate.xml.h:8
msgid "_Create and Set Up"
msgstr "_Create and Set Up"

#: ../ssh/seahorse-ssh-generate.xml.h:9
msgid "_Just Create Key"
msgstr "_Just Create Key"

#: ../ssh/seahorse-ssh-generate.xml.h:10
msgid "_Key Description:"
msgstr "_Key Description:"

#: ../ssh/seahorse-ssh-key.c:87
msgid "(Unreadable Secure Shell Key)"
msgstr "(Unreadable Secure Shell Key)"

#: ../ssh/seahorse-ssh-key-properties.c:79
msgid "Couldn't rename key."
msgstr "Couldn't rename key."

#: ../ssh/seahorse-ssh-key-properties.c:132
msgid "Couldn't change authorization for key."
msgstr "Couldn't change authorisation for key."

#: ../ssh/seahorse-ssh-key-properties.c:167
msgid "Couldn't change passphrase for key."
msgstr "Couldn't change passphrase for key."

#: ../ssh/seahorse-ssh-key-properties.xml.h:1
msgid "<b>Algorithm:</b>"
msgstr "<b>Algorithm:</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:3
msgid "<b>Identifier:</b>"
msgstr "<b>Identifier:</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:4
msgid "<b>Location:</b>"
msgstr "<b>Location:</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:5
msgid "<b>Name:</b>"
msgstr "<b>Name:</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:6
msgid "<b>Strength:</b>"
msgstr "<b>Strength:</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:8
msgid "<b>Trust</b>"
msgstr "<b>Trust</b>"

#: ../ssh/seahorse-ssh-key-properties.xml.h:13
#, no-c-format
msgid "<i>This only applies to the '%s'</i> account."
msgstr "<i>This only applies to the '%s'</i> account."

#: ../ssh/seahorse-ssh-key-properties.xml.h:16
msgid "E_xport Complete Key"
msgstr "E_xport Complete Key"

#: ../ssh/seahorse-ssh-key-properties.xml.h:20
msgid "The owner of this key is _authorized to connect to this computer"
msgstr "The owner of this key is _authorised to connect to this computer"

#: ../ssh/seahorse-ssh-key-properties.xml.h:21
msgid "Used to connect to other computers."
msgstr "Used to connect to other computers."

#: ../ssh/seahorse-ssh-operation.c:198
msgid "The SSH command was terminated unexpectedly."
msgstr "The SSH command was terminated unexpectedly."

#: ../ssh/seahorse-ssh-operation.c:208
msgid "The SSH command failed."
msgstr "The SSH command failed."

#: ../ssh/seahorse-ssh-operation.c:518
msgid "Remote Host Password"
msgstr "Remote Host Password"

#: ../ssh/seahorse-ssh-operation.c:634
msgid "Enter Key Passphrase"
msgstr "Enter Key Passphrase"

#: ../ssh/seahorse-ssh-operation.c:724
msgid "Passphrase for New Secure Shell Key"
msgstr "Passphrase for New Secure Shell Key"

#: ../ssh/seahorse-ssh-operation.c:908
#, c-format
msgid "Importing key: %s"
msgstr "Importing key: %s"

#: ../ssh/seahorse-ssh-operation.c:910
msgid "Importing key. Enter passphrase"
msgstr "Importing key. Enter passphrase"

#: ../ssh/seahorse-ssh-source.c:951
msgid "No private key file is available for this key."
msgstr "No private key file is available for this key."

#: ../ssh/seahorse-ssh-upload.c:50
msgid "Couldn't configure Secure Shell keys on remote computer."
msgstr "Couldn't configure Secure Shell keys on remote computer."

#: ../ssh/seahorse-ssh-upload.c:133
msgid "Configuring Secure Shell Keys..."
msgstr "Configuring Secure Shell Keys..."

#: ../ssh/seahorse-ssh-upload.xml.h:1
msgid "<i>eg: fileserver.example.com:port</i>"
msgstr "<i>eg: fileserver.example.com:port</i>"

#: ../ssh/seahorse-ssh-upload.xml.h:2
msgid "Set Up Computer for SSH Connection"
msgstr "Set Up Computer for SSH Connection"

#: ../ssh/seahorse-ssh-upload.xml.h:4
msgid ""
"To use your Secure Shell key with another computer that uses SSH, you must "
"already have a login account on that computer."
msgstr ""
"To use your Secure Shell key with another computer that uses SSH, you must "
"already have a login account on that computer."

#: ../ssh/seahorse-ssh-upload.xml.h:5
msgid "_Computer Name:"
msgstr "_Computer Name:"

#: ../ssh/seahorse-ssh-upload.xml.h:6
msgid "_Login Name:"
msgstr "_Login Name:"

#: ../ssh/seahorse-ssh-upload.xml.h:7
msgid "_Set Up"
msgstr "_Set Up"