File: ka.po

package info (click to toggle)
gedit-plugins 3.22.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 15,056 kB
  • ctags: 2,312
  • sloc: ansic: 9,148; python: 7,598; sh: 4,777; makefile: 544; xml: 61; awk: 4
file content (2173 lines) | stat: -rw-r--r-- 52,137 bytes parent folder | download | duplicates (3)
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
# translation of gedit.po to Georgian
# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Vladimer Sichinava <alinux@siena.linux.it>, 2006.
# Alexander Didebulidze <didebuli@in.tum.de>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: gedit\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-07 13:11+0100\n"
"PO-Revision-Date: 2006-03-18 02:43+0100\n"
"Last-Translator: Alexander Didebulidze <didebuli@in.tum.de>\n"
"Language-Team: Georgian <gnome@inet.ge>\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"

#: ../plugins/bookmarks/bookmarks.plugin.desktop.in.in.h:1
msgid "Bookmarks"
msgstr ""

#: ../plugins/bookmarks/bookmarks.plugin.desktop.in.in.h:2
msgid "Easy document navigation with bookmarks"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:197
msgid "Toggle Bookmark"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:198
msgid "Toggle bookmark status of the current line"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:200
msgid "Goto Next Bookmark"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:201
msgid "Goto the next bookmark"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:203
msgid "Goto Previous Bookmark"
msgstr ""

#: ../plugins/bookmarks/gedit-bookmarks-plugin.c:204
msgid "Goto the previous bookmark"
msgstr ""

#: ../plugins/bracketcompletion/bracketcompletion.plugin.desktop.in.in.h:1
msgid "Automatically adds closing brackets."
msgstr ""

#: ../plugins/bracketcompletion/bracketcompletion.plugin.desktop.in.in.h:2
msgid "Bracket Completion"
msgstr ""

#: ../plugins/charmap/charmap.plugin.desktop.in.in.h:1
#: ../plugins/charmap/gedit-charmap-plugin.c:337
#, fuzzy
msgid "Character Map"
msgstr "სიმბოლო"

#: ../plugins/charmap/charmap.plugin.desktop.in.in.h:2
msgid "Insert special characters just by clicking on them."
msgstr ""

#: ../plugins/codecomment/codecomment.plugin.desktop.in.in.h:1
#, fuzzy
msgid "Code comment"
msgstr "კომენტარი"

#: ../plugins/codecomment/codecomment.plugin.desktop.in.in.h:2
msgid "Comment out or uncomment a selected block of code."
msgstr ""

#: ../plugins/codecomment/codecomment.py:90
#, fuzzy
msgid "Co_mment Code"
msgstr "კომენტარი"

#: ../plugins/codecomment/codecomment.py:92
#, fuzzy
msgid "Comment the selected code"
msgstr "წაშლა"

#: ../plugins/codecomment/codecomment.py:96
msgid "U_ncomment Code"
msgstr ""

#: ../plugins/codecomment/codecomment.py:98
#, fuzzy
msgid "Uncomment the selected code"
msgstr "წაშლა"

#. ex:ts=4:et:
#: ../plugins/colorpicker/colorpicker.plugin.desktop.in.in.h:1
msgid "Color Picker"
msgstr ""

#: ../plugins/colorpicker/colorpicker.plugin.desktop.in.in.h:2
msgid "Pick a color from a dialog and insert its hexadecimal representation."
msgstr ""

#: ../plugins/colorpicker/colorpicker.py:77
#, fuzzy
msgid "Pick _Color..."
msgstr "აირჩიე ფერი"

#: ../plugins/colorpicker/colorpicker.py:78
#, fuzzy
msgid "Pick a color from a dialog"
msgstr "აირჩიე ფერი"

#: ../plugins/colorpicker/colorpicker.py:188
#, fuzzy
msgid "Pick Color"
msgstr "აირჩიე ფერი"

#: ../plugins/colorpicker/colorpicker.py:195
msgid "_Insert"
msgstr "_ჩამატება"

#. ex:ts=4:et:
#: ../plugins/commander/commander.plugin.desktop.in.in.h:1
msgid "Command line interface for advanced editing"
msgstr ""

#: ../plugins/commander/commander.plugin.desktop.in.in.h:2
#, fuzzy
msgid "Commander"
msgstr "_ბრზანება(ები):"

#. ex:set ts=8 noet:
#: ../plugins/drawspaces/drawspaces.plugin.desktop.in.in.h:1
#: ../plugins/drawspaces/org.gnome.gedit.plugins.drawspaces.gschema.xml.in.in.h:1
#, fuzzy
msgid "Draw Spaces"
msgstr "მანძილი"

#: ../plugins/drawspaces/drawspaces.plugin.desktop.in.in.h:2
msgid "Draw Spaces and Tabs"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:1
msgid "Draw leading spaces"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:2
#, fuzzy
msgid "Draw new lines"
msgstr "აბზაცი"

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:3
msgid "Draw non-breaking spaces"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:4
#, fuzzy
msgid "Draw spaces"
msgstr "ჩამატება ღარები"

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:5
msgid "Draw spaces in text"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:6
msgid "Draw tabs"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.ui.h:7
msgid "Draw trailing spaces"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.c:134
msgid "Show _White Space"
msgstr ""

#: ../plugins/drawspaces/gedit-drawspaces-plugin.c:135
#, fuzzy
msgid "Show spaces and tabs"
msgstr "ჩამატება ღარები -"

#: ../plugins/drawspaces/org.gnome.gedit.plugins.drawspaces.gschema.xml.in.in.h:2
msgid "Enabled"
msgstr "აქტიური"

#: ../plugins/drawspaces/org.gnome.gedit.plugins.drawspaces.gschema.xml.in.in.h:3
msgid "If TRUE drawing will be enabled."
msgstr ""

#: ../plugins/drawspaces/org.gnome.gedit.plugins.drawspaces.gschema.xml.in.in.h:4
msgid "The type of spaces to be drawn."
msgstr ""

#: ../plugins/joinlines/joinlines.plugin.desktop.in.in.h:1
msgid "Join several lines or split long ones"
msgstr ""

#: ../plugins/joinlines/joinlines.plugin.desktop.in.in.h:2
msgid "Join/Split Lines"
msgstr ""

#: ../plugins/joinlines/joinlines.py:56
#, fuzzy
msgid "_Join Lines"
msgstr "ხაზები"

#: ../plugins/joinlines/joinlines.py:57
#, fuzzy
msgid "Join the selected lines"
msgstr "აბზაცი"

#: ../plugins/joinlines/joinlines.py:59
msgid "_Split Lines"
msgstr ""

#: ../plugins/joinlines/joinlines.py:60
#, fuzzy
msgid "Split the selected lines"
msgstr "აბზაცი"

#. ex:ts=4:et:
#: ../plugins/multiedit/multiedit.plugin.desktop.in.in.h:1
msgid "Edit document in multiple places at once"
msgstr ""

#: ../plugins/multiedit/multiedit.plugin.desktop.in.in.h:2
msgid "Multi Edit"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:301
msgid "Added edit point..."
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:637
msgid "Column Mode..."
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:759
msgid "Removed edit point..."
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:922
msgid "Cancelled column mode..."
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1260
msgid "Enter column edit mode using selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1261
msgid "Enter <b>smart</b> column edit mode using selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1262
msgid "<b>Smart</b> column align mode using selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1263
msgid "<b>Smart</b> column align mode with additional space using selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1265
msgid "Toggle edit point"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1266
msgid "Add edit point at beginning of line/selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1267
msgid "Add edit point at end of line/selection"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1268
msgid "Align edit points"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1269
msgid "Align edit points with additional space"
msgstr ""

#: ../plugins/multiedit/multiedit/documenthelper.py:1305
#: ../plugins/multiedit/multiedit/windowhelper.py:70
msgid "Multi Edit Mode"
msgstr ""

#: ../plugins/multiedit/multiedit/windowhelper.py:70
msgid "Start multi edit mode"
msgstr ""

#. ex:ts=4:et:
#: ../plugins/textsize/textsize.plugin.desktop.in.in.h:1
msgid "Easily increase and decrease the text size"
msgstr ""

#: ../plugins/textsize/textsize.plugin.desktop.in.in.h:2
#, fuzzy
msgid "Text Size"
msgstr "ზომა"

#: ../plugins/sessionsaver/__init__.py:64
msgid "Sa_ved sessions"
msgstr ""

#: ../plugins/sessionsaver/__init__.py:65
#, fuzzy
msgid "_Save current session"
msgstr "დაიმახსოვრე შემდეგი ფაილი"

#: ../plugins/sessionsaver/__init__.py:65
#, fuzzy
msgid "Save the current document list as a new session"
msgstr "შემოწმება"

#: ../plugins/sessionsaver/__init__.py:66
msgid "_Manage saved sessions..."
msgstr ""

#: ../plugins/sessionsaver/__init__.py:66
msgid "Open the saved session manager"
msgstr ""

#: ../plugins/sessionsaver/__init__.py:106
#, python-format
msgid "Recover '%s' session"
msgstr ""

#: ../plugins/sessionsaver/dialogs.py:167
msgid "Session Name"
msgstr ""

#. ex:ts=4:et:
#: ../plugins/sessionsaver/sessionsaver.plugin.desktop.in.in.h:1
msgid "Save and restore your working sessions"
msgstr ""

#: ../plugins/sessionsaver/sessionsaver.plugin.desktop.in.in.h:2
msgid "Session Saver"
msgstr ""

#: ../plugins/sessionsaver/sessionsaver.ui.h:1
msgid "Save session"
msgstr ""

#: ../plugins/sessionsaver/sessionsaver.ui.h:2
msgid "Saved Sessions"
msgstr ""

#: ../plugins/sessionsaver/sessionsaver.ui.h:3
msgid "Session name:"
msgstr ""

#: ../plugins/smartspaces/smartspaces.plugin.desktop.in.in.h:1
msgid "Forget you're not using tabulations."
msgstr ""

#: ../plugins/smartspaces/smartspaces.plugin.desktop.in.in.h:2
#, fuzzy
msgid "Smart Spaces"
msgstr "ჩამატება ღარები"

#: ../plugins/terminal/terminal.plugin.desktop.in.in.h:1
msgid "Embed a terminal in the bottom pane."
msgstr ""

#: ../plugins/terminal/terminal.plugin.desktop.in.in.h:2
msgid "Embedded Terminal"
msgstr ""

#: ../plugins/terminal/terminal.py:307
#, fuzzy
msgid "Terminal"
msgstr "თამილური"

#: ../plugins/terminal/terminal.py:329
msgid "C_hange Directory"
msgstr ""

#: ../plugins/wordcompletion/gedit-word-completion-plugin.c:146
#, fuzzy
msgid "Document Words"
msgstr "დოკუმენტი"

#: ../plugins/wordcompletion/wordcompletion.plugin.desktop.in.in.h:1
msgid "Word Completion"
msgstr ""

#: ../plugins/wordcompletion/wordcompletion.plugin.desktop.in.in.h:2
msgid "Word completion using the completion framework"
msgstr ""

#: ../plugins/synctex/synctex.plugin.desktop.in.in.h:1
msgid "SyncTeX"
msgstr ""

#: ../plugins/synctex/synctex.plugin.desktop.in.in.h:2
msgid "Synchronize between LaTeX and PDF with gedit and evince."
msgstr ""

#: ../plugins/synctex/synctex/synctex.py:280
#: ../plugins/synctex/synctex/synctex.py:281
#, fuzzy
msgid "Forward Search"
msgstr "გადაგზავნა ბმული"

#: ../plugins/taglist/gedit-taglist-plugin.c:165
#: ../plugins/taglist/gedit-taglist-plugin-panel.c:697
#: ../plugins/taglist/gedit-taglist-plugin-panel.c:713
msgid "Tags"
msgstr ""

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:608
msgid "Select the group of tags you want to use"
msgstr ""

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:627
#, fuzzy
msgid "_Preview"
msgstr "გვერდი წინასწარ ნახვა"

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:694
msgid "Available Tag Lists"
msgstr ""

#. ex:ts=8:noet:
#: ../plugins/taglist/HTML.tags.xml.in.h:1
msgid "Abbreviated form"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:2
msgid "Abbreviation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:3
msgid "Above"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:4
#, fuzzy
msgid "Accessibility key character"
msgstr "დამხმარე საშუალებები გასაღები"

#: ../plugins/taglist/HTML.tags.xml.in.h:5
msgid "Acronym"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:6
msgid "Align"
msgstr "განთავსება"

#: ../plugins/taglist/HTML.tags.xml.in.h:7
#, fuzzy
msgid "Alignment character"
msgstr "განთავსება"

#: ../plugins/taglist/HTML.tags.xml.in.h:8
msgid "Alternative"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:9
msgid "Anchor"
msgstr "ღუზა"

#: ../plugins/taglist/HTML.tags.xml.in.h:10
#, fuzzy
msgid "Anchor URI"
msgstr "URI"

#: ../plugins/taglist/HTML.tags.xml.in.h:11
#, fuzzy
msgid "Applet class file code"
msgstr "აპლეტი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:13
#, fuzzy
msgid "Applet class file code (deprecated)"
msgstr "აპლეტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:14
msgid "Array"
msgstr "მასივი"

#: ../plugins/taglist/HTML.tags.xml.in.h:15
msgid "Associated information"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:16
#, fuzzy
msgid "Author info"
msgstr "ავტორი"

#: ../plugins/taglist/HTML.tags.xml.in.h:17
msgid "Axis related headers"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:18
msgid "Background color"
msgstr "ფონის ფერი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:20
#, fuzzy
msgid "Background color (deprecated)"
msgstr "ფონის ფერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:21
#, fuzzy
msgid "Background texture tile"
msgstr "ფონი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:23
#, fuzzy
msgid "Background texture tile (deprecated)"
msgstr "ფონი"

#: ../plugins/taglist/HTML.tags.xml.in.h:24
#, fuzzy
msgid "Base URI"
msgstr "ძირითადი URI"

#: ../plugins/taglist/HTML.tags.xml.in.h:25
#, fuzzy
msgid "Base font"
msgstr "ძირითადი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:27
msgid "Base font (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:28
msgid "Bold"
msgstr "მუქი"

#: ../plugins/taglist/HTML.tags.xml.in.h:29
msgid "Border"
msgstr "ჩარჩო"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:31
msgid "Border (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:32
msgid "Border color"
msgstr "ჩარჩო ფერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:33
msgid "Cell rowspan"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:34
msgid "Center"
msgstr "ცენტრში"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:36
msgid "Center (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:37
#, fuzzy
msgid "Character encoding of linked resource"
msgstr "სიმბოლო - რესურსი"

#: ../plugins/taglist/HTML.tags.xml.in.h:38
msgid "Checked (state)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:39
msgid "Checked state"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:40
msgid "Citation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:41
msgid "Cite reason for change"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:42
msgid "Class implementation ID"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:43
#, fuzzy
msgid "Class list"
msgstr "კლასი სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:44
#, fuzzy
msgid "Clear text flow control"
msgstr "გაწმენდა"

#: ../plugins/taglist/HTML.tags.xml.in.h:45
#, fuzzy
msgid "Code content type"
msgstr "ტიპი"

#: ../plugins/taglist/HTML.tags.xml.in.h:46
#, fuzzy
msgid "Color of selected links"
msgstr "ფერი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:48
#, fuzzy
msgid "Color of selected links (deprecated)"
msgstr "ფერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:49
msgid "Column span"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:50
#, fuzzy
msgid "Columns"
msgstr "სვეტები"

#: ../plugins/taglist/HTML.tags.xml.in.h:51
msgid "Comment"
msgstr "კომენტარი"

#: ../plugins/taglist/HTML.tags.xml.in.h:52
#, fuzzy
msgid "Computer code fragment"
msgstr "კომპიუტერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:53
#, fuzzy
msgid "Content scheme"
msgstr "შიგთავსი"

#: ../plugins/taglist/HTML.tags.xml.in.h:54
#, fuzzy
msgid "Content type"
msgstr "ტიპი"

#. The "type" attribute is deprecated for the "ol" tag only,
#. since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:57
#, fuzzy
msgid "Content type (deprecated)"
msgstr "ტიპი"

#: ../plugins/taglist/HTML.tags.xml.in.h:58
#, fuzzy
msgid "Coordinates"
msgstr "კოორდინატები"

#: ../plugins/taglist/HTML.tags.xml.in.h:59
#, fuzzy
msgid "DIV Style container"
msgstr "სტილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:60
msgid "DIV container"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:61
#, fuzzy
msgid "Date and time of change"
msgstr "თარიღი და"

#. NOTE: used in "object" tag
#: ../plugins/taglist/HTML.tags.xml.in.h:63
msgid "Declare flag"
msgstr ""

#. Translators: DEFER is an optional attribute of the <script> tag.
#. It indicates that the script is not going to generate any document
#. content. The browser can continue parsing and drawing the page.
#: ../plugins/taglist/HTML.tags.xml.in.h:67
#, fuzzy
msgid "Defer attribute"
msgstr "ატრიბუტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:68
msgid "Definition description"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:69
msgid "Definition list"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:70
#, fuzzy
msgid "Definition term"
msgstr "გაქნსაზღვრება ვადა"

#: ../plugins/taglist/HTML.tags.xml.in.h:71
#, fuzzy
msgid "Deleted text"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:72
msgid "Direction"
msgstr "მიმართულება"

#: ../plugins/taglist/HTML.tags.xml.in.h:73
msgid "Directionality"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:75
msgid "Directionality (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:76
#, fuzzy
msgid "Directory list"
msgstr "დირექტორიების სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:77
msgid "Disabled"
msgstr "გამორთული"

#: ../plugins/taglist/HTML.tags.xml.in.h:78
#, fuzzy
msgid "Document base"
msgstr "დოკუმენტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:79
#, fuzzy
msgid "Document body"
msgstr "დოკუმენტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:80
#, fuzzy
msgid "Document head"
msgstr "დოკუმენტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:81
msgid "Document title"
msgstr "დოკუმენტის სათაური"

#: ../plugins/taglist/HTML.tags.xml.in.h:82
msgid "Document type"
msgstr "დოკუმენტის ტიპი"

#: ../plugins/taglist/HTML.tags.xml.in.h:83
msgid "Element ID"
msgstr "ელემენტის ID"

#: ../plugins/taglist/HTML.tags.xml.in.h:84
msgid "Embedded object"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:85
#: ../plugins/taglist/Latex.tags.xml.in.h:9
msgid "Emphasis"
msgstr "აქცენტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:86
msgid "Encode type"
msgstr "კოდირების ტიპი"

#: ../plugins/taglist/HTML.tags.xml.in.h:87
msgid "Figure"
msgstr "ფიგურა"

#: ../plugins/taglist/HTML.tags.xml.in.h:88
#, fuzzy
msgid "Font face"
msgstr "შრიფტი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:90
msgid "Font face (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:91
#, fuzzy
msgid "For label"
msgstr "-თვის წარწერა"

#: ../plugins/taglist/HTML.tags.xml.in.h:92
#, fuzzy
msgid "Forced line break"
msgstr "ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:93
msgid "Form"
msgstr "ფორმა"

#: ../plugins/taglist/HTML.tags.xml.in.h:94
#, fuzzy
msgid "Form action handler"
msgstr "ფორმა მოქმედება"

#: ../plugins/taglist/HTML.tags.xml.in.h:95
#, fuzzy
msgid "Form control group"
msgstr "ჯგუფი"

#: ../plugins/taglist/HTML.tags.xml.in.h:96
#, fuzzy
msgid "Form field label text"
msgstr "ფორმა ველი წარწერა ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:97
#, fuzzy
msgid "Form input"
msgstr "ფორმა"

#: ../plugins/taglist/HTML.tags.xml.in.h:98
#, fuzzy
msgid "Form input type"
msgstr "ტიპი"

#: ../plugins/taglist/HTML.tags.xml.in.h:99
#, fuzzy
msgid "Form method"
msgstr "ფორმა"

#: ../plugins/taglist/HTML.tags.xml.in.h:100
#, fuzzy
msgid "Forward link"
msgstr "გადაგზავნა ბმული"

#: ../plugins/taglist/HTML.tags.xml.in.h:101
#, fuzzy
msgid "Frame"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:102
#, fuzzy
msgid "Frame border"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:103
#, fuzzy
msgid "Frame render parts"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:104
#, fuzzy
msgid "Frame source"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:105
#, fuzzy
msgid "Frame spacing"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:106
#, fuzzy
msgid "Frame target"
msgstr "ბლოკი"

#: ../plugins/taglist/HTML.tags.xml.in.h:107
msgid "Frameborder"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:108
msgid "Frameset"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:109
#, fuzzy
msgid "Frameset columns"
msgstr "სვეტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:110
#, fuzzy
msgid "Frameset rows"
msgstr "ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:111
msgid "Framespacing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:112
#, fuzzy
msgid "Generic embedded object"
msgstr "ობიექტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:113
msgid "Generic metainformation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:114
msgid "Generic span"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:115
msgid "HREF URI"
msgstr "HREF URI"

#: ../plugins/taglist/HTML.tags.xml.in.h:116
#, fuzzy
msgid "HTML root element"
msgstr "HTML"

#: ../plugins/taglist/HTML.tags.xml.in.h:117
msgid "HTML version"
msgstr "HTML ვერსია"

#: ../plugins/taglist/HTML.tags.xml.in.h:118
#, fuzzy
msgid "HTML — Special Characters"
msgstr "HTML - სპეციალური სიმბოლოები"

#: ../plugins/taglist/HTML.tags.xml.in.h:119
#, fuzzy
msgid "HTML — Tags"
msgstr "HTML"

#: ../plugins/taglist/HTML.tags.xml.in.h:120
#, fuzzy
msgid "HTTP header name"
msgstr "HTTP"

#: ../plugins/taglist/HTML.tags.xml.in.h:121
#, fuzzy
msgid "Header cell IDs"
msgstr "ცხრილი თავსართი"

#: ../plugins/taglist/HTML.tags.xml.in.h:122
msgid "Heading"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:123
msgid "Heading 1"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:124
msgid "Heading 2"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:125
msgid "Heading 3"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:126
msgid "Heading 4"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:127
msgid "Heading 5"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:128
msgid "Heading 6"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:129
msgid "Height"
msgstr "სიმაღლე"

#: ../plugins/taglist/HTML.tags.xml.in.h:130
#, fuzzy
msgid "Horizontal rule"
msgstr "ჰორიზონტალური"

#: ../plugins/taglist/HTML.tags.xml.in.h:131
#, fuzzy
msgid "Horizontal space"
msgstr "ჰორიზონტალური"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:133
#, fuzzy
msgid "Horizontal space (deprecated)"
msgstr "ჰორიზონტალური"

#: ../plugins/taglist/HTML.tags.xml.in.h:134
msgid "I18N BiDi override"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:135
msgid "Image"
msgstr "გამოსახულება"

#: ../plugins/taglist/HTML.tags.xml.in.h:136
#, fuzzy
msgid "Image map"
msgstr "სურათი"

#: ../plugins/taglist/HTML.tags.xml.in.h:137
#, fuzzy
msgid "Image map area"
msgstr "სურათი"

#: ../plugins/taglist/HTML.tags.xml.in.h:138
#, fuzzy
msgid "Image map name"
msgstr "სურათი"

#: ../plugins/taglist/HTML.tags.xml.in.h:139
#, fuzzy
msgid "Image source"
msgstr "სურათი"

#: ../plugins/taglist/HTML.tags.xml.in.h:140
#, fuzzy
msgid "Inline frame"
msgstr "ჩარჩო"

#: ../plugins/taglist/HTML.tags.xml.in.h:141
msgid "Inline layer"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:142
#, fuzzy
msgid "Inserted text"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:143
#, fuzzy
msgid "Instance definition"
msgstr "Instance"

#: ../plugins/taglist/HTML.tags.xml.in.h:144
#, fuzzy
msgid "Italic text"
msgstr "დახრილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:145
msgid "Java applet"
msgstr "Java·applet"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:147
#, fuzzy
msgid "Java applet (deprecated)"
msgstr "Java·applet"

#: ../plugins/taglist/HTML.tags.xml.in.h:148
msgid "Label"
msgstr "სათაური"

#: ../plugins/taglist/HTML.tags.xml.in.h:149
#, fuzzy
msgid "Language code"
msgstr "ენა"

#: ../plugins/taglist/HTML.tags.xml.in.h:150
#, fuzzy
msgid "Large text style"
msgstr "დიდი"

#: ../plugins/taglist/HTML.tags.xml.in.h:151
msgid "Layer"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:152
#, fuzzy
msgid "Link color"
msgstr "ბმულის ფერი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:154
#, fuzzy
msgid "Link color (deprecated)"
msgstr "ბმულის ფერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:155
#, fuzzy
msgid "List item"
msgstr "სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:156
#, fuzzy
msgid "List of MIME types for file upload"
msgstr "სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:157
#, fuzzy
msgid "List of supported character sets"
msgstr "სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:158
msgid "Listing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:159
#, fuzzy
msgid "Local change to font"
msgstr "ლოკალური -სკენ"

#: ../plugins/taglist/HTML.tags.xml.in.h:160
#, fuzzy
msgid "Long description link"
msgstr "აღწერა ბმული"

#: ../plugins/taglist/HTML.tags.xml.in.h:161
#, fuzzy
msgid "Long quotation"
msgstr "გრძლად"

#: ../plugins/taglist/HTML.tags.xml.in.h:162
#, fuzzy
msgid "Mail link"
msgstr "ბმული"

#. Supported in XHTML 1.0 Frameset DTD only.
#: ../plugins/taglist/HTML.tags.xml.in.h:164
#, fuzzy
msgid "Margin pixel height"
msgstr "ველი სიმაღლე"

#. Supported in XHTML 1.0 Frameset DTD only.
#: ../plugins/taglist/HTML.tags.xml.in.h:166
#, fuzzy
msgid "Margin pixel width"
msgstr "ველი სიგანე"

#: ../plugins/taglist/HTML.tags.xml.in.h:167
msgid "Marquee"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:168
#, fuzzy
msgid "Maximum length of text field"
msgstr "სიგრძე - ტექსტი ველი"

#. Here I take some liberties: There's no mandatory attributes,
#. but those are most common, and will likely be used.
#: ../plugins/taglist/HTML.tags.xml.in.h:171
#, fuzzy
msgid "Media-independent link"
msgstr "ბმული"

#: ../plugins/taglist/HTML.tags.xml.in.h:172
#, fuzzy
msgid "Menu list"
msgstr "მენიუ"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:174
msgid "Menu list (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:175
#, fuzzy
msgid "Multi-line text field"
msgstr "ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:176
msgid "Multicolumn"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:177
msgid "Multiple"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:178
msgid "Name"
msgstr "სახელი"

#: ../plugins/taglist/HTML.tags.xml.in.h:179
msgid "Named property value"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:180
msgid "Next ID"
msgstr "შემდეგი ID"

#: ../plugins/taglist/HTML.tags.xml.in.h:181
msgid "No URI"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:182
msgid "No embedded objects"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:183
#, fuzzy
msgid "No frames"
msgstr "არა კადრები"

#: ../plugins/taglist/HTML.tags.xml.in.h:184
#, fuzzy
msgid "No layers"
msgstr "არა"

#: ../plugins/taglist/HTML.tags.xml.in.h:185
#, fuzzy
msgid "No line break"
msgstr "არა ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:186
#, fuzzy
msgid "No resize"
msgstr "არა"

#: ../plugins/taglist/HTML.tags.xml.in.h:187
#, fuzzy
msgid "No script"
msgstr "არა"

#: ../plugins/taglist/HTML.tags.xml.in.h:188
#, fuzzy
msgid "No shade"
msgstr "არა"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:190
msgid "No shade (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:191
#, fuzzy
msgid "No word wrap"
msgstr "არა"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:193
#, fuzzy
msgid "No word wrap (deprecated)"
msgstr "არა"

#: ../plugins/taglist/HTML.tags.xml.in.h:194
msgid "Non-breaking space"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:195
msgid "Note"
msgstr "შენიშვნა"

#: ../plugins/taglist/HTML.tags.xml.in.h:196
#, fuzzy
msgid "Object applet file"
msgstr "ობიექტი ფაილი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:198
#, fuzzy
msgid "Object applet file (deprecated)"
msgstr "ობიექტი ფაილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:199
#, fuzzy
msgid "Object data reference"
msgstr "ობიექტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:200
#, fuzzy
msgid "Offset for alignment character"
msgstr "წანაცვლება"

#: ../plugins/taglist/HTML.tags.xml.in.h:201
msgid "OnBlur event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:202
msgid "OnChange event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:203
msgid "OnClick event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:204
msgid "OnDblClick event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:205
msgid "OnFocus event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:206
msgid "OnKeyDown event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:207
msgid "OnKeyPress event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:208
msgid "OnKeyUp event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:209
msgid "OnLoad event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:210
msgid "OnMouseDown event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:211
msgid "OnMouseMove event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:212
msgid "OnMouseOut event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:213
msgid "OnMouseOver event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:214
msgid "OnMouseUp event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:215
msgid "OnReset event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:216
msgid "OnSelect event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:217
msgid "OnSubmit event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:218
msgid "OnUnload event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:219
#, fuzzy
msgid "Option group"
msgstr "პარამეტრი ჯგუფი"

#: ../plugins/taglist/HTML.tags.xml.in.h:220
#, fuzzy
msgid "Option selector"
msgstr "პარამეტრი"

#: ../plugins/taglist/HTML.tags.xml.in.h:221
#, fuzzy
msgid "Ordered list"
msgstr "დახარისხებული სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:222
#, fuzzy
msgid "Output media"
msgstr "გამონატანი"

#: ../plugins/taglist/HTML.tags.xml.in.h:223
#, fuzzy
msgid "Paragraph"
msgstr "აბზაცი"

#: ../plugins/taglist/HTML.tags.xml.in.h:224
#, fuzzy
msgid "Paragraph class"
msgstr "აბზაცი"

#: ../plugins/taglist/HTML.tags.xml.in.h:225
#, fuzzy
msgid "Paragraph style"
msgstr "აბზაცი"

#: ../plugins/taglist/HTML.tags.xml.in.h:226
msgid "Preformatted listing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:227
#, fuzzy
msgid "Preformatted text"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:228
msgid "Profile metainfo dictionary"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:229
#, fuzzy
msgid "Prompt message"
msgstr "მოთხოვნა"

#: ../plugins/taglist/HTML.tags.xml.in.h:230
msgid "Push button"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:231
msgid "Quote"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:232
msgid "Range"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:233
#, fuzzy
msgid "ReadOnly text and password"
msgstr "და"

#: ../plugins/taglist/HTML.tags.xml.in.h:234
msgid "Reduced spacing"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:236
msgid "Reduced spacing (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:237
#, fuzzy
msgid "Reverse link"
msgstr "ბმული"

#: ../plugins/taglist/HTML.tags.xml.in.h:238
msgid "Root"
msgstr "Root"

#: ../plugins/taglist/HTML.tags.xml.in.h:239
msgid "Rows"
msgstr "მწკრივები"

#: ../plugins/taglist/HTML.tags.xml.in.h:240
#, fuzzy
msgid "Rulings between rows and columns"
msgstr "ხაზი და სვეტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:241
#, fuzzy
msgid "Sample program output, scripts"
msgstr "პროგრამა"

#: ../plugins/taglist/HTML.tags.xml.in.h:242
#, fuzzy
msgid "Scope covered by header cells"
msgstr "დიაპაზონი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:244
#, fuzzy
msgid "Script language name"
msgstr "სკრიპტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:245
#, fuzzy
msgid "Script statements"
msgstr "სკრიპტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:246
msgid "Scrollbar"
msgstr "სასრიალო"

#: ../plugins/taglist/HTML.tags.xml.in.h:247
#, fuzzy
msgid "Selectable option"
msgstr "მონიშვნადი"

#: ../plugins/taglist/HTML.tags.xml.in.h:248
msgid "Selected"
msgstr "მონიშნული"

#: ../plugins/taglist/HTML.tags.xml.in.h:249
#, fuzzy
msgid "Server-side image map"
msgstr "სერვერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:250
msgid "Shape"
msgstr "ფორმა"

#: ../plugins/taglist/HTML.tags.xml.in.h:251
#, fuzzy
msgid "Short inline quotation"
msgstr "მოკლედ"

#: ../plugins/taglist/HTML.tags.xml.in.h:252
#, fuzzy
msgid "Single line prompt"
msgstr "ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:253
msgid "Size"
msgstr "ზომა"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:255
msgid "Size (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:256
#, fuzzy
msgid "Small text style"
msgstr "პატარა"

#: ../plugins/taglist/HTML.tags.xml.in.h:257
#, fuzzy
msgid "Soft line break"
msgstr "ხაზი"

#: ../plugins/taglist/HTML.tags.xml.in.h:258
msgid "Sound"
msgstr "ხმა"

#: ../plugins/taglist/HTML.tags.xml.in.h:259
msgid "Source"
msgstr "წყარო"

#: ../plugins/taglist/HTML.tags.xml.in.h:260
#, fuzzy
msgid "Space-separated archive list"
msgstr "კოსმოსი სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:261
#, fuzzy
msgid "Spacer"
msgstr "ღარი"

#: ../plugins/taglist/HTML.tags.xml.in.h:262
#, fuzzy
msgid "Spacing between cells"
msgstr "ინტერვალი"

#: ../plugins/taglist/HTML.tags.xml.in.h:263
#, fuzzy
msgid "Spacing within cells"
msgstr "ინტერვალი"

#: ../plugins/taglist/HTML.tags.xml.in.h:264
#, fuzzy
msgid "Span"
msgstr "განაწილება"

#: ../plugins/taglist/HTML.tags.xml.in.h:265
#, fuzzy
msgid "Square root"
msgstr "კვადრატული ფესვი"

#: ../plugins/taglist/HTML.tags.xml.in.h:266
#, fuzzy
msgid "Standby load message"
msgstr "მზადყოფნაში"

#: ../plugins/taglist/HTML.tags.xml.in.h:267
#, fuzzy
msgid "Starting sequence number"
msgstr "ვრთავ რიცხვი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:269
#, fuzzy
msgid "Starting sequence number (deprecated)"
msgstr "ვრთავ რიცხვი"

#: ../plugins/taglist/HTML.tags.xml.in.h:270
#, fuzzy
msgid "Strike-through text"
msgstr "ტექსტი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:272
#, fuzzy
msgid "Strike-through text (deprecated)"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:273
#, fuzzy
msgid "Strike-through text style"
msgstr "ტექსტი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:275
#, fuzzy
msgid "Strike-through text style (deprecated)"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:276
msgid "Strong emphasis"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:277
#, fuzzy
msgid "Style info"
msgstr "სტილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:278
#, fuzzy
msgid "Subscript"
msgstr "ქვედა ინდექსი"

#: ../plugins/taglist/HTML.tags.xml.in.h:279
#, fuzzy
msgid "Superscript"
msgstr "ზედა ინდექსი"

#: ../plugins/taglist/HTML.tags.xml.in.h:280
#, fuzzy
msgid "Tab order position"
msgstr "ჩანართი"

#: ../plugins/taglist/HTML.tags.xml.in.h:281
msgid "Table"
msgstr "ცხრილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:282
#, fuzzy
msgid "Table body"
msgstr "ცხრილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:283
#, fuzzy
msgid "Table caption"
msgstr "ცხრილი პროგრამა"

#: ../plugins/taglist/HTML.tags.xml.in.h:284
#, fuzzy
msgid "Table column group properties"
msgstr "ჯგუფი"

#: ../plugins/taglist/HTML.tags.xml.in.h:285
#, fuzzy
msgid "Table column properties"
msgstr "ცხრილი პარამეტრები"

#: ../plugins/taglist/HTML.tags.xml.in.h:286
#, fuzzy
msgid "Table data cell"
msgstr "ცხრილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:287
#, fuzzy
msgid "Table footer"
msgstr "ცხრილი ქვესართი"

#: ../plugins/taglist/HTML.tags.xml.in.h:288
#, fuzzy
msgid "Table header"
msgstr "ცხრილი თავსართი"

#: ../plugins/taglist/HTML.tags.xml.in.h:289
#, fuzzy
msgid "Table header cell"
msgstr "ცხრილი თავსართი"

#: ../plugins/taglist/HTML.tags.xml.in.h:290
#, fuzzy
msgid "Table row"
msgstr "ცხრილი რიგი"

#: ../plugins/taglist/HTML.tags.xml.in.h:291
#, fuzzy
msgid "Table summary"
msgstr "ცხრილი"

#: ../plugins/taglist/HTML.tags.xml.in.h:292
#, fuzzy
msgid "Target — Blank"
msgstr "სუფთა ფურცელი"

#: ../plugins/taglist/HTML.tags.xml.in.h:293
#, fuzzy
msgid "Target — Parent"
msgstr "სუფთა ფურცელი"

#: ../plugins/taglist/HTML.tags.xml.in.h:294
#, fuzzy
msgid "Target — Self"
msgstr "მხოლოდ"

#: ../plugins/taglist/HTML.tags.xml.in.h:295
#, fuzzy
msgid "Target — Top"
msgstr "ზემოთ"

#: ../plugins/taglist/HTML.tags.xml.in.h:296
#, fuzzy
msgid "Teletype or monospace text style"
msgstr "ან მონოსიგანის ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:297
msgid "Text"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:298
msgid "Text color"
msgstr "ტექსტის ფერი"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:300
#, fuzzy
msgid "Text color (deprecated)"
msgstr "ტექსტის ფერი"

#: ../plugins/taglist/HTML.tags.xml.in.h:301
#, fuzzy
msgid "Text entered by user"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:302
msgid "Title"
msgstr "სათაური"

#: ../plugins/taglist/HTML.tags.xml.in.h:303
#, fuzzy
msgid "Top margin in pixels"
msgstr "პიქსელი"

#: ../plugins/taglist/HTML.tags.xml.in.h:304
msgid "URL"
msgstr "URL"

#: ../plugins/taglist/HTML.tags.xml.in.h:305
#, fuzzy
msgid "Underlined text style"
msgstr "ტექსტი"

#: ../plugins/taglist/HTML.tags.xml.in.h:306
#, fuzzy
msgid "Unordered list"
msgstr "დაუხარისხებელი სია"

#: ../plugins/taglist/HTML.tags.xml.in.h:307
#, fuzzy
msgid "Use image map"
msgstr "გამოყენება ნახატი"

#: ../plugins/taglist/HTML.tags.xml.in.h:308
msgid "Value"
msgstr "მნიშვნელობა"

#: ../plugins/taglist/HTML.tags.xml.in.h:309
#, fuzzy
msgid "Value interpretation"
msgstr "მნიშვნელობა"

#: ../plugins/taglist/HTML.tags.xml.in.h:310
#, fuzzy
msgid "Variable or program argument"
msgstr "პროგრამა"

#: ../plugins/taglist/HTML.tags.xml.in.h:311
#, fuzzy
msgid "Vertical cell alignment"
msgstr "ვერტიკალური"

#: ../plugins/taglist/HTML.tags.xml.in.h:312
#, fuzzy
msgid "Vertical space"
msgstr "ვერტიკალური"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:314
#, fuzzy
msgid "Vertical space (deprecated)"
msgstr "ვერტიკალური"

#: ../plugins/taglist/HTML.tags.xml.in.h:315
#, fuzzy
msgid "Visited link color"
msgstr "ბმული"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:317
#, fuzzy
msgid "Visited link color (deprecated)"
msgstr "ბმული"

#: ../plugins/taglist/HTML.tags.xml.in.h:318
msgid "Width"
msgstr "სიგანე"

#: ../plugins/taglist/HTML.tags.xml.in.h:319
#, fuzzy
msgid "XHTML 1.0 — Tags"
msgstr "HTML"

#: ../plugins/taglist/Latex.tags.xml.in.h:1
msgid "Bibliography (cite)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:2
msgid "Bibliography (item)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:3
msgid "Bibliography (shortcite)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:4
msgid "Bibliography (thebibliography)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:5
msgid "Brackets ()"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:6
msgid "Brackets <>"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:7
msgid "Brackets []"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:8
msgid "Brackets {}"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:10
#, fuzzy
msgid "File input"
msgstr "ფაილი"

#: ../plugins/taglist/Latex.tags.xml.in.h:11
msgid "Footnote"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:12
#, fuzzy
msgid "Function cosine"
msgstr "ფუნქცია"

#: ../plugins/taglist/Latex.tags.xml.in.h:13
msgid "Function e^"
msgstr "ფუნქცია e^"

#: ../plugins/taglist/Latex.tags.xml.in.h:14
msgid "Function exp"
msgstr "ფუნქცია exp"

#: ../plugins/taglist/Latex.tags.xml.in.h:15
msgid "Function log"
msgstr "ფუნქცია log"

#: ../plugins/taglist/Latex.tags.xml.in.h:16
msgid "Function log10"
msgstr "ფუნქცია log10"

#: ../plugins/taglist/Latex.tags.xml.in.h:17
#, fuzzy
msgid "Function sine"
msgstr "ფუნქცია"

#: ../plugins/taglist/Latex.tags.xml.in.h:18
msgid "Greek alpha"
msgstr "ბერძნული ალფა"

#: ../plugins/taglist/Latex.tags.xml.in.h:19
msgid "Greek beta"
msgstr "ბერძნული ბეტა"

#: ../plugins/taglist/Latex.tags.xml.in.h:20
msgid "Greek epsilon"
msgstr "ბერძნული ეფსილიონი"

#: ../plugins/taglist/Latex.tags.xml.in.h:21
msgid "Greek gamma"
msgstr "ბერძნული გამმა"

#: ../plugins/taglist/Latex.tags.xml.in.h:22
msgid "Greek lambda"
msgstr "ბერძნული ლამბდა"

#: ../plugins/taglist/Latex.tags.xml.in.h:23
msgid "Greek rho"
msgstr "ბერძნული რო"

#: ../plugins/taglist/Latex.tags.xml.in.h:24
msgid "Greek tau"
msgstr "ბერძნული ტაუ"

#: ../plugins/taglist/Latex.tags.xml.in.h:25
#, fuzzy
msgid "Header 0 (chapter)"
msgstr "ზედა კოლონტიტული თავი"

#: ../plugins/taglist/Latex.tags.xml.in.h:26
#, fuzzy
msgid "Header 0 (chapter*)"
msgstr "ზედა კოლონტიტული თავი"

#: ../plugins/taglist/Latex.tags.xml.in.h:27
#, fuzzy
msgid "Header 1 (section)"
msgstr "ზედა კოლონტიტული სექცია"

#: ../plugins/taglist/Latex.tags.xml.in.h:28
#, fuzzy
msgid "Header 1 (section*)"
msgstr "ზედა კოლონტიტული სექცია"

#: ../plugins/taglist/Latex.tags.xml.in.h:29
#, fuzzy
msgid "Header 2 (subsection)"
msgstr "ზედა კოლონტიტული"

#: ../plugins/taglist/Latex.tags.xml.in.h:30
#, fuzzy
msgid "Header 2 (subsection*)"
msgstr "ზედა კოლონტიტული"

#: ../plugins/taglist/Latex.tags.xml.in.h:31
#, fuzzy
msgid "Header 3 (subsubsection)"
msgstr "ზედა კოლონტიტული"

#: ../plugins/taglist/Latex.tags.xml.in.h:32
#, fuzzy
msgid "Header 3 (subsubsection*)"
msgstr "ზედა კოლონტიტული"

#: ../plugins/taglist/Latex.tags.xml.in.h:33
#, fuzzy
msgid "Header 4 (paragraph)"
msgstr "ზედა კოლონტიტული პარაგრაფი"

#: ../plugins/taglist/Latex.tags.xml.in.h:34
#, fuzzy
msgid "Header appendix"
msgstr "ზედა კოლონტიტული"

#: ../plugins/taglist/Latex.tags.xml.in.h:35
msgid "Item"
msgstr "ელემენტი"

#: ../plugins/taglist/Latex.tags.xml.in.h:36
#, fuzzy
msgid "Item with label"
msgstr "ელემენტი წარწერა"

#: ../plugins/taglist/Latex.tags.xml.in.h:37
msgid "Latex — Tags"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:38
#, fuzzy
msgid "List description"
msgstr "სია აღწერა"

#: ../plugins/taglist/Latex.tags.xml.in.h:39
#, fuzzy
msgid "List enumerate"
msgstr "სია"

#: ../plugins/taglist/Latex.tags.xml.in.h:40
#, fuzzy
msgid "List itemize"
msgstr "სია"

#: ../plugins/taglist/Latex.tags.xml.in.h:41
msgid "Maths (display)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:42
msgid "Maths (inline)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:43
#, fuzzy
msgid "Operator fraction"
msgstr "ოპერატორი"

#: ../plugins/taglist/Latex.tags.xml.in.h:44
#, fuzzy
msgid "Operator integral (display)"
msgstr "ოპერატორი"

#: ../plugins/taglist/Latex.tags.xml.in.h:45
#, fuzzy
msgid "Operator integral (inline)"
msgstr "ოპერატორი"

#: ../plugins/taglist/Latex.tags.xml.in.h:46
#, fuzzy
msgid "Operator sum (display)"
msgstr "ოპერატორი"

#: ../plugins/taglist/Latex.tags.xml.in.h:47
#, fuzzy
msgid "Operator sum (inline)"
msgstr "ოპერატორი"

#: ../plugins/taglist/Latex.tags.xml.in.h:48
#, fuzzy
msgid "Reference label"
msgstr "მითითება წარწერა"

#: ../plugins/taglist/Latex.tags.xml.in.h:49
#, fuzzy
msgid "Reference ref"
msgstr "მითითება"

#: ../plugins/taglist/Latex.tags.xml.in.h:50
msgid "Symbol <<"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:51
msgid "Symbol <="
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:52
msgid "Symbol >="
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:53
msgid "Symbol >>"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:54
#, fuzzy
msgid "Symbol and"
msgstr "და"

#: ../plugins/taglist/Latex.tags.xml.in.h:55
msgid "Symbol const"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:56
msgid "Symbol d-by-dt"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:57
msgid "Symbol d-by-dt-partial"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:58
msgid "Symbol d2-by-dt2-partial"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:59
msgid "Symbol dagger"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:60
msgid "Symbol em-dash ---"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:61
#, fuzzy
msgid "Symbol en-dash --"
msgstr "და"

#: ../plugins/taglist/Latex.tags.xml.in.h:62
msgid "Symbol equiv"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:63
#, fuzzy
msgid "Symbol infinity"
msgstr "უსასრულობა"

#: ../plugins/taglist/Latex.tags.xml.in.h:64
msgid "Symbol mathspace ,"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:65
msgid "Symbol mathspace ."
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:66
msgid "Symbol mathspace _"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:67
msgid "Symbol mathspace __"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:68
msgid "Symbol simeq"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:69
#, fuzzy
msgid "Symbol star"
msgstr "ვარსკვლავი"

#: ../plugins/taglist/Latex.tags.xml.in.h:70
#, fuzzy
msgid "Typeface bold"
msgstr "მუქი"

#: ../plugins/taglist/Latex.tags.xml.in.h:71
#, fuzzy
msgid "Typeface italic"
msgstr "დახრილი"

#: ../plugins/taglist/Latex.tags.xml.in.h:72
msgid "Typeface slanted"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:73
#, fuzzy
msgid "Typeface type"
msgstr "ტიპი"

#: ../plugins/taglist/Latex.tags.xml.in.h:74
#, fuzzy
msgid "Unbreakable text"
msgstr "ტექსტი"

#: ../plugins/taglist/taglist.plugin.desktop.in.in.h:1
#, fuzzy
msgid ""
"Provides a method to easily insert commonly used tags/strings into a "
"document without having to type them."
msgstr "a -სკენ a -სკენ ტიპი."

#: ../plugins/taglist/taglist.plugin.desktop.in.in.h:2
#, fuzzy
msgid "Tag list"
msgstr "ჭდე სია"

#: ../plugins/taglist/XSLT.tags.xml.in.h:1
#, fuzzy
msgid "XSLT — Axes"
msgstr "ღერძები"

#: ../plugins/taglist/XSLT.tags.xml.in.h:2
msgid "XSLT — Elements"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:3
#, fuzzy
msgid "XSLT — Functions"
msgstr "ფუნქციები"

#: ../plugins/taglist/XSLT.tags.xml.in.h:4
msgid "ancestor"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:5
msgid "ancestor-or-self"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:6
msgid "attribute"
msgstr "ატრიბუტი"

#: ../plugins/taglist/XSLT.tags.xml.in.h:7
msgid "child"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:8
msgid "descendant"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:9
msgid "descendant-or-self"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:10
msgid "following"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:11
msgid "following-sibling"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:12
msgid "namespace"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:13
msgid "parent"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:14
msgid "preceding"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:15
msgid "preceding-sibling"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:16
msgid "self"
msgstr ""

#: ../plugins/taglist/XUL.tags.xml.in.h:1
#, fuzzy
msgid "XUL — Tags"
msgstr "HTML"