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
|
##########################################################################
#
# Languages supported by LyX.
#
# Syntax:
#
# Language <lyxname>
# GuiName "<Gui Name>"
# HasGuiSupport <true|false>
# BabelName <babelname>
# BabelProvide <0|1|2>
# BabelOpts "<language-specific options>"
# BabelOptFormat <format of option specification>
# PolyglossiaName <polyglossianame>
# PolyglossiaOpts "<language-specific options>"
# XindyName <xindyname>
# ActiveChars <activated characters>
# QuoteStyle <british|danish|english|french|frenchin|
# german|polish|russian|swedish|swedishg|swiss|hebrew|plain>
# DateFormats "<long>|<medium>|<short>"
# Encoding <encoding>
# FontEncoding <font encoding|font encoding|...>
# InternalEncoding <true|false>
# RTL <true|false>
# WordWrap <true|false>
# ImOffInMath <true|false>
# LangCode <language_code>
# LangVariety <language_variety>
# PreBabelPreamble
# <extra latex code inserted before babel>
# EndPreBabelPreamble
# PostBabelPreamble
# <extra latex code inserted after babel>
# EndPostBabelPreamble
# Requires <requirement>
# Provides <babel language feature>
# End
#
#
# NOTES:
#
# * If we provide Polyglossia languages with different options, the default
# options (such as "variant=american", "spelling=modern") should be
# explicitely spelled out (in order to provide mixing of such variants).
# * Omitted elements will be treated as empty (if string) or "false"
# (if boolean).
# * When HasGuiSupport is true, the language is candidate to appear in
# the list of possible GUI languages in the Preferences dialog. It
# will actually appear there only if a corresponding .mo file can be
# found among the translations. When several languages correspond to
# the same translation -- like English, English (US) and English
# (UK) -- try to select the entry that is most generic -- here
# English.
# * The QuoteStyle arguments correspond to the following styles:
# PRIMARY SECONDARY
# - british: `text' ``text'' (6_9 -- 66_99)
# - cjk: corner brackets white corner br.
# - cjk-angle: double angle br. angle br.
# - danish: >>text<< >text< (inward guillemets)
# - english: ``text'' `text' (66_99 -- 6_9)
# - french: <<text>> ``text'' (outward guillemets -- 66_99)
# - frenchin: <<text>> <<text>> (French Imprimerie Nationale style)
# - german: ,,text`` ,text` (99/66 -- 9/6)
# - hebrew: ''text,, 'text, (99/99 -- 9/9)
# - hungarian: ,,text'' >>text<< (99/99 -- double inward guillemets)
# - polish: ,,text'' ,text' (99/99 -- 9/9)
# - russian: <<text>> ,,text`` (outward guillemets -- 99/66)
# - swedish: ''text'' 'text' (99_99 -- 9_9)
# - swedishg: >>text>> 'text' (Swedish Guillemets)
# - swiss: <<text>> <text> (outward guillemets)
# - plain: "text" 'text' (non-typographical quotes)
# Note that the option names have been selected (rather arbitrarily)
# because the respective styles are common in the respective countries.
# Of course this does not imply any fixed relation to those countries.
# * DateFormats lists the localized conventions for three date forms:
# - Long: December 1, 2018
# - Medium: Dec 1, 2018
# - Short: 1/12/2018
# These are separated by | and use the QDate syntax:
# * d the day as number without a leading zero (1 to 31)
# * dd the day as number with a leading zero (01 to 31)
# * ddd the abbreviated localized day name (e.g. 'Mon' to 'Sun')
# * dddd the long localized day name (e.g. 'Monday' to 'Sunday')
# * M the month as number without a leading zero (1 to 12)
# * MM the month as number with a leading zero (01 to 12)
# * MMM the abbreviated localized month name (e.g. 'Jan' to 'Dec')
# * MMMM the long localized month name (e.g. 'January' to 'December')
# * yy the year as two digit number (00 to 99)
# * yyyy the year as four digit number
# * Encoding is the default encoding used with TeX fonts.
# It is only used if Document > Settings > Language > Encoding
# is set to "Language Default" or "Language Default (no inputenc)"
# and "use non-TeX fonts" is FALSE.
# Encoding "inherit" means: keep encoding of the context (used by
# latex_language).
# * FontEncoding is a bar-separated list of font encodings.
# The first value is the required font encoding for correct hyphenation with
# 8-bit TeX (http://www.hyphenation.org). Eventually following values may be
# used if the selected font is unavailable in FontEncoding. They provide all
# letters used in the language, but some only as "surrogate pairs" with
# possible problems for hyphenation and drag-and-drop from the generated
# documents. Default: "ASCII".
# * "FontEncoding ASCII" means: "works with any standard text encoding
# (T<n>) as well as OT1".
# * "FontEncoding none" tells LyX that fontenc should not be loaded with
# this language.
# * InternalEncoding is used to tell LyX that babel internally sets a
# non-standard font encoding (such as hebrew to LHE or greek to LGR).
# If True, LyX takes care for characters/macros that do not exist in
# some font encodings ("<", ">", "|" and straight quote).
# It is not required for standard encodings like T2A. See bug #5091.
# * WordWrap is only used for on-screen display: when is is true (the default), rows are broken
# at word boundary; otherwise, they can be ended at arbitrary position. This
# setting is useful for CJK languages.
# * ImOffInMath shows if the input method should be turned off in the math mode.
# It is applicable to the languages that use the input method.
# * LangCode is also used for spellchecking and thesaurus, where the
# dictionaries are named accordingly. Thus, check this when introducing/
# changing language codes (especially aspell, thesaurus).
# TODO: maybe use Best Current Practice (BCP 47) codes for LangCode
# http://www.rfc-editor.org/rfc/bcp/bcp47.txt
# http://www.w3.org/International/articles/language-tags/
# http://www.iana.org/assignments/language-subtag-registry
# * LangVariety is used by the aspell spellchecker to differentiate
# dictionaries for different varieties of a given language (e.g. German
# pre-1998 and post-1998 spelling). The aspell dictionaries are named
# language[_REGION][-variety].multi, e.g. de-alt.multi for "German (old
# spelling)" (see http://aspell.net/man-html/Dictionary-Naming.html)
# * Provides lists features that are provided by specific Babel languages,
# but are available globally if this language is used (not only for this
# language. Examples are \textgreek (Greek) and \textcyrillic (Russian).
# * ActiveChars provides a string of the characters that are made active
# by the language. We record particularly those characters that have to
# be de-activated in some contexts (such as - or =).
# * XindyName holds the value to the (te)xindy -L option. We only give it
# if a corresponding language module exists.
# * BabelProvide determines if and when a language should be loaded from
# babel *.ini files with babel. Possible values:
# 0 (= never, default), 1 (always), 2 (with Unicode engines/non-TeX fonts).
# The latter advises babel to ignore existing *.ldf files.
# * BabelOpts are comma separated, no matter how they shall be represented
# in the output.
# * BabelOptFormat specifies how the language-specific options shall be
# passed with babel (which differs between languages).
# You can use the placeholders $lang$ and $opts$ (as in
# \languageattribute{$lang$}{$opts$})
# The special value "modifier" indicates to use babel modifiers.
#
##########################################################################
#
# LyX-internal languages
#
Language ignore
GuiName "Ignore"
BabelName ignore
PolyglossiaName ignore
Encoding inherit
LangCode ignore
End
Language latex
GuiName "LaTeX"
Encoding inherit
LangCode latex
End
#
# Real languages
#
Language afrikaans
GuiName "Afrikaans"
BabelName afrikaans
PolyglossiaName afrikaans
QuoteStyle polish
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd MMMM yyyy|dd MMM yyyy|yyyy/MM/dd"
LangCode af_ZA
End
# FontEncoding: no hyphenation, but uses Ç/ç und Ë/ë
Language albanian
GuiName "Albanian"
BabelName albanian
# babel-albanian (albanian.ldf) (re-)defines the functions
# \sh \ch \th \cth \arsh \arch \arth \arcth \tg \ctg \arctg
# as math operators. This clashes with \th == letter thorn
# in font encoding T1
PostBabelPreamble
% fix albanian: restore \th as LATIN LETTER THORN
\@ifl@aded{def}{t1enc}{\DeclareTextSymbol{\th}{T1}{254}}{}
EndPostBabelPreamble
PolyglossiaName albanian
XindyName albanian
QuoteStyle swiss
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd/MM/yyyy"
LangCode sq_AL
End
Language american
GuiName "English (USA)"
BabelName american
PolyglossiaName english
PolyglossiaOpts "variant=american"
XindyName english
QuoteStyle english
Encoding iso8859-15
FontEncoding ASCII
DateFormats "MMMM dd, yyyy|MMM dd, yyyy|M/d/yyyy"
LangCode en_US
End
Language amharic
GuiName "Amharic"
BabelName amharic
BabelProvide 1
PolyglossiaName amharic
Encoding utf8
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd/MM/yyyy"
LangCode am_ET
End
# In Babel, this is supported since v. 1.8a of babel-greek (2013-12-03)
# We introduce it with LyX 2.2 to give the support time to settle.
Language ancientgreek
GuiName "Greek (ancient)"
BabelName ancientgreek
BabelProvide 1
PolyglossiaName greek
PolyglossiaOpts "variant=ancient"
XindyName greek
QuoteStyle french
Encoding iso8859-7
InternalEncoding true
FontEncoding LGR
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd/MM/yyyy"
LangCode grc_GR
Provides textgreek
End
# FIXME: dummy babel language for arabic_arabtex to be able
# to switch the language the way of the ArabTeX-package
Language arabic_arabtex
GuiName "Arabic (ArabTeX, only with TeX fonts)"
HasGuiSupport true
BabelName arabtex
QuoteStyle french
Encoding cp1256
DateFormats "d MMMM، yyyy|dd/MM/yyyy|d/M/yyyy"
RTL true
LangCode ar_SA
End
# polyglossia uses "Arabic" for the lang environment
Language arabic_arabi
GuiName "Arabic (Arabi or non-TeX fonts)"
BabelName arabic
BabelProvide 2
PolyglossiaName arabic
QuoteStyle french
Encoding cp1256
FontEncoding LAE
DateFormats "d MMMM، yyyy|dd/MM/yyyy|d/M/yyyy"
RTL true
PostBabelPreamble
\@ifundefined{if@rl}{}{
% arabic + hyperref redefines \noboundary as local textcommand
\let\orig@noboundary\noboundary
\DeclareTextCommandDefault{\noboundary}{\orig@noboundary}
% work around too simple test for article-like classes in arabicore.sty
\@ifundefined{chapter}{
\def\thesection{\protect\if@rl\protect\I{\number\c@section}%
\protect\else\protect\textLR{\number\c@section}%
\protect\fi}
\def\thesubsection{\protect\if@rl\protect\I{\number\c@subsection.\number\c@section}%
\protect\else\protect\textLR{\number\c@section.\number\c@subsection}%
\protect\fi}
\def\thetable{\protect\if@rl\protect\I{\number\c@table}%
\protect\else\protect\textLR{\number\c@table}%
\protect\fi}
\def\thefigure{\protect\if@rl\protect\I{\number\c@figure}%
\protect\else\protect\textLR{\number\c@figure}%
\protect\fi}
}{}
}
EndPostBabelPreamble
LangCode ar_SA
End
Language armenian
GuiName "Armenian"
BabelName armenian
BabelProvide 1
PolyglossiaName armenian
QuoteStyle swiss
Encoding utf8
DateFormats "d MMMM، yyyy|d MMM، yyyy|d/M/yyyy"
LangCode hy_AM
End
Language asturian
GuiName "Asturian"
BabelName asturian
BabelProvide 1
PolyglossiaName asturian
QuoteStyle french
Encoding iso8859-15
DateFormats "d 'de' MMMM 'de' yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode ast_ES
End
Language australian
GuiName "English (Australia)"
BabelName australian
PolyglossiaName english
PolyglossiaOpts "variant=australian"
XindyName english
Encoding iso8859-15
FontEncoding ASCII
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
QuoteStyle english
LangCode en_AU
End
# In polyglossia, this is supported since release 1.33.4 (May 2014)
# Due to the variety, we use no country code.
Language austrian
GuiName "German (Austria, old spelling)"
BabelName austrian
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=austrian,spelling=old,babelshorthands=true"
XindyName german-duden
QuoteStyle german
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de
LangVariety alt
End
# In polyglossia, this is supported since release 1.33.4 (May 2014)
Language naustrian
GuiName "German (Austria)"
BabelName naustrian
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=austrian,spelling=new,babelshorthands=true"
XindyName german-duden
QuoteStyle german
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de_AT
End
Language azerbaijani
GuiName "Azerbaijani"
BabelName azerbaijani
QuoteStyle russian
Encoding iso8859-9
FontEncoding T2A,T1
DateFormats "d MMMM yyyy|dd.MMM.yyyy|dd.MM.yyyy"
LangCode az_AZ
Requires textschwa
# use \cyrschwa in T1, allow hyphenation in remainder of word
PostBabelPreamble
\DeclareTextCommand{\textschwa}{T1}{\cyrschwa\bbl@allowhyphens}
\DeclareTextCommand{\textSchwa}{T1}{\CYRSCHWA\bbl@allowhyphens}
EndPostBabelPreamble
End
Language bahasa
GuiName "Indonesian"
HasGuiSupport true
BabelName bahasa
PolyglossiaName malay
PolyglossiaOpts "variant=indonesian"
QuoteStyle english
Encoding iso8859-15
FontEncoding ASCII
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode id_ID
End
Language bahasam
GuiName "Malay"
BabelName bahasam
PolyglossiaName malay
PolyglossiaOpts "variant=malaysian"
QuoteStyle english
Encoding iso8859-15
DateFormats "dd MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode ms_MY
End
Language basque
GuiName "Basque"
HasGuiSupport true
BabelName basque
PolyglossiaName basque
QuoteStyle swiss
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "yyyy MMMM dd|yyyy MMM dd|yyyy/MM/dd"
LangCode eu_ES
PostBabelPreamble
\addto\extrasbasque{\bbl@deactivate{~}}
EndPostBabelPreamble
End
# Up to 2018-08-25 (babel-belarusian 1.4), the babel option is "belarusianb"
# but the language name "belarusian" (without trailing "b").
Language belarusian
GuiName "Belarusian"
BabelName belarusian
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName belarusian
XindyName belarusian
QuoteStyle french
Encoding cp1251
FontEncoding T2A
DateFormats "dd MMMM yyyy|d MMM yyyy|d.M.yyyy"
LangCode be_BY
End
# supported by polyglossia but not babel:
Language bengali
GuiName "Bengali"
BabelName bengali
BabelProvide 1
PolyglossiaName bengali
QuoteStyle english
Encoding utf8
LangCode be_IN
End
# The (rarely used) Cyrillic script is not supported (try serbian).
Language bosnian
GuiName "Bosnian"
BabelName bosnian
PolyglossiaName bosnian
QuoteStyle polish
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|yyyy-MM-dd"
LangCode bs_BA
End
Language brazilian
GuiName "Portuguese (Brazil)"
HasGuiSupport true
BabelName brazil
PolyglossiaName portuguese
PolyglossiaOpts "variant=brazilian"
XindyName portuguese
QuoteStyle english
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'de' MMMM 'de' yyyy|d 'de' MMM 'de' yyyy|dd/MM/yyyy"
LangCode pt_BR
End
# FontEncoding: # ? no hyphenation, but uses ñ
Language breton
GuiName "Breton"
BabelName breton
PolyglossiaName breton
QuoteStyle french
Encoding iso8859-15
#FontEncoding T1
DateFormats "dd MMMM yyyy|d MMM yyyy|yyyy-MM-dd"
LangCode br_FR
End
Language british
GuiName "English (UK)"
BabelName british
PolyglossiaName english
PolyglossiaOpts "variant=british"
XindyName english
QuoteStyle british
Encoding iso8859-15
FontEncoding ASCII
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode en_GB
End
Language bulgarian
GuiName "Bulgarian"
HasGuiSupport true
BabelName bulgarian
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName bulgarian
XindyName bulgarian
QuoteStyle german
Encoding cp1251
FontEncoding T2A
DateFormats "dd MMMM yyyy|d MMM yyyy|yyyy-M-d"
LangCode bg_BG
Provides textcyrillic
End
Language canadian
GuiName "English (Canada)"
BabelName canadian
PolyglossiaName english
PolyglossiaOpts "variant=canadian"
XindyName english
QuoteStyle english
Encoding iso8859-15
FontEncoding ASCII
DateFormats "MMMM d, yyyy|d MMM yyyy|yyyy-MM-dd"
LangCode en_CA
End
Language canadien
GuiName "French (Canada)"
BabelName acadian
PolyglossiaName french
PolyglossiaOpts "variant=canadian"
ActiveChars ;!?:
XindyName french
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|yyyy-MM-dd"
LangCode fr_CA
End
Language catalan
GuiName "Catalan"
HasGuiSupport true
BabelName catalan
PolyglossiaName catalan
PolyglossiaOpts "babelshorthands=true"
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d / MMMM / yyyy|d / MMM / yyyy|dd/MM/yyyy"
LangCode ca_ES
End
# uses CJK package
Language chinese-simplified
GuiName "Chinese (simplified)"
HasGuiSupport true
PolyglossiaName chinese
PolyglossiaOpts "variant=simplified"
Encoding euc-cn
QuoteStyle english
WordWrap false
ImOffInMath true
LangCode zh_CN
DateFormats "yyyy年M月d日|yyyy-M-d|yy-M-d"
Requires CJK
End
# uses CJK package
Language chinese-traditional
GuiName "Chinese (traditional)"
HasGuiSupport true
PolyglossiaName chinese
PolyglossiaOpts "variant=traditional"
QuoteStyle cjk
Encoding utf8-cjk
WordWrap false
ImOffInMath true
LangCode zh_TW
DateFormats "yyyy年M月d日|yyyy年M月d日|yy年M月d日"
Requires CJK
End
Language churchslavonic
GuiName "Church Slavonic"
BabelName churchslavic
BabelProvide 1
PolyglossiaName churchslavonic
QuoteStyle swiss
Encoding utf8
FontEncoding T2A
DateFormats "d MMMM yyyy 'л'.|d MMM yyyy 'л'.|dd.MM.yyyy"
LangCode cu
Provides textcyrillic
End
# FIXME DateFormats
Language coptic
GuiName "Coptic"
BabelName coptic
BabelProvide 1
PolyglossiaName coptic
Encoding utf8
LangCode cop_EG
End
Language croatian
GuiName "Croatian"
BabelName croatian
PolyglossiaName croatian
XindyName croatian
QuoteStyle polish
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy.|d. MMM. yyyy.|dd.MM.yyyy."
LangCode hr_HR
End
Language czech
GuiName "Czech"
HasGuiSupport true
BabelName czech
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName czech
XindyName czech
QuoteStyle german
ActiveChars -
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM. yyyy|d.M.yyyy"
LangCode cs_CZ
End
Language danish
GuiName "Danish"
HasGuiSupport true
BabelName danish
PolyglossiaName danish
XindyName danish
QuoteStyle danish
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd/MM/yyyy"
LangCode da_DK
End
# babel only provides a "bare minimum locale"
Language divehi
GuiName "Divehi (Maldivian)"
BabelName divehi
BabelProvide 1
PolyglossiaName divehi
Encoding utf8
DateFormats "yyyy MMMM dd|yyyy MMM dd|dd/MM/yyyy"
LangCode dv_MV
End
Language dutch
GuiName "Dutch"
HasGuiSupport true
BabelName dutch
PolyglossiaName dutch
PolyglossiaOpts "babelshorthands=true"
XindyName dutch
QuoteStyle polish
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|d-M-yyyy"
LangCode nl_NL
End
Language english
GuiName "English"
HasGuiSupport true
BabelName english
PolyglossiaName english
PolyglossiaOpts "variant=american"
XindyName english
QuoteStyle english
DateFormats "MMMM dd, yyyy|MMM dd, yyyy|M/d/yyyy"
Encoding iso8859-15
FontEncoding ASCII
LangCode en_US
End
# Esperanto has no country code because it is an auxiliary language.
# We therefore use the name of its hunspell dictionary.
Language esperanto
GuiName "Esperanto"
BabelName esperanto
PolyglossiaName esperanto
XindyName esperanto
QuoteStyle english
Encoding iso8859-3
FontEncoding IL3|T1|OT1
DateFormats "'la' d 'de' MMMM yyyy|'la' d 'de' MMM yyyy|MM/dd/yyyy"
LangCode eo_EO
End
Language estonian
GuiName "Estonian"
BabelName estonian
BabelOpts notilde
BabelOptFormat modifier
PolyglossiaName estonian
XindyName estonian
QuoteStyle german
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|dd.MM.yyyy"
LangCode et_EE
End
# the preamble definitions are only used due to bugs in the
# arabi-package -- remove them if they become unnecessary!
Language farsi
GuiName "Farsi"
BabelName farsi
BabelProvide 2
PolyglossiaName persian
XindyName persian
Encoding utf8
FontEncoding LAE,LFE
DateFormats "d MMMM yyyy|d MMM yyyy|yyyy/M/d"
RTL true
LangCode fa_IR
QuoteStyle english
PostBabelPreamble
\DeclareTextSymbol{\guillemotright}{LFE}{62}
\DeclareTextSymbol{\guillemotleft}{LFE}{60}
EndPostBabelPreamble
End
Language finnish
GuiName "Finnish"
HasGuiSupport true
BabelName finnish
PolyglossiaName finnish
XindyName finnish
QuoteStyle swedish
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|d.M.yyyy"
LangCode fi_FI
End
Language french
GuiName "French"
HasGuiSupport true
BabelName french
BabelOptFormat \frenchsetup{$opts§}
ActiveChars ;!?:
PolyglossiaName french
PolyglossiaOpts "variant=french"
XindyName french
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode fr_FR
End
Language friulan
GuiName "Friulian"
HasGuiSupport true
BabelName friulan
PolyglossiaName friulian
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'di' MMMM 'dal' yyyy|d 'di' MMM 'dal' yyyy|dd/MM/yyyy"
LangCode fur_IT
End
Language galician
GuiName "Galician"
HasGuiSupport true
BabelName galician
PolyglossiaName galician
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'de' MMMM 'de' yyyy|d 'de' MMM 'de' yyyy|dd/MM/yyyy"
LangCode gl_ES
PostBabelPreamble
\addto\shorthandsgalician{\galiciandeactivate{~}}
EndPostBabelPreamble
End
# FIXME DateFormats
Language georgian
GuiName "Georgian"
BabelName georgian
PolyglossiaName georgian
XindyName georgian
QuoteStyle german
Encoding utf8
FontEncoding T8M
LangCode ka_GE
End
# german does not use a country code (due to the variety)
Language german
GuiName "German (old spelling)"
BabelName german
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=german,spelling=old,babelshorthands=true"
XindyName german-duden
QuoteStyle german
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de
LangVariety alt
End
Language ngerman
GuiName "German"
HasGuiSupport true
BabelName ngerman
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=german,spelling=new,babelshorthands=true"
XindyName german-duden
QuoteStyle german
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de_DE
End
# In Babel, this is supported since release 2.7 of babel-german (Dec 2013)
# We introduce it with LyX 2.2 to give the support time to settle.
# In polyglossia, this is supported since release 1.33.6 (May 2015)
# We introduce it with LyX 2.3 to give the support time to settle.
Language german-ch
GuiName "German (Switzerland)"
BabelName nswissgerman
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=swiss,spelling=new,babelshorthands=true"
XindyName german-duden
QuoteStyle swiss
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de_CH
End
# In Babel, this is supported since release 2.7 of babel-german (Dec 2013)
# In polyglossia, this is supported since release 1.33.6 (May 2015)
# We introduce it with LyX 2.3 to give the support time to settle.
Language german-ch-old
GuiName "German (Switzerland, old spelling)"
BabelName swissgerman
BabelOptFormat modifier
PolyglossiaName german
PolyglossiaOpts "variant=swiss,spelling=old,babelshorthands=true"
XindyName german-duden
QuoteStyle swiss
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|dd. MMM yyyy|dd.MM.yyyy"
LangCode de_CH
End
Language greek
GuiName "Greek"
HasGuiSupport true
BabelName greek
BabelOptFormat modifier
PolyglossiaName greek
PolyglossiaOpts "variant=monotonic"
XindyName greek
QuoteStyle french
Encoding iso8859-7
InternalEncoding true
FontEncoding LGR
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd/MM/yyyy"
LangCode el_GR
Provides textgreek
End
Language polutonikogreek
GuiName "Greek (polytonic)"
BabelName polutonikogreek
BabelOptFormat modifier
PolyglossiaName greek
PolyglossiaOpts "variant=polytonic"
XindyName greek
QuoteStyle french
Encoding iso8859-7
InternalEncoding true
FontEncoding LGR
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd/MM/yyyy"
LangCode el_GR
Provides textgreek
End
Language hebrew
GuiName "Hebrew"
HasGuiSupport true
BabelName hebrew
BabelProvide 2
PolyglossiaName hebrew
XindyName hebrew
Encoding cp1255
QuoteStyle hebrew
InternalEncoding true
# babel-hebrew expects the encoding for *other* languages last:
FontEncoding HE8,T1|LHE,T1
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
RTL true
LangCode he_IL
End
Language hindi
GuiName "Hindi"
BabelName hindi
BabelProvide 1
PolyglossiaName hindi
Encoding utf8
DateFormats "dd MMMM yyyy|dd MMM yyyy|dd-MM-yyyy"
LangCode hi_IN
End
# FontEncoding: OT1 misses ð and Þ
Language icelandic
GuiName "Icelandic"
BabelName icelandic
BabelOptFormat modifier
PolyglossiaName icelandic
XindyName icelandic
QuoteStyle german
Encoding iso8859-15
FontEncoding T1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd.MM.yyyy"
LangCode is_IS
End
# Interlingua has no official country code because it is an auxiliary
# language. We use the name of its hunspell dictionary.
Language interlingua
GuiName "Interlingua"
HasGuiSupport true
BabelName interlingua
PolyglossiaName interlingua
Encoding iso8859-15
FontEncoding ASCII
LangCode ia_IA
DateFormats "'le' d 'de' MMMM yyyy|'le' d 'de' MMM yyyy|yyyy-mm-dd"
QuoteStyle english
End
Language irish
GuiName "Irish"
BabelName irish
PolyglossiaName gaelic
PolyglossiaOpts "variant=irish"
QuoteStyle english
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd/MM/yyyy"
LangCode ga_IE
End
Language italian
GuiName "Italian"
HasGuiSupport true
BabelName italian
PolyglossiaName italian
XindyName italian
QuoteStyle french
Encoding iso8859-15
FontEncoding ASCII
DateFormats "dd MMMM yyyy|dd/MMM/yyyy|dd/MM/yyyy"
LangCode it_IT
End
# Since 2016-12-18, babel-japanese works with non-TeX fonts (Xe/LuaTeX), too
# (use with "Japanese (bxjs)" or standard document classes)
Language japanese
GuiName "Japanese"
HasGuiSupport true
BabelName japanese
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName japanese
Encoding jis-platex
WordWrap false
ImOffInMath true
LangCode ja_JP
Requires japanese
FontEncoding ASCII
DateFormats "yyyy年M月d日|yyyy/MM/dd|yy/MM/dd"
QuoteStyle english
End
# uses CJK package
Language japanese-cjk
GuiName "Japanese (CJK, only with TeX fonts)"
Encoding euc-jp
DateFormats "yyyy年M月d日|yyyy/MM/dd|yy/MM/dd"
WordWrap false
ImOffInMath true
LangCode ja_JP
Requires CJK
QuoteStyle cjk
End
Language kannada
GuiName "Kannada"
BabelName kannada
BabelProvide 1
PolyglossiaName kannada
Encoding utf8
DateFormats "dd MMMM yyyy|dd MMMM yyyy|dd-MM-yyyy"
LangCode kn_IN
End
# not yet supported by polyglossia
Language kazakh
GuiName "Kazakh"
BabelName kazakh
BabelProvide 1
Encoding ascii
# FontEncoding T2A # not set (no Babel support)
DateFormats "dd MMMM yyyy|dd MMMM yyyy|yyyy-dd-MM"
LangCode kk_KZ
End
Language khmer
GuiName "Khmer"
BabelName khmer
BabelProvide 1
PolyglossiaName khmer
Encoding utf8
DateFormats "d MMMM yyyy|d MMMM yyyy|dd/MM/yyyy"
LangCode km_KH
End
Language korean
GuiName "Korean"
PolyglossiaName korean
XindyName korean
Encoding euc-kr
QuoteStyle cjkangle
DateFormats "yyyy년 M월 d일|yyyy. M. d.|yy. M. d."
WordWrap false
ImOffInMath true
LangCode ko_KR
Requires CJK
End
# Language korean-kotex
# GuiName "Korean (koTeX)"
# Encoding utf8
# QuoteStyle cjkangle
# DateFormats "yyyy년 M월 d일|yyyy. M. d.|yy. M. d."
# LangCode ko_KR
# Requires kotex
# End
Language kurmanji
GuiName "Kurdish (Kurmanji)"
BabelName kurmanji
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName kurdish
PolyglossiaOpts "variant=kurmanji"
XindyName kurdish-bedirxan
Encoding utf8
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. M. yyyy|yyyy-MM-dd"
LangCode kmr
End
Language sorani
GuiName "Kurdish (Sorani)"
BabelName sorani
BabelProvide 1
PolyglossiaName kurdish
PolyglossiaOpts "variant=sorani"
XindyName kurdish-bedirxan
Encoding utf8
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. M. yyyy|yyyy-MM-dd"
LangCode ckb
End
Language lao
GuiName "Lao"
BabelName lao
BabelProvide 1
PolyglossiaName lao
Encoding utf8
DateFormats "dd MMMM yyyy|dd MMMM yyyy|dd/MM/yyyy"
LangCode lo_LA
End
# There is no country code for Latin.
# We therefore use the name of its hunspell dictionary.
# FIXME DateFormats
Language latin
GuiName "Latin (Modern)"
BabelName latin
BabelOptFormat modifier
PolyglossiaName latin
PolyglossiaOpts "variant=modern"
XindyName latin
ActiveChars ^=
Encoding iso8859-15
FontEncoding T1|OT1
LangCode la
End
Language latin-classic
GuiName "Latin (Classic)"
BabelName classiclatin
BabelOptFormat modifier
PolyglossiaName latin
PolyglossiaOpts "variant=classic"
XindyName latin
ActiveChars ^=
Encoding iso8859-15
FontEncoding T1|OT1
LangCode la-x-classic
End
Language latin-ecclesiastic
GuiName "Latin (Ecclesiastic)"
BabelName ecclesiasticlatin
BabelOptFormat modifier
PolyglossiaName latin
PolyglossiaOpts "variant=ecclesiastic"
XindyName latin
ActiveChars ^=
Encoding iso8859-15
FontEncoding T1|OT1
LangCode la-x-ecclesia
End
Language latin-medieval
GuiName "Latin (Medieval)"
BabelName medievallatin
BabelOptFormat modifier
PolyglossiaName latin
PolyglossiaOpts "variant=medieval"
XindyName latin
ActiveChars ^=
Encoding iso8859-15
FontEncoding T1|OT1
LangCode la-x-medieval
End
# latvian must be loaded locally with babel options,
# not globally via class options
# FontEncoding: L7x required for hyphenation but not set by Babel
Language latvian
GuiName "Latvian"
BabelName latvian
BabelOptFormat modifier
PolyglossiaName latvian
XindyName latvian
QuoteStyle german
Encoding iso8859-4
FontEncoding L7x|T1|OT1
DateFormats "yyyy. 'gada' d. MMMM|yyyy. 'gada' d. MMM|dd.MM.yyyy"
LangCode lv_LV
End
# FontEncoding: L7x required for hyphenation but no longer set by Babel
# (since 2017-12-06)
Language lithuanian
GuiName "Lithuanian"
BabelName lithuanian
PolyglossiaName lithuanian
XindyName lithuanian
QuoteStyle german
Encoding iso8859-13
FontEncoding L7x
# L7x defines \copyright as TextSymbol which leads to an endless loop
# when it is used in other font encodings.
PostBabelPreamble
\@ifl@aded{def}{l7xenc}{
% restore corrupted \coyright definition
\DeclareRobustCommand{\copyright}{%
\ifmmode{\nfss@text{\textcopyright}}\else\textcopyright\fi
}
% Switch to L7x and back
\addto\extraslithuanian{
\let\bbl@lithuanian@cfencoding\cf@encoding
\fontencoding{L7x}\selectfont
\def\encodingdefault{L7x}
}
\addto\noextraslithuanian{
\def\encodingdefault{\bbl@lithuanian@cfencoding}
\fontencoding{\encodingdefault}\selectfont
}
}{}
EndPostBabelPreamble
DateFormats "yyyy 'm.' MMMM d 'd.'|yyyy 'm.' MMMM d 'd.'|yyyy-MM-dd"
LangCode lt_LT
End
Language lowersorbian
GuiName "Lower Sorbian"
BabelName lowersorbian
PolyglossiaName sorbian
PolyglossiaOpts "variant=lower"
XindyName lower-sorbian
QuoteStyle german
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|dd.MM.yyyy"
LangCode dsb_DE
End
Language magyar
GuiName "Hungarian"
HasGuiSupport true
BabelName magyar
BabelOptFormat \magyarOptions{$opts§}
PolyglossiaName hungarian
XindyName hungarian
QuoteStyle hungarian
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "yyyy. MMMM d.|yyyy. MMM d.|yyyy.MM.dd."
LangCode hu_HU
End
Language macedonian
GuiName "Macedonian"
BabelName macedonian
PolyglossiaName macedonian
XindyName macedonian
QuoteStyle german
Encoding cp1251
FontEncoding T2A
DateFormats "dd MMMM yyyy|d MMM yyyy|d.M.yyyy"
LangCode mk_MK
Provides textcyrillic
End
Language malayalam
GuiName "Malayalam"
BabelName malayalam
BabelProvide 1
PolyglossiaName malayalam
Encoding utf8
QuoteStyle english
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode ml_IN
End
Language marathi
GuiName "Marathi"
BabelName marathi
BabelProvide 1
PolyglossiaName marathi
Encoding utf8
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode mr_IN
End
# mongolian must be loaded locally with babel options,
# not globally via class options
Language mongolian
GuiName "Mongolian"
BabelName mongolian
PolyglossiaName mongolian
XindyName mongolian
Encoding utf8
FontEncoding T2A
DateFormats "yyyy оны M сарын d|d-M-yyyy|dd-MM-yyyy"
LangCode mn_MN
Provides textcyrillic
End
Language newzealand
GuiName "English (New Zealand)"
BabelName newzealand
PolyglossiaName english
PolyglossiaOpts "variant=newzealand"
XindyName english
QuoteStyle english
Encoding iso8859-15
FontEncoding ASCII
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode en_NZ
End
Language nko
GuiName "N'Ko"
BabelName nko
BabelProvide 1
PolyglossiaName nko
QuoteStyle swiss
Encoding utf8
# FIXME: DateFormats "d MMMM، yyyy|dd/MM/yyyy|d/M/yyyy"
# see gloss-nko.ldf
RTL true
LangCode nqo
End
Language norsk
GuiName "Norwegian (Bokmaal)"
HasGuiSupport true
BabelName norsk
PolyglossiaName norwegian
PolyglossiaOpts "variant=bokmal"
XindyName norwegian
QuoteStyle swiss
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd./MM./yyyy"
LangCode nb_NO
End
Language nynorsk
GuiName "Norwegian (Nynorsk)"
HasGuiSupport true
BabelName nynorsk
PolyglossiaName norwegian
PolyglossiaOpts "variant=nynorsk"
XindyName norwegian
QuoteStyle swiss
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd.MM.yyyy"
LangCode nn_NO
End
Language occitan
GuiName "Occitan"
BabelName occitan
PolyglossiaName occitan
QuoteStyle french
Encoding utf8
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode oc_FR
End
Language odia
GuiName "Odia"
BabelName odia
BabelProvide 1
PolyglossiaName odia
Encoding utf8
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode or
End
# Russian orthography from the Petrine orthographic reforms of
# 1708 to the 1917 orthographic reform
Language oldrussian
GuiName "Russian (Petrine orthography)"
BabelName russian
BabelOpts ancient
BabelOptFormat modifier
PolyglossiaName russian
PolyglossiaOpts "spelling=old"
XindyName russian
QuoteStyle russian
Encoding koi8-r
FontEncoding T2A
LangCode ru_petr1708
End
# FIXME DateFormats
Language piedmontese
GuiName "Piedmontese"
HasGuiSupport true
BabelName piedmontese
PolyglossiaName piedmontese
QuoteStyle french
Encoding iso8859-15
FontEncoding ASCII
LangCode pms_IT
End
# FontEncoding: QX required for hyphenation but not set by babel
Language polish
GuiName "Polish"
HasGuiSupport true
BabelName polish
PolyglossiaName polish
XindyName polish
QuoteStyle polish
Encoding iso8859-2
FontEncoding QX|T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|yyyy-MM-dd"
LangCode pl_PL
End
Language portuguese
GuiName "Portuguese"
HasGuiSupport true
BabelName portuges
PolyglossiaName portuguese
PolyglossiaOpts "variant=portuguese"
XindyName portuguese
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'de' MMMM 'de' yyyy|d 'de' MMM 'de' yyyy|yyyy/MM/dd"
LangCode pt_PT
End
Language punjabi
GuiName "Punjabi"
BabelName punjabi
BabelProvide 1
PolyglossiaName punjabi
Encoding utf8
DateFormats "dd MMMM yyyy|dd MMMM yyyy|dd-MM-yyyy"
LangCode pa
End
Language romanian
GuiName "Romanian"
HasGuiSupport true
BabelName romanian
PolyglossiaName romanian
XindyName romanian
QuoteStyle polish
Encoding iso8859-16
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|dd.MM.yyyy"
LangCode ro_RO
End
Language romansh
GuiName "Romansh"
HasGuiSupport true
BabelName romansh
PolyglossiaName romansh
QuoteStyle german
Encoding iso8859-15
FontEncoding ASCII
DateFormats "d MMMM yyyy|d MMM yyyy|dd.MM.yyyy"
LangCode rm_CH
End
Language russian
GuiName "Russian"
HasGuiSupport true
BabelName russian
BabelOptFormat modifier
PolyglossiaName russian
PolyglossiaOpts "spelling=modern"
XindyName russian
QuoteStyle russian
Encoding koi8-r
FontEncoding T2A
DateFormats "d MMMM yyyy 'г'.|d MMM yyyy 'г'.|dd.MM.yyyy"
LangCode ru_RU
Provides textcyrillic
End
# FontEncoding: no hyphenation, but diacritics
Language samin
GuiName "North Sami"
BabelName samin
PolyglossiaName sami
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "MMMM d. 'b'. yyyy|MMM d. 'b'. yyyy|d.M.yyyy"
LangCode se_NO
End
Language sanskrit
GuiName "Sanskrit"
PolyglossiaName sanskrit
BabelName sanskrit
BabelProvide 1
Encoding utf8
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode sa_IN
End
# Gaidhlig (Scottish Gaelic)
# FontEncoding: no hyphenation, grave accent (à, è, ì, ò, ù)
Language scottish
GuiName "Scottish Gaelic"
BabelName scottish
PolyglossiaName gaelic
PolyglossiaOpts "variant=scottish"
QuoteStyle english
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "dd MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode gd_GB
End
# Serbian with Cyrillic script.
# Up to Version 3.0 (2019-01-12), input encoding and
# font encoding were set document-wide to "utf8x" and "T2A" respectively
# by "babel-serbianc", overriding LyX settings and leading to errors
# in mulit-lingual documents.
Language serbian
GuiName "Serbian"
HasGuiSupport true
BabelName serbianc
BabelOptFormat modifier
PolyglossiaName serbian
PolyglossiaOpts "script=cyrillic"
XindyName serbian
# Note: script option is uppercase, even if the polyglossia
# manual states otherwise.
QuoteStyle polish
Encoding utf8
FontEncoding T2A
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd.MM.yyyy"
LangCode sr_RS
End
# We use croatian for Latin Serbian index ordering
Language serbian-latin
GuiName "Serbian (Latin)"
BabelName serbian
BabelOptFormat modifier
PolyglossiaName serbian
PolyglossiaOpts "script=latin"
XindyName croatian
QuoteStyle polish
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|dd.MM.yyyy"
LangCode sr_RS-Latin
End
Language slovak
GuiName "Slovak"
HasGuiSupport true
BabelName slovak
BabelOptFormat \languageattribute{$lang$}{$opts$}
PolyglossiaName slovak
XindyName slovak-large
QuoteStyle german
ActiveChars -^
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d. MMMM yyyy|d. MMM yyyy|d.M.yyyy"
LangCode sk_SK
End
Language slovene
GuiName "Slovene"
BabelName slovene
PolyglossiaName slovenian
XindyName slovenian
QuoteStyle german
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "dd. MMMM yyyy|d. MMM yyyy|d.M.yyyy"
LangCode sl_SI
End
Language spanish
GuiName "Spanish"
HasGuiSupport true
BabelName spanish
BabelOpts "notilde, noquoting, nodecimaldot"
BabelOptFormat modifier
PolyglossiaName spanish
PolyglossiaOpts "variant=spanish"
XindyName spanish-modern
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'de' MMMM 'de' yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode es_ES
End
# there are no spanish shorthands in polyglossia
Language spanish-mexico
GuiName "Spanish (Mexico)"
BabelName mexican
BabelProvide 1
PolyglossiaName spanish
PolyglossiaOpts "variant=mexican"
XindyName spanish-modern
QuoteStyle french
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d 'de' MMMM 'de' yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode es_MX
End
Language swedish
GuiName "Swedish"
HasGuiSupport true
BabelName swedish
PolyglossiaName swedish
XindyName swedish
QuoteStyle swedish
Encoding iso8859-15
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|yyyy-MM-dd"
LangCode sv_SE
End
Language syriac
GuiName "Syriac"
BabelName syriac
BabelProvide 1
PolyglossiaName syriac
Encoding utf8
RTL true
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode syr_SY
End
Language tamil
GuiName "Tamil"
BabelName tamil
BabelProvide 1
PolyglossiaName tamil
Encoding utf8
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode ta_IN
End
Language telugu
GuiName "Telugu"
BabelName telugu
BabelProvide 1
PolyglossiaName telugu
Encoding utf8
DateFormats "dd MMMM yyyy|d MMM yyyy|dd-MM-yyyy"
LangCode te_IN
End
# There is an alternative support with CJK package and Babel name "thaicjk".
Language thai
GuiName "Thai"
BabelName thai
PolyglossiaName thai
QuoteStyle english
Encoding tis620-0
FontEncoding LTH
DateFormats "dd MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
LangCode th_TH
# The first workaround requires loading inputenc after babel
# (cf. BufferParams.cpp):
PostBabelPreamble
% Restore catcodes changed by thai.ldf (active characters required for inputenc)
\@tempcnta=161%
\@whilenum\@tempcnta<252\do{%
\catcode\@tempcnta=13
\advance\@tempcnta\@ne
}%
% Restore \coyright definition corrupted by lthenc.def
\DeclareRobustCommand{\copyright}{%
\ifmmode{\nfss@text{\textcopyright}}\else\textcopyright\fi}
\DeclareTextSymbol{\textcopyright}{LTH}{8}
%
% set up Thai fonts as substitue for the default families
% The 'substitutefont' package is obsolete now, since commands
% from the LaTeX kernel can be used instead. See here:
% https://ctan.org/pkg/substitutefont
% https://www.latex-project.org/news/latex2e-news/ltnews31.pdf
\providecommand\IfFormatAtLeastTF{\@ifl@t@r\fmtversion}
\IfFormatAtLeastTF{2020/02/01}{%
\DeclareFontFamilySubstitution{LTH}{\rmdefault}{norasi}
\DeclareFontFamilySubstitution{LTH}{\sfdefault}{garuda}
\DeclareFontFamilySubstitution{LTH}{\ttdefault}{ttypist}
}{%
\usepackage{substitutefont}
\substitutefont{LTH}{\rmdefault}{norasi}
\substitutefont{LTH}{\sfdefault}{garuda}
\substitutefont{LTH}{\ttdefault}{ttypist}
}
EndPostBabelPreamble
End
#FIXME DateFormats
Language tibetan
GuiName "Tibetan"
BabelName tibetan
BabelProvide 1
PolyglossiaName tibetan
Encoding utf8
LangCode bo_CN
End
Language turkish
GuiName "Turkish"
HasGuiSupport true
BabelName turkish
PolyglossiaName turkish
XindyName turkish
QuoteStyle english
ActiveChars =
Encoding iso8859-9
FontEncoding T1|OT1
LangCode tr_TR
DateFormats "d MMMM yyyy|dd.MMM.yyyy|dd.MM.yyyy"
End
# turkmen must be loaded locally with babel options,
# not globally via class options
Language turkmen
GuiName "Turkmen"
BabelName turkmen
PolyglossiaName turkmen
QuoteStyle swiss
Encoding utf8
FontEncoding T1|OT1
DateFormats "yyyy ý. MMMM d|dd.MM.yyyy ý.|dd.MM.yy ý."
LangCode tk_TM
End
Language ukrainian
GuiName "Ukrainian"
HasGuiSupport true
BabelName ukrainian
PolyglossiaName ukrainian
XindyName ukrainian
QuoteStyle russian
Encoding koi8-u
FontEncoding T2A
DateFormats "dd MMMM yyyy|d MM yyyy|dd.MM.yyyy"
LangCode uk_UA
Provides textcyrillic
End
Language uppersorbian
GuiName "Upper Sorbian"
BabelName uppersorbian
PolyglossiaName sorbian
PolyglossiaOpts "variant=upper"
XindyName upper-sorbian
QuoteStyle german
Encoding iso8859-2
FontEncoding T1|OT1
DateFormats "d MMMM yyyy|d MMM yyyy|dd.MM.yyyy"
LangCode hsb_DE
End
Language urdu
GuiName "Urdu"
BabelName urdu
BabelProvide 1
PolyglossiaName urdu
Encoding utf8
DateFormats "d MMMM, yyyy|d MMM yyyy|dd/MM/yyyy"
RTL true
LangCode ur_PK
End
Language uyghur
GuiName "Uyghur"
BabelName uyghur
BabelProvide 1
PolyglossiaName uyghur
Encoding utf8
FontEncoding LAE,LFE
DateFormats "d MMMM yyyy-يىلى|d MMM yyyy-يىلى|yyyy/M/d"
RTL true
LangCode ug
QuoteStyle english
End
Language vietnamese
GuiName "Vietnamese"
BabelName vietnamese
BabelOptFormat modifier
PolyglossiaName vietnamese
XindyName vietnamese
QuoteStyle english
Encoding utf8
DateFormats "dd 'tháng' MMMM yyyy|dd-MM-yyyy|dd/MM/yyyy"
FontEncoding T5
LangCode vi_VN
End
Language welsh
GuiName "Welsh"
BabelName welsh
PolyglossiaName welsh
QuoteStyle british
Encoding iso8859-15
DateFormats "d MMMM yyyy|d MMM yyyy|dd/MM/yyyy"
FontEncoding T1|OT1
LangCode cy_GB
End
|