summaryrefslogtreecommitdiff
blob: 2a693a8d6519520b68d1024d9cc86d60950b97a7 (plain)
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
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Mantra 2.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-19 00:53+0200\n"
"PO-Revision-Date: 2017-05-10 15:49+0200\n"
"Last-Translator: Cryout Creations\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.11\n"
"X-Poedit-KeywordsList: __;_e;_x\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SearchPath-0: .\n"

#: 404.php:17
msgid "Not Found"
msgstr ""

#: 404.php:19
msgid ""
"Apologies, but the page you requested could not be found. Perhaps searching "
"will help."
msgstr ""

#: admin/admin-functions.php:79
msgid ""
"Before you can upload your import file, you will need to fix the following "
"error:"
msgstr ""

#: admin/admin-functions.php:87
msgid "Import Mantra Theme Options"
msgstr ""

#: admin/admin-functions.php:89
msgid ""
"Hi! This is where you import the  Mantra settings.<i> Please remember that "
"this is still an experimental feature.</i>"
msgstr ""

#: admin/admin-functions.php:91
msgid "Just choose a file from your computer:"
msgstr ""

#: admin/admin-functions.php:93
#, php-format
msgid "Maximum size: %s"
msgstr ""

#: admin/admin-functions.php:99
msgid "And import!"
msgstr ""

#: admin/admin-functions.php:165
msgid "Import Mantra Theme Options "
msgstr ""

#: admin/admin-functions.php:168
msgid "Great! The options have been imported!"
msgstr ""

#: admin/admin-functions.php:169
msgid "Go back to the Mantra options page and check them out!"
msgstr ""

#: admin/admin-functions.php:172 admin/admin-functions.php:178
#: admin/admin-functions.php:184
msgid "Oops, there's a small problem."
msgstr ""

#: admin/admin-functions.php:173
msgid ""
"The uploaded file does not contain valid Mantra options. Make sure the file "
"is exported from the Mantra Options page."
msgstr ""

#: admin/admin-functions.php:179
msgid "The uploaded file could not be read."
msgstr ""

#: admin/admin-functions.php:185
msgid ""
"The uploaded file is not supported. Make sure the file was exported from the "
"Mantra page and that it is a text file."
msgstr ""

#: admin/admin-functions.php:194
msgid ""
"Oops! The file is empty or there was no file. This error could also be "
"caused by uploads being disabled in your php.ini or by post_max_size being "
"defined as smaller than upload_max_filesize in php.ini."
msgstr ""

#: admin/admin-functions.php:200
msgid "ERROR: You are not authorised to perform that operation"
msgstr ""

#: admin/main.php:87
msgid "Layout Settings"
msgstr ""

#: admin/main.php:88
msgid "Header Settings"
msgstr ""

#: admin/main.php:89
msgid "Presentation Page"
msgstr ""

#: admin/main.php:90
msgid "Text Settings"
msgstr ""

#: admin/main.php:91
msgid "Color Settings"
msgstr ""

#: admin/main.php:92
msgid "Graphics Settings"
msgstr ""

#: admin/main.php:93
msgid "Post Information Settings"
msgstr ""

#: admin/main.php:94
msgid "Post Excerpt Settings"
msgstr ""

#: admin/main.php:95
msgid "Featured Image Settings"
msgstr ""

#: admin/main.php:96
msgid "Social Media Settings"
msgstr ""

#: admin/main.php:97
msgid "Miscellaneous Settings"
msgstr ""

#: admin/main.php:100
msgid "Main Layout"
msgstr ""

#: admin/main.php:101
msgid "Content / Sidebar Width"
msgstr ""

#: admin/main.php:102
msgid "Magazine Layout"
msgstr ""

#: admin/main.php:103
msgid "Responsiveness"
msgstr ""

#: admin/main.php:106
msgid "Enable Presentation Page"
msgstr ""

#: admin/main.php:107
msgid "Show Posts on Presentation Page"
msgstr ""

#: admin/main.php:108
msgid "Slider Settings"
msgstr ""

#: admin/main.php:109
msgid "Slides"
msgstr ""

#: admin/main.php:110
msgid "Presentation Page Columns"
msgstr ""

#: admin/main.php:111
msgid "Extras"
msgstr ""

#: admin/main.php:114
msgid "Header Height"
msgstr ""

#: admin/main.php:115
msgid "Header Image"
msgstr ""

#: admin/main.php:116
msgid "Site Header"
msgstr ""

#: admin/main.php:117
msgid "Custom Logo Upload"
msgstr ""

#: admin/main.php:118
msgid "Header Spacing"
msgstr ""

#: admin/main.php:119
msgid "Main Menu Alignment"
msgstr ""

#: admin/main.php:120
msgid "Rounded Menu Corners"
msgstr ""

#: admin/main.php:121
msgid "FavIcon Upload"
msgstr ""

#: admin/main.php:124 admin/settings.php:682
msgid "General Font"
msgstr ""

#: admin/main.php:125
msgid "General Font Size"
msgstr ""

#: admin/main.php:126
msgid "Post Title Font "
msgstr ""

#: admin/main.php:127
msgid "Post Title Font Size"
msgstr ""

#: admin/main.php:128
msgid "Sidebar Font"
msgstr ""

#: admin/main.php:129
msgid "SideBar Font Size"
msgstr ""

#: admin/main.php:130
msgid "Headings Font"
msgstr ""

#: admin/main.php:131
msgid "Force Text Align"
msgstr ""

#: admin/main.php:132
msgid "Paragraph spacing"
msgstr ""

#: admin/main.php:133
msgid "Paragraph indent"
msgstr ""

#: admin/main.php:134
msgid "Header indent"
msgstr ""

#: admin/main.php:135
msgid "Line Height"
msgstr ""

#: admin/main.php:136
msgid "Word spacing"
msgstr ""

#: admin/main.php:137
msgid "Letter spacing"
msgstr ""

#: admin/main.php:140
msgid "Background Image"
msgstr ""

#: admin/main.php:141
msgid "Background Color"
msgstr ""

#: admin/main.php:142
msgid "Header (Banner and Menu) Background Color"
msgstr ""

#: admin/main.php:143
msgid "Content Background Color"
msgstr ""

#: admin/main.php:144
msgid "Menu Items Background Color"
msgstr ""

#: admin/main.php:145
msgid "First Sidebar Background Color"
msgstr ""

#: admin/main.php:146
msgid "Second Sidebar Background Color"
msgstr ""

#: admin/main.php:147
msgid "Site Title Color"
msgstr ""

#: admin/main.php:148
msgid "Site Description Color"
msgstr ""

#: admin/main.php:149
msgid "Content Text Color"
msgstr ""

#: admin/main.php:150
msgid "Links Color"
msgstr ""

#: admin/main.php:151
msgid "Links Hover Color"
msgstr ""

#: admin/main.php:152
msgid "Post Title Color"
msgstr ""

#: admin/main.php:153
msgid "Post Title Hover Color"
msgstr ""

#: admin/main.php:154
msgid "Sidebar Header Background Color"
msgstr ""

#: admin/main.php:155
msgid "Sidebar Header Text Color"
msgstr ""

#: admin/main.php:156
msgid "Footer Widget Background Color"
msgstr ""

#: admin/main.php:157
msgid "Footer Background Color"
msgstr ""

#: admin/main.php:158
msgid "Footer Widget Header Text Color"
msgstr ""

#: admin/main.php:159
msgid "Footer Widget Link Color"
msgstr ""

#: admin/main.php:160
msgid "Footer Widget Hover Color"
msgstr ""

#: admin/main.php:163
msgid "Breadcrumbs"
msgstr ""

#: admin/main.php:164
msgid "Pagination"
msgstr ""

#: admin/main.php:165
msgid "Post Images Border"
msgstr ""

#: admin/main.php:166
msgid "Caption Border"
msgstr ""

#: admin/main.php:167
msgid "Caption Pin"
msgstr ""

#: admin/main.php:168
msgid "Sidebar Menu Bullets"
msgstr ""

#: admin/main.php:169
msgid "Meta Area Background"
msgstr ""

#: admin/main.php:170
msgid "Post Separator"
msgstr ""

#: admin/main.php:171
msgid "Content List Bullets"
msgstr ""

#: admin/main.php:172
msgid "Page Titles"
msgstr ""

#: admin/main.php:173
msgid "Category Page Titles"
msgstr ""

#: admin/main.php:174
msgid "Hide Tables"
msgstr ""

#: admin/main.php:175
msgid "Back to Top button"
msgstr ""

#: admin/main.php:176
msgid "Text Under Comments"
msgstr ""

#: admin/main.php:177
msgid "Comments are closed text"
msgstr ""

#: admin/main.php:178
msgid "Comments off"
msgstr ""

#: admin/main.php:181
msgid "Post Comments Link"
msgstr ""

#: admin/main.php:182
msgid "Post Date"
msgstr ""

#: admin/main.php:183
msgid "Post Time"
msgstr ""

#: admin/main.php:184
msgid "Post Author"
msgstr ""

#: admin/main.php:185
msgid "Post Category"
msgstr ""

#: admin/main.php:186
msgid "Meta Bar"
msgstr ""

#: admin/main.php:187
msgid "Post Tags"
msgstr ""

#: admin/main.php:188
msgid "Post Permalink"
msgstr ""

#: admin/main.php:191
msgid "Post Excerpts on Home Page"
msgstr ""

#: admin/main.php:192
msgid "Affect Sticky Posts"
msgstr ""

#: admin/main.php:193
msgid "Post Excerpts on Archive and Category Pages"
msgstr ""

#: admin/main.php:194
msgid "Number of Words for Post Excerpts "
msgstr ""

#: admin/main.php:195
msgid "Excerpt suffix"
msgstr ""

#: admin/main.php:196
msgid "Continue reading link text "
msgstr ""

#: admin/main.php:197
msgid "HTML tags in Excerpts"
msgstr ""

#: admin/main.php:200
msgid "Featured Images as POST Thumbnails "
msgstr ""

#: admin/main.php:201
msgid "Auto Select Images From Posts "
msgstr ""

#: admin/main.php:202
msgid "Thumbnails Alignment "
msgstr ""

#: admin/main.php:203
msgid "Thumbnails Size "
msgstr ""

#: admin/main.php:204
msgid "Featured Images as HEADER Images "
msgstr ""

#: admin/main.php:207
msgid "Link nr. 1"
msgstr ""

#: admin/main.php:208
msgid "Link nr. 2"
msgstr ""

#: admin/main.php:209
msgid "Link nr. 3"
msgstr ""

#: admin/main.php:210
msgid "Link nr. 4"
msgstr ""

#: admin/main.php:211
msgid "Link nr. 5"
msgstr ""

#: admin/main.php:212
msgid "Socials display"
msgstr ""

#: admin/main.php:215
msgid "Custom Footer Text"
msgstr ""

#: admin/main.php:216
msgid "Custom CSS"
msgstr ""

#: admin/main.php:217
msgid "Custom JavaScript"
msgstr ""

#: admin/main.php:234
msgid "Sorry, but you do not have sufficient permissions to access this page."
msgstr ""

#: admin/main.php:255
msgid "Mantra settings updated successfully."
msgstr ""

#: admin/main.php:312
msgid "Import/Export Settings"
msgstr ""

#: admin/main.php:318
msgid "Export Theme options"
msgstr ""

#: admin/main.php:322
msgid "Import Theme options"
msgstr ""

#: admin/main.php:330
msgid "Mantra Latest News"
msgstr ""

#: admin/main.php:342
msgid "No news items."
msgstr ""

#: admin/main.php:346
msgid "Posted on"
msgstr ""

#: admin/settings.php:25
msgid "One column (no sidebars)"
msgstr ""

#: admin/settings.php:26
msgid "Two columns,  sidebar on the right"
msgstr ""

#: admin/settings.php:27
msgid "Two columns,  sidebar on the left"
msgstr ""

#: admin/settings.php:28
msgid "Three columns, sidebars on the right"
msgstr ""

#: admin/settings.php:29
msgid "Three columns, sidebars on the left"
msgstr ""

#: admin/settings.php:30
msgid "Three columns, one sidebar on each side"
msgstr ""

#: admin/settings.php:43
msgid ""
"Choose your layout. Possible options are: <br> No sidebar, a single sidebar "
"on either left of right, two sidebars on either left or\n"
"\t\tright and two sidebars on each side."
msgstr ""

#: admin/settings.php:50
msgid "Absolute"
msgstr ""

#: admin/settings.php:51
msgid "Dimensions to use:"
msgstr ""

#: admin/settings.php:99
msgid "Content ="
msgstr ""

#: admin/settings.php:100
msgid "Sidebar(s) ="
msgstr ""

#: admin/settings.php:101
msgid "Total width ="
msgstr ""

#: admin/settings.php:108
msgid ""
"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "
"at least 220px and no more than 800px.<br />\n"
"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "
"half the selected width."
msgstr ""

#: admin/settings.php:121 admin/settings.php:145 admin/settings.php:163
#: admin/settings.php:601 admin/settings.php:816 admin/settings.php:1027
#: admin/settings.php:1041 admin/settings.php:1198 admin/settings.php:1255
#: admin/settings.php:1440 admin/settings.php:1466 admin/settings.php:1487
#: admin/settings.php:1506 admin/settings.php:1547
msgid "Enable"
msgstr ""

#: admin/settings.php:121 admin/settings.php:145 admin/settings.php:163
#: admin/settings.php:601 admin/settings.php:816 admin/settings.php:1027
#: admin/settings.php:1041 admin/settings.php:1198 admin/settings.php:1255
#: admin/settings.php:1440 admin/settings.php:1466 admin/settings.php:1487
#: admin/settings.php:1506 admin/settings.php:1547
msgid "Disable"
msgstr ""

#: admin/settings.php:134
msgid ""
"Enable to make Mantra fully responsive. The layout and general sizes of your "
"blog will adjust depending on what device and what resolution it is viewed "
"in.<br> Do not disable unless you have a good reason to."
msgstr ""

#: admin/settings.php:153
msgid ""
"Enable the presentation front-page. This will become your new home page. It "
"has a slider and columns for presentation\n"
"\t\ttext and images.<br>If you have this enabled but don't see a "
"Presentation page then go to <a href='options-reading.php'> Settings &raquo; "
"Reading </a> and make sure you have selected <strong>Front Page Displays</"
"strong> as <Strong>Your Latest Posts</strong>."
msgstr ""

#: admin/settings.php:156
#, php-format
msgid ""
"You have enabled the Presentation Page but your WordPress' <em>Front page "
"displays</em> option is set to use a static page. WordPress guidelines "
"require that the static page option have priority over theme options.<br> Go "
"to %1$s and set the <em>Front page displays</em> option to <em><strong>Your "
"latest posts</strong></em> to display the presentation page."
msgstr ""

#: admin/settings.php:172
msgid "posts"
msgstr ""

#: admin/settings.php:173
msgid ""
"Enable to display latest posts on the presentation page, below the columns. "
"Sticky posts are always displayed and not counted."
msgstr ""

#: admin/settings.php:180
msgid "Slider Dimensions:"
msgstr ""

#: admin/settings.php:181
msgid "width"
msgstr ""

#: admin/settings.php:182
msgid "height"
msgstr ""

#: admin/settings.php:183
msgid ""
"The dimensions of your slider. Make sure your images are of the same size."
msgstr ""

#: admin/settings.php:185
msgid "Animation:"
msgstr ""

#: admin/settings.php:187
msgid "Random"
msgstr ""

#: admin/settings.php:187
msgid "Fold"
msgstr ""

#: admin/settings.php:187
msgid "Fade"
msgstr ""

#: admin/settings.php:187
msgid "SlideInRight"
msgstr ""

#: admin/settings.php:187
msgid "SlideInLeft"
msgstr ""

#: admin/settings.php:187
msgid "SliceDown"
msgstr ""

#: admin/settings.php:187
msgid "SliceDownLeft"
msgstr ""

#: admin/settings.php:187
msgid "SliceUp"
msgstr ""

#: admin/settings.php:187
msgid "SliceUpLeft"
msgstr ""

#: admin/settings.php:187
msgid "SliceUpDown"
msgstr ""

#: admin/settings.php:187
msgid "SliceUpDownLeft"
msgstr ""

#: admin/settings.php:187
msgid "BoxRandom"
msgstr ""

#: admin/settings.php:187
msgid "BoxRain"
msgstr ""

#: admin/settings.php:187
msgid "BoxRainReverse"
msgstr ""

#: admin/settings.php:187
msgid "BoxRainGrow"
msgstr ""

#: admin/settings.php:187
msgid "BoxRainGrowReverse"
msgstr ""

#: admin/settings.php:195
msgid "The transition effect your slider will have."
msgstr ""

#: admin/settings.php:197
msgid "Border Settings:"
msgstr ""

#: admin/settings.php:198
msgid "Width"
msgstr ""

#: admin/settings.php:199
msgid "Color"
msgstr ""

#: admin/settings.php:201
msgid "The width and color of the slider's border."
msgstr ""

#: admin/settings.php:203
msgid "Animation Time:"
msgstr ""

#: admin/settings.php:204 admin/settings.php:208
msgid "milliseconds"
msgstr ""

#: admin/settings.php:205
msgid "The time in which the transition animation will take place."
msgstr ""

#: admin/settings.php:207
msgid "Pause Time:"
msgstr ""

#: admin/settings.php:209
msgid "The time in which a slide will be still and visible."
msgstr ""

#: admin/settings.php:212
msgid "Slider navigation:"
msgstr ""

#: admin/settings.php:214
msgid "Numbers"
msgstr ""

#: admin/settings.php:214
msgid "Bullets"
msgstr ""

#: admin/settings.php:214 admin/settings.php:1125
msgid "None"
msgstr ""

#: admin/settings.php:222
msgid "Your slider navigation type. Shown under the slider."
msgstr ""

#: admin/settings.php:224
msgid "Slider arrows:"
msgstr ""

#: admin/settings.php:226
msgid "Always Visible"
msgstr ""

#: admin/settings.php:226
msgid "Visible on Hover"
msgstr ""

#: admin/settings.php:226
msgid "Hidden"
msgstr ""

#: admin/settings.php:234
msgid "The Left and Right arrows on your slider"
msgstr ""

#: admin/settings.php:273
msgid "Slider Shortcode"
msgstr ""

#: admin/settings.php:273
msgid "Custom Slides"
msgstr ""

#: admin/settings.php:273
msgid "Latest Posts"
msgstr ""

#: admin/settings.php:273
msgid "Random Posts"
msgstr ""

#: admin/settings.php:273
msgid "Sticky Posts"
msgstr ""

#: admin/settings.php:273
msgid "Latest Posts from Category"
msgstr ""

#: admin/settings.php:273
msgid "Random Posts from Category"
msgstr ""

#: admin/settings.php:273
msgid "Specific Posts"
msgstr ""

#: admin/settings.php:274
msgid "Select the content you want to load in your slides:"
msgstr ""

#: admin/settings.php:282
msgid ""
"Your slides' content. Only the image is required, all other fields are "
"optional. Only the slides with an image selected will become acitve and "
"visible in the live slider."
msgstr ""

#: admin/settings.php:287
msgid "Enter the desired slider plugin shortcode below:"
msgstr ""

#: admin/settings.php:292
msgid "Latest posts will be loaded into the slider."
msgstr ""

#: admin/settings.php:296
msgid "Random  posts will be loaded into the slider."
msgstr ""

#: admin/settings.php:300
msgid "Latest posts from the category you choose will be loaded in the slider."
msgstr ""

#: admin/settings.php:305
msgid ""
"Random posts from the category you choose will be loaded into the slider."
msgstr ""

#: admin/settings.php:309
msgid "Only sticky posts will be loaded into the slider."
msgstr ""

#: admin/settings.php:313
msgid "List the post IDs you want to display (separated by a comma): "
msgstr ""

#: admin/settings.php:318
msgid "<br> Choose the cateogry: "
msgstr ""

#: admin/settings.php:320
msgid "Select Category"
msgstr ""

#: admin/settings.php:335
msgid "Number of posts to show:"
msgstr ""

#: admin/settings.php:341
msgid "Custom slides are limited to a maximum of 5."
msgstr ""

#: admin/settings.php:343
msgid "Slide 1"
msgstr ""

#: admin/settings.php:345 admin/settings.php:360 admin/settings.php:375
#: admin/settings.php:390 admin/settings.php:405 admin/settings.php:444
#: admin/settings.php:459 admin/settings.php:474 admin/settings.php:489
#: content/content-image.php:17
msgid "Image"
msgstr ""

#: admin/settings.php:347 admin/settings.php:362 admin/settings.php:377
#: admin/settings.php:392 admin/settings.php:407 admin/settings.php:446
#: admin/settings.php:461 admin/settings.php:476 admin/settings.php:491
#: admin/settings.php:632 admin/settings.php:651
msgid "Select / Upload Image"
msgstr ""

#: admin/settings.php:348 admin/settings.php:363 admin/settings.php:378
#: admin/settings.php:393 admin/settings.php:408 admin/settings.php:447
#: admin/settings.php:462 admin/settings.php:477 admin/settings.php:492
msgid "Title"
msgstr ""

#: admin/settings.php:350 admin/settings.php:365 admin/settings.php:380
#: admin/settings.php:395 admin/settings.php:410 admin/settings.php:449
#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494
msgid "Text"
msgstr ""

#: admin/settings.php:352 admin/settings.php:367 admin/settings.php:382
#: admin/settings.php:397 admin/settings.php:412 admin/settings.php:451
#: admin/settings.php:466 admin/settings.php:481 admin/settings.php:496
#: content/content-link.php:18
msgid "Link"
msgstr ""

#: admin/settings.php:358
msgid "Slide 2"
msgstr ""

#: admin/settings.php:373
msgid "Slide 3"
msgstr ""

#: admin/settings.php:388
msgid "Slide 4"
msgstr ""

#: admin/settings.php:403
msgid "Slide 5"
msgstr ""

#: admin/settings.php:424
msgid "Number of columns:"
msgstr ""

#: admin/settings.php:434
msgid "Image Height:"
msgstr ""

#: admin/settings.php:437
msgid "Read more text:"
msgstr ""

#: admin/settings.php:439
msgid ""
"The linked text that appears at the bottom of all the columns. You can "
"delete all text inside if you don't want it."
msgstr ""

#: admin/settings.php:442
msgid "1st Column"
msgstr ""

#: admin/settings.php:457
msgid "2nd Column"
msgstr ""

#: admin/settings.php:472
msgid "3rd Column"
msgstr ""

#: admin/settings.php:487
msgid "4th Column"
msgstr ""

#: admin/settings.php:508
msgid "Extra Text"
msgstr ""

#: admin/settings.php:511
msgid "Text for the Presentation Page"
msgstr ""

#: admin/settings.php:512
msgid ""
"More text for your front page. The top title is above the slider, the second "
"title between the slider and the columns and 2 more rows of text under the "
"columns.<br>It's all optional so leave any input field empty if it's not "
"required."
msgstr ""

#: admin/settings.php:514
msgid "Top Title"
msgstr ""

#: admin/settings.php:516
msgid "Second Title"
msgstr ""

#: admin/settings.php:518
msgid "Title color"
msgstr ""

#: admin/settings.php:522
msgid "Bottom Text 1"
msgstr ""

#: admin/settings.php:524
msgid "Bottom Text 2"
msgstr ""

#: admin/settings.php:530
msgid "Hide areas"
msgstr ""

#: admin/settings.php:532
msgid "Choose the areas to hide on the first page."
msgstr ""

#: admin/settings.php:544
msgid "Hide the header area (image or background color)."
msgstr ""

#: admin/settings.php:548
msgid "Hide the main menu (the top navigation tabs)."
msgstr ""

#: admin/settings.php:552
msgid "Hide the footer widgets. "
msgstr ""

#: admin/settings.php:556
msgid "Hide the footer (copyright area)."
msgstr ""

#: admin/settings.php:560
msgid "Hide the white color. Only the background color remains."
msgstr ""

#: admin/settings.php:578
#, php-format
msgid ""
"Select the header's height. After saving the settings make sure you re-"
"upload a new header image (if you're using one). The header's width will be "
"%s px."
msgstr ""

#: admin/settings.php:587
msgid "Define header image"
msgstr ""

#: admin/settings.php:588
msgid ""
"The header image should not be used to display logos.<br> Enable ratio "
"preservation to force the header image aspect ratio. Keep in mind that short "
"images will become very small on mobile devices."
msgstr ""

#: admin/settings.php:609
msgid "Enable or disable the round corners for the main menu items."
msgstr ""

#: admin/settings.php:615
msgid "Site Title and Description"
msgstr ""

#: admin/settings.php:615
msgid "Custom Logo"
msgstr ""

#: admin/settings.php:615
msgid "Clickable header image"
msgstr ""

#: admin/settings.php:615
msgid "Empty"
msgstr ""

#: admin/settings.php:623
msgid "Choose what to display inside your header area."
msgstr ""

#: admin/settings.php:631
msgid ""
"Custom Logo upload. The logo will appear over the heder image if you have "
"used one."
msgstr ""

#: admin/settings.php:639
msgid "top"
msgstr ""

#: admin/settings.php:640
msgid "left"
msgstr ""

#: admin/settings.php:641
msgid ""
"Select the top spacing for the header. Use it to better position your site "
"title and description or custom logo inside the header. "
msgstr ""

#: admin/settings.php:650
msgid ""
"Limitations: It has to be an image. It should be max 64x64 pixels in "
"dimensions. Recommended file extensions .ico and .png. <br/><b>Note that "
"some browsers do not display the changed favicon instantly.</b>"
msgstr ""

#: admin/settings.php:671
msgid ""
"Select the font size you'll use in your blog. Pages, posts and comments will "
"be affected. Buttons, Headers and Side menus will remain the same."
msgstr ""

#: admin/settings.php:712
msgid ""
"Select the font family you'll use in your blog. All content text will be "
"affected (including menu buttons). "
msgstr ""

#: admin/settings.php:714 admin/settings.php:724 admin/settings.php:733
#: admin/settings.php:742
msgid ""
"Or insert your Google Font identifier. <br /> Ex: Marko One. Go to <a "
"href='http://www.google.com/webfonts' > Google fonts </a> for some font "
"inspiration."
msgstr ""

#: admin/settings.php:721
msgid ""
"Select the font family you want for your titles. It will affect post titles "
"and page titles. Leave 'Default' and the general font you selected will be "
"used."
msgstr ""

#: admin/settings.php:731
msgid ""
"Select the font family you want your sidebar(s) to have. Text in sidebars "
"will be affected, including any widgets. Leave 'Default' and the general "
"font you selected will be used."
msgstr ""

#: admin/settings.php:740
msgid ""
"Select the font family you want your headings to have (h1 - h6 tags will be "
"affected). Leave 'Default' and the general font you selected will be used."
msgstr ""

#: admin/settings.php:748 admin/settings.php:762 admin/settings.php:776
#: admin/settings.php:830 admin/settings.php:844 admin/settings.php:858
msgid "Default"
msgstr ""

#: admin/settings.php:756
msgid ""
"Post Header Font size. Leave 'Default' for normal settings (size value will "
"be as set in the CSS)."
msgstr ""

#: admin/settings.php:770
msgid ""
"Sidebar Font size. Leave 'Default' for normal settings (size value will be "
"as set in the CSS)."
msgstr ""

#: admin/settings.php:776 admin/settings.php:1055 admin/settings.php:1520
msgid "Left"
msgstr ""

#: admin/settings.php:776 admin/settings.php:1055 admin/settings.php:1520
msgid "Right"
msgstr ""

#: admin/settings.php:776
msgid "Justify"
msgstr ""

#: admin/settings.php:776 admin/settings.php:1055 admin/settings.php:1520
msgid "Center"
msgstr ""

#: admin/settings.php:784
msgid ""
"This overwrites the text alignment in posts and pages. Leave 'Default' for "
"normal settings (alignment will remain as declared in posts, comments etc.)."
msgstr ""

#: admin/settings.php:797
msgid "Choose the spacing between paragraphs."
msgstr ""

#: admin/settings.php:810
msgid "Choose the indent for your paragraphs."
msgstr ""

#: admin/settings.php:824
msgid "Disable the default header and title indent (left margin)."
msgstr ""

#: admin/settings.php:838
msgid ""
"Text line height. The height between 2 rows of text. Leave 'Default' for "
"normal settings (size value will be as set in the CSS)."
msgstr ""

#: admin/settings.php:852
msgid ""
"The space between <i>words</i>. Leave 'Default' for normal settings (size "
"value will be as set in the CSS)."
msgstr ""

#: admin/settings.php:866
msgid ""
"The space between <i>letters</i>. Leave 'Default' for normal settings (size "
"value will be as set in the CSS)."
msgstr ""

#: admin/settings.php:875
msgid "Define background image"
msgstr ""

#: admin/settings.php:882
msgid "Background color (Default value is 444444)."
msgstr ""

#: admin/settings.php:889
msgid ""
"Header background color (Default value is 333333). You can delete all inside "
"text for no background color."
msgstr ""

#: admin/settings.php:896
msgid ""
"Content background color (Default value is FFFFFF). Works best with really "
"light colors."
msgstr ""

#: admin/settings.php:903
msgid ""
"Main menu background color (Default value is FAFAFA). Should be the same "
"color as the content bg or something just as light."
msgstr ""

#: admin/settings.php:910
msgid ""
"First sidebar background color (Default is no color for a transparent "
"sidebar)."
msgstr ""

#: admin/settings.php:917
msgid ""
"Second sidebar background color (Default is no color for a transparent "
"sidebar)."
msgstr ""

#: admin/settings.php:924
msgid "Footer widget-area background color. (Default value is 171717)."
msgstr ""

#: admin/settings.php:931
msgid "Footer background color (Default value is 222222)."
msgstr ""

#: admin/settings.php:938
msgid "Your blog's title color (Default value is 0D85CC)."
msgstr ""

#: admin/settings.php:945
msgid "Your blog's description color(Default value is 222222)."
msgstr ""

#: admin/settings.php:952
msgid "Content Text Color (Default value is 333333)."
msgstr ""

#: admin/settings.php:959
msgid "Links color (Default value is 0D85CC)."
msgstr ""

#: admin/settings.php:966
msgid "Links color on mouse over (Default value is 333333)."
msgstr ""

#: admin/settings.php:973
msgid "Post Header Text Color (Default value is 333333)."
msgstr ""

#: admin/settings.php:980
msgid "Post Header Text Color on Mouse over (Default value is 000000)."
msgstr ""

#: admin/settings.php:987
msgid "Sidebar Header Background color (Default value is 444444)."
msgstr ""

#: admin/settings.php:995
msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
msgstr ""

#: admin/settings.php:1002
msgid "Footer Widget Text Color (Default value is 0D85CC)."
msgstr ""

#: admin/settings.php:1009
msgid "Footer Widget Link Color (Default value is 666666)."
msgstr ""

#: admin/settings.php:1016
msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
msgstr ""

#: admin/settings.php:1035
msgid ""
"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "
"navigation that keeps track of your location withtin the site."
msgstr ""

#: admin/settings.php:1049
msgid ""
"Show numbered pagination. Where there is more than one page, instead of the "
"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "
"pagination. "
msgstr ""

#: admin/settings.php:1063
msgid ""
"Select the desired main menu items alignment. Center option is only valid "
"for single line menus."
msgstr ""

#: admin/settings.php:1069 admin/settings.php:1125
msgid "White"
msgstr ""

#: admin/settings.php:1069
msgid "Light"
msgstr ""

#: admin/settings.php:1069
msgid "Light Gray"
msgstr ""

#: admin/settings.php:1069 admin/settings.php:1125
msgid "Gray"
msgstr ""

#: admin/settings.php:1069
msgid "Dark Gray"
msgstr ""

#: admin/settings.php:1069
msgid "Black"
msgstr ""

#: admin/settings.php:1077
msgid ""
"This setting changes the look of your captions. Images that are not inserted "
"through captions will not be affected."
msgstr ""

#: admin/settings.php:1089
msgid "The border around your inserted images. "
msgstr ""

#: admin/settings.php:1103
msgid "The image on top of your captions. "
msgstr ""

#: admin/settings.php:1117
msgid "The sidebar list bullets. "
msgstr ""

#: admin/settings.php:1133
msgid ""
"The background for your post-metas area (under your post tiltes). Gray by "
"default."
msgstr ""

#: admin/settings.php:1140 admin/settings.php:1155 admin/settings.php:1170
#: admin/settings.php:1184 admin/settings.php:1212 admin/settings.php:1226
#: admin/settings.php:1241 admin/settings.php:1274 admin/settings.php:1288
#: admin/settings.php:1302 admin/settings.php:1316 admin/settings.php:1330
#: admin/settings.php:1344 admin/settings.php:1358 admin/settings.php:1372
msgid "Show"
msgstr ""

#: admin/settings.php:1140 admin/settings.php:1155 admin/settings.php:1170
#: admin/settings.php:1184 admin/settings.php:1212 admin/settings.php:1241
#: admin/settings.php:1274 admin/settings.php:1288 admin/settings.php:1302
#: admin/settings.php:1316 admin/settings.php:1330 admin/settings.php:1344
#: admin/settings.php:1358 admin/settings.php:1372
msgid "Hide"
msgstr ""

#: admin/settings.php:1148
msgid "Hide or show a horizontal rule to separate posts."
msgstr ""

#: admin/settings.php:1163
msgid ""
"Hide or show  bullets next to lists that are in your content area (posts, "
"pages etc.)."
msgstr ""

#: admin/settings.php:1178
msgid "Hide or show Page titles on any <i>created</i> pages. "
msgstr ""

#: admin/settings.php:1192
msgid "Hide or show Page titles on <i>Category</i> Pages. "
msgstr ""

#: admin/settings.php:1206
msgid "Hide table borders and background color."
msgstr ""

#: admin/settings.php:1220
msgid ""
"Hide the explanatory text under the comments form. (starts with  <i>You may "
"use these HTML tags and attributes:...</i>)."
msgstr ""

#: admin/settings.php:1226
msgid "Hide in posts"
msgstr ""

#: admin/settings.php:1226
msgid "Hide in pages"
msgstr ""

#: admin/settings.php:1226
msgid "Hide everywhere"
msgstr ""

#: admin/settings.php:1234
msgid ""
"Hide the  <b>Comments are closed</b> text that by default shows up on pages "
"or posts with the comments disabled."
msgstr ""

#: admin/settings.php:1249
msgid ""
"Hide the <b>Comments off</b> text next to posts that have comments disabled."
msgstr ""

#: admin/settings.php:1263
msgid ""
"Enable the Back to Top button. The button appears after scrolling the page "
"down."
msgstr ""

#: admin/settings.php:1282
msgid ""
"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"
"strong> next to posts or post excerpts."
msgstr ""

#: admin/settings.php:1296
msgid "Hide or show the post date."
msgstr ""

#: admin/settings.php:1310
msgid ""
"Show the post time with the date. Time will not be visible if the Post Date "
"is hidden."
msgstr ""

#: admin/settings.php:1324
msgid "Hide or show the post author."
msgstr ""

#: admin/settings.php:1338
msgid "Hide the post category."
msgstr ""

#: admin/settings.php:1352
msgid "Hide the 'Bookmark permalink'."
msgstr ""

#: admin/settings.php:1366
msgid "Hide the meta bar. All meta info in it will be hidden."
msgstr ""

#: admin/settings.php:1380
msgid "Hide the post tags."
msgstr ""

#: admin/settings.php:1391 admin/settings.php:1405 admin/settings.php:1419
msgid "Excerpt"
msgstr ""

#: admin/settings.php:1391 admin/settings.php:1405 admin/settings.php:1419
msgid "Full Post"
msgstr ""

#: admin/settings.php:1399
msgid ""
"Excerpts on the main page. Only standard posts will be affected. All other "
"post formats (aside, image, chat, quote etc.) have their specific formating."
msgstr ""

#: admin/settings.php:1413
msgid ""
"Choose if you want the sticky posts on your home page to be visible in full "
"or just the excerpts. "
msgstr ""

#: admin/settings.php:1427
msgid ""
"Excerpts on archive, categroy and search pages. Same as above, only standard "
"posts will be affected."
msgstr ""

#: admin/settings.php:1433
msgid ""
"The number of words an excerpt will have. When that number is reached the "
"post will be interrupted by a <i>Continue reading</i> link that\n"
"\t\t\t\t\t\t\twill take the reader to the full post page."
msgstr ""

#: admin/settings.php:1448
msgid ""
"Enable the Magazine Layout. This layout applies to pages with posts and "
"shows 2 posts per row."
msgstr ""

#: admin/settings.php:1454
msgid ""
"Replaces the three dots ('[...])' that are appended automatically to "
"excerpts."
msgstr ""

#: admin/settings.php:1460
msgid "Edit the 'Continue Reading' link added to your post excerpts."
msgstr ""

#: admin/settings.php:1474
#, php-format
msgid ""
"By default WordPress excerpts remove all HTML tags (%s and all others) and "
"only clean text is left in the excerpt.\n"
"Enabling this option allows HTML tags to remain in excerpts so all your "
"default formating will be kept.<br /> <b>Just a warning: </b>If HTML tags "
"are enabled, you have to make sure\n"
"they are not left open. So if within your post you have an opened HTML tag "
"but the except ends before that tag closes, the rest of the site will be "
"contained in that HTML tag. -- Leave 'Disable' if unsure -- </small></div>"
msgstr ""

#: admin/settings.php:1500
msgid ""
"Show featured images as thumbnails on posts. The images must be selected for "
"each post in the Featured Image section."
msgstr ""

#: admin/settings.php:1514
msgid ""
"Show the first image that you inserted in a post as a thumbnail. If you "
"enable this option, the first image in your post will be used even if you "
"selected a Featured Image in you post."
msgstr ""

#: admin/settings.php:1528
msgid "Thumbnail alignment."
msgstr ""

#: admin/settings.php:1541
msgid ""
"The size you want the thumbnails to have (in pixels). By default imges will "
"be scaled with aspect ratio kept. Choose to crop the images if you want the "
"exact size."
msgstr ""

#: admin/settings.php:1555
msgid ""
"Show featured images on headers. The header will be replaced with a featured "
"image if you selected it as a Featured Image in the post and\n"
"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "
"size."
msgstr ""

#: admin/settings.php:1570
msgid ""
"Select your desired Social network from the left dropdown menu and insert "
"your corresponding address in the right input field. (ex: <i>http://www."
"facebook.com/yourname</i> )"
msgstr ""

#: admin/settings.php:1571
msgid "You can insert up to 5 different social sites and addresses."
msgstr ""

#: admin/settings.php:1572
msgid "There are a total of 27 social networks to choose from. "
msgstr ""

#: admin/settings.php:1573
msgid "You can leave any number of inputs empty. "
msgstr ""

#: admin/settings.php:1574
msgid "You can choose the same social media any number of times.  "
msgstr ""

#: admin/settings.php:1641
msgid "Choose the <b>areas</b> where to display the social icons."
msgstr ""

#: admin/settings.php:1652
msgid ""
"Insert custom text or HTML code that will appear last in you footer. <br /> "
"You can use HTML to insert links, images and special characters like &copy ."
msgstr ""

#: admin/settings.php:1658
msgid ""
"Insert your custom CSS here. Any CSS declarations made here will overwrite "
"Mantra's (even the custom options specified right here in the Mantra "
"Settings page). <br> Your custom CSS will be preserved when updating the "
"theme.<br> The &ltstyle&gt tags are not needed."
msgstr ""

#: admin/settings.php:1664
msgid ""
"Insert your custom Javascript code here. (Google Analytics and any other "
"forms of Analytic software).<br> The &ltscript&gt tags are not needed."
msgstr ""

#: archive.php:27
#, php-format
msgid "Daily Archives: %s"
msgstr ""

#: archive.php:29
#, php-format
msgid "Monthly Archives: %s"
msgstr ""

#: archive.php:29
msgid "F Y"
msgstr ""

#: archive.php:31
#, php-format
msgid "Yearly Archives: %s"
msgstr ""

#: archive.php:31
msgid "Y"
msgstr ""

#: archive.php:33
msgid "Blog Archives"
msgstr ""

#: archive.php:59 author.php:75 category.php:51
#: content/content-frontpage.php:26 index.php:41 search.php:41 tag.php:52
#: templates/template-blog.php:36
msgid "Nothing Found"
msgstr ""

#: archive.php:63 author.php:79 category.php:55
#: content/content-frontpage.php:30 index.php:45 tag.php:56
#: templates/template-blog.php:40
msgid ""
"Apologies, but no results were found for the requested archive. Perhaps "
"searching will help find a related post."
msgstr ""

#: attachment.php:18
#, php-format
msgid "Return to %s"
msgstr ""

#: attachment.php:29
msgid "By"
msgstr ""

#: attachment.php:40
msgid "Published"
msgstr ""

#: attachment.php:50
#, php-format
msgid "Full size is %s pixels"
msgstr ""

#: attachment.php:53
msgid "Link to full-size image"
msgstr ""

#: attachment.php:60 attachment.php:107 content/content-aside.php:46
#: content/content-chat.php:47 content/content-gallery.php:73
#: content/content-image.php:40 content/content-link.php:47
#: content/content-page.php:22 content/content-quote.php:44
#: content/content-status.php:46 content/content.php:78 single.php:38
#: templates/template-onecolumn.php:28
#: templates/template-page-with-intro.php:18
msgid "Edit"
msgstr ""

#: attachment.php:100
msgid "Continue reading"
msgstr ""

#: attachment.php:101 content/content-aside.php:37 content/content-chat.php:36
#: content/content-gallery.php:63 content/content-image.php:31
#: content/content-link.php:36 content/content-page.php:21
#: content/content-quote.php:34 content/content-status.php:37
#: content/content.php:51 content/content.php:67 single.php:33
#: templates/template-onecolumn.php:27
#: templates/template-page-with-intro.php:17
msgid "Pages:"
msgstr ""

#: author.php:29
#, php-format
msgid "Author Archives: %s"
msgstr ""

#: author.php:50
#, php-format
msgid "About %s"
msgstr ""

#: category.php:20
#, php-format
msgid "Category Archives: %s"
msgstr ""

#: comments.php:18
msgid ""
"This post is password protected. Enter the password to view any comments."
msgstr ""

#: content/content-aside.php:18
msgid "Aside"
msgstr ""

#: content/content-aside.php:36 content/content-chat.php:35
#: content/content-image.php:30 content/content-link.php:35
#: content/content-quote.php:33 content/content-status.php:36
msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
msgstr ""

#: content/content-aside.php:44 content/content-chat.php:43
#: content/content-gallery.php:70 content/content-image.php:37
#: content/content-link.php:43 content/content-quote.php:41
#: content/content-status.php:44 content/content.php:76
#: includes/theme-loop.php:197
msgid "Tagged"
msgstr ""

#: content/content-chat.php:18
msgid "Chat"
msgstr ""

#: content/content-gallery.php:21
msgid "Gallery"
msgstr ""

#: content/content-page.php:27 includes/theme-comments.php:134
msgid "Comments are closed."
msgstr ""

#: content/content-quote.php:16
msgid "Quote"
msgstr ""

#: content/content-status.php:28 includes/tgm.php:2609
msgid "Status"
msgstr ""

#: header.php:41
msgid "Menu"
msgstr ""

#: includes/tgm.php:29
msgid "Recommended Plugins"
msgstr ""

#: includes/tgm.php:30
msgid " Plugins"
msgstr ""

#: includes/tgm.php:31 includes/tgm.php:385
#, php-format
msgid "Installing Plugin: %s"
msgstr ""

#: includes/tgm.php:32 includes/tgm.php:388
msgid "Something went wrong with the plugin API."
msgstr ""

#: includes/tgm.php:43 includes/tgm.php:440
msgid "Return to Required Plugins Installer"
msgstr ""

#: includes/tgm.php:44 includes/tgm.php:442 includes/tgm.php:3214
msgid "Plugin activated successfully."
msgstr ""

#: includes/tgm.php:45
#, php-format
msgid "All plugins installed and activated successfully. %s"
msgstr ""

#: includes/tgm.php:382
msgid "Install Required Plugins"
msgstr ""

#: includes/tgm.php:383
msgid "Install Plugins"
msgstr ""

#: includes/tgm.php:387
#, php-format
msgid "Updating Plugin: %s"
msgstr ""

#: includes/tgm.php:441
msgid "Return to the Dashboard"
msgstr ""

#: includes/tgm.php:443
msgid "The following plugin was activated successfully:"
msgstr ""

#: includes/tgm.php:445
#, php-format
msgid "No action taken. Plugin %1$s was already active."
msgstr ""

#: includes/tgm.php:447
#, php-format
msgid ""
"Plugin not activated. A higher version of %s is needed for this theme. "
"Please update the plugin."
msgstr ""

#: includes/tgm.php:449
#, php-format
msgid "All plugins installed and activated successfully. %1$s"
msgstr ""

#: includes/tgm.php:450
msgid "Dismiss this notice"
msgstr ""

#: includes/tgm.php:451
msgid ""
"There are one or more required or recommended plugins to install, update or "
"activate."
msgstr ""

#: includes/tgm.php:452
msgid "Please contact the administrator of this site for help."
msgstr ""

#: includes/tgm.php:2037
#, php-format
msgid "TGMPA v%s"
msgstr ""

#: includes/tgm.php:2328
msgid "Required"
msgstr ""

#: includes/tgm.php:2331
msgid "Recommended"
msgstr ""

#: includes/tgm.php:2347
msgid "WordPress Repository"
msgstr ""

#: includes/tgm.php:2350
msgid "External Source"
msgstr ""

#: includes/tgm.php:2353
msgid "Pre-Packaged"
msgstr ""

#: includes/tgm.php:2370
msgid "Not Installed"
msgstr ""

#: includes/tgm.php:2374
msgid "Installed But Not Activated"
msgstr ""

#: includes/tgm.php:2376
msgid "Active"
msgstr ""

#: includes/tgm.php:2382
msgid "Required Update not Available"
msgstr ""

#: includes/tgm.php:2385
msgid "Requires Update"
msgstr ""

#: includes/tgm.php:2388
msgid "Update recommended"
msgstr ""

#: includes/tgm.php:2397
#, php-format
msgid "%1$s, %2$s"
msgstr ""

#: includes/tgm.php:2537
msgid "unknown"
msgstr ""

#: includes/tgm.php:2545
msgid "Installed version:"
msgstr ""

#: includes/tgm.php:2553
msgid "Minimum required version:"
msgstr ""

#: includes/tgm.php:2565
msgid "Available version:"
msgstr ""

#: includes/tgm.php:2602
msgid "Plugin"
msgstr ""

#: includes/tgm.php:2603
msgid "Source"
msgstr ""

#: includes/tgm.php:2604
msgid "Type"
msgstr ""

#: includes/tgm.php:2608
msgid "Version"
msgstr ""

#: includes/tgm.php:2658
#, php-format
msgid "Install %2$s"
msgstr ""

#: includes/tgm.php:2663
#, php-format
msgid "Update %2$s"
msgstr ""

#: includes/tgm.php:2669
#, php-format
msgid "Activate %2$s"
msgstr ""

#: includes/tgm.php:2772
msgid "Install"
msgstr ""

#: includes/tgm.php:2778
msgid "Update"
msgstr ""

#: includes/tgm.php:2781
msgid "Activate"
msgstr ""

#: includes/tgm.php:2812
msgid "No plugins were selected to be installed. No action taken."
msgstr ""

#: includes/tgm.php:2814
msgid "No plugins were selected to be updated. No action taken."
msgstr ""

#: includes/tgm.php:2855
msgid "No plugins are available to be installed at this time."
msgstr ""

#: includes/tgm.php:2857
msgid "No plugins are available to be updated at this time."
msgstr ""

#: includes/tgm.php:3213
msgid "Plugin activation failed."
msgstr ""

#: includes/tgm.php:3553
#, php-format
msgid "Updating Plugin %1$s (%2$d/%3$d)"
msgstr ""

#: includes/tgm.php:3556
#, php-format
msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
msgstr ""

#: includes/tgm.php:3558
#, php-format
msgid "The installation of %1$s failed."
msgstr ""

#: includes/tgm.php:3562
msgid ""
"The installation and activation process is starting. This process may take a "
"while on some hosts, so please be patient."
msgstr ""

#: includes/tgm.php:3564
#, php-format
msgid "%1$s installed and activated successfully."
msgstr ""

#: includes/tgm.php:3565
msgid "All installations and activations have been completed."
msgstr ""

#: includes/tgm.php:3567
#, php-format
msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
msgstr ""

#: includes/tgm.php:3570
msgid ""
"The installation process is starting. This process may take a while on some "
"hosts, so please be patient."
msgstr ""

#: includes/tgm.php:3573
msgid "All installations have been completed."
msgstr ""

#: includes/tgm.php:3575
#, php-format
msgid "Installing Plugin %1$s (%2$d/%3$d)"
msgstr ""

#: includes/theme-comments.php:28
msgid "says:"
msgstr ""

#: includes/theme-comments.php:34
msgid "Your comment is awaiting moderation."
msgstr ""

#: includes/theme-comments.php:41
msgid "at"
msgstr ""

#: includes/theme-comments.php:41 includes/theme-comments.php:58
msgid "(Edit)"
msgstr ""

#: includes/theme-comments.php:58
msgid "Pingback: "
msgstr ""

#: includes/theme-comments.php:86
msgid "Leave a comment"
msgstr ""

#: includes/theme-comments.php:86
msgid "1 Comment"
msgstr ""

#: includes/theme-comments.php:86
msgid "% Comments"
msgstr ""

#: includes/theme-comments.php:107
msgid "Older Comments"
msgstr ""

#: includes/theme-comments.php:108
msgid "Newer Comments"
msgstr ""

#: includes/theme-functions.php:196
msgid "Tag"
msgstr ""

#: includes/theme-functions.php:207
msgid "Home Page"
msgstr ""

#: includes/theme-functions.php:269
msgid "Powered by"
msgstr ""

#: includes/theme-loop.php:161
msgid "By "
msgstr ""

#: includes/theme-loop.php:197
msgid " Bookmark the "
msgstr ""

#: includes/theme-loop.php:197 includes/theme-loop.php:199
#: includes/theme-loop.php:201
msgid "Permalink to"
msgstr ""

#: includes/theme-loop.php:197 includes/theme-loop.php:199
#: includes/theme-loop.php:201
msgid "permalink"
msgstr ""

#: includes/theme-loop.php:199 includes/theme-loop.php:201
msgid "Bookmark the "
msgstr ""

#: includes/theme-loop.php:223
msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
msgstr ""

#: includes/theme-loop.php:224
msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
msgstr ""

#: includes/theme-setup.php:80
msgid "Primary Navigation"
msgstr ""

#: includes/theme-setup.php:81
msgid "Top Navigation"
msgstr ""

#: includes/theme-setup.php:82
msgid "Footer Navigation"
msgstr ""

#: includes/theme-setup.php:116
msgid "mantra"
msgstr ""

#: includes/theme-setup.php:148
#, php-format
msgid "Page %s"
msgstr ""

#: includes/theme-setup.php:191
msgid "Skip to content"
msgstr ""

#: includes/theme-setup.php:227
msgid "Primary Widget Area - Sidebar 1"
msgstr ""

#: includes/theme-setup.php:229
msgid "Primary widget area - Sidebar 1"
msgstr ""

#: includes/theme-setup.php:238
msgid "Secondary Widget Area - Sidebar 1"
msgstr ""

#: includes/theme-setup.php:240
msgid "Secondary widget area - Sidebar 1"
msgstr ""

#: includes/theme-setup.php:249
msgid "Third Widget Area - Sidebar 2"
msgstr ""

#: includes/theme-setup.php:251
msgid "Third widget area - Sidebar 2"
msgstr ""

#: includes/theme-setup.php:260
msgid "Fourth Widget Area - Sidebar 2"
msgstr ""

#: includes/theme-setup.php:262
msgid "Fourth widget area  - Sidebar 2"
msgstr ""

#: includes/theme-setup.php:271
msgid "First Footer Widget Area"
msgstr ""

#: includes/theme-setup.php:273
msgid "First footer widget area"
msgstr ""

#: includes/theme-setup.php:282
msgid "Second Footer Widget Area"
msgstr ""

#: includes/theme-setup.php:284
msgid "Second footer widget area"
msgstr ""

#: includes/theme-setup.php:293
msgid "Third Footer Widget Area"
msgstr ""

#: includes/theme-setup.php:295
msgid "The third footer widget area"
msgstr ""

#: includes/theme-setup.php:304
msgid "Fourth Footer Widget Area"
msgstr ""

#: includes/theme-setup.php:306
msgid "The fourth footer widget area"
msgstr ""

#: includes/theme-setup.php:315 includes/theme-setup.php:317
msgid "Above content Widget Area"
msgstr ""

#: includes/theme-setup.php:326 includes/theme-setup.php:328
msgid "Below Content Widget Area"
msgstr ""

#: search.php:20
#, php-format
msgid "Search Results for: %s"
msgstr ""

#: search.php:39
#, php-format
msgid "No search results for: %s"
msgstr ""

#: searchform.php:11
msgid "Search for:"
msgstr ""

#: searchform.php:14
msgid "Search"
msgstr ""

#: sidebar.php:25 sidebar.php:92
msgid "Sidebar 1"
msgstr ""

#: sidebar.php:27 sidebar.php:94
#, php-format
msgid ""
"You currently have no widgets set in the primary sidebar. You can add "
"widgets via the <a href=\"%s\">Dashboard</a>."
msgstr ""

#: sidebar.php:28 sidebar.php:61 sidebar.php:95 sidebar.php:128
#, php-format
msgid ""
"To hide this sidebar, switch to a different Layout via the <a href=\"%s"
"\">Theme Settings</a>."
msgstr ""

#: sidebar.php:58 sidebar.php:125
msgid "Sidebar 2"
msgstr ""

#: sidebar.php:60 sidebar.php:127
#, php-format
msgid ""
"You currently have no widgets set in the secondary sidebar. You can add "
"widgets via the <a href=\"%s\">Dashboard</a>."
msgstr ""

#: single.php:52
msgid "View all posts by "
msgstr ""

#: tag.php:21
#, php-format
msgid "Tag Archives: %s"
msgstr ""