1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339
|
/*
Language.cc
*/
#include "Language.h"
Language::Language (int aLANGUAGE)
{
if (aLANGUAGE > MAX_LANG) LANGUAGE = LANG_DEFAULT;
else LANGUAGE = aLANGUAGE;
}
Language::Language (const char *pcLANGUAGE)
{
xstrncpy (stLANGUAGE, CMAXLONGLANGUAGE, pcLANGUAGE); xucase (stLANGUAGE);
xstrncpy (stlLANGUAGE, CMAXLONGLANGUAGE, stLANGUAGE); xlcase (stlLANGUAGE);
if (strcmp (stLANGUAGE, "SPA") == 0) LANGUAGE = LANG_SPANISH;
else if (strcmp (stLANGUAGE, "ENG") == 0) LANGUAGE = LANG_ENGLISH;
else if (strcmp (stLANGUAGE, "CAT" ) == 0) LANGUAGE = LANG_CATALA;
else if (strcmp (stLANGUAGE, "VAL" ) == 0) LANGUAGE = LANG_CATALA;
else if (strcmp (stLANGUAGE, "EUS" ) == 0) LANGUAGE = LANG_EUSKERA;
else LANGUAGE = LANG_DEFAULT;
}
Language::~Language()
{
}
void Language::setLang (const char *pcLANGUAGE)
{
xstrncpy (stLANGUAGE, CMAXLONGLANGUAGE, pcLANGUAGE); xucase (stLANGUAGE);
xstrncpy (stlLANGUAGE, CMAXLONGLANGUAGE, stLANGUAGE); xlcase (stlLANGUAGE);
if (strcmp (stLANGUAGE, "SPA") == 0) LANGUAGE = LANG_SPANISH;
else if (strcmp (stLANGUAGE, "ENG") == 0) LANGUAGE = LANG_ENGLISH;
else if (strcmp (stLANGUAGE, "CAT" ) == 0) LANGUAGE = LANG_CATALA;
else if (strcmp (stLANGUAGE, "VAL" ) == 0) LANGUAGE = LANG_CATALA;
else if (strcmp (stLANGUAGE, "EUS" ) == 0) LANGUAGE = LANG_EUSKERA;
else LANGUAGE = LANG_DEFAULT;
}
int Language::getLang (void)
{
return LANGUAGE;
}
const char *Language::getStLang (void)
{
return stlLANGUAGE;
}
const char *Language::get (int WHAT)
{
switch (LANGUAGE)
{
case LANG_ENGLISH: return getStringEnglish (WHAT);
case LANG_SPANISH: return getStringSpanish (WHAT);
case LANG_CATALA : return getStringCatala (WHAT);
case LANG_EUSKERA : return getStringEuskera (WHAT);
default: return getStringEnglish (WHAT);
}
}
const char *Language::getDescriptionLanguage (int WHAT)
{
switch (WHAT)
{
case LANG_ENGLISH: return "English";
case LANG_SPANISH: return "Español";
case LANG_CATALA : return "Valencià";
case LANG_EUSKERA: return "Euskera";
default: return "Unknown";
}
}
const char *Language::getStringEnglish (int WHAT)
{
switch (WHAT)
{
case PREFIX_FORWARD: return "(Fwd) ";
case PREFIX_REPLY: return "Re: ";
case MSG_CONNREFUSED: return "Connection refused!";
case MSG_CANRECONNECTHERE: return "Press here to reconnect.";
case MSG_SERVERISDOWN: return "Server is down.";
case MSG_PERHAPSTIMEOUT: return "Perhaps a timeout?";
case MSG_CONF_DELETEMAILBOX:return "Are you sure you want to delete mailbox '%s'?";
case MSG_CONF_CLEARMAILBOX: return "Are you sure you want to empty mailbox '%s'?";
case MSG_CONF_EXPUNGE: return "OK to expunge mailbox?";
case MSG_CONF_LOGOUT: return "OK to logout?";
case MSG_CONF_DBEXPUNGE: return "OK to expunge the DataBase?";
case MSG_SEND_OK: return "Message sent OK.";
case MSG_ERR_SAVE_SENTMAIL: return "Message sent OK but error saving in sent-mail mailbox. Perhaps Quota exceded?";
case MSG_SAVED_SENTMAIL: return "the message was saved in ";
case MSG_SEND_ERR: return "Problems sending message. Message not sent!";
case MSG_CANCELMSG: return "Send message CANCELLED!";
case MSG_SAVEOPTIONS: return "Options SAVED!";
case MSG_CANCEL: return "Saving CANCELLED!";
case MSG_ERR_SAVEOPTIONS: return "ERROR saving Options!";
case MSG_ADDBOOK: return "Browsing Addressbook";
case MSG_SAVEADDBOOK: return "Addressbook SAVED!";
case MSG_ERR_SAVEADDBOOK: return "ERROR saving Addressbook!";
case MSG_MSGSPURGED_0: return "No message PURGED.";
case MSG_MSGSPURGED: return "%d message PURGED!";
case MSG_MSGSPURGED_S: return "%d messages PURGED!";
case MSG_MAILBOXCHANGED: return "Open mailbox '%s'";
case MSG_MAILBOXCREATED: return "New Mailbox Created!";
case MSG_MAILBOXDELETED: return "Mailbox Deleted!";
case MSG_MAILBOXRENAMED: return "Mailbox name Changed!";
case MSG_MOVEDMESSAGES: return "%d message moved to '%s'.";
case MSG_MOVEDMESSAGES_S: return "%d messages moved to '%s'.";
case MSG_COPYMESSAGES: return "%d message copied to '%s'.";
case MSG_COPYMESSAGES_S: return "%d messages copied to '%s'.";
case MSG_INVALIDPAGE: return "Incorrect operation. Please refresh the Index screen.";
case MSG_SHOWATTACHS: return "Editing attachments";
case MSG_SAVEATTACHS: return "Attachments SAVED!";
case MSG_ERASEATTACHS: return "Selected attachments deleted!";
case MSG_ERR_SAVEATTACHS: return "ERROR saving Attachments!";
case MSG_AB_EDITENTRY: return "Editing entry";
case MSG_AB_SAVEENTRY: return "Entry SAVED!";
case MSG_AB_DELEENTRY: return "Entries DELETED!";
case MSG_AB_ADDTO: return "Addresses Added to TO field of composed message";
case MSG_AB_ADDCC: return "Addresses Added to CC field of composed message";
case MSG_AB_ADDBCC: return "Addresses Added to BCC field of composed message";
case MSG_NO_ENTRIES_MARKED: return "No selected entries. NO action done!";
case MSG_FLAGS_CHANGED: return "%d message marked as %s.";
case MSG_FLAGS_CHANGED_S: return "%d messages marked as %s.";
case MSG_FIELD_TO_EMPTY: return "Field 'To' is empty.";
case MSG_FIELD_SUBJ_EMPTY: return "Field 'Subject' is empty.";
case MSG_COMPOSE_TIMEOUT: return "WARNING: Use the 'Save' button from time to time. If you leave it longer than than 20 minutes, you will lose what you have written!";
case MSG_TOO_MAX_CONN: return "Sorry. Too many simultaneous users. Please try later.";
case MSG_TOO_MAX_TRY_CONN: return "Sorry. You have repeatedly pressed the button.";
case MSG_ADDRESS_LINE_CUT: return "WARNING: Reached Max line length. Can't add all of the addresses.";
case MSG_MIN_TIMEBETWCONNS: return "Connection retried before min time. Please press \"Login\" button only once.";
case MSG_ERR_RELOAD_ATTACHS:return "Incorrect number of attachments. Perhaps you have tried to send one attachment already sent.";
case MSG_NOATTACHSERASED: return "NO DELETED ATTACHMENTS!";
case MSG_NOATTACHSSAVED: return "NO SAVED ATTACHMENTS!";
case MSG_NO_ELEMENTS: return "No elements.";
case MSG_BADCOOKIE: return "Security problem! Access logged.";
case MSG_DEBUG: return "Debug Page";
case MSG_MALFORMED_MESSAGE: return "<FONT color=\"#FF0000\"><BLINK>[ Empty message possibly malformed. Use \"Download message\" to see raw text. ]</BLINK></FONT>";
case MSG_MSGSFOUND_0: return "No message FOUND.";
case MSG_MSGSFOUND: return "%d message FOUND.";
case MSG_MSGSFOUND_S: return "%d messages FOUND.";
case MSG_MSGS_SORTED: return "Messages sorted!";
case MSG_GO_TO_DISABLED: return "WARNING: Your session will end in 5 minutes unless you send the message or click the 'Save' button to save your text and continue writing.";
case MSG_AB_ADDFIELDS: return "Addresses added to fields of composed message: %d.";
case MSG_NNTP_SEND_WARNING: return "WARNING: News messages colud be seen by thousands of people. Be careful with your post!";
case MSG_MANAGE_NNTPGROUPS: return "Modifying my subscriptions";
case MSG_NNTPGROUPS_FOUND: return "Forums found: %d";
case MSG_MAX_NNTPGROUPS_FOUND:return "Maximum number of Forums found: %d";
case MSG_NNTPGROUPS_ADDED: return "Forums added: %d";
case MSG_NEW_TO_FORUMS: return "Change to other Forum with the drop-down right list or setting \"Options/Manage Subscribed Forums\"";
case MSG_INVALIDCOMMAND: return "Incorrect command.";
case MSG_CHANGEPW_OK: return "Password changed Ok.";
case MSG_CONF_DELETEITEMS: return "Ok to full delete the selected files and directories (recursively)?";
case MSG_FILESDELETED: return "%d file DELETED!";
case MSG_FILESDELETED_S: return "%d files DELETED!";
case MSG_FILESCOPY: return "Objects copied";
case MSG_FILESCUT: return "Objects cut";
case MSG_FILESPASTED: return "Objects pasted";
case MSG_FILERENAMED_OK: return "Object renamed.";
case MSG_FILESAVED_OK: return "File saved!";
case MSG_FILESORT_OK: return "Objects sorted!";
case MSG_FILECREATED_OK: return "Object created!";
case MSG_DISKCHANGED_OK: return "Disk changed!";
case MSG_NEED_PASSWORD_SERVICE: return "To access to the service '%s', Postman need your password:";
case MSG_NEWMSGS_0: return "No new messages";
case MSG_NEWMSGS_1: return "You have 1 message not read";
case MSG_NEWMSGS_n: return "You have %ld messages not read";
case MSG_RECONNECT_NOTALLOWED: return "Reconnect to that service is not allowed!";
case MSG_RECORDSDELETED: return "%d record marked as %s.";
case MSG_RECORDSDELETED_S: return "%d records marked as %s.";
case MSG_RECORDSPURGED_0: return "No records PURGED.";
case MSG_RECORDSPURGED: return "%d record PURGED!";
case MSG_RECORDSPURGED_S: return "%d records PURGED!";
case MSG_RECORDSFOUND_0: return "No record FOUND.";
case MSG_RECORDSFOUND: return "%d record FOUND.";
case MSG_RECORDSFOUND_S: return "%d records FOUND.";
case MSG_CONF_DBDELETE: return "Ok to full delete the DataBase?";
case MSG_RECORDS_ALL_SHOWN: return "All records shown";
case MSG_SHOWOPTIONS: return "Editing options";
case MSG_SHOWOPTIONS_CCLIENT: return "Editing Mail options";
case MSG_SHOWOPTIONS_NNTP: return "Editing Forums options";
case MSG_SHOWOPTIONS_APPEARANCE: return "Editing Appearance options";
case MSG_CONF_FILTERSDELETE :return "Ok to delete the selected filters?";
case MSG_INSERTSPAMFILTER: return "I will make a filter based in CONTENT for avoid you the reception of publicity nonwished or Spam. "
"The marked messages as Spam will be moved to the folder INBOX.spam that will be created automatically. "
"Remember to review it periodically and to clean it.";
case MSG_INSERTSPAMFILTER2: return "I will make a filter based in RBL (Relay Blocking List) for avoid you the reception of publicity nonwished or Spam. "
"The marked messages as Spam will be moved to the folder INBOX.spam that will be created automatically. "
"Remember to review it periodically and to clean it.";
case MSG_CONFDELETEEVENT: return "Ok to delete the selected Event? ";
case L_USER: return "User";
case L_PASSWORD: return "Password";
case L_LOGIN: return "Login";
case L_CLEAR: return "Clear";
case L_LOGOUT: return "Logout";
case L_INDEXMAILBOX: return "<B>Mailbox '%s' with %ld messages.</B>";
case L_INDEXMAILBOX2: return "Mailbox index";
case L_INDEXMAILBOX3: return "<B>Mailbox '%s' with %ld messages (%s).</B>";
case L_INDEXMAILBOX4: return "<B>Current mailbox: '%s' (%ld messages).</B>";
case L_CHOOSELANGUAGE: return "Elige idioma/Tria llenguatge/Choose language";
case L_COPYRIGHT: return "©Universitat de València, 2000-2003";
case L_MESSAGES: return "messages";
case L_NEXTPAGE_ACT: return "Next Page";
case L_NEXTPAGE_INA: return "Next Page";
case L_PREVPAGE_ACT: return "Previous Page";
case L_PREVPAGE_INA: return "Previous Page";
case L_FIRSTPAGE_ACT: return "First Page";
case L_FIRSTPAGE_INA: return "First Page";
case L_LASTPAGE_ACT: return "Last Page";
case L_LASTPAGE_INA: return "Last Page";
case L_MESSAGE: return "<B>Message %ld/%ld (%s).</B>";
case L_MESSAGE2: return "Browsing message:";
case L_DUMPFULLMSG: return "Download message";
case L_NOSUBJECT: return "(No subject)";
case L_NEXTMSG: return "Next message";
case L_PREVMSG: return "Previous message";
case L_NEXTMSG_INA: return "Next message";
case L_PREVMSG_INA: return "Previous message";
case L_ERROR: return "Error";
case L_STRUCTMIME: return "MIME structure of the message (attachments):";
case L_EXECUTE: return "Execute";
case L_DELETED: return "Deleted";
case L_EXPUNGE: return "Expunge";
case L_UNDELETED: return "Undeleted";
case L_HELP: return "Help";
case L_COMPOSEMSG: return "Compose";
case L_MAILBOXES: return "Mailboxes";
case L_CHANGEMAILBOX: return "Open mailbox";
case L_CREATEMAILBOX: return "Create mailbox";
case L_DELETEMAILBOX: return "Delete mailbox";
case L_RENAMEMAILBOX: return "Rename mailbox";
case L_ANSWEREDMSG: return "Answered";
case L_UNANSWEREDMSG: return "Unanswered";
case L_FLAGGEDMSG: return "Important";
case L_UNFLAGGEDMSG: return "NOT important";
case L_SEENMSG: return "NOT new";
case L_UNSEENMSG: return "New";
case L_MOVEMSG: return "Move messages to";
case L_COPYMSG: return "Copy messages to";
case L_CANCEL: return "Cancel";
case L_CONFIRM: return "Confirm";
case L_TO: return "To: ";
case L_CC: return "CC: ";
case L_BCC: return "BCC: ";
case L_TO0: return "To";
case L_CC0: return "Cc";
case L_BCC0: return "Bcc";
case L_SUBJECT: return "Subject: ";
case L_TEXTTOSEND: return "Text to send:";
case L_CANCELMSG: return "Cancel";
case L_SENDMSG: return "Send";
case L_ATTACHMSG: return "Attachments";
case L_REPLYMSG: return "Reply";
case L_REPLYALLMSG: return "Reply to All";
case L_FORWARDMSG: return "Forward";
case L_FROM: return "From: ";
case L_DATE: return "Date: ";
case L_REPLYTO: return "Reply-to: ";
case L_SIGNATURE: return "Signature";
case L_SHOWOPTIONS: return "Options";
case L_ADDBOOK: return "Addressbook";
case L_SAVE: return "Save";
case L_MSGSPERINDEXPAGE:return "Number of messages shown per Index Page: ";
case L_INSIGNINNEWMSG: return "Sign new messages";
case L_ATTACHSHOWED: return "Attachment shown below";
case L_PERSONALNAME: return "Full personal name: ";
case L_NOFROM: return "(No from)";
case L_SAVEMSGSENTMAIL:return "Save sent messages in folder ";
case L_ATTACH_NEW: return "Attach another file";
case L_FILE: return "File";
case L_NO_ATTACHS: return "(No attachments)";
case L_DOATTACH: return "Attach!";
case L_DETACH: return "Detach";
case L_AB_NICKNAME: return "Nickname";
case L_AB_FULLNAME: return "Full name";
case L_AB_ADDRESSES: return "Addresses";
case L_AB_FCC: return "Fcc";
case L_AB_COMMENTS: return "Comments";
case L_AB_EDITENTRY: return "Edit entry";
case L_AB_NEWENTRY: return "Add new entry";
case L_AB_NEWENTRY_S: return "New";
case L_DELETE: return "Delete";
case L_NUMOFENTRIES: return "Number of entries";
case L_BACK: return "Back";
case L_CLEANALL: return "Clean all";
case L_SAVEADDRESS: return "Save Address";
case L_NUMBER: return "Num.:";
case L_FLAGS: return "Flags:";
case L_SIZE: return "Size:";
case L_FLAG_DELETED: return "Deleted";
case L_FLAG_ANSWERED: return "Answered";
case L_FLAG_FLAGGED: return "Important!";
case L_FLAG_NEW: return "New";
case L_FLAG_UNSEEN: return "New";
case L_FLAG_COPIED: return "Copied";
case L_FLAG_UNCOPIED: return "Uncopied";
case L_MARK: return "Mark";
case L_MSGS_AS: return " messages as ";
case L_PRESS_TO_INDEX: return "Return to the message index";
case L_SORT: return "Sort";
case L_MSGS_SHOWN: return "<B> Shown %ld to %ld.</B>";
case L_LEX_TO: return " to ";
case L_DELNEXTMSG: return "Delete";
case L_UNDELNEXTMSG: return "Undelete";
case L_ABOUT: return "About";
case L_REPLYFROM: return "Reply to 'From:' and not to 'Reply-to:'.";
case L_FORWATTACHS: return "Include attachments in Forward.";
case L_SIZEWRITEAREA: return "Size (rows / columns) of the text area in compose message screen.";
case L_NEXTMSGSHOWN: return "The next message is shown.";
case L_LASTMSGSHOWN: return "Last message is shown.";
case L_NUMATTACHSHOW: return "<B>Attachment shown: %s</B>";
case L_DOWNLOADMAILBOX:return "Download Full Mailbox";
case L_EMPTY_IMAPSERVER:return "Empty IMAP server field!";
case L_NOTALLOWED_IMAPSERVER: return "That IMAP server is not allowed!";
case L_AB_DUMP: return "Dump";
case L_AB_DUMP_S: return "Dump";
case L_TRUNCATELENGTHREADINGMSG: return "Split reading message lines longer than ";
case L_SKIN: return "Skin";
case L_SECURITYPROBLEM:return "Security problem";
case L_REFRESH: return "Refresh";
case L_FLAG_SEARCHED: return "Found in previous search";
case L_SEARCH: return "Search in";
case L_REFRESHTIME: return "Time in minutes to auto-refresh the index page (0 for no refresh):";
case L_SEARCH_SUBJECT: return "Subject";
case L_SEARCH_FROM: return "From";
case L_SEARCH_BODY: return "Body";
case L_SEARCH_ALL: return "All";
case L_CONFIRMPURGE: return "Confirm Purge Mailbox";
case L_CONFIRMLOGOUT: return "Confirm Logout";
case L_FLAG_UNDELETED: return "Undeleted";
case L_FLAG_UNANSWERED:return "Unanswered";
case L_FLAG_UNFLAGGED: return "No important!";
case L_FLAG_UNNEW: return "No New";
case L_FLAG_SEEN: return "Seen";
case L_FLAG_UNSEARCHED:return "No found";
case L_SEARCHEDMSG: return "1 message added to the list of found messages.";
case L_UNSEARCHEDMSG: return "1 message deleted from the list of found messages.";
case L_DUMPFULLHEADER: return "Download header";
case L_ADDADDRESS_TO: return "Add selected entries to field 'TO'";
case L_ADDADDRESS_CC: return "Add selected entries to field 'CC'";
case L_ADDADDRESS_BCC: return "Add selected entries to field 'BCC'";
case L_DELADDRESSES: return "Delete selected entries";
case L_ADDADDRESS_FIELD: return "Add selected addresses to message";
case L_NNTPGROUP: return "Forums:";
case L_SENDTONNTPGROUP:return "Send to Forum";
case L_COMPOSEMSGNNTP: return "Compose to Forum";
case L_NNTPSERVER: return "Forums Server:";
case L_SUBSCRIBEDGROUPS:return "Subscribed Forums:";
case L_MANAGE_NNTPGROUPS:return "Manage Subscribed Forums";
case L_LIST_EMPTY: return "----------------- [List is empty] -----------------";
case L_NNTP_LISTSEARCH:return "Search in All Forums List";
case L_GROUPSTOADD: return "Forums to add:";
case L_ADDSELECTEDGROUPS:return "Add selected Forums";
case L_DUMPFULLLIST: return "Dump full Forums List";
case L_FORCEDGROUPS: return "Permanent Forums:";
case L_DISPLAY_UUENCODED:return "[Decode and display '%s']";
case L_GOSELECTEDGROUP:return "Open selected Forum";
case L_OP_SHOWCLOCK: return "Display Date and Time.";
case L_ADD_MORE_FORUMS:return "... (More Forums) ...";
case L_SORTBYTHREADS: return "Thread:";
case L_CHANGEPASSWORD: return "Change Password";
case L_PASSWORD_OLD: return "Old password";
case L_PASSWORD_NEW1: return "New password";
case L_PASSWORD_NEW2: return "Retype new password";
case L_PRESS_TO_ROOTPAGE: return "Return to the begin page";
case L_FINGER: return "Finger";
case L_FILEBROWSER: return "File Browser";
case L_FOLDER: return "Directory";
case L_PARENTFOLDER: return "Parent Directory";
case L_CURRENTFOLDER: return "Current Directory";
case L_EDIT: return "Edit";
case L_CREATE: return "Create";
case L_COPY: return "Copy";
case L_CUT: return "Cut";
case L_PASTE: return "Paste";
case L_LOAD: return "Load";
case L_RENAME: return "Rename";
case L_ROOT: return "Begin Page";
case L_MAIL: return "Mail";
case L_NNTP: return "Forums";
case L_POPPASS: return "Change Password";
case L_FORWARDMAIL: return "Forwarding mail";
case L_CURRENTFORWARDS:return "Current Forwards:";
case L_FORWARD_ERASE: return "Erase ALL";
case L_QUOTAUSAGE: return "Quota usage";
case L_RENAME_TO: return "Rename '%s' to ";
case L_CURRENTDISK: return "Current disk";
case L_CHANGE_DISK: return "Change to disk";
case L_FOLDER_COPY: return "Copied Folder";
case L_FOLDER_CUT: return "Cut Folder";
case L_FILE_COPY: return "Copied File";
case L_FILE_CUT: return "Cut File";
case L_TOTAL_SIZE: return "Total size";
case L_SECVIRTUAL: return "Secretaria Virtual";
case L_SERVICE: return "Service";
case L_MAIL_DESCRIPTION : return "Mail";
case L_FILEBROWSER_DESCRIPTION: return "File Explorer";
case L_FINGER_DESCRIPTION : return "Fingering Info";
case L_FORWARDMAIL_DESCRIPTION: return "Forwarding messages";
case L_MAIN_DESCRIPTION : return "Main";
case L_POPPASS_DESCRIPTION : return "Changing your password";
case L_SECVIRTUAL_DESCRIPTION : return "Secretaria Virtual";
case L_SYNC : return "Sync";
case L_DATABASES : return "Databases";
case L_DATABASES_DESCRIPTION : return "Databases";
case L_DISPLAY : return "Display";
case L_UNDELETE : return "Undelete";
case L_DB_INDEXHEADER : return "%s, Records: %d, Size: %d bytes";
case L_DB_CHANGE : return "Open";
case L_DUMP : return "Dump";
case L_DB_MYNEWDB : return "My New Database";
case L_LEX_AS : return "as";
case L_IMPORT : return "Import";
case L_EXPORT : return "Export";
case L_LEX_OF : return "of";
case L_NONE_A : return "None";
case L_DEFINE : return "Define";
case L_FIELD_ADD : return "Add Field";
case L_FIELD_DEL : return "Delete Field";
case L_DATABASE : return "Database";
case L_FIELD_NAME : return "Name";
case L_FIELD_ORDER : return "Order";
case L_FIELD_TYPE : return "Type";
case L_FIELD_MAXLENGTH : return "Maximum Length";
case L_FIELD_DISPLAYLENGTH : return "Display Length";
case L_FIELD_INDEXLENGTH : return "Index Length";
case L_FIELD_LABEL : return "Label";
case L_FIELD_DEFAULT : return "Default";
case L_FIELD_COULDBENULL : return "Could be null";
case L_FIELD_OPTIONAL1 : return "Optional 1";
case L_FIELD_OPTIONAL2 : return "Optional 2";
case L_FIELD_OPTIONAL3 : return "Optional 3";
case L_FIELD_OPTIONAL4 : return "Optional 4";
case L_DELETESEARCH : return "Delete Search";
case L_DISPLAYPERSONALINFO : return "Display Personal Information at startup";
case L_USERACCOUNTS : return "User accounts";
case L_USERACCOUNTS_DESCRIPTION:return "User accounts";
case L_CONFIG : return "Configuration";
case L_CONFIG_DESCRIPTION : return "Configuration";
case L_APPEARANCE : return "Appearance";
case L_SIEVE : return "Sieve";
case L_SIEVE_DESCRIPTION : return "Sieve";
case L_MAIN : return "Main";
case L_FILTERS : return "Filters";
case L_NAME : return "Name";
case L_LEX_THEN : return "then";
case L_SIEVE_IF_IN_THE_MAIL : return "If in the message...";
case L_VACATION : return "Absence";
case L_VACATION_TEXT : return "Notification to send";
case L_VACATION_DAYS2REPEAT : return "Days before repeat notification";
case L_VACATION_ADDRESSES : return "Absence addresses";
case L_ACTIVED : return "Actived";
case L_UNACTIVED : return "Unactived";
case L_REJECT : return "Reject";
case L_REJECTEDTEXT : return "(Rejected Text)";
case L_SUBJECT_CONTAINS : return "the \"Subject:\" contains ";
case L_FROM_CONTAINS : return "and the \"From:\" contains ";
case L_TO_CONTAINS : return "and the \"To:\" contains ";
case L_SIZE_IS_OVER : return "and the size is over ";
case L_HEADER_CONTAINS : return "and the header ";
case L_CONTAINS : return " contains ";
case L_VACATION_ADD_EXPLICAT : return "(Addresses where your mail is sent. Upper and lower case are IMPORTANT.)";
case L_UP : return "Up";
case L_DOWN : return "Down";
case L_OP_SHOWICONSLABELS : return "Show icons labels";
case L_ICONSSIZE : return "Icons size";
case L_SMALL : return "Small";
case L_BIG : return "Big";
case L_MEDIUM : return "Medium";
case L_INSERTSPAWNFILTER : return "By Contents";
case L_INSERTSPAWNFILTER2 : return "By RBL";
case L_SERVICEPW_INCORRECT : return "The password is not valid for this Service.";
case L_CALENDAR : return "Calendar";
case L_CALENDAR_DESCRIPTION : return "Calendar";
case L_CHANGE : return "Change";
case L_WEEK : return "Week";
case L_TODAY : return "Today";
case L_HOUR : return "Hour";
case L_TITLE : return "Title";
case L_DESCRIPTION : return "Description";
case L_STATUS : return "Status";
case L_STATUS_FINISHED : return "Finished";
case L_STATUS_OPEN : return "Open";
case L_STATUS_DELAYED : return "Delayed";
case L_PRIORITY : return "Priority";
case L_PRIORITY_LOW : return "Low";
case L_PRIORITY_CURRENT : return "Current";
case L_PRIORITY_IMPORTANT : return "Important";
case L_PRIORITY_VERYIMPORTANT : return "Very Important";
case L_TYPE : return "Type";
case L_TYPE_CELEBRATION : return "Celebration";
case L_TYPE_MEETING : return "Meeting";
case L_TYPE_LAUNCH : return "Launch";
case L_TYPE_OTHER : return "Other";
case L_ADD : return "Add";
case L_YESTERDAY : return "Yesterday";
case L_TOMORROW : return "Tomorrow";
case L_YEAR : return "Year";
case L_DAY : return "Day";
case L_LEX_SINCE : return "Since";
case L_CLEARMAILBOX : return "Empty mailbox";
case L_CREATEFILTER : return "Create predefined Anti-Spam filter: ";
case L_DOTLEARN : return "Aula Virtual";
case L_DOTLEARN_DESCRIPTION : return "Resources for e-learning";
case L_MODERATORS : return "Moderators";
case TIT_COMPOSEMSG: return "Composing a new message";
case TIT_HOMEPAGE: return "University of Valencia: Email Service";
case TIT_CONFIRMACTION:return "Confirm action";
case TIT_INDEXMAILBOX: return "Mailbox index";
case TIT_MAILBOXES: return "Operating with mailboxes";
case TIT_MESSAGEHEADER:return "Browsing message";
case TIT_REPLYMSG: return "Replying to message";
case TIT_REPLYALLMSG: return "Replying to All";
case TIT_FORWARDMSG: return "Forwarding message";
case TIT_SHOWOPTIONS: return "Editing your options";
case TIT_ADDBOOK: return "Browsing your Addressbook";
case TIT_INVALIDPAGE: return "Incorrect page";
case TIT_SHOWATTACHS: return "Working with message attachments";
case TIT_BADCOOKIE: return "Security Problem!";
case TIT_SHOWHEADERS: return "Full headers";
case TIT_REPLYGROUP: return "Replying to Forum";
case TIT_COMPOSEMSGNNTP:return "Compose to Forum";
case TIT_SHOWNNTPMANAGEGROUPS:return "Managing Forums";
case TIT_INVALIDCOMMAND:return "Incorrect command.";
case TIT_SERVICES: return "Services";
case TIT_POPPASS_DISPLAYPAGE: return "Changing the password";
case TIT_FINGER_DISPLAYPAGE: return "Finger";
case TIT_FILEBROWSER_DISPLAYPAGE: return "File Browser";
case TIT_FILEBROWSER_EDITFILEPAGE: return "Editing File";
case TIT_FORWARDMAIL_DISPLAYPAGE: return "Forwarding mail";
case TIT_DATABASES_EDITRECORD: return "Editing the Record";
case TIT_DATABASES_INDEXPAGE: return "Index of Database";
case TIT_DATABASES_DISPLAYRECORD: return "Displaying the Record";
case TIT_DATABASES_MAINPAGE: return "Databases:";
case TIT_DATABASES_DB_DEFINE: return "Define your own new database";
case TIT_SIEVE_DISPLAYPAGE: return "Sieve";
case TIT_CALENDAR_DISPLAYPAGE : return "Viewing the Calendar";
case ERR_INV_CMD: return "Incorrect command!";
case ERR_INV_USER_PW: return "Incorrect User/Password";
case ERR_INV_MAILBOX: return "Incorrect mailbox: '%s'";
case ERR_ISOPEN_MAILBOX: return "Mailbox is currently open: '%s'";
case ERR_INV_PARMS: return "They lack data in the form.";
case ERR_OPENCONN: return "Opening connection with server";
case ERR_CREAT_USERDIR: return "Creating User directory";
case ERR_CREAT_USERATTACHSDIR:return "Creating User Attachments Directory";
case ERR_SENDING_MSG: return "Sending message.";
case ERR_AB_DELEENTRY: return "Deleting entry";
case ERR_MAXSIZEATT: return "The maximum size of attachments is %ld bytes";
case ERR_UNHANDLESIZEATTACH: return "Attachment size is too big! Can't handle this attachment.";
case ERR_QUOTA_USAGE: return "MESSAGE: Quota usage is %s.";
case ERR_SERVERISDOWN: return "Server is down.";
case ERR_UUDECODING: return "Decoding message.";
case ERR_NNTP_NUM_SEL: return "You have selected more than one Forum";
case ERR_INV_SERVICE: return "Incorrect service!";
case ERR_SERVICE_NOTALLOWED: return "Service not allowed!";
case ERR_FILE_EXISTS: return "File exists";
case ERR_FILE_INVALIDNAME: return "Wrong filename";
case ERR_FILE_NO_EXISTS: return "No such file";
case ERR_FILE_CREATE: return "Creating file";
case ERR_FILE_WRITING: return "Writing in file";
case ERR_DIR_EXISTS: return "Directory exists";
case ERR_DIR_CREATE: return "Creating directory";
case ERR_DIR_OPEN: return "Opening directory";
case ERR_FILE_DELETING: return "Deleting file";
case ERR_MAXSIZEFILEUPLOAD:return "The maximum size for uploaded file is %ld bytes";
case ERR_CLIPBOARD_EMPTY: return "Clipboard is empty";
case ERR_SELECT_MORE_ONE: return "There are more than one selected entry";
case ERR_FILE_RENAMING: return "Renaming object";
case ERR_FILE_COPYING: return "Copying file";
case ERR_FILE_MOVING: return "Moving file";
case ERR_FILE_MOV_SAMESITE:return "Can not move it to the same path";
case ERR_QUOTA_OVER: return "Quota of disc overstep";
case ERR_SERVICE_INITIALIZING: return "Initializing service";
case ERR_CREAT_USERDATABASESDIR: return "Creating User Databases Directory";
case ERR_FILTERALREADYEXISTS: return "That filter already exists.";
case ALT_LOGO: return "Logo";
case ALT_NEXTPAGE_ACT: return "Next page";
case ALT_NEXTPAGE_INA: return "Next page";
case ALT_PREVPAGE_ACT: return "Previous page";
case ALT_PREVPAGE_INA: return "Previous page";
case ALT_FIRSTPAGE_ACT:return "First page";
case ALT_FIRSTPAGE_INA:return "First page";
case ALT_LASTPAGE_ACT: return "Last page";
case ALT_LASTPAGE_INA: return "Last page";
case ALT_DUMPFULLMSG: return "Download message";
case ALT_NEXTMSG: return "Next message";
case ALT_PREVMSG: return "Previous message";
case ALT_NEXTMSG_INA: return "Next message";
case ALT_PREVMSG_INA: return "Previous message";
case ALT_HELP: return "Help";
case ALT_LOGOUT: return "Logout";
case ALT_EXPUNGE: return "Expunge";
case ALT_COMPOSEMSG: return "Compose";
case ALT_MAILBOXES: return "Mailboxes";
case ALT_REPLYMSG: return "Reply";
case ALT_REPLYALLMSG: return "Reply to All";
case ALT_FORWARDMSG: return "Forward";
case ALT_SHOWOPTIONS: return "Options";
case ALT_ADDBOOK: return "Addressbook";
case ALT_BACK: return "Back";
case ALT_SAVEADDRESS: return "Save Address";
case ALT_SORT: return "Sort";
case ALT_AB_NEWENTRY: return "New entry";
case ALT_AB_NEWENTRY_S:return "New entry";
case ALT_DELNEXTMSG: return "Delete";
case ALT_ABOUT: return "About";
case ALT_UNDELNEXTMSG: return "Undelete";
case ALT_AB_DUMP: return "Dump addressbook";
case ALT_AB_DUMP_S: return "Dump";
case ALT_DUMPFULLHEADER: return "Download header";
case ALT_SENDTONNTPGROUP:return "Send to Forum";
case ALT_COMPOSEMSGNNTP:return "Send to Forum";
case ALT_ROOT: return "Begin";
case ALT_MAIL: return "Mail";
case ALT_NNTP: return "Forums";
case ALT_POPPASS: return "Change Password";
case ALT_FILEBROWSER: return "File Browser";
case ALT_FINGER: return "Finger";
case ALT_FORWARDMAIL: return "Forwarding mail";
case ALT_SECVIRTUAL: return "Secretaria Virtual";
case ALT_UPSORT: return "Sorted Up";
case ALT_DOWNSORT: return "Sorted Down";
case ALT_DATABASES: return "Databases";
case ALT_NEXTRECORD: return "Next Record";
case ALT_PREVRECORD: return "Previous Record";
case ALT_PREV: return "Previous";
case ALT_NEXT: return "Next";
case FORWARDLINE: return "---------- Forwarded message ----------";
default: return "No string";
}
}
const char *Language::getStringSpanish (int WHAT)
{
switch (WHAT)
{
case PREFIX_FORWARD: return "(Fwd) ";
case PREFIX_REPLY: return "Re: ";
case MSG_CONNREFUSED: return "¡Conexión fallida!";
case MSG_CANRECONNECTHERE: return "Puedes reconectar pulsando aquí.";
case MSG_SERVERISDOWN: return "El servidor no responde.";
case MSG_PERHAPSTIMEOUT: return "¿Quizás se acabó el tiempo?";
case MSG_CONF_DELETEMAILBOX:return "Vamos a borrar el buzón '%s'. ¿Estás seguro?";
case MSG_CONF_CLEARMAILBOX: return "Vamos a vaciar el buzón '%s'. ¿Estás seguro?";
case MSG_CONF_EXPUNGE: return "¿Estás seguro de querer purgar el buzón?<BR>Esto borrará definitivamente todos los mensajes marcados como borrados.";
case MSG_CONF_LOGOUT: return "Confirma la desconexión, por favor.";
case MSG_CONF_DBEXPUNGE: return "¿Estás seguro de querer purgar la Base de Datos?<BR>Esto borrará definitivamente todos los registros marcados como borrados.";
case MSG_SEND_OK: return "Mensaje enviado correctamente.";
case MSG_ERR_SAVE_SENTMAIL: return "Mensaje enviado correctamente pero NO se puede guardar el mensaje enviado. Quizás se ha acabado tu espacio en disco.";
case MSG_SAVED_SENTMAIL: return "el mensaje se guardó en la carpeta ";
case MSG_SEND_ERR: return "Problemas enviando el mensaje. Mensaje no enviado.";
case MSG_CANCELMSG: return "¡Cancelado el envío del mensaje!";
case MSG_SAVEOPTIONS: return "¡Opciones GUARDADAS!";
case MSG_CANCEL: return "¡Cancelada la edición!";
case MSG_ERR_SAVEOPTIONS: return "¡ERROR guardando las opciones!";
case MSG_ADDBOOK: return "Viendo la Agenda";
case MSG_SAVEADDBOOK: return "¡Agenda GUARDADA!";
case MSG_ERR_SAVEADDBOOK: return "¡ERROR guardando la Agenda!";
case MSG_MSGSPURGED_0: return "Ningún mensaje borrado.";
case MSG_MSGSPURGED: return "¡%d mensaje BORRADO!";
case MSG_MSGSPURGED_S: return "¡%d mensajes BORRADOS!";
case MSG_MAILBOXCHANGED: return "Abierto el buzón '%s'";
case MSG_MAILBOXCREATED: return "¡Creado un nuevo buzón!";
case MSG_MAILBOXDELETED: return "¡Borrado el buzón!";
case MSG_MAILBOXRENAMED: return "¡Renombrado el buzón!";
case MSG_MOVEDMESSAGES: return "%d mensaje movido a '%s'.";
case MSG_MOVEDMESSAGES_S: return "%d mensajes movidos a '%s'.";
case MSG_COPYMESSAGES: return "%d mensaje copiado a '%s'.";
case MSG_COPYMESSAGES_S: return "%d mensajes copiados a '%s'.";
case MSG_INVALIDPAGE: return "Operación incorrecta. Por favor, actualizar el Índice.";
case MSG_SHOWATTACHS: return "Modificando los Adjuntos";
case MSG_SAVEATTACHS: return "¡Adjuntos GUARDADOS!";
case MSG_ERASEATTACHS: return "¡Adjuntos seleccionados borrados!";
case MSG_ERR_SAVEATTACHS: return "¡ERROR guardando los Adjuntos!";
case MSG_AB_EDITENTRY: return "Modificando la entrada";
case MSG_AB_SAVEENTRY: return "¡Entrada GUARDADA!";
case MSG_AB_DELEENTRY: return "¡Entradas BORRADAS!";
case MSG_AB_ADDTO: return "Añadidas direcciones al campo TO en Componer Mensaje";
case MSG_AB_ADDCC: return "Añadidas direcciones al campo CC en Componer Mensaje";
case MSG_AB_ADDBCC: return "Añadidas direcciones al campo BCC en Componer Mensaje";
case MSG_NO_ENTRIES_MARKED: return "No había entradas seleccionadas. ¡NO se ejecutó ninguna acción!";
case MSG_FLAGS_CHANGED: return "%d mensaje marcado como %s.";
case MSG_FLAGS_CHANGED_S: return "%d mensajes marcados como %ss.";
case MSG_FIELD_TO_EMPTY: return "El campo 'Para' está vacio.";
case MSG_FIELD_SUBJ_EMPTY: return "El campo 'Asunto' está vacio..";
case MSG_COMPOSE_TIMEOUT: return "IMPORTANTE: Usa el botón de 'Guardar' de vez en cuando. ¡A los 20 minutos de inactividad se cierra la conexión sin avisar y puedes perder lo escrito!";
case MSG_TOO_MAX_CONN: return "Demasiadas conexiones. Inténtalo más tarde.";
case MSG_TOO_MAX_TRY_CONN: return "Lo siento. Has pulsado el botón muchas veces.";
case MSG_ADDRESS_LINE_CUT: return "¡CUIDADO! Longitud máxima de linea alcanzada. No se pudieron añadir todas las direcciones.";
case MSG_MIN_TIMEBETWCONNS: return "Conexión reintentada demasiado pronto. Por favor pulse el botón \"Entrar\" sólo una vez y espere.";
case MSG_ERR_RELOAD_ATTACHS:return "Número incorrecto de adjuntos. Posiblemente has intentado reenviar un adjunto ya enviado.";
case MSG_NOATTACHSERASED: return "¡NINGÚN ADJUNTO HA SIDO ELIMINADO!";
case MSG_NOATTACHSSAVED: return "¡NINGÚN ADJUNTO HA SIDO GUARDADO!";
case MSG_NO_ELEMENTS: return "No hay elementos.";
case MSG_BADCOOKIE: return "Problema de seguridad! Acceso archivado.";
case MSG_DEBUG: return "Debug Page";
case MSG_MALFORMED_MESSAGE: return "<FONT color=\"#FF0000\"><BLINK>[ Mensaje vacío posiblemente malformado. Usa \"Descargar mensaje\" para verlo como texto. ]</BLINK></FONT>";
case MSG_MSGSFOUND_0: return "Ningún mensaje ENCONTRADO.";
case MSG_MSGSFOUND: return "%d mensaje ENCONTRADO.";
case MSG_MSGSFOUND_S: return "%d mensajes ENCONTRADOS.";
case MSG_MSGS_SORTED: return "¡Mensajes ordenados!";
case MSG_GO_TO_DISABLED: return "CUIDADO: Faltan 5 minutos para desconectar la sesion. Usa el boton de 'Guardar' o puedes perder lo escrito!";
case MSG_AB_ADDFIELDS: return "Direcciones añadidas a los campos indicados: %d.";
case MSG_NNTP_SEND_WARNING: return "Aviso: Los mensajes de News pueden ser leídos por mucha gente. ¡Ten cuidado con lo que mandas!";
case MSG_MANAGE_NNTPGROUPS: return "Modificando mis subscripciones";
case MSG_NNTPGROUPS_FOUND: return "Foros encontrados: %d";
case MSG_MAX_NNTPGROUPS_FOUND:return "Máximo número de Foros alcanzado: %d";
case MSG_NNTPGROUPS_ADDED: return "Foros añadidos: %d";
case MSG_NEW_TO_FORUMS: return "Cambia a otro Foro con el desplegable inferior o suscribiéndote a otros en \"Opciones/Organizar los Foros Suscritos\"";
case MSG_INVALIDCOMMAND: return "Comando incorrecto.";
case MSG_CHANGEPW_OK: return "Contraseña cambiada correctamente.";
case MSG_CONF_DELETEITEMS: return "¿Estás seguro de querer borrar completamente los ficheros y directorios seleccionados (recursivamente)?";
case MSG_FILESDELETED: return "¡%d fichero BORRADO!";
case MSG_FILESDELETED_S: return "¡%d ficheros BORRADOS!";
case MSG_FILESCOPY: return "Elementos copiados";
case MSG_FILESCUT: return "Elementos cortados";
case MSG_FILESPASTED: return "Elementos pegados";
case MSG_FILERENAMED_OK: return "Elemento renombrado.";
case MSG_FILESAVED_OK: return "Fichero guardado correctamente.";
case MSG_FILESORT_OK: return "Elementos ordenados correctamente.";
case MSG_FILECREATED_OK: return "Elemento creado correctamente.";
case MSG_DISKCHANGED_OK: return "Disco cambiado.";
case MSG_NEED_PASSWORD_SERVICE: return "Para acceder al servicio '%s', Postman necesita tu contraseña:";
case MSG_NEWMSGS_0: return "No tienes mensajes nuevos";
case MSG_NEWMSGS_1: return "Tienes 1 mensaje no leído";
case MSG_NEWMSGS_n: return "Tienes %ld mensajes no leídos";
case MSG_RECONNECT_NOTALLOWED: return "La reconexión a este servicio no está permitido!";
case MSG_RECORDSDELETED: return "%d registro marcado como %s.";
case MSG_RECORDSDELETED_S: return "%d registros marcados como %s.";
case MSG_RECORDSPURGED_0: return "Ningún registro borrado.";
case MSG_RECORDSPURGED: return "¡%d registro BORRADO!";
case MSG_RECORDSPURGED_S: return "¡%d registros BORRADOS!";
case MSG_RECORDSFOUND_0: return "Ningún registro ENCONTRADO.";
case MSG_RECORDSFOUND: return "%d registro ENCONTRADO.";
case MSG_RECORDSFOUND_S: return "%d registros ENCONTRADOS.";
case MSG_CONF_DBDELETE: return "¿Estás seguro de querer borrar entera la Base de Datos?";
case MSG_RECORDS_ALL_SHOWN: return "Todos los registros mostrados.";
case MSG_SHOWOPTIONS: return "Modificando las opciones";
case MSG_SHOWOPTIONS_CCLIENT: return "Modificando las opciones de Correo";
case MSG_SHOWOPTIONS_NNTP: return "Modificando las opciones de los Foros";
case MSG_SHOWOPTIONS_APPEARANCE: return "Modificando las opciones de Apariencia";
case MSG_CONF_FILTERSDELETE :return "¿Estás seguro de querer borrar los filtros seleccionados?";
case MSG_INSERTSPAMFILTER: return "Se va a crear un filtro basado en CONTENIDO para evitarte la recepción de publicidad no deseada o spam. "
"Los mensajes marcados como spam serán movidos a la carpeta INBOX.SPAM que será creada automáticamente. "
"Acuérdate de revisarla periódicamente y vaciarla.";
case MSG_INSERTSPAMFILTER2: return "Se va a crear un filtro basado en LISTAS NEGRAS (RBL) para evitarte la recepción de publicidad no deseada o spam. "
"Los mensajes marcados como spam serán movidos a la carpeta INBOX.SPAM que será creada automáticamente. "
"Acuérdate de revisarla periódicamente y vaciarla.";
case MSG_CONFDELETEEVENT: return "¿Estás seguro de querer borrar el evento? ";
case L_USER: return "Usuario";
case L_PASSWORD: return "Contraseña";
case L_LOGIN: return "Entrar";
case L_CLEAR: return "Limpiar";
case L_LOGOUT: return "Salir";
case L_INDEXMAILBOX: return "<B>Buzón '%s' con %ld mensajes.</B>";
case L_INDEXMAILBOX2: return "Índice del buzón";
case L_INDEXMAILBOX3: return "<B>Buzón '%s' con %ld mensajes (%s).</B>";
case L_INDEXMAILBOX4: return "<B>Buzón actual abierto: '%s' (%ld mensajes).</B>";
case L_CHOOSELANGUAGE: return "Elige idioma/Tria llenguatge/Choose language";
case L_COPYRIGHT: return "©Universitat de València, 2000-2003";
case L_MESSAGES: return "mensajes";
case L_NEXTPAGE_ACT: return "Pág. siguiente";
case L_NEXTPAGE_INA: return "Pág. siguiente";
case L_PREVPAGE_ACT: return "Pág. previa";
case L_PREVPAGE_INA: return "Pág. previa";
case L_FIRSTPAGE_ACT: return "Pág. Primera";
case L_FIRSTPAGE_INA: return "Pág. Primera";
case L_LASTPAGE_ACT: return "Pág. Última";
case L_LASTPAGE_INA: return "Pág. Última";
case L_MESSAGE: return "<B>Mensaje %ld/%ld (%s).</B>";
case L_MESSAGE2: return "Leyendo el mensaje:";
case L_DUMPFULLMSG: return "Descargar mensaje";
case L_NOSUBJECT: return "(Sin tema)";
case L_NEXTMSG: return "Mensaje Siguiente";
case L_PREVMSG: return "Mensaje Anterior";
case L_NEXTMSG_INA: return "Mensaje Siguiente";
case L_PREVMSG_INA: return "Mensaje Anterior";
case L_ERROR: return "Error";
case L_STRUCTMIME: return "Estructura del mensaje y adjuntos:";
case L_EXECUTE: return "Ejecutar";
case L_DELETED: return "Borrado";
case L_EXPUNGE: return "Purgar";
case L_UNDELETED: return "NO borrado";
case L_HELP: return "Ayuda";
case L_COMPOSEMSG: return "Componer";
case L_MAILBOXES: return "Buzones";
case L_CHANGEMAILBOX: return "Abrir buzón";
case L_CREATEMAILBOX: return "Crear buzón";
case L_DELETEMAILBOX: return "Borrar buzón";
case L_RENAMEMAILBOX: return "Renombrar buzón";
case L_ANSWEREDMSG: return "Respondido";
case L_UNANSWEREDMSG: return "NO respondido";
case L_FLAGGEDMSG: return "Importante";
case L_UNFLAGGEDMSG: return "NO importante";
case L_SEENMSG: return "NO nuevo";
case L_UNSEENMSG: return "Nuevo";
case L_MOVEMSG: return "Mover mensajes a";
case L_COPYMSG: return "Copiar mensajes a";
case L_CANCEL: return "Cancelar";
case L_CONFIRM: return "Confirmar";
case L_TO: return "Para: ";
case L_CC: return "CC: ";
case L_BCC: return "BCC: ";
case L_TO0: return "To";
case L_CC0: return "Cc";
case L_BCC0: return "Bcc";
case L_SUBJECT: return "Asunto: ";
case L_TEXTTOSEND: return "Texto a enviar:";
case L_CANCELMSG: return "Cancelar";
case L_SENDMSG: return "Enviar";
case L_ATTACHMSG: return "Adjuntos";
case L_REPLYMSG: return "Contestar";
case L_REPLYALLMSG: return "Contestar a todos";
case L_FORWARDMSG: return "Reenviar";
case L_FROM: return "De: ";
case L_DATE: return "Fecha: ";
case L_REPLYTO: return "Reply-to: ";
case L_SIGNATURE: return "Firma";
case L_SHOWOPTIONS: return "Opciones";
case L_ADDBOOK: return "Agenda";
case L_SAVE: return "Guardar";
case L_MSGSPERINDEXPAGE:return "Número de mensajes mostrados por página en el índice: ";
case L_INSIGNINNEWMSG: return "Firmar los mensajes nuevos";
case L_ATTACHSHOWED: return "Adjunto mostrado debajo";
case L_PERSONALNAME: return "Nombre personal completo: ";
case L_NOFROM: return "(Sin remitente)";
case L_SAVEMSGSENTMAIL:return "Guardar mensajes enviados en el buzón ";
case L_ATTACH_NEW: return "Adjuntar otro fichero";
case L_FILE: return "Fichero";
case L_NO_ATTACHS: return "(No hay ficheros adjuntados)";
case L_DOATTACH: return "¡Adjuntar!";
case L_DETACH: return "Quitar";
case L_AB_NICKNAME: return "Alias";
case L_AB_FULLNAME: return "Nombre";
case L_AB_ADDRESSES: return "Direcciones (email)";
case L_AB_FCC: return "Fcc";
case L_AB_COMMENTS: return "Comentarios";
case L_AB_EDITENTRY: return "Modificar entrada";
case L_AB_NEWENTRY: return "Añadir nueva entrada";
case L_AB_NEWENTRY_S: return "Añadir";
case L_DELETE: return "Borrar";
case L_NUMOFENTRIES: return "Número de entradas";
case L_BACK: return "Atrás";
case L_CLEANALL: return "Limpiar todo";
case L_SAVEADDRESS: return "Guardar Dirección";
case L_NUMBER: return "Num.:";
case L_FLAGS: return "Marcas:";
case L_SIZE: return "Tamao:";
case L_FLAG_DELETED: return "Borrado";
case L_FLAG_ANSWERED: return "Respondido";
case L_FLAG_FLAGGED: return "¡Importante!";
case L_FLAG_NEW: return "Nuevo";
case L_FLAG_UNSEEN: return "Nuevo";
case L_FLAG_COPIED: return "Copiado";
case L_FLAG_UNCOPIED: return "No copiado";
case L_MARK: return "Marcar";
case L_MSGS_AS: return " mensajes como ";
case L_PRESS_TO_INDEX: return "Volver al Índice de mensajes";
case L_SORT: return "Ordenar";
case L_MSGS_SHOWN: return "<B> Mostrados del %ld al %ld.</B>";
case L_LEX_TO: return " a ";
case L_DELNEXTMSG: return "Borrar";
case L_UNDELNEXTMSG: return "Recuperar";
case L_ABOUT: return "Acerca de";
case L_REPLYFROM: return "Contestar a 'From:' en vez de 'Reply-to:'.";
case L_FORWATTACHS: return "Incluir adjuntos en el Reenvío del mensaje.";
case L_SIZEWRITEAREA: return "Tamaño (filas / columnas) del area de texto en Componer mensaje.";
case L_NEXTMSGSHOWN: return "Mostrado el siguiente mensaje.";
case L_LASTMSGSHOWN: return "Mostrado el último mensaje.";
case L_NUMATTACHSHOW: return "<B>Adjunto mostrado: %s</B>";
case L_DOWNLOADMAILBOX:return "Descargar el Buzón completo";
case L_EMPTY_IMAPSERVER:return "Campo servidor IMAP vacío!";
case L_NOTALLOWED_IMAPSERVER: return "Servidor IMAP no permitido!";
case L_AB_DUMP: return "Descargar";
case L_AB_DUMP_S: return "Descargar";
case L_TRUNCATELENGTHREADINGMSG: return "Truncar las líneas del mensaje que se está leyendo si son más largas que ";
case L_SKIN: return "Apariencia";
case L_SECURITYPROBLEM:return "Problema de seguridad";
case L_REFRESH :return "Actualizar";
case L_FLAG_SEARCHED: return "Encontrado en la búsqueda previa";
case L_SEARCH: return "Buscar en";
case L_REFRESHTIME: return "Minutos para refrescar automáticamente la página índice (0 para no hacerlo):";
case L_SEARCH_SUBJECT: return "Asunto";
case L_SEARCH_FROM: return "De";
case L_SEARCH_BODY: return "Cuerpo";
case L_SEARCH_ALL: return "Todo";
case L_CONFIRMPURGE: return "Confirmar el purgado del Buzón";
case L_CONFIRMLOGOUT: return "Confirmar la Desconexión";
case L_FLAG_UNDELETED: return "No Borrado";
case L_FLAG_UNANSWERED: return "No Contestado";
case L_FLAG_UNFLAGGED: return "No Importante";
case L_FLAG_UNNEW: return "No Nuevo";
case L_FLAG_SEEN: return "Visto";
case L_FLAG_UNSEARCHED: return "NO Encontrado";
case L_SEARCHEDMSG: return "1 mensaje añadido a la lista de mensajes encontrados.";
case L_UNSEARCHEDMSG: return "1 mensaje borrado de la lista de mensajes encontrados.";
case L_DUMPFULLHEADER: return "Descargar cabeceras";
case L_ADDADDRESS_TO: return "Añadir entradas al campo 'Para'";
case L_ADDADDRESS_CC: return "Añadir entradas al campo 'CC'";
case L_ADDADDRESS_BCC: return "Añadir entradas al campo 'BCC'";
case L_DELADDRESSES: return "Borrar entradas seleccionadas";
case L_ADDADDRESS_FIELD: return "Copiar direcciones seleccionadas";
case L_NNTPGROUP: return "Foros:";
case L_SENDTONNTPGROUP:return "Enviar a Foro";
case L_COMPOSEMSGNNTP: return "Enviar a Foro";
case L_NNTPSERVER: return "Servidor de Foros:";
case L_SUBSCRIBEDGROUPS:return "Foros suscritos:";
case L_MANAGE_NNTPGROUPS:return "Organizar los Foros Suscritos";
case L_LIST_EMPTY: return "----------------- [La lista est vaca] -----------------";
case L_NNTP_LISTSEARCH:return "Buscar en la lista de Foros";
case L_GROUPSTOADD: return "Foros a añadir:";
case L_ADDSELECTEDGROUPS:return "Añadir Foros seleccionados";
case L_DUMPFULLLIST: return "Ver la Lista de Foros completa";
case L_FORCEDGROUPS: return "Foros permanentes:";
case L_DISPLAY_UUENCODED:return "[Decodificar y mostrar '%s']";
case L_GOSELECTEDGROUP:return "Abrir Foro seleccionado";
case L_OP_SHOWCLOCK: return "Mostrar fecha y hora.";
case L_ADD_MORE_FORUMS:return "... (Más Foros) ...";
case L_SORTBYTHREADS: return "Conversación:";
case L_CHANGEPASSWORD: return "Cambiar Contraseña";
case L_PASSWORD_OLD: return "Contraseña vieja";
case L_PASSWORD_NEW1: return "Contraseña nueva";
case L_PASSWORD_NEW2: return "Contraseña nueva";
case L_PRESS_TO_ROOTPAGE: return "Volver a la página inicial";
case L_FINGER: return "Finger";
case L_FILEBROWSER: return "Explorador de Ficheros";
case L_FOLDER: return "Directorio";
case L_PARENTFOLDER: return "Directorio Padre";
case L_CURRENTFOLDER: return "Directorio Actual";
case L_EDIT: return "Modificar";
case L_CREATE: return "Crear";
case L_COPY: return "Copiar";
case L_CUT: return "Cortar";
case L_PASTE: return "Pegar";
case L_LOAD: return "Cargar";
case L_RENAME: return "Renombrar";
case L_ROOT: return "Inicio";
case L_MAIL: return "Correo";
case L_NNTP: return "Foros";
case L_POPPASS: return "Cambiar Contraseña";
case L_FORWARDMAIL: return "Redireccionar el Correo";
case L_CURRENTFORWARDS:return "Redirecciones presentes:";
case L_FORWARD_ERASE: return "Borrar TODAS";
case L_QUOTAUSAGE: return "Uso de espacio";
case L_RENAME_TO: return "Renombrar '%s' como ";
case L_CURRENTDISK: return "Disco actual";
case L_CHANGE_DISK: return "Cambiar al disco";
case L_FOLDER_COPY: return "Directorio Copiado";
case L_FOLDER_CUT: return "Directorio Cortado";
case L_FILE_COPY: return "Fichero Copiado";
case L_FILE_CUT: return "Fichero Cortado";
case L_TOTAL_SIZE: return "Total";
case L_SECVIRTUAL: return "Secretaría Virtual";
case L_SERVICE: return "Servicio";
case L_MAIL_DESCRIPTION : return "Correo";
case L_FILEBROWSER_DESCRIPTION: return "Explorador de Ficheros";
case L_FINGER_DESCRIPTION : return "Información de Finger";
case L_FORWARDMAIL_DESCRIPTION: return "Redireccionando los mensajes";
case L_MAIN_DESCRIPTION : return "Principal";
case L_POPPASS_DESCRIPTION : return "Cambiando la contraseña";
case L_SECVIRTUAL_DESCRIPTION : return "Secretaria Virtual";
case L_SYNC : return "Sync";
case L_DATABASES : return "Databases";
case L_DATABASES_DESCRIPTION : return "Bases de Datos";
case L_DISPLAY : return "Mostrar";
case L_UNDELETE : return "Restaurar";
case L_DB_INDEXHEADER : return "%s, Registros: %d, Tamaño: %d bytes";
case L_DB_CHANGE : return "Abrir";
case L_DUMP : return "Descargar";
case L_DB_MYNEWDB : return "Mi Nueva Base de Datos";
case L_LEX_AS : return "como";
case L_IMPORT : return "Importar";
case L_EXPORT : return "Exportar";
case L_LEX_OF : return "de";
case L_NONE_A : return "Ninguna";
case L_DEFINE : return "Definir";
case L_FIELD_ADD : return "Añadir Campo";
case L_FIELD_DEL : return "Borrar Campo";
case L_DATABASE : return "Base de Datos";
case L_FIELD_NAME : return "Nombre";
case L_FIELD_ORDER : return "Orden";
case L_FIELD_TYPE : return "Tipo";
case L_FIELD_MAXLENGTH : return "Máxima longitud";
case L_FIELD_DISPLAYLENGTH : return "Longitud mostrada";
case L_FIELD_INDEXLENGTH : return "Longitud en el índice";
case L_FIELD_LABEL : return "Etiqueta";
case L_FIELD_DEFAULT : return "Defecto";
case L_FIELD_COULDBENULL : return "Puede ser nulo";
case L_FIELD_OPTIONAL1 : return "Opcional 1";
case L_FIELD_OPTIONAL2 : return "Opcional 2";
case L_FIELD_OPTIONAL3 : return "Opcional 3";
case L_FIELD_OPTIONAL4 : return "Opcional 4";
case L_DELETESEARCH : return "Eliminar Búsqueda";
case L_DISPLAYPERSONALINFO : return "Mostrar Información Personal en el Inicio";
case L_USERACCOUNTS : return "Cuentas de Usuario";
case L_USERACCOUNTS_DESCRIPTION:return "Cuentas de Usuario";
case L_CONFIG : return "Configuración";
case L_CONFIG_DESCRIPTION : return "Configuración";
case L_APPEARANCE : return "Apariencia";
case L_SIEVE : return "Sieve";
case L_SIEVE_DESCRIPTION : return "Sieve";
case L_MAIN : return "Principal";
case L_FILTERS : return "Filtros";
case L_NAME : return "Nombre";
case L_LEX_THEN : return "entonces";
case L_SIEVE_IF_IN_THE_MAIL : return "Si en el mensaje...";
case L_VACATION : return "Ausencia";
case L_VACATION_TEXT : return "Notificación a enviar";
case L_VACATION_DAYS2REPEAT : return "Dias antes de reenviar la notificación";
case L_VACATION_ADDRESSES : return "Direcciones de ausencia";
case L_ACTIVED : return "Activada";
case L_UNACTIVED : return "Desactivada";
case L_REJECT : return "Rechazar";
case L_REJECTEDTEXT : return "(Texto de rechazo)";
case L_SUBJECT_CONTAINS : return "el \"Tema:\" contiene ";
case L_FROM_CONTAINS : return "y el \"De:\" contiene ";
case L_TO_CONTAINS : return "y el \"Para:\" contiene ";
case L_SIZE_IS_OVER : return "y el tamaño es mayor que ";
case L_HEADER_CONTAINS : return "y la cabecera ";
case L_CONTAINS : return " contiene ";
case L_VACATION_ADD_EXPLICAT : return "(Direcciones a las que te mandan los mensajes que llegan a tu buzón INBOX. Las mayúsculas/minúsculas SON importantes.)";
case L_UP : return "Arriba";
case L_DOWN : return "Abajo";
case L_OP_SHOWICONSLABELS : return "Mostrar etiquetas de los iconos";
case L_ICONSSIZE : return "Tamaño de los iconos";
case L_SMALL : return "Pequeño";
case L_BIG : return "Grande";
case L_MEDIUM : return "Medio";
case L_INSERTSPAWNFILTER : return "Por contenido";
case L_INSERTSPAWNFILTER2 : return "Por lista negra";
case L_SERVICEPW_INCORRECT : return "La contraseña no es correcta para este Servicio.";
case L_CALENDAR : return "Calendario";
case L_CALENDAR_DESCRIPTION : return "Calendario";
case L_CHANGE : return "Cambiar";
case L_WEEK : return "Semana";
case L_TODAY : return "Hoy";
case L_HOUR : return "Hora";
case L_TITLE : return "Título";
case L_DESCRIPTION : return "Descripción";
case L_STATUS : return "Estatus";
case L_STATUS_FINISHED : return "Acabado";
case L_STATUS_OPEN : return "Abierto";
case L_STATUS_DELAYED : return "Aplazado";
case L_PRIORITY : return "Prioridad";
case L_PRIORITY_LOW : return "Baja";
case L_PRIORITY_CURRENT : return "Normal";
case L_PRIORITY_IMPORTANT : return "Importante";
case L_PRIORITY_VERYIMPORTANT : return "Muy Importante";
case L_TYPE : return "Tipo";
case L_TYPE_CELEBRATION : return "Celebración";
case L_TYPE_MEETING : return "Reunión";
case L_TYPE_LAUNCH : return "Comida";
case L_TYPE_OTHER : return "Otro";
case L_ADD : return "Añadir";
case L_YESTERDAY : return "Ayer";
case L_TOMORROW : return "Mañana";
case L_YEAR : return "Año";
case L_DAY : return "Dia";
case L_LEX_SINCE : return "Desde";
case L_CLEARMAILBOX : return "Vaciar buzón";
case L_CREATEFILTER : return "Crear filtro Anti-Spam predefinido: ";
case L_DOTLEARN : return "Aula Virtual";
case L_DOTLEARN_DESCRIPTION : return "Recursos de e-learning";
case L_MODERATORS : return "Moderadores";
case TIT_COMPOSEMSG: return "Componiendo nuevo mensaje";
case TIT_HOMEPAGE: return "Servicio de Correo de la Universitat de València";
case TIT_CONFIRMACTION:return "Confirmar acción";
case TIT_INDEXMAILBOX: return "Índice del buzón";
case TIT_MAILBOXES: return "Trabajando con los buzones";
case TIT_MESSAGEHEADER:return "Viendo el mensaje";
case TIT_REPLYMSG: return "Contestando el mensaje";
case TIT_REPLYALLMSG: return "Contestando a todos";
case TIT_FORWARDMSG: return "Reenviando el mensaje";
case TIT_SHOWOPTIONS: return "Modificando tus opciones";
case TIT_ADDBOOK: return "Viendo la Agenda";
case TIT_INVALIDPAGE: return "Página incorrecta.";
case TIT_SHOWATTACHS: return "Trabajando con los adjuntos del mensaje";
case TIT_BADCOOKIE: return "Problema de seguridad!";
case TIT_SHOWHEADERS: return "Todas las cabeceras";
case TIT_REPLYGROUP: return "Contestando al Foro";
case TIT_COMPOSEMSGNNTP:return "Enviar a Foro";
case TIT_SHOWNNTPMANAGEGROUPS:return "Seleccionando los Foros de Noticias";
case TIT_INVALIDCOMMAND:return "Comando incorrecto.";
case TIT_SERVICES: return "Servicios";
case TIT_POPPASS_DISPLAYPAGE: return "Cambiando la contraseña";
case TIT_FINGER_DISPLAYPAGE: return "Finger";
case TIT_FILEBROWSER_DISPLAYPAGE: return "Explorador de Ficheros";
case TIT_FILEBROWSER_EDITFILEPAGE: return "Editando el fichero";
case TIT_FORWARDMAIL_DISPLAYPAGE: return "Redireccionar el Correo";
case TIT_DATABASES_EDITRECORD: return "Editando el Registro";
case TIT_DATABASES_INDEXPAGE: return "Índice de la Base de Datos";
case TIT_DATABASES_DISPLAYRECORD: return "Mostrando el Registro";
case TIT_DATABASES_MAINPAGE: return "Bases de Datos:";
case TIT_DATABASES_DB_DEFINE: return "Define tu Propia Base de Datos";
case TIT_SIEVE_DISPLAYPAGE: return "Sieve";
case TIT_CALENDAR_DISPLAYPAGE : return "Viendo el Calendario";
case ERR_INV_CMD: return "¡Comando incorrecto!";
case ERR_INV_USER_PW: return "¡Usuario o Contraseña incorrecto!";
case ERR_INV_MAILBOX: return "Buzón incorrecto: '%s'";
case ERR_ISOPEN_MAILBOX: return "Buzón abierto: '%s'";
case ERR_INV_PARMS: return "Faltan datos en el formulario.";
case ERR_OPENCONN: return "Abriendo la conexión con el servidor";
case ERR_CREAT_USERDIR: return "Creando directorio del Usuario";
case ERR_CREAT_USERATTACHSDIR:return "Creando directorio para adjuntos de usuario";
case ERR_SENDING_MSG: return "Enviando el mensaje";
case ERR_AB_DELEENTRY: return "Borrando entrada";
case ERR_MAXSIZEATT: return "El tamaño máximo de adjunto es %ld bytes";
case ERR_UNHANDLESIZEATTACH: return "El tamaño del adjunto es muy grande. No puedo manejarlo.";
case ERR_QUOTA_USAGE: return "AVISO: El uso de espacio es del %s.";
case ERR_SERVERISDOWN: return "El servidor no responde.";
case ERR_UUDECODING: return "Descodificando mensaje.";
case ERR_NNTP_NUM_SEL: return "Has seleccionado más de un Foro";
case ERR_INV_SERVICE: return "Servicio no válido!";
case ERR_SERVICE_NOTALLOWED: return "Servicio no permitido!";
case ERR_FILE_EXISTS: return "El fichero existe";
case ERR_FILE_INVALIDNAME: return "Nombre de fichero no válido";
case ERR_FILE_NO_EXISTS: return "No existe el fichero";
case ERR_FILE_CREATE: return "Creando el fichero";
case ERR_FILE_WRITING: return "Escribiendo en el fichero";
case ERR_DIR_EXISTS: return "El directorio existe";
case ERR_DIR_CREATE: return "Creando el directorio";
case ERR_DIR_OPEN: return "Abriendo el directorio";
case ERR_FILE_DELETING: return "Borrando el fichero";
case ERR_MAXSIZEFILEUPLOAD:return "El tamaño máximo de fichero es %ld bytes";
case ERR_CLIPBOARD_EMPTY: return "El portapapeles está vacio";
case ERR_SELECT_MORE_ONE: return "Hay más de una entrada seleccionada";
case ERR_FILE_RENAMING: return "Renombrando el elemento";
case ERR_FILE_COPYING: return "Copiando el fichero";
case ERR_FILE_MOVING: return "Moviendo el fichero";
case ERR_FILE_MOV_SAMESITE:return "No se puede mover un fichero al mismo directorio";
case ERR_QUOTA_OVER: return "Cuota de disco sobrepasada";
case ERR_SERVICE_INITIALIZING: return "Initializando servicio";
case ERR_CREAT_USERDATABASESDIR: return "Creando el Directorio de Bases de Datos del usuario";
case ERR_FILTERALREADYEXISTS: return "Ese filtro ya existe.";
case ALT_LOGO: return "Logo";
case ALT_NEXTPAGE_ACT: return "Pág. sig.";
case ALT_NEXTPAGE_INA: return "Pág. sig.";
case ALT_PREVPAGE_ACT: return "Pág. prev.";
case ALT_PREVPAGE_INA: return "Pág. prev.";
case ALT_FIRSTPAGE_ACT:return "Pág. prim.";
case ALT_FIRSTPAGE_INA:return "Pág. prim.";
case ALT_LASTPAGE_ACT: return "Pág. últ.";
case ALT_LASTPAGE_INA: return "Pág. últ.";
case ALT_DUMPFULLMSG: return "Descargar mensaje";
case ALT_NEXTMSG: return "Mens. sig.";
case ALT_PREVMSG: return "Mens. ant.";
case ALT_NEXTMSG_INA: return "Mens. sig.";
case ALT_PREVMSG_INA: return "Mens. ant.";
case ALT_HELP: return "Ayuda";
case ALT_LOGOUT: return "Salir";
case ALT_EXPUNGE: return "Purgar";
case ALT_COMPOSEMSG: return "Componer";
case ALT_MAILBOXES: return "Buzones";
case ALT_REPLYMSG: return "Contestar";
case ALT_REPLYALLMSG: return "Contestar a todos";
case ALT_FORWARDMSG: return "Reenviar";
case ALT_SHOWOPTIONS: return "Opciones";
case ALT_ADDBOOK: return "Agenda";
case ALT_BACK: return "Atrás";
case ALT_SAVEADDRESS: return "Guardar Dirección";
case ALT_SORT: return "Ordenar";
case ALT_AB_NEWENTRY: return "Nueva entrada";
case ALT_AB_NEWENTRY_S:return "Nueva entrada";
case ALT_DELNEXTMSG: return "Borrar";
case ALT_ABOUT: return "Acerca de";
case ALT_UNDELNEXTMSG: return "Recuperar";
case ALT_AB_DUMP: return "Descargar agenda";
case ALT_AB_DUMP_S: return "Descargar";
case ALT_DUMPFULLHEADER: return "Descargar cabeceras";
case ALT_SENDTONNTPGROUP:return "Enviar a Foro";
case ALT_COMPOSEMSGNNTP:return "Enviar a Foro";
case ALT_ROOT: return "Inicio";
case ALT_MAIL: return "Correo";
case ALT_NNTP: return "Foros";
case ALT_POPPASS: return "Cambiar Contraseña";
case ALT_FILEBROWSER: return "Explorador de Ficheros";
case ALT_FINGER: return "Finger";
case ALT_FORWARDMAIL: return "Redireccionar el Correo";
case ALT_SECVIRTUAL: return "Secretaría Virtual";
case ALT_UPSORT: return "Ordenado";
case ALT_DOWNSORT: return "Ordenado al revés";
case ALT_DATABASES: return "Bases de Datos";
case ALT_NEXTRECORD: return "Reg. sig.";
case ALT_PREVRECORD: return "Reg. ant.";
case ALT_PREV: return "Previo";
case ALT_NEXT: return "Siguiente";
case FORWARDLINE: return "---------- Mensaje reenviado ----------";
default: return "No string";
}
}
const char *Language::getStringCatala (int WHAT)
{
switch (WHAT)
{
case PREFIX_FORWARD: return "(Fwd) ";
case PREFIX_REPLY: return "Re: ";
case MSG_CONNREFUSED: return "Conexió fallida!";
case MSG_CANRECONNECTHERE: return "Podeu reconnectar prement ací.";
case MSG_SERVERISDOWN: return "El servidor no respon.";
case MSG_PERHAPSTIMEOUT: return "Potser s'ha acabat el temps";
case MSG_CONF_DELETEMAILBOX:return "Esborrarem la bústia '%s'. N'esteu segurs?";
case MSG_CONF_CLEARMAILBOX: return "Buidarem la bústia '%s'. N'esteu segurs?";
case MSG_CONF_EXPUNGE: return "Esteu segurs que voleu purgar la bústia?<BR>Açò esborrarà definitivament tots els missatges.";
case MSG_CONF_LOGOUT: return "Confirmeu la desconnexió, per favor.";
case MSG_CONF_DBEXPUNGE: return "Esteu segurs que voleu purgar la base de dades?<BR>Açò esborrarà definitivament tots els registres.";
case MSG_SEND_OK: return "Missatge enviat correctament.";
case MSG_ERR_SAVE_SENTMAIL: return "Missatge enviat correctament però NO es pot guardar el missatge enviat. Potser s'ha acabat l'espai de disc.";
case MSG_SAVED_SENTMAIL: return "El missatge es va guardar en la carpeta ";
case MSG_SEND_ERR: return "Problemes enviant el missatge. Missatge no enviat!";
case MSG_CANCELMSG: return "Enviament del missatge CANCELLAT!";
case MSG_SAVEOPTIONS: return "Opcions GUARDADES!";
case MSG_CANCEL: return "Cancellada l'edició!";
case MSG_ERR_SAVEOPTIONS: return "ERROR en guardar les opcions!";
case MSG_ADDBOOK: return "Veient l'agenda";
case MSG_SAVEADDBOOK: return "Agenda GUARDADA!";
case MSG_ERR_SAVEADDBOOK: return "ERROR en guardar l'agenda!";
case MSG_MSGSPURGED_0: return "Cap missatge esborrat.";
case MSG_MSGSPURGED: return "%d missatge ESBORRAT!";
case MSG_MSGSPURGED_S: return "%d missatges ESBORRATS!";
case MSG_MAILBOXCHANGED: return "Oberta la bústia '%s'";
case MSG_MAILBOXCREATED: return "Nova bústia creada!";
case MSG_MAILBOXDELETED: return "Bústia esborrada!";
case MSG_MAILBOXRENAMED: return "Bústia reanomenada!";
case MSG_MOVEDMESSAGES: return "%d missatge mogut a '%s'.";
case MSG_MOVEDMESSAGES_S: return "%d missatges moguts a '%s'.";
case MSG_COPYMESSAGES: return "%d missatge copiat a '%s'.";
case MSG_COPYMESSAGES_S: return "%d missatges copiats a '%s'.";
case MSG_INVALIDPAGE: return "Operació incorrecta. Per favor, actualitzeu l'índex.";
case MSG_SHOWATTACHS: return "Editant els adjunts";
case MSG_SAVEATTACHS: return "Adjunts GUARDATS!";
case MSG_ERASEATTACHS: return "Adjunts seleccionats esborrats!";
case MSG_ERR_SAVEATTACHS: return "ERROR en guardar els adjunts!";
case MSG_AB_EDITENTRY: return "Editant l'entrada";
case MSG_AB_SAVEENTRY: return "Entrada GUARDADA!";
case MSG_AB_DELEENTRY: return "Entrades ESBORRADES!";
case MSG_AB_ADDTO: return "Afegides les adreces al camp TO en Compondre Missatge";
case MSG_AB_ADDCC: return "Afegides les adreces al camp CC en Compondre Missatge";
case MSG_AB_ADDBCC: return "Afegides les adreces al camp BCC en Compondre Missatge";
case MSG_NO_ENTRIES_MARKED: return "No hi havia entrades seleccionades. No s'hi executarà cap acció!";
case MSG_FLAGS_CHANGED: return "%d missatge marcat com %s.";
case MSG_FLAGS_CHANGED_S: return "%d missatges marcats com %ss.";
case MSG_FIELD_TO_EMPTY: return "El camp 'Per a' està buit.";
case MSG_FIELD_SUBJ_EMPTY: return "El camp 'Assumpte' està buit.";
case MSG_COMPOSE_TIMEOUT: return "IMPORTANT: Useu el botó de 'Guardar' de tant en tant. Als vint minuts d'inactivitat es tancarà la connexió sense avisar i podeu perdre el que heu escrit!";
case MSG_TOO_MAX_CONN: return "Massa connexions. Proveu-ho més tard.";
case MSG_TOO_MAX_TRY_CONN: return "Ho sentim, heu premut el botó moltes vegades.";
case MSG_ADDRESS_LINE_CUT: return "COMPTE! Espai màxim de línia usat. No es van poder afegir totes les adreces.";
case MSG_MIN_TIMEBETWCONNS: return "Connexió reintentada massa prompte. Per favor premeu el botó \"Entrar\" només una vegada i espereu.";
case MSG_ERR_RELOAD_ATTACHS:return "Nombre d'adjunts incorrecte. Potser heu tornat a reenviar un adjunt ja enviat.";
case MSG_NOATTACHSERASED: return "CAP ADJUNT HA ESTAT ESBORRAT!";
case MSG_NOATTACHSSAVED: return "CAP ADJUNT HA ESTAT GUARDAT!";
case MSG_NO_ELEMENTS: return "No hi ha elements.";
case MSG_BADCOOKIE: return "Problema de seguretat! Accés arxivat.";
case MSG_DEBUG: return "Debug Page";
case MSG_MALFORMED_MESSAGE: return "<FONT color=\"#FF0000\"><BLINK>[ Missatge buit possiblement malformat. Utilitzeu \"Descarregar missatge\" per a veure'l com a text. ]</BLINK></FONT>";
case MSG_MSGSFOUND_0: return "Cap missatge TROBAT.";
case MSG_MSGSFOUND: return "%d missatge TROBAT.";
case MSG_MSGSFOUND_S: return "%d missatges TROBATS.";
case MSG_MSGS_SORTED: return "Missatges ordenats!";
case MSG_GO_TO_DISABLED: return "COMPTE: Falten 5 minuts per tancar la connexió. Useu el botó de 'Guardar' o podeu perdre l'escrit!";
case MSG_AB_ADDFIELDS: return "Adreces afegides als camps indicats: %d.";
case MSG_NNTP_SEND_WARNING: return "COMPTE: Els missatges de News poden ser llegits per molta gent.";
case MSG_MANAGE_NNTPGROUPS: return "Editant les meues subscripcions";
case MSG_NNTPGROUPS_FOUND: return "Fòrums trobats: %d";
case MSG_MAX_NNTPGROUPS_FOUND:return "Màax. nombre de fòrums trobats: %d";
case MSG_NNTPGROUPS_ADDED: return "Fòrums sumats: %d";
case MSG_NEW_TO_FORUMS: return "Canvia a un altre Fòrum amb el desplegable inferior o ajustant \"Opcions/Organitzar els Fòrums subscrits\"";
case MSG_INVALIDCOMMAND: return "Operació incorrecta.";
case MSG_CHANGEPW_OK: return "Contrasenya canviada correctament.";
case MSG_CONF_DELETEITEMS: return "Esteu segurs que voleu esborrar tots els fitxers i directoris seleccionats (recursivament)?";
case MSG_FILESDELETED: return "%d fitxer ESBORRAT!";
case MSG_FILESDELETED_S: return "%d fitxers ESBORRATS!";
case MSG_FILESCOPY: return "Elements copiats";
case MSG_FILESCUT: return "Elements tallats";
case MSG_FILESPASTED: return "Elements pegats";
case MSG_FILERENAMED_OK: return "Element reanomenat.";
case MSG_FILESAVED_OK: return "Fitxer guardat correctament.";
case MSG_FILESORT_OK: return "Elements ordenats!";
case MSG_FILECREATED_OK: return "Element creat correctament.";
case MSG_DISKCHANGED_OK: return "Disc canviat!";
case MSG_NEED_PASSWORD_SERVICE: return "Per a accedir al servei '%s', Postman necessita la vostra contrasenya:";
case MSG_NEWMSGS_0: return "No teniu missatges nous";
case MSG_NEWMSGS_1: return "Teniu 1 missatge no llegit";
case MSG_NEWMSGS_n: return "Teniu %ld missatges no llegits";
case MSG_RECONNECT_NOTALLOWED: return "La reconnexió a aquest servei no està permèsa!";
case MSG_RECORDSDELETED: return "%d registre marcat com %s";
case MSG_RECORDSDELETED_S: return "%d registres marcats com %s";
case MSG_RECORDSPURGED_0: return "Cap registre esborrat";
case MSG_RECORDSPURGED: return "¡%d registre ESBORRAT!";
case MSG_RECORDSPURGED_S: return "¡%d registres ESBORRATS!";
case MSG_RECORDSFOUND_0: return "Cap registre TROBAT.";
case MSG_RECORDSFOUND: return "%d registre TROBAT.";
case MSG_RECORDSFOUND_S: return "%d registres TROBATS.";
case MSG_CONF_DBDELETE: return "Esteu segurs que voleu esborrar tota la Base de Dades?";
case MSG_RECORDS_ALL_SHOWN: return "Tots els registres mostrats.";
case MSG_SHOWOPTIONS: return "Editant les opcions";
case MSG_SHOWOPTIONS_CCLIENT: return "Editant les opcions del Correu ";
case MSG_SHOWOPTIONS_NNTP: return "Editant les opcions dels Fòrums";
case MSG_SHOWOPTIONS_APPEARANCE: return "Editant les opcions d'aparença";
case MSG_CONF_FILTERSDELETE :return "Esteu segurs que voleu esborrar els filtres seleccionats?";
case MSG_INSERTSPAMFILTER: return "Es crearà un filtre basat en CONTINGUT per a evitar-vos la recepció de publicitat no desitjada o spam. "
"Els missatges marcats com spam seran moguts a la carpeta INBOX.SPAM que serà creada automàticament. "
"Recordeu revisar-la periòdicament i buidar-la.";
case MSG_INSERTSPAMFILTER2: return "Es crearà un filtre basat en LLISTES NEGRES (RBL) per a evitar-vos la recepció de publicitat no desitjada o spam. "
"Els missatges marcats com spam seran moguts a la carpeta INBOX.SPAM que serà creada automàticament. "
"Recordeu revisar-la periòdicament i buidar-la.";
case MSG_CONFDELETEEVENT: return "Esteu segurs que voleu esborrar l'event?";
case L_USER: return "Usuari";
case L_PASSWORD: return "Contrasenya";
case L_LOGIN: return "Entrar";
case L_CLEAR: return "Netejar";
case L_LOGOUT: return "Eixir";
case L_INDEXMAILBOX: return "<B>Bústia '%s' amb %ld missatges.</B>";
case L_INDEXMAILBOX2: return "Índex de la bústia";
case L_INDEXMAILBOX3: return "<B>Bústia '%s' amb %ld missatges (%s).</B>";
case L_INDEXMAILBOX4: return "<B>Bústia oberta: '%s' (%ld missatges).</B>";
case L_CHOOSELANGUAGE: return "Elige idioma/Trieu llengua/Choose language";
case L_COPYRIGHT: return "©Universitat de València, 2000-2003";
case L_MESSAGES: return "Missatges";
case L_NEXTPAGE_ACT: return "Pàgina següent";
case L_NEXTPAGE_INA: return "Pàgina següent";
case L_PREVPAGE_ACT: return "Pàgina prèvia";
case L_PREVPAGE_INA: return "Pàgina prèvia";
case L_FIRSTPAGE_ACT: return "Primera pàgina";
case L_FIRSTPAGE_INA: return "Primera pàgina";
case L_LASTPAGE_ACT: return "Última pàgina";
case L_LASTPAGE_INA: return "Última pàgina";
case L_MESSAGE: return "<B>Missatge %ld/%ld (%s).</B>";
case L_MESSAGE2: return "Llegint el missatge:";
case L_DUMPFULLMSG: return "Descarregar el missatge";
case L_NOSUBJECT: return "(Sense tema)";
case L_NEXTMSG: return "Seg. miss.";
case L_PREVMSG: return "Miss. ant.";
case L_NEXTMSG_INA: return "Seg. miss.";
case L_PREVMSG_INA: return "Miss. ant.";
case L_ERROR: return "Error";
case L_STRUCTMIME: return "Estructura del missatge i adjunts:";
case L_EXECUTE: return "Executar";
case L_DELETED: return "Esborrat";
case L_EXPUNGE: return "Purgar";
case L_UNDELETED: return "No esborrat";
case L_HELP: return "Ajuda";
case L_COMPOSEMSG: return "Compon";
case L_MAILBOXES: return "Bústies";
case L_CHANGEMAILBOX: return "Obrir bústia";
case L_CREATEMAILBOX: return "Crear bústia";
case L_DELETEMAILBOX: return "Esborrar bústia";
case L_RENAMEMAILBOX: return "Reanomenar bústia";
case L_ANSWEREDMSG: return "Contestat";
case L_UNANSWEREDMSG: return "NO contestat";
case L_FLAGGEDMSG: return "Important";
case L_UNFLAGGEDMSG: return "NO important";
case L_SEENMSG: return "NO nou";
case L_UNSEENMSG: return "Nou";
case L_MOVEMSG: return "Moure missatges a";
case L_COPYMSG: return "Copiar missatge a";
case L_CANCEL: return "Cancellar";
case L_CONFIRM: return "Confirmar";
case L_TO: return "Per a: ";
case L_CC: return "CC: ";
case L_BCC: return "BCC: ";
case L_TO0: return "To";
case L_CC0: return "Cc";
case L_BCC0: return "Bcc";
case L_SUBJECT: return "Assumpte: ";
case L_TEXTTOSEND: return "Text per enviar:";
case L_CANCELMSG: return "Cancellar";
case L_SENDMSG: return "Enviar";
case L_ATTACHMSG: return "Adjunts";
case L_REPLYMSG: return "Contestar";
case L_REPLYALLMSG: return "Contestat a tots";
case L_FORWARDMSG: return "Reenviar";
case L_FROM: return "De: ";
case L_DATE: return "Data: ";
case L_REPLYTO: return "Reply-to: ";
case L_SIGNATURE: return "Firma";
case L_SHOWOPTIONS: return "Opcions";
case L_ADDBOOK: return "Agenda";
case L_SAVE: return "Guardar";
case L_MSGSPERINDEXPAGE:return "Nombre de missatges mostrats per pàgina en l'índex: ";
case L_INSIGNINNEWMSG: return "Firmar els missatges nous";
case L_ATTACHSHOWED: return "Adjunts mostrats baix";
case L_PERSONALNAME: return "Nom personal complet: ";
case L_NOFROM: return "(Sense remitent)";
case L_SAVEMSGSENTMAIL:return "Guardar missatges enviats a la bústia ";
case L_ATTACH_NEW: return "Adjuntar un altre fitxer";
case L_FILE: return "Fitxer";
case L_NO_ATTACHS: return "(No hi ha adjunts)";
case L_DOATTACH: return "Adjuntar!";
case L_DETACH: return "Desenganxar";
case L_AB_NICKNAME: return "Àlies";
case L_AB_FULLNAME: return "Nom";
case L_AB_ADDRESSES: return "Adreces (email)";
case L_AB_FCC: return "Fcc";
case L_AB_COMMENTS: return "Comentaris";
case L_AB_EDITENTRY: return "Editar entrada";
case L_AB_NEWENTRY: return "Afegir nova entrada";
case L_AB_NEWENTRY_S: return "Afegir";
case L_DELETE: return "Esborrar";
case L_NUMOFENTRIES: return "Nombre d'entrades";
case L_BACK: return "Arrere";
case L_CLEANALL: return "Netejar-ho tot";
case L_SAVEADDRESS: return "Guardar adrea";
case L_NUMBER: return "Núm.:";
case L_FLAGS: return "Marques:";
case L_SIZE: return "Grandària:";
case L_FLAG_DELETED: return "Esborrat";
case L_FLAG_ANSWERED: return "Contestat";
case L_FLAG_FLAGGED: return "Important!";
case L_FLAG_NEW: return "Nou";
case L_FLAG_UNSEEN: return "Nou";
case L_FLAG_COPIED: return "Copiat";
case L_FLAG_UNCOPIED: return "No copiat";
case L_MARK: return "Marcar";
case L_MSGS_AS: return " Missatges com ";
case L_PRESS_TO_INDEX: return "Tornar a l'índex de missatges";
case L_SORT: return "Ordenar";
case L_MSGS_SHOWN: return "<B> Mostrats del %ld al %ld.</B>";
case L_LEX_TO: return " a ";
case L_DELNEXTMSG: return "Esborrar";
case L_UNDELNEXTMSG: return "No esborrar";
case L_ABOUT: return "A propòsit";
case L_REPLYFROM: return "Contestar a 'From:' en compte de 'Reply-to:'.";
case L_FORWATTACHS: return "Incloure adjunts en el Reenviament del missatge.";
case L_SIZEWRITEAREA: return "Grandària (files / columnes) de l'àrea de text en crear missatge.";
case L_NEXTMSGSHOWN: return "Mostrat el següent missatge.";
case L_LASTMSGSHOWN: return "Mostrat el últim missatge.";
case L_NUMATTACHSHOW: return "<B>Adjunt mostrat: %s</B>";
case L_DOWNLOADMAILBOX:return "Descarregar tota la bústia";
case L_EMPTY_IMAPSERVER:return "No hi ha servidor IMAP!";
case L_NOTALLOWED_IMAPSERVER: return "Servidor IMAP no vàlid!";
case L_AB_DUMP: return "Descarregar";
case L_AB_DUMP_S: return "Descarregar";
case L_TRUNCATELENGTHREADINGMSG: return "Truncar les línies del missatge que està llegint-se si són més llargues que ";
case L_SKIN: return "Semblant";
case L_SECURITYPROBLEM:return "Problema de seguretat";
case L_REFRESH :return "Actualitzar";
case L_FLAG_SEARCHED: return "Trobat en la recerca prèvia";
case L_SEARCH: return "Buscar en";
case L_REFRESHTIME: return "Minuts per actualitzar automàticament la pàgina índex (0 per no fer-ho).";
case L_SEARCH_SUBJECT: return "Assumpte";
case L_SEARCH_FROM: return "De";
case L_SEARCH_BODY: return "Cos";
case L_SEARCH_ALL: return "Tot";
case L_CONFIRMPURGE: return "Confirmar la purga de la Bústia";
case L_CONFIRMLOGOUT: return "Confirmar la Desconnexió";
case L_FLAG_UNDELETED: return "No Esborrat";
case L_FLAG_UNANSWERED: return "No Contestat";
case L_FLAG_UNFLAGGED: return "No Important";
case L_FLAG_UNNEW: return "No Nou";
case L_FLAG_SEEN: return "Vist";
case L_FLAG_UNSEARCHED: return "No trobat";
case L_SEARCHEDMSG: return "1 missatge sumat a la llista de missatges trobats.";
case L_UNSEARCHEDMSG: return "1 missatge esborrat de la llista de missatges trobats.";
case L_DUMPFULLHEADER: return "Descarregar capçaleres";
case L_ADDADDRESS_TO: return "Afegir entrades al camp 'Per a'";
case L_ADDADDRESS_CC: return "Afegir entrades al camp 'CC'";
case L_ADDADDRESS_BCC: return "Afegir entrades al camp 'BCC'";
case L_DELADDRESSES: return "Esborrar entrades seleccionades";
case L_ADDADDRESS_FIELD: return "Copiar adreces seleccionades";
case L_NNTPGROUP: return "Fòrums:";
case L_SENDTONNTPGROUP:return "Enviar a Fòrum";
case L_COMPOSEMSGNNTP: return "Enviar a Fòrum";
case L_NNTPSERVER: return "Servidor de Fòrums:";
case L_SUBSCRIBEDGROUPS:return "Fòrums subscrits:";
case L_MANAGE_NNTPGROUPS:return "Organitzar els Fòrums subscrits";
case L_LIST_EMPTY: return "----------------- [La llista est buida] -----------------";
case L_NNTP_LISTSEARCH:return "Buscar en la llista de Fòrums";
case L_GROUPSTOADD: return "Fòrums per afegir:";
case L_ADDSELECTEDGROUPS:return "Afegir Fòrums seleccionats";
case L_DUMPFULLLIST: return "Descarregar la llista de Fòrums ";
case L_FORCEDGROUPS: return "Fòrums permanents:";
case L_DISPLAY_UUENCODED:return "[Descodificar i mostrar '%s']";
case L_GOSELECTEDGROUP:return "Obrir Fòrum seleccionat";
case L_OP_SHOWCLOCK: return "Mostrar Data i Hora.";
case L_ADD_MORE_FORUMS:return "... (Més Fòrums) ...";
case L_SORTBYTHREADS: return "Conversa:";
case L_CHANGEPASSWORD: return "Canviar contrasenya";
case L_PASSWORD_OLD: return "Contrasenya antiga";
case L_PASSWORD_NEW1: return "Contrasenya nova";
case L_PASSWORD_NEW2: return "Contrasenya nova";
case L_PRESS_TO_ROOTPAGE: return "Tornar a la primera pàgina";
case L_FINGER: return "Finger";
case L_FILEBROWSER: return "Explorador de Fitxers";
case L_FOLDER: return "Directori";
case L_PARENTFOLDER: return "Directori Pare";
case L_CURRENTFOLDER: return "Directori Actual";
case L_EDIT: return "Editar";
case L_CREATE: return "Crear";
case L_COPY: return "Copiar";
case L_CUT: return "Tallar";
case L_PASTE: return "Pegar";
case L_LOAD: return "Carregar";
case L_RENAME: return "Reanomenar";
case L_ROOT: return "Inici";
case L_MAIL: return "Correu";
case L_NNTP: return "Fòrums";
case L_POPPASS: return "Canviar contrasenya";
case L_FORWARDMAIL: return "Readreçament del Correu";
case L_CURRENTFORWARDS:return "Readreçaments presents:";
case L_FORWARD_ERASE: return "Esborrar TOTES";
case L_QUOTAUSAGE: return "Ús d'espai";
case L_RENAME_TO: return "Reanomenar '%s' com ";
case L_CURRENTDISK: return "Disc Actual";
case L_CHANGE_DISK: return "Canviar al disc";
case L_FOLDER_COPY: return "Directori Copiat";
case L_FOLDER_CUT: return "Directori Tallat";
case L_FILE_COPY: return "Fitxer Copiat";
case L_FILE_CUT: return "Fitxer Tallat";
case L_TOTAL_SIZE: return "Total";
case L_SECVIRTUAL: return "Secretaria Virtual";
case L_SERVICE: return "Servei";
case L_MAIL_DESCRIPTION : return "Correu";
case L_FILEBROWSER_DESCRIPTION: return "Explorador de Fitxers";
case L_FINGER_DESCRIPTION : return "Informació de Finger";
case L_FORWARDMAIL_DESCRIPTION: return "Readreçament del Correu";
case L_MAIN_DESCRIPTION : return "Principal";
case L_POPPASS_DESCRIPTION : return "Canviar Contrasenya";
case L_SECVIRTUAL_DESCRIPTION : return "Secretaria Virtual";
case L_SYNC : return "Sync";
case L_DATABASES : return "Databases";
case L_DATABASES_DESCRIPTION : return "Bases de Dades";
case L_DISPLAY : return "Mostrar";
case L_UNDELETE : return "Restaurar";
case L_DB_INDEXHEADER : return "%s, Registres: %d, Grandària: %d bytes";
case L_DB_CHANGE : return "Obrir";
case L_DUMP : return "Descarregar";
case L_DB_MYNEWDB : return "La meua nova base de dades";
case L_LEX_AS : return "com";
case L_IMPORT : return "Importar";
case L_EXPORT : return "Exportar";
case L_LEX_OF : return "de";
case L_NONE_A : return "Cap";
case L_DEFINE : return "Defineix";
case L_FIELD_ADD : return "Afegir camp";
case L_FIELD_DEL : return "Esborrar camp";
case L_DATABASE : return "Base de Dades";
case L_FIELD_NAME : return "Nom";
case L_FIELD_ORDER : return "Ordre";
case L_FIELD_TYPE : return "Tipus";
case L_FIELD_MAXLENGTH : return "Màxima Longitud";
case L_FIELD_DISPLAYLENGTH : return "Longitud Mostrada";
case L_FIELD_INDEXLENGTH : return "Longitud a l'índex";
case L_FIELD_LABEL : return "Etiqueta";
case L_FIELD_DEFAULT : return "Defecte";
case L_FIELD_COULDBENULL : return "Pot ser nul";
case L_FIELD_OPTIONAL1 : return "Opcional 1";
case L_FIELD_OPTIONAL2 : return "Opcional 2";
case L_FIELD_OPTIONAL3 : return "Opcional 3";
case L_FIELD_OPTIONAL4 : return "Opcional 4";
case L_DELETESEARCH : return "Eliminar recerca";
case L_DISPLAYPERSONALINFO : return "Mostrar Informació Personal a l'Inici";
case L_USERACCOUNTS : return "Comptes d'usuari";
case L_USERACCOUNTS_DESCRIPTION:return "Comptes d'usuari";
case L_CONFIG : return "Configuració";
case L_CONFIG_DESCRIPTION : return "Configuració";
case L_APPEARANCE : return "Aparença";
case L_SIEVE : return "Sieve";
case L_SIEVE_DESCRIPTION : return "Sieve";
case L_MAIN : return "Principal";
case L_FILTERS : return "Filtres";
case L_NAME : return "Nom";
case L_LEX_THEN : return "aleshores";
case L_SIEVE_IF_IN_THE_MAIL : return "Si en el missatge...";
case L_VACATION : return "Absència";
case L_VACATION_TEXT : return "Notificació per enviar";
case L_VACATION_DAYS2REPEAT : return "Dies abans de reenviar la notificació";
case L_VACATION_ADDRESSES : return "Adreces d'absència";
case L_ACTIVED : return "Activat";
case L_UNACTIVED : return "Desactivat";
case L_REJECT : return "Rebutjar";
case L_REJECTEDTEXT : return "(Text de rebot)";
case L_SUBJECT_CONTAINS : return "el \"Tema:\" conté ";
case L_FROM_CONTAINS : return "i el \"De:\" conté ";
case L_TO_CONTAINS : return "i el \"Per a:\" conté ";
case L_SIZE_IS_OVER : return "i la grandària ès major que ";
case L_HEADER_CONTAINS : return "i la capçelera ";
case L_CONTAINS : return " conté ";
case L_VACATION_ADD_EXPLICAT : return "(Adreces a les quals us envien els missatges que arriben a la vostra bústia INBOX. Les majúscules/minúscules SÓN importants)";
case L_UP : return "Dalt";
case L_DOWN : return "Baix";
case L_OP_SHOWICONSLABELS : return "Mostrar etiquetes de les icones";
case L_ICONSSIZE : return "Grandària de les icones";
case L_SMALL : return "Menuda";
case L_BIG : return "Gran";
case L_MEDIUM : return "Mitjana";
case L_INSERTSPAWNFILTER : return "Per contingut";
case L_INSERTSPAWNFILTER2 : return "Per llista negra";
case L_SERVICEPW_INCORRECT : return "La contrasenya no és correcta per a aquest Servei.";
case L_CALENDAR : return "Calendari";
case L_CALENDAR_DESCRIPTION : return "Calendari";
case L_CHANGE : return "Canviar";
case L_WEEK : return "Setmana";
case L_TODAY : return "Avuy";
case L_HOUR : return "Hora";
case L_TITLE : return "Títol";
case L_DESCRIPTION : return "Descripció";
case L_STATUS : return "Estatus";
case L_STATUS_FINISHED : return "Acabat";
case L_STATUS_OPEN : return "Obert";
case L_STATUS_DELAYED : return "Ajornat";
case L_PRIORITY : return "Prioritat";
case L_PRIORITY_LOW : return "Baixa";
case L_PRIORITY_CURRENT : return "Normal";
case L_PRIORITY_IMPORTANT : return "Important";
case L_PRIORITY_VERYIMPORTANT : return "Molt Important";
case L_TYPE : return "Tipus";
case L_TYPE_CELEBRATION : return "Celebració";
case L_TYPE_MEETING : return "Reunió";
case L_TYPE_LAUNCH : return "Moderi";
case L_TYPE_OTHER : return "Altre";
case L_ADD : return "Afegir";
case L_YESTERDAY : return "Ahir";
case L_TOMORROW : return "Demà";
case L_YEAR : return "Any";
case L_DAY : return "Dia";
case L_LEX_SINCE : return "Des de";
case L_CLEARMAILBOX : return "Buidar bústia";
case L_CREATEFILTER : return "Crear filtre Anti-Spam predefinit: ";
case L_DOTLEARN : return "Aula Virtual";
case L_DOTLEARN_DESCRIPTION : return "Resources for e-learning";
case L_MODERATORS : return "Moderadors";
case TIT_COMPOSEMSG: return "Creant missatge nou";
case TIT_HOMEPAGE: return "Servei de Correu de la Universitat de València";
case TIT_CONFIRMACTION:return "Confirmar acció";
case TIT_INDEXMAILBOX: return "Índex de la bústia";
case TIT_MAILBOXES: return "Treballant amb les búusties";
case TIT_MESSAGEHEADER:return "Veient missatge";
case TIT_REPLYMSG: return "Contestant missatge";
case TIT_REPLYALLMSG: return "Contestant a tots";
case TIT_FORWARDMSG: return "Reenviant missatge";
case TIT_SHOWOPTIONS: return "Editant les vostres opcions";
case TIT_ADDBOOK: return "Veient l'agenda";
case TIT_INVALIDPAGE: return "Pàgina incorrecta";
case TIT_SHOWATTACHS: return "Treballant amb els adjunts del missatge";
case TIT_BADCOOKIE: return "Problema de seguretat!";
case TIT_SHOWHEADERS: return "Totes les capçaleres";
case TIT_REPLYGROUP: return "Contestant al Fòrum";
case TIT_COMPOSEMSGNNTP:return "Enviar al Fòrum";
case TIT_SHOWNNTPMANAGEGROUPS:return "Seleccionant els Fòrums de Notícies";
case TIT_INVALIDCOMMAND:return "Operació incorrecta.";
case TIT_SERVICES: return "Serveis";
case TIT_POPPASS_DISPLAYPAGE: return "Canviant la contrasenya";
case TIT_FINGER_DISPLAYPAGE: return "Finger";
case TIT_FILEBROWSER_DISPLAYPAGE: return "Explorador de Fitxers";
case TIT_FILEBROWSER_EDITFILEPAGE: return "Editant el fitxer";
case TIT_FORWARDMAIL_DISPLAYPAGE: return "Readreçament del Correu";
case TIT_DATABASES_EDITRECORD: return "Editant el Registre";
case TIT_DATABASES_INDEXPAGE: return "Base de Dades";
case TIT_DATABASES_DISPLAYRECORD: return "Veient el Registre";
case TIT_DATABASES_MAINPAGE: return "Bases de Dades:";
case TIT_DATABASES_DB_DEFINE: return "Defineix la vostra Base de Dades";
case TIT_SIEVE_DISPLAYPAGE: return "Sieve";
case TIT_CALENDAR_DISPLAYPAGE : return "Veient el Calendari";
case ERR_INV_CMD: return "Commandament incorrecte!";
case ERR_INV_USER_PW: return "Usuari o contrasenya incorrectes";
case ERR_INV_MAILBOX: return "Bústia incorrecta: '%s'";
case ERR_ISOPEN_MAILBOX: return "Bústia oberta: '%s'";
case ERR_INV_PARMS: return "Falten dades en el formulari.";
case ERR_OPENCONN: return "Obrint la connexió amb el servidor";
case ERR_CREAT_USERDIR: return "Creant directori de l'usuari";
case ERR_CREAT_USERATTACHSDIR:return "Creant directori per a adjunts de l'usuari";
case ERR_SENDING_MSG: return "Enviant el missatge.";
case ERR_AB_DELEENTRY: return "Esborrant entrada";
case ERR_MAXSIZEATT: return "La grandaria màxima d'adjunt és %ld bytes";
case ERR_UNHANDLESIZEATTACH: return "La grandària de l'adjunt és molt gran. No es pot manejar.";
case ERR_QUOTA_USAGE: return "AVÍS: L'ús d'espai és del %s.";
case ERR_SERVERISDOWN: return "El servidor no respon.";
case ERR_UUDECODING: return "Descodificant missatge.";
case ERR_NNTP_NUM_SEL: return "Heu seleccionat més d'un Fòrum";
case ERR_INV_SERVICE: return "Servei equivocat!";
case ERR_SERVICE_NOTALLOWED: return "Servei no permès!";
case ERR_FILE_EXISTS: return "El fitxer existeix";
case ERR_FILE_INVALIDNAME: return "Nom de fitxer no vàlid";
case ERR_FILE_NO_EXISTS: return "El fitxer no existeix";
case ERR_FILE_CREATE: return "Creant el fitxer";
case ERR_FILE_WRITING: return "Escrivint en el fitxer";
case ERR_DIR_EXISTS: return "El directori no existeix";
case ERR_DIR_CREATE: return "Creant el directori";
case ERR_DIR_OPEN: return "Obrint el directori";
case ERR_FILE_DELETING: return "Esborrant el fitxer";
case ERR_MAXSIZEFILEUPLOAD:return "La grandàaria màxima de fitxer és %ld bytes";
case ERR_CLIPBOARD_EMPTY: return "El portapapers està buit";
case ERR_SELECT_MORE_ONE: return "Hi ha més d'una entrada seleccionada";
case ERR_FILE_RENAMING: return "Reanomenant l'element";
case ERR_FILE_COPYING: return "Copiant fitxer";
case ERR_FILE_MOVING: return "Movent el fitxer";
case ERR_FILE_MOV_SAMESITE:return "No es pot moure un fitxer al mateix directori";
case ERR_QUOTA_OVER: return "Espai de disc sobrepassat";
case ERR_SERVICE_INITIALIZING: return "Iniciant servei";
case ERR_CREAT_USERDATABASESDIR: return "Creant el Directori de Bases de Dades de l'usuari";
case ERR_FILTERALREADYEXISTS: return "Aquest filtre ja existeix.";
case ALT_LOGO: return "Logo";
case ALT_NEXTPAGE_ACT: return "Pàg. seg.";
case ALT_NEXTPAGE_INA: return "Pàg. seg.";
case ALT_PREVPAGE_ACT: return "Pàg. ant.";
case ALT_PREVPAGE_INA: return "Pàg. ant.";
case ALT_FIRSTPAGE_ACT:return "Prim. pàg.";
case ALT_FIRSTPAGE_INA:return "Prim. pàg.";
case ALT_LASTPAGE_ACT: return "Últ. pàg.";
case ALT_LASTPAGE_INA: return "Últ. pàg.";
case ALT_DUMPFULLMSG: return "Descarregar missatge";
case ALT_NEXTMSG: return "Miss. seg.";
case ALT_PREVMSG: return "Miss. ant.";
case ALT_NEXTMSG_INA: return "Miss. seg.";
case ALT_PREVMSG_INA: return "Miss. ant.";
case ALT_HELP: return "Ajuda";
case ALT_LOGOUT: return "Eixir";
case ALT_EXPUNGE: return "Purgar";
case ALT_COMPOSEMSG: return "Compon";
case ALT_MAILBOXES: return "Bústies";
case ALT_REPLYMSG: return "Contestar";
case ALT_REPLYALLMSG: return "Contestar a tots";
case ALT_FORWARDMSG: return "Reenviar";
case ALT_SHOWOPTIONS: return "Opcions";
case ALT_ADDBOOK: return "Agenda";
case ALT_BACK: return "Arrere";
case ALT_SAVEADDRESS: return "Guardar adrea";
case ALT_SORT: return "Ordenar";
case ALT_AB_NEWENTRY: return "Nova entrada";
case ALT_AB_NEWENTRY_S:return "Nova entrada";
case ALT_DELNEXTMSG: return "Esborrar";
case ALT_ABOUT: return "A propòsit";
case ALT_UNDELNEXTMSG: return "No esborrar";
case ALT_AB_DUMP: return "Descarregar agenda";
case ALT_AB_DUMP_S: return "Descarregar";
case ALT_DUMPFULLHEADER: return "Descarregar capçaleres";
case ALT_SENDTONNTPGROUP:return "Enviar al Fòrum";
case ALT_COMPOSEMSGNNTP:return "Enviar al Fòrum";
case ALT_ROOT: return "Inici";
case ALT_MAIL: return "Correu";
case ALT_NNTP: return "Fòrums";
case ALT_POPPASS: return "Canviar Contrasenya";
case ALT_FILEBROWSER: return "Explorador de Fitxers";
case ALT_FINGER: return "Finger";
case ALT_FORWARDMAIL: return "Readreçament del Correu";
case ALT_SECVIRTUAL: return "Secretaria Virtual";
case ALT_UPSORT: return "Ordenat";
case ALT_DOWNSORT: return "Ordenat al revés";
case ALT_DATABASES: return "Bases de Dades";
case ALT_NEXTRECORD: return "Reg. seg.";
case ALT_PREVRECORD: return "Reg. ant.";
case ALT_PREV: return "Prèvio";
case ALT_NEXT: return "Següent";
case FORWARDLINE: return "---------- Missatge reenviat ----------";
default: return "No string";
}
}
const char *Language::getStringEuskera (int WHAT)
{
switch (WHAT)
{
case PREFIX_FORWARD: return "(Fwd) ";
case PREFIX_REPLY: return "Re: ";
case MSG_CONNREFUSED: return "Konexioak huts egin du!";
case MSG_CANRECONNECTHERE: return "Hemen sakatuta berriz konekta dezakezu.";
case MSG_SERVERISDOWN: return "Zerbitzariak ez du erantzuten.";
case MSG_PERHAPSTIMEOUT: return "Denbora amaitu egin ote da?";
case MSG_CONF_DELETEMAILBOX:return "Postontzia ezabatu egingo dugu '%s'. Ziur al zaude?";
case MSG_CONF_CLEARMAILBOX: return "Are you sure you want to empty mailbox '%s'?";
case MSG_CONF_EXPUNGE: return "Postontzia purgatu nahi duzula ziur al zaude?<BR>Honek behin betiko ezabatuko ditu ezabatutzat markatutako mezu guztiak";
case MSG_CONF_LOGOUT: return "Deskonexioa egiaztatu, mesedez.";
case MSG_CONF_DBEXPUNGE: return "OK to expunge the DataBase?";
case MSG_SEND_OK: return "Ongi bidalitako mezua.";
case MSG_ERR_SAVE_SENTMAIL: return "Ongi bidalitako mezua, baina bidalitako mezua EZIN DA gorde. Agian zure diskoko espazioa amaitu egingo zen";
case MSG_SAVED_SENTMAIL: return "the message was saved in ";
case MSG_SEND_ERR: return "Mezua bidaltzen arazoak. Bidali gabeko mezua.";
case MSG_CANCELMSG: return "Mezua bidaltzea baliogabetuta!";
case MSG_SAVEOPTIONS: return "GORDETAKO aukerak!";
case MSG_CANCEL: return "Aukeren edizioa ezabatuta!";
case MSG_ERR_SAVEOPTIONS: return "AKATSA aukerak gordetzean!";
case MSG_ADDBOOK: return "Agendari begiratuz";
case MSG_SAVEADDBOOK: return "Agenda GORDETA!";
case MSG_ERR_SAVEADDBOOK: return "AKATSA Agenda gordetzen!";
case MSG_MSGSPURGED_0: return "Ezabatutako mezurik ez.";
case MSG_MSGSPURGED: return "%d mezu EZABATUTA!";
case MSG_MSGSPURGED_S: return "%d mezu EZABATUTA!";
case MSG_MAILBOXCHANGED: return "Postontzia aldatuta '%s'";
case MSG_MAILBOXCREATED: return "Postontzi berria sortuta!";
case MSG_MAILBOXDELETED: return "Postontzia ezabatuta!";
case MSG_MAILBOXRENAMED: return "Postontzia berriz izendatuta!";
case MSG_MOVEDMESSAGES: return "%d mezu '%s'ra mugituta.";
case MSG_MOVEDMESSAGES_S: return "%d mezu '%s'ra mugituta.";
case MSG_COPYMESSAGES: return "%d mezu '%s'ra kopiatuta.";
case MSG_COPYMESSAGES_S: return "%d mezu '%s'ra kopiatuta.";
case MSG_INVALIDPAGE: return "Eragiketa desegokia. Mesedez Aurkibidea eguneratu.";
case MSG_SHOWATTACHS: return "Erantsitakoak aldatzen";
case MSG_SAVEATTACHS: return "Erantsitakoak GORDETA!";
case MSG_ERASEATTACHS: return "Hautatutako Erantsitakoak ezabatuta!";
case MSG_ERR_SAVEATTACHS: return "AKATSA Erantsitakoak gordetzen!";
case MSG_AB_EDITENTRY: return "Sarrera aldatzen";
case MSG_AB_SAVEENTRY: return "Sarrera GORDETA!";
case MSG_AB_DELEENTRY: return "Sarrerak EZABATUTA!";
case MSG_AB_ADDTO: return "Mezua Osatu-n TO eremuari helbideak gehituta";
case MSG_AB_ADDCC: return "Mezua Osatu-n CC eremuari helbideak gehituta";
case MSG_AB_ADDBCC: return "Mezua Osatu-n BCC eremuari helbideak gehituta";
case MSG_NO_ENTRIES_MARKED: return "Hautatutako sarrerarik ez zegoen. Inolako ekintzarik ez da exekutatu!";
case MSG_FLAGS_CHANGED: return "%d mezu %s gisa markatuta.";
case MSG_FLAGS_CHANGED_S: return "%d mezu %s gisa markatuta.";
case MSG_FIELD_TO_EMPTY: return "'Norentzat' eremua hutsik dago.";
case MSG_FIELD_SUBJ_EMPTY: return "'Gaia' eremua hutsik dago.";
case MSG_COMPOSE_TIMEOUT: return "GARRANTSITSUA: 'Gorde' botoia noizbehinka erabili. Lanik gabe 20 minutu igarota konexioa itxi egiten da abisurik pasa gabe eta idatzitakoa galdu egin dezakezu!";
case MSG_TOO_MAX_CONN: return "Konexio gehiegi. Saiatu geroago.";
case MSG_TOO_MAX_TRY_CONN: return "Sentitzen dut. Botoia askotan sakatu duzu.";
case MSG_ADDRESS_LINE_CUT: return "KONTUZ! Lerroko gehienezko luzera lortu duzu. Helbide guztiak gehitzerik ez da egon.";
case MSG_MIN_TIMEBETWCONNS: return "Berriz konektatzen azkarregi saiatu zara. Mesedez, sakatu 'Sartu' botoia behin bakarrik eta itxaron.";
case MSG_ERR_RELOAD_ATTACHS:return "Erantsitakoen kopurua oker. Seguru asko, leen bidalitako erantsitakoren bat berriz bidaltzen saiatu zara";
case MSG_NOATTACHSERASED: return "ERANTSITAKORIK EZ DA DEUSEZTATU!";
case MSG_NOATTACHSSAVED: return "ERANTSITAKORIK EZ DA GORDE!";
case MSG_NO_ELEMENTS: return "Ez dago elementurik.";
case MSG_BADCOOKIE: return "Segurtasun-arazoa! Sarbidea artxibatuta.";
case MSG_DEBUG: return "Debug Page";
case MSG_MALFORMED_MESSAGE: return "<FONT color=\"#FF0000\"><BLINK>[ Mezu hutsa, seguru asko gaizki osatua. Testu gisa ikusteko erabili 'Mezua deskargatu'. ]</BLINK></FONT>";
case MSG_MSGSFOUND_0: return "Mezurik ez da AURKITU.";
case MSG_MSGSFOUND: return "%d mezu AURKITUTA.";
case MSG_MSGSFOUND_S: return "%d mezu AURKITUTA.";
case MSG_MSGS_SORTED: return "Mezu ordenatuak!";
case MSG_GO_TO_DISABLED: return "KONTUZ: Saioa deskonektatzeko 5 minutu falta dira. Erabili 'Gorde' botoia edo idatzitakoa galdu egin dezakezu!";
case MSG_AB_ADDFIELDS: return "Adierazitako eremuei gehitutako helbideak: %d.";
case MSG_NNTP_SEND_WARNING: return "CUIDADO: Los mensajes de News pueden ser leídos por mucha gente. ¡Ten cuidado con lo que mandas!";
case MSG_MANAGE_NNTPGROUPS: return "Modifying my subscriptions";
case MSG_NNTPGROUPS_FOUND: return "Forums found: %d";
case MSG_MAX_NNTPGROUPS_FOUND:return "Maximum number of Forums found: %d";
case MSG_NNTPGROUPS_ADDED: return "Forums added: %d";
case MSG_NEW_TO_FORUMS: return "Change to other Forum with the drop-down right list or setting \"Options/Manage Subscribed Forums\"";
case MSG_INVALIDCOMMAND: return "Incorrect command.";
case MSG_CHANGEPW_OK: return "Password changed Ok.";
case MSG_CONF_DELETEITEMS: return "Ok to full delete the selected files and directories (recursively)?";
case MSG_FILESDELETED: return "%d file DELETED!";
case MSG_FILESDELETED_S: return "%d files DELETED!";
case MSG_FILESCOPY: return "Objects copied";
case MSG_FILESCUT: return "Objects cut";
case MSG_FILESPASTED: return "Objects pasted";
case MSG_FILERENAMED_OK: return "Object renamed.";
case MSG_FILESAVED_OK: return "File saved Ok.";
case MSG_FILESORT_OK: return "Objects sorted!";
case MSG_FILECREATED_OK: return "Object created!";
case MSG_DISKCHANGED_OK: return "Disk changed!";
case MSG_NEED_PASSWORD_SERVICE: return "To access to the service '%s', Postman need your password:";
case MSG_NEWMSGS_0: return "No new messages";
case MSG_NEWMSGS_1: return "You have 1 message not read";
case MSG_NEWMSGS_n: return "You have %ld messages not read";
case MSG_RECONNECT_NOTALLOWED: return "Reconnect to that service is not allowed!";
case MSG_RECORDSDELETED: return "%d record marked as %s.";
case MSG_RECORDSDELETED_S: return "%d records marked as %s.";
case MSG_RECORDSPURGED_0: return "No records PURGED.";
case MSG_RECORDSPURGED: return "%d record PURGED!";
case MSG_RECORDSPURGED_S: return "%d records PURGED!";
case MSG_RECORDSFOUND_0: return "No record FOUND.";
case MSG_RECORDSFOUND: return "%d record FOUND.";
case MSG_RECORDSFOUND_S: return "%d records FOUND.";
case MSG_CONF_DBDELETE: return "Ok to full delete the DataBase?";
case MSG_RECORDS_ALL_SHOWN: return "All records shown";
case MSG_SHOWOPTIONS: return "Aukerak aldatzen";
case MSG_SHOWOPTIONS_CCLIENT: return "Aukerak aldatzen";
case MSG_SHOWOPTIONS_NNTP: return "Aukerak aldatzen";
case MSG_SHOWOPTIONS_APPEARANCE: return "Editing Appearance options";
case MSG_CONF_FILTERSDELETE :return "Ok to delete the selected filters?";
case MSG_INSERTSPAMFILTER: return "I will make a filter based in CONTENT for avoid you the reception of publicity nonwished or Spam. "
"The marked messages as Spam will be moved to the folder INBOX.spam that will be created automatically. "
"Remember to review it periodically and to clean it.";
case MSG_INSERTSPAMFILTER2: return "I will make a filter based in Relay Blocking List (RBL) for avoid you the reception of publicity nonwished or Spam. "
"The marked messages as Spam will be moved to the folder INBOX.spam that will be created automatically. "
"Remember to review it periodically and to clean it.";
case MSG_CONFDELETEEVENT: return "Ok to delete the selected Event? ";
case L_USER: return "Erabiltzailea";
case L_PASSWORD: return "Pasahitza";
case L_LOGIN: return "Sartu";
case L_CLEAR: return "Garbitu";
case L_LOGOUT: return "Irten";
case L_INDEXMAILBOX: return "<B>Postontzia '%s' %ld mezurekin.</B>";
case L_INDEXMAILBOX2: return "Postontziaren indizea";
case L_INDEXMAILBOX3: return "<B>Postontzia '%s' %ld mezurekin (%s).</B>";
case L_INDEXMAILBOX4: return "<B>Oraingo postontzia irekita: '%s' (%ld mezu).</B>";
case L_CHOOSELANGUAGE: return "Elige idioma/Tria llenguatge/Choose language/Aukeraru hizkuntza";
case L_COPYRIGHT: return "©Universitat de València, 2000-2003";
case L_MESSAGES: return "mezuak";
case L_NEXTPAGE_ACT: return "Hurrengo orrialdea";
case L_NEXTPAGE_INA: return "Hurrengo orrialdea";
case L_PREVPAGE_ACT: return "Aurreko orrialdea";
case L_PREVPAGE_INA: return "Aurreko orrialdea";
case L_FIRSTPAGE_ACT: return "Lehen Orrialdea";
case L_FIRSTPAGE_INA: return "Lehen Orrialdea";
case L_LASTPAGE_ACT: return "Azken Orrialdea";
case L_LASTPAGE_INA: return "Azken Orrialdea";
case L_MESSAGE: return "<B>Mezua %ld/%ld (%s).</B>";
case L_MESSAGE2: return "Mezua irakurtzen:";
case L_DUMPFULLMSG: return "Mezua deskargatu";
case L_NOSUBJECT: return "(Gairik gabe)";
case L_NEXTMSG: return "Hurrengo Mezua";
case L_PREVMSG: return "Aurreko Mezua";
case L_NEXTMSG_INA: return "Hurrengo Mezua";
case L_PREVMSG_INA: return "Aurreko Mezua";
case L_ERROR: return "Akatsa";
case L_STRUCTMIME: return "Mezuaren eta erantsitakoen egitura:";
case L_EXECUTE: return "Exekutatu";
case L_DELETED: return "Ezabatzea";
case L_EXPUNGE: return "Purgatu";
case L_UNDELETED: return "Borratu GABEA";
case L_HELP: return "Laguntza";
case L_COMPOSEMSG: return "Osatu";
case L_MAILBOXES: return "Postontziak";
case L_CHANGEMAILBOX: return "Postontzia ireki";
case L_CREATEMAILBOX: return "Postontzia sortu";
case L_DELETEMAILBOX: return "Postontzia ezabatu";
case L_RENAMEMAILBOX: return "Postontziari izena berriz ipini";
case L_ANSWEREDMSG: return "Erantzuna";
case L_UNANSWEREDMSG: return "Erantzun GABEA";
case L_FLAGGEDMSG: return "Garrantzitsua";
case L_UNFLAGGEDMSG: return "EZ DA garrantzitsua";
case L_SEENMSG: return "Berria EZ";
case L_UNSEENMSG: return "Berria";
case L_MOVEMSG: return "Mezuak ...ra mugitu";
case L_COPYMSG: return "...ra mezuak kopiatu";
case L_CANCEL: return "Baliogabetu";
case L_CONFIRM: return "Egiaztatu";
case L_TO: return "Norentzat: ";
case L_CC: return "CC: ";
case L_BCC: return "BCC: ";
case L_TO0: return "To";
case L_CC0: return "Cc";
case L_BCC0: return "Bcc";
case L_SUBJECT: return "Gaia: ";
case L_TEXTTOSEND: return "Bidaltzeko testua:";
case L_CANCELMSG: return "Baliogabetu";
case L_SENDMSG: return "Bidali";
case L_ATTACHMSG: return "Erantsitakoak";
case L_REPLYMSG: return "Erantzun";
case L_REPLYALLMSG: return "Reply to All";
case L_FORWARDMSG: return "Berriz bidali";
case L_FROM: return "Nork: ";
case L_DATE: return "Data: ";
case L_REPLYTO: return "Reply-to: ";
case L_SIGNATURE: return "Sinadura";
case L_SHOWOPTIONS: return "Aukerak";
case L_ADDBOOK: return "Agenda";
case L_SAVE: return "Gorde";
case L_MSGSPERINDEXPAGE:return "Aurkibidean orrialdeko erakutsitako mezu-kopurua:";
case L_INSIGNINNEWMSG: return "Mezu berriak sinatu";
case L_ATTACHSHOWED: return "Azpian erakutsitako erantsitakoa";
case L_PERSONALNAME: return "Pertsona izen osoa: ";
case L_NOFROM: return "(Igorlerik gabe)";
case L_SAVEMSGSENTMAIL:return "Igorritako mezuak postontzian gorde";
case L_ATTACH_NEW: return "Beste fitxategi bat erantsi";
case L_FILE: return "Fitxategia";
case L_NO_ATTACHS: return "(Ez dago erantsitako fitxategirik)";
case L_DOATTACH: return "Erantsi!";
case L_DETACH: return "Kendu";
case L_AB_NICKNAME: return "Goitizena";
case L_AB_FULLNAME: return "Izena";
case L_AB_ADDRESSES: return "Helbideak (e-maila)";
case L_AB_FCC: return "Fcc";
case L_AB_COMMENTS: return "Iruzkinak";
case L_AB_EDITENTRY: return "Sarrera aldatu";
case L_AB_NEWENTRY: return "Beste sarrera bat gehitu";
case L_AB_NEWENTRY_S: return "Gehitu";
case L_DELETE: return "Ezabatu";
case L_NUMOFENTRIES: return "Sarrera-kopurua";
case L_BACK: return "Atzera";
case L_CLEANALL: return "Dena garbitu";
case L_SAVEADDRESS: return "Helbidea Gorde";
case L_NUMBER: return "Zk.:";
case L_FLAGS: return "Markak:";
case L_SIZE: return "Tamaina:";
case L_FLAG_DELETED: return "Ezabatuta";
case L_FLAG_ANSWERED: return "Erantzunda";
case L_FLAG_FLAGGED: return "Garrantzitsua!";
case L_FLAG_NEW: return "Berria";
case L_FLAG_UNSEEN: return "Berria";
case L_FLAG_COPIED: return "Copied";
case L_FLAG_UNCOPIED: return "Uncopied";
case L_MARK: return "Markatu";
case L_MSGS_AS: return " mezuak ... gisa ";
case L_PRESS_TO_INDEX: return "Mezu-indizera itzuli";
case L_SORT: return "Ordenatu";
case L_MSGS_SHOWN: return "<B> Erakutsiak %ld etik %ld ra.</B>";
case L_LEX_TO: return " a ";
case L_DELNEXTMSG: return "Ezabatu";
case L_UNDELNEXTMSG: return "Ezabatzea kendu";
case L_ABOUT: return "...ren inguruan";
case L_REPLYFROM: return "Erantzun 'From:'i 'Reply-to:'ren ordez.";
case L_FORWATTACHS: return "Mezua berriz igortzean erantsitakoak barne hartu.";
case L_SIZEWRITEAREA: return "Testu-esparruaren tamaina (ilarak / zutabeak) Mezua osatu-n.";
case L_NEXTMSGSHOWN: return "Hurrengo mezua erakutsita.";
case L_LASTMSGSHOWN: return "Azken mezua erakutsita.";
case L_NUMATTACHSHOW: return "<B>Erantsitakoa erakutsita: %s</B>";
case L_DOWNLOADMAILBOX:return "Postontzi osoa deskargatu";
case L_EMPTY_IMAPSERVER:return "IMAP zerbitzariaren eremua hutsa!";
case L_NOTALLOWED_IMAPSERVER: return "IMAP zerbitzaria ez da onartzen!";
case L_AB_DUMP: return "Deskargatu";
case L_AB_DUMP_S: return "Deskargatu";
case L_TRUNCATELENGTHREADINGMSG: return "Irakurtzen ari den mezuaren lerroak ebaki ... baino luzeagoak badira ";
case L_SKIN: return "Itxura";
case L_SECURITYPROBLEM:return "Segurtasun-arazoa";
case L_REFRESH :return "Eguneratu";
case L_FLAG_SEARCHED: return "Aurretiazko bilaketan aurkitua";
case L_SEARCH: return "... n bilatu";
case L_REFRESHTIME: return "Aurkibide-orrialdea automatikoki freskatzeko minutuak (0 ez egiteko):";
case L_SEARCH_SUBJECT: return "Gaia";
case L_SEARCH_FROM: return "Nork";
case L_SEARCH_BODY: return "Gorputza";
case L_SEARCH_ALL: return "Dena";
case L_CONFIRMPURGE: return "Postontzi-purgaketa egiaztatu";
case L_CONFIRMLOGOUT: return "Deskonexioa egiaztatu";
case L_FLAG_UNDELETED: return "Ezabatu GABEA";
case L_FLAG_UNANSWERED: return "Erantzun GABEA";
case L_FLAG_UNFLAGGED: return "Ez da Garrantzitsua";
case L_FLAG_UNNEW: return "Ez da Berria";
case L_FLAG_SEEN: return "Ikusia";
case L_FLAG_UNSEARCHED: return "Aurkitu GABEA";
case L_SEARCHEDMSG: return "Mezu bat erantsia aurkitutako mezuen zerrendari";
case L_UNSEARCHEDMSG: return "Mezu bat ezabatua aurkitutako mezuen zerrendatik";
case L_DUMPFULLHEADER: return "Goiburukoak deskargatu";
case L_ADDADDRESS_TO: return "Sarrerak gehitu 'Norentzat' eremuari";
case L_ADDADDRESS_CC: return "Sarrerak gehitu 'CC' eremuari";
case L_ADDADDRESS_BCC: return "Sarrerak gehitu 'BCC' eremuari";
case L_DELADDRESSES: return "Hautatutako sarrerak ezabatu";
case L_ADDADDRESS_FIELD: return "Helbideak gehitu";
case L_NNTPGROUP: return "Forums:";
case L_SENDTONNTPGROUP:return "Send to Forum";
case L_COMPOSEMSGNNTP: return "Send to Forum";
case L_NNTPSERVER: return "Forums Server:";
case L_SUBSCRIBEDGROUPS:return "Subscribed Forums:";
case L_MANAGE_NNTPGROUPS:return "Manage Subscribed Forums";
case L_LIST_EMPTY: return "----------------- [List is empty] -----------------";
case L_NNTP_LISTSEARCH:return "Search in All Forums List";
case L_GROUPSTOADD: return "Forums to add:";
case L_ADDSELECTEDGROUPS:return "Add selected Forums";
case L_DUMPFULLLIST: return "Dump full Forum List";
case L_FORCEDGROUPS: return "Permanent Forums:";
case L_DISPLAY_UUENCODED:return "[Decode and display '%s']";
case L_GOSELECTEDGROUP:return "Open selected Forum";
case L_OP_SHOWCLOCK: return "Display Date and Time.";
case L_ADD_MORE_FORUMS:return "... (More Forums) ...";
case L_SORTBYTHREADS: return "Thread:";
case L_CHANGEPASSWORD: return "Change Password";
case L_PASSWORD_OLD: return "Old password";
case L_PASSWORD_NEW1: return "New password";
case L_PASSWORD_NEW2: return "Retype new password";
case L_PRESS_TO_ROOTPAGE: return "Return to the begin page";
case L_FINGER: return "Finger";
case L_FILEBROWSER: return "File Browser";
case L_FOLDER: return "Directory";
case L_PARENTFOLDER: return "Parent Directory";
case L_CURRENTFOLDER: return "Current Directory";
case L_EDIT: return "Aldatu";
case L_CREATE: return "Create";
case L_COPY: return "Copy";
case L_CUT: return "Cut";
case L_PASTE: return "Paste";
case L_LOAD: return "Load";
case L_ROOT: return "Begin Page";
case L_MAIL: return "Mail";
case L_NNTP: return "Forums";
case L_POPPASS: return "Change Password";
case L_FORWARDMAIL: return "Forwarding mail";
case L_CURRENTFORWARDS:return "Current Forwards:";
case L_FORWARD_ERASE: return "Erase ALL";
case L_QUOTAUSAGE: return "Quota usage";
case L_RENAME_TO: return "Rename '%s' to ";
case L_CURRENTDISK: return "Current disk";
case L_CHANGE_DISK: return "Change to disk";
case L_FOLDER_COPY: return "Copied Folder";
case L_FOLDER_CUT: return "Cut Folder";
case L_FILE_COPY: return "Copied File";
case L_FILE_CUT: return "Cut File";
case L_TOTAL_SIZE: return "Total size";
case L_SECVIRTUAL: return "Secretaría Virtual";
case L_SERVICE: return "Service";
case L_MAIL_DESCRIPTION : return "Mail";
case L_FILEBROWSER_DESCRIPTION: return "File Explorer";
case L_FINGER_DESCRIPTION : return "Fingering Info";
case L_FORWARDMAIL_DESCRIPTION: return "Forwarding messages";
case L_MAIN_DESCRIPTION : return "Main";
case L_POPPASS_DESCRIPTION : return "Changing your password";
case L_SECVIRTUAL_DESCRIPTION : return "Secretaria Virtual";
case L_SYNC : return "Sync";
case L_DATABASES : return "Databases";
case L_DATABASES_DESCRIPTION : return "Databases";
case L_DISPLAY : return "Display";
case L_UNDELETE : return "Undelete";
case L_DB_INDEXHEADER : return "%s, Records: %d, Size: %d bytes";
case L_DB_CHANGE : return "Open";
case L_DUMP : return "Dump";
case L_DB_MYNEWDB : return "My New Database";
case L_LEX_AS : return "as";
case L_IMPORT : return "Import";
case L_EXPORT : return "Export";
case L_LEX_OF : return "of";
case L_NONE_A : return "None";
case L_DEFINE : return "Define";
case L_FIELD_ADD : return "Add Field";
case L_FIELD_DEL : return "Delete Field";
case L_DATABASE : return "Database";
case L_FIELD_NAME : return "Name";
case L_FIELD_ORDER : return "Order";
case L_FIELD_TYPE : return "Type";
case L_FIELD_MAXLENGTH : return "Maximum Length";
case L_FIELD_DISPLAYLENGTH : return "Display Length";
case L_FIELD_INDEXLENGTH : return "Index Length";
case L_FIELD_LABEL : return "Label";
case L_FIELD_DEFAULT : return "Default";
case L_FIELD_COULDBENULL : return "Could be null";
case L_FIELD_OPTIONAL1 : return "Optional 1";
case L_FIELD_OPTIONAL2 : return "Optional 2";
case L_FIELD_OPTIONAL3 : return "Optional 3";
case L_FIELD_OPTIONAL4 : return "Optional 4";
case L_DELETESEARCH : return "Delete Search";
case L_DISPLAYPERSONALINFO : return "Display Personal Information at startup";
case L_USERACCOUNTS : return "User accounts";
case L_USERACCOUNTS_DESCRIPTION:return "User accounts";
case L_CONFIG : return "Configuration";
case L_CONFIG_DESCRIPTION : return "Configuration";
case L_APPEARANCE : return "Appearance";
case L_SIEVE : return "Sieve";
case L_SIEVE_DESCRIPTION : return "Sieve";
case L_MAIN : return "Main";
case L_FILTERS : return "Filters";
case L_NAME : return "Name";
case L_LEX_THEN : return "then";
case L_SIEVE_IF_IN_THE_MAIL : return "If in the message...";
case L_VACATION : return "Absence";
case L_VACATION_TEXT : return "Notification to send";
case L_VACATION_DAYS2REPEAT : return "Days before repeat notification";
case L_VACATION_ADDRESSES : return "Absence addresses";
case L_ACTIVED : return "Actived";
case L_UNACTIVED : return "Unactived";
case L_REJECT : return "Reject";
case L_REJECTEDTEXT : return "(Rejected Text)";
case L_SUBJECT_CONTAINS : return "the \"Subject:\" contains ";
case L_FROM_CONTAINS : return "and the \"From:\" contains ";
case L_TO_CONTAINS : return "and the \"To:\" contains ";
case L_SIZE_IS_OVER : return "and the size is over ";
case L_HEADER_CONTAINS : return "and the \"Header\" ";
case L_CONTAINS : return " contains ";
case L_VACATION_ADD_EXPLICAT : return "(Addresses where your mail is sent. Upper and lower case are IMPORTANT.)";
case L_UP : return "Up";
case L_DOWN : return "Down";
case L_OP_SHOWICONSLABELS : return "Show icons labels";
case L_ICONSSIZE : return "Icons size";
case L_SMALL : return "Small";
case L_BIG : return "Big";
case L_MEDIUM : return "Medium";
case L_INSERTSPAWNFILTER : return "By content";
case L_INSERTSPAWNFILTER2 : return "By RBL";
case L_SERVICEPW_INCORRECT : return "The password is not valid for this Service.";
case L_CALENDAR : return "Calendar";
case L_CALENDAR_DESCRIPTION : return "Calendar";
case L_CHANGE : return "Change";
case L_WEEK : return "Week";
case L_TODAY : return "Today";
case L_HOUR : return "Hour";
case L_TITLE : return "Title";
case L_DESCRIPTION : return "Description";
case L_STATUS : return "Status";
case L_STATUS_FINISHED : return "Finished";
case L_STATUS_OPEN : return "Open";
case L_STATUS_DELAYED : return "Delayed";
case L_PRIORITY : return "Priority";
case L_PRIORITY_LOW : return "Low";
case L_PRIORITY_CURRENT : return "Current";
case L_PRIORITY_IMPORTANT : return "Important";
case L_PRIORITY_VERYIMPORTANT : return "Very Important";
case L_TYPE : return "Type";
case L_TYPE_CELEBRATION : return "Celebration";
case L_TYPE_MEETING : return "Meeting";
case L_TYPE_LAUNCH : return "Launch";
case L_TYPE_OTHER : return "Other";
case L_ADD : return "Add";
case L_YESTERDAY : return "Yesterday";
case L_TOMORROW : return "Tomorrow";
case L_YEAR : return "Year";
case L_DAY : return "Day";
case L_LEX_SINCE : return "Since";
case L_CLEARMAILBOX : return "Empty mailbox";
case L_CREATEFILTER : return "Create predefined Anti-Spam filter: ";
case L_DOTLEARN : return "Aula Virtual";
case L_DOTLEARN_DESCRIPTION : return "Resources for e-learning";
case L_MODERATORS : return "Moderators";
case TIT_COMPOSEMSG: return "Mezu berria osatzen";
case TIT_HOMEPAGE: return "Universitat de Valncia-ren Posta Zerbitzua";
case TIT_CONFIRMACTION:return "Ekintza egiaztatu";
case TIT_INDEXMAILBOX: return "Postontziaren aurkibidea";
case TIT_MAILBOXES: return "Postontziekin lanean";
case TIT_MESSAGEHEADER:return "Mezua ikusten";
case TIT_REPLYMSG: return "Mezuari erantzuten";
case TIT_REPLYALLMSG: return "Replying to All";
case TIT_FORWARDMSG: return "Mezua berriz igortzen";
case TIT_SHOWOPTIONS: return "Zure aukerak aldatzen";
case TIT_ADDBOOK: return "Agenda ikusten";
case TIT_INVALIDPAGE: return "Orrialdea oker.";
case TIT_SHOWATTACHS: return "Mezuari erantsitakoekin lanean";
case TIT_BADCOOKIE: return "Segurtasun-arazoa!";
case TIT_SHOWHEADERS: return "Goiburuko guztiak";
case TIT_REPLYGROUP: return "Replying to Forum";
case TIT_COMPOSEMSGNNTP:return "Send to Forum";
case TIT_SHOWNNTPMANAGEGROUPS:return "Seleccionando los Foros de Noticias";
case TIT_INVALIDCOMMAND:return "Incorrect command.";
case TIT_SERVICES: return "Services";
case TIT_POPPASS_DISPLAYPAGE: return "Changing the password";
case TIT_FINGER_DISPLAYPAGE: return "Finger";
case TIT_FILEBROWSER_DISPLAYPAGE: return "File Browser";
case TIT_FILEBROWSER_EDITFILEPAGE: return "Editing File";
case TIT_FORWARDMAIL_DISPLAYPAGE: return "Forwarding mail";
case TIT_DATABASES_EDITRECORD: return "Editing the Record";
case TIT_DATABASES_INDEXPAGE: return "Index of Database";
case TIT_DATABASES_DISPLAYRECORD: return "Displaying the Record";
case TIT_DATABASES_MAINPAGE: return "Databases:";
case TIT_DATABASES_DB_DEFINE: return "Define your own new database";
case TIT_SIEVE_DISPLAYPAGE: return "Sieve";
case TIT_CALENDAR_DISPLAYPAGE : return "Viewing the Calendar";
case ERR_INV_CMD: return "Komandoa oker!";
case ERR_INV_USER_PW: return "Erabiltzailea edo Pasahitza oker!";
case ERR_INV_MAILBOX: return "Postontzia oker: '%s'";
case ERR_ISOPEN_MAILBOX: return "Mailbox is currently open: '%s'";
case ERR_INV_PARMS: return "Parametroak oker";
case ERR_OPENCONN: return "Zerbitzariaren konexioa irekitzen";
case ERR_CREAT_USERDIR:return "Erabiltzailearen direktorioa sortzen";
case ERR_CREAT_USERATTACHSDIR:return "Erabiltzaile-erantsitakoentzat direktorioa sortzen";
case ERR_SENDING_MSG: return "Mezua bidaltzen";
case ERR_AB_DELEENTRY: return "Sarrera ezabatzen";
case ERR_MAXSIZEATT: return "Erantsitakoaren gehienezko tamaina %ld bytekoa da";
case ERR_UNHANDLESIZEATTACH: return "Erantsitakoaren tamaina oso handia da. Ezin dut maneiatu.";
case ERR_QUOTA_USAGE: return "OHARRA: Espazio-erabilpena %s ...koa da.";
case ERR_SERVERISDOWN: return "Zerbitzariak ez du erantzuten.";
case ERR_UUDECODING: return "Decoding message.";
case ERR_NNTP_NUM_SEL: return "You have selected more than one Forum";
case ERR_INV_SERVICE: return "Incorrect service!";
case ERR_SERVICE_NOTALLOWED: return "Service not allowed!";
case ERR_FILE_EXISTS: return "File exists";
case ERR_FILE_INVALIDNAME: return "Wrong filename";
case ERR_FILE_NO_EXISTS: return "No such file";
case ERR_FILE_CREATE: return "Creating file";
case ERR_FILE_WRITING: return "Writing in file";
case ERR_DIR_EXISTS: return "Directory exists";
case ERR_DIR_CREATE: return "Creating directory";
case ERR_DIR_OPEN: return "Opening directory";
case ERR_FILE_DELETING: return "Deleting file";
case ERR_MAXSIZEFILEUPLOAD:return "The maximum size for uploaded file is %ld bytes";
case ERR_CLIPBOARD_EMPTY: return "Clipboard is empty";
case ERR_SELECT_MORE_ONE: return "There are more than one selected entry";
case ERR_FILE_RENAMING: return "Renaming the object";
case ERR_FILE_COPYING: return "Copying file";
case ERR_FILE_MOVING: return "Moving file";
case ERR_FILE_MOV_SAMESITE:return "Can not move it to the same path";
case ERR_QUOTA_OVER: return "Quota of disc overstep";
case ERR_SERVICE_INITIALIZING: return "Initializing service";
case ERR_CREAT_USERDATABASESDIR: return "Creating User Databases Directory";
case ERR_FILTERALREADYEXISTS: return "That filter already exists.";
case ALT_LOGO: return "Logoa";
case ALT_NEXTPAGE_ACT: return "Hurrengo orrialdea";
case ALT_NEXTPAGE_INA: return "Hurrengo orrialdea";
case ALT_PREVPAGE_ACT: return "Aurreko orrialdea";
case ALT_PREVPAGE_INA: return "Aurreko orrialdea";
case ALT_FIRSTPAGE_ACT:return "Lehen orrialdea";
case ALT_FIRSTPAGE_INA:return "Lehen orrialdea";
case ALT_LASTPAGE_ACT: return "Azken orrialdea";
case ALT_LASTPAGE_INA: return "Azken orrialdea";
case ALT_DUMPFULLMSG: return "Mezua deskargatu";
case ALT_NEXTMSG: return "Hurrengo mezua";
case ALT_PREVMSG: return "Aurreko mezua";
case ALT_NEXTMSG_INA: return "Hurrengo mezua";
case ALT_PREVMSG_INA: return "Aurreko mezua";
case ALT_HELP: return "Laguntza";
case ALT_LOGOUT: return "Irten";
case ALT_EXPUNGE: return "Purgatu";
case ALT_COMPOSEMSG: return "Osatu";
case ALT_MAILBOXES: return "Postontziak";
case ALT_REPLYMSG: return "Erantzun";
case ALT_REPLYALLMSG: return "Reply to All";
case ALT_FORWARDMSG: return "Berriz igorri";
case ALT_SHOWOPTIONS: return "Aukerak";
case ALT_ADDBOOK: return "Agenda";
case ALT_BACK: return "Atzera";
case ALT_SAVEADDRESS: return "Helbidea gorde";
case ALT_SORT: return "Ordenatu";
case ALT_AB_NEWENTRY: return "Sarrera berria";
case ALT_AB_NEWENTRY_S:return "Sarrera berria";
case ALT_DELNEXTMSG: return "Ezabatu";
case ALT_ABOUT: return "...ren inguruan";
case ALT_UNDELNEXTMSG: return "Ezabatzea kendu";
case ALT_AB_DUMP: return "Agenda deskargatu";
case ALT_AB_DUMP_S: return "Deskargatu";
case ALT_DUMPFULLHEADER: return "Goiburukoak ezabatu";
case ALT_SENDTONNTPGROUP:return "Send to Forum";
case ALT_COMPOSEMSGNNTP:return "Send to Forum";
case ALT_ROOT: return "Begin";
case ALT_MAIL: return "Mail";
case ALT_NNTP: return "Forums";
case ALT_POPPASS: return "Change Password";
case ALT_FILEBROWSER: return "File Browser";
case ALT_FINGER: return "Finger";
case ALT_FORWARDMAIL: return "Forwarding mail";
case ALT_SECVIRTUAL: return "Secretaria Virtual";
case ALT_UPSORT: return "Ordenado";
case ALT_DOWNSORT: return "Ordenado al revés";
case ALT_DATABASES: return "Databases";
case ALT_NEXTRECORD: return "Next Record";
case ALT_PREVRECORD: return "Previous Record";
case ALT_PREV: return "Previous";
case ALT_NEXT: return "Next";
case FORWARDLINE: return "---------- Mezua berriz igorria ----------";
default: return "No string";
}
}
|