~teejee2008/timeshift/trunk

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Tony George (teejeetech@gmail.com)
# This file is distributed under the same license as the timeshift package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: timeshift 1.6\n"
"Report-Msgid-Bugs-To: teejeetech@gmail.com\n"
"POT-Creation-Date: 2017-01-15 00:33+0530\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: Console/AppConsole.vala:600
#, c-format
msgid ""
"\n"
"\n"
msgstr ""

#: Console/AppConsole.vala:604
#, c-format
msgid ""
"\n"
"Press ENTER to continue..."
msgstr ""

#: Core/SnapshotRepo.vala:595
#, c-format
msgid "%d snapshots, %s free"
msgstr ""

#: Console/AppConsole.vala:887
#, c-format
msgid "'%s' will be on '%s'"
msgstr ""

#: Console/AppConsole.vala:884
#, c-format
msgid "'%s' will be on root device"
msgstr ""

#: Gtk/BootOptionsBox.vala:119
msgid "(Re)install GRUB2 on:"
msgstr ""

#: Core/Main.vala:333
msgid "** Uninstalled Timeshift BTRFS **"
msgstr ""

#: Core/Main.vala:3074
msgid "/ is mapped to device"
msgstr ""

#: Core/Main.vala:3096
msgid "/boot is mapped to device"
msgstr ""

#: Core/Main.vala:3107
msgid "/boot/efi is mapped to device"
msgstr ""

#: Core/Main.vala:3085
msgid "/home is mapped to device"
msgstr ""

#: Gtk/MainWindow.vala:302 Gtk/MainWindow.vala:336
msgid "0.0%"
msgstr ""

#: Gtk/SnapshotListBox.vala:274
msgid ""
"<b>Backup Levels</b>\n"
"\n"
"O\tOn demand (manual)\n"
"B\tBoot\n"
"H\tHourly\n"
"D\tDaily\n"
"W\tWeekly\n"
"M\tMonthly"
msgstr ""

#: Gtk/SnapshotListBox.vala:266
msgid "<b>Comments</b> (double-click to edit)"
msgstr ""

#: Gtk/SnapshotListBox.vala:262
msgid "<b>Snapshot Date:</b> Date on which snapshot was created"
msgstr ""

#: Gtk/SnapshotListBox.vala:270
msgid "<b>System:</b> Installed Linux distribution"
msgstr ""

#: Console/AppConsole.vala:670 Console/AppConsole.vala:735
#: Console/AppConsole.vala:867 Console/AppConsole.vala:962
#: Console/AppConsole.vala:1007 Console/AppConsole.vala:1048
#: Console/AppConsole.vala:1065
msgid "Aborted."
msgstr ""

#: Gtk/MainWindow.vala:394
msgid "About"
msgstr ""

#: Gtk/ExcludeBox.vala:218
msgid "Add"
msgstr ""

#: Gtk/ExcludeBox.vala:233
msgid "Add Files"
msgstr ""

#: Gtk/ExcludeBox.vala:240
msgid "Add Folders"
msgstr ""

#: Gtk/ExcludeBox.vala:219
msgid "Add custom pattern"
msgstr ""

#: Gtk/ExcludeBox.vala:241
msgid "Add directories"
msgstr ""

#: Gtk/ExcludeBox.vala:234
msgid "Add files"
msgstr ""

#: Console/AppConsole.vala:352
msgid "Add tags to snapshot (default: O)"
msgstr ""

#: Utility/CronTab.vala:306
msgid "Added cron task"
msgstr ""

#: Gtk/AppGtk.vala:129
msgid "Admin Access Required"
msgstr ""

#: Gtk/AppGtk.vala:124
msgid "Admin access is required to backup and restore system files."
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:137
msgid "All other files and folders are excluded."
msgstr ""

#: Gtk/RestoreDeviceBox.vala:498
msgid ""
"An encrypted device is selected for root file system (/). The boot directory "
"(/boot) must be mounted on a non-encrypted device for the system to boot "
"successfully.\n"
"\n"
"Either select a non-encrypted device for boot directory or select a non-"
"encrypted device for root filesystem."
msgstr ""

#: Core/Main.vala:229
msgid "Another instance of Timeshift is creating a snapshot."
msgstr ""

#: Utility/AppLock.vala:50
msgid "Another instance of this application is running"
msgstr ""

#: Core/Main.vala:233
msgid "Another instance of timeshift is currently running!"
msgstr ""

#: Console/AppConsole.vala:368
msgid "Answer YES to all confirmation prompts"
msgstr ""

#: Core/Main.vala:2932
msgid "App config loaded"
msgstr ""

#: Core/Main.vala:2834
msgid "App config saved"
msgstr ""

#: Console/AppConsole.vala:100
msgid "Application needs admin access."
msgstr ""

#: Core/Main.vala:3249
msgid "Application will exit"
msgstr ""

#: Core/Main.vala:346
msgid "Application will exit."
msgstr ""

#: Utility/Gtk/AboutWindow.vala:348
#, c-format
msgid "Artists"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:324
#, c-format
msgid "Authors"
msgstr ""

#: Gtk/MainWindow.vala:342
msgid "Available"
msgstr ""

#: Gtk/FinishBox.vala:103
msgid ""
"Avoid storing snapshots on your system disk. Using another non-system disk "
"will allow you to format and re-install the OS on your system disk without "
"losing the snapshots stored on it. You can even install another Linux "
"distribution and later roll-back the previous distribution by restoring the "
"snapshot."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:95
msgid "BTRFS"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:118
msgid "BTRFS Tools Not Found"
msgstr ""

#: Core/Main.vala:1817 Core/Main.vala:1821
msgid "BTRFS device is not mounted"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:295
msgid "Back"
msgstr ""

#: Gtk/SetupWizardWindow.vala:78
msgid "Backend"
msgstr ""

#: Console/AppConsole.vala:348 Gtk/BackupWindow.vala:89
msgid "Backup"
msgstr ""

#: Core/Main.vala:1793
msgid "Backup Device"
msgstr ""

#: Core/Main.vala:1788
msgid "Backup device not specified!"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:116
msgid "Bittorrent Clients"
msgstr ""

#: Gtk/ScheduleBox.vala:126
msgid "Boot"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:497
msgid "Boot device not selected"
msgstr ""

#: Core/Main.vala:832
msgid "Boot snapshot failed!"
msgstr ""

#: Core/Main.vala:813
msgid "Boot snapshots are enabled"
msgstr ""

#: Gtk/BootOptionsWindow.vala:48
msgid "Bootloader Options"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:410
msgid "Bootloader Options (Advanced)"
msgstr ""

#: Gtk/MainWindow.vala:165
msgid "Browse"
msgstr ""

#: Gtk/SnapshotListBox.vala:306
msgid "Browse Files"
msgstr ""

#: Gtk/MainWindow.vala:166
msgid "Browse selected snapshot"
msgstr ""

#: Core/Main.vala:2256
msgid "Building file list..."
msgstr ""

#: Utility/GtkHelper.vala:122 Gtk/DeleteWindow.vala:187
#: Gtk/SetupWizardWindow.vala:182 Gtk/RestoreWindow.vala:189
#: Gtk/BackupWindow.vala:177
msgid "Cancel"
msgstr ""

#: Gtk/RestoreWindow.vala:193
msgid "Cancel restore?"
msgstr ""

#: Gtk/RestoreWindow.vala:195
msgid ""
"Cancelling the restore process will leave the target system in an "
"inconsistent state. The system may fail to boot or you may run into various "
"issues. After cancelling, you need to restore another snapshot, to bring the "
"system to a consistent state. Click Yes to confirm."
msgstr ""

#: Gtk/MainWindow.vala:569
msgid "Cannot Delete Live Snapshot"
msgstr ""

#: Gtk/BackupBox.vala:83 Gtk/RestoreBox.vala:119
msgid "Changed"
msgstr ""

#: Gtk/BackupBox.vala:85 Gtk/RestoreBox.vala:121
msgid "Changed items:"
msgstr ""

#: Core/Main.vala:2477
msgid "Checking file systems for errors..."
msgstr ""

#: Gtk/BackupBox.vala:88 Gtk/RestoreBox.vala:124
msgid "Checksum"
msgstr ""

#: Core/Main.vala:2145
msgid "Cleaning up..."
msgstr ""

#: Gtk/ExcludeBox.vala:264
msgid ""
"Click an item to edit the pattern.\n"
"Drag and drop items with mouse to re-order."
msgstr ""

#: Gtk/ExcludeBox.vala:75
msgid "Click to edit. Drag and drop to re-order."
msgstr ""

#: Gtk/RestoreWindow.vala:63
msgid "Clone System"
msgstr ""

#: Console/AppConsole.vala:356
msgid "Clone current system"
msgstr ""

#: Gtk/RestoreFinishBox.vala:61
msgid "Cloning"
msgstr ""

#: Gtk/RestoreBox.vala:68
msgid "Cloning System..."
msgstr ""

#: Core/Main.vala:2522
msgid "Cloning system..."
msgstr ""

#: Utility/Gtk/AboutWindow.vala:305 Gtk/BootOptionsWindow.vala:107
#: Gtk/DeleteWindow.vala:169 Gtk/SettingsWindow.vala:142
#: Gtk/RestoreWindow.vala:179 Gtk/RsyncLogWindow.vala:248
#: Gtk/BackupWindow.vala:167
msgid "Close"
msgstr ""

#: Gtk/DeleteFinishBox.vala:70 Gtk/BackupFinishBox.vala:70
#: Gtk/RestoreFinishBox.vala:85
msgid "Close window to exit"
msgstr ""

#: Core/Main.vala:319
msgid "Commands listed below are not available on this system"
msgstr ""

#: Gtk/SnapshotListBox.vala:224
msgid "Comments"
msgstr ""

#: Gtk/FinishBox.vala:107
msgid ""
"Common files are hard-linked between snapshots. Copying the files manually "
"to another location will duplicate the files and break hard-links between "
"them. Snapshots must be moved carefully by running 'rsync' from a terminal. "
"The file system at destination path must support hard-links."
msgstr ""

#: Gtk/DeleteFinishBox.vala:50 Gtk/BackupFinishBox.vala:50
#: Gtk/RestoreFinishBox.vala:50 Gtk/RestoreFinishBox.vala:68
msgid "Completed"
msgstr ""

#: Gtk/RestoreFinishBox.vala:71
msgid "Completed With Errors"
msgstr ""

#: Console/AppConsole.vala:1041
#, c-format
msgid "Continue with restore? (y/n): "
msgstr ""

#: Utility/Gtk/AboutWindow.vala:332
#, c-format
msgid "Contributions"
msgstr ""

#: Console/AppConsole.vala:807 Console/AppConsole.vala:938
msgid "Could not find device"
msgstr ""

#: Utility/Device.vala:1119
#, c-format
msgid "Could not find file"
msgstr ""

#: Console/AppConsole.vala:704
msgid "Could not find snapshot"
msgstr ""

#: Core/Main.vala:2708
msgid "Could not find system subvolume"
msgstr ""

#: Core/Main.vala:2736
msgid "Could not find system subvolumes for creating pre-restore snapshot"
msgstr ""

#: Gtk/MainWindow.vala:138
msgid "Create"
msgstr ""

#: Gtk/BackupWindow.vala:61
msgid "Create Snapshot"
msgstr ""

#: Gtk/ScheduleBox.vala:126
msgid "Create one per boot"
msgstr ""

#: Gtk/ScheduleBox.vala:92
msgid "Create one per day"
msgstr ""

#: Gtk/ScheduleBox.vala:109
msgid "Create one per hour"
msgstr ""

#: Gtk/ScheduleBox.vala:58
msgid "Create one per month"
msgstr ""

#: Gtk/ScheduleBox.vala:75
msgid "Create one per week"
msgstr ""

#: Console/AppConsole.vala:350
msgid "Create snapshot (even if not scheduled)"
msgstr ""

#: Console/AppConsole.vala:349
msgid "Create snapshot if scheduled"
msgstr ""

#: Gtk/MainWindow.vala:139
msgid "Create snapshot of current system"
msgstr ""

#: Gtk/MainWindow.vala:1112
msgid ""
"Create snapshots manually or enable scheduled snapshots to protect your "
"system"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:96
msgid "Create snapshots using RSYNC"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:79
msgid "Create snapshots using RSYNC tool and hard-links"
msgstr ""

#: Gtk/BackupBox.vala:81 Gtk/RestoreBox.vala:117
msgid "Created"
msgstr ""

#: Core/Snapshot.vala:360
msgid "Created control file"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:306
msgid "Created directory"
msgstr ""

#: Core/Main.vala:2758
msgid "Created pre-restore snapshot"
msgstr ""

#: Core/Main.vala:1292
msgid "Created subvolume snapshot"
msgstr ""

#: Gtk/BackupBox.vala:67
msgid "Creating Snapshot..."
msgstr ""

#: Core/Main.vala:1251
msgid "Creating new backup..."
msgstr ""

#: Core/Main.vala:1099
msgid "Creating new snapshot..."
msgstr ""

#: Core/Main.vala:2691
msgid "Creating pre-restore snapshot from system subvolumes..."
msgstr ""

#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299
msgid "Credits"
msgstr ""

#: Core/Main.vala:3248
msgid "Critical Error"
msgstr ""

#: Utility/CronTab.vala:136
msgid "Cron job added"
msgstr ""

#: Utility/CronTab.vala:217
msgid "Cron job removed"
msgstr ""

#: Utility/CronTab.vala:298
msgid "Cron task exists"
msgstr ""

#: Gtk/ScheduleBox.vala:92
msgid "Daily"
msgstr ""

#: Core/Main.vala:892
msgid "Daily snapshot failed!"
msgstr ""

#: Core/Main.vala:873
msgid "Daily snapshots are enabled"
msgstr ""

#: Core/Main.vala:1885
msgid "Data will be modified on following devices:"
msgstr ""

#: Console/AppConsole.vala:362 Gtk/DeleteWindow.vala:95 Gtk/MainWindow.vala:156
#: Gtk/SnapshotListBox.vala:292
msgid "Delete"
msgstr ""

#: Gtk/DeleteWindow.vala:61
msgid "Delete Snapshots"
msgstr ""

#: Console/AppConsole.vala:364
msgid "Delete all snapshots"
msgstr ""

#: Gtk/MainWindow.vala:157
msgid "Delete selected snapshot"
msgstr ""

#: Console/AppConsole.vala:363
msgid "Delete snapshot"
msgstr ""

#: Gtk/BackupBox.vala:82 Gtk/RestoreBox.vala:118
msgid "Deleted"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:329
msgid "Deleted directory"
msgstr ""

#: Core/Snapshot.vala:454
msgid "Deleted snapshot"
msgstr ""

#: Core/Subvolume.vala:99
msgid "Deleted subvolume"
msgstr ""

#: Core/Main.vala:2675
msgid "Deleted system subvolumes: @, @home"
msgstr ""

#: Gtk/DeleteBox.vala:55
msgid "Deleting Snapshots..."
msgstr ""

#: Core/Subvolume.vala:89
msgid "Deleting subvolume"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:130
msgid "Deluge, Transmission"
msgstr ""

#: Console/AppConsole.vala:418 Console/AppConsole.vala:533
msgid "Description"
msgstr ""

#: Core/Subvolume.vala:113
msgid "Destroyed qgroup"
msgstr ""

#: Core/Subvolume.vala:103
msgid "Destroying qgroup"
msgstr ""

#: Console/AppConsole.vala:445 Console/AppConsole.vala:484
#: Console/AppConsole.vala:532 Core/Main.vala:1888 Core/Main.vala:1916
#: Core/SnapshotRepo.vala:49 Core/SnapshotRepo.vala:637
#: Core/SnapshotRepo.vala:640 Utility/Device.vala:1742 Utility/Device.vala:1752
#: Gtk/RestoreDeviceBox.vala:98
#, c-format
msgid "Device"
msgstr ""

#: Utility/Device.vala:1201
msgid "Device is unlocked"
msgstr ""

#: Utility/Device.vala:1096 Utility/Device.vala:1158
msgid "Device name is empty!"
msgstr ""

#: Core/Main.vala:2966 Core/SnapshotRepo.vala:515
msgid "Device not found"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:85
msgid "Devices from which snapshot was created are pre-selected."
msgstr ""

#: Console/AppConsole.vala:318
msgid "Devices with Linux file systems"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:54
msgid ""
"Did you find this software useful?\n"
"\n"
"You can buy me a coffee or make a donation via PayPal to show your support. "
"Or just drop me an email and say Hi. This application is completely free and "
"will continue to remain that way. Your contributions will help in keeping "
"this project alive and improving it further.\n"
"\n"
"Feel free to send me an email if you find any issues in this application or "
"if you need any changes. Suggestions and feedback are always welcome.\n"
"\n"
"Thanks,\n"
"Tony George\n"
"(teejeetech@gmail.com)"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:459
msgid "Dir not found"
msgstr ""

#: Core/SnapshotRepo.vala:936
msgid "Directory not found"
msgstr ""

#: Core/Main.vala:1973 Gtk/RestoreSummaryBox.vala:64
msgid "Disclaimer"
msgstr ""

#: Gtk/BackupDeviceBox.vala:109
msgid "Disk"
msgstr ""

#: Core/Main.vala:206
msgid "Distribution"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:364
#, c-format
msgid "Documenters"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:389
msgid "Donate"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:74
msgid "Donate with Google Wallet"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:67
msgid "Donate with PayPal"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:372
#, c-format
msgid "Donations"
msgstr ""

#: Utility/TeeJee.Logging.vala:89
msgid "E"
msgstr ""

#: Gtk/ExcludeBox.vala:263
msgid "Editing and Re-Ordering"
msgstr ""

#: Gtk/MainWindow.vala:1105
msgid "Enable scheduled snapshots to protect your system"
msgstr ""

#: Core/Main.vala:3719 Core/Main.vala:3752
msgid "Enabled subvolume quota support"
msgstr ""

#: Utility/Device.vala:1265
msgid "Encrypted Device"
msgstr ""

#: Console/AppConsole.vala:857
#, c-format
msgid "Enter device name or number"
msgstr ""

#: Console/AppConsole.vala:654 Console/AppConsole.vala:986
#, c-format
msgid "Enter device name or number (a=Abort)"
msgstr ""

#: Utility/Device.vala:1266
#, c-format
msgid "Enter passphrase to unlock '%s'"
msgstr ""

#: Utility/GtkHelper.vala:870
msgid "Enter path or browse for directory"
msgstr ""

#: Console/AppConsole.vala:727
#, c-format
msgid "Enter snapshot number (a=Abort, p=Previous, n=Next)"
msgstr ""

#: Gtk/ExcludeBox.vala:224
msgid "Enter the pattern to exclude (Ex: *.mp3, *.bak)"
msgstr ""

#: Utility/GtkHelper.vala:18 Gtk/RestoreDeviceBox.vala:534
msgid "Error"
msgstr ""

#: Gtk/SetupWizardWindow.vala:83 Gtk/BackupWindow.vala:79
msgid "Estimate"
msgstr ""

#: Gtk/EstimateBox.vala:51
msgid "Estimating System Size..."
msgstr ""

#: Core/Main.vala:1095
msgid "Estimating system size..."
msgstr ""

#: Console/AppConsole.vala:377
msgid "Examples"
msgstr ""

#: Gtk/ExcludeAppsBox.vala:51 Gtk/RestoreExcludeBox.vala:80
msgid "Exclude Application Settings"
msgstr ""

#: Gtk/RestoreWindow.vala:91
msgid "Exclude Apps"
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:77
msgid "Exclude List"
msgstr ""

#: Gtk/ExcludeListSummaryWindow.vala:48
msgid "Exclude List Summary"
msgstr ""

#: Gtk/ExcludeBox.vala:223
msgid "Exclude Pattern"
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:55
msgid "Excluded Directories"
msgstr ""

#: Core/Main.vala:1360
msgid "Expected values: O, B, H, D, W, M"
msgstr ""

#: Utility/CronTab.vala:132
msgid "Failed to add cron job"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:191
msgid "Failed to copy file"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:313
msgid "Failed to create dir"
msgstr ""

#: Core/Main.vala:1221
msgid "Failed to create new snapshot"
msgstr ""

#: Core/Main.vala:1068
msgid "Failed to create snapshot"
msgstr ""

#: Core/Main.vala:1288
msgid "Failed to create subvolume snapshot"
msgstr ""

#: Core/SnapshotRepo.vala:977
msgid "Failed to create symlinks"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:100
msgid "Failed to delete file"
msgstr ""

#: Core/Subvolume.vala:95
msgid "Failed to delete snapshot subvolume"
msgstr ""

#: Core/SnapshotRepo.vala:1003
msgid "Failed to delete symlinks"
msgstr ""

#: Core/Subvolume.vala:109
msgid "Failed to destroy qgroup"
msgstr ""

#: Core/Main.vala:3739
msgid "Failed to enable subvolume quota"
msgstr ""

#: Core/Main.vala:3463 Core/Main.vala:3469
msgid "Failed to estimate system size"
msgstr ""

#: Utility/CronTab.vala:257
msgid "Failed to export crontab file"
msgstr ""

#: Console/AppConsole.vala:669 Console/AppConsole.vala:734
#: Console/AppConsole.vala:866 Console/AppConsole.vala:961
#: Console/AppConsole.vala:1006 Console/AppConsole.vala:1047
msgid "Failed to get input from user in 3 attempts"
msgstr ""

#: Utility/Device.vala:559
msgid "Failed to get partition list"
msgstr ""

#: Core/Main.vala:3049
msgid "Failed to get partition list."
msgstr ""

#: Utility/CronTab.vala:240
msgid "Failed to install crontab file"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:535
msgid "Failed to mount devices"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:210
msgid "Failed to move file"
msgstr ""

#: Core/Main.vala:2723
msgid "Failed to move system subvolume to snapshot directory"
msgstr ""

#: Core/Main.vala:3580
msgid "Failed to query subvolume list"
msgstr ""

#: Core/Main.vala:3645
msgid "Failed to query subvolume quota"
msgstr ""

#: Utility/CronTab.vala:50
msgid "Failed to read cron tab"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:148
msgid "Failed to read file"
msgstr ""

#: Core/SnapshotRepo.vala:923
msgid "Failed to remove"
msgstr ""

#: Utility/CronTab.vala:213
msgid "Failed to remove cron job"
msgstr ""

#: Core/Main.vala:3772
msgid "Failed to rescan subvolume quota"
msgstr ""

#: Core/Main.vala:2613
msgid "Failed to restore system subvolume"
msgstr ""

#: Core/Main.vala:1171
msgid "Failed to save exclude list"
msgstr ""

#: Utility/Device.vala:1192 Utility/Device.vala:1246 Utility/Device.vala:1271
#: Utility/Device.vala:1292 Utility/Device.vala:1312
msgid "Failed to unlock device"
msgstr ""

#: Utility/Device.vala:1543
msgid "Failed to unmount"
msgstr ""

#: Core/Main.vala:3249
msgid "Failed to unmount device!"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:175
msgid "Failed to write file"
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:105
msgid "File Pattern"
msgstr ""

#: Gtk/BackupBox.vala:76
msgid "File and directory counts:"
msgstr ""

#: Utility/TeeJee.FileSystem.vala:612 Utility/TeeJee.FileSystem.vala:661
msgid "File is missing"
msgstr ""

#: Utility/RsyncTask.vala:249 Utility/CronTab.vala:225
#: Utility/TeeJee.FileSystem.vala:205 Utility/TeeJee.FileSystem.vala:488
msgid "File not found"
msgstr ""

#: Gtk/ExcludeListSummaryWindow.vala:61
msgid ""
"Files &amp; directories matching the patterns below will be excluded. "
"Patterns starting with a + will include the item instead of excluding."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:186
msgid "Files and directories can be excluded to save disk space."
msgstr ""

#: Gtk/RestoreBox.vala:113
msgid "Files and directory counts:"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:182
msgid ""
"Files are copied when the first snapshot is created. Subsequent snapshots "
"are incremental. Unchanged files are hard-linked from the previous snapshot."
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:83
msgid "Files matching the following patterns will be excluded"
msgstr ""

#: Utility/Device.vala:1760
#, c-format
msgid "Filesystem"
msgstr ""

#: Gtk/SettingsWindow.vala:80
msgid "Filters"
msgstr ""

#: Gtk/DeleteWindow.vala:100 Gtk/SetupWizardWindow.vala:172
#: Gtk/BackupWindow.vala:94
msgid "Finish"
msgstr ""

#: Gtk/SetupWizardWindow.vala:98 Gtk/RestoreWindow.vala:106
msgid "Finished"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:103
msgid "Firefox, Chromium, Chrome, Opera, Epiphany, Midori"
msgstr ""

#: Core/SnapshotRepo.vala:621
msgid "First snapshot requires:"
msgstr ""

#: Core/Main.vala:2666
msgid "Found existing pre-restore snapshot"
msgstr ""

#: Gtk/BackupDeviceBox.vala:199
msgid "Free"
msgstr ""

#: Core/SnapshotRepo.vala:50 Core/SnapshotRepo.vala:118
msgid "Free space"
msgstr ""

#: Console/AppConsole.vala:1015
msgid "GRUB Device"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:511
msgid "GRUB device not selected"
msgstr ""

#: Console/AppConsole.vala:1020
msgid "GRUB will NOT be reinstalled"
msgstr ""

#: Core/Main.vala:2105
msgid "Generating initramfs..."
msgstr ""

#: Console/AppConsole.vala:366
msgid "Global"
msgstr ""

#: Gtk/BackupBox.vala:93 Gtk/RestoreBox.vala:129
msgid "Group"
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:136
msgid ""
"Hidden files and folders are included by default since they contain user-"
"specific configuration files."
msgstr ""

#: Gtk/DeleteWindow.vala:177
msgid "Hide"
msgstr ""

#: Console/AppConsole.vala:373
msgid "Hide rsync output"
msgstr ""

#: Gtk/DeleteWindow.vala:178
msgid "Hide this window (files will be deleted in background)"
msgstr ""

#: Gtk/ExcludeMessageWindow.vala:123
msgid "Home Directory"
msgstr ""

#: Gtk/ScheduleBox.vala:109
msgid "Hourly"
msgstr ""

#: Core/Main.vala:862
msgid "Hourly snapshot failed!"
msgstr ""

#: Core/Main.vala:843
msgid "Hourly snapshots are enabled"
msgstr ""

#: Gtk/FinishBox.vala:95
msgid ""
"If the system is unable to boot after restore, you can try restoring another "
"snapshot by installing and running Timeshift on the Ubuntu Live CD/USB."
msgstr ""

#: Core/Main.vala:1979
msgid ""
"If these terms are not acceptable to you, please do not proceed beyond this "
"point!"
msgstr ""

#: Gtk/FinishBox.vala:98
msgid ""
"In BTRFS mode, snapshots are saved on the same disk from which it is "
"created. If your system disk fails, then you will not be able to rescue your "
"system. Use RSYNC mode and save snapshots to another disk if you wish to "
"guard against disk failures."
msgstr ""

#: Gtk/ExcludeBox.vala:52
msgid "Include / Exclude Patterns"
msgstr ""

#: Gtk/ExcludeBox.vala:261
msgid "Info"
msgstr ""

#: Core/Main.vala:1802
msgid "Invalid Snapshot"
msgstr ""

#: Console/AppConsole.vala:243
#, c-format
msgid "Invalid command line arguments"
msgstr ""

#: Gtk/MainWindow.vala:813
msgid "Invalid snapshot"
msgstr ""

#: Gtk/ExcludeBox.vala:276
msgid "Items Not Selected"
msgstr ""

#: Gtk/ScheduleBox.vala:239
msgid "Keep"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:137
msgid ""
"Keep configuration files for bittorrent clients like Deluge, Transmission, "
"etc. If un-checked, previous configuration files will be restored from "
"snapshot."
msgstr ""

#: Gtk/RestoreExcludeBox.vala:110
msgid ""
"Keep configuration files for web browsers like Firefox and Chrome. If un-"
"checked, previous configuration files will be restored from snapshot"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:243
msgid "Keep on Root Device"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:228
msgid "Keep this mount path on the root filesystem"
msgstr ""

#: Gtk/SnapshotListBox.vala:466
msgid "LIVE"
msgstr ""

#: Console/AppConsole.vala:449 Console/AppConsole.vala:488
#: Utility/Device.vala:1761
#, c-format
msgid "Label"
msgstr ""

#: Core/Main.vala:825
#, c-format
msgid "Last boot snapshot is %d hours old"
msgstr ""

#: Core/Main.vala:820
msgid "Last boot snapshot is older than system start time"
msgstr ""

#: Core/Main.vala:816
msgid "Last boot snapshot not found"
msgstr ""

#: Core/Main.vala:885
#, c-format
msgid "Last daily snapshot is %d hours old"
msgstr ""

#: Core/Main.vala:880
msgid "Last daily snapshot is more than 1 day old"
msgstr ""

#: Core/Main.vala:876
msgid "Last daily snapshot not found"
msgstr ""

#: Core/Main.vala:855
#, c-format
msgid "Last hourly snapshot is %d minutes old"
msgstr ""

#: Core/Main.vala:850
msgid "Last hourly snapshot is more than 1 hour old"
msgstr ""

#: Core/Main.vala:846
msgid "Last hourly snapshot not found"
msgstr ""

#: Core/Main.vala:945
#, c-format
msgid "Last monthly snapshot is %d days old"
msgstr ""

#: Core/Main.vala:940
msgid "Last monthly snapshot is more than 1 month old"
msgstr ""

#: Core/Main.vala:936
msgid "Last monthly snapshot not found"
msgstr ""

#: Core/Main.vala:915
#, c-format
msgid "Last weekly snapshot is %d days old"
msgstr ""

#: Core/Main.vala:910
msgid "Last weekly snapshot is more than 1 week old"
msgstr ""

#: Core/Main.vala:906
msgid "Last weekly snapshot not found"
msgstr ""

#: Gtk/MainWindow.vala:1084
#, c-format
msgid "Latest snapshot"
msgstr ""

#: Core/Main.vala:1160
#, c-format
msgid "Linking from snapshot"
msgstr ""

#: Console/AppConsole.vala:344
msgid "List"
msgstr ""

#: Console/AppConsole.vala:346
msgid "List devices"
msgstr ""

#: Console/AppConsole.vala:345
msgid "List snapshots"
msgstr ""

#: Gtk/MainWindow.vala:1033
msgid "Live USB Mode (Restore Only)"
msgstr ""

#: Gtk/SettingsWindow.vala:72 Gtk/SetupWizardWindow.vala:88
#: Gtk/BackupWindow.vala:84
msgid "Location"
msgstr ""

#: Gtk/RsyncLogWindow.vala:75
msgid "Log Viewer"
msgstr ""

#: Gtk/MainWindow.vala:465
msgid "Main window closed by user"
msgstr ""

#: Gtk/SnapshotListBox.vala:299
msgid "Mark for Deletion"
msgstr ""

#: Gtk/MainWindow.vala:641
msgid "Marked for deletion"
msgstr ""

#: Core/SnapshotRepo.vala:665 Core/SnapshotRepo.vala:702
msgid "Maximum backups exceeded for backup level"
msgstr ""

#: Gtk/MainWindow.vala:214
msgid "Menu"
msgstr ""

#: Core/Main.vala:215
msgid "Missing Dependencies"
msgstr ""

#: Utility/GtkHelper.vala:272
msgid "Missing Icon"
msgstr ""

#: Core/SnapshotRepo.vala:643
#, c-format
msgid "Mode"
msgstr ""

#: Utility/Device.vala:1744
#, c-format
msgid "Model"
msgstr ""

#: Gtk/ScheduleBox.vala:58
msgid "Monthly"
msgstr ""

#: Core/Main.vala:933
msgid "Monthly snapshot are enabled"
msgstr ""

#: Core/Main.vala:952
msgid "Monthly snapshot failed!"
msgstr ""

#: Core/Main.vala:1887 Core/Main.vala:1916
msgid "Mount"
msgstr ""

#: Core/Main.vala:2730
msgid "Moved system subvolume to snapshot directory"
msgstr ""

#: Gtk/MainWindow.vala:791
msgid "Multiple snapshots selected"
msgstr ""

#: Console/AppConsole.vala:416 Gtk/RsyncLogWindow.vala:285
msgid "Name"
msgstr ""

#: Gtk/DeleteWindow.vala:160 Gtk/SetupWizardWindow.vala:163
#: Gtk/RestoreWindow.vala:170 Gtk/BackupWindow.vala:158
msgid "Next"
msgstr ""

#: Gtk/BackupBox.vala:80 Gtk/RestoreBox.vala:116
msgid "No Change"
msgstr ""

#: Gtk/DeleteWindow.vala:334 Gtk/MainWindow.vala:618
msgid "No Snapshots Selected"
msgstr ""

#: Gtk/MainWindow.vala:1111
msgid "No snapshots available"
msgstr ""

#: Console/AppConsole.vala:312 Core/SnapshotRepo.vala:852
#: Gtk/MainWindow.vala:1050
msgid "No snapshots found"
msgstr ""

#: Console/AppConsole.vala:713
msgid "No snapshots found on device"
msgstr ""

#: Gtk/MainWindow.vala:559
msgid "No snapshots on device"
msgstr ""

#: Core/SnapshotRepo.vala:619
msgid "No snapshots on this device"
msgstr ""

#: Gtk/MainWindow.vala:784
msgid "No snapshots selected"
msgstr ""

#: Gtk/MainWindow.vala:1085 Gtk/MainWindow.vala:1087
msgid "None"
msgstr ""

#: Core/SnapshotRepo.vala:637
msgid "Not Selected"
msgstr ""

#: Core/Main.vala:347
msgid "Not Supported"
msgstr ""

#: Core/SnapshotRepo.vala:583 Core/SnapshotRepo.vala:610
msgid "Not enough disk space"
msgstr ""

#: Console/AppConsole.vala:388 Gtk/FinishBox.vala:54
msgid "Notes"
msgstr ""

#: Core/Main.vala:962
msgid "Nothing to do!"
msgstr ""

#: Console/AppConsole.vala:414 Console/AppConsole.vala:443
#: Console/AppConsole.vala:482 Console/AppConsole.vala:530
msgid "Num"
msgstr ""

#: Gtk/ScheduleBox.vala:238
msgid ""
"Number of snapshots to keep.\n"
"Older snapshots will be removed once this limit is exceeded."
msgstr ""

#: Utility/Gtk/DonationWindow.vala:95 Utility/GtkHelper.vala:121
#: Gtk/ExcludeListSummaryWindow.vala:85
msgid "OK"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:173
msgid ""
"OS must be installed on a BTRFS partition with Ubuntu-type subvolume layout "
"(@ and @home subvolumes). Other file systems and subvolume layouts are not "
"supported."
msgstr ""

#: Core/Main.vala:3859
msgid "Older log files removed"
msgstr ""

#: Gtk/MainWindow.vala:1086
msgid "Oldest snapshot"
msgstr ""

#: Core/Main.vala:345 Core/Main.vala:3164 Gtk/RestoreDeviceBox.vala:525
msgid ""
"Only ubuntu-type layouts with @ and @home subvolumes are currently supported."
msgstr ""

#: Gtk/MainWindow.vala:215
msgid "Open Menu"
msgstr ""

#: Core/Main.vala:2948
msgid ""
"Option --snapshot-device should not be specified for creating snapshots in "
"BTRFS mode"
msgstr ""

#: Console/AppConsole.vala:342 Gtk/AppGtk.vala:112
msgid "Options"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:143
msgid "Other applications (next page)"
msgstr ""

#: Gtk/BackupBox.vala:92 Gtk/RestoreBox.vala:128
msgid "Owner"
msgstr ""

#: Utility/Device.vala:1756
#, c-format
msgid "Parent Device"
msgstr ""

#: Core/Main.vala:1234 Core/Main.vala:2226 Core/Main.vala:2305
#: Gtk/RsyncLogWindow.vala:121
msgid "Parsing log file..."
msgstr ""

#: Gtk/RestoreDeviceBox.vala:524
msgid "Partition has an unsupported subvolume layout."
msgstr ""

#: Core/SnapshotRepo.vala:642 Gtk/RestoreDeviceBox.vala:94
#, c-format
msgid "Path"
msgstr ""

#: Gtk/ExcludeBox.vala:153
msgid "Pattern"
msgstr ""

#: Gtk/BackupBox.vala:91 Gtk/RestoreBox.vala:127
msgid "Permissions"
msgstr ""

#: Core/Main.vala:234
msgid "Please check if you have multiple windows open."
msgstr ""

#: Core/Main.vala:2011
msgid "Please do not interrupt the restore process!"
msgstr ""

#: Core/Main.vala:320
msgid "Please install required packages and try running TimeShift again"
msgstr ""

#: Gtk/AppGtk.vala:125
msgid "Please re-run the application as admin (using 'sudo' or 'su')"
msgstr ""

#: Console/AppConsole.vala:101
msgid "Please run the application as admin (using 'sudo' or 'su')"
msgstr ""

#: Core/Main.vala:1961
msgid "Please save your work and close all applications."
msgstr ""

#: Gtk/MainWindow.vala:687
msgid "Please select a snapshot to view the log!"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:512
msgid "Please select the GRUB device"
msgstr ""

#: Core/Main.vala:230
msgid "Please wait a few minutes and try again."
msgstr ""

#: Gtk/MainWindow.vala:755
msgid "Please wait for snapshots to be deleted."
msgstr ""

#: Gtk/RsyncLogWindow.vala:185
msgid "Populating list..."
msgstr ""

#: Gtk/RsyncLogWindow.vala:131 Gtk/BackupBox.vala:107 Gtk/RestoreBox.vala:82
#: Gtk/DeleteBox.vala:65
msgid "Preparing..."
msgstr ""

#: Gtk/DeleteWindow.vala:151 Gtk/SetupWizardWindow.vala:154
#: Gtk/RestoreWindow.vala:161 Gtk/BackupWindow.vala:149
msgid "Previous"
msgstr ""

#: Gtk/AppGtk.vala:114
msgid "Print debug information"
msgstr ""

#: Core/Main.vala:3518
msgid "Query completed"
msgstr ""

#: Core/Main.vala:3501
msgid "Querying subvolume info..."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:78
msgid "RSYNC"
msgstr ""

#: Gtk/BootOptionsBox.vala:138
msgid ""
"Re-generates initramfs for all installed kernels. This is generally not "
"needed. Select this only if the restored system fails to boot."
msgstr ""

#: Console/AppConsole.vala:955
#, c-format
msgid "Re-install GRUB2 bootloader?"
msgstr ""

#: Core/Main.vala:2063
msgid "Re-installing GRUB2 bootloader..."
msgstr ""

#: Gtk/BootOptionsBox.vala:121
msgid "Re-installs the GRUB2 bootloader on the selected device."
msgstr ""

#: Gtk/RsyncLogWindow.vala:178
#, c-format
msgid "Read %'d of %'d lines..."
msgstr ""

#: Core/Main.vala:2157
msgid "Rebooting system..."
msgstr ""

#: Gtk/RestoreExcludeBox.vala:86 Gtk/RestoreExcludeBox.vala:116
#, c-format
msgid "Recommended"
msgstr ""

#: Gtk/BackupDeviceBox.vala:66 Gtk/RestoreDeviceBox.vala:71
msgid "Refresh"
msgstr ""

#: Gtk/MainWindow.vala:365
msgid "Refresh Snapshot List"
msgstr ""

#: Gtk/ExcludeBox.vala:255
msgid "Remove"
msgstr ""

#: Core/Main.vala:1409 Core/Main.vala:1420 Core/Snapshot.vala:424
#: Core/SnapshotRepo.vala:929
#, c-format
msgid "Removed"
msgstr ""

#: Utility/CronTab.vala:335
msgid "Removed cron task"
msgstr ""

#: Core/Main.vala:3312
#, c-format
msgid "Removed mount directory: '%s'"
msgstr ""

#: Core/Snapshot.vala:399 Core/Snapshot.vala:433
msgid "Removing"
msgstr ""

#: Core/SnapshotRepo.vala:785 Core/SnapshotRepo.vala:804
#: Core/SnapshotRepo.vala:822 Core/SnapshotRepo.vala:836
#, c-format
msgid "Removing snapshots"
msgstr ""

#: Console/AppConsole.vala:354 Gtk/RestoreWindow.vala:101
#: Gtk/MainWindow.vala:147 Gtk/RestoreFinishBox.vala:64
msgid "Restore"
msgstr ""

#: Gtk/RestoreWindow.vala:81
msgid "Restore Device"
msgstr ""

#: Gtk/RestoreWindow.vala:86
msgid "Restore Exclude"
msgstr ""

#: Gtk/RestoreWindow.vala:63
msgid "Restore Snapshot"
msgstr ""

#: Core/Main.vala:2547 Core/Main.vala:2625
msgid "Restore completed"
msgstr ""

#: Gtk/MainWindow.vala:148
msgid "Restore selected snapshot"
msgstr ""

#: Console/AppConsole.vala:355
msgid "Restore snapshot"
msgstr ""

#: Core/Main.vala:2620
msgid "Restored system subvolume"
msgstr ""

#: Gtk/RestoreBox.vala:71
msgid "Restoring Snapshot..."
msgstr ""

#: Gtk/FinishBox.vala:92
msgid ""
"Restoring a snapshot only replaces system files and settings. Documents and "
"other files in your home directory will not be touched. You can change this "
"by adding a filter to include these files. Any files that you include will "
"be backed up when a snapshot is created, and replaced when the snapshot is "
"restored."
msgstr ""

#: Gtk/FinishBox.vala:89
msgid ""
"Restoring a snapshot will replace system subvolumes. The current system will "
"be preserved as a new snapshot after restore. You can undo the restore by "
"restoring the new snapshot that was created."
msgstr ""

#: Core/Main.vala:2519
msgid "Restoring snapshot..."
msgstr ""

#: Utility/Device.vala:1746
#, c-format
msgid "Revision"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:450
msgid "Root device not selected"
msgstr ""

#: Gtk/AppGtk.vala:117
#, c-format
msgid "Run 'timeshift' for the command-line version of this tool"
msgstr ""

#: Core/Main.vala:166
msgid "Running"
msgstr ""

#: Core/Main.vala:1101 Core/Main.vala:1253 Core/Main.vala:1255
msgid "Saving to device"
msgstr ""

#: Gtk/SettingsWindow.vala:76 Gtk/SetupWizardWindow.vala:93
msgid "Schedule"
msgstr ""

#: Core/Main.vala:237
msgid "Scheduled snapshot in progress..."
msgstr ""

#: Core/Main.vala:962 Gtk/ScheduleBox.vala:264 Gtk/MainWindow.vala:1104
msgid "Scheduled snapshots are disabled"
msgstr ""

#: Gtk/FinishBox.vala:82
msgid "Scheduled snapshots are disabled. It's recommended to enable it."
msgstr ""

#: Gtk/ScheduleBox.vala:258
msgid "Scheduled snapshots are enabled"
msgstr ""

#: Gtk/FinishBox.vala:75
msgid ""
"Scheduled snapshots are enabled. Snapshots will be created automatically at "
"selected intervals."
msgstr ""

#: Console/AppConsole.vala:843
#, c-format
msgid "Select '%s' device (default = %s)"
msgstr ""

#: Console/AppConsole.vala:661 Core/SnapshotRepo.vala:547
msgid "Select BTRFS system disk with root subvolume (@)"
msgstr ""

#: Console/AppConsole.vala:971
msgid "Select GRUB device"
msgstr ""

#: Utility/GtkHelper.vala:880
msgid "Select Path"
msgstr ""

#: Gtk/MainWindow.vala:686
msgid "Select Snapshot"
msgstr ""

#: Gtk/ScheduleBox.vala:51
msgid "Select Snapshot Intervals"
msgstr ""

#: Gtk/BackupDeviceBox.vala:56
msgid "Select Snapshot Location"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:63
msgid "Select Snapshot Type"
msgstr ""

#: Gtk/DeleteWindow.vala:82
msgid "Select Snapshots"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:61
msgid "Select Target Device"
msgstr ""

#: Gtk/BackupDeviceBox.vala:320
#, c-format
msgid "Select a partition on this disk"
msgstr ""

#: Gtk/MainWindow.vala:792
msgid "Select a single snapshot to restore"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:479
msgid "Select another device for root file system (/)"
msgstr ""

#: Core/SnapshotRepo.vala:586 Core/SnapshotRepo.vala:613
msgid "Select another device or free up some space"
msgstr ""

#: Gtk/MainWindow.vala:553 Gtk/MainWindow.vala:560
msgid "Select another device to delete snasphots"
msgstr ""

#: Gtk/MainWindow.vala:487
msgid "Select another device?"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:82
msgid "Select applications to exclude from restore"
msgstr ""

#: Console/AppConsole.vala:644
msgid "Select backup device"
msgstr ""

#: Gtk/ExcludeBox.vala:429
msgid "Select directory"
msgstr ""

#: Gtk/ExcludeBox.vala:409
msgid "Select file(s)"
msgstr ""

#: Console/AppConsole.vala:719
msgid "Select snapshot"
msgstr ""

#: Gtk/DeleteWindow.vala:335
msgid "Select snapshots to delete"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:451
msgid "Select the device for root file system (/)"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:84
msgid "Select the devices where files will be restored."
msgstr ""

#: Gtk/ScheduleBox.vala:265
msgid "Select the intervals for creating snapshots"
msgstr ""

#: Gtk/ExcludeBox.vala:277
msgid "Select the items to be removed from the list"
msgstr ""

#: Core/SnapshotRepo.vala:508
msgid "Select the snapshot device"
msgstr ""

#: Gtk/MainWindow.vala:785
msgid "Select the snapshot to restore"
msgstr ""

#: Gtk/DeleteWindow.vala:84
msgid "Select the snapshots to be deleted"
msgstr ""

#: Gtk/MainWindow.vala:619
msgid "Select the snapshots to mark for deletion"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:80
msgid "Select the target devices where system will be cloned."
msgstr ""

#: Core/Main.vala:2976
msgid "Selected default snapshot device"
msgstr ""

#: Core/Main.vala:2853 Core/Main.vala:2857
msgid "Selected default snapshot type"
msgstr ""

#: Gtk/BackupDeviceBox.vala:301
msgid "Selected device does not have BTRFS partition"
msgstr ""

#: Gtk/BackupDeviceBox.vala:299
msgid "Selected device does not have Linux partition"
msgstr ""

#: Core/SnapshotRepo.vala:117
msgid "Selected snapshot device"
msgstr ""

#: Console/AppConsole.vala:660 Core/SnapshotRepo.vala:546
msgid "Selected snapshot device is not a system disk"
msgstr ""

#: Core/Main.vala:1803
msgid "Selected snapshot is marked for deletion"
msgstr ""

#: Gtk/MainWindow.vala:814
msgid "Selected snapshot is marked for deletion and cannot be restored"
msgstr ""

#: Core/SnapshotRepo.vala:43
msgid "Selected snapshot path"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:81
msgid "Send Email"
msgstr ""

#: Utility/Device.vala:1745
#, c-format
msgid "Serial"
msgstr ""

#: Core/Main.vala:194
msgid "Session log file"
msgstr ""

#: Console/AppConsole.vala:351
msgid "Set snapshot description"
msgstr ""

#: Gtk/SettingsWindow.vala:53 Gtk/MainWindow.vala:174 Gtk/MainWindow.vala:175
msgid "Settings"
msgstr ""

#: Gtk/MainWindow.vala:184
msgid "Settings wizard"
msgstr ""

#: Gtk/FinishBox.vala:57
msgid "Setup Complete"
msgstr ""

#: Gtk/SetupWizardWindow.vala:60
msgid "Setup Wizard"
msgstr ""

#: Console/AppConsole.vala:371
msgid "Show additional debug messages"
msgstr ""

#: Console/AppConsole.vala:374 Gtk/AppGtk.vala:115
msgid "Show all options"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:146
msgid "Show more applications to exclude on the next page"
msgstr ""

#: Console/AppConsole.vala:372
msgid "Show rsync output (default)"
msgstr ""

#: Console/AppConsole.vala:447 Console/AppConsole.vala:486
#: Utility/Device.vala:1748 Utility/Device.vala:1763
#: Gtk/BackupDeviceBox.vala:186 Gtk/RsyncLogWindow.vala:307
#: Gtk/BackupBox.vala:89 Gtk/RestoreBox.vala:125 Gtk/SnapshotListBox.vala:174
#, c-format
msgid "Size"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:171
msgid ""
"Size of BTRFS snapshots are initially zero. As system files gradually change "
"with time, data gets written to new blocks which take up disk space (copy-on-"
"write). The files in the snapshot continue to point to the original data "
"blocks."
msgstr ""

#: Console/AppConsole.vala:360
msgid "Skip GRUB2 reinstall"
msgstr ""

#: Gtk/MainWindow.vala:308
msgid "Snaps"
msgstr ""

#: Core/Main.vala:1808 Core/SnapshotRepo.vala:668 Core/SnapshotRepo.vala:706
#: Gtk/SnapshotListBox.vala:95
#, c-format
msgid "Snapshot"
msgstr ""

#: Gtk/MainWindow.vala:570
#, c-format
msgid ""
"Snapshot '%s' is being used by the system and cannot be deleted. Restart the "
"system to activate the restored snapshot."
msgstr ""

#: Gtk/BackupFinishBox.vala:60
msgid "Snapshot Created"
msgstr ""

#: Gtk/MainWindow.vala:754
msgid "Snapshot deletion in progress..."
msgstr ""

#: Core/SnapshotRepo.vala:426
#, c-format
msgid "Snapshot device"
msgstr ""

#: Core/SnapshotRepo.vala:514
msgid "Snapshot device not available"
msgstr ""

#: Core/SnapshotRepo.vala:507
msgid "Snapshot device not selected"
msgstr ""

#: Core/SnapshotRepo.vala:430
#, c-format
msgid "Snapshot location"
msgstr ""

#: Core/Main.vala:1065
msgid "Snapshot saved successfully"
msgstr ""

#: Core/Main.vala:1798
msgid "Snapshot to restore not specified!"
msgstr ""

#: Gtk/RestoreFinishBox.vala:79
msgid ""
"Snapshot was restored successfully and will become active after system is "
"restarted."
msgstr ""

#: Core/Main.vala:2629
msgid "Snapshot will become active after system is rebooted."
msgstr ""

#: Gtk/DeleteFinishBox.vala:60
msgid "Snapshot(s) Deleted"
msgstr ""

#: Gtk/DeleteWindow.vala:86
msgid "Snapshots"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:163
msgid ""
"Snapshots are created and restored instantly. Snapshot creation is an atomic "
"transaction at the file system level."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:180
msgid ""
"Snapshots are created by creating copies of system files using rsync, and "
"hard-linking unchanged files from the previous snapshot."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:161
msgid ""
"Snapshots are created using the built-in features of the BTRFS file system."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:167
msgid ""
"Snapshots are perfect, byte-for-byte copies of the system. Excluding files "
"is not supported."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:165
msgid ""
"Snapshots are restored by replacing system subvolumes. Since files are never "
"copied, deleted or overwritten, there is no risk of data loss. The existing "
"system is preserved as a new snapshot after restore."
msgstr ""

#: Gtk/SnapshotBackendBox.vala:169
msgid ""
"Snapshots are saved on the same disk from which they are created (system "
"disk). Storage on other disks is not supported. If your system disk fails "
"then the snapshots stored on it will be lost along with the system."
msgstr ""

#: Gtk/MainWindow.vala:1045
msgid "Snapshots available for restore"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:184
msgid ""
"Snapshots can be saved to any disk formatted with a Linux file system. "
"Saving snapshots to a non-system/portable disk allows the system to be "
"restored even if the system disk is damaged or re-formatted."
msgstr ""

#: Console/AppConsole.vala:275
msgid "Snapshots cannot be created in Live CD mode"
msgstr ""

#: Gtk/MainWindow.vala:1095
msgid "Snapshots will be created at selected intervals"
msgstr ""

#: Gtk/ScheduleBox.vala:259
msgid ""
"Snapshots will be created at selected intervals if snapshot disk has enough "
"space (> 1 GB)"
msgstr ""

#: Gtk/MainWindow.vala:642
msgid "Snapshots will be removed during the next scheduled run"
msgstr ""

#: Console/AppConsole.vala:367
msgid "Specify backup device (default: config)"
msgstr ""

#: Console/AppConsole.vala:359
msgid "Specify device for installing GRUB2 bootloader"
msgstr ""

#: Console/AppConsole.vala:357
msgid "Specify snapshot to restore"
msgstr ""

#: Console/AppConsole.vala:358
msgid "Specify target device"
msgstr ""

#: Core/SnapshotRepo.vala:436
#, c-format
msgid "Status"
msgstr ""

#: Utility/TeeJee.Process.vala:511
msgid "Stopped"
msgstr ""

#: Gtk/ExcludeAppsBox.vala:133 Gtk/RestoreWindow.vala:96
#: Gtk/ExcludeBox.vala:205
msgid "Summary"
msgstr ""

#: Console/AppConsole.vala:369
msgid "Switch to BTRFS mode (default: config)"
msgstr ""

#: Console/AppConsole.vala:370
msgid "Switch to RSYNC mode (default: config)"
msgstr ""

#: Core/SnapshotRepo.vala:983
msgid "Symlinks updated"
msgstr ""

#: Core/Main.vala:2139
msgid "Synching file systems..."
msgstr ""

#: Core/Main.vala:1177 Core/Main.vala:2294 Core/Main.vala:2525
msgid "Synching files with rsync..."
msgstr ""

#: Gtk/AppGtk.vala:110
msgid "Syntax"
msgstr ""

#: Utility/Device.vala:1769 Gtk/SnapshotListBox.vala:127
#, c-format
msgid "System"
msgstr ""

#: Gtk/MainWindow.vala:989
msgid "System Restore Utility for Linux"
msgstr ""

#: Core/Main.vala:2012
msgid "System will reboot after files are restored"
msgstr ""

#: Core/Main.vala:1962
msgid "System will reboot after files are restored."
msgstr ""

#: Core/Main.vala:1034 Core/Main.vala:1075
msgid "Tagged snapshot"
msgstr ""

#: Console/AppConsole.vala:417 Gtk/SnapshotListBox.vala:151
msgid "Tags"
msgstr ""

#: Core/Main.vala:1833
msgid "Target device is not mounted"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:478
msgid "Target device is same as system device"
msgstr ""

#: Core/Main.vala:1827
msgid "Target device not specified!"
msgstr ""

#: Gtk/SnapshotBackendBox.vala:117
msgid ""
"The 'btrfs' command is not available on your system. Install the 'btrfs-"
"tools' package and try again."
msgstr ""

#: Gtk/ScheduleBox.vala:149
msgid ""
"The cron service sends the output of scheduled tasks as an email to the "
"current user. Select this option to suppress the emails for cron tasks "
"created by Timeshift."
msgstr ""

#: Gtk/FinishBox.vala:105
msgid ""
"The first snapshot creates a copy of all files on your system. Subsequent "
"snapshots only store files which have changed. You can reduce the size of "
"snapshots by adding filters to exclude files which are not required. For "
"example, you can exclude your web browser cache as these files change "
"constantly and are not critical."
msgstr ""

#: Core/Main.vala:344
msgid "The system partition has an unsupported subvolume layout."
msgstr ""

#: Core/Main.vala:3163
msgid "The target partition has an unsupported subvolume layout."
msgstr ""

#: Gtk/BackupDeviceBox.vala:418
#, c-format
msgid "There are no snapshots on this device"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:340
#, c-format
msgid "Third Party Tools"
msgstr ""

#: Utility/Device.vala:1191
msgid "This device is not encrypted"
msgstr ""

#: Core/Main.vala:1978
msgid ""
"This software comes without absolutely NO warranty and the author takes no "
"responsibility for any damage arising from the use of this program."
msgstr ""

#: Gtk/MainWindow.vala:1082 Gtk/MainWindow.vala:1094
msgid "Timeshift is active"
msgstr ""

#: Gtk/BackupBox.vala:90 Gtk/RestoreBox.vala:126
msgid "Timestamp"
msgstr ""

#: Gtk/FinishBox.vala:101
msgid ""
"To guard against hard disk failures, select an external disk for the "
"snapshot location instead of the system disk."
msgstr ""

#: Console/AppConsole.vala:602
#, c-format
msgid "To restore with default options, press the ENTER key for all prompts!"
msgstr ""

#: Utility/Gtk/AboutWindow.vala:356
#, c-format
msgid "Translators"
msgstr ""

#: Console/AppConsole.vala:448 Console/AppConsole.vala:487
#: Utility/Device.vala:1759 Gtk/SettingsWindow.vala:68
#: Gtk/BackupDeviceBox.vala:174
#, c-format
msgid "Type"
msgstr ""

#: Utility/Device.vala:1758
#, c-format
msgid "UUID"
msgstr ""

#: Gtk/AppGtk.vala:97
msgid "Unknown option"
msgstr ""

#: Core/Main.vala:1016
msgid "Unknown snapshot type"
msgstr ""

#: Core/Main.vala:1359
msgid "Unknown value specified for option --tags"
msgstr ""

#: Utility/Device.vala:1202 Utility/Device.vala:1318
#, c-format
msgid "Unlocked device is mapped to '%s'"
msgstr ""

#: Utility/Device.vala:1317
msgid "Unlocked successfully"
msgstr ""

#: Utility/Device.vala:1532
msgid "Unmounting from"
msgstr ""

#: Gtk/SnapshotListBox.vala:199
msgid "Unshared"
msgstr ""

#: Core/Main.vala:3167 Gtk/RestoreDeviceBox.vala:522
msgid "Unsupported Subvolume Layout"
msgstr ""

#: Gtk/BootOptionsBox.vala:151
msgid "Update GRUB menu"
msgstr ""

#: Gtk/BootOptionsBox.vala:136
msgid "Update initramfs"
msgstr ""

#: Core/Main.vala:2469
msgid "Updated /etc/crypttab on target device"
msgstr ""

#: Core/Main.vala:2389
msgid "Updated /etc/fstab on target device"
msgstr ""

#: Gtk/BootOptionsBox.vala:153
msgid ""
"Updates the GRUB menu entries (recommended). This is safe to run and should "
"be left selected."
msgstr ""

#: Core/Main.vala:2122
msgid "Updating GRUB menu..."
msgstr ""

#: Core/Main.vala:2313
msgid "Updating bootloader configuration..."
msgstr ""

#: Utility/Device.vala:1766
#, c-format
msgid "Used"
msgstr ""

#: Utility/Device.vala:1272
msgid "User cancelled the password prompt"
msgstr ""

#: Utility/Device.vala:1743
#, c-format
msgid "Vendor"
msgstr ""

#: Gtk/SnapshotListBox.vala:313
msgid "View Log for Create"
msgstr ""

#: Gtk/SnapshotListBox.vala:320
msgid "View Log for Restore"
msgstr ""

#: Gtk/MainWindow.vala:379
msgid "View TimeShift Logs"
msgstr ""

#: Gtk/RsyncLogWindow.vala:209
msgid "View:"
msgstr ""

#: Utility/Gtk/DonationWindow.vala:88
msgid "Visit Website"
msgstr ""

#: Gtk/RestoreDeviceBox.vala:102
msgid "Volume"
msgstr ""

#: Utility/TeeJee.Logging.vala:89
msgid "W"
msgstr ""

#: Core/Main.vala:1880 Gtk/RestoreSummaryBox.vala:53
msgid "Warning"
msgstr ""

#: Gtk/RestoreExcludeBox.vala:86
msgid "Web Browsers"
msgstr ""

#: Gtk/ScheduleBox.vala:75
msgid "Weekly"
msgstr ""

#: Core/Main.vala:922
msgid "Weekly snapshot failed!"
msgstr ""

#: Core/Main.vala:903
msgid "Weekly snapshots are enabled"
msgstr ""

#: Gtk/DeleteFinishBox.vala:63 Gtk/BackupFinishBox.vala:63
msgid "With Errors"
msgstr ""

#: Gtk/MainWindow.vala:183
msgid "Wizard"
msgstr ""

#: Utility/Device.vala:1245 Utility/Device.vala:1291
msgid "Wrong password"
msgstr ""

#: Gtk/RestoreFinishBox.vala:81
msgid ""
"You can continue working on the current system. After restart, the running "
"system will be visible as a new snapshot. You can restore the new snapshot "
"to 'undo' the restore."
msgstr ""

#: Gtk/FinishBox.vala:86
msgid ""
"You can rollback your system to a previous date by restoring a snapshot."
msgstr ""

#: Gtk/RestoreDeviceBox.vala:412
msgid ""
"[Advanced Users Only] Change these settings only if the restored system "
"fails to boot."
msgstr ""

#: Console/AppConsole.vala:983
#, c-format
msgid "[ENTER = Default (%s), a = Abort]"
msgstr ""

#: Console/AppConsole.vala:854
#, c-format
msgid "[ENTER = Default (%s), r = Root device, a = Abort]"
msgstr ""

#: Utility/AppLock.vala:55
msgid "[Warning] Deleted invalid lock"
msgstr ""

#: Core/SnapshotRepo.vala:836
msgid "all"
msgstr ""

#: Core/Main.vala:1287 Core/Main.vala:2612 Core/Main.vala:3579
#: Core/Main.vala:3644 Core/Main.vala:3738 Core/Main.vala:3771
msgid "btrfs returned an error"
msgstr ""

#: Core/Main.vala:1209 Core/Snapshot.vala:415
msgid "complete"
msgstr ""

#: Utility/CronTab.vala:261
msgid "crontab file exported"
msgstr ""

#: Utility/CronTab.vala:244
msgid "crontab file installed"
msgstr ""

#: Core/SnapshotRepo.vala:822
msgid "incomplete"
msgstr ""

#: Core/SnapshotRepo.vala:804
msgid "marked for deletion"
msgstr ""

#: Core/Main.vala:1101 Core/Main.vala:1253 Core/Main.vala:1255
msgid "mounted at path"
msgstr ""

#: Core/Main.vala:1209 Core/Snapshot.vala:416
msgid "remaining"
msgstr ""

#: Core/Main.vala:1220
msgid "rsync returned an error"
msgstr ""

#: Core/SnapshotRepo.vala:668 Core/SnapshotRepo.vala:706
#: Core/SnapshotRepo.vala:785
msgid "un-tagged"
msgstr ""